27.79/11.80 YES 30.49/12.53 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 30.49/12.53 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 30.49/12.53 30.49/12.53 30.49/12.53 H-Termination with start terms of the given HASKELL could be proven: 30.49/12.53 30.49/12.53 (0) HASKELL 30.49/12.53 (1) LR [EQUIVALENT, 0 ms] 30.49/12.53 (2) HASKELL 30.49/12.53 (3) CR [EQUIVALENT, 0 ms] 30.49/12.53 (4) HASKELL 30.49/12.53 (5) IFR [EQUIVALENT, 0 ms] 30.49/12.53 (6) HASKELL 30.49/12.53 (7) BR [EQUIVALENT, 2 ms] 30.49/12.53 (8) HASKELL 30.49/12.53 (9) COR [EQUIVALENT, 0 ms] 30.49/12.53 (10) HASKELL 30.49/12.53 (11) LetRed [EQUIVALENT, 0 ms] 30.49/12.53 (12) HASKELL 30.49/12.53 (13) NumRed [SOUND, 0 ms] 30.49/12.53 (14) HASKELL 30.49/12.53 (15) Narrow [SOUND, 0 ms] 30.49/12.53 (16) AND 30.49/12.53 (17) QDP 30.49/12.53 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.49/12.53 (19) YES 30.49/12.53 (20) QDP 30.49/12.53 (21) QDPSizeChangeProof [EQUIVALENT, 84 ms] 30.49/12.53 (22) YES 30.49/12.53 (23) QDP 30.49/12.53 (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.49/12.53 (25) YES 30.49/12.53 (26) QDP 30.49/12.53 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.49/12.53 (28) YES 30.49/12.53 (29) QDP 30.49/12.53 (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.49/12.53 (31) YES 30.49/12.53 (32) QDP 30.49/12.53 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.49/12.53 (34) YES 30.49/12.53 (35) QDP 30.49/12.53 (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.49/12.53 (37) YES 30.49/12.53 (38) QDP 30.49/12.53 (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.49/12.53 (40) YES 30.49/12.53 (41) QDP 30.49/12.53 (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.49/12.53 (43) YES 30.49/12.53 (44) QDP 30.49/12.53 (45) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.49/12.53 (46) YES 30.49/12.53 (47) QDP 30.49/12.53 (48) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.49/12.53 (49) YES 30.49/12.53 (50) QDP 30.49/12.53 (51) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.49/12.53 (52) YES 30.49/12.53 (53) QDP 30.49/12.53 (54) DependencyGraphProof [EQUIVALENT, 0 ms] 30.49/12.53 (55) AND 30.49/12.53 (56) QDP 30.49/12.53 (57) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.49/12.53 (58) YES 30.49/12.53 (59) QDP 30.49/12.53 (60) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.49/12.53 (61) YES 30.49/12.53 (62) QDP 30.49/12.53 (63) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.49/12.53 (64) YES 30.49/12.53 (65) QDP 30.49/12.53 (66) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.49/12.53 (67) YES 30.49/12.53 30.49/12.53 30.49/12.53 ---------------------------------------- 30.49/12.53 30.49/12.53 (0) 30.49/12.53 Obligation: 30.49/12.53 mainModule Main 30.49/12.53 module FiniteMap where { 30.49/12.53 import qualified Main; 30.49/12.53 import qualified Maybe; 30.49/12.53 import qualified Prelude; 30.49/12.53 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 30.49/12.53 30.49/12.53 instance (Eq a, Eq b) => Eq FiniteMap a b where { 30.49/12.53 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.49/12.53 } 30.49/12.53 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 30.49/12.53 delFromFM EmptyFM del_key = emptyFM; 30.49/12.53 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 30.49/12.53 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 30.49/12.53 | key == del_key = glueBal fm_l fm_r; 30.49/12.53 30.49/12.53 delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; 30.49/12.53 delListFromFM fm keys = foldl delFromFM fm keys; 30.49/12.53 30.49/12.53 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 30.49/12.53 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 30.49/12.53 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 30.49/12.53 30.49/12.53 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 30.49/12.53 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 30.49/12.53 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 30.49/12.53 30.49/12.53 emptyFM :: FiniteMap a b; 30.49/12.53 emptyFM = EmptyFM; 30.49/12.53 30.49/12.53 findMax :: FiniteMap b a -> (b,a); 30.49/12.53 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 30.49/12.53 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 30.49/12.53 30.49/12.53 findMin :: FiniteMap a b -> (a,b); 30.49/12.53 findMin (Branch key elt _ EmptyFM _) = (key,elt); 30.49/12.53 findMin (Branch key elt _ fm_l _) = findMin fm_l; 30.49/12.53 30.49/12.53 fmToList :: FiniteMap a b -> [(a,b)]; 30.49/12.53 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 30.49/12.53 30.49/12.53 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 30.49/12.53 foldFM k z EmptyFM = z; 30.49/12.53 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.49/12.53 30.49/12.53 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.49/12.53 glueBal EmptyFM fm2 = fm2; 30.49/12.53 glueBal fm1 EmptyFM = fm1; 30.49/12.53 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 30.49/12.53 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 30.49/12.53 mid_elt1 = (\(_,mid_elt1) ->mid_elt1) vv2; 30.49/12.53 mid_elt2 = (\(_,mid_elt2) ->mid_elt2) vv3; 30.49/12.53 mid_key1 = (\(mid_key1,_) ->mid_key1) vv2; 30.49/12.53 mid_key2 = (\(mid_key2,_) ->mid_key2) vv3; 30.49/12.53 vv2 = findMax fm1; 30.49/12.53 vv3 = findMin fm2; 30.49/12.53 }; 30.49/12.53 30.49/12.53 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 30.49/12.53 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 30.49/12.53 | size_r > sIZE_RATIO * size_l = case fm_R of { 30.49/12.53 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 30.49/12.53 | otherwise -> double_L fm_L fm_R; 30.49/12.53 } 30.49/12.53 | size_l > sIZE_RATIO * size_r = case fm_L of { 30.49/12.53 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 30.49/12.53 | otherwise -> double_R fm_L fm_R; 30.49/12.53 } 30.49/12.53 | otherwise = mkBranch 2 key elt fm_L fm_R where { 30.49/12.53 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); 30.49/12.53 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); 30.49/12.53 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; 30.49/12.53 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); 30.49/12.53 size_l = sizeFM fm_L; 30.49/12.53 size_r = sizeFM fm_R; 30.49/12.53 }; 30.49/12.53 30.49/12.53 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 30.49/12.53 mkBranch which key elt fm_l fm_r = let { 30.49/12.53 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 30.49/12.53 } in result where { 30.49/12.53 balance_ok = True; 30.49/12.53 left_ok = case fm_l of { 30.49/12.53 EmptyFM-> True; 30.49/12.53 Branch left_key _ _ _ _-> let { 30.49/12.53 biggest_left_key = fst (findMax fm_l); 30.49/12.53 } in biggest_left_key < key; 30.49/12.53 } ; 30.49/12.53 left_size = sizeFM fm_l; 30.49/12.53 right_ok = case fm_r of { 30.49/12.53 EmptyFM-> True; 30.49/12.53 Branch right_key _ _ _ _-> let { 30.49/12.53 smallest_right_key = fst (findMin fm_r); 30.49/12.53 } in key < smallest_right_key; 30.49/12.53 } ; 30.49/12.53 right_size = sizeFM fm_r; 30.49/12.53 unbox :: Int -> Int; 30.49/12.53 unbox x = x; 30.49/12.53 }; 30.49/12.53 30.49/12.53 sIZE_RATIO :: Int; 30.49/12.53 sIZE_RATIO = 5; 30.49/12.53 30.49/12.53 sizeFM :: FiniteMap a b -> Int; 30.49/12.53 sizeFM EmptyFM = 0; 30.49/12.53 sizeFM (Branch _ _ size _ _) = size; 30.49/12.53 30.49/12.53 } 30.49/12.53 module Maybe where { 30.49/12.53 import qualified FiniteMap; 30.49/12.53 import qualified Main; 30.49/12.53 import qualified Prelude; 30.49/12.53 } 30.49/12.53 module Main where { 30.49/12.53 import qualified FiniteMap; 30.49/12.53 import qualified Maybe; 30.49/12.53 import qualified Prelude; 30.49/12.53 } 30.49/12.53 30.49/12.53 ---------------------------------------- 30.49/12.53 30.49/12.53 (1) LR (EQUIVALENT) 30.49/12.53 Lambda Reductions: 30.49/12.53 The following Lambda expression 30.49/12.53 "\(_,mid_elt2)->mid_elt2" 30.49/12.53 is transformed to 30.49/12.53 "mid_elt20 (_,mid_elt2) = mid_elt2; 30.49/12.53 " 30.49/12.53 The following Lambda expression 30.49/12.53 "\(mid_key2,_)->mid_key2" 30.49/12.53 is transformed to 30.49/12.53 "mid_key20 (mid_key2,_) = mid_key2; 30.49/12.53 " 30.49/12.53 The following Lambda expression 30.49/12.53 "\(mid_key1,_)->mid_key1" 30.49/12.53 is transformed to 30.49/12.53 "mid_key10 (mid_key1,_) = mid_key1; 30.49/12.53 " 30.49/12.53 The following Lambda expression 30.49/12.53 "\(_,mid_elt1)->mid_elt1" 30.49/12.53 is transformed to 30.49/12.53 "mid_elt10 (_,mid_elt1) = mid_elt1; 30.49/12.53 " 30.49/12.53 The following Lambda expression 30.49/12.53 "\keyeltrest->(key,elt) : rest" 30.49/12.53 is transformed to 30.49/12.53 "fmToList0 key elt rest = (key,elt) : rest; 30.49/12.53 " 30.49/12.53 30.49/12.53 ---------------------------------------- 30.49/12.53 30.49/12.53 (2) 30.49/12.53 Obligation: 30.49/12.53 mainModule Main 30.49/12.53 module FiniteMap where { 30.49/12.53 import qualified Main; 30.49/12.53 import qualified Maybe; 30.49/12.53 import qualified Prelude; 30.49/12.53 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 30.49/12.53 30.49/12.53 instance (Eq a, Eq b) => Eq FiniteMap a b where { 30.49/12.53 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.49/12.53 } 30.49/12.53 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 30.49/12.53 delFromFM EmptyFM del_key = emptyFM; 30.49/12.53 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 30.49/12.53 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 30.49/12.53 | key == del_key = glueBal fm_l fm_r; 30.49/12.53 30.49/12.53 delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; 30.49/12.53 delListFromFM fm keys = foldl delFromFM fm keys; 30.49/12.53 30.49/12.53 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 30.49/12.53 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 30.49/12.53 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 30.78/12.64 30.78/12.64 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 30.78/12.64 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 30.78/12.64 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 30.78/12.64 30.78/12.64 emptyFM :: FiniteMap a b; 30.78/12.64 emptyFM = EmptyFM; 30.78/12.64 30.78/12.64 findMax :: FiniteMap b a -> (b,a); 30.78/12.64 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 30.78/12.64 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 30.78/12.64 30.78/12.64 findMin :: FiniteMap b a -> (b,a); 30.78/12.64 findMin (Branch key elt _ EmptyFM _) = (key,elt); 30.78/12.64 findMin (Branch key elt _ fm_l _) = findMin fm_l; 30.78/12.64 30.78/12.64 fmToList :: FiniteMap a b -> [(a,b)]; 30.78/12.64 fmToList fm = foldFM fmToList0 [] fm; 30.78/12.64 30.78/12.64 fmToList0 key elt rest = (key,elt) : rest; 30.78/12.64 30.78/12.64 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 30.78/12.64 foldFM k z EmptyFM = z; 30.78/12.64 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.78/12.64 30.78/12.64 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.78/12.64 glueBal EmptyFM fm2 = fm2; 30.78/12.64 glueBal fm1 EmptyFM = fm1; 30.78/12.64 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 30.78/12.64 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 30.78/12.64 mid_elt1 = mid_elt10 vv2; 30.78/12.64 mid_elt10 (_,mid_elt1) = mid_elt1; 30.78/12.64 mid_elt2 = mid_elt20 vv3; 30.78/12.64 mid_elt20 (_,mid_elt2) = mid_elt2; 30.78/12.64 mid_key1 = mid_key10 vv2; 30.78/12.64 mid_key10 (mid_key1,_) = mid_key1; 30.78/12.64 mid_key2 = mid_key20 vv3; 30.78/12.64 mid_key20 (mid_key2,_) = mid_key2; 30.78/12.64 vv2 = findMax fm1; 30.78/12.64 vv3 = findMin fm2; 30.78/12.64 }; 30.78/12.64 30.78/12.64 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.78/12.64 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 30.78/12.64 | size_r > sIZE_RATIO * size_l = case fm_R of { 30.78/12.64 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 30.78/12.64 | otherwise -> double_L fm_L fm_R; 30.78/12.64 } 30.78/12.64 | size_l > sIZE_RATIO * size_r = case fm_L of { 30.78/12.64 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 30.78/12.64 | otherwise -> double_R fm_L fm_R; 30.78/12.64 } 30.78/12.64 | otherwise = mkBranch 2 key elt fm_L fm_R where { 30.78/12.64 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); 30.78/12.64 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); 30.78/12.64 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; 30.78/12.64 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); 30.78/12.64 size_l = sizeFM fm_L; 30.78/12.64 size_r = sizeFM fm_R; 30.78/12.64 }; 30.78/12.64 30.78/12.64 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 30.78/12.64 mkBranch which key elt fm_l fm_r = let { 30.78/12.64 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 30.78/12.64 } in result where { 30.78/12.64 balance_ok = True; 30.78/12.64 left_ok = case fm_l of { 30.78/12.64 EmptyFM-> True; 30.78/12.64 Branch left_key _ _ _ _-> let { 30.78/12.64 biggest_left_key = fst (findMax fm_l); 30.78/12.64 } in biggest_left_key < key; 30.78/12.64 } ; 30.78/12.64 left_size = sizeFM fm_l; 30.78/12.64 right_ok = case fm_r of { 30.78/12.64 EmptyFM-> True; 30.78/12.64 Branch right_key _ _ _ _-> let { 30.78/12.64 smallest_right_key = fst (findMin fm_r); 30.78/12.64 } in key < smallest_right_key; 30.78/12.64 } ; 30.78/12.64 right_size = sizeFM fm_r; 30.78/12.64 unbox :: Int -> Int; 30.78/12.64 unbox x = x; 30.78/12.64 }; 30.78/12.64 30.78/12.64 sIZE_RATIO :: Int; 30.78/12.64 sIZE_RATIO = 5; 30.78/12.64 30.78/12.64 sizeFM :: FiniteMap a b -> Int; 30.78/12.64 sizeFM EmptyFM = 0; 30.78/12.64 sizeFM (Branch _ _ size _ _) = size; 30.78/12.64 30.78/12.64 } 30.78/12.64 module Maybe where { 30.78/12.64 import qualified FiniteMap; 30.78/12.64 import qualified Main; 30.78/12.64 import qualified Prelude; 30.78/12.64 } 30.78/12.64 module Main where { 30.78/12.64 import qualified FiniteMap; 30.78/12.64 import qualified Maybe; 30.78/12.64 import qualified Prelude; 30.78/12.64 } 30.78/12.64 30.78/12.64 ---------------------------------------- 30.78/12.64 30.78/12.64 (3) CR (EQUIVALENT) 30.78/12.64 Case Reductions: 30.78/12.64 The following Case expression 30.78/12.64 "case compare x y of { 30.78/12.64 EQ -> o; 30.78/12.64 LT -> LT; 30.78/12.64 GT -> GT} 30.78/12.64 " 30.78/12.64 is transformed to 30.78/12.64 "primCompAux0 o EQ = o; 30.78/12.64 primCompAux0 o LT = LT; 30.78/12.64 primCompAux0 o GT = GT; 30.78/12.64 " 30.78/12.64 The following Case expression 30.78/12.64 "case fm_r of { 30.78/12.64 EmptyFM -> True; 30.78/12.64 Branch right_key _ _ _ _ -> let { 30.78/12.64 smallest_right_key = fst (findMin fm_r); 30.78/12.64 } in key < smallest_right_key} 30.78/12.64 " 30.78/12.64 is transformed to 30.78/12.64 "right_ok0 fm_r key EmptyFM = True; 30.78/12.64 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 30.78/12.64 smallest_right_key = fst (findMin fm_r); 30.78/12.64 } in key < smallest_right_key; 30.78/12.64 " 30.78/12.64 The following Case expression 30.78/12.64 "case fm_l of { 30.78/12.64 EmptyFM -> True; 30.78/12.64 Branch left_key _ _ _ _ -> let { 30.78/12.64 biggest_left_key = fst (findMax fm_l); 30.78/12.64 } in biggest_left_key < key} 30.78/12.64 " 30.78/12.64 is transformed to 30.78/12.64 "left_ok0 fm_l key EmptyFM = True; 30.78/12.64 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 30.78/12.64 biggest_left_key = fst (findMax fm_l); 30.78/12.64 } in biggest_left_key < key; 30.78/12.64 " 30.78/12.64 The following Case expression 30.78/12.64 "case fm_R of { 30.78/12.64 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 30.78/12.64 " 30.78/12.64 is transformed to 30.78/12.64 "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; 30.78/12.64 " 30.78/12.64 The following Case expression 30.78/12.64 "case fm_L of { 30.78/12.64 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 30.78/12.64 " 30.78/12.64 is transformed to 30.78/12.64 "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; 30.78/12.64 " 30.78/12.64 30.78/12.64 ---------------------------------------- 30.78/12.64 30.78/12.64 (4) 30.78/12.64 Obligation: 30.78/12.64 mainModule Main 30.78/12.64 module FiniteMap where { 30.78/12.64 import qualified Main; 30.78/12.64 import qualified Maybe; 30.78/12.64 import qualified Prelude; 30.78/12.64 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 30.78/12.64 30.78/12.64 instance (Eq a, Eq b) => Eq FiniteMap a b where { 30.78/12.64 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.78/12.64 } 30.78/12.64 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 30.78/12.64 delFromFM EmptyFM del_key = emptyFM; 30.78/12.64 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 30.78/12.64 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 30.78/12.64 | key == del_key = glueBal fm_l fm_r; 30.78/12.64 30.78/12.64 delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; 30.78/12.64 delListFromFM fm keys = foldl delFromFM fm keys; 30.78/12.64 30.78/12.64 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 30.78/12.64 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 30.78/12.64 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 30.78/12.64 30.78/12.64 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 30.78/12.64 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 30.78/12.64 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 30.78/12.64 30.78/12.64 emptyFM :: FiniteMap a b; 30.78/12.64 emptyFM = EmptyFM; 30.78/12.64 30.78/12.64 findMax :: FiniteMap b a -> (b,a); 30.78/12.64 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 30.78/12.64 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 30.78/12.64 30.78/12.64 findMin :: FiniteMap b a -> (b,a); 30.78/12.64 findMin (Branch key elt _ EmptyFM _) = (key,elt); 30.78/12.64 findMin (Branch key elt _ fm_l _) = findMin fm_l; 30.78/12.64 30.78/12.64 fmToList :: FiniteMap a b -> [(a,b)]; 30.78/12.64 fmToList fm = foldFM fmToList0 [] fm; 30.78/12.64 30.78/12.64 fmToList0 key elt rest = (key,elt) : rest; 30.78/12.64 30.78/12.64 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 30.78/12.64 foldFM k z EmptyFM = z; 30.78/12.64 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.78/12.64 30.78/12.64 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.78/12.64 glueBal EmptyFM fm2 = fm2; 30.78/12.64 glueBal fm1 EmptyFM = fm1; 30.78/12.64 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 30.78/12.64 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 30.78/12.64 mid_elt1 = mid_elt10 vv2; 30.78/12.64 mid_elt10 (_,mid_elt1) = mid_elt1; 30.78/12.64 mid_elt2 = mid_elt20 vv3; 30.78/12.64 mid_elt20 (_,mid_elt2) = mid_elt2; 30.78/12.64 mid_key1 = mid_key10 vv2; 30.78/12.64 mid_key10 (mid_key1,_) = mid_key1; 30.78/12.64 mid_key2 = mid_key20 vv3; 30.78/12.64 mid_key20 (mid_key2,_) = mid_key2; 30.78/12.64 vv2 = findMax fm1; 30.78/12.64 vv3 = findMin fm2; 30.78/12.64 }; 30.78/12.64 30.78/12.64 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.78/12.64 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 30.78/12.64 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 30.78/12.64 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 30.78/12.64 | otherwise = mkBranch 2 key elt fm_L fm_R where { 30.78/12.64 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); 30.78/12.64 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); 30.78/12.64 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 30.78/12.64 | otherwise = double_L fm_L fm_R; 30.78/12.64 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 30.78/12.64 | otherwise = double_R fm_L fm_R; 30.78/12.64 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; 30.78/12.64 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); 30.78/12.64 size_l = sizeFM fm_L; 30.78/12.64 size_r = sizeFM fm_R; 30.78/12.64 }; 30.78/12.64 30.78/12.64 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.78/12.64 mkBranch which key elt fm_l fm_r = let { 30.78/12.64 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 30.78/12.64 } in result where { 30.78/12.64 balance_ok = True; 30.78/12.64 left_ok = left_ok0 fm_l key fm_l; 30.78/12.64 left_ok0 fm_l key EmptyFM = True; 30.78/12.64 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 30.78/12.64 biggest_left_key = fst (findMax fm_l); 30.78/12.64 } in biggest_left_key < key; 30.78/12.64 left_size = sizeFM fm_l; 30.78/12.64 right_ok = right_ok0 fm_r key fm_r; 30.78/12.64 right_ok0 fm_r key EmptyFM = True; 30.78/12.64 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 30.78/12.64 smallest_right_key = fst (findMin fm_r); 30.78/12.64 } in key < smallest_right_key; 30.78/12.64 right_size = sizeFM fm_r; 30.78/12.64 unbox :: Int -> Int; 30.78/12.64 unbox x = x; 30.78/12.64 }; 30.78/12.64 30.78/12.64 sIZE_RATIO :: Int; 30.78/12.64 sIZE_RATIO = 5; 30.78/12.64 30.78/12.64 sizeFM :: FiniteMap a b -> Int; 30.78/12.64 sizeFM EmptyFM = 0; 30.78/12.64 sizeFM (Branch _ _ size _ _) = size; 30.78/12.64 30.78/12.64 } 30.78/12.64 module Maybe where { 30.78/12.64 import qualified FiniteMap; 30.78/12.64 import qualified Main; 30.78/12.64 import qualified Prelude; 30.78/12.64 } 30.78/12.64 module Main where { 30.78/12.64 import qualified FiniteMap; 30.78/12.64 import qualified Maybe; 30.78/12.64 import qualified Prelude; 30.78/12.64 } 30.78/12.64 30.78/12.64 ---------------------------------------- 30.78/12.64 30.78/12.64 (5) IFR (EQUIVALENT) 30.78/12.64 If Reductions: 30.78/12.64 The following If expression 30.78/12.64 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 30.78/12.64 is transformed to 30.78/12.64 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 30.78/12.64 primDivNatS0 x y False = Zero; 30.78/12.64 " 30.78/12.64 The following If expression 30.78/12.64 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 30.78/12.64 is transformed to 30.78/12.64 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 30.78/12.64 primModNatS0 x y False = Succ x; 30.78/12.64 " 30.78/12.64 30.78/12.64 ---------------------------------------- 30.78/12.64 30.78/12.64 (6) 30.78/12.64 Obligation: 30.78/12.64 mainModule Main 30.78/12.64 module FiniteMap where { 30.78/12.64 import qualified Main; 30.78/12.64 import qualified Maybe; 30.78/12.64 import qualified Prelude; 30.78/12.64 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 30.78/12.64 30.78/12.64 instance (Eq a, Eq b) => Eq FiniteMap a b where { 30.78/12.64 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.78/12.64 } 30.78/12.64 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 30.78/12.64 delFromFM EmptyFM del_key = emptyFM; 30.78/12.64 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 30.78/12.64 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 30.78/12.64 | key == del_key = glueBal fm_l fm_r; 30.78/12.64 30.78/12.64 delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; 30.78/12.64 delListFromFM fm keys = foldl delFromFM fm keys; 30.78/12.64 30.78/12.64 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 30.78/12.64 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 30.78/12.64 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 30.78/12.64 30.78/12.64 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 30.78/12.64 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 30.78/12.64 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 30.78/12.64 30.78/12.64 emptyFM :: FiniteMap a b; 30.78/12.64 emptyFM = EmptyFM; 30.78/12.64 30.78/12.64 findMax :: FiniteMap a b -> (a,b); 30.78/12.64 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 30.78/12.64 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 30.78/12.64 30.78/12.64 findMin :: FiniteMap a b -> (a,b); 30.78/12.64 findMin (Branch key elt _ EmptyFM _) = (key,elt); 30.78/12.64 findMin (Branch key elt _ fm_l _) = findMin fm_l; 30.78/12.64 30.78/12.64 fmToList :: FiniteMap a b -> [(a,b)]; 30.78/12.64 fmToList fm = foldFM fmToList0 [] fm; 30.78/12.64 30.78/12.64 fmToList0 key elt rest = (key,elt) : rest; 30.78/12.64 30.78/12.64 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 30.78/12.64 foldFM k z EmptyFM = z; 30.78/12.64 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.78/12.65 30.78/12.65 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.78/12.65 glueBal EmptyFM fm2 = fm2; 30.78/12.65 glueBal fm1 EmptyFM = fm1; 30.78/12.65 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 30.78/12.65 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 30.78/12.65 mid_elt1 = mid_elt10 vv2; 30.78/12.65 mid_elt10 (_,mid_elt1) = mid_elt1; 30.78/12.65 mid_elt2 = mid_elt20 vv3; 30.78/12.65 mid_elt20 (_,mid_elt2) = mid_elt2; 30.78/12.65 mid_key1 = mid_key10 vv2; 30.78/12.65 mid_key10 (mid_key1,_) = mid_key1; 30.78/12.65 mid_key2 = mid_key20 vv3; 30.78/12.65 mid_key20 (mid_key2,_) = mid_key2; 30.78/12.65 vv2 = findMax fm1; 30.78/12.65 vv3 = findMin fm2; 30.78/12.65 }; 30.78/12.65 30.78/12.65 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.78/12.65 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 30.78/12.65 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 30.78/12.65 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 30.78/12.65 | otherwise = mkBranch 2 key elt fm_L fm_R where { 30.78/12.65 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); 30.78/12.65 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); 30.78/12.65 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 30.78/12.65 | otherwise = double_L fm_L fm_R; 30.78/12.65 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 30.78/12.65 | otherwise = double_R fm_L fm_R; 30.78/12.65 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; 30.78/12.65 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); 30.78/12.65 size_l = sizeFM fm_L; 30.78/12.65 size_r = sizeFM fm_R; 30.78/12.65 }; 30.78/12.65 30.78/12.65 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.78/12.65 mkBranch which key elt fm_l fm_r = let { 30.78/12.65 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 30.78/12.65 } in result where { 30.78/12.65 balance_ok = True; 30.78/12.65 left_ok = left_ok0 fm_l key fm_l; 30.78/12.65 left_ok0 fm_l key EmptyFM = True; 30.78/12.65 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 30.78/12.65 biggest_left_key = fst (findMax fm_l); 30.78/12.65 } in biggest_left_key < key; 30.78/12.65 left_size = sizeFM fm_l; 30.78/12.65 right_ok = right_ok0 fm_r key fm_r; 30.78/12.65 right_ok0 fm_r key EmptyFM = True; 30.78/12.65 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 30.78/12.65 smallest_right_key = fst (findMin fm_r); 30.78/12.65 } in key < smallest_right_key; 30.78/12.65 right_size = sizeFM fm_r; 30.78/12.65 unbox :: Int -> Int; 30.78/12.65 unbox x = x; 30.78/12.65 }; 30.78/12.65 30.78/12.65 sIZE_RATIO :: Int; 30.78/12.65 sIZE_RATIO = 5; 30.78/12.65 30.78/12.65 sizeFM :: FiniteMap b a -> Int; 30.78/12.65 sizeFM EmptyFM = 0; 30.78/12.65 sizeFM (Branch _ _ size _ _) = size; 30.78/12.65 30.78/12.65 } 30.78/12.65 module Maybe where { 30.78/12.65 import qualified FiniteMap; 30.78/12.65 import qualified Main; 30.78/12.65 import qualified Prelude; 30.78/12.65 } 30.78/12.65 module Main where { 30.78/12.65 import qualified FiniteMap; 30.78/12.65 import qualified Maybe; 30.78/12.65 import qualified Prelude; 30.78/12.65 } 30.78/12.65 30.78/12.65 ---------------------------------------- 30.78/12.65 30.78/12.65 (7) BR (EQUIVALENT) 30.78/12.65 Replaced joker patterns by fresh variables and removed binding patterns. 30.78/12.65 ---------------------------------------- 30.78/12.65 30.78/12.65 (8) 30.78/12.65 Obligation: 30.78/12.65 mainModule Main 30.78/12.65 module FiniteMap where { 30.78/12.65 import qualified Main; 30.78/12.65 import qualified Maybe; 30.78/12.65 import qualified Prelude; 30.78/12.65 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 30.78/12.65 30.78/12.65 instance (Eq a, Eq b) => Eq FiniteMap b a where { 30.78/12.65 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.78/12.65 } 30.78/12.65 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 30.78/12.65 delFromFM EmptyFM del_key = emptyFM; 30.78/12.65 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 30.78/12.65 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 30.78/12.65 | key == del_key = glueBal fm_l fm_r; 30.78/12.65 30.78/12.65 delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; 30.78/12.65 delListFromFM fm keys = foldl delFromFM fm keys; 30.78/12.65 30.78/12.65 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 30.78/12.65 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 30.78/12.65 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 31.13/12.69 31.13/12.69 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 31.13/12.69 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 31.13/12.69 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 31.13/12.69 31.13/12.69 emptyFM :: FiniteMap a b; 31.13/12.69 emptyFM = EmptyFM; 31.13/12.69 31.13/12.69 findMax :: FiniteMap b a -> (b,a); 31.13/12.69 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 31.13/12.69 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 31.13/12.69 31.13/12.69 findMin :: FiniteMap a b -> (a,b); 31.13/12.69 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 31.13/12.69 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 31.13/12.69 31.13/12.69 fmToList :: FiniteMap b a -> [(b,a)]; 31.13/12.69 fmToList fm = foldFM fmToList0 [] fm; 31.13/12.69 31.13/12.69 fmToList0 key elt rest = (key,elt) : rest; 31.13/12.69 31.13/12.69 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 31.13/12.69 foldFM k z EmptyFM = z; 31.13/12.69 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 31.13/12.69 31.13/12.69 glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 31.13/12.69 glueBal EmptyFM fm2 = fm2; 31.13/12.69 glueBal fm1 EmptyFM = fm1; 31.13/12.69 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 31.13/12.69 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 31.13/12.69 mid_elt1 = mid_elt10 vv2; 31.13/12.69 mid_elt10 (vyw,mid_elt1) = mid_elt1; 31.13/12.69 mid_elt2 = mid_elt20 vv3; 31.13/12.69 mid_elt20 (vyv,mid_elt2) = mid_elt2; 31.13/12.69 mid_key1 = mid_key10 vv2; 31.13/12.69 mid_key10 (mid_key1,vyx) = mid_key1; 31.13/12.69 mid_key2 = mid_key20 vv3; 31.13/12.69 mid_key20 (mid_key2,vyy) = mid_key2; 31.13/12.69 vv2 = findMax fm1; 31.13/12.69 vv3 = findMin fm2; 31.13/12.69 }; 31.13/12.69 31.13/12.69 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.13/12.69 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 31.13/12.69 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 31.13/12.69 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 31.13/12.69 | otherwise = mkBranch 2 key elt fm_L fm_R where { 31.13/12.69 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); 31.13/12.69 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); 31.13/12.69 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 31.13/12.69 | otherwise = double_L fm_L fm_R; 31.13/12.69 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 31.13/12.69 | otherwise = double_R fm_L fm_R; 31.13/12.69 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; 31.13/12.69 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); 31.13/12.69 size_l = sizeFM fm_L; 31.13/12.69 size_r = sizeFM fm_R; 31.13/12.69 }; 31.13/12.69 31.13/12.69 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.13/12.69 mkBranch which key elt fm_l fm_r = let { 31.13/12.69 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 31.13/12.69 } in result where { 31.13/12.69 balance_ok = True; 31.13/12.69 left_ok = left_ok0 fm_l key fm_l; 31.13/12.69 left_ok0 fm_l key EmptyFM = True; 31.13/12.69 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 31.13/12.69 biggest_left_key = fst (findMax fm_l); 31.13/12.69 } in biggest_left_key < key; 31.13/12.69 left_size = sizeFM fm_l; 31.13/12.69 right_ok = right_ok0 fm_r key fm_r; 31.13/12.69 right_ok0 fm_r key EmptyFM = True; 31.13/12.69 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 31.13/12.69 smallest_right_key = fst (findMin fm_r); 31.13/12.69 } in key < smallest_right_key; 31.13/12.69 right_size = sizeFM fm_r; 31.13/12.69 unbox :: Int -> Int; 31.13/12.69 unbox x = x; 31.13/12.69 }; 31.13/12.69 31.13/12.69 sIZE_RATIO :: Int; 31.13/12.69 sIZE_RATIO = 5; 31.13/12.69 31.13/12.69 sizeFM :: FiniteMap b a -> Int; 31.13/12.69 sizeFM EmptyFM = 0; 31.13/12.69 sizeFM (Branch vzu vzv size vzw vzx) = size; 31.13/12.69 31.13/12.69 } 31.13/12.69 module Maybe where { 31.13/12.69 import qualified FiniteMap; 31.13/12.69 import qualified Main; 31.13/12.69 import qualified Prelude; 31.13/12.69 } 31.13/12.69 module Main where { 31.13/12.69 import qualified FiniteMap; 31.13/12.69 import qualified Maybe; 31.13/12.69 import qualified Prelude; 31.13/12.69 } 31.13/12.69 31.13/12.69 ---------------------------------------- 31.13/12.69 31.13/12.69 (9) COR (EQUIVALENT) 31.13/12.69 Cond Reductions: 31.13/12.69 The following Function with conditions 31.13/12.69 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 31.13/12.69 " 31.13/12.69 is transformed to 31.13/12.69 "compare x y = compare3 x y; 31.13/12.69 " 31.13/12.69 "compare0 x y True = GT; 31.13/12.69 " 31.13/12.69 "compare2 x y True = EQ; 31.13/12.69 compare2 x y False = compare1 x y (x <= y); 31.13/12.69 " 31.13/12.69 "compare1 x y True = LT; 31.13/12.69 compare1 x y False = compare0 x y otherwise; 31.13/12.69 " 31.13/12.69 "compare3 x y = compare2 x y (x == y); 31.13/12.69 " 31.13/12.69 The following Function with conditions 31.13/12.69 "absReal x|x >= 0x|otherwise`negate` x; 31.13/12.69 " 31.13/12.69 is transformed to 31.13/12.69 "absReal x = absReal2 x; 31.13/12.69 " 31.13/12.69 "absReal1 x True = x; 31.13/12.69 absReal1 x False = absReal0 x otherwise; 31.13/12.69 " 31.13/12.69 "absReal0 x True = `negate` x; 31.13/12.69 " 31.13/12.69 "absReal2 x = absReal1 x (x >= 0); 31.13/12.69 " 31.13/12.69 The following Function with conditions 31.13/12.69 "gcd' x 0 = x; 31.13/12.69 gcd' x y = gcd' y (x `rem` y); 31.13/12.69 " 31.13/12.69 is transformed to 31.13/12.69 "gcd' x wuy = gcd'2 x wuy; 31.13/12.69 gcd' x y = gcd'0 x y; 31.13/12.69 " 31.13/12.69 "gcd'0 x y = gcd' y (x `rem` y); 31.13/12.69 " 31.13/12.69 "gcd'1 True x wuy = x; 31.13/12.69 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 31.13/12.69 " 31.13/12.69 "gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 31.13/12.69 gcd'2 wvw wvx = gcd'0 wvw wvx; 31.13/12.69 " 31.13/12.69 The following Function with conditions 31.13/12.69 "gcd 0 0 = error []; 31.13/12.69 gcd x y = gcd' (abs x) (abs y) where { 31.13/12.69 gcd' x 0 = x; 31.13/12.69 gcd' x y = gcd' y (x `rem` y); 31.13/12.69 } 31.13/12.69 ; 31.13/12.69 " 31.13/12.69 is transformed to 31.13/12.69 "gcd wvy wvz = gcd3 wvy wvz; 31.13/12.69 gcd x y = gcd0 x y; 31.13/12.69 " 31.13/12.69 "gcd0 x y = gcd' (abs x) (abs y) where { 31.13/12.69 gcd' x wuy = gcd'2 x wuy; 31.13/12.69 gcd' x y = gcd'0 x y; 31.13/12.69 ; 31.13/12.69 gcd'0 x y = gcd' y (x `rem` y); 31.13/12.69 ; 31.13/12.69 gcd'1 True x wuy = x; 31.13/12.69 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 31.13/12.69 ; 31.13/12.69 gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 31.13/12.69 gcd'2 wvw wvx = gcd'0 wvw wvx; 31.13/12.69 } 31.13/12.69 ; 31.13/12.69 " 31.13/12.69 "gcd1 True wvy wvz = error []; 31.13/12.69 gcd1 wwu wwv www = gcd0 wwv www; 31.13/12.69 " 31.13/12.69 "gcd2 True wvy wvz = gcd1 (wvz == 0) wvy wvz; 31.13/12.69 gcd2 wwx wwy wwz = gcd0 wwy wwz; 31.13/12.69 " 31.13/12.69 "gcd3 wvy wvz = gcd2 (wvy == 0) wvy wvz; 31.13/12.69 gcd3 wxu wxv = gcd0 wxu wxv; 31.13/12.69 " 31.13/12.69 The following Function with conditions 31.13/12.69 "undefined |Falseundefined; 31.13/12.69 " 31.13/12.69 is transformed to 31.13/12.69 "undefined = undefined1; 31.13/12.69 " 31.13/12.69 "undefined0 True = undefined; 31.13/12.69 " 31.13/12.69 "undefined1 = undefined0 False; 31.13/12.69 " 31.13/12.69 The following Function with conditions 31.13/12.69 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 31.13/12.69 d = gcd x y; 31.13/12.69 } 31.13/12.69 ; 31.13/12.69 " 31.13/12.69 is transformed to 31.13/12.69 "reduce x y = reduce2 x y; 31.13/12.69 " 31.13/12.69 "reduce2 x y = reduce1 x y (y == 0) where { 31.13/12.69 d = gcd x y; 31.13/12.69 ; 31.13/12.69 reduce0 x y True = x `quot` d :% (y `quot` d); 31.13/12.69 ; 31.13/12.69 reduce1 x y True = error []; 31.13/12.69 reduce1 x y False = reduce0 x y otherwise; 31.13/12.69 } 31.13/12.69 ; 31.13/12.69 " 31.13/12.69 The following Function with conditions 31.13/12.69 "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; 31.13/12.69 " 31.13/12.69 is transformed to 31.13/12.69 "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); 31.13/12.69 " 31.13/12.69 "mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 31.13/12.69 " 31.13/12.69 "mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 31.13/12.69 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; 31.13/12.69 " 31.13/12.69 "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); 31.13/12.69 " 31.13/12.69 The following Function with conditions 31.13/12.69 "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; 31.13/12.69 " 31.13/12.69 is transformed to 31.13/12.69 "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); 31.13/12.69 " 31.13/12.69 "mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 31.13/12.69 " 31.13/12.69 "mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 31.13/12.69 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; 31.13/12.69 " 31.13/12.69 "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); 31.13/12.69 " 31.13/12.69 The following Function with conditions 31.13/12.69 "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 { 31.13/12.69 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); 31.13/12.69 ; 31.13/12.69 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); 31.13/12.69 ; 31.13/12.69 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; 31.13/12.69 ; 31.13/12.69 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; 31.13/12.69 ; 31.13/12.69 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; 31.13/12.69 ; 31.13/12.69 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); 31.13/12.69 ; 31.13/12.69 size_l = sizeFM fm_L; 31.13/12.69 ; 31.13/12.69 size_r = sizeFM fm_R; 31.13/12.69 } 31.13/12.69 ; 31.13/12.69 " 31.13/12.69 is transformed to 31.13/12.69 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 31.13/12.69 " 31.13/12.69 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 31.13/12.69 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); 31.13/12.69 ; 31.13/12.69 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); 31.13/12.69 ; 31.13/12.69 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); 31.13/12.69 ; 31.13/12.69 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 31.13/12.69 ; 31.13/12.69 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 31.13/12.69 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; 31.13/12.69 ; 31.13/12.69 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); 31.13/12.69 ; 31.13/12.69 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); 31.13/12.69 ; 31.13/12.69 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 31.13/12.69 ; 31.13/12.69 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 31.13/12.69 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; 31.13/12.69 ; 31.13/12.69 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); 31.13/12.69 ; 31.13/12.69 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 31.13/12.69 ; 31.13/12.69 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 31.13/12.69 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 31.13/12.69 ; 31.13/12.69 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 31.13/12.69 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 31.13/12.69 ; 31.13/12.69 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 31.13/12.69 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 31.13/12.69 ; 31.13/12.69 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; 31.13/12.69 ; 31.13/12.69 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); 31.13/12.69 ; 31.13/12.69 size_l = sizeFM fm_L; 31.13/12.69 ; 31.13/12.69 size_r = sizeFM fm_R; 31.13/12.69 } 31.13/12.69 ; 31.13/12.69 " 31.13/12.69 The following Function with conditions 31.13/12.69 "glueBal EmptyFM fm2 = fm2; 31.13/12.69 glueBal fm1 EmptyFM = fm1; 31.13/12.69 glueBal fm1 fm2|sizeFM fm2 > sizeFM fm1mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2)|otherwisemkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 31.13/12.69 mid_elt1 = mid_elt10 vv2; 31.13/12.69 ; 31.13/12.69 mid_elt10 (vyw,mid_elt1) = mid_elt1; 31.13/12.69 ; 31.13/12.69 mid_elt2 = mid_elt20 vv3; 31.13/12.69 ; 31.13/12.69 mid_elt20 (vyv,mid_elt2) = mid_elt2; 31.13/12.69 ; 31.13/12.69 mid_key1 = mid_key10 vv2; 31.13/12.69 ; 31.13/12.69 mid_key10 (mid_key1,vyx) = mid_key1; 31.13/12.69 ; 31.13/12.69 mid_key2 = mid_key20 vv3; 31.13/12.69 ; 31.13/12.69 mid_key20 (mid_key2,vyy) = mid_key2; 31.13/12.69 ; 31.13/12.69 vv2 = findMax fm1; 31.13/12.69 ; 31.13/12.69 vv3 = findMin fm2; 31.13/12.69 } 31.13/12.69 ; 31.13/12.69 " 31.13/12.69 is transformed to 31.13/12.69 "glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 31.13/12.69 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 31.13/12.69 glueBal fm1 fm2 = glueBal2 fm1 fm2; 31.13/12.69 " 31.13/12.69 "glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 31.13/12.69 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 31.13/12.69 ; 31.13/12.69 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 31.13/12.69 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 31.13/12.69 ; 31.13/12.69 mid_elt1 = mid_elt10 vv2; 31.13/12.69 ; 31.13/12.69 mid_elt10 (vyw,mid_elt1) = mid_elt1; 31.13/12.69 ; 31.13/12.69 mid_elt2 = mid_elt20 vv3; 31.13/12.69 ; 31.13/12.69 mid_elt20 (vyv,mid_elt2) = mid_elt2; 31.13/12.69 ; 31.13/12.69 mid_key1 = mid_key10 vv2; 31.13/12.69 ; 31.13/12.69 mid_key10 (mid_key1,vyx) = mid_key1; 31.13/12.69 ; 31.13/12.69 mid_key2 = mid_key20 vv3; 31.13/12.69 ; 31.13/12.69 mid_key20 (mid_key2,vyy) = mid_key2; 31.13/12.69 ; 31.13/12.69 vv2 = findMax fm1; 31.13/12.69 ; 31.13/12.69 vv3 = findMin fm2; 31.13/12.69 } 31.13/12.69 ; 31.13/12.69 " 31.13/12.69 "glueBal3 fm1 EmptyFM = fm1; 31.13/12.69 glueBal3 wxz wyu = glueBal2 wxz wyu; 31.13/12.69 " 31.13/12.69 "glueBal4 EmptyFM fm2 = fm2; 31.13/12.69 glueBal4 wyw wyx = glueBal3 wyw wyx; 31.13/12.69 " 31.13/12.69 The following Function with conditions 31.13/12.69 "delFromFM EmptyFM del_key = emptyFM; 31.13/12.69 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; 31.13/12.69 " 31.13/12.69 is transformed to 31.13/12.69 "delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 31.13/12.69 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 31.13/12.69 " 31.13/12.69 "delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 31.13/12.69 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 31.13/12.69 " 31.13/12.69 "delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 31.13/12.69 " 31.13/12.69 "delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 31.13/12.69 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 31.13/12.69 " 31.13/12.69 "delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 31.13/12.69 " 31.13/12.69 "delFromFM4 EmptyFM del_key = emptyFM; 31.13/12.69 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 31.13/12.69 " 31.13/12.69 31.13/12.69 ---------------------------------------- 31.13/12.69 31.13/12.69 (10) 31.13/12.69 Obligation: 31.13/12.69 mainModule Main 31.13/12.69 module FiniteMap where { 31.13/12.69 import qualified Main; 31.13/12.69 import qualified Maybe; 31.13/12.69 import qualified Prelude; 31.13/12.69 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 31.13/12.69 31.13/12.69 instance (Eq a, Eq b) => Eq FiniteMap a b where { 31.13/12.69 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 31.13/12.69 } 31.13/12.69 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 31.13/12.69 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 31.13/12.69 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 31.13/12.69 31.13/12.69 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 31.13/12.69 31.13/12.69 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 31.13/12.69 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 31.13/12.69 31.13/12.69 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 31.13/12.69 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 31.13/12.69 31.13/12.69 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 31.13/12.69 31.13/12.69 delFromFM4 EmptyFM del_key = emptyFM; 31.13/12.69 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 31.13/12.69 31.13/12.69 delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; 31.13/12.69 delListFromFM fm keys = foldl delFromFM fm keys; 31.13/12.69 31.13/12.69 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 31.13/12.69 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 31.13/12.69 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 31.13/12.69 31.13/12.69 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 31.13/12.69 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 31.13/12.69 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 31.13/12.69 31.13/12.69 emptyFM :: FiniteMap b a; 31.13/12.69 emptyFM = EmptyFM; 31.13/12.69 31.13/12.69 findMax :: FiniteMap b a -> (b,a); 31.13/12.69 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 31.13/12.69 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 31.13/12.69 31.13/12.69 findMin :: FiniteMap b a -> (b,a); 31.13/12.69 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 31.13/12.69 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 31.13/12.69 31.13/12.69 fmToList :: FiniteMap b a -> [(b,a)]; 31.13/12.69 fmToList fm = foldFM fmToList0 [] fm; 31.13/12.69 31.13/12.69 fmToList0 key elt rest = (key,elt) : rest; 31.13/12.69 31.13/12.69 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 31.13/12.69 foldFM k z EmptyFM = z; 31.13/12.69 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 31.13/12.69 31.13/12.69 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.13/12.69 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 31.62/12.84 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 31.62/12.84 glueBal fm1 fm2 = glueBal2 fm1 fm2; 31.62/12.84 31.62/12.84 glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 31.62/12.84 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 31.62/12.84 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 31.62/12.84 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 31.62/12.84 mid_elt1 = mid_elt10 vv2; 31.62/12.84 mid_elt10 (vyw,mid_elt1) = mid_elt1; 31.62/12.84 mid_elt2 = mid_elt20 vv3; 31.62/12.84 mid_elt20 (vyv,mid_elt2) = mid_elt2; 31.62/12.84 mid_key1 = mid_key10 vv2; 31.62/12.84 mid_key10 (mid_key1,vyx) = mid_key1; 31.62/12.84 mid_key2 = mid_key20 vv3; 31.62/12.84 mid_key20 (mid_key2,vyy) = mid_key2; 31.62/12.84 vv2 = findMax fm1; 31.62/12.84 vv3 = findMin fm2; 31.62/12.84 }; 31.62/12.84 31.62/12.84 glueBal3 fm1 EmptyFM = fm1; 31.62/12.84 glueBal3 wxz wyu = glueBal2 wxz wyu; 31.62/12.84 31.62/12.84 glueBal4 EmptyFM fm2 = fm2; 31.62/12.84 glueBal4 wyw wyx = glueBal3 wyw wyx; 31.62/12.84 31.62/12.84 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.62/12.84 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 31.62/12.84 31.62/12.84 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 31.62/12.84 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); 31.62/12.84 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); 31.62/12.84 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); 31.62/12.84 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 31.62/12.84 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 31.62/12.84 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; 31.62/12.84 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); 31.62/12.84 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); 31.62/12.84 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 31.62/12.84 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 31.62/12.84 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; 31.62/12.84 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); 31.62/12.84 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 31.62/12.84 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 31.62/12.84 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 31.62/12.84 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 31.62/12.84 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 31.62/12.84 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 31.62/12.84 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 31.62/12.84 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; 31.62/12.84 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); 31.62/12.84 size_l = sizeFM fm_L; 31.62/12.84 size_r = sizeFM fm_R; 31.62/12.84 }; 31.62/12.84 31.62/12.84 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.62/12.84 mkBranch which key elt fm_l fm_r = let { 31.62/12.84 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 31.62/12.84 } in result where { 31.62/12.84 balance_ok = True; 31.62/12.84 left_ok = left_ok0 fm_l key fm_l; 31.62/12.84 left_ok0 fm_l key EmptyFM = True; 31.62/12.84 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 31.62/12.84 biggest_left_key = fst (findMax fm_l); 31.62/12.84 } in biggest_left_key < key; 31.62/12.84 left_size = sizeFM fm_l; 31.62/12.84 right_ok = right_ok0 fm_r key fm_r; 31.62/12.84 right_ok0 fm_r key EmptyFM = True; 31.62/12.84 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 31.62/12.84 smallest_right_key = fst (findMin fm_r); 31.62/12.84 } in key < smallest_right_key; 31.62/12.84 right_size = sizeFM fm_r; 31.62/12.84 unbox :: Int -> Int; 31.62/12.84 unbox x = x; 31.62/12.84 }; 31.62/12.84 31.62/12.84 sIZE_RATIO :: Int; 31.62/12.84 sIZE_RATIO = 5; 31.62/12.84 31.62/12.84 sizeFM :: FiniteMap a b -> Int; 31.62/12.84 sizeFM EmptyFM = 0; 31.62/12.84 sizeFM (Branch vzu vzv size vzw vzx) = size; 31.62/12.84 31.62/12.84 } 31.62/12.84 module Maybe where { 31.62/12.84 import qualified FiniteMap; 31.62/12.84 import qualified Main; 31.62/12.84 import qualified Prelude; 31.62/12.84 } 31.62/12.84 module Main where { 31.62/12.84 import qualified FiniteMap; 31.62/12.84 import qualified Maybe; 31.62/12.84 import qualified Prelude; 31.62/12.84 } 31.62/12.84 31.62/12.84 ---------------------------------------- 31.62/12.84 31.62/12.84 (11) LetRed (EQUIVALENT) 31.62/12.84 Let/Where Reductions: 31.62/12.84 The bindings of the following Let/Where expression 31.62/12.84 "gcd' (abs x) (abs y) where { 31.62/12.84 gcd' x wuy = gcd'2 x wuy; 31.62/12.84 gcd' x y = gcd'0 x y; 31.62/12.84 ; 31.62/12.84 gcd'0 x y = gcd' y (x `rem` y); 31.62/12.84 ; 31.62/12.84 gcd'1 True x wuy = x; 31.62/12.84 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 31.62/12.84 ; 31.62/12.84 gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 31.62/12.84 gcd'2 wvw wvx = gcd'0 wvw wvx; 31.62/12.84 } 31.62/12.84 " 31.62/12.84 are unpacked to the following functions on top level 31.62/12.84 "gcd0Gcd'2 x wuy = gcd0Gcd'1 (wuy == 0) x wuy; 31.62/12.84 gcd0Gcd'2 wvw wvx = gcd0Gcd'0 wvw wvx; 31.62/12.84 " 31.62/12.84 "gcd0Gcd'1 True x wuy = x; 31.62/12.84 gcd0Gcd'1 wuz wvu wvv = gcd0Gcd'0 wvu wvv; 31.62/12.84 " 31.62/12.84 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 31.62/12.84 " 31.62/12.84 "gcd0Gcd' x wuy = gcd0Gcd'2 x wuy; 31.62/12.84 gcd0Gcd' x y = gcd0Gcd'0 x y; 31.62/12.84 " 31.62/12.84 The bindings of the following Let/Where expression 31.62/12.84 "reduce1 x y (y == 0) where { 31.62/12.84 d = gcd x y; 31.62/12.84 ; 31.62/12.84 reduce0 x y True = x `quot` d :% (y `quot` d); 31.62/12.84 ; 31.62/12.84 reduce1 x y True = error []; 31.62/12.84 reduce1 x y False = reduce0 x y otherwise; 31.62/12.84 } 31.62/12.84 " 31.62/12.84 are unpacked to the following functions on top level 31.62/12.84 "reduce2Reduce1 wzw wzx x y True = error []; 31.62/12.84 reduce2Reduce1 wzw wzx x y False = reduce2Reduce0 wzw wzx x y otherwise; 31.62/12.84 " 31.62/12.84 "reduce2Reduce0 wzw wzx x y True = x `quot` reduce2D wzw wzx :% (y `quot` reduce2D wzw wzx); 31.62/12.84 " 31.62/12.84 "reduce2D wzw wzx = gcd wzw wzx; 31.62/12.84 " 31.62/12.84 The bindings of the following Let/Where expression 31.62/12.84 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 31.62/12.84 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); 31.62/12.84 ; 31.62/12.84 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); 31.62/12.84 ; 31.62/12.84 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); 31.62/12.84 ; 31.62/12.84 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 31.62/12.84 ; 31.62/12.84 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 31.62/12.84 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; 31.62/12.84 ; 31.62/12.84 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); 31.62/12.84 ; 31.62/12.84 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); 31.62/12.84 ; 31.62/12.84 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 31.62/12.84 ; 31.62/12.84 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 31.62/12.84 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; 31.62/12.84 ; 31.62/12.84 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); 31.62/12.84 ; 31.62/12.84 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 31.62/12.84 ; 31.62/12.84 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 31.62/12.84 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 31.62/12.84 ; 31.62/12.84 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 31.62/12.84 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 31.62/12.84 ; 31.62/12.84 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 31.62/12.84 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 31.62/12.84 ; 31.62/12.84 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; 31.62/12.84 ; 31.62/12.84 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); 31.62/12.84 ; 31.62/12.84 size_l = sizeFM fm_L; 31.62/12.84 ; 31.62/12.84 size_r = sizeFM fm_R; 31.62/12.84 } 31.62/12.84 " 31.62/12.84 are unpacked to the following functions on top level 31.62/12.84 "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; 31.62/12.84 " 31.62/12.84 "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); 31.62/12.84 " 31.62/12.84 "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; 31.62/12.84 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; 31.62/12.84 " 31.62/12.84 "mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 31.62/12.84 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 31.62/12.84 " 31.62/12.84 "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); 31.62/12.84 " 31.62/12.84 "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); 31.62/12.84 " 31.62/12.84 "mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 31.62/12.84 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); 31.62/12.84 " 31.62/12.84 "mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuu; 31.62/12.84 " 31.62/12.84 "mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; 31.62/12.84 " 31.62/12.84 "mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 31.62/12.84 " 31.62/12.84 "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; 31.62/12.84 " 31.62/12.84 "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); 31.62/12.84 " 31.62/12.84 "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; 31.62/12.84 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; 31.62/12.84 " 31.62/12.84 "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); 31.62/12.84 " 31.62/12.84 "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; 31.62/12.84 " 31.62/12.84 "mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 31.62/12.84 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); 31.62/12.84 " 31.62/12.84 "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); 31.62/12.84 " 31.62/12.84 "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); 31.62/12.84 " 31.62/12.84 The bindings of the following Let/Where expression 31.62/12.84 "let { 31.62/12.84 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 31.62/12.84 } in result where { 31.62/12.84 balance_ok = True; 31.62/12.84 ; 31.62/12.84 left_ok = left_ok0 fm_l key fm_l; 31.62/12.84 ; 31.62/12.84 left_ok0 fm_l key EmptyFM = True; 31.62/12.84 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 31.62/12.84 biggest_left_key = fst (findMax fm_l); 31.62/12.84 } in biggest_left_key < key; 31.62/12.84 ; 31.62/12.84 left_size = sizeFM fm_l; 31.62/12.84 ; 31.62/12.84 right_ok = right_ok0 fm_r key fm_r; 31.62/12.84 ; 31.62/12.84 right_ok0 fm_r key EmptyFM = True; 31.62/12.84 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 31.62/12.84 smallest_right_key = fst (findMin fm_r); 31.62/12.84 } in key < smallest_right_key; 31.62/12.84 ; 31.62/12.84 right_size = sizeFM fm_r; 31.62/12.84 ; 31.62/12.84 unbox x = x; 31.62/12.84 } 31.62/12.84 " 31.62/12.84 are unpacked to the following functions on top level 31.62/12.84 "mkBranchBalance_ok xuw xux xuy = True; 31.62/12.84 " 31.62/12.84 "mkBranchRight_size xuw xux xuy = sizeFM xuw; 31.62/12.84 " 31.62/12.84 "mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuw xux xuw; 31.62/12.84 " 31.62/12.84 "mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuy xux xuy; 31.62/12.84 " 31.62/12.84 "mkBranchLeft_size xuw xux xuy = sizeFM xuy; 31.62/12.84 " 31.62/12.84 "mkBranchUnbox xuw xux xuy x = x; 31.62/12.84 " 31.62/12.84 "mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 31.62/12.84 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 31.62/12.84 " 31.62/12.84 "mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 31.62/12.84 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 31.62/12.84 " 31.62/12.84 The bindings of the following Let/Where expression 31.62/12.84 "let { 31.62/12.84 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 31.62/12.84 } in result" 31.62/12.84 are unpacked to the following functions on top level 31.62/12.84 "mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xuz xvw (1 + mkBranchLeft_size xvv xuz xvw + mkBranchRight_size xvv xuz xvw)) xvw xvv; 31.62/12.84 " 31.62/12.84 The bindings of the following Let/Where expression 31.62/12.84 "glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 31.62/12.84 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 31.62/12.84 ; 31.62/12.84 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 31.62/12.84 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 31.62/12.84 ; 31.62/12.84 mid_elt1 = mid_elt10 vv2; 31.62/12.84 ; 31.62/12.84 mid_elt10 (vyw,mid_elt1) = mid_elt1; 31.62/12.84 ; 31.62/12.84 mid_elt2 = mid_elt20 vv3; 31.62/12.84 ; 31.62/12.84 mid_elt20 (vyv,mid_elt2) = mid_elt2; 31.62/12.84 ; 31.62/12.84 mid_key1 = mid_key10 vv2; 31.62/12.84 ; 31.62/12.84 mid_key10 (mid_key1,vyx) = mid_key1; 31.62/12.84 ; 31.62/12.84 mid_key2 = mid_key20 vv3; 31.62/12.84 ; 31.62/12.84 mid_key20 (mid_key2,vyy) = mid_key2; 31.62/12.84 ; 31.62/12.84 vv2 = findMax fm1; 31.62/12.84 ; 31.62/12.84 vv3 = findMin fm2; 31.62/12.84 } 31.62/12.84 " 31.62/12.84 are unpacked to the following functions on top level 31.62/12.84 "glueBal2Vv3 xvx xvy = findMin xvx; 31.62/12.84 " 31.62/12.84 "glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 31.62/12.84 " 31.62/12.84 "glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 31.62/12.84 " 31.62/12.84 "glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 31.62/12.84 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 31.62/12.84 " 31.62/12.84 "glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 31.62/12.84 " 31.62/12.84 "glueBal2Vv2 xvx xvy = findMax xvy; 31.62/12.84 " 31.62/12.84 "glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 31.62/12.84 " 31.62/12.84 "glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 31.62/12.84 " 31.62/12.84 "glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 31.62/12.84 " 31.62/12.84 "glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 31.62/12.84 " 31.62/12.84 "glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 31.62/12.84 " 31.62/12.84 "glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 31.62/12.84 " 31.62/12.84 The bindings of the following Let/Where expression 31.62/12.84 "let { 31.62/12.84 biggest_left_key = fst (findMax fm_l); 31.62/12.84 } in biggest_left_key < key" 31.62/12.84 are unpacked to the following functions on top level 31.62/12.84 "mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 31.62/12.84 " 31.62/12.84 The bindings of the following Let/Where expression 31.62/12.84 "let { 31.62/12.84 smallest_right_key = fst (findMin fm_r); 31.62/12.84 } in key < smallest_right_key" 31.62/12.84 are unpacked to the following functions on top level 31.62/12.84 "mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 31.62/12.84 " 31.62/12.84 31.62/12.84 ---------------------------------------- 31.62/12.84 31.62/12.84 (12) 31.62/12.84 Obligation: 31.62/12.84 mainModule Main 31.62/12.84 module FiniteMap where { 31.62/12.84 import qualified Main; 31.62/12.84 import qualified Maybe; 31.62/12.84 import qualified Prelude; 31.62/12.84 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 31.62/12.84 31.62/12.84 instance (Eq a, Eq b) => Eq FiniteMap b a where { 31.62/12.84 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 31.62/12.84 } 31.62/12.84 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 31.62/12.84 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 31.62/12.84 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 31.62/12.84 31.62/12.84 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 31.62/12.84 31.62/12.84 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 31.62/12.84 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 31.62/12.84 31.62/12.84 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 31.62/12.84 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 31.62/12.84 31.62/12.84 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 31.62/12.84 31.62/12.84 delFromFM4 EmptyFM del_key = emptyFM; 31.62/12.84 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 31.62/12.84 31.62/12.84 delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; 31.62/12.84 delListFromFM fm keys = foldl delFromFM fm keys; 31.62/12.84 31.62/12.84 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 31.62/12.84 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 31.62/12.84 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 31.62/12.84 31.62/12.84 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 31.62/12.84 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 31.62/12.84 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 31.62/12.84 31.62/12.84 emptyFM :: FiniteMap b a; 31.62/12.84 emptyFM = EmptyFM; 31.62/12.84 31.62/12.84 findMax :: FiniteMap a b -> (a,b); 31.62/12.84 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 31.62/12.84 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 31.62/12.84 31.62/12.84 findMin :: FiniteMap a b -> (a,b); 31.62/12.84 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 31.62/12.84 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 31.62/12.84 31.62/12.84 fmToList :: FiniteMap a b -> [(a,b)]; 31.62/12.84 fmToList fm = foldFM fmToList0 [] fm; 31.62/12.84 31.62/12.84 fmToList0 key elt rest = (key,elt) : rest; 31.62/12.84 31.62/12.84 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 31.62/12.84 foldFM k z EmptyFM = z; 31.62/12.84 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 31.62/12.84 31.62/12.84 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.62/12.84 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 31.62/12.84 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 31.62/12.84 glueBal fm1 fm2 = glueBal2 fm1 fm2; 31.62/12.84 31.62/12.84 glueBal2 fm1 fm2 = glueBal2GlueBal1 fm2 fm1 fm1 fm2 (sizeFM fm2 > sizeFM fm1); 31.62/12.84 31.62/12.84 glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 31.62/12.84 31.62/12.84 glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 31.62/12.84 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 31.62/12.84 31.62/12.84 glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 31.62/12.84 31.62/12.84 glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 31.62/12.84 31.62/12.84 glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 31.62/12.84 31.62/12.84 glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 31.62/12.84 31.62/12.84 glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 31.62/12.84 31.62/12.84 glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 31.62/12.84 31.62/12.84 glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 31.62/12.84 31.62/12.84 glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 31.62/12.84 31.62/12.84 glueBal2Vv2 xvx xvy = findMax xvy; 31.62/12.84 31.62/12.84 glueBal2Vv3 xvx xvy = findMin xvx; 31.62/12.84 31.62/12.84 glueBal3 fm1 EmptyFM = fm1; 31.62/12.84 glueBal3 wxz wyu = glueBal2 wxz wyu; 31.62/12.84 31.62/12.84 glueBal4 EmptyFM fm2 = fm2; 31.62/12.84 glueBal4 wyw wyx = glueBal3 wyw wyx; 31.62/12.84 31.62/12.84 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.62/12.84 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 31.62/12.84 31.62/12.84 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < 2); 31.62/12.84 31.62/12.84 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); 31.62/12.84 31.62/12.84 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); 31.62/12.84 31.62/12.84 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); 31.62/12.84 31.62/12.84 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; 31.62/12.84 31.62/12.84 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; 31.62/12.84 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; 31.62/12.84 31.62/12.84 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); 31.62/12.84 31.62/12.84 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); 31.62/12.84 31.62/12.84 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; 31.62/12.84 31.62/12.84 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; 31.62/12.84 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; 31.62/12.84 31.62/12.84 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); 31.62/12.84 31.62/12.84 mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 31.62/12.84 31.62/12.84 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 31.62/12.84 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 31.62/12.84 31.62/12.84 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 31.62/12.84 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); 31.62/12.84 31.62/12.84 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 31.62/12.84 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); 31.62/12.84 31.62/12.84 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; 31.62/12.84 31.62/12.84 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); 31.62/12.84 31.62/12.84 mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuu; 31.62/12.84 31.62/12.84 mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; 31.62/12.84 31.62/12.84 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 31.62/12.84 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 31.62/12.84 31.62/12.84 mkBranchBalance_ok xuw xux xuy = True; 31.62/12.84 31.62/12.84 mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuy xux xuy; 31.62/12.84 31.62/12.84 mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 31.62/12.84 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 31.62/12.84 31.62/12.84 mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 31.62/12.84 31.62/12.84 mkBranchLeft_size xuw xux xuy = sizeFM xuy; 31.62/12.84 31.62/12.84 mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xuz xvw (1 + mkBranchLeft_size xvv xuz xvw + mkBranchRight_size xvv xuz xvw)) xvw xvv; 31.62/12.84 31.62/12.84 mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuw xux xuw; 31.62/12.84 31.62/12.84 mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 31.62/12.84 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 31.62/12.84 31.62/12.84 mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 31.62/12.84 31.62/12.84 mkBranchRight_size xuw xux xuy = sizeFM xuw; 31.62/12.84 31.62/12.84 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 31.62/12.84 mkBranchUnbox xuw xux xuy x = x; 31.62/12.84 31.62/12.84 sIZE_RATIO :: Int; 31.62/12.84 sIZE_RATIO = 5; 31.62/12.84 31.62/12.84 sizeFM :: FiniteMap b a -> Int; 31.62/12.84 sizeFM EmptyFM = 0; 31.62/12.84 sizeFM (Branch vzu vzv size vzw vzx) = size; 31.62/12.84 31.62/12.84 } 31.62/12.84 module Maybe where { 31.62/12.84 import qualified FiniteMap; 31.62/12.84 import qualified Main; 31.62/12.84 import qualified Prelude; 31.62/12.84 } 31.62/12.84 module Main where { 31.62/12.84 import qualified FiniteMap; 31.62/12.84 import qualified Maybe; 31.62/12.84 import qualified Prelude; 31.62/12.84 } 31.62/12.84 31.62/12.84 ---------------------------------------- 31.62/12.84 31.62/12.84 (13) NumRed (SOUND) 31.62/12.84 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 31.62/12.84 ---------------------------------------- 31.62/12.84 31.62/12.84 (14) 31.62/12.84 Obligation: 31.62/12.84 mainModule Main 31.62/12.84 module FiniteMap where { 31.62/12.84 import qualified Main; 31.62/12.84 import qualified Maybe; 31.62/12.84 import qualified Prelude; 31.62/12.84 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 31.62/12.84 31.62/12.84 instance (Eq a, Eq b) => Eq FiniteMap a b where { 31.62/12.84 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 31.62/12.84 } 31.62/12.84 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 31.62/12.84 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 31.62/12.84 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 31.62/12.84 31.62/12.84 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 31.62/12.84 31.62/12.84 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 31.62/12.84 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 31.62/12.84 31.62/12.84 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 31.62/12.84 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 31.62/12.84 31.62/12.84 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 31.62/12.84 31.62/12.84 delFromFM4 EmptyFM del_key = emptyFM; 31.62/12.84 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 31.62/12.84 31.62/12.84 delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; 31.62/12.84 delListFromFM fm keys = foldl delFromFM fm keys; 31.62/12.84 31.62/12.84 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 31.62/12.84 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 31.62/12.84 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 31.62/12.84 31.62/12.84 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 31.62/12.84 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 31.62/12.84 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 31.62/12.84 31.62/12.84 emptyFM :: FiniteMap b a; 31.62/12.84 emptyFM = EmptyFM; 31.62/12.84 31.62/12.84 findMax :: FiniteMap b a -> (b,a); 31.62/12.84 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 31.62/12.84 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 31.62/12.84 31.62/12.84 findMin :: FiniteMap a b -> (a,b); 31.62/12.84 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 31.62/12.84 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 31.62/12.84 31.62/12.84 fmToList :: FiniteMap a b -> [(a,b)]; 31.62/12.84 fmToList fm = foldFM fmToList0 [] fm; 31.62/12.84 31.62/12.84 fmToList0 key elt rest = (key,elt) : rest; 31.62/12.84 31.62/12.84 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 31.62/12.84 foldFM k z EmptyFM = z; 31.62/12.84 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 31.62/12.84 31.62/12.84 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.62/12.84 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 31.62/12.84 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 31.62/12.84 glueBal fm1 fm2 = glueBal2 fm1 fm2; 31.62/12.84 31.62/12.84 glueBal2 fm1 fm2 = glueBal2GlueBal1 fm2 fm1 fm1 fm2 (sizeFM fm2 > sizeFM fm1); 31.62/12.84 31.62/12.84 glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 31.62/12.84 31.62/12.84 glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 31.62/12.84 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 31.62/12.84 31.62/12.84 glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 31.62/12.84 31.62/12.84 glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 31.62/12.84 31.62/12.84 glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 31.62/12.84 31.62/12.84 glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 31.62/12.84 31.62/12.84 glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 31.62/12.84 31.62/12.84 glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 31.62/12.84 31.62/12.84 glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 31.62/12.84 31.62/12.84 glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 31.62/12.84 31.62/12.84 glueBal2Vv2 xvx xvy = findMax xvy; 31.62/12.84 31.62/12.84 glueBal2Vv3 xvx xvy = findMin xvx; 31.62/12.84 31.62/12.84 glueBal3 fm1 EmptyFM = fm1; 31.62/12.84 glueBal3 wxz wyu = glueBal2 wxz wyu; 31.62/12.84 31.62/12.84 glueBal4 EmptyFM fm2 = fm2; 31.62/12.84 glueBal4 wyw wyx = glueBal3 wyw wyx; 31.62/12.84 31.62/12.84 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.62/12.84 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 31.62/12.84 31.62/12.84 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < Pos (Succ (Succ Zero))); 31.62/12.84 31.62/12.84 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); 31.62/12.84 31.62/12.84 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); 31.62/12.84 31.62/12.84 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); 31.62/12.84 31.62/12.84 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; 31.62/12.84 31.62/12.84 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; 31.62/12.84 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; 31.62/12.84 31.62/12.84 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); 31.62/12.84 31.62/12.84 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); 31.62/12.84 31.62/12.84 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; 31.62/12.84 31.62/12.84 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; 31.62/12.84 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; 31.62/12.84 31.62/12.84 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); 31.62/12.84 31.62/12.84 mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 31.62/12.84 31.62/12.84 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 31.62/12.84 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 31.62/12.84 31.62/12.84 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 31.62/12.84 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); 31.62/12.84 31.62/12.84 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 31.62/12.84 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); 31.62/12.84 31.62/12.84 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; 31.62/12.84 31.62/12.84 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); 31.62/12.84 31.62/12.84 mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuu; 31.62/12.84 31.62/12.84 mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; 31.62/12.84 31.62/12.84 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.62/12.84 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 31.62/12.84 31.62/12.84 mkBranchBalance_ok xuw xux xuy = True; 31.62/12.84 31.62/12.84 mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuy xux xuy; 31.62/12.84 31.62/12.84 mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 31.62/12.84 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 31.62/12.84 31.62/12.84 mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 31.62/12.84 31.62/12.84 mkBranchLeft_size xuw xux xuy = sizeFM xuy; 31.62/12.84 31.62/12.84 mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xuz xvw (Pos (Succ Zero) + mkBranchLeft_size xvv xuz xvw + mkBranchRight_size xvv xuz xvw)) xvw xvv; 31.62/12.84 31.62/12.84 mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuw xux xuw; 31.62/12.84 31.62/12.84 mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 31.62/12.84 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 31.62/12.84 31.62/12.84 mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 31.62/12.84 31.62/12.84 mkBranchRight_size xuw xux xuy = sizeFM xuw; 31.62/12.84 31.62/12.84 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 31.62/12.84 mkBranchUnbox xuw xux xuy x = x; 31.62/12.84 31.62/12.84 sIZE_RATIO :: Int; 31.62/12.84 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 31.62/12.84 31.62/12.84 sizeFM :: FiniteMap b a -> Int; 31.62/12.84 sizeFM EmptyFM = Pos Zero; 31.62/12.84 sizeFM (Branch vzu vzv size vzw vzx) = size; 31.62/12.84 31.62/12.84 } 31.62/12.84 module Maybe where { 31.62/12.84 import qualified FiniteMap; 31.62/12.84 import qualified Main; 31.62/12.84 import qualified Prelude; 31.62/12.84 } 31.62/12.84 module Main where { 31.62/12.84 import qualified FiniteMap; 31.62/12.84 import qualified Maybe; 31.62/12.84 import qualified Prelude; 31.62/12.84 } 31.62/12.84 31.62/12.84 ---------------------------------------- 31.62/12.84 31.62/12.84 (15) Narrow (SOUND) 31.62/12.84 Haskell To QDPs 31.62/12.84 31.62/12.84 digraph dp_graph { 31.62/12.84 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.delListFromFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 31.62/12.84 3[label="FiniteMap.delListFromFM xwv3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 31.62/12.84 4[label="FiniteMap.delListFromFM xwv3 xwv4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 31.62/12.84 5[label="foldl FiniteMap.delFromFM xwv3 xwv4",fontsize=16,color="burlywood",shape="triangle"];4617[label="xwv4/xwv40 : xwv41",fontsize=10,color="white",style="solid",shape="box"];5 -> 4617[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4617 -> 6[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4618[label="xwv4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 4618[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4618 -> 7[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 6[label="foldl FiniteMap.delFromFM xwv3 (xwv40 : xwv41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 31.62/12.84 7[label="foldl FiniteMap.delFromFM xwv3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 31.62/12.84 8 -> 5[label="",style="dashed", color="red", weight=0]; 31.62/12.84 8[label="foldl FiniteMap.delFromFM (FiniteMap.delFromFM xwv3 xwv40) xwv41",fontsize=16,color="magenta"];8 -> 10[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 8 -> 11[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 9[label="xwv3",fontsize=16,color="green",shape="box"];10[label="xwv41",fontsize=16,color="green",shape="box"];11[label="FiniteMap.delFromFM xwv3 xwv40",fontsize=16,color="burlywood",shape="triangle"];4619[label="xwv3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];11 -> 4619[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4619 -> 12[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4620[label="xwv3/FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34",fontsize=10,color="white",style="solid",shape="box"];11 -> 4620[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4620 -> 13[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 12[label="FiniteMap.delFromFM FiniteMap.EmptyFM xwv40",fontsize=16,color="black",shape="box"];12 -> 14[label="",style="solid", color="black", weight=3]; 31.62/12.84 13[label="FiniteMap.delFromFM (FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34) xwv40",fontsize=16,color="black",shape="box"];13 -> 15[label="",style="solid", color="black", weight=3]; 31.62/12.84 14[label="FiniteMap.delFromFM4 FiniteMap.EmptyFM xwv40",fontsize=16,color="black",shape="box"];14 -> 16[label="",style="solid", color="black", weight=3]; 31.62/12.84 15[label="FiniteMap.delFromFM3 (FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34) xwv40",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 31.62/12.84 16[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 31.62/12.84 17[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv40 (xwv40 > xwv30)",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 31.62/12.84 18[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];19[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv40 (compare xwv40 xwv30 == GT)",fontsize=16,color="black",shape="box"];19 -> 20[label="",style="solid", color="black", weight=3]; 31.62/12.84 20[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv40 (compare3 xwv40 xwv30 == GT)",fontsize=16,color="black",shape="box"];20 -> 21[label="",style="solid", color="black", weight=3]; 31.62/12.84 21[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv40 (compare2 xwv40 xwv30 (xwv40 == xwv30) == GT)",fontsize=16,color="burlywood",shape="box"];4621[label="xwv40/Left xwv400",fontsize=10,color="white",style="solid",shape="box"];21 -> 4621[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4621 -> 22[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4622[label="xwv40/Right xwv400",fontsize=10,color="white",style="solid",shape="box"];21 -> 4622[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4622 -> 23[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 22[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 (Left xwv400) (compare2 (Left xwv400) xwv30 (Left xwv400 == xwv30) == GT)",fontsize=16,color="burlywood",shape="box"];4623[label="xwv30/Left xwv300",fontsize=10,color="white",style="solid",shape="box"];22 -> 4623[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4623 -> 24[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4624[label="xwv30/Right xwv300",fontsize=10,color="white",style="solid",shape="box"];22 -> 4624[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4624 -> 25[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 23[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 (Right xwv400) (compare2 (Right xwv400) xwv30 (Right xwv400 == xwv30) == GT)",fontsize=16,color="burlywood",shape="box"];4625[label="xwv30/Left xwv300",fontsize=10,color="white",style="solid",shape="box"];23 -> 4625[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4625 -> 26[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4626[label="xwv30/Right xwv300",fontsize=10,color="white",style="solid",shape="box"];23 -> 4626[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4626 -> 27[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 24[label="FiniteMap.delFromFM2 (Left xwv300) xwv31 xwv32 xwv33 xwv34 (Left xwv400) (compare2 (Left xwv400) (Left xwv300) (Left xwv400 == Left xwv300) == GT)",fontsize=16,color="black",shape="box"];24 -> 28[label="",style="solid", color="black", weight=3]; 31.62/12.84 25[label="FiniteMap.delFromFM2 (Right xwv300) xwv31 xwv32 xwv33 xwv34 (Left xwv400) (compare2 (Left xwv400) (Right xwv300) (Left xwv400 == Right xwv300) == GT)",fontsize=16,color="black",shape="box"];25 -> 29[label="",style="solid", color="black", weight=3]; 31.62/12.84 26[label="FiniteMap.delFromFM2 (Left xwv300) xwv31 xwv32 xwv33 xwv34 (Right xwv400) (compare2 (Right xwv400) (Left xwv300) (Right xwv400 == Left xwv300) == GT)",fontsize=16,color="black",shape="box"];26 -> 30[label="",style="solid", color="black", weight=3]; 31.62/12.84 27[label="FiniteMap.delFromFM2 (Right xwv300) xwv31 xwv32 xwv33 xwv34 (Right xwv400) (compare2 (Right xwv400) (Right xwv300) (Right xwv400 == Right xwv300) == GT)",fontsize=16,color="black",shape="box"];27 -> 31[label="",style="solid", color="black", weight=3]; 31.62/12.84 28 -> 190[label="",style="dashed", color="red", weight=0]; 31.62/12.84 28[label="FiniteMap.delFromFM2 (Left xwv300) xwv31 xwv32 xwv33 xwv34 (Left xwv400) (compare2 (Left xwv400) (Left xwv300) (xwv400 == xwv300) == GT)",fontsize=16,color="magenta"];28 -> 191[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 28 -> 192[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 28 -> 193[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 28 -> 194[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 28 -> 195[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 28 -> 196[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 28 -> 197[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 29 -> 106[label="",style="dashed", color="red", weight=0]; 31.62/12.84 29[label="FiniteMap.delFromFM2 (Right xwv300) xwv31 xwv32 xwv33 xwv34 (Left xwv400) (compare2 (Left xwv400) (Right xwv300) False == GT)",fontsize=16,color="magenta"];29 -> 107[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 30 -> 114[label="",style="dashed", color="red", weight=0]; 31.62/12.84 30[label="FiniteMap.delFromFM2 (Left xwv300) xwv31 xwv32 xwv33 xwv34 (Right xwv400) (compare2 (Right xwv400) (Left xwv300) False == GT)",fontsize=16,color="magenta"];30 -> 115[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 31 -> 243[label="",style="dashed", color="red", weight=0]; 31.62/12.84 31[label="FiniteMap.delFromFM2 (Right xwv300) xwv31 xwv32 xwv33 xwv34 (Right xwv400) (compare2 (Right xwv400) (Right xwv300) (xwv400 == xwv300) == GT)",fontsize=16,color="magenta"];31 -> 244[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 31 -> 245[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 31 -> 246[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 31 -> 247[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 31 -> 248[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 31 -> 249[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 31 -> 250[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 191[label="xwv31",fontsize=16,color="green",shape="box"];192[label="xwv32",fontsize=16,color="green",shape="box"];193[label="xwv300",fontsize=16,color="green",shape="box"];194[label="xwv33",fontsize=16,color="green",shape="box"];195 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.84 195[label="compare2 (Left xwv400) (Left xwv300) (xwv400 == xwv300) == GT",fontsize=16,color="magenta"];195 -> 201[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 195 -> 202[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 196[label="xwv400",fontsize=16,color="green",shape="box"];197[label="xwv34",fontsize=16,color="green",shape="box"];190[label="FiniteMap.delFromFM2 (Left xwv13) xwv14 xwv15 xwv16 xwv17 (Left xwv18) xwv37",fontsize=16,color="burlywood",shape="triangle"];4627[label="xwv37/False",fontsize=10,color="white",style="solid",shape="box"];190 -> 4627[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4627 -> 203[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4628[label="xwv37/True",fontsize=10,color="white",style="solid",shape="box"];190 -> 4628[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4628 -> 204[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 107 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.84 107[label="compare2 (Left xwv400) (Right xwv300) False == GT",fontsize=16,color="magenta"];107 -> 110[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 107 -> 111[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 106[label="FiniteMap.delFromFM2 (Right xwv300) xwv31 xwv32 xwv33 xwv34 (Left xwv400) xwv35",fontsize=16,color="burlywood",shape="triangle"];4629[label="xwv35/False",fontsize=10,color="white",style="solid",shape="box"];106 -> 4629[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4629 -> 112[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4630[label="xwv35/True",fontsize=10,color="white",style="solid",shape="box"];106 -> 4630[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4630 -> 113[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 115 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.84 115[label="compare2 (Right xwv400) (Left xwv300) False == GT",fontsize=16,color="magenta"];115 -> 118[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 115 -> 119[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 114[label="FiniteMap.delFromFM2 (Left xwv300) xwv31 xwv32 xwv33 xwv34 (Right xwv400) xwv36",fontsize=16,color="burlywood",shape="triangle"];4631[label="xwv36/False",fontsize=10,color="white",style="solid",shape="box"];114 -> 4631[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4631 -> 120[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4632[label="xwv36/True",fontsize=10,color="white",style="solid",shape="box"];114 -> 4632[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4632 -> 121[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 244[label="xwv33",fontsize=16,color="green",shape="box"];245[label="xwv400",fontsize=16,color="green",shape="box"];246[label="xwv300",fontsize=16,color="green",shape="box"];247[label="xwv31",fontsize=16,color="green",shape="box"];248[label="xwv34",fontsize=16,color="green",shape="box"];249[label="xwv32",fontsize=16,color="green",shape="box"];250 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.84 250[label="compare2 (Right xwv400) (Right xwv300) (xwv400 == xwv300) == GT",fontsize=16,color="magenta"];250 -> 254[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 250 -> 255[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 243[label="FiniteMap.delFromFM2 (Right xwv28) xwv29 xwv30 xwv31 xwv32 (Right xwv33) xwv47",fontsize=16,color="burlywood",shape="triangle"];4633[label="xwv47/False",fontsize=10,color="white",style="solid",shape="box"];243 -> 4633[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4633 -> 256[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4634[label="xwv47/True",fontsize=10,color="white",style="solid",shape="box"];243 -> 4634[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4634 -> 257[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 201[label="GT",fontsize=16,color="green",shape="box"];202 -> 2189[label="",style="dashed", color="red", weight=0]; 31.62/12.84 202[label="compare2 (Left xwv400) (Left xwv300) (xwv400 == xwv300)",fontsize=16,color="magenta"];202 -> 2190[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 202 -> 2191[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 202 -> 2192[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 60[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4635[label="xwv400/LT",fontsize=10,color="white",style="solid",shape="box"];60 -> 4635[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4635 -> 97[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4636[label="xwv400/EQ",fontsize=10,color="white",style="solid",shape="box"];60 -> 4636[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4636 -> 98[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4637[label="xwv400/GT",fontsize=10,color="white",style="solid",shape="box"];60 -> 4637[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4637 -> 99[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 203[label="FiniteMap.delFromFM2 (Left xwv13) xwv14 xwv15 xwv16 xwv17 (Left xwv18) False",fontsize=16,color="black",shape="box"];203 -> 216[label="",style="solid", color="black", weight=3]; 31.62/12.84 204[label="FiniteMap.delFromFM2 (Left xwv13) xwv14 xwv15 xwv16 xwv17 (Left xwv18) True",fontsize=16,color="black",shape="box"];204 -> 217[label="",style="solid", color="black", weight=3]; 31.62/12.84 110[label="GT",fontsize=16,color="green",shape="box"];111 -> 2189[label="",style="dashed", color="red", weight=0]; 31.62/12.84 111[label="compare2 (Left xwv400) (Right xwv300) False",fontsize=16,color="magenta"];111 -> 2193[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 111 -> 2194[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 111 -> 2195[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 112[label="FiniteMap.delFromFM2 (Right xwv300) xwv31 xwv32 xwv33 xwv34 (Left xwv400) False",fontsize=16,color="black",shape="box"];112 -> 123[label="",style="solid", color="black", weight=3]; 31.62/12.84 113[label="FiniteMap.delFromFM2 (Right xwv300) xwv31 xwv32 xwv33 xwv34 (Left xwv400) True",fontsize=16,color="black",shape="box"];113 -> 124[label="",style="solid", color="black", weight=3]; 31.62/12.84 118[label="GT",fontsize=16,color="green",shape="box"];119 -> 2189[label="",style="dashed", color="red", weight=0]; 31.62/12.84 119[label="compare2 (Right xwv400) (Left xwv300) False",fontsize=16,color="magenta"];119 -> 2196[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 119 -> 2197[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 119 -> 2198[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 120[label="FiniteMap.delFromFM2 (Left xwv300) xwv31 xwv32 xwv33 xwv34 (Right xwv400) False",fontsize=16,color="black",shape="box"];120 -> 206[label="",style="solid", color="black", weight=3]; 31.62/12.84 121[label="FiniteMap.delFromFM2 (Left xwv300) xwv31 xwv32 xwv33 xwv34 (Right xwv400) True",fontsize=16,color="black",shape="box"];121 -> 207[label="",style="solid", color="black", weight=3]; 31.62/12.84 254[label="GT",fontsize=16,color="green",shape="box"];255 -> 2189[label="",style="dashed", color="red", weight=0]; 31.62/12.84 255[label="compare2 (Right xwv400) (Right xwv300) (xwv400 == xwv300)",fontsize=16,color="magenta"];255 -> 2199[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 255 -> 2200[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 255 -> 2201[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 256[label="FiniteMap.delFromFM2 (Right xwv28) xwv29 xwv30 xwv31 xwv32 (Right xwv33) False",fontsize=16,color="black",shape="box"];256 -> 293[label="",style="solid", color="black", weight=3]; 31.62/12.84 257[label="FiniteMap.delFromFM2 (Right xwv28) xwv29 xwv30 xwv31 xwv32 (Right xwv33) True",fontsize=16,color="black",shape="box"];257 -> 294[label="",style="solid", color="black", weight=3]; 31.62/12.84 2190[label="Left xwv400",fontsize=16,color="green",shape="box"];2191[label="xwv400 == xwv300",fontsize=16,color="blue",shape="box"];4638[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4638[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4638 -> 2227[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4639[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4639[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4639 -> 2228[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4640[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4640[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4640 -> 2229[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4641[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4641[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4641 -> 2230[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4642[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4642[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4642 -> 2231[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4643[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4643[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4643 -> 2232[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4644[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4644[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4644 -> 2233[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4645[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4645[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4645 -> 2234[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4646[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4646[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4646 -> 2235[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4647[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4647[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4647 -> 2236[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4648[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4648[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4648 -> 2237[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4649[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4649[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4649 -> 2238[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4650[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4650[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4650 -> 2239[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4651[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4651[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4651 -> 2240[label="",style="solid", color="blue", weight=3]; 31.62/12.84 2192[label="Left xwv300",fontsize=16,color="green",shape="box"];2189[label="compare2 xwv430 xwv440 xwv146",fontsize=16,color="burlywood",shape="triangle"];4652[label="xwv146/False",fontsize=10,color="white",style="solid",shape="box"];2189 -> 4652[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4652 -> 2241[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4653[label="xwv146/True",fontsize=10,color="white",style="solid",shape="box"];2189 -> 4653[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4653 -> 2242[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 97[label="LT == xwv300",fontsize=16,color="burlywood",shape="box"];4654[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];97 -> 4654[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4654 -> 175[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4655[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];97 -> 4655[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4655 -> 176[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4656[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];97 -> 4656[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4656 -> 177[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 98[label="EQ == xwv300",fontsize=16,color="burlywood",shape="box"];4657[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];98 -> 4657[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4657 -> 178[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4658[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];98 -> 4658[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4658 -> 179[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4659[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];98 -> 4659[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4659 -> 180[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 99[label="GT == xwv300",fontsize=16,color="burlywood",shape="box"];4660[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];99 -> 4660[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4660 -> 181[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4661[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];99 -> 4661[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4661 -> 182[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4662[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];99 -> 4662[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4662 -> 183[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 216 -> 286[label="",style="dashed", color="red", weight=0]; 31.62/12.84 216[label="FiniteMap.delFromFM1 (Left xwv13) xwv14 xwv15 xwv16 xwv17 (Left xwv18) (Left xwv18 < Left xwv13)",fontsize=16,color="magenta"];216 -> 287[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 217 -> 3670[label="",style="dashed", color="red", weight=0]; 31.62/12.84 217[label="FiniteMap.mkBalBranch (Left xwv13) xwv14 xwv16 (FiniteMap.delFromFM xwv17 (Left xwv18))",fontsize=16,color="magenta"];217 -> 3671[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 217 -> 3672[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 217 -> 3673[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 217 -> 3674[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2193[label="Left xwv400",fontsize=16,color="green",shape="box"];2194[label="False",fontsize=16,color="green",shape="box"];2195[label="Right xwv300",fontsize=16,color="green",shape="box"];123 -> 318[label="",style="dashed", color="red", weight=0]; 31.62/12.84 123[label="FiniteMap.delFromFM1 (Right xwv300) xwv31 xwv32 xwv33 xwv34 (Left xwv400) (Left xwv400 < Right xwv300)",fontsize=16,color="magenta"];123 -> 319[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 124 -> 3670[label="",style="dashed", color="red", weight=0]; 31.62/12.84 124[label="FiniteMap.mkBalBranch (Right xwv300) xwv31 xwv33 (FiniteMap.delFromFM xwv34 (Left xwv400))",fontsize=16,color="magenta"];124 -> 3675[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 124 -> 3676[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 124 -> 3677[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 124 -> 3678[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2196[label="Right xwv400",fontsize=16,color="green",shape="box"];2197[label="False",fontsize=16,color="green",shape="box"];2198[label="Left xwv300",fontsize=16,color="green",shape="box"];206 -> 333[label="",style="dashed", color="red", weight=0]; 31.62/12.84 206[label="FiniteMap.delFromFM1 (Left xwv300) xwv31 xwv32 xwv33 xwv34 (Right xwv400) (Right xwv400 < Left xwv300)",fontsize=16,color="magenta"];206 -> 334[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 207 -> 3670[label="",style="dashed", color="red", weight=0]; 31.62/12.84 207[label="FiniteMap.mkBalBranch (Left xwv300) xwv31 xwv33 (FiniteMap.delFromFM xwv34 (Right xwv400))",fontsize=16,color="magenta"];207 -> 3679[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 207 -> 3680[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 207 -> 3681[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 207 -> 3682[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2199[label="Right xwv400",fontsize=16,color="green",shape="box"];2200[label="xwv400 == xwv300",fontsize=16,color="blue",shape="box"];4663[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4663[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4663 -> 2243[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4664[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4664[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4664 -> 2244[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4665[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4665[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4665 -> 2245[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4666[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4666[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4666 -> 2246[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4667[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4667[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4667 -> 2247[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4668[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4668[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4668 -> 2248[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4669[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4669[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4669 -> 2249[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4670[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4670[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4670 -> 2250[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4671[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4671[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4671 -> 2251[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4672[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4672[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4672 -> 2252[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4673[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4673[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4673 -> 2253[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4674[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4674[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4674 -> 2254[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4675[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4675[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4675 -> 2255[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4676[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4676[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4676 -> 2256[label="",style="solid", color="blue", weight=3]; 31.62/12.84 2201[label="Right xwv300",fontsize=16,color="green",shape="box"];293 -> 371[label="",style="dashed", color="red", weight=0]; 31.62/12.84 293[label="FiniteMap.delFromFM1 (Right xwv28) xwv29 xwv30 xwv31 xwv32 (Right xwv33) (Right xwv33 < Right xwv28)",fontsize=16,color="magenta"];293 -> 372[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 294 -> 3670[label="",style="dashed", color="red", weight=0]; 31.62/12.84 294[label="FiniteMap.mkBalBranch (Right xwv28) xwv29 xwv31 (FiniteMap.delFromFM xwv32 (Right xwv33))",fontsize=16,color="magenta"];294 -> 3683[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 294 -> 3684[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 294 -> 3685[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 294 -> 3686[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2227 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2227[label="xwv400 == xwv300",fontsize=16,color="magenta"];2228 -> 219[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2228[label="xwv400 == xwv300",fontsize=16,color="magenta"];2229 -> 220[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2229[label="xwv400 == xwv300",fontsize=16,color="magenta"];2230 -> 221[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2230[label="xwv400 == xwv300",fontsize=16,color="magenta"];2231 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2231[label="xwv400 == xwv300",fontsize=16,color="magenta"];2232 -> 223[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2232[label="xwv400 == xwv300",fontsize=16,color="magenta"];2233 -> 224[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2233[label="xwv400 == xwv300",fontsize=16,color="magenta"];2234 -> 225[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2234[label="xwv400 == xwv300",fontsize=16,color="magenta"];2235 -> 226[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2235[label="xwv400 == xwv300",fontsize=16,color="magenta"];2236 -> 227[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2236[label="xwv400 == xwv300",fontsize=16,color="magenta"];2237 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2237[label="xwv400 == xwv300",fontsize=16,color="magenta"];2238 -> 229[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2238[label="xwv400 == xwv300",fontsize=16,color="magenta"];2239 -> 230[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2239[label="xwv400 == xwv300",fontsize=16,color="magenta"];2240 -> 231[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2240[label="xwv400 == xwv300",fontsize=16,color="magenta"];2241[label="compare2 xwv430 xwv440 False",fontsize=16,color="black",shape="box"];2241 -> 2299[label="",style="solid", color="black", weight=3]; 31.62/12.84 2242[label="compare2 xwv430 xwv440 True",fontsize=16,color="black",shape="box"];2242 -> 2300[label="",style="solid", color="black", weight=3]; 31.62/12.84 175[label="LT == LT",fontsize=16,color="black",shape="box"];175 -> 277[label="",style="solid", color="black", weight=3]; 31.62/12.84 176[label="LT == EQ",fontsize=16,color="black",shape="box"];176 -> 278[label="",style="solid", color="black", weight=3]; 31.62/12.84 177[label="LT == GT",fontsize=16,color="black",shape="box"];177 -> 279[label="",style="solid", color="black", weight=3]; 31.62/12.84 178[label="EQ == LT",fontsize=16,color="black",shape="box"];178 -> 280[label="",style="solid", color="black", weight=3]; 31.62/12.84 179[label="EQ == EQ",fontsize=16,color="black",shape="box"];179 -> 281[label="",style="solid", color="black", weight=3]; 31.62/12.84 180[label="EQ == GT",fontsize=16,color="black",shape="box"];180 -> 282[label="",style="solid", color="black", weight=3]; 31.62/12.84 181[label="GT == LT",fontsize=16,color="black",shape="box"];181 -> 283[label="",style="solid", color="black", weight=3]; 31.62/12.84 182[label="GT == EQ",fontsize=16,color="black",shape="box"];182 -> 284[label="",style="solid", color="black", weight=3]; 31.62/12.84 183[label="GT == GT",fontsize=16,color="black",shape="box"];183 -> 285[label="",style="solid", color="black", weight=3]; 31.62/12.84 287[label="Left xwv18 < Left xwv13",fontsize=16,color="black",shape="box"];287 -> 311[label="",style="solid", color="black", weight=3]; 31.62/12.84 286[label="FiniteMap.delFromFM1 (Left xwv13) xwv14 xwv15 xwv16 xwv17 (Left xwv18) xwv48",fontsize=16,color="burlywood",shape="triangle"];4677[label="xwv48/False",fontsize=10,color="white",style="solid",shape="box"];286 -> 4677[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4677 -> 312[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4678[label="xwv48/True",fontsize=10,color="white",style="solid",shape="box"];286 -> 4678[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4678 -> 313[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 3671 -> 11[label="",style="dashed", color="red", weight=0]; 31.62/12.84 3671[label="FiniteMap.delFromFM xwv17 (Left xwv18)",fontsize=16,color="magenta"];3671 -> 3720[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 3671 -> 3721[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 3672[label="xwv14",fontsize=16,color="green",shape="box"];3673[label="Left xwv13",fontsize=16,color="green",shape="box"];3674[label="xwv16",fontsize=16,color="green",shape="box"];3670[label="FiniteMap.mkBalBranch xwv170 xwv171 xwv315 xwv174",fontsize=16,color="black",shape="triangle"];3670 -> 3722[label="",style="solid", color="black", weight=3]; 31.62/12.84 319[label="Left xwv400 < Right xwv300",fontsize=16,color="black",shape="box"];319 -> 326[label="",style="solid", color="black", weight=3]; 31.62/12.84 318[label="FiniteMap.delFromFM1 (Right xwv300) xwv31 xwv32 xwv33 xwv34 (Left xwv400) xwv56",fontsize=16,color="burlywood",shape="triangle"];4679[label="xwv56/False",fontsize=10,color="white",style="solid",shape="box"];318 -> 4679[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4679 -> 327[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4680[label="xwv56/True",fontsize=10,color="white",style="solid",shape="box"];318 -> 4680[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4680 -> 328[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 3675 -> 11[label="",style="dashed", color="red", weight=0]; 31.62/12.84 3675[label="FiniteMap.delFromFM xwv34 (Left xwv400)",fontsize=16,color="magenta"];3675 -> 3723[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 3675 -> 3724[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 3676[label="xwv31",fontsize=16,color="green",shape="box"];3677[label="Right xwv300",fontsize=16,color="green",shape="box"];3678[label="xwv33",fontsize=16,color="green",shape="box"];334[label="Right xwv400 < Left xwv300",fontsize=16,color="black",shape="box"];334 -> 336[label="",style="solid", color="black", weight=3]; 31.62/12.84 333[label="FiniteMap.delFromFM1 (Left xwv300) xwv31 xwv32 xwv33 xwv34 (Right xwv400) xwv57",fontsize=16,color="burlywood",shape="triangle"];4681[label="xwv57/False",fontsize=10,color="white",style="solid",shape="box"];333 -> 4681[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4681 -> 337[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4682[label="xwv57/True",fontsize=10,color="white",style="solid",shape="box"];333 -> 4682[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4682 -> 338[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 3679 -> 11[label="",style="dashed", color="red", weight=0]; 31.62/12.84 3679[label="FiniteMap.delFromFM xwv34 (Right xwv400)",fontsize=16,color="magenta"];3679 -> 3725[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 3679 -> 3726[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 3680[label="xwv31",fontsize=16,color="green",shape="box"];3681[label="Left xwv300",fontsize=16,color="green",shape="box"];3682[label="xwv33",fontsize=16,color="green",shape="box"];2243 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2243[label="xwv400 == xwv300",fontsize=16,color="magenta"];2243 -> 2301[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2243 -> 2302[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2244 -> 219[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2244[label="xwv400 == xwv300",fontsize=16,color="magenta"];2244 -> 2303[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2244 -> 2304[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2245 -> 220[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2245[label="xwv400 == xwv300",fontsize=16,color="magenta"];2245 -> 2305[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2245 -> 2306[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2246 -> 221[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2246[label="xwv400 == xwv300",fontsize=16,color="magenta"];2246 -> 2307[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2246 -> 2308[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2247 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2247[label="xwv400 == xwv300",fontsize=16,color="magenta"];2247 -> 2309[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2247 -> 2310[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2248 -> 223[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2248[label="xwv400 == xwv300",fontsize=16,color="magenta"];2248 -> 2311[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2248 -> 2312[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2249 -> 224[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2249[label="xwv400 == xwv300",fontsize=16,color="magenta"];2249 -> 2313[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2249 -> 2314[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2250 -> 225[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2250[label="xwv400 == xwv300",fontsize=16,color="magenta"];2250 -> 2315[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2250 -> 2316[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2251 -> 226[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2251[label="xwv400 == xwv300",fontsize=16,color="magenta"];2251 -> 2317[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2251 -> 2318[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2252 -> 227[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2252[label="xwv400 == xwv300",fontsize=16,color="magenta"];2252 -> 2319[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2252 -> 2320[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2253 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2253[label="xwv400 == xwv300",fontsize=16,color="magenta"];2253 -> 2321[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2253 -> 2322[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2254 -> 229[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2254[label="xwv400 == xwv300",fontsize=16,color="magenta"];2254 -> 2323[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2254 -> 2324[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2255 -> 230[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2255[label="xwv400 == xwv300",fontsize=16,color="magenta"];2255 -> 2325[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2255 -> 2326[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2256 -> 231[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2256[label="xwv400 == xwv300",fontsize=16,color="magenta"];2256 -> 2327[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2256 -> 2328[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 372[label="Right xwv33 < Right xwv28",fontsize=16,color="black",shape="box"];372 -> 374[label="",style="solid", color="black", weight=3]; 31.62/12.84 371[label="FiniteMap.delFromFM1 (Right xwv28) xwv29 xwv30 xwv31 xwv32 (Right xwv33) xwv58",fontsize=16,color="burlywood",shape="triangle"];4683[label="xwv58/False",fontsize=10,color="white",style="solid",shape="box"];371 -> 4683[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4683 -> 375[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4684[label="xwv58/True",fontsize=10,color="white",style="solid",shape="box"];371 -> 4684[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4684 -> 376[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 3683 -> 11[label="",style="dashed", color="red", weight=0]; 31.62/12.84 3683[label="FiniteMap.delFromFM xwv32 (Right xwv33)",fontsize=16,color="magenta"];3683 -> 3727[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 3683 -> 3728[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 3684[label="xwv29",fontsize=16,color="green",shape="box"];3685[label="Right xwv28",fontsize=16,color="green",shape="box"];3686[label="xwv31",fontsize=16,color="green",shape="box"];218[label="xwv400 == xwv300",fontsize=16,color="black",shape="triangle"];218 -> 258[label="",style="solid", color="black", weight=3]; 31.62/12.84 219[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4685[label="xwv400/(xwv4000,xwv4001,xwv4002)",fontsize=10,color="white",style="solid",shape="box"];219 -> 4685[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4685 -> 259[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 220[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4686[label="xwv400/xwv4000 : xwv4001",fontsize=10,color="white",style="solid",shape="box"];220 -> 4686[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4686 -> 260[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4687[label="xwv400/[]",fontsize=10,color="white",style="solid",shape="box"];220 -> 4687[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4687 -> 261[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 221[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4688[label="xwv400/Integer xwv4000",fontsize=10,color="white",style="solid",shape="box"];221 -> 4688[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4688 -> 262[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 222[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4689[label="xwv400/Left xwv4000",fontsize=10,color="white",style="solid",shape="box"];222 -> 4689[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4689 -> 263[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4690[label="xwv400/Right xwv4000",fontsize=10,color="white",style="solid",shape="box"];222 -> 4690[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4690 -> 264[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 223[label="xwv400 == xwv300",fontsize=16,color="black",shape="triangle"];223 -> 265[label="",style="solid", color="black", weight=3]; 31.62/12.84 224[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4691[label="xwv400/()",fontsize=10,color="white",style="solid",shape="box"];224 -> 4691[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4691 -> 266[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 225[label="xwv400 == xwv300",fontsize=16,color="black",shape="triangle"];225 -> 267[label="",style="solid", color="black", weight=3]; 31.62/12.84 226[label="xwv400 == xwv300",fontsize=16,color="black",shape="triangle"];226 -> 268[label="",style="solid", color="black", weight=3]; 31.62/12.84 227[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4692[label="xwv400/Nothing",fontsize=10,color="white",style="solid",shape="box"];227 -> 4692[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4692 -> 269[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4693[label="xwv400/Just xwv4000",fontsize=10,color="white",style="solid",shape="box"];227 -> 4693[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4693 -> 270[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 229[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4694[label="xwv400/(xwv4000,xwv4001)",fontsize=10,color="white",style="solid",shape="box"];229 -> 4694[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4694 -> 271[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 230[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4695[label="xwv400/False",fontsize=10,color="white",style="solid",shape="box"];230 -> 4695[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4695 -> 272[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4696[label="xwv400/True",fontsize=10,color="white",style="solid",shape="box"];230 -> 4696[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4696 -> 273[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 231[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4697[label="xwv400/xwv4000 :% xwv4001",fontsize=10,color="white",style="solid",shape="box"];231 -> 4697[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4697 -> 274[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 2299[label="compare1 xwv430 xwv440 (xwv430 <= xwv440)",fontsize=16,color="burlywood",shape="box"];4698[label="xwv430/Left xwv4300",fontsize=10,color="white",style="solid",shape="box"];2299 -> 4698[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4698 -> 2332[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4699[label="xwv430/Right xwv4300",fontsize=10,color="white",style="solid",shape="box"];2299 -> 4699[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4699 -> 2333[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 2300[label="EQ",fontsize=16,color="green",shape="box"];277[label="True",fontsize=16,color="green",shape="box"];278[label="False",fontsize=16,color="green",shape="box"];279[label="False",fontsize=16,color="green",shape="box"];280[label="False",fontsize=16,color="green",shape="box"];281[label="True",fontsize=16,color="green",shape="box"];282[label="False",fontsize=16,color="green",shape="box"];283[label="False",fontsize=16,color="green",shape="box"];284[label="False",fontsize=16,color="green",shape="box"];285[label="True",fontsize=16,color="green",shape="box"];311 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.84 311[label="compare (Left xwv18) (Left xwv13) == LT",fontsize=16,color="magenta"];311 -> 406[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 311 -> 407[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 312[label="FiniteMap.delFromFM1 (Left xwv13) xwv14 xwv15 xwv16 xwv17 (Left xwv18) False",fontsize=16,color="black",shape="box"];312 -> 408[label="",style="solid", color="black", weight=3]; 31.62/12.84 313[label="FiniteMap.delFromFM1 (Left xwv13) xwv14 xwv15 xwv16 xwv17 (Left xwv18) True",fontsize=16,color="black",shape="box"];313 -> 409[label="",style="solid", color="black", weight=3]; 31.62/12.84 3720[label="xwv17",fontsize=16,color="green",shape="box"];3721[label="Left xwv18",fontsize=16,color="green",shape="box"];3722[label="FiniteMap.mkBalBranch6 xwv170 xwv171 xwv315 xwv174",fontsize=16,color="black",shape="box"];3722 -> 3745[label="",style="solid", color="black", weight=3]; 31.62/12.84 326 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.84 326[label="compare (Left xwv400) (Right xwv300) == LT",fontsize=16,color="magenta"];326 -> 411[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 326 -> 412[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 327[label="FiniteMap.delFromFM1 (Right xwv300) xwv31 xwv32 xwv33 xwv34 (Left xwv400) False",fontsize=16,color="black",shape="box"];327 -> 413[label="",style="solid", color="black", weight=3]; 31.62/12.84 328[label="FiniteMap.delFromFM1 (Right xwv300) xwv31 xwv32 xwv33 xwv34 (Left xwv400) True",fontsize=16,color="black",shape="box"];328 -> 414[label="",style="solid", color="black", weight=3]; 31.62/12.84 3723[label="xwv34",fontsize=16,color="green",shape="box"];3724[label="Left xwv400",fontsize=16,color="green",shape="box"];336 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.84 336[label="compare (Right xwv400) (Left xwv300) == LT",fontsize=16,color="magenta"];336 -> 417[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 336 -> 418[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 337[label="FiniteMap.delFromFM1 (Left xwv300) xwv31 xwv32 xwv33 xwv34 (Right xwv400) False",fontsize=16,color="black",shape="box"];337 -> 419[label="",style="solid", color="black", weight=3]; 31.62/12.84 338[label="FiniteMap.delFromFM1 (Left xwv300) xwv31 xwv32 xwv33 xwv34 (Right xwv400) True",fontsize=16,color="black",shape="box"];338 -> 420[label="",style="solid", color="black", weight=3]; 31.62/12.84 3725[label="xwv34",fontsize=16,color="green",shape="box"];3726[label="Right xwv400",fontsize=16,color="green",shape="box"];2301[label="xwv300",fontsize=16,color="green",shape="box"];2302[label="xwv400",fontsize=16,color="green",shape="box"];2303[label="xwv300",fontsize=16,color="green",shape="box"];2304[label="xwv400",fontsize=16,color="green",shape="box"];2305[label="xwv300",fontsize=16,color="green",shape="box"];2306[label="xwv400",fontsize=16,color="green",shape="box"];2307[label="xwv300",fontsize=16,color="green",shape="box"];2308[label="xwv400",fontsize=16,color="green",shape="box"];2309[label="xwv300",fontsize=16,color="green",shape="box"];2310[label="xwv400",fontsize=16,color="green",shape="box"];2311[label="xwv300",fontsize=16,color="green",shape="box"];2312[label="xwv400",fontsize=16,color="green",shape="box"];2313[label="xwv300",fontsize=16,color="green",shape="box"];2314[label="xwv400",fontsize=16,color="green",shape="box"];2315[label="xwv300",fontsize=16,color="green",shape="box"];2316[label="xwv400",fontsize=16,color="green",shape="box"];2317[label="xwv300",fontsize=16,color="green",shape="box"];2318[label="xwv400",fontsize=16,color="green",shape="box"];2319[label="xwv300",fontsize=16,color="green",shape="box"];2320[label="xwv400",fontsize=16,color="green",shape="box"];2321[label="xwv300",fontsize=16,color="green",shape="box"];2322[label="xwv400",fontsize=16,color="green",shape="box"];2323[label="xwv300",fontsize=16,color="green",shape="box"];2324[label="xwv400",fontsize=16,color="green",shape="box"];2325[label="xwv300",fontsize=16,color="green",shape="box"];2326[label="xwv400",fontsize=16,color="green",shape="box"];2327[label="xwv300",fontsize=16,color="green",shape="box"];2328[label="xwv400",fontsize=16,color="green",shape="box"];374 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.84 374[label="compare (Right xwv33) (Right xwv28) == LT",fontsize=16,color="magenta"];374 -> 422[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 374 -> 423[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 375[label="FiniteMap.delFromFM1 (Right xwv28) xwv29 xwv30 xwv31 xwv32 (Right xwv33) False",fontsize=16,color="black",shape="box"];375 -> 424[label="",style="solid", color="black", weight=3]; 31.62/12.84 376[label="FiniteMap.delFromFM1 (Right xwv28) xwv29 xwv30 xwv31 xwv32 (Right xwv33) True",fontsize=16,color="black",shape="box"];376 -> 425[label="",style="solid", color="black", weight=3]; 31.62/12.84 3727[label="xwv32",fontsize=16,color="green",shape="box"];3728[label="Right xwv33",fontsize=16,color="green",shape="box"];258[label="primEqInt xwv400 xwv300",fontsize=16,color="burlywood",shape="triangle"];4700[label="xwv400/Pos xwv4000",fontsize=10,color="white",style="solid",shape="box"];258 -> 4700[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4700 -> 379[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4701[label="xwv400/Neg xwv4000",fontsize=10,color="white",style="solid",shape="box"];258 -> 4701[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4701 -> 380[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 259[label="(xwv4000,xwv4001,xwv4002) == xwv300",fontsize=16,color="burlywood",shape="box"];4702[label="xwv300/(xwv3000,xwv3001,xwv3002)",fontsize=10,color="white",style="solid",shape="box"];259 -> 4702[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4702 -> 381[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 260[label="xwv4000 : xwv4001 == xwv300",fontsize=16,color="burlywood",shape="box"];4703[label="xwv300/xwv3000 : xwv3001",fontsize=10,color="white",style="solid",shape="box"];260 -> 4703[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4703 -> 382[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4704[label="xwv300/[]",fontsize=10,color="white",style="solid",shape="box"];260 -> 4704[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4704 -> 383[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 261[label="[] == xwv300",fontsize=16,color="burlywood",shape="box"];4705[label="xwv300/xwv3000 : xwv3001",fontsize=10,color="white",style="solid",shape="box"];261 -> 4705[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4705 -> 384[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4706[label="xwv300/[]",fontsize=10,color="white",style="solid",shape="box"];261 -> 4706[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4706 -> 385[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 262[label="Integer xwv4000 == xwv300",fontsize=16,color="burlywood",shape="box"];4707[label="xwv300/Integer xwv3000",fontsize=10,color="white",style="solid",shape="box"];262 -> 4707[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4707 -> 386[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 263[label="Left xwv4000 == xwv300",fontsize=16,color="burlywood",shape="box"];4708[label="xwv300/Left xwv3000",fontsize=10,color="white",style="solid",shape="box"];263 -> 4708[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4708 -> 387[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4709[label="xwv300/Right xwv3000",fontsize=10,color="white",style="solid",shape="box"];263 -> 4709[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4709 -> 388[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 264[label="Right xwv4000 == xwv300",fontsize=16,color="burlywood",shape="box"];4710[label="xwv300/Left xwv3000",fontsize=10,color="white",style="solid",shape="box"];264 -> 4710[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4710 -> 389[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4711[label="xwv300/Right xwv3000",fontsize=10,color="white",style="solid",shape="box"];264 -> 4711[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4711 -> 390[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 265[label="primEqFloat xwv400 xwv300",fontsize=16,color="burlywood",shape="box"];4712[label="xwv400/Float xwv4000 xwv4001",fontsize=10,color="white",style="solid",shape="box"];265 -> 4712[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4712 -> 391[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 266[label="() == xwv300",fontsize=16,color="burlywood",shape="box"];4713[label="xwv300/()",fontsize=10,color="white",style="solid",shape="box"];266 -> 4713[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4713 -> 392[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 267[label="primEqDouble xwv400 xwv300",fontsize=16,color="burlywood",shape="box"];4714[label="xwv400/Double xwv4000 xwv4001",fontsize=10,color="white",style="solid",shape="box"];267 -> 4714[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4714 -> 393[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 268[label="primEqChar xwv400 xwv300",fontsize=16,color="burlywood",shape="box"];4715[label="xwv400/Char xwv4000",fontsize=10,color="white",style="solid",shape="box"];268 -> 4715[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4715 -> 394[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 269[label="Nothing == xwv300",fontsize=16,color="burlywood",shape="box"];4716[label="xwv300/Nothing",fontsize=10,color="white",style="solid",shape="box"];269 -> 4716[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4716 -> 395[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4717[label="xwv300/Just xwv3000",fontsize=10,color="white",style="solid",shape="box"];269 -> 4717[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4717 -> 396[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 270[label="Just xwv4000 == xwv300",fontsize=16,color="burlywood",shape="box"];4718[label="xwv300/Nothing",fontsize=10,color="white",style="solid",shape="box"];270 -> 4718[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4718 -> 397[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4719[label="xwv300/Just xwv3000",fontsize=10,color="white",style="solid",shape="box"];270 -> 4719[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4719 -> 398[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 271[label="(xwv4000,xwv4001) == xwv300",fontsize=16,color="burlywood",shape="box"];4720[label="xwv300/(xwv3000,xwv3001)",fontsize=10,color="white",style="solid",shape="box"];271 -> 4720[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4720 -> 399[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 272[label="False == xwv300",fontsize=16,color="burlywood",shape="box"];4721[label="xwv300/False",fontsize=10,color="white",style="solid",shape="box"];272 -> 4721[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4721 -> 400[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4722[label="xwv300/True",fontsize=10,color="white",style="solid",shape="box"];272 -> 4722[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4722 -> 401[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 273[label="True == xwv300",fontsize=16,color="burlywood",shape="box"];4723[label="xwv300/False",fontsize=10,color="white",style="solid",shape="box"];273 -> 4723[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4723 -> 402[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4724[label="xwv300/True",fontsize=10,color="white",style="solid",shape="box"];273 -> 4724[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4724 -> 403[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 274[label="xwv4000 :% xwv4001 == xwv300",fontsize=16,color="burlywood",shape="box"];4725[label="xwv300/xwv3000 :% xwv3001",fontsize=10,color="white",style="solid",shape="box"];274 -> 4725[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4725 -> 404[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 2332[label="compare1 (Left xwv4300) xwv440 (Left xwv4300 <= xwv440)",fontsize=16,color="burlywood",shape="box"];4726[label="xwv440/Left xwv4400",fontsize=10,color="white",style="solid",shape="box"];2332 -> 4726[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4726 -> 2336[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4727[label="xwv440/Right xwv4400",fontsize=10,color="white",style="solid",shape="box"];2332 -> 4727[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4727 -> 2337[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 2333[label="compare1 (Right xwv4300) xwv440 (Right xwv4300 <= xwv440)",fontsize=16,color="burlywood",shape="box"];4728[label="xwv440/Left xwv4400",fontsize=10,color="white",style="solid",shape="box"];2333 -> 4728[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4728 -> 2338[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4729[label="xwv440/Right xwv4400",fontsize=10,color="white",style="solid",shape="box"];2333 -> 4729[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4729 -> 2339[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 406[label="LT",fontsize=16,color="green",shape="box"];407[label="compare (Left xwv18) (Left xwv13)",fontsize=16,color="black",shape="box"];407 -> 464[label="",style="solid", color="black", weight=3]; 31.62/12.84 408 -> 465[label="",style="dashed", color="red", weight=0]; 31.62/12.84 408[label="FiniteMap.delFromFM0 (Left xwv13) xwv14 xwv15 xwv16 xwv17 (Left xwv18) (Left xwv13 == Left xwv18)",fontsize=16,color="magenta"];408 -> 466[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 409 -> 3670[label="",style="dashed", color="red", weight=0]; 31.62/12.84 409[label="FiniteMap.mkBalBranch (Left xwv13) xwv14 (FiniteMap.delFromFM xwv16 (Left xwv18)) xwv17",fontsize=16,color="magenta"];409 -> 3695[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 409 -> 3696[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 409 -> 3697[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 409 -> 3698[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 3745 -> 3754[label="",style="dashed", color="red", weight=0]; 31.62/12.84 3745[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv170 xwv171 xwv315 xwv174 xwv170 xwv171 xwv315 xwv174 (FiniteMap.mkBalBranch6Size_l xwv170 xwv171 xwv315 xwv174 + FiniteMap.mkBalBranch6Size_r xwv170 xwv171 xwv315 xwv174 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];3745 -> 3755[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 411[label="LT",fontsize=16,color="green",shape="box"];412[label="compare (Left xwv400) (Right xwv300)",fontsize=16,color="black",shape="box"];412 -> 472[label="",style="solid", color="black", weight=3]; 31.62/12.84 413 -> 473[label="",style="dashed", color="red", weight=0]; 31.62/12.84 413[label="FiniteMap.delFromFM0 (Right xwv300) xwv31 xwv32 xwv33 xwv34 (Left xwv400) (Right xwv300 == Left xwv400)",fontsize=16,color="magenta"];413 -> 474[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 414 -> 3670[label="",style="dashed", color="red", weight=0]; 31.62/12.84 414[label="FiniteMap.mkBalBranch (Right xwv300) xwv31 (FiniteMap.delFromFM xwv33 (Left xwv400)) xwv34",fontsize=16,color="magenta"];414 -> 3699[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 414 -> 3700[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 414 -> 3701[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 414 -> 3702[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 417[label="LT",fontsize=16,color="green",shape="box"];418[label="compare (Right xwv400) (Left xwv300)",fontsize=16,color="black",shape="box"];418 -> 479[label="",style="solid", color="black", weight=3]; 31.62/12.84 419 -> 480[label="",style="dashed", color="red", weight=0]; 31.62/12.84 419[label="FiniteMap.delFromFM0 (Left xwv300) xwv31 xwv32 xwv33 xwv34 (Right xwv400) (Left xwv300 == Right xwv400)",fontsize=16,color="magenta"];419 -> 481[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 420 -> 3670[label="",style="dashed", color="red", weight=0]; 31.62/12.84 420[label="FiniteMap.mkBalBranch (Left xwv300) xwv31 (FiniteMap.delFromFM xwv33 (Right xwv400)) xwv34",fontsize=16,color="magenta"];420 -> 3703[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 420 -> 3704[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 420 -> 3705[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 420 -> 3706[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 422[label="LT",fontsize=16,color="green",shape="box"];423[label="compare (Right xwv33) (Right xwv28)",fontsize=16,color="black",shape="box"];423 -> 494[label="",style="solid", color="black", weight=3]; 31.62/12.84 424 -> 495[label="",style="dashed", color="red", weight=0]; 31.62/12.84 424[label="FiniteMap.delFromFM0 (Right xwv28) xwv29 xwv30 xwv31 xwv32 (Right xwv33) (Right xwv28 == Right xwv33)",fontsize=16,color="magenta"];424 -> 496[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 425 -> 3670[label="",style="dashed", color="red", weight=0]; 31.62/12.84 425[label="FiniteMap.mkBalBranch (Right xwv28) xwv29 (FiniteMap.delFromFM xwv31 (Right xwv33)) xwv32",fontsize=16,color="magenta"];425 -> 3707[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 425 -> 3708[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 425 -> 3709[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 425 -> 3710[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 379[label="primEqInt (Pos xwv4000) xwv300",fontsize=16,color="burlywood",shape="box"];4730[label="xwv4000/Succ xwv40000",fontsize=10,color="white",style="solid",shape="box"];379 -> 4730[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4730 -> 426[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4731[label="xwv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];379 -> 4731[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4731 -> 427[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 380[label="primEqInt (Neg xwv4000) xwv300",fontsize=16,color="burlywood",shape="box"];4732[label="xwv4000/Succ xwv40000",fontsize=10,color="white",style="solid",shape="box"];380 -> 4732[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4732 -> 428[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4733[label="xwv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];380 -> 4733[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4733 -> 429[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 381[label="(xwv4000,xwv4001,xwv4002) == (xwv3000,xwv3001,xwv3002)",fontsize=16,color="black",shape="box"];381 -> 430[label="",style="solid", color="black", weight=3]; 31.62/12.84 382[label="xwv4000 : xwv4001 == xwv3000 : xwv3001",fontsize=16,color="black",shape="box"];382 -> 431[label="",style="solid", color="black", weight=3]; 31.62/12.84 383[label="xwv4000 : xwv4001 == []",fontsize=16,color="black",shape="box"];383 -> 432[label="",style="solid", color="black", weight=3]; 31.62/12.84 384[label="[] == xwv3000 : xwv3001",fontsize=16,color="black",shape="box"];384 -> 433[label="",style="solid", color="black", weight=3]; 31.62/12.84 385[label="[] == []",fontsize=16,color="black",shape="box"];385 -> 434[label="",style="solid", color="black", weight=3]; 31.62/12.84 386[label="Integer xwv4000 == Integer xwv3000",fontsize=16,color="black",shape="box"];386 -> 435[label="",style="solid", color="black", weight=3]; 31.62/12.84 387[label="Left xwv4000 == Left xwv3000",fontsize=16,color="black",shape="box"];387 -> 436[label="",style="solid", color="black", weight=3]; 31.62/12.84 388[label="Left xwv4000 == Right xwv3000",fontsize=16,color="black",shape="box"];388 -> 437[label="",style="solid", color="black", weight=3]; 31.62/12.84 389[label="Right xwv4000 == Left xwv3000",fontsize=16,color="black",shape="box"];389 -> 438[label="",style="solid", color="black", weight=3]; 31.62/12.84 390[label="Right xwv4000 == Right xwv3000",fontsize=16,color="black",shape="box"];390 -> 439[label="",style="solid", color="black", weight=3]; 31.62/12.84 391[label="primEqFloat (Float xwv4000 xwv4001) xwv300",fontsize=16,color="burlywood",shape="box"];4734[label="xwv300/Float xwv3000 xwv3001",fontsize=10,color="white",style="solid",shape="box"];391 -> 4734[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4734 -> 440[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 392[label="() == ()",fontsize=16,color="black",shape="box"];392 -> 441[label="",style="solid", color="black", weight=3]; 31.62/12.84 393[label="primEqDouble (Double xwv4000 xwv4001) xwv300",fontsize=16,color="burlywood",shape="box"];4735[label="xwv300/Double xwv3000 xwv3001",fontsize=10,color="white",style="solid",shape="box"];393 -> 4735[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4735 -> 442[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 394[label="primEqChar (Char xwv4000) xwv300",fontsize=16,color="burlywood",shape="box"];4736[label="xwv300/Char xwv3000",fontsize=10,color="white",style="solid",shape="box"];394 -> 4736[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4736 -> 443[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 395[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];395 -> 444[label="",style="solid", color="black", weight=3]; 31.62/12.84 396[label="Nothing == Just xwv3000",fontsize=16,color="black",shape="box"];396 -> 445[label="",style="solid", color="black", weight=3]; 31.62/12.84 397[label="Just xwv4000 == Nothing",fontsize=16,color="black",shape="box"];397 -> 446[label="",style="solid", color="black", weight=3]; 31.62/12.84 398[label="Just xwv4000 == Just xwv3000",fontsize=16,color="black",shape="box"];398 -> 447[label="",style="solid", color="black", weight=3]; 31.62/12.84 399[label="(xwv4000,xwv4001) == (xwv3000,xwv3001)",fontsize=16,color="black",shape="box"];399 -> 448[label="",style="solid", color="black", weight=3]; 31.62/12.84 400[label="False == False",fontsize=16,color="black",shape="box"];400 -> 449[label="",style="solid", color="black", weight=3]; 31.62/12.84 401[label="False == True",fontsize=16,color="black",shape="box"];401 -> 450[label="",style="solid", color="black", weight=3]; 31.62/12.84 402[label="True == False",fontsize=16,color="black",shape="box"];402 -> 451[label="",style="solid", color="black", weight=3]; 31.62/12.84 403[label="True == True",fontsize=16,color="black",shape="box"];403 -> 452[label="",style="solid", color="black", weight=3]; 31.62/12.84 404[label="xwv4000 :% xwv4001 == xwv3000 :% xwv3001",fontsize=16,color="black",shape="box"];404 -> 453[label="",style="solid", color="black", weight=3]; 31.62/12.84 2336[label="compare1 (Left xwv4300) (Left xwv4400) (Left xwv4300 <= Left xwv4400)",fontsize=16,color="black",shape="box"];2336 -> 2351[label="",style="solid", color="black", weight=3]; 31.62/12.84 2337[label="compare1 (Left xwv4300) (Right xwv4400) (Left xwv4300 <= Right xwv4400)",fontsize=16,color="black",shape="box"];2337 -> 2352[label="",style="solid", color="black", weight=3]; 31.62/12.84 2338[label="compare1 (Right xwv4300) (Left xwv4400) (Right xwv4300 <= Left xwv4400)",fontsize=16,color="black",shape="box"];2338 -> 2353[label="",style="solid", color="black", weight=3]; 31.62/12.84 2339[label="compare1 (Right xwv4300) (Right xwv4400) (Right xwv4300 <= Right xwv4400)",fontsize=16,color="black",shape="box"];2339 -> 2354[label="",style="solid", color="black", weight=3]; 31.62/12.84 464[label="compare3 (Left xwv18) (Left xwv13)",fontsize=16,color="black",shape="box"];464 -> 589[label="",style="solid", color="black", weight=3]; 31.62/12.84 466 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.84 466[label="Left xwv13 == Left xwv18",fontsize=16,color="magenta"];466 -> 590[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 466 -> 591[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 465[label="FiniteMap.delFromFM0 (Left xwv13) xwv14 xwv15 xwv16 xwv17 (Left xwv18) xwv66",fontsize=16,color="burlywood",shape="triangle"];4737[label="xwv66/False",fontsize=10,color="white",style="solid",shape="box"];465 -> 4737[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4737 -> 592[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4738[label="xwv66/True",fontsize=10,color="white",style="solid",shape="box"];465 -> 4738[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4738 -> 593[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 3695[label="xwv17",fontsize=16,color="green",shape="box"];3696[label="xwv14",fontsize=16,color="green",shape="box"];3697[label="Left xwv13",fontsize=16,color="green",shape="box"];3698 -> 11[label="",style="dashed", color="red", weight=0]; 31.62/12.84 3698[label="FiniteMap.delFromFM xwv16 (Left xwv18)",fontsize=16,color="magenta"];3698 -> 3729[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 3698 -> 3730[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 3755 -> 1489[label="",style="dashed", color="red", weight=0]; 31.62/12.84 3755[label="FiniteMap.mkBalBranch6Size_l xwv170 xwv171 xwv315 xwv174 + FiniteMap.mkBalBranch6Size_r xwv170 xwv171 xwv315 xwv174 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];3755 -> 3756[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 3755 -> 3757[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 3754[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv170 xwv171 xwv315 xwv174 xwv170 xwv171 xwv315 xwv174 xwv316",fontsize=16,color="burlywood",shape="triangle"];4739[label="xwv316/False",fontsize=10,color="white",style="solid",shape="box"];3754 -> 4739[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4739 -> 3758[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4740[label="xwv316/True",fontsize=10,color="white",style="solid",shape="box"];3754 -> 4740[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4740 -> 3759[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 472[label="compare3 (Left xwv400) (Right xwv300)",fontsize=16,color="black",shape="box"];472 -> 602[label="",style="solid", color="black", weight=3]; 31.62/12.84 474 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.84 474[label="Right xwv300 == Left xwv400",fontsize=16,color="magenta"];474 -> 603[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 474 -> 604[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 473[label="FiniteMap.delFromFM0 (Right xwv300) xwv31 xwv32 xwv33 xwv34 (Left xwv400) xwv67",fontsize=16,color="burlywood",shape="triangle"];4741[label="xwv67/False",fontsize=10,color="white",style="solid",shape="box"];473 -> 4741[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4741 -> 605[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4742[label="xwv67/True",fontsize=10,color="white",style="solid",shape="box"];473 -> 4742[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4742 -> 606[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 3699[label="xwv34",fontsize=16,color="green",shape="box"];3700[label="xwv31",fontsize=16,color="green",shape="box"];3701[label="Right xwv300",fontsize=16,color="green",shape="box"];3702 -> 11[label="",style="dashed", color="red", weight=0]; 31.62/12.84 3702[label="FiniteMap.delFromFM xwv33 (Left xwv400)",fontsize=16,color="magenta"];3702 -> 3731[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 3702 -> 3732[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 479[label="compare3 (Right xwv400) (Left xwv300)",fontsize=16,color="black",shape="box"];479 -> 615[label="",style="solid", color="black", weight=3]; 31.62/12.84 481 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.84 481[label="Left xwv300 == Right xwv400",fontsize=16,color="magenta"];481 -> 616[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 481 -> 617[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 480[label="FiniteMap.delFromFM0 (Left xwv300) xwv31 xwv32 xwv33 xwv34 (Right xwv400) xwv68",fontsize=16,color="burlywood",shape="triangle"];4743[label="xwv68/False",fontsize=10,color="white",style="solid",shape="box"];480 -> 4743[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4743 -> 618[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4744[label="xwv68/True",fontsize=10,color="white",style="solid",shape="box"];480 -> 4744[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4744 -> 619[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 3703[label="xwv34",fontsize=16,color="green",shape="box"];3704[label="xwv31",fontsize=16,color="green",shape="box"];3705[label="Left xwv300",fontsize=16,color="green",shape="box"];3706 -> 11[label="",style="dashed", color="red", weight=0]; 31.62/12.84 3706[label="FiniteMap.delFromFM xwv33 (Right xwv400)",fontsize=16,color="magenta"];3706 -> 3733[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 3706 -> 3734[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 494[label="compare3 (Right xwv33) (Right xwv28)",fontsize=16,color="black",shape="box"];494 -> 638[label="",style="solid", color="black", weight=3]; 31.62/12.84 496 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.84 496[label="Right xwv28 == Right xwv33",fontsize=16,color="magenta"];496 -> 639[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 496 -> 640[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 495[label="FiniteMap.delFromFM0 (Right xwv28) xwv29 xwv30 xwv31 xwv32 (Right xwv33) xwv76",fontsize=16,color="burlywood",shape="triangle"];4745[label="xwv76/False",fontsize=10,color="white",style="solid",shape="box"];495 -> 4745[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4745 -> 641[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4746[label="xwv76/True",fontsize=10,color="white",style="solid",shape="box"];495 -> 4746[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4746 -> 642[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 3707[label="xwv32",fontsize=16,color="green",shape="box"];3708[label="xwv29",fontsize=16,color="green",shape="box"];3709[label="Right xwv28",fontsize=16,color="green",shape="box"];3710 -> 11[label="",style="dashed", color="red", weight=0]; 31.62/12.84 3710[label="FiniteMap.delFromFM xwv31 (Right xwv33)",fontsize=16,color="magenta"];3710 -> 3735[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 3710 -> 3736[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 426[label="primEqInt (Pos (Succ xwv40000)) xwv300",fontsize=16,color="burlywood",shape="box"];4747[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];426 -> 4747[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4747 -> 501[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4748[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];426 -> 4748[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4748 -> 502[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 427[label="primEqInt (Pos Zero) xwv300",fontsize=16,color="burlywood",shape="box"];4749[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];427 -> 4749[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4749 -> 503[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4750[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];427 -> 4750[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4750 -> 504[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 428[label="primEqInt (Neg (Succ xwv40000)) xwv300",fontsize=16,color="burlywood",shape="box"];4751[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];428 -> 4751[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4751 -> 505[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4752[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];428 -> 4752[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4752 -> 506[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 429[label="primEqInt (Neg Zero) xwv300",fontsize=16,color="burlywood",shape="box"];4753[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];429 -> 4753[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4753 -> 507[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4754[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];429 -> 4754[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4754 -> 508[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 430 -> 662[label="",style="dashed", color="red", weight=0]; 31.62/12.84 430[label="xwv4000 == xwv3000 && xwv4001 == xwv3001 && xwv4002 == xwv3002",fontsize=16,color="magenta"];430 -> 663[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 430 -> 664[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 431 -> 662[label="",style="dashed", color="red", weight=0]; 31.62/12.84 431[label="xwv4000 == xwv3000 && xwv4001 == xwv3001",fontsize=16,color="magenta"];431 -> 665[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 431 -> 666[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 432[label="False",fontsize=16,color="green",shape="box"];433[label="False",fontsize=16,color="green",shape="box"];434[label="True",fontsize=16,color="green",shape="box"];435 -> 258[label="",style="dashed", color="red", weight=0]; 31.62/12.84 435[label="primEqInt xwv4000 xwv3000",fontsize=16,color="magenta"];435 -> 526[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 435 -> 527[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 436[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4755[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 4755[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4755 -> 528[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4756[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 4756[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4756 -> 529[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4757[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 4757[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4757 -> 530[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4758[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 4758[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4758 -> 531[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4759[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 4759[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4759 -> 532[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4760[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 4760[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4760 -> 533[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4761[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 4761[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4761 -> 534[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4762[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 4762[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4762 -> 535[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4763[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 4763[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4763 -> 536[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4764[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 4764[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4764 -> 537[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4765[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 4765[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4765 -> 538[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4766[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 4766[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4766 -> 539[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4767[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 4767[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4767 -> 540[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4768[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];436 -> 4768[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4768 -> 541[label="",style="solid", color="blue", weight=3]; 31.62/12.84 437[label="False",fontsize=16,color="green",shape="box"];438[label="False",fontsize=16,color="green",shape="box"];439[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4769[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];439 -> 4769[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4769 -> 542[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4770[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];439 -> 4770[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4770 -> 543[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4771[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];439 -> 4771[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4771 -> 544[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4772[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];439 -> 4772[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4772 -> 545[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4773[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];439 -> 4773[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4773 -> 546[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4774[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];439 -> 4774[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4774 -> 547[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4775[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];439 -> 4775[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4775 -> 548[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4776[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];439 -> 4776[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4776 -> 549[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4777[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];439 -> 4777[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4777 -> 550[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4778[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];439 -> 4778[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4778 -> 551[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4779[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];439 -> 4779[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4779 -> 552[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4780[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];439 -> 4780[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4780 -> 553[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4781[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];439 -> 4781[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4781 -> 554[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4782[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];439 -> 4782[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4782 -> 555[label="",style="solid", color="blue", weight=3]; 31.62/12.84 440[label="primEqFloat (Float xwv4000 xwv4001) (Float xwv3000 xwv3001)",fontsize=16,color="black",shape="box"];440 -> 556[label="",style="solid", color="black", weight=3]; 31.62/12.84 441[label="True",fontsize=16,color="green",shape="box"];442[label="primEqDouble (Double xwv4000 xwv4001) (Double xwv3000 xwv3001)",fontsize=16,color="black",shape="box"];442 -> 557[label="",style="solid", color="black", weight=3]; 31.62/12.84 443[label="primEqChar (Char xwv4000) (Char xwv3000)",fontsize=16,color="black",shape="box"];443 -> 558[label="",style="solid", color="black", weight=3]; 31.62/12.84 444[label="True",fontsize=16,color="green",shape="box"];445[label="False",fontsize=16,color="green",shape="box"];446[label="False",fontsize=16,color="green",shape="box"];447[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4783[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 4783[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4783 -> 559[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4784[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 4784[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4784 -> 560[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4785[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 4785[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4785 -> 561[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4786[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 4786[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4786 -> 562[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4787[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 4787[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4787 -> 563[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4788[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 4788[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4788 -> 564[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4789[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 4789[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4789 -> 565[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4790[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 4790[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4790 -> 566[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4791[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 4791[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4791 -> 567[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4792[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 4792[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4792 -> 568[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4793[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 4793[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4793 -> 569[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4794[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 4794[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4794 -> 570[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4795[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 4795[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4795 -> 571[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4796[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 4796[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4796 -> 572[label="",style="solid", color="blue", weight=3]; 31.62/12.84 448 -> 662[label="",style="dashed", color="red", weight=0]; 31.62/12.84 448[label="xwv4000 == xwv3000 && xwv4001 == xwv3001",fontsize=16,color="magenta"];448 -> 667[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 448 -> 668[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 449[label="True",fontsize=16,color="green",shape="box"];450[label="False",fontsize=16,color="green",shape="box"];451[label="False",fontsize=16,color="green",shape="box"];452[label="True",fontsize=16,color="green",shape="box"];453 -> 662[label="",style="dashed", color="red", weight=0]; 31.62/12.84 453[label="xwv4000 == xwv3000 && xwv4001 == xwv3001",fontsize=16,color="magenta"];453 -> 669[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 453 -> 670[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2351 -> 2387[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2351[label="compare1 (Left xwv4300) (Left xwv4400) (xwv4300 <= xwv4400)",fontsize=16,color="magenta"];2351 -> 2388[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2351 -> 2389[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2351 -> 2390[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2352[label="compare1 (Left xwv4300) (Right xwv4400) True",fontsize=16,color="black",shape="box"];2352 -> 2391[label="",style="solid", color="black", weight=3]; 31.62/12.84 2353[label="compare1 (Right xwv4300) (Left xwv4400) False",fontsize=16,color="black",shape="box"];2353 -> 2392[label="",style="solid", color="black", weight=3]; 31.62/12.84 2354 -> 2393[label="",style="dashed", color="red", weight=0]; 31.62/12.84 2354[label="compare1 (Right xwv4300) (Right xwv4400) (xwv4300 <= xwv4400)",fontsize=16,color="magenta"];2354 -> 2394[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2354 -> 2395[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 2354 -> 2396[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 589 -> 2189[label="",style="dashed", color="red", weight=0]; 31.62/12.84 589[label="compare2 (Left xwv18) (Left xwv13) (Left xwv18 == Left xwv13)",fontsize=16,color="magenta"];589 -> 2214[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 589 -> 2215[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 589 -> 2216[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 590[label="Left xwv18",fontsize=16,color="green",shape="box"];591[label="Left xwv13",fontsize=16,color="green",shape="box"];592[label="FiniteMap.delFromFM0 (Left xwv13) xwv14 xwv15 xwv16 xwv17 (Left xwv18) False",fontsize=16,color="black",shape="box"];592 -> 854[label="",style="solid", color="black", weight=3]; 31.62/12.84 593[label="FiniteMap.delFromFM0 (Left xwv13) xwv14 xwv15 xwv16 xwv17 (Left xwv18) True",fontsize=16,color="black",shape="box"];593 -> 855[label="",style="solid", color="black", weight=3]; 31.62/12.84 3729[label="xwv16",fontsize=16,color="green",shape="box"];3730[label="Left xwv18",fontsize=16,color="green",shape="box"];3756[label="FiniteMap.mkBalBranch6Size_l xwv170 xwv171 xwv315 xwv174 + FiniteMap.mkBalBranch6Size_r xwv170 xwv171 xwv315 xwv174",fontsize=16,color="black",shape="box"];3756 -> 3773[label="",style="solid", color="black", weight=3]; 31.62/12.84 3757[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1489[label="xwv430 < xwv440",fontsize=16,color="black",shape="triangle"];1489 -> 1564[label="",style="solid", color="black", weight=3]; 31.62/12.84 3758[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv170 xwv171 xwv315 xwv174 xwv170 xwv171 xwv315 xwv174 False",fontsize=16,color="black",shape="box"];3758 -> 3774[label="",style="solid", color="black", weight=3]; 31.62/12.84 3759[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv170 xwv171 xwv315 xwv174 xwv170 xwv171 xwv315 xwv174 True",fontsize=16,color="black",shape="box"];3759 -> 3775[label="",style="solid", color="black", weight=3]; 31.62/12.84 602 -> 2189[label="",style="dashed", color="red", weight=0]; 31.62/12.84 602[label="compare2 (Left xwv400) (Right xwv300) (Left xwv400 == Right xwv300)",fontsize=16,color="magenta"];602 -> 2217[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 602 -> 2218[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 602 -> 2219[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 603[label="Left xwv400",fontsize=16,color="green",shape="box"];604[label="Right xwv300",fontsize=16,color="green",shape="box"];605[label="FiniteMap.delFromFM0 (Right xwv300) xwv31 xwv32 xwv33 xwv34 (Left xwv400) False",fontsize=16,color="black",shape="box"];605 -> 865[label="",style="solid", color="black", weight=3]; 31.62/12.84 606[label="FiniteMap.delFromFM0 (Right xwv300) xwv31 xwv32 xwv33 xwv34 (Left xwv400) True",fontsize=16,color="black",shape="box"];606 -> 866[label="",style="solid", color="black", weight=3]; 31.62/12.84 3731[label="xwv33",fontsize=16,color="green",shape="box"];3732[label="Left xwv400",fontsize=16,color="green",shape="box"];615 -> 2189[label="",style="dashed", color="red", weight=0]; 31.62/12.84 615[label="compare2 (Right xwv400) (Left xwv300) (Right xwv400 == Left xwv300)",fontsize=16,color="magenta"];615 -> 2220[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 615 -> 2221[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 615 -> 2222[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 616[label="Right xwv400",fontsize=16,color="green",shape="box"];617[label="Left xwv300",fontsize=16,color="green",shape="box"];618[label="FiniteMap.delFromFM0 (Left xwv300) xwv31 xwv32 xwv33 xwv34 (Right xwv400) False",fontsize=16,color="black",shape="box"];618 -> 878[label="",style="solid", color="black", weight=3]; 31.62/12.84 619[label="FiniteMap.delFromFM0 (Left xwv300) xwv31 xwv32 xwv33 xwv34 (Right xwv400) True",fontsize=16,color="black",shape="box"];619 -> 879[label="",style="solid", color="black", weight=3]; 31.62/12.84 3733[label="xwv33",fontsize=16,color="green",shape="box"];3734[label="Right xwv400",fontsize=16,color="green",shape="box"];638 -> 2189[label="",style="dashed", color="red", weight=0]; 31.62/12.84 638[label="compare2 (Right xwv33) (Right xwv28) (Right xwv33 == Right xwv28)",fontsize=16,color="magenta"];638 -> 2223[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 638 -> 2224[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 638 -> 2225[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 639[label="Right xwv33",fontsize=16,color="green",shape="box"];640[label="Right xwv28",fontsize=16,color="green",shape="box"];641[label="FiniteMap.delFromFM0 (Right xwv28) xwv29 xwv30 xwv31 xwv32 (Right xwv33) False",fontsize=16,color="black",shape="box"];641 -> 912[label="",style="solid", color="black", weight=3]; 31.62/12.84 642[label="FiniteMap.delFromFM0 (Right xwv28) xwv29 xwv30 xwv31 xwv32 (Right xwv33) True",fontsize=16,color="black",shape="box"];642 -> 913[label="",style="solid", color="black", weight=3]; 31.62/12.84 3735[label="xwv31",fontsize=16,color="green",shape="box"];3736[label="Right xwv33",fontsize=16,color="green",shape="box"];501[label="primEqInt (Pos (Succ xwv40000)) (Pos xwv3000)",fontsize=16,color="burlywood",shape="box"];4797[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];501 -> 4797[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4797 -> 645[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4798[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];501 -> 4798[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4798 -> 646[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 502[label="primEqInt (Pos (Succ xwv40000)) (Neg xwv3000)",fontsize=16,color="black",shape="box"];502 -> 647[label="",style="solid", color="black", weight=3]; 31.62/12.84 503[label="primEqInt (Pos Zero) (Pos xwv3000)",fontsize=16,color="burlywood",shape="box"];4799[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];503 -> 4799[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4799 -> 648[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4800[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];503 -> 4800[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4800 -> 649[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 504[label="primEqInt (Pos Zero) (Neg xwv3000)",fontsize=16,color="burlywood",shape="box"];4801[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];504 -> 4801[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4801 -> 650[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4802[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];504 -> 4802[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4802 -> 651[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 505[label="primEqInt (Neg (Succ xwv40000)) (Pos xwv3000)",fontsize=16,color="black",shape="box"];505 -> 652[label="",style="solid", color="black", weight=3]; 31.62/12.84 506[label="primEqInt (Neg (Succ xwv40000)) (Neg xwv3000)",fontsize=16,color="burlywood",shape="box"];4803[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];506 -> 4803[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4803 -> 653[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4804[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];506 -> 4804[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4804 -> 654[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 507[label="primEqInt (Neg Zero) (Pos xwv3000)",fontsize=16,color="burlywood",shape="box"];4805[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];507 -> 4805[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4805 -> 655[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4806[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];507 -> 4806[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4806 -> 656[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 508[label="primEqInt (Neg Zero) (Neg xwv3000)",fontsize=16,color="burlywood",shape="box"];4807[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];508 -> 4807[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4807 -> 657[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4808[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];508 -> 4808[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4808 -> 658[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 663 -> 662[label="",style="dashed", color="red", weight=0]; 31.62/12.84 663[label="xwv4001 == xwv3001 && xwv4002 == xwv3002",fontsize=16,color="magenta"];663 -> 675[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 663 -> 676[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 664[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4809[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];664 -> 4809[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4809 -> 677[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4810[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];664 -> 4810[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4810 -> 678[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4811[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];664 -> 4811[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4811 -> 679[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4812[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];664 -> 4812[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4812 -> 680[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4813[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];664 -> 4813[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4813 -> 681[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4814[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];664 -> 4814[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4814 -> 682[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4815[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];664 -> 4815[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4815 -> 683[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4816[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];664 -> 4816[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4816 -> 684[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4817[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];664 -> 4817[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4817 -> 685[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4818[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];664 -> 4818[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4818 -> 686[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4819[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];664 -> 4819[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4819 -> 687[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4820[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];664 -> 4820[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4820 -> 688[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4821[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];664 -> 4821[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4821 -> 689[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4822[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];664 -> 4822[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4822 -> 690[label="",style="solid", color="blue", weight=3]; 31.62/12.84 662[label="xwv94 && xwv95",fontsize=16,color="burlywood",shape="triangle"];4823[label="xwv94/False",fontsize=10,color="white",style="solid",shape="box"];662 -> 4823[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4823 -> 691[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 4824[label="xwv94/True",fontsize=10,color="white",style="solid",shape="box"];662 -> 4824[label="",style="solid", color="burlywood", weight=9]; 31.62/12.84 4824 -> 692[label="",style="solid", color="burlywood", weight=3]; 31.62/12.84 665 -> 220[label="",style="dashed", color="red", weight=0]; 31.62/12.84 665[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];665 -> 693[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 665 -> 694[label="",style="dashed", color="magenta", weight=3]; 31.62/12.84 666[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4825[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];666 -> 4825[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4825 -> 695[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4826[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];666 -> 4826[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4826 -> 696[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4827[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];666 -> 4827[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4827 -> 697[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4828[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];666 -> 4828[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4828 -> 698[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4829[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];666 -> 4829[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4829 -> 699[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4830[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];666 -> 4830[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4830 -> 700[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4831[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];666 -> 4831[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4831 -> 701[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4832[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];666 -> 4832[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4832 -> 702[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4833[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];666 -> 4833[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4833 -> 703[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4834[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];666 -> 4834[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4834 -> 704[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4835[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];666 -> 4835[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4835 -> 705[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4836[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];666 -> 4836[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4836 -> 706[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4837[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];666 -> 4837[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4837 -> 707[label="",style="solid", color="blue", weight=3]; 31.62/12.84 4838[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];666 -> 4838[label="",style="solid", color="blue", weight=9]; 31.62/12.84 4838 -> 708[label="",style="solid", color="blue", weight=3]; 31.62/12.84 526[label="xwv3000",fontsize=16,color="green",shape="box"];527[label="xwv4000",fontsize=16,color="green",shape="box"];528 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.85 528[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];528 -> 709[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 528 -> 710[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 529 -> 219[label="",style="dashed", color="red", weight=0]; 31.62/12.85 529[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];529 -> 711[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 529 -> 712[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 530 -> 220[label="",style="dashed", color="red", weight=0]; 31.62/12.85 530[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];530 -> 713[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 530 -> 714[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 531 -> 221[label="",style="dashed", color="red", weight=0]; 31.62/12.85 531[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];531 -> 715[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 531 -> 716[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 532 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.85 532[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];532 -> 717[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 532 -> 718[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 533 -> 223[label="",style="dashed", color="red", weight=0]; 31.62/12.85 533[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];533 -> 719[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 533 -> 720[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 534 -> 224[label="",style="dashed", color="red", weight=0]; 31.62/12.85 534[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];534 -> 721[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 534 -> 722[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 535 -> 225[label="",style="dashed", color="red", weight=0]; 31.62/12.85 535[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];535 -> 723[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 535 -> 724[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 536 -> 226[label="",style="dashed", color="red", weight=0]; 31.62/12.85 536[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];536 -> 725[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 536 -> 726[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 537 -> 227[label="",style="dashed", color="red", weight=0]; 31.62/12.85 537[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];537 -> 727[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 537 -> 728[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 538 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 538[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];538 -> 729[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 538 -> 730[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 539 -> 229[label="",style="dashed", color="red", weight=0]; 31.62/12.85 539[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];539 -> 731[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 539 -> 732[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 540 -> 230[label="",style="dashed", color="red", weight=0]; 31.62/12.85 540[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];540 -> 733[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 540 -> 734[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 541 -> 231[label="",style="dashed", color="red", weight=0]; 31.62/12.85 541[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];541 -> 735[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 541 -> 736[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 542 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.85 542[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];542 -> 737[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 542 -> 738[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 543 -> 219[label="",style="dashed", color="red", weight=0]; 31.62/12.85 543[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];543 -> 739[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 543 -> 740[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 544 -> 220[label="",style="dashed", color="red", weight=0]; 31.62/12.85 544[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];544 -> 741[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 544 -> 742[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 545 -> 221[label="",style="dashed", color="red", weight=0]; 31.62/12.85 545[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];545 -> 743[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 545 -> 744[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 546 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.85 546[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];546 -> 745[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 546 -> 746[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 547 -> 223[label="",style="dashed", color="red", weight=0]; 31.62/12.85 547[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];547 -> 747[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 547 -> 748[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 548 -> 224[label="",style="dashed", color="red", weight=0]; 31.62/12.85 548[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];548 -> 749[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 548 -> 750[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 549 -> 225[label="",style="dashed", color="red", weight=0]; 31.62/12.85 549[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];549 -> 751[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 549 -> 752[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 550 -> 226[label="",style="dashed", color="red", weight=0]; 31.62/12.85 550[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];550 -> 753[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 550 -> 754[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 551 -> 227[label="",style="dashed", color="red", weight=0]; 31.62/12.85 551[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];551 -> 755[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 551 -> 756[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 552 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 552[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];552 -> 757[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 552 -> 758[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 553 -> 229[label="",style="dashed", color="red", weight=0]; 31.62/12.85 553[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];553 -> 759[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 553 -> 760[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 554 -> 230[label="",style="dashed", color="red", weight=0]; 31.62/12.85 554[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];554 -> 761[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 554 -> 762[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 555 -> 231[label="",style="dashed", color="red", weight=0]; 31.62/12.85 555[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];555 -> 763[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 555 -> 764[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 556 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.85 556[label="xwv4000 * xwv3001 == xwv4001 * xwv3000",fontsize=16,color="magenta"];556 -> 765[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 556 -> 766[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 557 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.85 557[label="xwv4000 * xwv3001 == xwv4001 * xwv3000",fontsize=16,color="magenta"];557 -> 767[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 557 -> 768[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 558[label="primEqNat xwv4000 xwv3000",fontsize=16,color="burlywood",shape="triangle"];4839[label="xwv4000/Succ xwv40000",fontsize=10,color="white",style="solid",shape="box"];558 -> 4839[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4839 -> 769[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4840[label="xwv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];558 -> 4840[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4840 -> 770[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 559 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.85 559[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];559 -> 771[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 559 -> 772[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 560 -> 219[label="",style="dashed", color="red", weight=0]; 31.62/12.85 560[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];560 -> 773[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 560 -> 774[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 561 -> 220[label="",style="dashed", color="red", weight=0]; 31.62/12.85 561[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];561 -> 775[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 561 -> 776[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 562 -> 221[label="",style="dashed", color="red", weight=0]; 31.62/12.85 562[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];562 -> 777[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 562 -> 778[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 563 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.85 563[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];563 -> 779[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 563 -> 780[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 564 -> 223[label="",style="dashed", color="red", weight=0]; 31.62/12.85 564[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];564 -> 781[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 564 -> 782[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 565 -> 224[label="",style="dashed", color="red", weight=0]; 31.62/12.85 565[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];565 -> 783[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 565 -> 784[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 566 -> 225[label="",style="dashed", color="red", weight=0]; 31.62/12.85 566[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];566 -> 785[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 566 -> 786[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 567 -> 226[label="",style="dashed", color="red", weight=0]; 31.62/12.85 567[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];567 -> 787[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 567 -> 788[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 568 -> 227[label="",style="dashed", color="red", weight=0]; 31.62/12.85 568[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];568 -> 789[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 568 -> 790[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 569 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 569[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];569 -> 791[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 569 -> 792[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 570 -> 229[label="",style="dashed", color="red", weight=0]; 31.62/12.85 570[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];570 -> 793[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 570 -> 794[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 571 -> 230[label="",style="dashed", color="red", weight=0]; 31.62/12.85 571[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];571 -> 795[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 571 -> 796[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 572 -> 231[label="",style="dashed", color="red", weight=0]; 31.62/12.85 572[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];572 -> 797[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 572 -> 798[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 667[label="xwv4001 == xwv3001",fontsize=16,color="blue",shape="box"];4841[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];667 -> 4841[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4841 -> 799[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4842[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];667 -> 4842[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4842 -> 800[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4843[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];667 -> 4843[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4843 -> 801[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4844[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];667 -> 4844[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4844 -> 802[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4845[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];667 -> 4845[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4845 -> 803[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4846[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];667 -> 4846[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4846 -> 804[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4847[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];667 -> 4847[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4847 -> 805[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4848[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];667 -> 4848[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4848 -> 806[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4849[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];667 -> 4849[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4849 -> 807[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4850[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];667 -> 4850[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4850 -> 808[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4851[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];667 -> 4851[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4851 -> 809[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4852[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];667 -> 4852[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4852 -> 810[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4853[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];667 -> 4853[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4853 -> 811[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4854[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];667 -> 4854[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4854 -> 812[label="",style="solid", color="blue", weight=3]; 31.62/12.85 668[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4855[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 4855[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4855 -> 813[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4856[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 4856[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4856 -> 814[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4857[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 4857[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4857 -> 815[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4858[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 4858[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4858 -> 816[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4859[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 4859[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4859 -> 817[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4860[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 4860[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4860 -> 818[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4861[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 4861[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4861 -> 819[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4862[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 4862[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4862 -> 820[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4863[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 4863[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4863 -> 821[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4864[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 4864[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4864 -> 822[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4865[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 4865[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4865 -> 823[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4866[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 4866[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4866 -> 824[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4867[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 4867[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4867 -> 825[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4868[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 4868[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4868 -> 826[label="",style="solid", color="blue", weight=3]; 31.62/12.85 669[label="xwv4001 == xwv3001",fontsize=16,color="blue",shape="box"];4869[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];669 -> 4869[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4869 -> 827[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4870[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];669 -> 4870[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4870 -> 828[label="",style="solid", color="blue", weight=3]; 31.62/12.85 670[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4871[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];670 -> 4871[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4871 -> 829[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4872[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];670 -> 4872[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4872 -> 830[label="",style="solid", color="blue", weight=3]; 31.62/12.85 2388[label="xwv4400",fontsize=16,color="green",shape="box"];2389[label="xwv4300",fontsize=16,color="green",shape="box"];2390[label="xwv4300 <= xwv4400",fontsize=16,color="blue",shape="box"];4873[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 4873[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4873 -> 2397[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4874[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 4874[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4874 -> 2398[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4875[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 4875[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4875 -> 2399[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4876[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 4876[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4876 -> 2400[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4877[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 4877[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4877 -> 2401[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4878[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 4878[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4878 -> 2402[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4879[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 4879[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4879 -> 2403[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4880[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 4880[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4880 -> 2404[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4881[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 4881[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4881 -> 2405[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4882[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 4882[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4882 -> 2406[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4883[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 4883[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4883 -> 2407[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4884[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 4884[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4884 -> 2408[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4885[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 4885[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4885 -> 2409[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4886[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2390 -> 4886[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4886 -> 2410[label="",style="solid", color="blue", weight=3]; 31.62/12.85 2387[label="compare1 (Left xwv160) (Left xwv161) xwv162",fontsize=16,color="burlywood",shape="triangle"];4887[label="xwv162/False",fontsize=10,color="white",style="solid",shape="box"];2387 -> 4887[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4887 -> 2411[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4888[label="xwv162/True",fontsize=10,color="white",style="solid",shape="box"];2387 -> 4888[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4888 -> 2412[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2391[label="LT",fontsize=16,color="green",shape="box"];2392[label="compare0 (Right xwv4300) (Left xwv4400) otherwise",fontsize=16,color="black",shape="box"];2392 -> 2413[label="",style="solid", color="black", weight=3]; 31.62/12.85 2394[label="xwv4300",fontsize=16,color="green",shape="box"];2395[label="xwv4300 <= xwv4400",fontsize=16,color="blue",shape="box"];4889[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4889[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4889 -> 2414[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4890[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4890[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4890 -> 2415[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4891[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4891[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4891 -> 2416[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4892[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4892[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4892 -> 2417[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4893[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4893[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4893 -> 2418[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4894[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4894[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4894 -> 2419[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4895[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4895[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4895 -> 2420[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4896[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4896[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4896 -> 2421[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4897[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4897[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4897 -> 2422[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4898[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4898[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4898 -> 2423[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4899[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4899[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4899 -> 2424[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4900[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4900[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4900 -> 2425[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4901[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4901[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4901 -> 2426[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4902[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4902[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4902 -> 2427[label="",style="solid", color="blue", weight=3]; 31.62/12.85 2396[label="xwv4400",fontsize=16,color="green",shape="box"];2393[label="compare1 (Right xwv167) (Right xwv168) xwv169",fontsize=16,color="burlywood",shape="triangle"];4903[label="xwv169/False",fontsize=10,color="white",style="solid",shape="box"];2393 -> 4903[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4903 -> 2428[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4904[label="xwv169/True",fontsize=10,color="white",style="solid",shape="box"];2393 -> 4904[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4904 -> 2429[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2214[label="Left xwv18",fontsize=16,color="green",shape="box"];2215 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2215[label="Left xwv18 == Left xwv13",fontsize=16,color="magenta"];2215 -> 2257[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2215 -> 2258[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2216[label="Left xwv13",fontsize=16,color="green",shape="box"];854[label="error []",fontsize=16,color="red",shape="box"];855[label="FiniteMap.glueBal xwv16 xwv17",fontsize=16,color="burlywood",shape="triangle"];4905[label="xwv16/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];855 -> 4905[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4905 -> 1121[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4906[label="xwv16/FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164",fontsize=10,color="white",style="solid",shape="box"];855 -> 4906[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4906 -> 1122[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 3773 -> 3798[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3773[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xwv170 xwv171 xwv315 xwv174) (FiniteMap.mkBalBranch6Size_r xwv170 xwv171 xwv315 xwv174)",fontsize=16,color="magenta"];3773 -> 3799[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1564 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 1564[label="compare xwv430 xwv440 == LT",fontsize=16,color="magenta"];1564 -> 1695[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1564 -> 1696[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3774 -> 3795[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3774[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv170 xwv171 xwv315 xwv174 xwv170 xwv171 xwv315 xwv174 (FiniteMap.mkBalBranch6Size_r xwv170 xwv171 xwv315 xwv174 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv170 xwv171 xwv315 xwv174)",fontsize=16,color="magenta"];3774 -> 3796[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3775 -> 4490[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3775[label="FiniteMap.mkBranch (Pos (Succ Zero)) xwv170 xwv171 xwv315 xwv174",fontsize=16,color="magenta"];3775 -> 4491[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3775 -> 4492[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3775 -> 4493[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3775 -> 4494[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3775 -> 4495[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2217[label="Left xwv400",fontsize=16,color="green",shape="box"];2218 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2218[label="Left xwv400 == Right xwv300",fontsize=16,color="magenta"];2218 -> 2259[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2218 -> 2260[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2219[label="Right xwv300",fontsize=16,color="green",shape="box"];865[label="error []",fontsize=16,color="red",shape="box"];866 -> 855[label="",style="dashed", color="red", weight=0]; 31.62/12.85 866[label="FiniteMap.glueBal xwv33 xwv34",fontsize=16,color="magenta"];866 -> 1143[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 866 -> 1144[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2220[label="Right xwv400",fontsize=16,color="green",shape="box"];2221 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2221[label="Right xwv400 == Left xwv300",fontsize=16,color="magenta"];2221 -> 2261[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2221 -> 2262[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2222[label="Left xwv300",fontsize=16,color="green",shape="box"];878[label="error []",fontsize=16,color="red",shape="box"];879 -> 855[label="",style="dashed", color="red", weight=0]; 31.62/12.85 879[label="FiniteMap.glueBal xwv33 xwv34",fontsize=16,color="magenta"];879 -> 1159[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 879 -> 1160[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2223[label="Right xwv33",fontsize=16,color="green",shape="box"];2224 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2224[label="Right xwv33 == Right xwv28",fontsize=16,color="magenta"];2224 -> 2263[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2224 -> 2264[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2225[label="Right xwv28",fontsize=16,color="green",shape="box"];912[label="error []",fontsize=16,color="red",shape="box"];913 -> 855[label="",style="dashed", color="red", weight=0]; 31.62/12.85 913[label="FiniteMap.glueBal xwv31 xwv32",fontsize=16,color="magenta"];913 -> 1164[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 913 -> 1165[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 645[label="primEqInt (Pos (Succ xwv40000)) (Pos (Succ xwv30000))",fontsize=16,color="black",shape="box"];645 -> 914[label="",style="solid", color="black", weight=3]; 31.62/12.85 646[label="primEqInt (Pos (Succ xwv40000)) (Pos Zero)",fontsize=16,color="black",shape="box"];646 -> 915[label="",style="solid", color="black", weight=3]; 31.62/12.85 647[label="False",fontsize=16,color="green",shape="box"];648[label="primEqInt (Pos Zero) (Pos (Succ xwv30000))",fontsize=16,color="black",shape="box"];648 -> 916[label="",style="solid", color="black", weight=3]; 31.62/12.85 649[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];649 -> 917[label="",style="solid", color="black", weight=3]; 31.62/12.85 650[label="primEqInt (Pos Zero) (Neg (Succ xwv30000))",fontsize=16,color="black",shape="box"];650 -> 918[label="",style="solid", color="black", weight=3]; 31.62/12.85 651[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];651 -> 919[label="",style="solid", color="black", weight=3]; 31.62/12.85 652[label="False",fontsize=16,color="green",shape="box"];653[label="primEqInt (Neg (Succ xwv40000)) (Neg (Succ xwv30000))",fontsize=16,color="black",shape="box"];653 -> 920[label="",style="solid", color="black", weight=3]; 31.62/12.85 654[label="primEqInt (Neg (Succ xwv40000)) (Neg Zero)",fontsize=16,color="black",shape="box"];654 -> 921[label="",style="solid", color="black", weight=3]; 31.62/12.85 655[label="primEqInt (Neg Zero) (Pos (Succ xwv30000))",fontsize=16,color="black",shape="box"];655 -> 922[label="",style="solid", color="black", weight=3]; 31.62/12.85 656[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];656 -> 923[label="",style="solid", color="black", weight=3]; 31.62/12.85 657[label="primEqInt (Neg Zero) (Neg (Succ xwv30000))",fontsize=16,color="black",shape="box"];657 -> 924[label="",style="solid", color="black", weight=3]; 31.62/12.85 658[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];658 -> 925[label="",style="solid", color="black", weight=3]; 31.62/12.85 675[label="xwv4002 == xwv3002",fontsize=16,color="blue",shape="box"];4907[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];675 -> 4907[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4907 -> 926[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4908[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];675 -> 4908[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4908 -> 927[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4909[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];675 -> 4909[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4909 -> 928[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4910[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];675 -> 4910[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4910 -> 929[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4911[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];675 -> 4911[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4911 -> 930[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4912[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];675 -> 4912[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4912 -> 931[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4913[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];675 -> 4913[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4913 -> 932[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4914[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];675 -> 4914[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4914 -> 933[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4915[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];675 -> 4915[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4915 -> 934[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4916[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];675 -> 4916[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4916 -> 935[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4917[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];675 -> 4917[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4917 -> 936[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4918[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];675 -> 4918[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4918 -> 937[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4919[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];675 -> 4919[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4919 -> 938[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4920[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];675 -> 4920[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4920 -> 939[label="",style="solid", color="blue", weight=3]; 31.62/12.85 676[label="xwv4001 == xwv3001",fontsize=16,color="blue",shape="box"];4921[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];676 -> 4921[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4921 -> 940[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4922[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];676 -> 4922[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4922 -> 941[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4923[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];676 -> 4923[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4923 -> 942[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4924[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];676 -> 4924[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4924 -> 943[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4925[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];676 -> 4925[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4925 -> 944[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4926[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];676 -> 4926[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4926 -> 945[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4927[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];676 -> 4927[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4927 -> 946[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4928[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];676 -> 4928[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4928 -> 947[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4929[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];676 -> 4929[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4929 -> 948[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4930[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];676 -> 4930[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4930 -> 949[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4931[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];676 -> 4931[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4931 -> 950[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4932[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];676 -> 4932[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4932 -> 951[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4933[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];676 -> 4933[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4933 -> 952[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4934[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];676 -> 4934[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4934 -> 953[label="",style="solid", color="blue", weight=3]; 31.62/12.85 677 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.85 677[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];677 -> 954[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 677 -> 955[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 678 -> 219[label="",style="dashed", color="red", weight=0]; 31.62/12.85 678[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];678 -> 956[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 678 -> 957[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 679 -> 220[label="",style="dashed", color="red", weight=0]; 31.62/12.85 679[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];679 -> 958[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 679 -> 959[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 680 -> 221[label="",style="dashed", color="red", weight=0]; 31.62/12.85 680[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];680 -> 960[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 680 -> 961[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 681 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.85 681[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];681 -> 962[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 681 -> 963[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 682 -> 223[label="",style="dashed", color="red", weight=0]; 31.62/12.85 682[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];682 -> 964[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 682 -> 965[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 683 -> 224[label="",style="dashed", color="red", weight=0]; 31.62/12.85 683[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];683 -> 966[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 683 -> 967[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 684 -> 225[label="",style="dashed", color="red", weight=0]; 31.62/12.85 684[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];684 -> 968[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 684 -> 969[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 685 -> 226[label="",style="dashed", color="red", weight=0]; 31.62/12.85 685[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];685 -> 970[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 685 -> 971[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 686 -> 227[label="",style="dashed", color="red", weight=0]; 31.62/12.85 686[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];686 -> 972[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 686 -> 973[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 687 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 687[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];687 -> 974[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 687 -> 975[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 688 -> 229[label="",style="dashed", color="red", weight=0]; 31.62/12.85 688[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];688 -> 976[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 688 -> 977[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 689 -> 230[label="",style="dashed", color="red", weight=0]; 31.62/12.85 689[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];689 -> 978[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 689 -> 979[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 690 -> 231[label="",style="dashed", color="red", weight=0]; 31.62/12.85 690[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];690 -> 980[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 690 -> 981[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 691[label="False && xwv95",fontsize=16,color="black",shape="box"];691 -> 982[label="",style="solid", color="black", weight=3]; 31.62/12.85 692[label="True && xwv95",fontsize=16,color="black",shape="box"];692 -> 983[label="",style="solid", color="black", weight=3]; 31.62/12.85 693[label="xwv3001",fontsize=16,color="green",shape="box"];694[label="xwv4001",fontsize=16,color="green",shape="box"];695 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.85 695[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];695 -> 984[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 695 -> 985[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 696 -> 219[label="",style="dashed", color="red", weight=0]; 31.62/12.85 696[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];696 -> 986[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 696 -> 987[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 697 -> 220[label="",style="dashed", color="red", weight=0]; 31.62/12.85 697[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];697 -> 988[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 697 -> 989[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 698 -> 221[label="",style="dashed", color="red", weight=0]; 31.62/12.85 698[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];698 -> 990[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 698 -> 991[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 699 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.85 699[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];699 -> 992[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 699 -> 993[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 700 -> 223[label="",style="dashed", color="red", weight=0]; 31.62/12.85 700[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];700 -> 994[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 700 -> 995[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 701 -> 224[label="",style="dashed", color="red", weight=0]; 31.62/12.85 701[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];701 -> 996[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 701 -> 997[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 702 -> 225[label="",style="dashed", color="red", weight=0]; 31.62/12.85 702[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];702 -> 998[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 702 -> 999[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 703 -> 226[label="",style="dashed", color="red", weight=0]; 31.62/12.85 703[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];703 -> 1000[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 703 -> 1001[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 704 -> 227[label="",style="dashed", color="red", weight=0]; 31.62/12.85 704[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];704 -> 1002[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 704 -> 1003[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 705 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 705[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];705 -> 1004[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 705 -> 1005[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 706 -> 229[label="",style="dashed", color="red", weight=0]; 31.62/12.85 706[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];706 -> 1006[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 706 -> 1007[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 707 -> 230[label="",style="dashed", color="red", weight=0]; 31.62/12.85 707[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];707 -> 1008[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 707 -> 1009[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 708 -> 231[label="",style="dashed", color="red", weight=0]; 31.62/12.85 708[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];708 -> 1010[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 708 -> 1011[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 709[label="xwv3000",fontsize=16,color="green",shape="box"];710[label="xwv4000",fontsize=16,color="green",shape="box"];711[label="xwv3000",fontsize=16,color="green",shape="box"];712[label="xwv4000",fontsize=16,color="green",shape="box"];713[label="xwv3000",fontsize=16,color="green",shape="box"];714[label="xwv4000",fontsize=16,color="green",shape="box"];715[label="xwv3000",fontsize=16,color="green",shape="box"];716[label="xwv4000",fontsize=16,color="green",shape="box"];717[label="xwv3000",fontsize=16,color="green",shape="box"];718[label="xwv4000",fontsize=16,color="green",shape="box"];719[label="xwv3000",fontsize=16,color="green",shape="box"];720[label="xwv4000",fontsize=16,color="green",shape="box"];721[label="xwv3000",fontsize=16,color="green",shape="box"];722[label="xwv4000",fontsize=16,color="green",shape="box"];723[label="xwv3000",fontsize=16,color="green",shape="box"];724[label="xwv4000",fontsize=16,color="green",shape="box"];725[label="xwv3000",fontsize=16,color="green",shape="box"];726[label="xwv4000",fontsize=16,color="green",shape="box"];727[label="xwv3000",fontsize=16,color="green",shape="box"];728[label="xwv4000",fontsize=16,color="green",shape="box"];729[label="xwv3000",fontsize=16,color="green",shape="box"];730[label="xwv4000",fontsize=16,color="green",shape="box"];731[label="xwv3000",fontsize=16,color="green",shape="box"];732[label="xwv4000",fontsize=16,color="green",shape="box"];733[label="xwv3000",fontsize=16,color="green",shape="box"];734[label="xwv4000",fontsize=16,color="green",shape="box"];735[label="xwv3000",fontsize=16,color="green",shape="box"];736[label="xwv4000",fontsize=16,color="green",shape="box"];737[label="xwv3000",fontsize=16,color="green",shape="box"];738[label="xwv4000",fontsize=16,color="green",shape="box"];739[label="xwv3000",fontsize=16,color="green",shape="box"];740[label="xwv4000",fontsize=16,color="green",shape="box"];741[label="xwv3000",fontsize=16,color="green",shape="box"];742[label="xwv4000",fontsize=16,color="green",shape="box"];743[label="xwv3000",fontsize=16,color="green",shape="box"];744[label="xwv4000",fontsize=16,color="green",shape="box"];745[label="xwv3000",fontsize=16,color="green",shape="box"];746[label="xwv4000",fontsize=16,color="green",shape="box"];747[label="xwv3000",fontsize=16,color="green",shape="box"];748[label="xwv4000",fontsize=16,color="green",shape="box"];749[label="xwv3000",fontsize=16,color="green",shape="box"];750[label="xwv4000",fontsize=16,color="green",shape="box"];751[label="xwv3000",fontsize=16,color="green",shape="box"];752[label="xwv4000",fontsize=16,color="green",shape="box"];753[label="xwv3000",fontsize=16,color="green",shape="box"];754[label="xwv4000",fontsize=16,color="green",shape="box"];755[label="xwv3000",fontsize=16,color="green",shape="box"];756[label="xwv4000",fontsize=16,color="green",shape="box"];757[label="xwv3000",fontsize=16,color="green",shape="box"];758[label="xwv4000",fontsize=16,color="green",shape="box"];759[label="xwv3000",fontsize=16,color="green",shape="box"];760[label="xwv4000",fontsize=16,color="green",shape="box"];761[label="xwv3000",fontsize=16,color="green",shape="box"];762[label="xwv4000",fontsize=16,color="green",shape="box"];763[label="xwv3000",fontsize=16,color="green",shape="box"];764[label="xwv4000",fontsize=16,color="green",shape="box"];765[label="xwv4001 * xwv3000",fontsize=16,color="black",shape="triangle"];765 -> 1012[label="",style="solid", color="black", weight=3]; 31.62/12.85 766 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.85 766[label="xwv4000 * xwv3001",fontsize=16,color="magenta"];766 -> 1013[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 766 -> 1014[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 767 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.85 767[label="xwv4001 * xwv3000",fontsize=16,color="magenta"];767 -> 1015[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 767 -> 1016[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 768 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.85 768[label="xwv4000 * xwv3001",fontsize=16,color="magenta"];768 -> 1017[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 768 -> 1018[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 769[label="primEqNat (Succ xwv40000) xwv3000",fontsize=16,color="burlywood",shape="box"];4935[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];769 -> 4935[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4935 -> 1019[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4936[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];769 -> 4936[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4936 -> 1020[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 770[label="primEqNat Zero xwv3000",fontsize=16,color="burlywood",shape="box"];4937[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];770 -> 4937[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4937 -> 1021[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4938[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];770 -> 4938[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4938 -> 1022[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 771[label="xwv3000",fontsize=16,color="green",shape="box"];772[label="xwv4000",fontsize=16,color="green",shape="box"];773[label="xwv3000",fontsize=16,color="green",shape="box"];774[label="xwv4000",fontsize=16,color="green",shape="box"];775[label="xwv3000",fontsize=16,color="green",shape="box"];776[label="xwv4000",fontsize=16,color="green",shape="box"];777[label="xwv3000",fontsize=16,color="green",shape="box"];778[label="xwv4000",fontsize=16,color="green",shape="box"];779[label="xwv3000",fontsize=16,color="green",shape="box"];780[label="xwv4000",fontsize=16,color="green",shape="box"];781[label="xwv3000",fontsize=16,color="green",shape="box"];782[label="xwv4000",fontsize=16,color="green",shape="box"];783[label="xwv3000",fontsize=16,color="green",shape="box"];784[label="xwv4000",fontsize=16,color="green",shape="box"];785[label="xwv3000",fontsize=16,color="green",shape="box"];786[label="xwv4000",fontsize=16,color="green",shape="box"];787[label="xwv3000",fontsize=16,color="green",shape="box"];788[label="xwv4000",fontsize=16,color="green",shape="box"];789[label="xwv3000",fontsize=16,color="green",shape="box"];790[label="xwv4000",fontsize=16,color="green",shape="box"];791[label="xwv3000",fontsize=16,color="green",shape="box"];792[label="xwv4000",fontsize=16,color="green",shape="box"];793[label="xwv3000",fontsize=16,color="green",shape="box"];794[label="xwv4000",fontsize=16,color="green",shape="box"];795[label="xwv3000",fontsize=16,color="green",shape="box"];796[label="xwv4000",fontsize=16,color="green",shape="box"];797[label="xwv3000",fontsize=16,color="green",shape="box"];798[label="xwv4000",fontsize=16,color="green",shape="box"];799 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.85 799[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];799 -> 1023[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 799 -> 1024[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 800 -> 219[label="",style="dashed", color="red", weight=0]; 31.62/12.85 800[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];800 -> 1025[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 800 -> 1026[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 801 -> 220[label="",style="dashed", color="red", weight=0]; 31.62/12.85 801[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];801 -> 1027[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 801 -> 1028[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 802 -> 221[label="",style="dashed", color="red", weight=0]; 31.62/12.85 802[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];802 -> 1029[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 802 -> 1030[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 803 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.85 803[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];803 -> 1031[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 803 -> 1032[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 804 -> 223[label="",style="dashed", color="red", weight=0]; 31.62/12.85 804[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];804 -> 1033[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 804 -> 1034[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 805 -> 224[label="",style="dashed", color="red", weight=0]; 31.62/12.85 805[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];805 -> 1035[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 805 -> 1036[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 806 -> 225[label="",style="dashed", color="red", weight=0]; 31.62/12.85 806[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];806 -> 1037[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 806 -> 1038[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 807 -> 226[label="",style="dashed", color="red", weight=0]; 31.62/12.85 807[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];807 -> 1039[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 807 -> 1040[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 808 -> 227[label="",style="dashed", color="red", weight=0]; 31.62/12.85 808[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];808 -> 1041[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 808 -> 1042[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 809 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 809[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];809 -> 1043[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 809 -> 1044[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 810 -> 229[label="",style="dashed", color="red", weight=0]; 31.62/12.85 810[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];810 -> 1045[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 810 -> 1046[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 811 -> 230[label="",style="dashed", color="red", weight=0]; 31.62/12.85 811[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];811 -> 1047[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 811 -> 1048[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 812 -> 231[label="",style="dashed", color="red", weight=0]; 31.62/12.85 812[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];812 -> 1049[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 812 -> 1050[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 813 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.85 813[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];813 -> 1051[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 813 -> 1052[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 814 -> 219[label="",style="dashed", color="red", weight=0]; 31.62/12.85 814[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];814 -> 1053[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 814 -> 1054[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 815 -> 220[label="",style="dashed", color="red", weight=0]; 31.62/12.85 815[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];815 -> 1055[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 815 -> 1056[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 816 -> 221[label="",style="dashed", color="red", weight=0]; 31.62/12.85 816[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];816 -> 1057[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 816 -> 1058[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 817 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.85 817[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];817 -> 1059[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 817 -> 1060[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 818 -> 223[label="",style="dashed", color="red", weight=0]; 31.62/12.85 818[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];818 -> 1061[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 818 -> 1062[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 819 -> 224[label="",style="dashed", color="red", weight=0]; 31.62/12.85 819[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];819 -> 1063[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 819 -> 1064[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 820 -> 225[label="",style="dashed", color="red", weight=0]; 31.62/12.85 820[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];820 -> 1065[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 820 -> 1066[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 821 -> 226[label="",style="dashed", color="red", weight=0]; 31.62/12.85 821[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];821 -> 1067[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 821 -> 1068[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 822 -> 227[label="",style="dashed", color="red", weight=0]; 31.62/12.85 822[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];822 -> 1069[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 822 -> 1070[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 823 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 823[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];823 -> 1071[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 823 -> 1072[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 824 -> 229[label="",style="dashed", color="red", weight=0]; 31.62/12.85 824[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];824 -> 1073[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 824 -> 1074[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 825 -> 230[label="",style="dashed", color="red", weight=0]; 31.62/12.85 825[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];825 -> 1075[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 825 -> 1076[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 826 -> 231[label="",style="dashed", color="red", weight=0]; 31.62/12.85 826[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];826 -> 1077[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 826 -> 1078[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 827 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.85 827[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];827 -> 1079[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 827 -> 1080[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 828 -> 221[label="",style="dashed", color="red", weight=0]; 31.62/12.85 828[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];828 -> 1081[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 828 -> 1082[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 829 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.85 829[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];829 -> 1083[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 829 -> 1084[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 830 -> 221[label="",style="dashed", color="red", weight=0]; 31.62/12.85 830[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];830 -> 1085[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 830 -> 1086[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2397[label="xwv4300 <= xwv4400",fontsize=16,color="black",shape="triangle"];2397 -> 2434[label="",style="solid", color="black", weight=3]; 31.62/12.85 2398[label="xwv4300 <= xwv4400",fontsize=16,color="burlywood",shape="triangle"];4939[label="xwv4300/Left xwv43000",fontsize=10,color="white",style="solid",shape="box"];2398 -> 4939[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4939 -> 2435[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4940[label="xwv4300/Right xwv43000",fontsize=10,color="white",style="solid",shape="box"];2398 -> 4940[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4940 -> 2436[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2399[label="xwv4300 <= xwv4400",fontsize=16,color="black",shape="triangle"];2399 -> 2437[label="",style="solid", color="black", weight=3]; 31.62/12.85 2400[label="xwv4300 <= xwv4400",fontsize=16,color="burlywood",shape="triangle"];4941[label="xwv4300/LT",fontsize=10,color="white",style="solid",shape="box"];2400 -> 4941[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4941 -> 2438[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4942[label="xwv4300/EQ",fontsize=10,color="white",style="solid",shape="box"];2400 -> 4942[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4942 -> 2439[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4943[label="xwv4300/GT",fontsize=10,color="white",style="solid",shape="box"];2400 -> 4943[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4943 -> 2440[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2401[label="xwv4300 <= xwv4400",fontsize=16,color="black",shape="triangle"];2401 -> 2441[label="",style="solid", color="black", weight=3]; 31.62/12.85 2402[label="xwv4300 <= xwv4400",fontsize=16,color="burlywood",shape="triangle"];4944[label="xwv4300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2402 -> 4944[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4944 -> 2442[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4945[label="xwv4300/Just xwv43000",fontsize=10,color="white",style="solid",shape="box"];2402 -> 4945[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4945 -> 2443[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2403[label="xwv4300 <= xwv4400",fontsize=16,color="black",shape="triangle"];2403 -> 2444[label="",style="solid", color="black", weight=3]; 31.62/12.85 2404[label="xwv4300 <= xwv4400",fontsize=16,color="burlywood",shape="triangle"];4946[label="xwv4300/(xwv43000,xwv43001)",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4946[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4946 -> 2445[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2405[label="xwv4300 <= xwv4400",fontsize=16,color="burlywood",shape="triangle"];4947[label="xwv4300/(xwv43000,xwv43001,xwv43002)",fontsize=10,color="white",style="solid",shape="box"];2405 -> 4947[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4947 -> 2446[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2406[label="xwv4300 <= xwv4400",fontsize=16,color="black",shape="triangle"];2406 -> 2447[label="",style="solid", color="black", weight=3]; 31.62/12.85 2407[label="xwv4300 <= xwv4400",fontsize=16,color="black",shape="triangle"];2407 -> 2448[label="",style="solid", color="black", weight=3]; 31.62/12.85 2408[label="xwv4300 <= xwv4400",fontsize=16,color="black",shape="triangle"];2408 -> 2449[label="",style="solid", color="black", weight=3]; 31.62/12.85 2409[label="xwv4300 <= xwv4400",fontsize=16,color="black",shape="triangle"];2409 -> 2450[label="",style="solid", color="black", weight=3]; 31.62/12.85 2410[label="xwv4300 <= xwv4400",fontsize=16,color="burlywood",shape="triangle"];4948[label="xwv4300/False",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4948[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4948 -> 2451[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4949[label="xwv4300/True",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4949[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4949 -> 2452[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2411[label="compare1 (Left xwv160) (Left xwv161) False",fontsize=16,color="black",shape="box"];2411 -> 2453[label="",style="solid", color="black", weight=3]; 31.62/12.85 2412[label="compare1 (Left xwv160) (Left xwv161) True",fontsize=16,color="black",shape="box"];2412 -> 2454[label="",style="solid", color="black", weight=3]; 31.62/12.85 2413[label="compare0 (Right xwv4300) (Left xwv4400) True",fontsize=16,color="black",shape="box"];2413 -> 2455[label="",style="solid", color="black", weight=3]; 31.62/12.85 2414 -> 2397[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2414[label="xwv4300 <= xwv4400",fontsize=16,color="magenta"];2414 -> 2456[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2414 -> 2457[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2415 -> 2398[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2415[label="xwv4300 <= xwv4400",fontsize=16,color="magenta"];2415 -> 2458[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2415 -> 2459[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2416 -> 2399[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2416[label="xwv4300 <= xwv4400",fontsize=16,color="magenta"];2416 -> 2460[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2416 -> 2461[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2417 -> 2400[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2417[label="xwv4300 <= xwv4400",fontsize=16,color="magenta"];2417 -> 2462[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2417 -> 2463[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2418 -> 2401[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2418[label="xwv4300 <= xwv4400",fontsize=16,color="magenta"];2418 -> 2464[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2418 -> 2465[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2419 -> 2402[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2419[label="xwv4300 <= xwv4400",fontsize=16,color="magenta"];2419 -> 2466[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2419 -> 2467[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2420 -> 2403[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2420[label="xwv4300 <= xwv4400",fontsize=16,color="magenta"];2420 -> 2468[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2420 -> 2469[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2421 -> 2404[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2421[label="xwv4300 <= xwv4400",fontsize=16,color="magenta"];2421 -> 2470[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2421 -> 2471[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2422 -> 2405[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2422[label="xwv4300 <= xwv4400",fontsize=16,color="magenta"];2422 -> 2472[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2422 -> 2473[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2423 -> 2406[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2423[label="xwv4300 <= xwv4400",fontsize=16,color="magenta"];2423 -> 2474[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2423 -> 2475[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2424 -> 2407[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2424[label="xwv4300 <= xwv4400",fontsize=16,color="magenta"];2424 -> 2476[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2424 -> 2477[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2425 -> 2408[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2425[label="xwv4300 <= xwv4400",fontsize=16,color="magenta"];2425 -> 2478[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2425 -> 2479[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2426 -> 2409[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2426[label="xwv4300 <= xwv4400",fontsize=16,color="magenta"];2426 -> 2480[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2426 -> 2481[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2427 -> 2410[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2427[label="xwv4300 <= xwv4400",fontsize=16,color="magenta"];2427 -> 2482[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2427 -> 2483[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2428[label="compare1 (Right xwv167) (Right xwv168) False",fontsize=16,color="black",shape="box"];2428 -> 2484[label="",style="solid", color="black", weight=3]; 31.62/12.85 2429[label="compare1 (Right xwv167) (Right xwv168) True",fontsize=16,color="black",shape="box"];2429 -> 2485[label="",style="solid", color="black", weight=3]; 31.62/12.85 2257[label="Left xwv13",fontsize=16,color="green",shape="box"];2258[label="Left xwv18",fontsize=16,color="green",shape="box"];1121[label="FiniteMap.glueBal FiniteMap.EmptyFM xwv17",fontsize=16,color="black",shape="box"];1121 -> 1262[label="",style="solid", color="black", weight=3]; 31.62/12.85 1122[label="FiniteMap.glueBal (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv17",fontsize=16,color="burlywood",shape="box"];4950[label="xwv17/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1122 -> 4950[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4950 -> 1263[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4951[label="xwv17/FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174",fontsize=10,color="white",style="solid",shape="box"];1122 -> 4951[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4951 -> 1264[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 3799[label="FiniteMap.mkBalBranch6Size_l xwv170 xwv171 xwv315 xwv174",fontsize=16,color="black",shape="triangle"];3799 -> 3801[label="",style="solid", color="black", weight=3]; 31.62/12.85 3798[label="primPlusInt xwv319 (FiniteMap.mkBalBranch6Size_r xwv170 xwv171 xwv315 xwv174)",fontsize=16,color="burlywood",shape="triangle"];4952[label="xwv319/Pos xwv3190",fontsize=10,color="white",style="solid",shape="box"];3798 -> 4952[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4952 -> 3802[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4953[label="xwv319/Neg xwv3190",fontsize=10,color="white",style="solid",shape="box"];3798 -> 4953[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4953 -> 3803[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1695[label="LT",fontsize=16,color="green",shape="box"];1696 -> 1310[label="",style="dashed", color="red", weight=0]; 31.62/12.85 1696[label="compare xwv430 xwv440",fontsize=16,color="magenta"];1696 -> 1917[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1696 -> 1918[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3796 -> 1832[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3796[label="FiniteMap.mkBalBranch6Size_r xwv170 xwv171 xwv315 xwv174 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv170 xwv171 xwv315 xwv174",fontsize=16,color="magenta"];3796 -> 3804[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3796 -> 3805[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3795[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv170 xwv171 xwv315 xwv174 xwv170 xwv171 xwv315 xwv174 xwv317",fontsize=16,color="burlywood",shape="triangle"];4954[label="xwv317/False",fontsize=10,color="white",style="solid",shape="box"];3795 -> 4954[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4954 -> 3806[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4955[label="xwv317/True",fontsize=10,color="white",style="solid",shape="box"];3795 -> 4955[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4955 -> 3807[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4491[label="Zero",fontsize=16,color="green",shape="box"];4492[label="xwv315",fontsize=16,color="green",shape="box"];4493[label="xwv171",fontsize=16,color="green",shape="box"];4494[label="xwv170",fontsize=16,color="green",shape="box"];4495[label="xwv174",fontsize=16,color="green",shape="box"];4490[label="FiniteMap.mkBranch (Pos (Succ xwv432)) xwv433 xwv434 xwv435 xwv436",fontsize=16,color="black",shape="triangle"];4490 -> 4546[label="",style="solid", color="black", weight=3]; 31.62/12.85 2259[label="Right xwv300",fontsize=16,color="green",shape="box"];2260[label="Left xwv400",fontsize=16,color="green",shape="box"];1143[label="xwv33",fontsize=16,color="green",shape="box"];1144[label="xwv34",fontsize=16,color="green",shape="box"];2261[label="Left xwv300",fontsize=16,color="green",shape="box"];2262[label="Right xwv400",fontsize=16,color="green",shape="box"];1159[label="xwv33",fontsize=16,color="green",shape="box"];1160[label="xwv34",fontsize=16,color="green",shape="box"];2263[label="Right xwv28",fontsize=16,color="green",shape="box"];2264[label="Right xwv33",fontsize=16,color="green",shape="box"];1164[label="xwv31",fontsize=16,color="green",shape="box"];1165[label="xwv32",fontsize=16,color="green",shape="box"];914 -> 558[label="",style="dashed", color="red", weight=0]; 31.62/12.85 914[label="primEqNat xwv40000 xwv30000",fontsize=16,color="magenta"];914 -> 1166[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 914 -> 1167[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 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"];920 -> 558[label="",style="dashed", color="red", weight=0]; 31.62/12.85 920[label="primEqNat xwv40000 xwv30000",fontsize=16,color="magenta"];920 -> 1168[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 920 -> 1169[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 921[label="False",fontsize=16,color="green",shape="box"];922[label="False",fontsize=16,color="green",shape="box"];923[label="True",fontsize=16,color="green",shape="box"];924[label="False",fontsize=16,color="green",shape="box"];925[label="True",fontsize=16,color="green",shape="box"];926 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.85 926[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];926 -> 1170[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 926 -> 1171[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 927 -> 219[label="",style="dashed", color="red", weight=0]; 31.62/12.85 927[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];927 -> 1172[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 927 -> 1173[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 928 -> 220[label="",style="dashed", color="red", weight=0]; 31.62/12.85 928[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];928 -> 1174[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 928 -> 1175[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 929 -> 221[label="",style="dashed", color="red", weight=0]; 31.62/12.85 929[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];929 -> 1176[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 929 -> 1177[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 930 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.85 930[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];930 -> 1178[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 930 -> 1179[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 931 -> 223[label="",style="dashed", color="red", weight=0]; 31.62/12.85 931[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];931 -> 1180[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 931 -> 1181[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 932 -> 224[label="",style="dashed", color="red", weight=0]; 31.62/12.85 932[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];932 -> 1182[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 932 -> 1183[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 933 -> 225[label="",style="dashed", color="red", weight=0]; 31.62/12.85 933[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];933 -> 1184[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 933 -> 1185[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 934 -> 226[label="",style="dashed", color="red", weight=0]; 31.62/12.85 934[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];934 -> 1186[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 934 -> 1187[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 935 -> 227[label="",style="dashed", color="red", weight=0]; 31.62/12.85 935[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];935 -> 1188[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 935 -> 1189[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 936 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 936[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];936 -> 1190[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 936 -> 1191[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 937 -> 229[label="",style="dashed", color="red", weight=0]; 31.62/12.85 937[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];937 -> 1192[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 937 -> 1193[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 938 -> 230[label="",style="dashed", color="red", weight=0]; 31.62/12.85 938[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];938 -> 1194[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 938 -> 1195[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 939 -> 231[label="",style="dashed", color="red", weight=0]; 31.62/12.85 939[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];939 -> 1196[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 939 -> 1197[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 940 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.85 940[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];940 -> 1198[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 940 -> 1199[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 941 -> 219[label="",style="dashed", color="red", weight=0]; 31.62/12.85 941[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];941 -> 1200[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 941 -> 1201[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 942 -> 220[label="",style="dashed", color="red", weight=0]; 31.62/12.85 942[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];942 -> 1202[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 942 -> 1203[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 943 -> 221[label="",style="dashed", color="red", weight=0]; 31.62/12.85 943[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];943 -> 1204[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 943 -> 1205[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 944 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.85 944[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];944 -> 1206[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 944 -> 1207[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 945 -> 223[label="",style="dashed", color="red", weight=0]; 31.62/12.85 945[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];945 -> 1208[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 945 -> 1209[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 946 -> 224[label="",style="dashed", color="red", weight=0]; 31.62/12.85 946[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];946 -> 1210[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 946 -> 1211[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 947 -> 225[label="",style="dashed", color="red", weight=0]; 31.62/12.85 947[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];947 -> 1212[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 947 -> 1213[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 948 -> 226[label="",style="dashed", color="red", weight=0]; 31.62/12.85 948[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];948 -> 1214[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 948 -> 1215[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 949 -> 227[label="",style="dashed", color="red", weight=0]; 31.62/12.85 949[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];949 -> 1216[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 949 -> 1217[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 950 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 950[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];950 -> 1218[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 950 -> 1219[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 951 -> 229[label="",style="dashed", color="red", weight=0]; 31.62/12.85 951[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];951 -> 1220[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 951 -> 1221[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 952 -> 230[label="",style="dashed", color="red", weight=0]; 31.62/12.85 952[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];952 -> 1222[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 952 -> 1223[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 953 -> 231[label="",style="dashed", color="red", weight=0]; 31.62/12.85 953[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];953 -> 1224[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 953 -> 1225[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 954[label="xwv3000",fontsize=16,color="green",shape="box"];955[label="xwv4000",fontsize=16,color="green",shape="box"];956[label="xwv3000",fontsize=16,color="green",shape="box"];957[label="xwv4000",fontsize=16,color="green",shape="box"];958[label="xwv3000",fontsize=16,color="green",shape="box"];959[label="xwv4000",fontsize=16,color="green",shape="box"];960[label="xwv3000",fontsize=16,color="green",shape="box"];961[label="xwv4000",fontsize=16,color="green",shape="box"];962[label="xwv3000",fontsize=16,color="green",shape="box"];963[label="xwv4000",fontsize=16,color="green",shape="box"];964[label="xwv3000",fontsize=16,color="green",shape="box"];965[label="xwv4000",fontsize=16,color="green",shape="box"];966[label="xwv3000",fontsize=16,color="green",shape="box"];967[label="xwv4000",fontsize=16,color="green",shape="box"];968[label="xwv3000",fontsize=16,color="green",shape="box"];969[label="xwv4000",fontsize=16,color="green",shape="box"];970[label="xwv3000",fontsize=16,color="green",shape="box"];971[label="xwv4000",fontsize=16,color="green",shape="box"];972[label="xwv3000",fontsize=16,color="green",shape="box"];973[label="xwv4000",fontsize=16,color="green",shape="box"];974[label="xwv3000",fontsize=16,color="green",shape="box"];975[label="xwv4000",fontsize=16,color="green",shape="box"];976[label="xwv3000",fontsize=16,color="green",shape="box"];977[label="xwv4000",fontsize=16,color="green",shape="box"];978[label="xwv3000",fontsize=16,color="green",shape="box"];979[label="xwv4000",fontsize=16,color="green",shape="box"];980[label="xwv3000",fontsize=16,color="green",shape="box"];981[label="xwv4000",fontsize=16,color="green",shape="box"];982[label="False",fontsize=16,color="green",shape="box"];983[label="xwv95",fontsize=16,color="green",shape="box"];984[label="xwv3000",fontsize=16,color="green",shape="box"];985[label="xwv4000",fontsize=16,color="green",shape="box"];986[label="xwv3000",fontsize=16,color="green",shape="box"];987[label="xwv4000",fontsize=16,color="green",shape="box"];988[label="xwv3000",fontsize=16,color="green",shape="box"];989[label="xwv4000",fontsize=16,color="green",shape="box"];990[label="xwv3000",fontsize=16,color="green",shape="box"];991[label="xwv4000",fontsize=16,color="green",shape="box"];992[label="xwv3000",fontsize=16,color="green",shape="box"];993[label="xwv4000",fontsize=16,color="green",shape="box"];994[label="xwv3000",fontsize=16,color="green",shape="box"];995[label="xwv4000",fontsize=16,color="green",shape="box"];996[label="xwv3000",fontsize=16,color="green",shape="box"];997[label="xwv4000",fontsize=16,color="green",shape="box"];998[label="xwv3000",fontsize=16,color="green",shape="box"];999[label="xwv4000",fontsize=16,color="green",shape="box"];1000[label="xwv3000",fontsize=16,color="green",shape="box"];1001[label="xwv4000",fontsize=16,color="green",shape="box"];1002[label="xwv3000",fontsize=16,color="green",shape="box"];1003[label="xwv4000",fontsize=16,color="green",shape="box"];1004[label="xwv3000",fontsize=16,color="green",shape="box"];1005[label="xwv4000",fontsize=16,color="green",shape="box"];1006[label="xwv3000",fontsize=16,color="green",shape="box"];1007[label="xwv4000",fontsize=16,color="green",shape="box"];1008[label="xwv3000",fontsize=16,color="green",shape="box"];1009[label="xwv4000",fontsize=16,color="green",shape="box"];1010[label="xwv3000",fontsize=16,color="green",shape="box"];1011[label="xwv4000",fontsize=16,color="green",shape="box"];1012[label="primMulInt xwv4001 xwv3000",fontsize=16,color="burlywood",shape="triangle"];4956[label="xwv4001/Pos xwv40010",fontsize=10,color="white",style="solid",shape="box"];1012 -> 4956[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4956 -> 1226[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4957[label="xwv4001/Neg xwv40010",fontsize=10,color="white",style="solid",shape="box"];1012 -> 4957[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4957 -> 1227[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1013[label="xwv4000",fontsize=16,color="green",shape="box"];1014[label="xwv3001",fontsize=16,color="green",shape="box"];1015[label="xwv4001",fontsize=16,color="green",shape="box"];1016[label="xwv3000",fontsize=16,color="green",shape="box"];1017[label="xwv4000",fontsize=16,color="green",shape="box"];1018[label="xwv3001",fontsize=16,color="green",shape="box"];1019[label="primEqNat (Succ xwv40000) (Succ xwv30000)",fontsize=16,color="black",shape="box"];1019 -> 1228[label="",style="solid", color="black", weight=3]; 31.62/12.85 1020[label="primEqNat (Succ xwv40000) Zero",fontsize=16,color="black",shape="box"];1020 -> 1229[label="",style="solid", color="black", weight=3]; 31.62/12.85 1021[label="primEqNat Zero (Succ xwv30000)",fontsize=16,color="black",shape="box"];1021 -> 1230[label="",style="solid", color="black", weight=3]; 31.62/12.85 1022[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1022 -> 1231[label="",style="solid", color="black", weight=3]; 31.62/12.85 1023[label="xwv3001",fontsize=16,color="green",shape="box"];1024[label="xwv4001",fontsize=16,color="green",shape="box"];1025[label="xwv3001",fontsize=16,color="green",shape="box"];1026[label="xwv4001",fontsize=16,color="green",shape="box"];1027[label="xwv3001",fontsize=16,color="green",shape="box"];1028[label="xwv4001",fontsize=16,color="green",shape="box"];1029[label="xwv3001",fontsize=16,color="green",shape="box"];1030[label="xwv4001",fontsize=16,color="green",shape="box"];1031[label="xwv3001",fontsize=16,color="green",shape="box"];1032[label="xwv4001",fontsize=16,color="green",shape="box"];1033[label="xwv3001",fontsize=16,color="green",shape="box"];1034[label="xwv4001",fontsize=16,color="green",shape="box"];1035[label="xwv3001",fontsize=16,color="green",shape="box"];1036[label="xwv4001",fontsize=16,color="green",shape="box"];1037[label="xwv3001",fontsize=16,color="green",shape="box"];1038[label="xwv4001",fontsize=16,color="green",shape="box"];1039[label="xwv3001",fontsize=16,color="green",shape="box"];1040[label="xwv4001",fontsize=16,color="green",shape="box"];1041[label="xwv3001",fontsize=16,color="green",shape="box"];1042[label="xwv4001",fontsize=16,color="green",shape="box"];1043[label="xwv3001",fontsize=16,color="green",shape="box"];1044[label="xwv4001",fontsize=16,color="green",shape="box"];1045[label="xwv3001",fontsize=16,color="green",shape="box"];1046[label="xwv4001",fontsize=16,color="green",shape="box"];1047[label="xwv3001",fontsize=16,color="green",shape="box"];1048[label="xwv4001",fontsize=16,color="green",shape="box"];1049[label="xwv3001",fontsize=16,color="green",shape="box"];1050[label="xwv4001",fontsize=16,color="green",shape="box"];1051[label="xwv3000",fontsize=16,color="green",shape="box"];1052[label="xwv4000",fontsize=16,color="green",shape="box"];1053[label="xwv3000",fontsize=16,color="green",shape="box"];1054[label="xwv4000",fontsize=16,color="green",shape="box"];1055[label="xwv3000",fontsize=16,color="green",shape="box"];1056[label="xwv4000",fontsize=16,color="green",shape="box"];1057[label="xwv3000",fontsize=16,color="green",shape="box"];1058[label="xwv4000",fontsize=16,color="green",shape="box"];1059[label="xwv3000",fontsize=16,color="green",shape="box"];1060[label="xwv4000",fontsize=16,color="green",shape="box"];1061[label="xwv3000",fontsize=16,color="green",shape="box"];1062[label="xwv4000",fontsize=16,color="green",shape="box"];1063[label="xwv3000",fontsize=16,color="green",shape="box"];1064[label="xwv4000",fontsize=16,color="green",shape="box"];1065[label="xwv3000",fontsize=16,color="green",shape="box"];1066[label="xwv4000",fontsize=16,color="green",shape="box"];1067[label="xwv3000",fontsize=16,color="green",shape="box"];1068[label="xwv4000",fontsize=16,color="green",shape="box"];1069[label="xwv3000",fontsize=16,color="green",shape="box"];1070[label="xwv4000",fontsize=16,color="green",shape="box"];1071[label="xwv3000",fontsize=16,color="green",shape="box"];1072[label="xwv4000",fontsize=16,color="green",shape="box"];1073[label="xwv3000",fontsize=16,color="green",shape="box"];1074[label="xwv4000",fontsize=16,color="green",shape="box"];1075[label="xwv3000",fontsize=16,color="green",shape="box"];1076[label="xwv4000",fontsize=16,color="green",shape="box"];1077[label="xwv3000",fontsize=16,color="green",shape="box"];1078[label="xwv4000",fontsize=16,color="green",shape="box"];1079[label="xwv3001",fontsize=16,color="green",shape="box"];1080[label="xwv4001",fontsize=16,color="green",shape="box"];1081[label="xwv3001",fontsize=16,color="green",shape="box"];1082[label="xwv4001",fontsize=16,color="green",shape="box"];1083[label="xwv3000",fontsize=16,color="green",shape="box"];1084[label="xwv4000",fontsize=16,color="green",shape="box"];1085[label="xwv3000",fontsize=16,color="green",shape="box"];1086[label="xwv4000",fontsize=16,color="green",shape="box"];2434 -> 2520[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2434[label="compare xwv4300 xwv4400 /= GT",fontsize=16,color="magenta"];2434 -> 2521[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2435[label="Left xwv43000 <= xwv4400",fontsize=16,color="burlywood",shape="box"];4958[label="xwv4400/Left xwv44000",fontsize=10,color="white",style="solid",shape="box"];2435 -> 4958[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4958 -> 2529[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4959[label="xwv4400/Right xwv44000",fontsize=10,color="white",style="solid",shape="box"];2435 -> 4959[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4959 -> 2530[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2436[label="Right xwv43000 <= xwv4400",fontsize=16,color="burlywood",shape="box"];4960[label="xwv4400/Left xwv44000",fontsize=10,color="white",style="solid",shape="box"];2436 -> 4960[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4960 -> 2531[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4961[label="xwv4400/Right xwv44000",fontsize=10,color="white",style="solid",shape="box"];2436 -> 4961[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4961 -> 2532[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2437 -> 2520[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2437[label="compare xwv4300 xwv4400 /= GT",fontsize=16,color="magenta"];2437 -> 2522[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2438[label="LT <= xwv4400",fontsize=16,color="burlywood",shape="box"];4962[label="xwv4400/LT",fontsize=10,color="white",style="solid",shape="box"];2438 -> 4962[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4962 -> 2533[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4963[label="xwv4400/EQ",fontsize=10,color="white",style="solid",shape="box"];2438 -> 4963[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4963 -> 2534[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4964[label="xwv4400/GT",fontsize=10,color="white",style="solid",shape="box"];2438 -> 4964[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4964 -> 2535[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2439[label="EQ <= xwv4400",fontsize=16,color="burlywood",shape="box"];4965[label="xwv4400/LT",fontsize=10,color="white",style="solid",shape="box"];2439 -> 4965[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4965 -> 2536[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4966[label="xwv4400/EQ",fontsize=10,color="white",style="solid",shape="box"];2439 -> 4966[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4966 -> 2537[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4967[label="xwv4400/GT",fontsize=10,color="white",style="solid",shape="box"];2439 -> 4967[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4967 -> 2538[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2440[label="GT <= xwv4400",fontsize=16,color="burlywood",shape="box"];4968[label="xwv4400/LT",fontsize=10,color="white",style="solid",shape="box"];2440 -> 4968[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4968 -> 2539[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4969[label="xwv4400/EQ",fontsize=10,color="white",style="solid",shape="box"];2440 -> 4969[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4969 -> 2540[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4970[label="xwv4400/GT",fontsize=10,color="white",style="solid",shape="box"];2440 -> 4970[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4970 -> 2541[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2441 -> 2520[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2441[label="compare xwv4300 xwv4400 /= GT",fontsize=16,color="magenta"];2441 -> 2523[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2442[label="Nothing <= xwv4400",fontsize=16,color="burlywood",shape="box"];4971[label="xwv4400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4971[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4971 -> 2542[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4972[label="xwv4400/Just xwv44000",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4972[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4972 -> 2543[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2443[label="Just xwv43000 <= xwv4400",fontsize=16,color="burlywood",shape="box"];4973[label="xwv4400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4973[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4973 -> 2544[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4974[label="xwv4400/Just xwv44000",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4974[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4974 -> 2545[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2444 -> 2520[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2444[label="compare xwv4300 xwv4400 /= GT",fontsize=16,color="magenta"];2444 -> 2524[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2445[label="(xwv43000,xwv43001) <= xwv4400",fontsize=16,color="burlywood",shape="box"];4975[label="xwv4400/(xwv44000,xwv44001)",fontsize=10,color="white",style="solid",shape="box"];2445 -> 4975[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4975 -> 2546[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2446[label="(xwv43000,xwv43001,xwv43002) <= xwv4400",fontsize=16,color="burlywood",shape="box"];4976[label="xwv4400/(xwv44000,xwv44001,xwv44002)",fontsize=10,color="white",style="solid",shape="box"];2446 -> 4976[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4976 -> 2547[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2447 -> 2520[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2447[label="compare xwv4300 xwv4400 /= GT",fontsize=16,color="magenta"];2447 -> 2525[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2448 -> 2520[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2448[label="compare xwv4300 xwv4400 /= GT",fontsize=16,color="magenta"];2448 -> 2526[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2449 -> 2520[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2449[label="compare xwv4300 xwv4400 /= GT",fontsize=16,color="magenta"];2449 -> 2527[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2450 -> 2520[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2450[label="compare xwv4300 xwv4400 /= GT",fontsize=16,color="magenta"];2450 -> 2528[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2451[label="False <= xwv4400",fontsize=16,color="burlywood",shape="box"];4977[label="xwv4400/False",fontsize=10,color="white",style="solid",shape="box"];2451 -> 4977[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4977 -> 2548[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4978[label="xwv4400/True",fontsize=10,color="white",style="solid",shape="box"];2451 -> 4978[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4978 -> 2549[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2452[label="True <= xwv4400",fontsize=16,color="burlywood",shape="box"];4979[label="xwv4400/False",fontsize=10,color="white",style="solid",shape="box"];2452 -> 4979[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4979 -> 2550[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4980[label="xwv4400/True",fontsize=10,color="white",style="solid",shape="box"];2452 -> 4980[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4980 -> 2551[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2453[label="compare0 (Left xwv160) (Left xwv161) otherwise",fontsize=16,color="black",shape="box"];2453 -> 2552[label="",style="solid", color="black", weight=3]; 31.62/12.85 2454[label="LT",fontsize=16,color="green",shape="box"];2455[label="GT",fontsize=16,color="green",shape="box"];2456[label="xwv4300",fontsize=16,color="green",shape="box"];2457[label="xwv4400",fontsize=16,color="green",shape="box"];2458[label="xwv4300",fontsize=16,color="green",shape="box"];2459[label="xwv4400",fontsize=16,color="green",shape="box"];2460[label="xwv4300",fontsize=16,color="green",shape="box"];2461[label="xwv4400",fontsize=16,color="green",shape="box"];2462[label="xwv4300",fontsize=16,color="green",shape="box"];2463[label="xwv4400",fontsize=16,color="green",shape="box"];2464[label="xwv4300",fontsize=16,color="green",shape="box"];2465[label="xwv4400",fontsize=16,color="green",shape="box"];2466[label="xwv4300",fontsize=16,color="green",shape="box"];2467[label="xwv4400",fontsize=16,color="green",shape="box"];2468[label="xwv4300",fontsize=16,color="green",shape="box"];2469[label="xwv4400",fontsize=16,color="green",shape="box"];2470[label="xwv4300",fontsize=16,color="green",shape="box"];2471[label="xwv4400",fontsize=16,color="green",shape="box"];2472[label="xwv4300",fontsize=16,color="green",shape="box"];2473[label="xwv4400",fontsize=16,color="green",shape="box"];2474[label="xwv4300",fontsize=16,color="green",shape="box"];2475[label="xwv4400",fontsize=16,color="green",shape="box"];2476[label="xwv4300",fontsize=16,color="green",shape="box"];2477[label="xwv4400",fontsize=16,color="green",shape="box"];2478[label="xwv4300",fontsize=16,color="green",shape="box"];2479[label="xwv4400",fontsize=16,color="green",shape="box"];2480[label="xwv4300",fontsize=16,color="green",shape="box"];2481[label="xwv4400",fontsize=16,color="green",shape="box"];2482[label="xwv4300",fontsize=16,color="green",shape="box"];2483[label="xwv4400",fontsize=16,color="green",shape="box"];2484[label="compare0 (Right xwv167) (Right xwv168) otherwise",fontsize=16,color="black",shape="box"];2484 -> 2553[label="",style="solid", color="black", weight=3]; 31.62/12.85 2485[label="LT",fontsize=16,color="green",shape="box"];1262[label="FiniteMap.glueBal4 FiniteMap.EmptyFM xwv17",fontsize=16,color="black",shape="box"];1262 -> 1348[label="",style="solid", color="black", weight=3]; 31.62/12.85 1263[label="FiniteMap.glueBal (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1263 -> 1349[label="",style="solid", color="black", weight=3]; 31.62/12.85 1264[label="FiniteMap.glueBal (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174)",fontsize=16,color="black",shape="box"];1264 -> 1350[label="",style="solid", color="black", weight=3]; 31.62/12.85 3801 -> 1532[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3801[label="FiniteMap.sizeFM xwv315",fontsize=16,color="magenta"];3801 -> 3821[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3802[label="primPlusInt (Pos xwv3190) (FiniteMap.mkBalBranch6Size_r xwv170 xwv171 xwv315 xwv174)",fontsize=16,color="black",shape="box"];3802 -> 3822[label="",style="solid", color="black", weight=3]; 31.62/12.85 3803[label="primPlusInt (Neg xwv3190) (FiniteMap.mkBalBranch6Size_r xwv170 xwv171 xwv315 xwv174)",fontsize=16,color="black",shape="box"];3803 -> 3823[label="",style="solid", color="black", weight=3]; 31.62/12.85 1917[label="xwv440",fontsize=16,color="green",shape="box"];1918[label="xwv430",fontsize=16,color="green",shape="box"];1310[label="compare xwv43 xwv44",fontsize=16,color="black",shape="triangle"];1310 -> 1443[label="",style="solid", color="black", weight=3]; 31.62/12.85 3804 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3804[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv170 xwv171 xwv315 xwv174",fontsize=16,color="magenta"];3804 -> 3824[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3804 -> 3825[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3805[label="FiniteMap.mkBalBranch6Size_r xwv170 xwv171 xwv315 xwv174",fontsize=16,color="black",shape="triangle"];3805 -> 3826[label="",style="solid", color="black", weight=3]; 31.62/12.85 1832[label="xwv124 > xwv123",fontsize=16,color="black",shape="triangle"];1832 -> 1846[label="",style="solid", color="black", weight=3]; 31.62/12.85 3806[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv170 xwv171 xwv315 xwv174 xwv170 xwv171 xwv315 xwv174 False",fontsize=16,color="black",shape="box"];3806 -> 3827[label="",style="solid", color="black", weight=3]; 31.62/12.85 3807[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv170 xwv171 xwv315 xwv174 xwv170 xwv171 xwv315 xwv174 True",fontsize=16,color="black",shape="box"];3807 -> 3828[label="",style="solid", color="black", weight=3]; 31.62/12.85 4546[label="FiniteMap.mkBranchResult xwv433 xwv434 xwv436 xwv435",fontsize=16,color="black",shape="box"];4546 -> 4585[label="",style="solid", color="black", weight=3]; 31.62/12.85 1166[label="xwv30000",fontsize=16,color="green",shape="box"];1167[label="xwv40000",fontsize=16,color="green",shape="box"];1168[label="xwv30000",fontsize=16,color="green",shape="box"];1169[label="xwv40000",fontsize=16,color="green",shape="box"];1170[label="xwv3002",fontsize=16,color="green",shape="box"];1171[label="xwv4002",fontsize=16,color="green",shape="box"];1172[label="xwv3002",fontsize=16,color="green",shape="box"];1173[label="xwv4002",fontsize=16,color="green",shape="box"];1174[label="xwv3002",fontsize=16,color="green",shape="box"];1175[label="xwv4002",fontsize=16,color="green",shape="box"];1176[label="xwv3002",fontsize=16,color="green",shape="box"];1177[label="xwv4002",fontsize=16,color="green",shape="box"];1178[label="xwv3002",fontsize=16,color="green",shape="box"];1179[label="xwv4002",fontsize=16,color="green",shape="box"];1180[label="xwv3002",fontsize=16,color="green",shape="box"];1181[label="xwv4002",fontsize=16,color="green",shape="box"];1182[label="xwv3002",fontsize=16,color="green",shape="box"];1183[label="xwv4002",fontsize=16,color="green",shape="box"];1184[label="xwv3002",fontsize=16,color="green",shape="box"];1185[label="xwv4002",fontsize=16,color="green",shape="box"];1186[label="xwv3002",fontsize=16,color="green",shape="box"];1187[label="xwv4002",fontsize=16,color="green",shape="box"];1188[label="xwv3002",fontsize=16,color="green",shape="box"];1189[label="xwv4002",fontsize=16,color="green",shape="box"];1190[label="xwv3002",fontsize=16,color="green",shape="box"];1191[label="xwv4002",fontsize=16,color="green",shape="box"];1192[label="xwv3002",fontsize=16,color="green",shape="box"];1193[label="xwv4002",fontsize=16,color="green",shape="box"];1194[label="xwv3002",fontsize=16,color="green",shape="box"];1195[label="xwv4002",fontsize=16,color="green",shape="box"];1196[label="xwv3002",fontsize=16,color="green",shape="box"];1197[label="xwv4002",fontsize=16,color="green",shape="box"];1198[label="xwv3001",fontsize=16,color="green",shape="box"];1199[label="xwv4001",fontsize=16,color="green",shape="box"];1200[label="xwv3001",fontsize=16,color="green",shape="box"];1201[label="xwv4001",fontsize=16,color="green",shape="box"];1202[label="xwv3001",fontsize=16,color="green",shape="box"];1203[label="xwv4001",fontsize=16,color="green",shape="box"];1204[label="xwv3001",fontsize=16,color="green",shape="box"];1205[label="xwv4001",fontsize=16,color="green",shape="box"];1206[label="xwv3001",fontsize=16,color="green",shape="box"];1207[label="xwv4001",fontsize=16,color="green",shape="box"];1208[label="xwv3001",fontsize=16,color="green",shape="box"];1209[label="xwv4001",fontsize=16,color="green",shape="box"];1210[label="xwv3001",fontsize=16,color="green",shape="box"];1211[label="xwv4001",fontsize=16,color="green",shape="box"];1212[label="xwv3001",fontsize=16,color="green",shape="box"];1213[label="xwv4001",fontsize=16,color="green",shape="box"];1214[label="xwv3001",fontsize=16,color="green",shape="box"];1215[label="xwv4001",fontsize=16,color="green",shape="box"];1216[label="xwv3001",fontsize=16,color="green",shape="box"];1217[label="xwv4001",fontsize=16,color="green",shape="box"];1218[label="xwv3001",fontsize=16,color="green",shape="box"];1219[label="xwv4001",fontsize=16,color="green",shape="box"];1220[label="xwv3001",fontsize=16,color="green",shape="box"];1221[label="xwv4001",fontsize=16,color="green",shape="box"];1222[label="xwv3001",fontsize=16,color="green",shape="box"];1223[label="xwv4001",fontsize=16,color="green",shape="box"];1224[label="xwv3001",fontsize=16,color="green",shape="box"];1225[label="xwv4001",fontsize=16,color="green",shape="box"];1226[label="primMulInt (Pos xwv40010) xwv3000",fontsize=16,color="burlywood",shape="box"];4981[label="xwv3000/Pos xwv30000",fontsize=10,color="white",style="solid",shape="box"];1226 -> 4981[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4981 -> 1303[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4982[label="xwv3000/Neg xwv30000",fontsize=10,color="white",style="solid",shape="box"];1226 -> 4982[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4982 -> 1304[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1227[label="primMulInt (Neg xwv40010) xwv3000",fontsize=16,color="burlywood",shape="box"];4983[label="xwv3000/Pos xwv30000",fontsize=10,color="white",style="solid",shape="box"];1227 -> 4983[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4983 -> 1305[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4984[label="xwv3000/Neg xwv30000",fontsize=10,color="white",style="solid",shape="box"];1227 -> 4984[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4984 -> 1306[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1228 -> 558[label="",style="dashed", color="red", weight=0]; 31.62/12.85 1228[label="primEqNat xwv40000 xwv30000",fontsize=16,color="magenta"];1228 -> 1307[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1228 -> 1308[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1229[label="False",fontsize=16,color="green",shape="box"];1230[label="False",fontsize=16,color="green",shape="box"];1231[label="True",fontsize=16,color="green",shape="box"];2521 -> 1310[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2521[label="compare xwv4300 xwv4400",fontsize=16,color="magenta"];2521 -> 2554[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2521 -> 2555[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2520[label="xwv171 /= GT",fontsize=16,color="black",shape="triangle"];2520 -> 2556[label="",style="solid", color="black", weight=3]; 31.62/12.85 2529[label="Left xwv43000 <= Left xwv44000",fontsize=16,color="black",shape="box"];2529 -> 2569[label="",style="solid", color="black", weight=3]; 31.62/12.85 2530[label="Left xwv43000 <= Right xwv44000",fontsize=16,color="black",shape="box"];2530 -> 2570[label="",style="solid", color="black", weight=3]; 31.62/12.85 2531[label="Right xwv43000 <= Left xwv44000",fontsize=16,color="black",shape="box"];2531 -> 2571[label="",style="solid", color="black", weight=3]; 31.62/12.85 2532[label="Right xwv43000 <= Right xwv44000",fontsize=16,color="black",shape="box"];2532 -> 2572[label="",style="solid", color="black", weight=3]; 31.62/12.85 2522[label="compare xwv4300 xwv4400",fontsize=16,color="burlywood",shape="triangle"];4985[label="xwv4300/xwv43000 :% xwv43001",fontsize=10,color="white",style="solid",shape="box"];2522 -> 4985[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4985 -> 2557[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2533[label="LT <= LT",fontsize=16,color="black",shape="box"];2533 -> 2573[label="",style="solid", color="black", weight=3]; 31.62/12.85 2534[label="LT <= EQ",fontsize=16,color="black",shape="box"];2534 -> 2574[label="",style="solid", color="black", weight=3]; 31.62/12.85 2535[label="LT <= GT",fontsize=16,color="black",shape="box"];2535 -> 2575[label="",style="solid", color="black", weight=3]; 31.62/12.85 2536[label="EQ <= LT",fontsize=16,color="black",shape="box"];2536 -> 2576[label="",style="solid", color="black", weight=3]; 31.62/12.85 2537[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2537 -> 2577[label="",style="solid", color="black", weight=3]; 31.62/12.85 2538[label="EQ <= GT",fontsize=16,color="black",shape="box"];2538 -> 2578[label="",style="solid", color="black", weight=3]; 31.62/12.85 2539[label="GT <= LT",fontsize=16,color="black",shape="box"];2539 -> 2579[label="",style="solid", color="black", weight=3]; 31.62/12.85 2540[label="GT <= EQ",fontsize=16,color="black",shape="box"];2540 -> 2580[label="",style="solid", color="black", weight=3]; 31.62/12.85 2541[label="GT <= GT",fontsize=16,color="black",shape="box"];2541 -> 2581[label="",style="solid", color="black", weight=3]; 31.62/12.85 2523[label="compare xwv4300 xwv4400",fontsize=16,color="burlywood",shape="triangle"];4986[label="xwv4300/Integer xwv43000",fontsize=10,color="white",style="solid",shape="box"];2523 -> 4986[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4986 -> 2558[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2542[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2542 -> 2582[label="",style="solid", color="black", weight=3]; 31.62/12.85 2543[label="Nothing <= Just xwv44000",fontsize=16,color="black",shape="box"];2543 -> 2583[label="",style="solid", color="black", weight=3]; 31.62/12.85 2544[label="Just xwv43000 <= Nothing",fontsize=16,color="black",shape="box"];2544 -> 2584[label="",style="solid", color="black", weight=3]; 31.62/12.85 2545[label="Just xwv43000 <= Just xwv44000",fontsize=16,color="black",shape="box"];2545 -> 2585[label="",style="solid", color="black", weight=3]; 31.62/12.85 2524[label="compare xwv4300 xwv4400",fontsize=16,color="burlywood",shape="triangle"];4987[label="xwv4300/xwv43000 : xwv43001",fontsize=10,color="white",style="solid",shape="box"];2524 -> 4987[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4987 -> 2559[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4988[label="xwv4300/[]",fontsize=10,color="white",style="solid",shape="box"];2524 -> 4988[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4988 -> 2560[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2546[label="(xwv43000,xwv43001) <= (xwv44000,xwv44001)",fontsize=16,color="black",shape="box"];2546 -> 2586[label="",style="solid", color="black", weight=3]; 31.62/12.85 2547[label="(xwv43000,xwv43001,xwv43002) <= (xwv44000,xwv44001,xwv44002)",fontsize=16,color="black",shape="box"];2547 -> 2587[label="",style="solid", color="black", weight=3]; 31.62/12.85 2525[label="compare xwv4300 xwv4400",fontsize=16,color="burlywood",shape="triangle"];4989[label="xwv4300/()",fontsize=10,color="white",style="solid",shape="box"];2525 -> 4989[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4989 -> 2561[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2526[label="compare xwv4300 xwv4400",fontsize=16,color="black",shape="triangle"];2526 -> 2562[label="",style="solid", color="black", weight=3]; 31.62/12.85 2527[label="compare xwv4300 xwv4400",fontsize=16,color="black",shape="triangle"];2527 -> 2563[label="",style="solid", color="black", weight=3]; 31.62/12.85 2528[label="compare xwv4300 xwv4400",fontsize=16,color="black",shape="triangle"];2528 -> 2564[label="",style="solid", color="black", weight=3]; 31.62/12.85 2548[label="False <= False",fontsize=16,color="black",shape="box"];2548 -> 2588[label="",style="solid", color="black", weight=3]; 31.62/12.85 2549[label="False <= True",fontsize=16,color="black",shape="box"];2549 -> 2589[label="",style="solid", color="black", weight=3]; 31.62/12.85 2550[label="True <= False",fontsize=16,color="black",shape="box"];2550 -> 2590[label="",style="solid", color="black", weight=3]; 31.62/12.85 2551[label="True <= True",fontsize=16,color="black",shape="box"];2551 -> 2591[label="",style="solid", color="black", weight=3]; 31.62/12.85 2552[label="compare0 (Left xwv160) (Left xwv161) True",fontsize=16,color="black",shape="box"];2552 -> 2592[label="",style="solid", color="black", weight=3]; 31.62/12.85 2553[label="compare0 (Right xwv167) (Right xwv168) True",fontsize=16,color="black",shape="box"];2553 -> 2593[label="",style="solid", color="black", weight=3]; 31.62/12.85 1348[label="xwv17",fontsize=16,color="green",shape="box"];1349[label="FiniteMap.glueBal3 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1349 -> 1527[label="",style="solid", color="black", weight=3]; 31.62/12.85 1350[label="FiniteMap.glueBal2 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174)",fontsize=16,color="black",shape="box"];1350 -> 1528[label="",style="solid", color="black", weight=3]; 31.62/12.85 3821[label="xwv315",fontsize=16,color="green",shape="box"];1532[label="FiniteMap.sizeFM xwv33",fontsize=16,color="burlywood",shape="triangle"];4990[label="xwv33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1532 -> 4990[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4990 -> 1659[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4991[label="xwv33/FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=10,color="white",style="solid",shape="box"];1532 -> 4991[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4991 -> 1660[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 3822 -> 3838[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3822[label="primPlusInt (Pos xwv3190) (FiniteMap.sizeFM xwv174)",fontsize=16,color="magenta"];3822 -> 3839[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3823 -> 3840[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3823[label="primPlusInt (Neg xwv3190) (FiniteMap.sizeFM xwv174)",fontsize=16,color="magenta"];3823 -> 3841[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1443[label="primCmpInt xwv43 xwv44",fontsize=16,color="burlywood",shape="triangle"];4992[label="xwv43/Pos xwv430",fontsize=10,color="white",style="solid",shape="box"];1443 -> 4992[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4992 -> 1556[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4993[label="xwv43/Neg xwv430",fontsize=10,color="white",style="solid",shape="box"];1443 -> 4993[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4993 -> 1557[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 3824[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];3824 -> 3842[label="",style="solid", color="black", weight=3]; 31.62/12.85 3825 -> 3799[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3825[label="FiniteMap.mkBalBranch6Size_l xwv170 xwv171 xwv315 xwv174",fontsize=16,color="magenta"];3826 -> 1532[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3826[label="FiniteMap.sizeFM xwv174",fontsize=16,color="magenta"];3826 -> 3843[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1846 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 1846[label="compare xwv124 xwv123 == GT",fontsize=16,color="magenta"];1846 -> 1864[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1846 -> 1865[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3827 -> 3844[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3827[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv170 xwv171 xwv315 xwv174 xwv170 xwv171 xwv315 xwv174 (FiniteMap.mkBalBranch6Size_l xwv170 xwv171 xwv315 xwv174 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv170 xwv171 xwv315 xwv174)",fontsize=16,color="magenta"];3827 -> 3845[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3828[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv170 xwv171 xwv315 xwv174 xwv315 xwv174 xwv174",fontsize=16,color="burlywood",shape="box"];4994[label="xwv174/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3828 -> 4994[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4994 -> 3846[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4995[label="xwv174/FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744",fontsize=10,color="white",style="solid",shape="box"];3828 -> 4995[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 4995 -> 3847[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 4585[label="FiniteMap.Branch xwv433 xwv434 (FiniteMap.mkBranchUnbox xwv436 xwv433 xwv435 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv436 xwv433 xwv435 + FiniteMap.mkBranchRight_size xwv436 xwv433 xwv435)) xwv435 xwv436",fontsize=16,color="green",shape="box"];4585 -> 4592[label="",style="dashed", color="green", weight=3]; 31.62/12.85 1303[label="primMulInt (Pos xwv40010) (Pos xwv30000)",fontsize=16,color="black",shape="box"];1303 -> 1439[label="",style="solid", color="black", weight=3]; 31.62/12.85 1304[label="primMulInt (Pos xwv40010) (Neg xwv30000)",fontsize=16,color="black",shape="box"];1304 -> 1440[label="",style="solid", color="black", weight=3]; 31.62/12.85 1305[label="primMulInt (Neg xwv40010) (Pos xwv30000)",fontsize=16,color="black",shape="box"];1305 -> 1441[label="",style="solid", color="black", weight=3]; 31.62/12.85 1306[label="primMulInt (Neg xwv40010) (Neg xwv30000)",fontsize=16,color="black",shape="box"];1306 -> 1442[label="",style="solid", color="black", weight=3]; 31.62/12.85 1307[label="xwv30000",fontsize=16,color="green",shape="box"];1308[label="xwv40000",fontsize=16,color="green",shape="box"];2554[label="xwv4400",fontsize=16,color="green",shape="box"];2555[label="xwv4300",fontsize=16,color="green",shape="box"];2556 -> 2594[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2556[label="not (xwv171 == GT)",fontsize=16,color="magenta"];2556 -> 2595[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2569[label="xwv43000 <= xwv44000",fontsize=16,color="blue",shape="box"];4996[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 4996[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4996 -> 2596[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4997[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 4997[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4997 -> 2597[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4998[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 4998[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4998 -> 2598[label="",style="solid", color="blue", weight=3]; 31.62/12.85 4999[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 4999[label="",style="solid", color="blue", weight=9]; 31.62/12.85 4999 -> 2599[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5000[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 5000[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5000 -> 2600[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5001[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 5001[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5001 -> 2601[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5002[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 5002[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5002 -> 2602[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5003[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 5003[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5003 -> 2603[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5004[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 5004[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5004 -> 2604[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5005[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 5005[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5005 -> 2605[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5006[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 5006[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5006 -> 2606[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5007[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 5007[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5007 -> 2607[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5008[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 5008[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5008 -> 2608[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5009[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 5009[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5009 -> 2609[label="",style="solid", color="blue", weight=3]; 31.62/12.85 2570[label="True",fontsize=16,color="green",shape="box"];2571[label="False",fontsize=16,color="green",shape="box"];2572[label="xwv43000 <= xwv44000",fontsize=16,color="blue",shape="box"];5010[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2572 -> 5010[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5010 -> 2610[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5011[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2572 -> 5011[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5011 -> 2611[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5012[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2572 -> 5012[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5012 -> 2612[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5013[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2572 -> 5013[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5013 -> 2613[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5014[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2572 -> 5014[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5014 -> 2614[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5015[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2572 -> 5015[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5015 -> 2615[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5016[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2572 -> 5016[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5016 -> 2616[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5017[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2572 -> 5017[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5017 -> 2617[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5018[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2572 -> 5018[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5018 -> 2618[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5019[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2572 -> 5019[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5019 -> 2619[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5020[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2572 -> 5020[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5020 -> 2620[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5021[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2572 -> 5021[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5021 -> 2621[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5022[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2572 -> 5022[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5022 -> 2622[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5023[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2572 -> 5023[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5023 -> 2623[label="",style="solid", color="blue", weight=3]; 31.62/12.85 2557[label="compare (xwv43000 :% xwv43001) xwv4400",fontsize=16,color="burlywood",shape="box"];5024[label="xwv4400/xwv44000 :% xwv44001",fontsize=10,color="white",style="solid",shape="box"];2557 -> 5024[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5024 -> 2624[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2573[label="True",fontsize=16,color="green",shape="box"];2574[label="True",fontsize=16,color="green",shape="box"];2575[label="True",fontsize=16,color="green",shape="box"];2576[label="False",fontsize=16,color="green",shape="box"];2577[label="True",fontsize=16,color="green",shape="box"];2578[label="True",fontsize=16,color="green",shape="box"];2579[label="False",fontsize=16,color="green",shape="box"];2580[label="False",fontsize=16,color="green",shape="box"];2581[label="True",fontsize=16,color="green",shape="box"];2558[label="compare (Integer xwv43000) xwv4400",fontsize=16,color="burlywood",shape="box"];5025[label="xwv4400/Integer xwv44000",fontsize=10,color="white",style="solid",shape="box"];2558 -> 5025[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5025 -> 2625[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2582[label="True",fontsize=16,color="green",shape="box"];2583[label="True",fontsize=16,color="green",shape="box"];2584[label="False",fontsize=16,color="green",shape="box"];2585[label="xwv43000 <= xwv44000",fontsize=16,color="blue",shape="box"];5026[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5026[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5026 -> 2626[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5027[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5027[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5027 -> 2627[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5028[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5028[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5028 -> 2628[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5029[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5029[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5029 -> 2629[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5030[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5030[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5030 -> 2630[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5031[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5031[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5031 -> 2631[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5032[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5032[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5032 -> 2632[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5033[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5033[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5033 -> 2633[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5034[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5034[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5034 -> 2634[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5035[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5035[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5035 -> 2635[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5036[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5036[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5036 -> 2636[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5037[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5037[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5037 -> 2637[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5038[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5038[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5038 -> 2638[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5039[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 5039[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5039 -> 2639[label="",style="solid", color="blue", weight=3]; 31.62/12.85 2559[label="compare (xwv43000 : xwv43001) xwv4400",fontsize=16,color="burlywood",shape="box"];5040[label="xwv4400/xwv44000 : xwv44001",fontsize=10,color="white",style="solid",shape="box"];2559 -> 5040[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5040 -> 2640[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5041[label="xwv4400/[]",fontsize=10,color="white",style="solid",shape="box"];2559 -> 5041[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5041 -> 2641[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2560[label="compare [] xwv4400",fontsize=16,color="burlywood",shape="box"];5042[label="xwv4400/xwv44000 : xwv44001",fontsize=10,color="white",style="solid",shape="box"];2560 -> 5042[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5042 -> 2642[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5043[label="xwv4400/[]",fontsize=10,color="white",style="solid",shape="box"];2560 -> 5043[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5043 -> 2643[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2586 -> 2749[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2586[label="xwv43000 < xwv44000 || xwv43000 == xwv44000 && xwv43001 <= xwv44001",fontsize=16,color="magenta"];2586 -> 2750[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2586 -> 2751[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2587 -> 2749[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2587[label="xwv43000 < xwv44000 || xwv43000 == xwv44000 && (xwv43001 < xwv44001 || xwv43001 == xwv44001 && xwv43002 <= xwv44002)",fontsize=16,color="magenta"];2587 -> 2752[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2587 -> 2753[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2561[label="compare () xwv4400",fontsize=16,color="burlywood",shape="box"];5044[label="xwv4400/()",fontsize=10,color="white",style="solid",shape="box"];2561 -> 5044[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5044 -> 2649[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2562[label="primCmpChar xwv4300 xwv4400",fontsize=16,color="burlywood",shape="box"];5045[label="xwv4300/Char xwv43000",fontsize=10,color="white",style="solid",shape="box"];2562 -> 5045[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5045 -> 2650[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2563[label="primCmpDouble xwv4300 xwv4400",fontsize=16,color="burlywood",shape="box"];5046[label="xwv4300/Double xwv43000 xwv43001",fontsize=10,color="white",style="solid",shape="box"];2563 -> 5046[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5046 -> 2651[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2564[label="primCmpFloat xwv4300 xwv4400",fontsize=16,color="burlywood",shape="box"];5047[label="xwv4300/Float xwv43000 xwv43001",fontsize=10,color="white",style="solid",shape="box"];2564 -> 5047[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5047 -> 2652[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2588[label="True",fontsize=16,color="green",shape="box"];2589[label="True",fontsize=16,color="green",shape="box"];2590[label="False",fontsize=16,color="green",shape="box"];2591[label="True",fontsize=16,color="green",shape="box"];2592[label="GT",fontsize=16,color="green",shape="box"];2593[label="GT",fontsize=16,color="green",shape="box"];1527[label="FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164",fontsize=16,color="green",shape="box"];1528 -> 1829[label="",style="dashed", color="red", weight=0]; 31.62/12.85 1528[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.sizeFM (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) > FiniteMap.sizeFM (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164))",fontsize=16,color="magenta"];1528 -> 1830[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1659[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1659 -> 1887[label="",style="solid", color="black", weight=3]; 31.62/12.85 1660[label="FiniteMap.sizeFM (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)",fontsize=16,color="black",shape="box"];1660 -> 1888[label="",style="solid", color="black", weight=3]; 31.62/12.85 3839 -> 1532[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3839[label="FiniteMap.sizeFM xwv174",fontsize=16,color="magenta"];3839 -> 3849[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3838[label="primPlusInt (Pos xwv3190) xwv320",fontsize=16,color="burlywood",shape="triangle"];5048[label="xwv320/Pos xwv3200",fontsize=10,color="white",style="solid",shape="box"];3838 -> 5048[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5048 -> 3850[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5049[label="xwv320/Neg xwv3200",fontsize=10,color="white",style="solid",shape="box"];3838 -> 5049[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5049 -> 3851[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 3841 -> 1532[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3841[label="FiniteMap.sizeFM xwv174",fontsize=16,color="magenta"];3841 -> 3852[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3840[label="primPlusInt (Neg xwv3190) xwv321",fontsize=16,color="burlywood",shape="triangle"];5050[label="xwv321/Pos xwv3210",fontsize=10,color="white",style="solid",shape="box"];3840 -> 5050[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5050 -> 3853[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5051[label="xwv321/Neg xwv3210",fontsize=10,color="white",style="solid",shape="box"];3840 -> 5051[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5051 -> 3854[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1556[label="primCmpInt (Pos xwv430) xwv44",fontsize=16,color="burlywood",shape="box"];5052[label="xwv430/Succ xwv4300",fontsize=10,color="white",style="solid",shape="box"];1556 -> 5052[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5052 -> 1685[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5053[label="xwv430/Zero",fontsize=10,color="white",style="solid",shape="box"];1556 -> 5053[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5053 -> 1686[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1557[label="primCmpInt (Neg xwv430) xwv44",fontsize=16,color="burlywood",shape="box"];5054[label="xwv430/Succ xwv4300",fontsize=10,color="white",style="solid",shape="box"];1557 -> 5054[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5054 -> 1687[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5055[label="xwv430/Zero",fontsize=10,color="white",style="solid",shape="box"];1557 -> 5055[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5055 -> 1688[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 3842[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3843[label="xwv174",fontsize=16,color="green",shape="box"];1864[label="GT",fontsize=16,color="green",shape="box"];1865 -> 1310[label="",style="dashed", color="red", weight=0]; 31.62/12.85 1865[label="compare xwv124 xwv123",fontsize=16,color="magenta"];1865 -> 1881[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1865 -> 1882[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3845 -> 1832[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3845[label="FiniteMap.mkBalBranch6Size_l xwv170 xwv171 xwv315 xwv174 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv170 xwv171 xwv315 xwv174",fontsize=16,color="magenta"];3845 -> 3855[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3845 -> 3856[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3844[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv170 xwv171 xwv315 xwv174 xwv170 xwv171 xwv315 xwv174 xwv322",fontsize=16,color="burlywood",shape="triangle"];5056[label="xwv322/False",fontsize=10,color="white",style="solid",shape="box"];3844 -> 5056[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5056 -> 3857[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5057[label="xwv322/True",fontsize=10,color="white",style="solid",shape="box"];3844 -> 5057[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5057 -> 3858[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 3846[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv170 xwv171 xwv315 FiniteMap.EmptyFM xwv315 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3846 -> 3871[label="",style="solid", color="black", weight=3]; 31.62/12.85 3847[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv170 xwv171 xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744)",fontsize=16,color="black",shape="box"];3847 -> 3872[label="",style="solid", color="black", weight=3]; 31.62/12.85 4592[label="FiniteMap.mkBranchUnbox xwv436 xwv433 xwv435 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv436 xwv433 xwv435 + FiniteMap.mkBranchRight_size xwv436 xwv433 xwv435)",fontsize=16,color="black",shape="box"];4592 -> 4593[label="",style="solid", color="black", weight=3]; 31.62/12.85 1439[label="Pos (primMulNat xwv40010 xwv30000)",fontsize=16,color="green",shape="box"];1439 -> 1552[label="",style="dashed", color="green", weight=3]; 31.62/12.85 1440[label="Neg (primMulNat xwv40010 xwv30000)",fontsize=16,color="green",shape="box"];1440 -> 1553[label="",style="dashed", color="green", weight=3]; 31.62/12.85 1441[label="Neg (primMulNat xwv40010 xwv30000)",fontsize=16,color="green",shape="box"];1441 -> 1554[label="",style="dashed", color="green", weight=3]; 31.62/12.85 1442[label="Pos (primMulNat xwv40010 xwv30000)",fontsize=16,color="green",shape="box"];1442 -> 1555[label="",style="dashed", color="green", weight=3]; 31.62/12.85 2595 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2595[label="xwv171 == GT",fontsize=16,color="magenta"];2595 -> 2653[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2595 -> 2654[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2594[label="not xwv175",fontsize=16,color="burlywood",shape="triangle"];5058[label="xwv175/False",fontsize=10,color="white",style="solid",shape="box"];2594 -> 5058[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5058 -> 2655[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5059[label="xwv175/True",fontsize=10,color="white",style="solid",shape="box"];2594 -> 5059[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5059 -> 2656[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2596 -> 2397[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2596[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2596 -> 2657[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2596 -> 2658[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2597 -> 2398[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2597[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2597 -> 2659[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2597 -> 2660[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2598 -> 2399[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2598[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2598 -> 2661[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2598 -> 2662[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2599 -> 2400[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2599[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2599 -> 2663[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2599 -> 2664[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2600 -> 2401[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2600[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2600 -> 2665[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2600 -> 2666[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2601 -> 2402[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2601[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2601 -> 2667[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2601 -> 2668[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2602 -> 2403[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2602[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2602 -> 2669[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2602 -> 2670[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2603 -> 2404[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2603[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2603 -> 2671[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2603 -> 2672[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2604 -> 2405[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2604[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2604 -> 2673[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2604 -> 2674[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2605 -> 2406[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2605[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2605 -> 2675[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2605 -> 2676[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2606 -> 2407[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2606[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2606 -> 2677[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2606 -> 2678[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2607 -> 2408[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2607[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2607 -> 2679[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2607 -> 2680[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2608 -> 2409[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2608[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2608 -> 2681[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2608 -> 2682[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2609 -> 2410[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2609[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2609 -> 2683[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2609 -> 2684[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2610 -> 2397[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2610[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2610 -> 2685[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2610 -> 2686[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2611 -> 2398[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2611[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2611 -> 2687[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2611 -> 2688[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2612 -> 2399[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2612[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2612 -> 2689[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2612 -> 2690[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2613 -> 2400[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2613[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2613 -> 2691[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2613 -> 2692[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2614 -> 2401[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2614[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2614 -> 2693[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2614 -> 2694[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2615 -> 2402[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2615[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2615 -> 2695[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2615 -> 2696[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2616 -> 2403[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2616[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2616 -> 2697[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2616 -> 2698[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2617 -> 2404[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2617[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2617 -> 2699[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2617 -> 2700[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2618 -> 2405[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2618[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2618 -> 2701[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2618 -> 2702[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2619 -> 2406[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2619[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2619 -> 2703[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2619 -> 2704[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2620 -> 2407[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2620[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2620 -> 2705[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2620 -> 2706[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2621 -> 2408[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2621[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2621 -> 2707[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2621 -> 2708[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2622 -> 2409[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2622[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2622 -> 2709[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2622 -> 2710[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2623 -> 2410[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2623[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2623 -> 2711[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2623 -> 2712[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2624[label="compare (xwv43000 :% xwv43001) (xwv44000 :% xwv44001)",fontsize=16,color="black",shape="box"];2624 -> 2713[label="",style="solid", color="black", weight=3]; 31.62/12.85 2625[label="compare (Integer xwv43000) (Integer xwv44000)",fontsize=16,color="black",shape="box"];2625 -> 2714[label="",style="solid", color="black", weight=3]; 31.62/12.85 2626 -> 2397[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2626[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2626 -> 2715[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2626 -> 2716[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2627 -> 2398[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2627[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2627 -> 2717[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2627 -> 2718[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2628 -> 2399[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2628[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2628 -> 2719[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2628 -> 2720[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2629 -> 2400[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2629[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2629 -> 2721[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2629 -> 2722[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2630 -> 2401[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2630[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2630 -> 2723[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2630 -> 2724[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2631 -> 2402[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2631[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2631 -> 2725[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2631 -> 2726[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2632 -> 2403[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2632[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2632 -> 2727[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2632 -> 2728[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2633 -> 2404[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2633[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2633 -> 2729[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2633 -> 2730[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2634 -> 2405[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2634[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2634 -> 2731[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2634 -> 2732[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2635 -> 2406[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2635[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2635 -> 2733[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2635 -> 2734[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2636 -> 2407[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2636[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2636 -> 2735[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2636 -> 2736[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2637 -> 2408[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2637[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2637 -> 2737[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2637 -> 2738[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2638 -> 2409[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2638[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2638 -> 2739[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2638 -> 2740[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2639 -> 2410[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2639[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];2639 -> 2741[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2639 -> 2742[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2640[label="compare (xwv43000 : xwv43001) (xwv44000 : xwv44001)",fontsize=16,color="black",shape="box"];2640 -> 2743[label="",style="solid", color="black", weight=3]; 31.62/12.85 2641[label="compare (xwv43000 : xwv43001) []",fontsize=16,color="black",shape="box"];2641 -> 2744[label="",style="solid", color="black", weight=3]; 31.62/12.85 2642[label="compare [] (xwv44000 : xwv44001)",fontsize=16,color="black",shape="box"];2642 -> 2745[label="",style="solid", color="black", weight=3]; 31.62/12.85 2643[label="compare [] []",fontsize=16,color="black",shape="box"];2643 -> 2746[label="",style="solid", color="black", weight=3]; 31.62/12.85 2750[label="xwv43000 < xwv44000",fontsize=16,color="blue",shape="box"];5060[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2750 -> 5060[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5060 -> 2756[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5061[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2750 -> 5061[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5061 -> 2757[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5062[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2750 -> 5062[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5062 -> 2758[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5063[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2750 -> 5063[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5063 -> 2759[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5064[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2750 -> 5064[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5064 -> 2760[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5065[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2750 -> 5065[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5065 -> 2761[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5066[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2750 -> 5066[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5066 -> 2762[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5067[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2750 -> 5067[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5067 -> 2763[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5068[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2750 -> 5068[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5068 -> 2764[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5069[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2750 -> 5069[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5069 -> 2765[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5070[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2750 -> 5070[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5070 -> 2766[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5071[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2750 -> 5071[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5071 -> 2767[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5072[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2750 -> 5072[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5072 -> 2768[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5073[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2750 -> 5073[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5073 -> 2769[label="",style="solid", color="blue", weight=3]; 31.62/12.85 2751 -> 662[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2751[label="xwv43000 == xwv44000 && xwv43001 <= xwv44001",fontsize=16,color="magenta"];2751 -> 2770[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2751 -> 2771[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2749[label="xwv180 || xwv181",fontsize=16,color="burlywood",shape="triangle"];5074[label="xwv180/False",fontsize=10,color="white",style="solid",shape="box"];2749 -> 5074[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5074 -> 2772[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5075[label="xwv180/True",fontsize=10,color="white",style="solid",shape="box"];2749 -> 5075[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5075 -> 2773[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2752[label="xwv43000 < xwv44000",fontsize=16,color="blue",shape="box"];5076[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2752 -> 5076[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5076 -> 2774[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5077[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2752 -> 5077[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5077 -> 2775[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5078[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2752 -> 5078[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5078 -> 2776[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5079[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2752 -> 5079[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5079 -> 2777[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5080[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2752 -> 5080[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5080 -> 2778[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5081[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2752 -> 5081[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5081 -> 2779[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5082[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2752 -> 5082[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5082 -> 2780[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5083[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2752 -> 5083[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5083 -> 2781[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5084[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2752 -> 5084[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5084 -> 2782[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5085[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2752 -> 5085[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5085 -> 2783[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5086[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2752 -> 5086[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5086 -> 2784[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5087[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2752 -> 5087[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5087 -> 2785[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5088[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2752 -> 5088[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5088 -> 2786[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5089[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2752 -> 5089[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5089 -> 2787[label="",style="solid", color="blue", weight=3]; 31.62/12.85 2753 -> 662[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2753[label="xwv43000 == xwv44000 && (xwv43001 < xwv44001 || xwv43001 == xwv44001 && xwv43002 <= xwv44002)",fontsize=16,color="magenta"];2753 -> 2788[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2753 -> 2789[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2649[label="compare () ()",fontsize=16,color="black",shape="box"];2649 -> 2790[label="",style="solid", color="black", weight=3]; 31.62/12.85 2650[label="primCmpChar (Char xwv43000) xwv4400",fontsize=16,color="burlywood",shape="box"];5090[label="xwv4400/Char xwv44000",fontsize=10,color="white",style="solid",shape="box"];2650 -> 5090[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5090 -> 2791[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2651[label="primCmpDouble (Double xwv43000 xwv43001) xwv4400",fontsize=16,color="burlywood",shape="box"];5091[label="xwv43001/Pos xwv430010",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5091[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5091 -> 2792[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5092[label="xwv43001/Neg xwv430010",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5092[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5092 -> 2793[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2652[label="primCmpFloat (Float xwv43000 xwv43001) xwv4400",fontsize=16,color="burlywood",shape="box"];5093[label="xwv43001/Pos xwv430010",fontsize=10,color="white",style="solid",shape="box"];2652 -> 5093[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5093 -> 2794[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5094[label="xwv43001/Neg xwv430010",fontsize=10,color="white",style="solid",shape="box"];2652 -> 5094[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5094 -> 2795[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1830 -> 1832[label="",style="dashed", color="red", weight=0]; 31.62/12.85 1830[label="FiniteMap.sizeFM (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) > FiniteMap.sizeFM (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)",fontsize=16,color="magenta"];1830 -> 1841[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1830 -> 1842[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1829[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) xwv119",fontsize=16,color="burlywood",shape="triangle"];5095[label="xwv119/False",fontsize=10,color="white",style="solid",shape="box"];1829 -> 5095[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5095 -> 1850[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5096[label="xwv119/True",fontsize=10,color="white",style="solid",shape="box"];1829 -> 5096[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5096 -> 1851[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1887[label="Pos Zero",fontsize=16,color="green",shape="box"];1888[label="xwv332",fontsize=16,color="green",shape="box"];3849[label="xwv174",fontsize=16,color="green",shape="box"];3850[label="primPlusInt (Pos xwv3190) (Pos xwv3200)",fontsize=16,color="black",shape="box"];3850 -> 3874[label="",style="solid", color="black", weight=3]; 31.62/12.85 3851[label="primPlusInt (Pos xwv3190) (Neg xwv3200)",fontsize=16,color="black",shape="box"];3851 -> 3875[label="",style="solid", color="black", weight=3]; 31.62/12.85 3852[label="xwv174",fontsize=16,color="green",shape="box"];3853[label="primPlusInt (Neg xwv3190) (Pos xwv3210)",fontsize=16,color="black",shape="box"];3853 -> 3876[label="",style="solid", color="black", weight=3]; 31.62/12.85 3854[label="primPlusInt (Neg xwv3190) (Neg xwv3210)",fontsize=16,color="black",shape="box"];3854 -> 3877[label="",style="solid", color="black", weight=3]; 31.62/12.85 1685[label="primCmpInt (Pos (Succ xwv4300)) xwv44",fontsize=16,color="burlywood",shape="box"];5097[label="xwv44/Pos xwv440",fontsize=10,color="white",style="solid",shape="box"];1685 -> 5097[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5097 -> 1899[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5098[label="xwv44/Neg xwv440",fontsize=10,color="white",style="solid",shape="box"];1685 -> 5098[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5098 -> 1900[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1686[label="primCmpInt (Pos Zero) xwv44",fontsize=16,color="burlywood",shape="box"];5099[label="xwv44/Pos xwv440",fontsize=10,color="white",style="solid",shape="box"];1686 -> 5099[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5099 -> 1901[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5100[label="xwv44/Neg xwv440",fontsize=10,color="white",style="solid",shape="box"];1686 -> 5100[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5100 -> 1902[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1687[label="primCmpInt (Neg (Succ xwv4300)) xwv44",fontsize=16,color="burlywood",shape="box"];5101[label="xwv44/Pos xwv440",fontsize=10,color="white",style="solid",shape="box"];1687 -> 5101[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5101 -> 1903[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5102[label="xwv44/Neg xwv440",fontsize=10,color="white",style="solid",shape="box"];1687 -> 5102[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5102 -> 1904[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1688[label="primCmpInt (Neg Zero) xwv44",fontsize=16,color="burlywood",shape="box"];5103[label="xwv44/Pos xwv440",fontsize=10,color="white",style="solid",shape="box"];1688 -> 5103[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5103 -> 1905[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5104[label="xwv44/Neg xwv440",fontsize=10,color="white",style="solid",shape="box"];1688 -> 5104[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5104 -> 1906[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1881[label="xwv123",fontsize=16,color="green",shape="box"];1882[label="xwv124",fontsize=16,color="green",shape="box"];3855 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3855[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv170 xwv171 xwv315 xwv174",fontsize=16,color="magenta"];3855 -> 3878[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3855 -> 3879[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3856 -> 3799[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3856[label="FiniteMap.mkBalBranch6Size_l xwv170 xwv171 xwv315 xwv174",fontsize=16,color="magenta"];3857[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv170 xwv171 xwv315 xwv174 xwv170 xwv171 xwv315 xwv174 False",fontsize=16,color="black",shape="box"];3857 -> 3880[label="",style="solid", color="black", weight=3]; 31.62/12.85 3858[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv170 xwv171 xwv315 xwv174 xwv170 xwv171 xwv315 xwv174 True",fontsize=16,color="black",shape="box"];3858 -> 3881[label="",style="solid", color="black", weight=3]; 31.62/12.85 3871[label="error []",fontsize=16,color="red",shape="box"];3872[label="FiniteMap.mkBalBranch6MkBalBranch02 xwv170 xwv171 xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744)",fontsize=16,color="black",shape="box"];3872 -> 3890[label="",style="solid", color="black", weight=3]; 31.62/12.85 4593[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv436 xwv433 xwv435 + FiniteMap.mkBranchRight_size xwv436 xwv433 xwv435",fontsize=16,color="black",shape="box"];4593 -> 4594[label="",style="solid", color="black", weight=3]; 31.62/12.85 1552[label="primMulNat xwv40010 xwv30000",fontsize=16,color="burlywood",shape="triangle"];5105[label="xwv40010/Succ xwv400100",fontsize=10,color="white",style="solid",shape="box"];1552 -> 5105[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5105 -> 1679[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5106[label="xwv40010/Zero",fontsize=10,color="white",style="solid",shape="box"];1552 -> 5106[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5106 -> 1680[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1553 -> 1552[label="",style="dashed", color="red", weight=0]; 31.62/12.85 1553[label="primMulNat xwv40010 xwv30000",fontsize=16,color="magenta"];1553 -> 1681[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1554 -> 1552[label="",style="dashed", color="red", weight=0]; 31.62/12.85 1554[label="primMulNat xwv40010 xwv30000",fontsize=16,color="magenta"];1554 -> 1682[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1555 -> 1552[label="",style="dashed", color="red", weight=0]; 31.62/12.85 1555[label="primMulNat xwv40010 xwv30000",fontsize=16,color="magenta"];1555 -> 1683[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1555 -> 1684[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2653[label="GT",fontsize=16,color="green",shape="box"];2654[label="xwv171",fontsize=16,color="green",shape="box"];2655[label="not False",fontsize=16,color="black",shape="box"];2655 -> 2796[label="",style="solid", color="black", weight=3]; 31.62/12.85 2656[label="not True",fontsize=16,color="black",shape="box"];2656 -> 2797[label="",style="solid", color="black", weight=3]; 31.62/12.85 2657[label="xwv43000",fontsize=16,color="green",shape="box"];2658[label="xwv44000",fontsize=16,color="green",shape="box"];2659[label="xwv43000",fontsize=16,color="green",shape="box"];2660[label="xwv44000",fontsize=16,color="green",shape="box"];2661[label="xwv43000",fontsize=16,color="green",shape="box"];2662[label="xwv44000",fontsize=16,color="green",shape="box"];2663[label="xwv43000",fontsize=16,color="green",shape="box"];2664[label="xwv44000",fontsize=16,color="green",shape="box"];2665[label="xwv43000",fontsize=16,color="green",shape="box"];2666[label="xwv44000",fontsize=16,color="green",shape="box"];2667[label="xwv43000",fontsize=16,color="green",shape="box"];2668[label="xwv44000",fontsize=16,color="green",shape="box"];2669[label="xwv43000",fontsize=16,color="green",shape="box"];2670[label="xwv44000",fontsize=16,color="green",shape="box"];2671[label="xwv43000",fontsize=16,color="green",shape="box"];2672[label="xwv44000",fontsize=16,color="green",shape="box"];2673[label="xwv43000",fontsize=16,color="green",shape="box"];2674[label="xwv44000",fontsize=16,color="green",shape="box"];2675[label="xwv43000",fontsize=16,color="green",shape="box"];2676[label="xwv44000",fontsize=16,color="green",shape="box"];2677[label="xwv43000",fontsize=16,color="green",shape="box"];2678[label="xwv44000",fontsize=16,color="green",shape="box"];2679[label="xwv43000",fontsize=16,color="green",shape="box"];2680[label="xwv44000",fontsize=16,color="green",shape="box"];2681[label="xwv43000",fontsize=16,color="green",shape="box"];2682[label="xwv44000",fontsize=16,color="green",shape="box"];2683[label="xwv43000",fontsize=16,color="green",shape="box"];2684[label="xwv44000",fontsize=16,color="green",shape="box"];2685[label="xwv43000",fontsize=16,color="green",shape="box"];2686[label="xwv44000",fontsize=16,color="green",shape="box"];2687[label="xwv43000",fontsize=16,color="green",shape="box"];2688[label="xwv44000",fontsize=16,color="green",shape="box"];2689[label="xwv43000",fontsize=16,color="green",shape="box"];2690[label="xwv44000",fontsize=16,color="green",shape="box"];2691[label="xwv43000",fontsize=16,color="green",shape="box"];2692[label="xwv44000",fontsize=16,color="green",shape="box"];2693[label="xwv43000",fontsize=16,color="green",shape="box"];2694[label="xwv44000",fontsize=16,color="green",shape="box"];2695[label="xwv43000",fontsize=16,color="green",shape="box"];2696[label="xwv44000",fontsize=16,color="green",shape="box"];2697[label="xwv43000",fontsize=16,color="green",shape="box"];2698[label="xwv44000",fontsize=16,color="green",shape="box"];2699[label="xwv43000",fontsize=16,color="green",shape="box"];2700[label="xwv44000",fontsize=16,color="green",shape="box"];2701[label="xwv43000",fontsize=16,color="green",shape="box"];2702[label="xwv44000",fontsize=16,color="green",shape="box"];2703[label="xwv43000",fontsize=16,color="green",shape="box"];2704[label="xwv44000",fontsize=16,color="green",shape="box"];2705[label="xwv43000",fontsize=16,color="green",shape="box"];2706[label="xwv44000",fontsize=16,color="green",shape="box"];2707[label="xwv43000",fontsize=16,color="green",shape="box"];2708[label="xwv44000",fontsize=16,color="green",shape="box"];2709[label="xwv43000",fontsize=16,color="green",shape="box"];2710[label="xwv44000",fontsize=16,color="green",shape="box"];2711[label="xwv43000",fontsize=16,color="green",shape="box"];2712[label="xwv44000",fontsize=16,color="green",shape="box"];2713[label="compare (xwv43000 * xwv44001) (xwv44000 * xwv43001)",fontsize=16,color="blue",shape="box"];5107[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2713 -> 5107[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5107 -> 2798[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5108[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2713 -> 5108[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5108 -> 2799[label="",style="solid", color="blue", weight=3]; 31.62/12.85 2714 -> 1443[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2714[label="primCmpInt xwv43000 xwv44000",fontsize=16,color="magenta"];2714 -> 2800[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2714 -> 2801[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2715[label="xwv43000",fontsize=16,color="green",shape="box"];2716[label="xwv44000",fontsize=16,color="green",shape="box"];2717[label="xwv43000",fontsize=16,color="green",shape="box"];2718[label="xwv44000",fontsize=16,color="green",shape="box"];2719[label="xwv43000",fontsize=16,color="green",shape="box"];2720[label="xwv44000",fontsize=16,color="green",shape="box"];2721[label="xwv43000",fontsize=16,color="green",shape="box"];2722[label="xwv44000",fontsize=16,color="green",shape="box"];2723[label="xwv43000",fontsize=16,color="green",shape="box"];2724[label="xwv44000",fontsize=16,color="green",shape="box"];2725[label="xwv43000",fontsize=16,color="green",shape="box"];2726[label="xwv44000",fontsize=16,color="green",shape="box"];2727[label="xwv43000",fontsize=16,color="green",shape="box"];2728[label="xwv44000",fontsize=16,color="green",shape="box"];2729[label="xwv43000",fontsize=16,color="green",shape="box"];2730[label="xwv44000",fontsize=16,color="green",shape="box"];2731[label="xwv43000",fontsize=16,color="green",shape="box"];2732[label="xwv44000",fontsize=16,color="green",shape="box"];2733[label="xwv43000",fontsize=16,color="green",shape="box"];2734[label="xwv44000",fontsize=16,color="green",shape="box"];2735[label="xwv43000",fontsize=16,color="green",shape="box"];2736[label="xwv44000",fontsize=16,color="green",shape="box"];2737[label="xwv43000",fontsize=16,color="green",shape="box"];2738[label="xwv44000",fontsize=16,color="green",shape="box"];2739[label="xwv43000",fontsize=16,color="green",shape="box"];2740[label="xwv44000",fontsize=16,color="green",shape="box"];2741[label="xwv43000",fontsize=16,color="green",shape="box"];2742[label="xwv44000",fontsize=16,color="green",shape="box"];2743 -> 2802[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2743[label="primCompAux xwv43000 xwv44000 (compare xwv43001 xwv44001)",fontsize=16,color="magenta"];2743 -> 2803[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2744[label="GT",fontsize=16,color="green",shape="box"];2745[label="LT",fontsize=16,color="green",shape="box"];2746[label="EQ",fontsize=16,color="green",shape="box"];2756 -> 1489[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2756[label="xwv43000 < xwv44000",fontsize=16,color="magenta"];2756 -> 2804[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2756 -> 2805[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2757[label="xwv43000 < xwv44000",fontsize=16,color="black",shape="triangle"];2757 -> 2806[label="",style="solid", color="black", weight=3]; 31.62/12.85 2758[label="xwv43000 < xwv44000",fontsize=16,color="black",shape="triangle"];2758 -> 2807[label="",style="solid", color="black", weight=3]; 31.62/12.85 2759[label="xwv43000 < xwv44000",fontsize=16,color="black",shape="triangle"];2759 -> 2808[label="",style="solid", color="black", weight=3]; 31.62/12.85 2760[label="xwv43000 < xwv44000",fontsize=16,color="black",shape="triangle"];2760 -> 2809[label="",style="solid", color="black", weight=3]; 31.62/12.85 2761[label="xwv43000 < xwv44000",fontsize=16,color="black",shape="triangle"];2761 -> 2810[label="",style="solid", color="black", weight=3]; 31.62/12.85 2762[label="xwv43000 < xwv44000",fontsize=16,color="black",shape="triangle"];2762 -> 2811[label="",style="solid", color="black", weight=3]; 31.62/12.85 2763[label="xwv43000 < xwv44000",fontsize=16,color="black",shape="triangle"];2763 -> 2812[label="",style="solid", color="black", weight=3]; 31.62/12.85 2764[label="xwv43000 < xwv44000",fontsize=16,color="black",shape="triangle"];2764 -> 2813[label="",style="solid", color="black", weight=3]; 31.62/12.85 2765[label="xwv43000 < xwv44000",fontsize=16,color="black",shape="triangle"];2765 -> 2814[label="",style="solid", color="black", weight=3]; 31.62/12.85 2766[label="xwv43000 < xwv44000",fontsize=16,color="black",shape="triangle"];2766 -> 2815[label="",style="solid", color="black", weight=3]; 31.62/12.85 2767[label="xwv43000 < xwv44000",fontsize=16,color="black",shape="triangle"];2767 -> 2816[label="",style="solid", color="black", weight=3]; 31.62/12.85 2768[label="xwv43000 < xwv44000",fontsize=16,color="black",shape="triangle"];2768 -> 2817[label="",style="solid", color="black", weight=3]; 31.62/12.85 2769[label="xwv43000 < xwv44000",fontsize=16,color="black",shape="triangle"];2769 -> 2818[label="",style="solid", color="black", weight=3]; 31.62/12.85 2770[label="xwv43001 <= xwv44001",fontsize=16,color="blue",shape="box"];5109[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 5109[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5109 -> 2819[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5110[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 5110[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5110 -> 2820[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5111[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 5111[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5111 -> 2821[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5112[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 5112[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5112 -> 2822[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5113[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 5113[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5113 -> 2823[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5114[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 5114[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5114 -> 2824[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5115[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 5115[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5115 -> 2825[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5116[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 5116[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5116 -> 2826[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5117[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 5117[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5117 -> 2827[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5118[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 5118[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5118 -> 2828[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5119[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 5119[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5119 -> 2829[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5120[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 5120[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5120 -> 2830[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5121[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 5121[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5121 -> 2831[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5122[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 5122[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5122 -> 2832[label="",style="solid", color="blue", weight=3]; 31.62/12.85 2771[label="xwv43000 == xwv44000",fontsize=16,color="blue",shape="box"];5123[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 5123[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5123 -> 2833[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5124[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 5124[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5124 -> 2834[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5125[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 5125[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5125 -> 2835[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5126[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 5126[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5126 -> 2836[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5127[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 5127[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5127 -> 2837[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5128[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 5128[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5128 -> 2838[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5129[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 5129[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5129 -> 2839[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5130[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 5130[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5130 -> 2840[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5131[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 5131[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5131 -> 2841[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5132[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 5132[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5132 -> 2842[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5133[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 5133[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5133 -> 2843[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5134[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 5134[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5134 -> 2844[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5135[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 5135[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5135 -> 2845[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5136[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2771 -> 5136[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5136 -> 2846[label="",style="solid", color="blue", weight=3]; 31.62/12.85 2772[label="False || xwv181",fontsize=16,color="black",shape="box"];2772 -> 2847[label="",style="solid", color="black", weight=3]; 31.62/12.85 2773[label="True || xwv181",fontsize=16,color="black",shape="box"];2773 -> 2848[label="",style="solid", color="black", weight=3]; 31.62/12.85 2774 -> 1489[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2774[label="xwv43000 < xwv44000",fontsize=16,color="magenta"];2774 -> 2849[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2774 -> 2850[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2775 -> 2757[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2775[label="xwv43000 < xwv44000",fontsize=16,color="magenta"];2775 -> 2851[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2775 -> 2852[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2776 -> 2758[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2776[label="xwv43000 < xwv44000",fontsize=16,color="magenta"];2776 -> 2853[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2776 -> 2854[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2777 -> 2759[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2777[label="xwv43000 < xwv44000",fontsize=16,color="magenta"];2777 -> 2855[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2777 -> 2856[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2778 -> 2760[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2778[label="xwv43000 < xwv44000",fontsize=16,color="magenta"];2778 -> 2857[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2778 -> 2858[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2779 -> 2761[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2779[label="xwv43000 < xwv44000",fontsize=16,color="magenta"];2779 -> 2859[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2779 -> 2860[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2780 -> 2762[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2780[label="xwv43000 < xwv44000",fontsize=16,color="magenta"];2780 -> 2861[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2780 -> 2862[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2781 -> 2763[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2781[label="xwv43000 < xwv44000",fontsize=16,color="magenta"];2781 -> 2863[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2781 -> 2864[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2782 -> 2764[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2782[label="xwv43000 < xwv44000",fontsize=16,color="magenta"];2782 -> 2865[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2782 -> 2866[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2783 -> 2765[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2783[label="xwv43000 < xwv44000",fontsize=16,color="magenta"];2783 -> 2867[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2783 -> 2868[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2784 -> 2766[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2784[label="xwv43000 < xwv44000",fontsize=16,color="magenta"];2784 -> 2869[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2784 -> 2870[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2785 -> 2767[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2785[label="xwv43000 < xwv44000",fontsize=16,color="magenta"];2785 -> 2871[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2785 -> 2872[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2786 -> 2768[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2786[label="xwv43000 < xwv44000",fontsize=16,color="magenta"];2786 -> 2873[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2786 -> 2874[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2787 -> 2769[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2787[label="xwv43000 < xwv44000",fontsize=16,color="magenta"];2787 -> 2875[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2787 -> 2876[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2788 -> 2749[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2788[label="xwv43001 < xwv44001 || xwv43001 == xwv44001 && xwv43002 <= xwv44002",fontsize=16,color="magenta"];2788 -> 2877[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2788 -> 2878[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2789[label="xwv43000 == xwv44000",fontsize=16,color="blue",shape="box"];5137[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5137[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5137 -> 2879[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5138[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5138[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5138 -> 2880[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5139[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5139[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5139 -> 2881[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5140[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5140[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5140 -> 2882[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5141[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5141[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5141 -> 2883[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5142[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5142[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5142 -> 2884[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5143[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5143[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5143 -> 2885[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5144[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5144[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5144 -> 2886[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5145[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5145[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5145 -> 2887[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5146[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5146[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5146 -> 2888[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5147[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5147[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5147 -> 2889[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5148[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5148[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5148 -> 2890[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5149[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5149[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5149 -> 2891[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5150[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5150[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5150 -> 2892[label="",style="solid", color="blue", weight=3]; 31.62/12.85 2790[label="EQ",fontsize=16,color="green",shape="box"];2791[label="primCmpChar (Char xwv43000) (Char xwv44000)",fontsize=16,color="black",shape="box"];2791 -> 2893[label="",style="solid", color="black", weight=3]; 31.62/12.85 2792[label="primCmpDouble (Double xwv43000 (Pos xwv430010)) xwv4400",fontsize=16,color="burlywood",shape="box"];5151[label="xwv4400/Double xwv44000 xwv44001",fontsize=10,color="white",style="solid",shape="box"];2792 -> 5151[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5151 -> 2894[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2793[label="primCmpDouble (Double xwv43000 (Neg xwv430010)) xwv4400",fontsize=16,color="burlywood",shape="box"];5152[label="xwv4400/Double xwv44000 xwv44001",fontsize=10,color="white",style="solid",shape="box"];2793 -> 5152[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5152 -> 2895[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2794[label="primCmpFloat (Float xwv43000 (Pos xwv430010)) xwv4400",fontsize=16,color="burlywood",shape="box"];5153[label="xwv4400/Float xwv44000 xwv44001",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5153[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5153 -> 2896[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 2795[label="primCmpFloat (Float xwv43000 (Neg xwv430010)) xwv4400",fontsize=16,color="burlywood",shape="box"];5154[label="xwv4400/Float xwv44000 xwv44001",fontsize=10,color="white",style="solid",shape="box"];2795 -> 5154[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5154 -> 2897[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1841 -> 1532[label="",style="dashed", color="red", weight=0]; 31.62/12.85 1841[label="FiniteMap.sizeFM (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)",fontsize=16,color="magenta"];1841 -> 2000[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1842 -> 1532[label="",style="dashed", color="red", weight=0]; 31.62/12.85 1842[label="FiniteMap.sizeFM (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174)",fontsize=16,color="magenta"];1842 -> 2001[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1850[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) False",fontsize=16,color="black",shape="box"];1850 -> 2002[label="",style="solid", color="black", weight=3]; 31.62/12.85 1851[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) True",fontsize=16,color="black",shape="box"];1851 -> 2003[label="",style="solid", color="black", weight=3]; 31.62/12.85 3874[label="Pos (primPlusNat xwv3190 xwv3200)",fontsize=16,color="green",shape="box"];3874 -> 3892[label="",style="dashed", color="green", weight=3]; 31.62/12.85 3875[label="primMinusNat xwv3190 xwv3200",fontsize=16,color="burlywood",shape="triangle"];5155[label="xwv3190/Succ xwv31900",fontsize=10,color="white",style="solid",shape="box"];3875 -> 5155[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5155 -> 3893[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5156[label="xwv3190/Zero",fontsize=10,color="white",style="solid",shape="box"];3875 -> 5156[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5156 -> 3894[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 3876 -> 3875[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3876[label="primMinusNat xwv3210 xwv3190",fontsize=16,color="magenta"];3876 -> 3895[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3876 -> 3896[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 3877[label="Neg (primPlusNat xwv3190 xwv3210)",fontsize=16,color="green",shape="box"];3877 -> 3897[label="",style="dashed", color="green", weight=3]; 31.62/12.85 1899[label="primCmpInt (Pos (Succ xwv4300)) (Pos xwv440)",fontsize=16,color="black",shape="box"];1899 -> 2044[label="",style="solid", color="black", weight=3]; 31.62/12.85 1900[label="primCmpInt (Pos (Succ xwv4300)) (Neg xwv440)",fontsize=16,color="black",shape="box"];1900 -> 2045[label="",style="solid", color="black", weight=3]; 31.62/12.85 1901[label="primCmpInt (Pos Zero) (Pos xwv440)",fontsize=16,color="burlywood",shape="box"];5157[label="xwv440/Succ xwv4400",fontsize=10,color="white",style="solid",shape="box"];1901 -> 5157[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5157 -> 2046[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5158[label="xwv440/Zero",fontsize=10,color="white",style="solid",shape="box"];1901 -> 5158[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5158 -> 2047[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1902[label="primCmpInt (Pos Zero) (Neg xwv440)",fontsize=16,color="burlywood",shape="box"];5159[label="xwv440/Succ xwv4400",fontsize=10,color="white",style="solid",shape="box"];1902 -> 5159[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5159 -> 2048[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5160[label="xwv440/Zero",fontsize=10,color="white",style="solid",shape="box"];1902 -> 5160[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5160 -> 2049[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1903[label="primCmpInt (Neg (Succ xwv4300)) (Pos xwv440)",fontsize=16,color="black",shape="box"];1903 -> 2050[label="",style="solid", color="black", weight=3]; 31.62/12.85 1904[label="primCmpInt (Neg (Succ xwv4300)) (Neg xwv440)",fontsize=16,color="black",shape="box"];1904 -> 2051[label="",style="solid", color="black", weight=3]; 31.62/12.85 1905[label="primCmpInt (Neg Zero) (Pos xwv440)",fontsize=16,color="burlywood",shape="box"];5161[label="xwv440/Succ xwv4400",fontsize=10,color="white",style="solid",shape="box"];1905 -> 5161[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5161 -> 2052[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5162[label="xwv440/Zero",fontsize=10,color="white",style="solid",shape="box"];1905 -> 5162[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5162 -> 2053[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1906[label="primCmpInt (Neg Zero) (Neg xwv440)",fontsize=16,color="burlywood",shape="box"];5163[label="xwv440/Succ xwv4400",fontsize=10,color="white",style="solid",shape="box"];1906 -> 5163[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5163 -> 2054[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5164[label="xwv440/Zero",fontsize=10,color="white",style="solid",shape="box"];1906 -> 5164[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5164 -> 2055[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 3878 -> 3824[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3878[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];3879 -> 3805[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3879[label="FiniteMap.mkBalBranch6Size_r xwv170 xwv171 xwv315 xwv174",fontsize=16,color="magenta"];3880[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv170 xwv171 xwv315 xwv174 xwv170 xwv171 xwv315 xwv174 otherwise",fontsize=16,color="black",shape="box"];3880 -> 3898[label="",style="solid", color="black", weight=3]; 31.62/12.85 3881[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv170 xwv171 xwv315 xwv174 xwv315 xwv174 xwv315",fontsize=16,color="burlywood",shape="box"];5165[label="xwv315/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3881 -> 5165[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5165 -> 3899[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5166[label="xwv315/FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154",fontsize=10,color="white",style="solid",shape="box"];3881 -> 5166[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5166 -> 3900[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 3890 -> 3913[label="",style="dashed", color="red", weight=0]; 31.62/12.85 3890[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv170 xwv171 xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) xwv1740 xwv1741 xwv1742 xwv1743 xwv1744 (FiniteMap.sizeFM xwv1743 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv1744)",fontsize=16,color="magenta"];3890 -> 3914[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 4594 -> 4596[label="",style="dashed", color="red", weight=0]; 31.62/12.85 4594[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv436 xwv433 xwv435) (FiniteMap.mkBranchRight_size xwv436 xwv433 xwv435)",fontsize=16,color="magenta"];4594 -> 4597[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 1679[label="primMulNat (Succ xwv400100) xwv30000",fontsize=16,color="burlywood",shape="box"];5167[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1679 -> 5167[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5167 -> 1895[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5168[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1679 -> 5168[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5168 -> 1896[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1680[label="primMulNat Zero xwv30000",fontsize=16,color="burlywood",shape="box"];5169[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1680 -> 5169[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5169 -> 1897[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 5170[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1680 -> 5170[label="",style="solid", color="burlywood", weight=9]; 31.62/12.85 5170 -> 1898[label="",style="solid", color="burlywood", weight=3]; 31.62/12.85 1681[label="xwv30000",fontsize=16,color="green",shape="box"];1682[label="xwv40010",fontsize=16,color="green",shape="box"];1683[label="xwv40010",fontsize=16,color="green",shape="box"];1684[label="xwv30000",fontsize=16,color="green",shape="box"];2796[label="True",fontsize=16,color="green",shape="box"];2797[label="False",fontsize=16,color="green",shape="box"];2798 -> 1310[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2798[label="compare (xwv43000 * xwv44001) (xwv44000 * xwv43001)",fontsize=16,color="magenta"];2798 -> 2898[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2798 -> 2899[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2799 -> 2523[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2799[label="compare (xwv43000 * xwv44001) (xwv44000 * xwv43001)",fontsize=16,color="magenta"];2799 -> 2900[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2799 -> 2901[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2800[label="xwv44000",fontsize=16,color="green",shape="box"];2801[label="xwv43000",fontsize=16,color="green",shape="box"];2803 -> 2524[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2803[label="compare xwv43001 xwv44001",fontsize=16,color="magenta"];2803 -> 2902[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2803 -> 2903[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2802[label="primCompAux xwv43000 xwv44000 xwv182",fontsize=16,color="black",shape="triangle"];2802 -> 2904[label="",style="solid", color="black", weight=3]; 31.62/12.85 2804[label="xwv43000",fontsize=16,color="green",shape="box"];2805[label="xwv44000",fontsize=16,color="green",shape="box"];2806 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2806[label="compare xwv43000 xwv44000 == LT",fontsize=16,color="magenta"];2806 -> 2937[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2806 -> 2938[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2807 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2807[label="compare xwv43000 xwv44000 == LT",fontsize=16,color="magenta"];2807 -> 2939[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2807 -> 2940[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2808 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2808[label="compare xwv43000 xwv44000 == LT",fontsize=16,color="magenta"];2808 -> 2941[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2808 -> 2942[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2809 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2809[label="compare xwv43000 xwv44000 == LT",fontsize=16,color="magenta"];2809 -> 2943[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2809 -> 2944[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2810 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2810[label="compare xwv43000 xwv44000 == LT",fontsize=16,color="magenta"];2810 -> 2945[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2810 -> 2946[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2811 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2811[label="compare xwv43000 xwv44000 == LT",fontsize=16,color="magenta"];2811 -> 2947[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2811 -> 2948[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2812 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2812[label="compare xwv43000 xwv44000 == LT",fontsize=16,color="magenta"];2812 -> 2949[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2812 -> 2950[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2813 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2813[label="compare xwv43000 xwv44000 == LT",fontsize=16,color="magenta"];2813 -> 2951[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2813 -> 2952[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2814 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2814[label="compare xwv43000 xwv44000 == LT",fontsize=16,color="magenta"];2814 -> 2953[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2814 -> 2954[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2815 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2815[label="compare xwv43000 xwv44000 == LT",fontsize=16,color="magenta"];2815 -> 2955[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2815 -> 2956[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2816 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2816[label="compare xwv43000 xwv44000 == LT",fontsize=16,color="magenta"];2816 -> 2957[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2816 -> 2958[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2817 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2817[label="compare xwv43000 xwv44000 == LT",fontsize=16,color="magenta"];2817 -> 2959[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2817 -> 2960[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2818 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2818[label="compare xwv43000 xwv44000 == LT",fontsize=16,color="magenta"];2818 -> 2961[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2818 -> 2962[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2819 -> 2397[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2819[label="xwv43001 <= xwv44001",fontsize=16,color="magenta"];2819 -> 2963[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2819 -> 2964[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2820 -> 2398[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2820[label="xwv43001 <= xwv44001",fontsize=16,color="magenta"];2820 -> 2965[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2820 -> 2966[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2821 -> 2399[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2821[label="xwv43001 <= xwv44001",fontsize=16,color="magenta"];2821 -> 2967[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2821 -> 2968[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2822 -> 2400[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2822[label="xwv43001 <= xwv44001",fontsize=16,color="magenta"];2822 -> 2969[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2822 -> 2970[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2823 -> 2401[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2823[label="xwv43001 <= xwv44001",fontsize=16,color="magenta"];2823 -> 2971[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2823 -> 2972[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2824 -> 2402[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2824[label="xwv43001 <= xwv44001",fontsize=16,color="magenta"];2824 -> 2973[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2824 -> 2974[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2825 -> 2403[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2825[label="xwv43001 <= xwv44001",fontsize=16,color="magenta"];2825 -> 2975[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2825 -> 2976[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2826 -> 2404[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2826[label="xwv43001 <= xwv44001",fontsize=16,color="magenta"];2826 -> 2977[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2826 -> 2978[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2827 -> 2405[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2827[label="xwv43001 <= xwv44001",fontsize=16,color="magenta"];2827 -> 2979[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2827 -> 2980[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2828 -> 2406[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2828[label="xwv43001 <= xwv44001",fontsize=16,color="magenta"];2828 -> 2981[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2828 -> 2982[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2829 -> 2407[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2829[label="xwv43001 <= xwv44001",fontsize=16,color="magenta"];2829 -> 2983[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2829 -> 2984[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2830 -> 2408[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2830[label="xwv43001 <= xwv44001",fontsize=16,color="magenta"];2830 -> 2985[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2830 -> 2986[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2831 -> 2409[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2831[label="xwv43001 <= xwv44001",fontsize=16,color="magenta"];2831 -> 2987[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2831 -> 2988[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2832 -> 2410[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2832[label="xwv43001 <= xwv44001",fontsize=16,color="magenta"];2832 -> 2989[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2832 -> 2990[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2833 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2833[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2833 -> 2991[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2833 -> 2992[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2834 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2834[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2834 -> 2993[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2834 -> 2994[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2835 -> 231[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2835[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2835 -> 2995[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2835 -> 2996[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2836 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2836[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2836 -> 2997[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2836 -> 2998[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2837 -> 221[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2837[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2837 -> 2999[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2837 -> 3000[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2838 -> 227[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2838[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2838 -> 3001[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2838 -> 3002[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2839 -> 220[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2839[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2839 -> 3003[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2839 -> 3004[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2840 -> 229[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2840[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2840 -> 3005[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2840 -> 3006[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2841 -> 219[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2841[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2841 -> 3007[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2841 -> 3008[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2842 -> 224[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2842[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2842 -> 3009[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2842 -> 3010[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2843 -> 226[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2843[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2843 -> 3011[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2843 -> 3012[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2844 -> 225[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2844[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2844 -> 3013[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2844 -> 3014[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2845 -> 223[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2845[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2845 -> 3015[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2845 -> 3016[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2846 -> 230[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2846[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2846 -> 3017[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2846 -> 3018[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2847[label="xwv181",fontsize=16,color="green",shape="box"];2848[label="True",fontsize=16,color="green",shape="box"];2849[label="xwv43000",fontsize=16,color="green",shape="box"];2850[label="xwv44000",fontsize=16,color="green",shape="box"];2851[label="xwv44000",fontsize=16,color="green",shape="box"];2852[label="xwv43000",fontsize=16,color="green",shape="box"];2853[label="xwv44000",fontsize=16,color="green",shape="box"];2854[label="xwv43000",fontsize=16,color="green",shape="box"];2855[label="xwv44000",fontsize=16,color="green",shape="box"];2856[label="xwv43000",fontsize=16,color="green",shape="box"];2857[label="xwv44000",fontsize=16,color="green",shape="box"];2858[label="xwv43000",fontsize=16,color="green",shape="box"];2859[label="xwv44000",fontsize=16,color="green",shape="box"];2860[label="xwv43000",fontsize=16,color="green",shape="box"];2861[label="xwv44000",fontsize=16,color="green",shape="box"];2862[label="xwv43000",fontsize=16,color="green",shape="box"];2863[label="xwv44000",fontsize=16,color="green",shape="box"];2864[label="xwv43000",fontsize=16,color="green",shape="box"];2865[label="xwv44000",fontsize=16,color="green",shape="box"];2866[label="xwv43000",fontsize=16,color="green",shape="box"];2867[label="xwv44000",fontsize=16,color="green",shape="box"];2868[label="xwv43000",fontsize=16,color="green",shape="box"];2869[label="xwv44000",fontsize=16,color="green",shape="box"];2870[label="xwv43000",fontsize=16,color="green",shape="box"];2871[label="xwv44000",fontsize=16,color="green",shape="box"];2872[label="xwv43000",fontsize=16,color="green",shape="box"];2873[label="xwv44000",fontsize=16,color="green",shape="box"];2874[label="xwv43000",fontsize=16,color="green",shape="box"];2875[label="xwv44000",fontsize=16,color="green",shape="box"];2876[label="xwv43000",fontsize=16,color="green",shape="box"];2877[label="xwv43001 < xwv44001",fontsize=16,color="blue",shape="box"];5171[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2877 -> 5171[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5171 -> 3019[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5172[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2877 -> 5172[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5172 -> 3020[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5173[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2877 -> 5173[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5173 -> 3021[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5174[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2877 -> 5174[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5174 -> 3022[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5175[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2877 -> 5175[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5175 -> 3023[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5176[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2877 -> 5176[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5176 -> 3024[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5177[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2877 -> 5177[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5177 -> 3025[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5178[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2877 -> 5178[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5178 -> 3026[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5179[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2877 -> 5179[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5179 -> 3027[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5180[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2877 -> 5180[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5180 -> 3028[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5181[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2877 -> 5181[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5181 -> 3029[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5182[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2877 -> 5182[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5182 -> 3030[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5183[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2877 -> 5183[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5183 -> 3031[label="",style="solid", color="blue", weight=3]; 31.62/12.85 5184[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2877 -> 5184[label="",style="solid", color="blue", weight=9]; 31.62/12.85 5184 -> 3032[label="",style="solid", color="blue", weight=3]; 31.62/12.85 2878 -> 662[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2878[label="xwv43001 == xwv44001 && xwv43002 <= xwv44002",fontsize=16,color="magenta"];2878 -> 3033[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2878 -> 3034[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2879 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2879[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2879 -> 3035[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2879 -> 3036[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2880 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2880[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2880 -> 3037[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2880 -> 3038[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2881 -> 231[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2881[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2881 -> 3039[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2881 -> 3040[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2882 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2882[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2882 -> 3041[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2882 -> 3042[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2883 -> 221[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2883[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2883 -> 3043[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2883 -> 3044[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2884 -> 227[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2884[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2884 -> 3045[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2884 -> 3046[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2885 -> 220[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2885[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2885 -> 3047[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2885 -> 3048[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2886 -> 229[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2886[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2886 -> 3049[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2886 -> 3050[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2887 -> 219[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2887[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2887 -> 3051[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2887 -> 3052[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2888 -> 224[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2888[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2888 -> 3053[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2888 -> 3054[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2889 -> 226[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2889[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2889 -> 3055[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2889 -> 3056[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2890 -> 225[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2890[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2890 -> 3057[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2890 -> 3058[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2891 -> 223[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2891[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2891 -> 3059[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2891 -> 3060[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2892 -> 230[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2892[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];2892 -> 3061[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2892 -> 3062[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2893 -> 1995[label="",style="dashed", color="red", weight=0]; 31.62/12.85 2893[label="primCmpNat xwv43000 xwv44000",fontsize=16,color="magenta"];2893 -> 3063[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2893 -> 3064[label="",style="dashed", color="magenta", weight=3]; 31.62/12.85 2894[label="primCmpDouble (Double xwv43000 (Pos xwv430010)) (Double xwv44000 xwv44001)",fontsize=16,color="burlywood",shape="box"];5185[label="xwv44001/Pos xwv440010",fontsize=10,color="white",style="solid",shape="box"];2894 -> 5185[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5185 -> 3065[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5186[label="xwv44001/Neg xwv440010",fontsize=10,color="white",style="solid",shape="box"];2894 -> 5186[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5186 -> 3066[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 2895[label="primCmpDouble (Double xwv43000 (Neg xwv430010)) (Double xwv44000 xwv44001)",fontsize=16,color="burlywood",shape="box"];5187[label="xwv44001/Pos xwv440010",fontsize=10,color="white",style="solid",shape="box"];2895 -> 5187[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5187 -> 3067[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5188[label="xwv44001/Neg xwv440010",fontsize=10,color="white",style="solid",shape="box"];2895 -> 5188[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5188 -> 3068[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 2896[label="primCmpFloat (Float xwv43000 (Pos xwv430010)) (Float xwv44000 xwv44001)",fontsize=16,color="burlywood",shape="box"];5189[label="xwv44001/Pos xwv440010",fontsize=10,color="white",style="solid",shape="box"];2896 -> 5189[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5189 -> 3069[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5190[label="xwv44001/Neg xwv440010",fontsize=10,color="white",style="solid",shape="box"];2896 -> 5190[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5190 -> 3070[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 2897[label="primCmpFloat (Float xwv43000 (Neg xwv430010)) (Float xwv44000 xwv44001)",fontsize=16,color="burlywood",shape="box"];5191[label="xwv44001/Pos xwv440010",fontsize=10,color="white",style="solid",shape="box"];2897 -> 5191[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5191 -> 3071[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5192[label="xwv44001/Neg xwv440010",fontsize=10,color="white",style="solid",shape="box"];2897 -> 5192[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5192 -> 3072[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 2000[label="FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164",fontsize=16,color="green",shape="box"];2001[label="FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174",fontsize=16,color="green",shape="box"];2002[label="FiniteMap.glueBal2GlueBal0 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) otherwise",fontsize=16,color="black",shape="box"];2002 -> 2135[label="",style="solid", color="black", weight=3]; 31.62/12.86 2003 -> 3670[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2003[label="FiniteMap.mkBalBranch (FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)) (FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.deleteMin (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174))",fontsize=16,color="magenta"];2003 -> 3711[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2003 -> 3712[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2003 -> 3713[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2003 -> 3714[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3892 -> 2343[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3892[label="primPlusNat xwv3190 xwv3200",fontsize=16,color="magenta"];3892 -> 3921[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3892 -> 3922[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3893[label="primMinusNat (Succ xwv31900) xwv3200",fontsize=16,color="burlywood",shape="box"];5193[label="xwv3200/Succ xwv32000",fontsize=10,color="white",style="solid",shape="box"];3893 -> 5193[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5193 -> 3923[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5194[label="xwv3200/Zero",fontsize=10,color="white",style="solid",shape="box"];3893 -> 5194[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5194 -> 3924[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3894[label="primMinusNat Zero xwv3200",fontsize=16,color="burlywood",shape="box"];5195[label="xwv3200/Succ xwv32000",fontsize=10,color="white",style="solid",shape="box"];3894 -> 5195[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5195 -> 3925[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5196[label="xwv3200/Zero",fontsize=10,color="white",style="solid",shape="box"];3894 -> 5196[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5196 -> 3926[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3895[label="xwv3210",fontsize=16,color="green",shape="box"];3896[label="xwv3190",fontsize=16,color="green",shape="box"];3897 -> 2343[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3897[label="primPlusNat xwv3190 xwv3210",fontsize=16,color="magenta"];3897 -> 3927[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3897 -> 3928[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2044 -> 1995[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2044[label="primCmpNat (Succ xwv4300) xwv440",fontsize=16,color="magenta"];2044 -> 2167[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2044 -> 2168[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2045[label="GT",fontsize=16,color="green",shape="box"];2046[label="primCmpInt (Pos Zero) (Pos (Succ xwv4400))",fontsize=16,color="black",shape="box"];2046 -> 2169[label="",style="solid", color="black", weight=3]; 31.62/12.86 2047[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2047 -> 2170[label="",style="solid", color="black", weight=3]; 31.62/12.86 2048[label="primCmpInt (Pos Zero) (Neg (Succ xwv4400))",fontsize=16,color="black",shape="box"];2048 -> 2171[label="",style="solid", color="black", weight=3]; 31.62/12.86 2049[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2049 -> 2172[label="",style="solid", color="black", weight=3]; 31.62/12.86 2050[label="LT",fontsize=16,color="green",shape="box"];2051 -> 1995[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2051[label="primCmpNat xwv440 (Succ xwv4300)",fontsize=16,color="magenta"];2051 -> 2173[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2051 -> 2174[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2052[label="primCmpInt (Neg Zero) (Pos (Succ xwv4400))",fontsize=16,color="black",shape="box"];2052 -> 2175[label="",style="solid", color="black", weight=3]; 31.62/12.86 2053[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2053 -> 2176[label="",style="solid", color="black", weight=3]; 31.62/12.86 2054[label="primCmpInt (Neg Zero) (Neg (Succ xwv4400))",fontsize=16,color="black",shape="box"];2054 -> 2177[label="",style="solid", color="black", weight=3]; 31.62/12.86 2055[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2055 -> 2178[label="",style="solid", color="black", weight=3]; 31.62/12.86 3898[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv170 xwv171 xwv315 xwv174 xwv170 xwv171 xwv315 xwv174 True",fontsize=16,color="black",shape="box"];3898 -> 3929[label="",style="solid", color="black", weight=3]; 31.62/12.86 3899[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv170 xwv171 FiniteMap.EmptyFM xwv174 FiniteMap.EmptyFM xwv174 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3899 -> 3930[label="",style="solid", color="black", weight=3]; 31.62/12.86 3900[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv170 xwv171 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154)",fontsize=16,color="black",shape="box"];3900 -> 3931[label="",style="solid", color="black", weight=3]; 31.62/12.86 3914 -> 1489[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3914[label="FiniteMap.sizeFM xwv1743 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv1744",fontsize=16,color="magenta"];3914 -> 3932[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3914 -> 3933[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3913[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv170 xwv171 xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) xwv1740 xwv1741 xwv1742 xwv1743 xwv1744 xwv327",fontsize=16,color="burlywood",shape="triangle"];5197[label="xwv327/False",fontsize=10,color="white",style="solid",shape="box"];3913 -> 5197[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5197 -> 3934[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5198[label="xwv327/True",fontsize=10,color="white",style="solid",shape="box"];3913 -> 5198[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5198 -> 3935[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 4597[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv436 xwv433 xwv435",fontsize=16,color="black",shape="box"];4597 -> 4599[label="",style="solid", color="black", weight=3]; 31.62/12.86 4596[label="primPlusInt xwv437 (FiniteMap.mkBranchRight_size xwv436 xwv433 xwv435)",fontsize=16,color="burlywood",shape="triangle"];5199[label="xwv437/Pos xwv4370",fontsize=10,color="white",style="solid",shape="box"];4596 -> 5199[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5199 -> 4600[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5200[label="xwv437/Neg xwv4370",fontsize=10,color="white",style="solid",shape="box"];4596 -> 5200[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5200 -> 4601[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 1895[label="primMulNat (Succ xwv400100) (Succ xwv300000)",fontsize=16,color="black",shape="box"];1895 -> 2040[label="",style="solid", color="black", weight=3]; 31.62/12.86 1896[label="primMulNat (Succ xwv400100) Zero",fontsize=16,color="black",shape="box"];1896 -> 2041[label="",style="solid", color="black", weight=3]; 31.62/12.86 1897[label="primMulNat Zero (Succ xwv300000)",fontsize=16,color="black",shape="box"];1897 -> 2042[label="",style="solid", color="black", weight=3]; 31.62/12.86 1898[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1898 -> 2043[label="",style="solid", color="black", weight=3]; 31.62/12.86 2898 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2898[label="xwv44000 * xwv43001",fontsize=16,color="magenta"];2898 -> 3073[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2898 -> 3074[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2899 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2899[label="xwv43000 * xwv44001",fontsize=16,color="magenta"];2899 -> 3075[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2899 -> 3076[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2900[label="xwv43000 * xwv44001",fontsize=16,color="burlywood",shape="triangle"];5201[label="xwv43000/Integer xwv430000",fontsize=10,color="white",style="solid",shape="box"];2900 -> 5201[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5201 -> 3077[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 2901 -> 2900[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2901[label="xwv44000 * xwv43001",fontsize=16,color="magenta"];2901 -> 3078[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2901 -> 3079[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2902[label="xwv43001",fontsize=16,color="green",shape="box"];2903[label="xwv44001",fontsize=16,color="green",shape="box"];2904 -> 3080[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2904[label="primCompAux0 xwv182 (compare xwv43000 xwv44000)",fontsize=16,color="magenta"];2904 -> 3081[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2904 -> 3082[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2937[label="LT",fontsize=16,color="green",shape="box"];2938[label="compare xwv43000 xwv44000",fontsize=16,color="black",shape="triangle"];2938 -> 3083[label="",style="solid", color="black", weight=3]; 31.62/12.86 2939[label="LT",fontsize=16,color="green",shape="box"];2940 -> 2522[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2940[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];2940 -> 3084[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2940 -> 3085[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2941[label="LT",fontsize=16,color="green",shape="box"];2942[label="compare xwv43000 xwv44000",fontsize=16,color="black",shape="triangle"];2942 -> 3086[label="",style="solid", color="black", weight=3]; 31.62/12.86 2943[label="LT",fontsize=16,color="green",shape="box"];2944 -> 2523[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2944[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];2944 -> 3087[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2944 -> 3088[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2945[label="LT",fontsize=16,color="green",shape="box"];2946[label="compare xwv43000 xwv44000",fontsize=16,color="black",shape="triangle"];2946 -> 3089[label="",style="solid", color="black", weight=3]; 31.62/12.86 2947[label="LT",fontsize=16,color="green",shape="box"];2948 -> 2524[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2948[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];2948 -> 3090[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2948 -> 3091[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2949[label="LT",fontsize=16,color="green",shape="box"];2950[label="compare xwv43000 xwv44000",fontsize=16,color="black",shape="triangle"];2950 -> 3092[label="",style="solid", color="black", weight=3]; 31.62/12.86 2951[label="LT",fontsize=16,color="green",shape="box"];2952[label="compare xwv43000 xwv44000",fontsize=16,color="black",shape="triangle"];2952 -> 3093[label="",style="solid", color="black", weight=3]; 31.62/12.86 2953[label="LT",fontsize=16,color="green",shape="box"];2954 -> 2525[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2954[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];2954 -> 3094[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2954 -> 3095[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2955[label="LT",fontsize=16,color="green",shape="box"];2956 -> 2526[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2956[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];2956 -> 3096[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2956 -> 3097[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2957[label="LT",fontsize=16,color="green",shape="box"];2958 -> 2527[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2958[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];2958 -> 3098[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2958 -> 3099[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2959[label="LT",fontsize=16,color="green",shape="box"];2960 -> 2528[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2960[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];2960 -> 3100[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2960 -> 3101[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2961[label="LT",fontsize=16,color="green",shape="box"];2962[label="compare xwv43000 xwv44000",fontsize=16,color="black",shape="triangle"];2962 -> 3102[label="",style="solid", color="black", weight=3]; 31.62/12.86 2963[label="xwv43001",fontsize=16,color="green",shape="box"];2964[label="xwv44001",fontsize=16,color="green",shape="box"];2965[label="xwv43001",fontsize=16,color="green",shape="box"];2966[label="xwv44001",fontsize=16,color="green",shape="box"];2967[label="xwv43001",fontsize=16,color="green",shape="box"];2968[label="xwv44001",fontsize=16,color="green",shape="box"];2969[label="xwv43001",fontsize=16,color="green",shape="box"];2970[label="xwv44001",fontsize=16,color="green",shape="box"];2971[label="xwv43001",fontsize=16,color="green",shape="box"];2972[label="xwv44001",fontsize=16,color="green",shape="box"];2973[label="xwv43001",fontsize=16,color="green",shape="box"];2974[label="xwv44001",fontsize=16,color="green",shape="box"];2975[label="xwv43001",fontsize=16,color="green",shape="box"];2976[label="xwv44001",fontsize=16,color="green",shape="box"];2977[label="xwv43001",fontsize=16,color="green",shape="box"];2978[label="xwv44001",fontsize=16,color="green",shape="box"];2979[label="xwv43001",fontsize=16,color="green",shape="box"];2980[label="xwv44001",fontsize=16,color="green",shape="box"];2981[label="xwv43001",fontsize=16,color="green",shape="box"];2982[label="xwv44001",fontsize=16,color="green",shape="box"];2983[label="xwv43001",fontsize=16,color="green",shape="box"];2984[label="xwv44001",fontsize=16,color="green",shape="box"];2985[label="xwv43001",fontsize=16,color="green",shape="box"];2986[label="xwv44001",fontsize=16,color="green",shape="box"];2987[label="xwv43001",fontsize=16,color="green",shape="box"];2988[label="xwv44001",fontsize=16,color="green",shape="box"];2989[label="xwv43001",fontsize=16,color="green",shape="box"];2990[label="xwv44001",fontsize=16,color="green",shape="box"];2991[label="xwv44000",fontsize=16,color="green",shape="box"];2992[label="xwv43000",fontsize=16,color="green",shape="box"];2993[label="xwv44000",fontsize=16,color="green",shape="box"];2994[label="xwv43000",fontsize=16,color="green",shape="box"];2995[label="xwv44000",fontsize=16,color="green",shape="box"];2996[label="xwv43000",fontsize=16,color="green",shape="box"];2997[label="xwv44000",fontsize=16,color="green",shape="box"];2998[label="xwv43000",fontsize=16,color="green",shape="box"];2999[label="xwv44000",fontsize=16,color="green",shape="box"];3000[label="xwv43000",fontsize=16,color="green",shape="box"];3001[label="xwv44000",fontsize=16,color="green",shape="box"];3002[label="xwv43000",fontsize=16,color="green",shape="box"];3003[label="xwv44000",fontsize=16,color="green",shape="box"];3004[label="xwv43000",fontsize=16,color="green",shape="box"];3005[label="xwv44000",fontsize=16,color="green",shape="box"];3006[label="xwv43000",fontsize=16,color="green",shape="box"];3007[label="xwv44000",fontsize=16,color="green",shape="box"];3008[label="xwv43000",fontsize=16,color="green",shape="box"];3009[label="xwv44000",fontsize=16,color="green",shape="box"];3010[label="xwv43000",fontsize=16,color="green",shape="box"];3011[label="xwv44000",fontsize=16,color="green",shape="box"];3012[label="xwv43000",fontsize=16,color="green",shape="box"];3013[label="xwv44000",fontsize=16,color="green",shape="box"];3014[label="xwv43000",fontsize=16,color="green",shape="box"];3015[label="xwv44000",fontsize=16,color="green",shape="box"];3016[label="xwv43000",fontsize=16,color="green",shape="box"];3017[label="xwv44000",fontsize=16,color="green",shape="box"];3018[label="xwv43000",fontsize=16,color="green",shape="box"];3019 -> 1489[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3019[label="xwv43001 < xwv44001",fontsize=16,color="magenta"];3019 -> 3103[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3019 -> 3104[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3020 -> 2757[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3020[label="xwv43001 < xwv44001",fontsize=16,color="magenta"];3020 -> 3105[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3020 -> 3106[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3021 -> 2758[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3021[label="xwv43001 < xwv44001",fontsize=16,color="magenta"];3021 -> 3107[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3021 -> 3108[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3022 -> 2759[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3022[label="xwv43001 < xwv44001",fontsize=16,color="magenta"];3022 -> 3109[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3022 -> 3110[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3023 -> 2760[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3023[label="xwv43001 < xwv44001",fontsize=16,color="magenta"];3023 -> 3111[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3023 -> 3112[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3024 -> 2761[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3024[label="xwv43001 < xwv44001",fontsize=16,color="magenta"];3024 -> 3113[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3024 -> 3114[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3025 -> 2762[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3025[label="xwv43001 < xwv44001",fontsize=16,color="magenta"];3025 -> 3115[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3025 -> 3116[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3026 -> 2763[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3026[label="xwv43001 < xwv44001",fontsize=16,color="magenta"];3026 -> 3117[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3026 -> 3118[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3027 -> 2764[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3027[label="xwv43001 < xwv44001",fontsize=16,color="magenta"];3027 -> 3119[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3027 -> 3120[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3028 -> 2765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3028[label="xwv43001 < xwv44001",fontsize=16,color="magenta"];3028 -> 3121[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3028 -> 3122[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3029 -> 2766[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3029[label="xwv43001 < xwv44001",fontsize=16,color="magenta"];3029 -> 3123[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3029 -> 3124[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3030 -> 2767[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3030[label="xwv43001 < xwv44001",fontsize=16,color="magenta"];3030 -> 3125[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3030 -> 3126[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3031 -> 2768[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3031[label="xwv43001 < xwv44001",fontsize=16,color="magenta"];3031 -> 3127[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3031 -> 3128[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3032 -> 2769[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3032[label="xwv43001 < xwv44001",fontsize=16,color="magenta"];3032 -> 3129[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3032 -> 3130[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3033[label="xwv43002 <= xwv44002",fontsize=16,color="blue",shape="box"];5202[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3033 -> 5202[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5202 -> 3131[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5203[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3033 -> 5203[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5203 -> 3132[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5204[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3033 -> 5204[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5204 -> 3133[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5205[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3033 -> 5205[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5205 -> 3134[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5206[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3033 -> 5206[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5206 -> 3135[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5207[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3033 -> 5207[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5207 -> 3136[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5208[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3033 -> 5208[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5208 -> 3137[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5209[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3033 -> 5209[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5209 -> 3138[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5210[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3033 -> 5210[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5210 -> 3139[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5211[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3033 -> 5211[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5211 -> 3140[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5212[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3033 -> 5212[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5212 -> 3141[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5213[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3033 -> 5213[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5213 -> 3142[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5214[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3033 -> 5214[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5214 -> 3143[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5215[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3033 -> 5215[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5215 -> 3144[label="",style="solid", color="blue", weight=3]; 31.62/12.86 3034[label="xwv43001 == xwv44001",fontsize=16,color="blue",shape="box"];5216[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3034 -> 5216[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5216 -> 3145[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5217[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3034 -> 5217[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5217 -> 3146[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5218[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3034 -> 5218[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5218 -> 3147[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5219[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3034 -> 5219[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5219 -> 3148[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5220[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3034 -> 5220[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5220 -> 3149[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5221[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3034 -> 5221[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5221 -> 3150[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5222[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3034 -> 5222[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5222 -> 3151[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5223[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3034 -> 5223[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5223 -> 3152[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5224[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3034 -> 5224[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5224 -> 3153[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5225[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3034 -> 5225[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5225 -> 3154[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5226[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3034 -> 5226[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5226 -> 3155[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5227[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3034 -> 5227[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5227 -> 3156[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5228[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3034 -> 5228[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5228 -> 3157[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5229[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3034 -> 5229[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5229 -> 3158[label="",style="solid", color="blue", weight=3]; 31.62/12.86 3035[label="xwv44000",fontsize=16,color="green",shape="box"];3036[label="xwv43000",fontsize=16,color="green",shape="box"];3037[label="xwv44000",fontsize=16,color="green",shape="box"];3038[label="xwv43000",fontsize=16,color="green",shape="box"];3039[label="xwv44000",fontsize=16,color="green",shape="box"];3040[label="xwv43000",fontsize=16,color="green",shape="box"];3041[label="xwv44000",fontsize=16,color="green",shape="box"];3042[label="xwv43000",fontsize=16,color="green",shape="box"];3043[label="xwv44000",fontsize=16,color="green",shape="box"];3044[label="xwv43000",fontsize=16,color="green",shape="box"];3045[label="xwv44000",fontsize=16,color="green",shape="box"];3046[label="xwv43000",fontsize=16,color="green",shape="box"];3047[label="xwv44000",fontsize=16,color="green",shape="box"];3048[label="xwv43000",fontsize=16,color="green",shape="box"];3049[label="xwv44000",fontsize=16,color="green",shape="box"];3050[label="xwv43000",fontsize=16,color="green",shape="box"];3051[label="xwv44000",fontsize=16,color="green",shape="box"];3052[label="xwv43000",fontsize=16,color="green",shape="box"];3053[label="xwv44000",fontsize=16,color="green",shape="box"];3054[label="xwv43000",fontsize=16,color="green",shape="box"];3055[label="xwv44000",fontsize=16,color="green",shape="box"];3056[label="xwv43000",fontsize=16,color="green",shape="box"];3057[label="xwv44000",fontsize=16,color="green",shape="box"];3058[label="xwv43000",fontsize=16,color="green",shape="box"];3059[label="xwv44000",fontsize=16,color="green",shape="box"];3060[label="xwv43000",fontsize=16,color="green",shape="box"];3061[label="xwv44000",fontsize=16,color="green",shape="box"];3062[label="xwv43000",fontsize=16,color="green",shape="box"];3063[label="xwv43000",fontsize=16,color="green",shape="box"];3064[label="xwv44000",fontsize=16,color="green",shape="box"];1995[label="primCmpNat xwv430 xwv440",fontsize=16,color="burlywood",shape="triangle"];5230[label="xwv430/Succ xwv4300",fontsize=10,color="white",style="solid",shape="box"];1995 -> 5230[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5230 -> 2125[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5231[label="xwv430/Zero",fontsize=10,color="white",style="solid",shape="box"];1995 -> 5231[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5231 -> 2126[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3065[label="primCmpDouble (Double xwv43000 (Pos xwv430010)) (Double xwv44000 (Pos xwv440010))",fontsize=16,color="black",shape="box"];3065 -> 3159[label="",style="solid", color="black", weight=3]; 31.62/12.86 3066[label="primCmpDouble (Double xwv43000 (Pos xwv430010)) (Double xwv44000 (Neg xwv440010))",fontsize=16,color="black",shape="box"];3066 -> 3160[label="",style="solid", color="black", weight=3]; 31.62/12.86 3067[label="primCmpDouble (Double xwv43000 (Neg xwv430010)) (Double xwv44000 (Pos xwv440010))",fontsize=16,color="black",shape="box"];3067 -> 3161[label="",style="solid", color="black", weight=3]; 31.62/12.86 3068[label="primCmpDouble (Double xwv43000 (Neg xwv430010)) (Double xwv44000 (Neg xwv440010))",fontsize=16,color="black",shape="box"];3068 -> 3162[label="",style="solid", color="black", weight=3]; 31.62/12.86 3069[label="primCmpFloat (Float xwv43000 (Pos xwv430010)) (Float xwv44000 (Pos xwv440010))",fontsize=16,color="black",shape="box"];3069 -> 3163[label="",style="solid", color="black", weight=3]; 31.62/12.86 3070[label="primCmpFloat (Float xwv43000 (Pos xwv430010)) (Float xwv44000 (Neg xwv440010))",fontsize=16,color="black",shape="box"];3070 -> 3164[label="",style="solid", color="black", weight=3]; 31.62/12.86 3071[label="primCmpFloat (Float xwv43000 (Neg xwv430010)) (Float xwv44000 (Pos xwv440010))",fontsize=16,color="black",shape="box"];3071 -> 3165[label="",style="solid", color="black", weight=3]; 31.62/12.86 3072[label="primCmpFloat (Float xwv43000 (Neg xwv430010)) (Float xwv44000 (Neg xwv440010))",fontsize=16,color="black",shape="box"];3072 -> 3166[label="",style="solid", color="black", weight=3]; 31.62/12.86 2135[label="FiniteMap.glueBal2GlueBal0 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) True",fontsize=16,color="black",shape="box"];2135 -> 2265[label="",style="solid", color="black", weight=3]; 31.62/12.86 3711[label="FiniteMap.deleteMin (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174)",fontsize=16,color="burlywood",shape="triangle"];5232[label="xwv173/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3711 -> 5232[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5232 -> 3737[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5233[label="xwv173/FiniteMap.Branch xwv1730 xwv1731 xwv1732 xwv1733 xwv1734",fontsize=10,color="white",style="solid",shape="box"];3711 -> 5233[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5233 -> 3738[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3712[label="FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)",fontsize=16,color="black",shape="box"];3712 -> 3739[label="",style="solid", color="black", weight=3]; 31.62/12.86 3713[label="FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)",fontsize=16,color="black",shape="box"];3713 -> 3740[label="",style="solid", color="black", weight=3]; 31.62/12.86 3714[label="FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164",fontsize=16,color="green",shape="box"];3921[label="xwv3190",fontsize=16,color="green",shape="box"];3922[label="xwv3200",fontsize=16,color="green",shape="box"];2343[label="primPlusNat xwv3320 xwv1310",fontsize=16,color="burlywood",shape="triangle"];5234[label="xwv3320/Succ xwv33200",fontsize=10,color="white",style="solid",shape="box"];2343 -> 5234[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5234 -> 2369[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5235[label="xwv3320/Zero",fontsize=10,color="white",style="solid",shape="box"];2343 -> 5235[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5235 -> 2370[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3923[label="primMinusNat (Succ xwv31900) (Succ xwv32000)",fontsize=16,color="black",shape="box"];3923 -> 3948[label="",style="solid", color="black", weight=3]; 31.62/12.86 3924[label="primMinusNat (Succ xwv31900) Zero",fontsize=16,color="black",shape="box"];3924 -> 3949[label="",style="solid", color="black", weight=3]; 31.62/12.86 3925[label="primMinusNat Zero (Succ xwv32000)",fontsize=16,color="black",shape="box"];3925 -> 3950[label="",style="solid", color="black", weight=3]; 31.62/12.86 3926[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];3926 -> 3951[label="",style="solid", color="black", weight=3]; 31.62/12.86 3927[label="xwv3190",fontsize=16,color="green",shape="box"];3928[label="xwv3210",fontsize=16,color="green",shape="box"];2167[label="Succ xwv4300",fontsize=16,color="green",shape="box"];2168[label="xwv440",fontsize=16,color="green",shape="box"];2169 -> 1995[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2169[label="primCmpNat Zero (Succ xwv4400)",fontsize=16,color="magenta"];2169 -> 2287[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2169 -> 2288[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2170[label="EQ",fontsize=16,color="green",shape="box"];2171[label="GT",fontsize=16,color="green",shape="box"];2172[label="EQ",fontsize=16,color="green",shape="box"];2173[label="xwv440",fontsize=16,color="green",shape="box"];2174[label="Succ xwv4300",fontsize=16,color="green",shape="box"];2175[label="LT",fontsize=16,color="green",shape="box"];2176[label="EQ",fontsize=16,color="green",shape="box"];2177 -> 1995[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2177[label="primCmpNat (Succ xwv4400) Zero",fontsize=16,color="magenta"];2177 -> 2289[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2177 -> 2290[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2178[label="EQ",fontsize=16,color="green",shape="box"];3929 -> 4490[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3929[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) xwv170 xwv171 xwv315 xwv174",fontsize=16,color="magenta"];3929 -> 4496[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3929 -> 4497[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3929 -> 4498[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3929 -> 4499[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3929 -> 4500[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3930[label="error []",fontsize=16,color="red",shape="box"];3931[label="FiniteMap.mkBalBranch6MkBalBranch12 xwv170 xwv171 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154)",fontsize=16,color="black",shape="box"];3931 -> 3953[label="",style="solid", color="black", weight=3]; 31.62/12.86 3932 -> 1532[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3932[label="FiniteMap.sizeFM xwv1743",fontsize=16,color="magenta"];3932 -> 3954[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3933 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3933[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv1744",fontsize=16,color="magenta"];3933 -> 3955[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3933 -> 3956[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3934[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv170 xwv171 xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) xwv1740 xwv1741 xwv1742 xwv1743 xwv1744 False",fontsize=16,color="black",shape="box"];3934 -> 3957[label="",style="solid", color="black", weight=3]; 31.62/12.86 3935[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv170 xwv171 xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) xwv1740 xwv1741 xwv1742 xwv1743 xwv1744 True",fontsize=16,color="black",shape="box"];3935 -> 3958[label="",style="solid", color="black", weight=3]; 31.62/12.86 4599 -> 3838[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4599[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xwv436 xwv433 xwv435)",fontsize=16,color="magenta"];4599 -> 4602[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4599 -> 4603[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4600[label="primPlusInt (Pos xwv4370) (FiniteMap.mkBranchRight_size xwv436 xwv433 xwv435)",fontsize=16,color="black",shape="box"];4600 -> 4604[label="",style="solid", color="black", weight=3]; 31.62/12.86 4601[label="primPlusInt (Neg xwv4370) (FiniteMap.mkBranchRight_size xwv436 xwv433 xwv435)",fontsize=16,color="black",shape="box"];4601 -> 4605[label="",style="solid", color="black", weight=3]; 31.62/12.86 2040 -> 2165[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2040[label="primPlusNat (primMulNat xwv400100 (Succ xwv300000)) (Succ xwv300000)",fontsize=16,color="magenta"];2040 -> 2166[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2041[label="Zero",fontsize=16,color="green",shape="box"];2042[label="Zero",fontsize=16,color="green",shape="box"];2043[label="Zero",fontsize=16,color="green",shape="box"];3073[label="xwv44000",fontsize=16,color="green",shape="box"];3074[label="xwv43001",fontsize=16,color="green",shape="box"];3075[label="xwv43000",fontsize=16,color="green",shape="box"];3076[label="xwv44001",fontsize=16,color="green",shape="box"];3077[label="Integer xwv430000 * xwv44001",fontsize=16,color="burlywood",shape="box"];5236[label="xwv44001/Integer xwv440010",fontsize=10,color="white",style="solid",shape="box"];3077 -> 5236[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5236 -> 3167[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3078[label="xwv44000",fontsize=16,color="green",shape="box"];3079[label="xwv43001",fontsize=16,color="green",shape="box"];3081[label="xwv182",fontsize=16,color="green",shape="box"];3082[label="compare xwv43000 xwv44000",fontsize=16,color="blue",shape="box"];5237[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3082 -> 5237[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5237 -> 3168[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5238[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3082 -> 5238[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5238 -> 3169[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5239[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3082 -> 5239[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5239 -> 3170[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5240[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3082 -> 5240[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5240 -> 3171[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5241[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3082 -> 5241[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5241 -> 3172[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5242[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3082 -> 5242[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5242 -> 3173[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5243[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3082 -> 5243[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5243 -> 3174[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5244[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3082 -> 5244[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5244 -> 3175[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5245[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3082 -> 5245[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5245 -> 3176[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5246[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3082 -> 5246[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5246 -> 3177[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5247[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3082 -> 5247[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5247 -> 3178[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5248[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3082 -> 5248[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5248 -> 3179[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5249[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3082 -> 5249[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5249 -> 3180[label="",style="solid", color="blue", weight=3]; 31.62/12.86 5250[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3082 -> 5250[label="",style="solid", color="blue", weight=9]; 31.62/12.86 5250 -> 3181[label="",style="solid", color="blue", weight=3]; 31.62/12.86 3080[label="primCompAux0 xwv186 xwv187",fontsize=16,color="burlywood",shape="triangle"];5251[label="xwv187/LT",fontsize=10,color="white",style="solid",shape="box"];3080 -> 5251[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5251 -> 3182[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5252[label="xwv187/EQ",fontsize=10,color="white",style="solid",shape="box"];3080 -> 5252[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5252 -> 3183[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5253[label="xwv187/GT",fontsize=10,color="white",style="solid",shape="box"];3080 -> 5253[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5253 -> 3184[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3083[label="compare3 xwv43000 xwv44000",fontsize=16,color="black",shape="box"];3083 -> 3196[label="",style="solid", color="black", weight=3]; 31.62/12.86 3084[label="xwv43000",fontsize=16,color="green",shape="box"];3085[label="xwv44000",fontsize=16,color="green",shape="box"];3086[label="compare3 xwv43000 xwv44000",fontsize=16,color="black",shape="box"];3086 -> 3197[label="",style="solid", color="black", weight=3]; 31.62/12.86 3087[label="xwv43000",fontsize=16,color="green",shape="box"];3088[label="xwv44000",fontsize=16,color="green",shape="box"];3089[label="compare3 xwv43000 xwv44000",fontsize=16,color="black",shape="box"];3089 -> 3198[label="",style="solid", color="black", weight=3]; 31.62/12.86 3090[label="xwv43000",fontsize=16,color="green",shape="box"];3091[label="xwv44000",fontsize=16,color="green",shape="box"];3092[label="compare3 xwv43000 xwv44000",fontsize=16,color="black",shape="box"];3092 -> 3199[label="",style="solid", color="black", weight=3]; 31.62/12.86 3093[label="compare3 xwv43000 xwv44000",fontsize=16,color="black",shape="box"];3093 -> 3200[label="",style="solid", color="black", weight=3]; 31.62/12.86 3094[label="xwv43000",fontsize=16,color="green",shape="box"];3095[label="xwv44000",fontsize=16,color="green",shape="box"];3096[label="xwv43000",fontsize=16,color="green",shape="box"];3097[label="xwv44000",fontsize=16,color="green",shape="box"];3098[label="xwv43000",fontsize=16,color="green",shape="box"];3099[label="xwv44000",fontsize=16,color="green",shape="box"];3100[label="xwv43000",fontsize=16,color="green",shape="box"];3101[label="xwv44000",fontsize=16,color="green",shape="box"];3102[label="compare3 xwv43000 xwv44000",fontsize=16,color="black",shape="box"];3102 -> 3201[label="",style="solid", color="black", weight=3]; 31.62/12.86 3103[label="xwv43001",fontsize=16,color="green",shape="box"];3104[label="xwv44001",fontsize=16,color="green",shape="box"];3105[label="xwv44001",fontsize=16,color="green",shape="box"];3106[label="xwv43001",fontsize=16,color="green",shape="box"];3107[label="xwv44001",fontsize=16,color="green",shape="box"];3108[label="xwv43001",fontsize=16,color="green",shape="box"];3109[label="xwv44001",fontsize=16,color="green",shape="box"];3110[label="xwv43001",fontsize=16,color="green",shape="box"];3111[label="xwv44001",fontsize=16,color="green",shape="box"];3112[label="xwv43001",fontsize=16,color="green",shape="box"];3113[label="xwv44001",fontsize=16,color="green",shape="box"];3114[label="xwv43001",fontsize=16,color="green",shape="box"];3115[label="xwv44001",fontsize=16,color="green",shape="box"];3116[label="xwv43001",fontsize=16,color="green",shape="box"];3117[label="xwv44001",fontsize=16,color="green",shape="box"];3118[label="xwv43001",fontsize=16,color="green",shape="box"];3119[label="xwv44001",fontsize=16,color="green",shape="box"];3120[label="xwv43001",fontsize=16,color="green",shape="box"];3121[label="xwv44001",fontsize=16,color="green",shape="box"];3122[label="xwv43001",fontsize=16,color="green",shape="box"];3123[label="xwv44001",fontsize=16,color="green",shape="box"];3124[label="xwv43001",fontsize=16,color="green",shape="box"];3125[label="xwv44001",fontsize=16,color="green",shape="box"];3126[label="xwv43001",fontsize=16,color="green",shape="box"];3127[label="xwv44001",fontsize=16,color="green",shape="box"];3128[label="xwv43001",fontsize=16,color="green",shape="box"];3129[label="xwv44001",fontsize=16,color="green",shape="box"];3130[label="xwv43001",fontsize=16,color="green",shape="box"];3131 -> 2397[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3131[label="xwv43002 <= xwv44002",fontsize=16,color="magenta"];3131 -> 3202[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3131 -> 3203[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3132 -> 2398[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3132[label="xwv43002 <= xwv44002",fontsize=16,color="magenta"];3132 -> 3204[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3132 -> 3205[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3133 -> 2399[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3133[label="xwv43002 <= xwv44002",fontsize=16,color="magenta"];3133 -> 3206[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3133 -> 3207[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3134 -> 2400[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3134[label="xwv43002 <= xwv44002",fontsize=16,color="magenta"];3134 -> 3208[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3134 -> 3209[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3135 -> 2401[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3135[label="xwv43002 <= xwv44002",fontsize=16,color="magenta"];3135 -> 3210[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3135 -> 3211[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3136 -> 2402[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3136[label="xwv43002 <= xwv44002",fontsize=16,color="magenta"];3136 -> 3212[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3136 -> 3213[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3137 -> 2403[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3137[label="xwv43002 <= xwv44002",fontsize=16,color="magenta"];3137 -> 3214[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3137 -> 3215[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3138 -> 2404[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3138[label="xwv43002 <= xwv44002",fontsize=16,color="magenta"];3138 -> 3216[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3138 -> 3217[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3139 -> 2405[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3139[label="xwv43002 <= xwv44002",fontsize=16,color="magenta"];3139 -> 3218[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3139 -> 3219[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3140 -> 2406[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3140[label="xwv43002 <= xwv44002",fontsize=16,color="magenta"];3140 -> 3220[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3140 -> 3221[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3141 -> 2407[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3141[label="xwv43002 <= xwv44002",fontsize=16,color="magenta"];3141 -> 3222[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3141 -> 3223[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3142 -> 2408[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3142[label="xwv43002 <= xwv44002",fontsize=16,color="magenta"];3142 -> 3224[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3142 -> 3225[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3143 -> 2409[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3143[label="xwv43002 <= xwv44002",fontsize=16,color="magenta"];3143 -> 3226[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3143 -> 3227[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3144 -> 2410[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3144[label="xwv43002 <= xwv44002",fontsize=16,color="magenta"];3144 -> 3228[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3144 -> 3229[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3145 -> 218[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3145[label="xwv43001 == xwv44001",fontsize=16,color="magenta"];3145 -> 3230[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3145 -> 3231[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3146 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3146[label="xwv43001 == xwv44001",fontsize=16,color="magenta"];3146 -> 3232[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3146 -> 3233[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3147 -> 231[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3147[label="xwv43001 == xwv44001",fontsize=16,color="magenta"];3147 -> 3234[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3147 -> 3235[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3148 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3148[label="xwv43001 == xwv44001",fontsize=16,color="magenta"];3148 -> 3236[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3148 -> 3237[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3149 -> 221[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3149[label="xwv43001 == xwv44001",fontsize=16,color="magenta"];3149 -> 3238[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3149 -> 3239[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3150 -> 227[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3150[label="xwv43001 == xwv44001",fontsize=16,color="magenta"];3150 -> 3240[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3150 -> 3241[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3151 -> 220[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3151[label="xwv43001 == xwv44001",fontsize=16,color="magenta"];3151 -> 3242[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3151 -> 3243[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3152 -> 229[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3152[label="xwv43001 == xwv44001",fontsize=16,color="magenta"];3152 -> 3244[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3152 -> 3245[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3153 -> 219[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3153[label="xwv43001 == xwv44001",fontsize=16,color="magenta"];3153 -> 3246[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3153 -> 3247[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3154 -> 224[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3154[label="xwv43001 == xwv44001",fontsize=16,color="magenta"];3154 -> 3248[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3154 -> 3249[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3155 -> 226[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3155[label="xwv43001 == xwv44001",fontsize=16,color="magenta"];3155 -> 3250[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3155 -> 3251[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3156 -> 225[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3156[label="xwv43001 == xwv44001",fontsize=16,color="magenta"];3156 -> 3252[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3156 -> 3253[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3157 -> 223[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3157[label="xwv43001 == xwv44001",fontsize=16,color="magenta"];3157 -> 3254[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3157 -> 3255[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3158 -> 230[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3158[label="xwv43001 == xwv44001",fontsize=16,color="magenta"];3158 -> 3256[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3158 -> 3257[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2125[label="primCmpNat (Succ xwv4300) xwv440",fontsize=16,color="burlywood",shape="box"];5254[label="xwv440/Succ xwv4400",fontsize=10,color="white",style="solid",shape="box"];2125 -> 5254[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5254 -> 2291[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5255[label="xwv440/Zero",fontsize=10,color="white",style="solid",shape="box"];2125 -> 5255[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5255 -> 2292[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 2126[label="primCmpNat Zero xwv440",fontsize=16,color="burlywood",shape="box"];5256[label="xwv440/Succ xwv4400",fontsize=10,color="white",style="solid",shape="box"];2126 -> 5256[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5256 -> 2293[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5257[label="xwv440/Zero",fontsize=10,color="white",style="solid",shape="box"];2126 -> 5257[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5257 -> 2294[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3159 -> 1310[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3159[label="compare (xwv43000 * Pos xwv440010) (Pos xwv430010 * xwv44000)",fontsize=16,color="magenta"];3159 -> 3258[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3159 -> 3259[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3160 -> 1310[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3160[label="compare (xwv43000 * Pos xwv440010) (Neg xwv430010 * xwv44000)",fontsize=16,color="magenta"];3160 -> 3260[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3160 -> 3261[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3161 -> 1310[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3161[label="compare (xwv43000 * Neg xwv440010) (Pos xwv430010 * xwv44000)",fontsize=16,color="magenta"];3161 -> 3262[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3161 -> 3263[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3162 -> 1310[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3162[label="compare (xwv43000 * Neg xwv440010) (Neg xwv430010 * xwv44000)",fontsize=16,color="magenta"];3162 -> 3264[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3162 -> 3265[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3163 -> 1310[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3163[label="compare (xwv43000 * Pos xwv440010) (Pos xwv430010 * xwv44000)",fontsize=16,color="magenta"];3163 -> 3266[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3163 -> 3267[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3164 -> 1310[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3164[label="compare (xwv43000 * Pos xwv440010) (Neg xwv430010 * xwv44000)",fontsize=16,color="magenta"];3164 -> 3268[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3164 -> 3269[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3165 -> 1310[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3165[label="compare (xwv43000 * Neg xwv440010) (Pos xwv430010 * xwv44000)",fontsize=16,color="magenta"];3165 -> 3270[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3165 -> 3271[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3166 -> 1310[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3166[label="compare (xwv43000 * Neg xwv440010) (Neg xwv430010 * xwv44000)",fontsize=16,color="magenta"];3166 -> 3272[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3166 -> 3273[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2265 -> 3670[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2265[label="FiniteMap.mkBalBranch (FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)) (FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)) (FiniteMap.deleteMax (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)) (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174)",fontsize=16,color="magenta"];2265 -> 3715[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2265 -> 3716[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2265 -> 3717[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2265 -> 3718[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3737[label="FiniteMap.deleteMin (FiniteMap.Branch xwv170 xwv171 xwv172 FiniteMap.EmptyFM xwv174)",fontsize=16,color="black",shape="box"];3737 -> 3746[label="",style="solid", color="black", weight=3]; 31.62/12.86 3738[label="FiniteMap.deleteMin (FiniteMap.Branch xwv170 xwv171 xwv172 (FiniteMap.Branch xwv1730 xwv1731 xwv1732 xwv1733 xwv1734) xwv174)",fontsize=16,color="black",shape="box"];3738 -> 3747[label="",style="solid", color="black", weight=3]; 31.62/12.86 3739[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.glueBal2Vv3 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164))",fontsize=16,color="black",shape="box"];3739 -> 3748[label="",style="solid", color="black", weight=3]; 31.62/12.86 3740[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.glueBal2Vv3 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164))",fontsize=16,color="black",shape="box"];3740 -> 3749[label="",style="solid", color="black", weight=3]; 31.62/12.86 2369[label="primPlusNat (Succ xwv33200) xwv1310",fontsize=16,color="burlywood",shape="box"];5258[label="xwv1310/Succ xwv13100",fontsize=10,color="white",style="solid",shape="box"];2369 -> 5258[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5258 -> 2497[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5259[label="xwv1310/Zero",fontsize=10,color="white",style="solid",shape="box"];2369 -> 5259[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5259 -> 2498[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 2370[label="primPlusNat Zero xwv1310",fontsize=16,color="burlywood",shape="box"];5260[label="xwv1310/Succ xwv13100",fontsize=10,color="white",style="solid",shape="box"];2370 -> 5260[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5260 -> 2499[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5261[label="xwv1310/Zero",fontsize=10,color="white",style="solid",shape="box"];2370 -> 5261[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5261 -> 2500[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3948 -> 3875[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3948[label="primMinusNat xwv31900 xwv32000",fontsize=16,color="magenta"];3948 -> 3976[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3948 -> 3977[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3949[label="Pos (Succ xwv31900)",fontsize=16,color="green",shape="box"];3950[label="Neg (Succ xwv32000)",fontsize=16,color="green",shape="box"];3951[label="Pos Zero",fontsize=16,color="green",shape="box"];2287[label="Zero",fontsize=16,color="green",shape="box"];2288[label="Succ xwv4400",fontsize=16,color="green",shape="box"];2289[label="Succ xwv4400",fontsize=16,color="green",shape="box"];2290[label="Zero",fontsize=16,color="green",shape="box"];4496[label="Succ Zero",fontsize=16,color="green",shape="box"];4497[label="xwv315",fontsize=16,color="green",shape="box"];4498[label="xwv171",fontsize=16,color="green",shape="box"];4499[label="xwv170",fontsize=16,color="green",shape="box"];4500[label="xwv174",fontsize=16,color="green",shape="box"];3953 -> 3978[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3953[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv170 xwv171 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 xwv3150 xwv3151 xwv3152 xwv3153 xwv3154 (FiniteMap.sizeFM xwv3154 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3153)",fontsize=16,color="magenta"];3953 -> 3979[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3954[label="xwv1743",fontsize=16,color="green",shape="box"];3955[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3956 -> 1532[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3956[label="FiniteMap.sizeFM xwv1744",fontsize=16,color="magenta"];3956 -> 3980[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3957[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv170 xwv171 xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) xwv1740 xwv1741 xwv1742 xwv1743 xwv1744 otherwise",fontsize=16,color="black",shape="box"];3957 -> 3981[label="",style="solid", color="black", weight=3]; 31.62/12.86 3958[label="FiniteMap.mkBalBranch6Single_L xwv170 xwv171 xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744)",fontsize=16,color="black",shape="box"];3958 -> 3982[label="",style="solid", color="black", weight=3]; 31.62/12.86 4602[label="FiniteMap.mkBranchLeft_size xwv436 xwv433 xwv435",fontsize=16,color="black",shape="box"];4602 -> 4606[label="",style="solid", color="black", weight=3]; 31.62/12.86 4603[label="Succ Zero",fontsize=16,color="green",shape="box"];4604 -> 3838[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4604[label="primPlusInt (Pos xwv4370) (FiniteMap.sizeFM xwv436)",fontsize=16,color="magenta"];4604 -> 4607[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4604 -> 4608[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4605 -> 3840[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4605[label="primPlusInt (Neg xwv4370) (FiniteMap.sizeFM xwv436)",fontsize=16,color="magenta"];4605 -> 4609[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4605 -> 4610[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2166 -> 1552[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2166[label="primMulNat xwv400100 (Succ xwv300000)",fontsize=16,color="magenta"];2166 -> 2295[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2166 -> 2296[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2165[label="primPlusNat xwv140 (Succ xwv300000)",fontsize=16,color="burlywood",shape="triangle"];5262[label="xwv140/Succ xwv1400",fontsize=10,color="white",style="solid",shape="box"];2165 -> 5262[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5262 -> 2297[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5263[label="xwv140/Zero",fontsize=10,color="white",style="solid",shape="box"];2165 -> 5263[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5263 -> 2298[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3167[label="Integer xwv430000 * Integer xwv440010",fontsize=16,color="black",shape="box"];3167 -> 3274[label="",style="solid", color="black", weight=3]; 31.62/12.86 3168 -> 1310[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3168[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];3168 -> 3275[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3168 -> 3276[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3169 -> 2938[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3169[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];3169 -> 3277[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3169 -> 3278[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3170 -> 2522[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3170[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];3170 -> 3279[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3170 -> 3280[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3171 -> 2942[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3171[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];3171 -> 3281[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3171 -> 3282[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3172 -> 2523[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3172[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];3172 -> 3283[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3172 -> 3284[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3173 -> 2946[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3173[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];3173 -> 3285[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3173 -> 3286[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3174 -> 2524[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3174[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];3174 -> 3287[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3174 -> 3288[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3175 -> 2950[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3175[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];3175 -> 3289[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3175 -> 3290[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3176 -> 2952[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3176[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];3176 -> 3291[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3176 -> 3292[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3177 -> 2525[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3177[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];3177 -> 3293[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3177 -> 3294[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3178 -> 2526[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3178[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];3178 -> 3295[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3178 -> 3296[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3179 -> 2527[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3179[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];3179 -> 3297[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3179 -> 3298[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3180 -> 2528[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3180[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];3180 -> 3299[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3180 -> 3300[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3181 -> 2962[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3181[label="compare xwv43000 xwv44000",fontsize=16,color="magenta"];3181 -> 3301[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3181 -> 3302[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3182[label="primCompAux0 xwv186 LT",fontsize=16,color="black",shape="box"];3182 -> 3303[label="",style="solid", color="black", weight=3]; 31.62/12.86 3183[label="primCompAux0 xwv186 EQ",fontsize=16,color="black",shape="box"];3183 -> 3304[label="",style="solid", color="black", weight=3]; 31.62/12.86 3184[label="primCompAux0 xwv186 GT",fontsize=16,color="black",shape="box"];3184 -> 3305[label="",style="solid", color="black", weight=3]; 31.62/12.86 3196 -> 2189[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3196[label="compare2 xwv43000 xwv44000 (xwv43000 == xwv44000)",fontsize=16,color="magenta"];3196 -> 3318[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3196 -> 3319[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3196 -> 3320[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3197 -> 3321[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3197[label="compare2 xwv43000 xwv44000 (xwv43000 == xwv44000)",fontsize=16,color="magenta"];3197 -> 3322[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3198 -> 3323[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3198[label="compare2 xwv43000 xwv44000 (xwv43000 == xwv44000)",fontsize=16,color="magenta"];3198 -> 3324[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3199 -> 3325[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3199[label="compare2 xwv43000 xwv44000 (xwv43000 == xwv44000)",fontsize=16,color="magenta"];3199 -> 3326[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3200 -> 3327[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3200[label="compare2 xwv43000 xwv44000 (xwv43000 == xwv44000)",fontsize=16,color="magenta"];3200 -> 3328[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3201 -> 3329[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3201[label="compare2 xwv43000 xwv44000 (xwv43000 == xwv44000)",fontsize=16,color="magenta"];3201 -> 3330[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3202[label="xwv43002",fontsize=16,color="green",shape="box"];3203[label="xwv44002",fontsize=16,color="green",shape="box"];3204[label="xwv43002",fontsize=16,color="green",shape="box"];3205[label="xwv44002",fontsize=16,color="green",shape="box"];3206[label="xwv43002",fontsize=16,color="green",shape="box"];3207[label="xwv44002",fontsize=16,color="green",shape="box"];3208[label="xwv43002",fontsize=16,color="green",shape="box"];3209[label="xwv44002",fontsize=16,color="green",shape="box"];3210[label="xwv43002",fontsize=16,color="green",shape="box"];3211[label="xwv44002",fontsize=16,color="green",shape="box"];3212[label="xwv43002",fontsize=16,color="green",shape="box"];3213[label="xwv44002",fontsize=16,color="green",shape="box"];3214[label="xwv43002",fontsize=16,color="green",shape="box"];3215[label="xwv44002",fontsize=16,color="green",shape="box"];3216[label="xwv43002",fontsize=16,color="green",shape="box"];3217[label="xwv44002",fontsize=16,color="green",shape="box"];3218[label="xwv43002",fontsize=16,color="green",shape="box"];3219[label="xwv44002",fontsize=16,color="green",shape="box"];3220[label="xwv43002",fontsize=16,color="green",shape="box"];3221[label="xwv44002",fontsize=16,color="green",shape="box"];3222[label="xwv43002",fontsize=16,color="green",shape="box"];3223[label="xwv44002",fontsize=16,color="green",shape="box"];3224[label="xwv43002",fontsize=16,color="green",shape="box"];3225[label="xwv44002",fontsize=16,color="green",shape="box"];3226[label="xwv43002",fontsize=16,color="green",shape="box"];3227[label="xwv44002",fontsize=16,color="green",shape="box"];3228[label="xwv43002",fontsize=16,color="green",shape="box"];3229[label="xwv44002",fontsize=16,color="green",shape="box"];3230[label="xwv44001",fontsize=16,color="green",shape="box"];3231[label="xwv43001",fontsize=16,color="green",shape="box"];3232[label="xwv44001",fontsize=16,color="green",shape="box"];3233[label="xwv43001",fontsize=16,color="green",shape="box"];3234[label="xwv44001",fontsize=16,color="green",shape="box"];3235[label="xwv43001",fontsize=16,color="green",shape="box"];3236[label="xwv44001",fontsize=16,color="green",shape="box"];3237[label="xwv43001",fontsize=16,color="green",shape="box"];3238[label="xwv44001",fontsize=16,color="green",shape="box"];3239[label="xwv43001",fontsize=16,color="green",shape="box"];3240[label="xwv44001",fontsize=16,color="green",shape="box"];3241[label="xwv43001",fontsize=16,color="green",shape="box"];3242[label="xwv44001",fontsize=16,color="green",shape="box"];3243[label="xwv43001",fontsize=16,color="green",shape="box"];3244[label="xwv44001",fontsize=16,color="green",shape="box"];3245[label="xwv43001",fontsize=16,color="green",shape="box"];3246[label="xwv44001",fontsize=16,color="green",shape="box"];3247[label="xwv43001",fontsize=16,color="green",shape="box"];3248[label="xwv44001",fontsize=16,color="green",shape="box"];3249[label="xwv43001",fontsize=16,color="green",shape="box"];3250[label="xwv44001",fontsize=16,color="green",shape="box"];3251[label="xwv43001",fontsize=16,color="green",shape="box"];3252[label="xwv44001",fontsize=16,color="green",shape="box"];3253[label="xwv43001",fontsize=16,color="green",shape="box"];3254[label="xwv44001",fontsize=16,color="green",shape="box"];3255[label="xwv43001",fontsize=16,color="green",shape="box"];3256[label="xwv44001",fontsize=16,color="green",shape="box"];3257[label="xwv43001",fontsize=16,color="green",shape="box"];2291[label="primCmpNat (Succ xwv4300) (Succ xwv4400)",fontsize=16,color="black",shape="box"];2291 -> 2383[label="",style="solid", color="black", weight=3]; 31.62/12.86 2292[label="primCmpNat (Succ xwv4300) Zero",fontsize=16,color="black",shape="box"];2292 -> 2384[label="",style="solid", color="black", weight=3]; 31.62/12.86 2293[label="primCmpNat Zero (Succ xwv4400)",fontsize=16,color="black",shape="box"];2293 -> 2385[label="",style="solid", color="black", weight=3]; 31.62/12.86 2294[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2294 -> 2386[label="",style="solid", color="black", weight=3]; 31.62/12.86 3258 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3258[label="Pos xwv430010 * xwv44000",fontsize=16,color="magenta"];3258 -> 3331[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3258 -> 3332[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3259 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3259[label="xwv43000 * Pos xwv440010",fontsize=16,color="magenta"];3259 -> 3333[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3259 -> 3334[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3260 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3260[label="Neg xwv430010 * xwv44000",fontsize=16,color="magenta"];3260 -> 3335[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3260 -> 3336[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3261 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3261[label="xwv43000 * Pos xwv440010",fontsize=16,color="magenta"];3261 -> 3337[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3261 -> 3338[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3262 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3262[label="Pos xwv430010 * xwv44000",fontsize=16,color="magenta"];3262 -> 3339[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3262 -> 3340[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3263 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3263[label="xwv43000 * Neg xwv440010",fontsize=16,color="magenta"];3263 -> 3341[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3263 -> 3342[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3264 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3264[label="Neg xwv430010 * xwv44000",fontsize=16,color="magenta"];3264 -> 3343[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3264 -> 3344[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3265 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3265[label="xwv43000 * Neg xwv440010",fontsize=16,color="magenta"];3265 -> 3345[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3265 -> 3346[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3266 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3266[label="Pos xwv430010 * xwv44000",fontsize=16,color="magenta"];3266 -> 3347[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3266 -> 3348[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3267 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3267[label="xwv43000 * Pos xwv440010",fontsize=16,color="magenta"];3267 -> 3349[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3267 -> 3350[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3268 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3268[label="Neg xwv430010 * xwv44000",fontsize=16,color="magenta"];3268 -> 3351[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3268 -> 3352[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3269 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3269[label="xwv43000 * Pos xwv440010",fontsize=16,color="magenta"];3269 -> 3353[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3269 -> 3354[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3270 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3270[label="Pos xwv430010 * xwv44000",fontsize=16,color="magenta"];3270 -> 3355[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3270 -> 3356[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3271 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3271[label="xwv43000 * Neg xwv440010",fontsize=16,color="magenta"];3271 -> 3357[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3271 -> 3358[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3272 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3272[label="Neg xwv430010 * xwv44000",fontsize=16,color="magenta"];3272 -> 3359[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3272 -> 3360[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3273 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3273[label="xwv43000 * Neg xwv440010",fontsize=16,color="magenta"];3273 -> 3361[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3273 -> 3362[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3715[label="FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174",fontsize=16,color="green",shape="box"];3716[label="FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)",fontsize=16,color="black",shape="box"];3716 -> 3741[label="",style="solid", color="black", weight=3]; 31.62/12.86 3717[label="FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)",fontsize=16,color="black",shape="box"];3717 -> 3742[label="",style="solid", color="black", weight=3]; 31.62/12.86 3718[label="FiniteMap.deleteMax (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)",fontsize=16,color="burlywood",shape="triangle"];5264[label="xwv164/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3718 -> 5264[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5264 -> 3743[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5265[label="xwv164/FiniteMap.Branch xwv1640 xwv1641 xwv1642 xwv1643 xwv1644",fontsize=10,color="white",style="solid",shape="box"];3718 -> 5265[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5265 -> 3744[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3746[label="xwv174",fontsize=16,color="green",shape="box"];3747 -> 3670[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3747[label="FiniteMap.mkBalBranch xwv170 xwv171 (FiniteMap.deleteMin (FiniteMap.Branch xwv1730 xwv1731 xwv1732 xwv1733 xwv1734)) xwv174",fontsize=16,color="magenta"];3747 -> 3760[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3748 -> 4006[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3748[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.findMin (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174))",fontsize=16,color="magenta"];3748 -> 4007[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3748 -> 4008[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3748 -> 4009[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3748 -> 4010[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3748 -> 4011[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3748 -> 4012[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3748 -> 4013[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3748 -> 4014[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3748 -> 4015[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3748 -> 4016[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3748 -> 4017[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3748 -> 4018[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3748 -> 4019[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3748 -> 4020[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3748 -> 4021[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3749 -> 4109[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3749[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.findMin (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174))",fontsize=16,color="magenta"];3749 -> 4110[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3749 -> 4111[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3749 -> 4112[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3749 -> 4113[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3749 -> 4114[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3749 -> 4115[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3749 -> 4116[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3749 -> 4117[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3749 -> 4118[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3749 -> 4119[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3749 -> 4120[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3749 -> 4121[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3749 -> 4122[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3749 -> 4123[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3749 -> 4124[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2497[label="primPlusNat (Succ xwv33200) (Succ xwv13100)",fontsize=16,color="black",shape="box"];2497 -> 2913[label="",style="solid", color="black", weight=3]; 31.62/12.86 2498[label="primPlusNat (Succ xwv33200) Zero",fontsize=16,color="black",shape="box"];2498 -> 2914[label="",style="solid", color="black", weight=3]; 31.62/12.86 2499[label="primPlusNat Zero (Succ xwv13100)",fontsize=16,color="black",shape="box"];2499 -> 2915[label="",style="solid", color="black", weight=3]; 31.62/12.86 2500[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2500 -> 2916[label="",style="solid", color="black", weight=3]; 31.62/12.86 3976[label="xwv31900",fontsize=16,color="green",shape="box"];3977[label="xwv32000",fontsize=16,color="green",shape="box"];3979 -> 1489[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3979[label="FiniteMap.sizeFM xwv3154 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3153",fontsize=16,color="magenta"];3979 -> 3986[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3979 -> 3987[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3978[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv170 xwv171 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 xwv3150 xwv3151 xwv3152 xwv3153 xwv3154 xwv332",fontsize=16,color="burlywood",shape="triangle"];5266[label="xwv332/False",fontsize=10,color="white",style="solid",shape="box"];3978 -> 5266[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5266 -> 3988[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5267[label="xwv332/True",fontsize=10,color="white",style="solid",shape="box"];3978 -> 5267[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5267 -> 3989[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3980[label="xwv1744",fontsize=16,color="green",shape="box"];3981[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv170 xwv171 xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) xwv1740 xwv1741 xwv1742 xwv1743 xwv1744 True",fontsize=16,color="black",shape="box"];3981 -> 3998[label="",style="solid", color="black", weight=3]; 31.62/12.86 3982 -> 4490[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3982[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xwv1740 xwv1741 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv170 xwv171 xwv315 xwv1743) xwv1744",fontsize=16,color="magenta"];3982 -> 4501[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3982 -> 4502[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3982 -> 4503[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3982 -> 4504[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3982 -> 4505[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4606[label="FiniteMap.sizeFM xwv435",fontsize=16,color="burlywood",shape="triangle"];5268[label="xwv435/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4606 -> 5268[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5268 -> 4611[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5269[label="xwv435/FiniteMap.Branch xwv4350 xwv4351 xwv4352 xwv4353 xwv4354",fontsize=10,color="white",style="solid",shape="box"];4606 -> 5269[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5269 -> 4612[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 4607 -> 4606[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4607[label="FiniteMap.sizeFM xwv436",fontsize=16,color="magenta"];4607 -> 4613[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4608[label="xwv4370",fontsize=16,color="green",shape="box"];4609 -> 4606[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4609[label="FiniteMap.sizeFM xwv436",fontsize=16,color="magenta"];4609 -> 4614[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4610[label="xwv4370",fontsize=16,color="green",shape="box"];2295[label="xwv400100",fontsize=16,color="green",shape="box"];2296[label="Succ xwv300000",fontsize=16,color="green",shape="box"];2297[label="primPlusNat (Succ xwv1400) (Succ xwv300000)",fontsize=16,color="black",shape="box"];2297 -> 2381[label="",style="solid", color="black", weight=3]; 31.62/12.86 2298[label="primPlusNat Zero (Succ xwv300000)",fontsize=16,color="black",shape="box"];2298 -> 2382[label="",style="solid", color="black", weight=3]; 31.62/12.86 3274[label="Integer (primMulInt xwv430000 xwv440010)",fontsize=16,color="green",shape="box"];3274 -> 3363[label="",style="dashed", color="green", weight=3]; 31.62/12.86 3275[label="xwv44000",fontsize=16,color="green",shape="box"];3276[label="xwv43000",fontsize=16,color="green",shape="box"];3277[label="xwv44000",fontsize=16,color="green",shape="box"];3278[label="xwv43000",fontsize=16,color="green",shape="box"];3279[label="xwv43000",fontsize=16,color="green",shape="box"];3280[label="xwv44000",fontsize=16,color="green",shape="box"];3281[label="xwv44000",fontsize=16,color="green",shape="box"];3282[label="xwv43000",fontsize=16,color="green",shape="box"];3283[label="xwv43000",fontsize=16,color="green",shape="box"];3284[label="xwv44000",fontsize=16,color="green",shape="box"];3285[label="xwv44000",fontsize=16,color="green",shape="box"];3286[label="xwv43000",fontsize=16,color="green",shape="box"];3287[label="xwv43000",fontsize=16,color="green",shape="box"];3288[label="xwv44000",fontsize=16,color="green",shape="box"];3289[label="xwv44000",fontsize=16,color="green",shape="box"];3290[label="xwv43000",fontsize=16,color="green",shape="box"];3291[label="xwv44000",fontsize=16,color="green",shape="box"];3292[label="xwv43000",fontsize=16,color="green",shape="box"];3293[label="xwv43000",fontsize=16,color="green",shape="box"];3294[label="xwv44000",fontsize=16,color="green",shape="box"];3295[label="xwv43000",fontsize=16,color="green",shape="box"];3296[label="xwv44000",fontsize=16,color="green",shape="box"];3297[label="xwv43000",fontsize=16,color="green",shape="box"];3298[label="xwv44000",fontsize=16,color="green",shape="box"];3299[label="xwv43000",fontsize=16,color="green",shape="box"];3300[label="xwv44000",fontsize=16,color="green",shape="box"];3301[label="xwv44000",fontsize=16,color="green",shape="box"];3302[label="xwv43000",fontsize=16,color="green",shape="box"];3303[label="LT",fontsize=16,color="green",shape="box"];3304[label="xwv186",fontsize=16,color="green",shape="box"];3305[label="GT",fontsize=16,color="green",shape="box"];3318[label="xwv43000",fontsize=16,color="green",shape="box"];3319 -> 222[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3319[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];3319 -> 3364[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3319 -> 3365[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3320[label="xwv44000",fontsize=16,color="green",shape="box"];3322 -> 60[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3322[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];3322 -> 3366[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3322 -> 3367[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3321[label="compare2 xwv43000 xwv44000 xwv209",fontsize=16,color="burlywood",shape="triangle"];5270[label="xwv209/False",fontsize=10,color="white",style="solid",shape="box"];3321 -> 5270[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5270 -> 3368[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5271[label="xwv209/True",fontsize=10,color="white",style="solid",shape="box"];3321 -> 5271[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5271 -> 3369[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3324 -> 227[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3324[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];3324 -> 3370[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3324 -> 3371[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3323[label="compare2 xwv43000 xwv44000 xwv210",fontsize=16,color="burlywood",shape="triangle"];5272[label="xwv210/False",fontsize=10,color="white",style="solid",shape="box"];3323 -> 5272[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5272 -> 3372[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5273[label="xwv210/True",fontsize=10,color="white",style="solid",shape="box"];3323 -> 5273[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5273 -> 3373[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3326 -> 229[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3326[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];3326 -> 3374[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3326 -> 3375[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3325[label="compare2 xwv43000 xwv44000 xwv211",fontsize=16,color="burlywood",shape="triangle"];5274[label="xwv211/False",fontsize=10,color="white",style="solid",shape="box"];3325 -> 5274[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5274 -> 3376[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5275[label="xwv211/True",fontsize=10,color="white",style="solid",shape="box"];3325 -> 5275[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5275 -> 3377[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3328 -> 219[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3328[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];3328 -> 3378[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3328 -> 3379[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3327[label="compare2 xwv43000 xwv44000 xwv212",fontsize=16,color="burlywood",shape="triangle"];5276[label="xwv212/False",fontsize=10,color="white",style="solid",shape="box"];3327 -> 5276[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5276 -> 3380[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5277[label="xwv212/True",fontsize=10,color="white",style="solid",shape="box"];3327 -> 5277[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5277 -> 3381[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3330 -> 230[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3330[label="xwv43000 == xwv44000",fontsize=16,color="magenta"];3330 -> 3382[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3330 -> 3383[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3329[label="compare2 xwv43000 xwv44000 xwv213",fontsize=16,color="burlywood",shape="triangle"];5278[label="xwv213/False",fontsize=10,color="white",style="solid",shape="box"];3329 -> 5278[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5278 -> 3384[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5279[label="xwv213/True",fontsize=10,color="white",style="solid",shape="box"];3329 -> 5279[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5279 -> 3385[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 2383 -> 1995[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2383[label="primCmpNat xwv4300 xwv4400",fontsize=16,color="magenta"];2383 -> 2518[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2383 -> 2519[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2384[label="GT",fontsize=16,color="green",shape="box"];2385[label="LT",fontsize=16,color="green",shape="box"];2386[label="EQ",fontsize=16,color="green",shape="box"];3331[label="Pos xwv430010",fontsize=16,color="green",shape="box"];3332[label="xwv44000",fontsize=16,color="green",shape="box"];3333[label="xwv43000",fontsize=16,color="green",shape="box"];3334[label="Pos xwv440010",fontsize=16,color="green",shape="box"];3335[label="Neg xwv430010",fontsize=16,color="green",shape="box"];3336[label="xwv44000",fontsize=16,color="green",shape="box"];3337[label="xwv43000",fontsize=16,color="green",shape="box"];3338[label="Pos xwv440010",fontsize=16,color="green",shape="box"];3339[label="Pos xwv430010",fontsize=16,color="green",shape="box"];3340[label="xwv44000",fontsize=16,color="green",shape="box"];3341[label="xwv43000",fontsize=16,color="green",shape="box"];3342[label="Neg xwv440010",fontsize=16,color="green",shape="box"];3343[label="Neg xwv430010",fontsize=16,color="green",shape="box"];3344[label="xwv44000",fontsize=16,color="green",shape="box"];3345[label="xwv43000",fontsize=16,color="green",shape="box"];3346[label="Neg xwv440010",fontsize=16,color="green",shape="box"];3347[label="Pos xwv430010",fontsize=16,color="green",shape="box"];3348[label="xwv44000",fontsize=16,color="green",shape="box"];3349[label="xwv43000",fontsize=16,color="green",shape="box"];3350[label="Pos xwv440010",fontsize=16,color="green",shape="box"];3351[label="Neg xwv430010",fontsize=16,color="green",shape="box"];3352[label="xwv44000",fontsize=16,color="green",shape="box"];3353[label="xwv43000",fontsize=16,color="green",shape="box"];3354[label="Pos xwv440010",fontsize=16,color="green",shape="box"];3355[label="Pos xwv430010",fontsize=16,color="green",shape="box"];3356[label="xwv44000",fontsize=16,color="green",shape="box"];3357[label="xwv43000",fontsize=16,color="green",shape="box"];3358[label="Neg xwv440010",fontsize=16,color="green",shape="box"];3359[label="Neg xwv430010",fontsize=16,color="green",shape="box"];3360[label="xwv44000",fontsize=16,color="green",shape="box"];3361[label="xwv43000",fontsize=16,color="green",shape="box"];3362[label="Neg xwv440010",fontsize=16,color="green",shape="box"];3741[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.glueBal2Vv2 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164))",fontsize=16,color="black",shape="box"];3741 -> 3750[label="",style="solid", color="black", weight=3]; 31.62/12.86 3742[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.glueBal2Vv2 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164))",fontsize=16,color="black",shape="box"];3742 -> 3751[label="",style="solid", color="black", weight=3]; 31.62/12.86 3743[label="FiniteMap.deleteMax (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 FiniteMap.EmptyFM)",fontsize=16,color="black",shape="box"];3743 -> 3752[label="",style="solid", color="black", weight=3]; 31.62/12.86 3744[label="FiniteMap.deleteMax (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 (FiniteMap.Branch xwv1640 xwv1641 xwv1642 xwv1643 xwv1644))",fontsize=16,color="black",shape="box"];3744 -> 3753[label="",style="solid", color="black", weight=3]; 31.62/12.86 3760 -> 3711[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3760[label="FiniteMap.deleteMin (FiniteMap.Branch xwv1730 xwv1731 xwv1732 xwv1733 xwv1734)",fontsize=16,color="magenta"];3760 -> 3776[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3760 -> 3777[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3760 -> 3778[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3760 -> 3779[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3760 -> 3780[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4007[label="xwv170",fontsize=16,color="green",shape="box"];4008[label="xwv174",fontsize=16,color="green",shape="box"];4009[label="xwv171",fontsize=16,color="green",shape="box"];4010[label="xwv171",fontsize=16,color="green",shape="box"];4011[label="xwv173",fontsize=16,color="green",shape="box"];4012[label="xwv173",fontsize=16,color="green",shape="box"];4013[label="xwv172",fontsize=16,color="green",shape="box"];4014[label="xwv174",fontsize=16,color="green",shape="box"];4015[label="xwv160",fontsize=16,color="green",shape="box"];4016[label="xwv162",fontsize=16,color="green",shape="box"];4017[label="xwv161",fontsize=16,color="green",shape="box"];4018[label="xwv170",fontsize=16,color="green",shape="box"];4019[label="xwv172",fontsize=16,color="green",shape="box"];4020[label="xwv163",fontsize=16,color="green",shape="box"];4021[label="xwv164",fontsize=16,color="green",shape="box"];4006[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv337 xwv338 xwv339 xwv340 xwv341) (FiniteMap.Branch xwv342 xwv343 xwv344 xwv345 xwv346) (FiniteMap.findMin (FiniteMap.Branch xwv347 xwv348 xwv349 xwv350 xwv351))",fontsize=16,color="burlywood",shape="triangle"];5280[label="xwv350/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4006 -> 5280[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5280 -> 4097[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5281[label="xwv350/FiniteMap.Branch xwv3500 xwv3501 xwv3502 xwv3503 xwv3504",fontsize=10,color="white",style="solid",shape="box"];4006 -> 5281[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5281 -> 4098[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 4110[label="xwv171",fontsize=16,color="green",shape="box"];4111[label="xwv161",fontsize=16,color="green",shape="box"];4112[label="xwv163",fontsize=16,color="green",shape="box"];4113[label="xwv171",fontsize=16,color="green",shape="box"];4114[label="xwv170",fontsize=16,color="green",shape="box"];4115[label="xwv164",fontsize=16,color="green",shape="box"];4116[label="xwv173",fontsize=16,color="green",shape="box"];4117[label="xwv172",fontsize=16,color="green",shape="box"];4118[label="xwv162",fontsize=16,color="green",shape="box"];4119[label="xwv170",fontsize=16,color="green",shape="box"];4120[label="xwv172",fontsize=16,color="green",shape="box"];4121[label="xwv173",fontsize=16,color="green",shape="box"];4122[label="xwv160",fontsize=16,color="green",shape="box"];4123[label="xwv174",fontsize=16,color="green",shape="box"];4124[label="xwv174",fontsize=16,color="green",shape="box"];4109[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv353 xwv354 xwv355 xwv356 xwv357) (FiniteMap.Branch xwv358 xwv359 xwv360 xwv361 xwv362) (FiniteMap.findMin (FiniteMap.Branch xwv363 xwv364 xwv365 xwv366 xwv367))",fontsize=16,color="burlywood",shape="triangle"];5282[label="xwv366/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4109 -> 5282[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5282 -> 4200[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5283[label="xwv366/FiniteMap.Branch xwv3660 xwv3661 xwv3662 xwv3663 xwv3664",fontsize=10,color="white",style="solid",shape="box"];4109 -> 5283[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5283 -> 4201[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 2913[label="Succ (Succ (primPlusNat xwv33200 xwv13100))",fontsize=16,color="green",shape="box"];2913 -> 3388[label="",style="dashed", color="green", weight=3]; 31.62/12.86 2914[label="Succ xwv33200",fontsize=16,color="green",shape="box"];2915[label="Succ xwv13100",fontsize=16,color="green",shape="box"];2916[label="Zero",fontsize=16,color="green",shape="box"];3986 -> 1532[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3986[label="FiniteMap.sizeFM xwv3154",fontsize=16,color="magenta"];3986 -> 4000[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3987 -> 765[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3987[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3153",fontsize=16,color="magenta"];3987 -> 4001[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3987 -> 4002[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3988[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv170 xwv171 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 xwv3150 xwv3151 xwv3152 xwv3153 xwv3154 False",fontsize=16,color="black",shape="box"];3988 -> 4003[label="",style="solid", color="black", weight=3]; 31.62/12.86 3989[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv170 xwv171 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 xwv3150 xwv3151 xwv3152 xwv3153 xwv3154 True",fontsize=16,color="black",shape="box"];3989 -> 4004[label="",style="solid", color="black", weight=3]; 31.62/12.86 3998[label="FiniteMap.mkBalBranch6Double_L xwv170 xwv171 xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744) xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 xwv1743 xwv1744)",fontsize=16,color="burlywood",shape="box"];5284[label="xwv1743/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3998 -> 5284[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5284 -> 4099[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5285[label="xwv1743/FiniteMap.Branch xwv17430 xwv17431 xwv17432 xwv17433 xwv17434",fontsize=10,color="white",style="solid",shape="box"];3998 -> 5285[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5285 -> 4100[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 4501[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4502 -> 4490[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4502[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv170 xwv171 xwv315 xwv1743",fontsize=16,color="magenta"];4502 -> 4547[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4502 -> 4548[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4502 -> 4549[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4502 -> 4550[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4502 -> 4551[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4503[label="xwv1741",fontsize=16,color="green",shape="box"];4504[label="xwv1740",fontsize=16,color="green",shape="box"];4505[label="xwv1744",fontsize=16,color="green",shape="box"];4611[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4611 -> 4615[label="",style="solid", color="black", weight=3]; 31.62/12.86 4612[label="FiniteMap.sizeFM (FiniteMap.Branch xwv4350 xwv4351 xwv4352 xwv4353 xwv4354)",fontsize=16,color="black",shape="box"];4612 -> 4616[label="",style="solid", color="black", weight=3]; 31.62/12.86 4613[label="xwv436",fontsize=16,color="green",shape="box"];4614[label="xwv436",fontsize=16,color="green",shape="box"];2381[label="Succ (Succ (primPlusNat xwv1400 xwv300000))",fontsize=16,color="green",shape="box"];2381 -> 2513[label="",style="dashed", color="green", weight=3]; 31.62/12.86 2382[label="Succ xwv300000",fontsize=16,color="green",shape="box"];3363 -> 1012[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3363[label="primMulInt xwv430000 xwv440010",fontsize=16,color="magenta"];3363 -> 3399[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3363 -> 3400[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3364[label="xwv44000",fontsize=16,color="green",shape="box"];3365[label="xwv43000",fontsize=16,color="green",shape="box"];3366[label="xwv44000",fontsize=16,color="green",shape="box"];3367[label="xwv43000",fontsize=16,color="green",shape="box"];3368[label="compare2 xwv43000 xwv44000 False",fontsize=16,color="black",shape="box"];3368 -> 3401[label="",style="solid", color="black", weight=3]; 31.62/12.86 3369[label="compare2 xwv43000 xwv44000 True",fontsize=16,color="black",shape="box"];3369 -> 3402[label="",style="solid", color="black", weight=3]; 31.62/12.86 3370[label="xwv44000",fontsize=16,color="green",shape="box"];3371[label="xwv43000",fontsize=16,color="green",shape="box"];3372[label="compare2 xwv43000 xwv44000 False",fontsize=16,color="black",shape="box"];3372 -> 3403[label="",style="solid", color="black", weight=3]; 31.62/12.86 3373[label="compare2 xwv43000 xwv44000 True",fontsize=16,color="black",shape="box"];3373 -> 3404[label="",style="solid", color="black", weight=3]; 31.62/12.86 3374[label="xwv44000",fontsize=16,color="green",shape="box"];3375[label="xwv43000",fontsize=16,color="green",shape="box"];3376[label="compare2 xwv43000 xwv44000 False",fontsize=16,color="black",shape="box"];3376 -> 3405[label="",style="solid", color="black", weight=3]; 31.62/12.86 3377[label="compare2 xwv43000 xwv44000 True",fontsize=16,color="black",shape="box"];3377 -> 3406[label="",style="solid", color="black", weight=3]; 31.62/12.86 3378[label="xwv44000",fontsize=16,color="green",shape="box"];3379[label="xwv43000",fontsize=16,color="green",shape="box"];3380[label="compare2 xwv43000 xwv44000 False",fontsize=16,color="black",shape="box"];3380 -> 3407[label="",style="solid", color="black", weight=3]; 31.62/12.86 3381[label="compare2 xwv43000 xwv44000 True",fontsize=16,color="black",shape="box"];3381 -> 3408[label="",style="solid", color="black", weight=3]; 31.62/12.86 3382[label="xwv44000",fontsize=16,color="green",shape="box"];3383[label="xwv43000",fontsize=16,color="green",shape="box"];3384[label="compare2 xwv43000 xwv44000 False",fontsize=16,color="black",shape="box"];3384 -> 3409[label="",style="solid", color="black", weight=3]; 31.62/12.86 3385[label="compare2 xwv43000 xwv44000 True",fontsize=16,color="black",shape="box"];3385 -> 3410[label="",style="solid", color="black", weight=3]; 31.62/12.86 2518[label="xwv4300",fontsize=16,color="green",shape="box"];2519[label="xwv4400",fontsize=16,color="green",shape="box"];3750 -> 4288[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3750[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.findMax (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164))",fontsize=16,color="magenta"];3750 -> 4289[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3750 -> 4290[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3750 -> 4291[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3750 -> 4292[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3750 -> 4293[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3750 -> 4294[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3750 -> 4295[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3750 -> 4296[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3750 -> 4297[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3750 -> 4298[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3750 -> 4299[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3750 -> 4300[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3750 -> 4301[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3750 -> 4302[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3750 -> 4303[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3751 -> 4393[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3751[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv170 xwv171 xwv172 xwv173 xwv174) (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) (FiniteMap.findMax (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164))",fontsize=16,color="magenta"];3751 -> 4394[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3751 -> 4395[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3751 -> 4396[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3751 -> 4397[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3751 -> 4398[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3751 -> 4399[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3751 -> 4400[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3751 -> 4401[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3751 -> 4402[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3751 -> 4403[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3751 -> 4404[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3751 -> 4405[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3751 -> 4406[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3751 -> 4407[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3751 -> 4408[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3752[label="xwv163",fontsize=16,color="green",shape="box"];3753 -> 3670[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3753[label="FiniteMap.mkBalBranch xwv160 xwv161 xwv163 (FiniteMap.deleteMax (FiniteMap.Branch xwv1640 xwv1641 xwv1642 xwv1643 xwv1644))",fontsize=16,color="magenta"];3753 -> 3769[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3753 -> 3770[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3753 -> 3771[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3753 -> 3772[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3776[label="xwv1734",fontsize=16,color="green",shape="box"];3777[label="xwv1733",fontsize=16,color="green",shape="box"];3778[label="xwv1731",fontsize=16,color="green",shape="box"];3779[label="xwv1732",fontsize=16,color="green",shape="box"];3780[label="xwv1730",fontsize=16,color="green",shape="box"];4097[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv337 xwv338 xwv339 xwv340 xwv341) (FiniteMap.Branch xwv342 xwv343 xwv344 xwv345 xwv346) (FiniteMap.findMin (FiniteMap.Branch xwv347 xwv348 xwv349 FiniteMap.EmptyFM xwv351))",fontsize=16,color="black",shape="box"];4097 -> 4202[label="",style="solid", color="black", weight=3]; 31.62/12.86 4098[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv337 xwv338 xwv339 xwv340 xwv341) (FiniteMap.Branch xwv342 xwv343 xwv344 xwv345 xwv346) (FiniteMap.findMin (FiniteMap.Branch xwv347 xwv348 xwv349 (FiniteMap.Branch xwv3500 xwv3501 xwv3502 xwv3503 xwv3504) xwv351))",fontsize=16,color="black",shape="box"];4098 -> 4203[label="",style="solid", color="black", weight=3]; 31.62/12.86 4200[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv353 xwv354 xwv355 xwv356 xwv357) (FiniteMap.Branch xwv358 xwv359 xwv360 xwv361 xwv362) (FiniteMap.findMin (FiniteMap.Branch xwv363 xwv364 xwv365 FiniteMap.EmptyFM xwv367))",fontsize=16,color="black",shape="box"];4200 -> 4217[label="",style="solid", color="black", weight=3]; 31.62/12.86 4201[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv353 xwv354 xwv355 xwv356 xwv357) (FiniteMap.Branch xwv358 xwv359 xwv360 xwv361 xwv362) (FiniteMap.findMin (FiniteMap.Branch xwv363 xwv364 xwv365 (FiniteMap.Branch xwv3660 xwv3661 xwv3662 xwv3663 xwv3664) xwv367))",fontsize=16,color="black",shape="box"];4201 -> 4218[label="",style="solid", color="black", weight=3]; 31.62/12.86 3388 -> 2343[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3388[label="primPlusNat xwv33200 xwv13100",fontsize=16,color="magenta"];3388 -> 3556[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3388 -> 3557[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4000[label="xwv3154",fontsize=16,color="green",shape="box"];4001[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4002 -> 1532[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4002[label="FiniteMap.sizeFM xwv3153",fontsize=16,color="magenta"];4002 -> 4105[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4003[label="FiniteMap.mkBalBranch6MkBalBranch10 xwv170 xwv171 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 xwv3150 xwv3151 xwv3152 xwv3153 xwv3154 otherwise",fontsize=16,color="black",shape="box"];4003 -> 4106[label="",style="solid", color="black", weight=3]; 31.62/12.86 4004[label="FiniteMap.mkBalBranch6Single_R xwv170 xwv171 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174",fontsize=16,color="black",shape="box"];4004 -> 4107[label="",style="solid", color="black", weight=3]; 31.62/12.86 4099[label="FiniteMap.mkBalBranch6Double_L xwv170 xwv171 xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 FiniteMap.EmptyFM xwv1744) xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 FiniteMap.EmptyFM xwv1744)",fontsize=16,color="black",shape="box"];4099 -> 4204[label="",style="solid", color="black", weight=3]; 31.62/12.86 4100[label="FiniteMap.mkBalBranch6Double_L xwv170 xwv171 xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 (FiniteMap.Branch xwv17430 xwv17431 xwv17432 xwv17433 xwv17434) xwv1744) xwv315 (FiniteMap.Branch xwv1740 xwv1741 xwv1742 (FiniteMap.Branch xwv17430 xwv17431 xwv17432 xwv17433 xwv17434) xwv1744)",fontsize=16,color="black",shape="box"];4100 -> 4205[label="",style="solid", color="black", weight=3]; 31.62/12.86 4547[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4548[label="xwv315",fontsize=16,color="green",shape="box"];4549[label="xwv171",fontsize=16,color="green",shape="box"];4550[label="xwv170",fontsize=16,color="green",shape="box"];4551[label="xwv1743",fontsize=16,color="green",shape="box"];4615[label="Pos Zero",fontsize=16,color="green",shape="box"];4616[label="xwv4352",fontsize=16,color="green",shape="box"];2513 -> 2343[label="",style="dashed", color="red", weight=0]; 31.62/12.86 2513[label="primPlusNat xwv1400 xwv300000",fontsize=16,color="magenta"];2513 -> 2926[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2513 -> 2927[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3399[label="xwv430000",fontsize=16,color="green",shape="box"];3400[label="xwv440010",fontsize=16,color="green",shape="box"];3401 -> 3423[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3401[label="compare1 xwv43000 xwv44000 (xwv43000 <= xwv44000)",fontsize=16,color="magenta"];3401 -> 3424[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3402[label="EQ",fontsize=16,color="green",shape="box"];3403 -> 3425[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3403[label="compare1 xwv43000 xwv44000 (xwv43000 <= xwv44000)",fontsize=16,color="magenta"];3403 -> 3426[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3404[label="EQ",fontsize=16,color="green",shape="box"];3405 -> 3427[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3405[label="compare1 xwv43000 xwv44000 (xwv43000 <= xwv44000)",fontsize=16,color="magenta"];3405 -> 3428[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3406[label="EQ",fontsize=16,color="green",shape="box"];3407 -> 3429[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3407[label="compare1 xwv43000 xwv44000 (xwv43000 <= xwv44000)",fontsize=16,color="magenta"];3407 -> 3430[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3408[label="EQ",fontsize=16,color="green",shape="box"];3409 -> 3431[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3409[label="compare1 xwv43000 xwv44000 (xwv43000 <= xwv44000)",fontsize=16,color="magenta"];3409 -> 3432[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3410[label="EQ",fontsize=16,color="green",shape="box"];4289[label="xwv171",fontsize=16,color="green",shape="box"];4290[label="xwv161",fontsize=16,color="green",shape="box"];4291[label="xwv163",fontsize=16,color="green",shape="box"];4292[label="xwv172",fontsize=16,color="green",shape="box"];4293[label="xwv163",fontsize=16,color="green",shape="box"];4294[label="xwv161",fontsize=16,color="green",shape="box"];4295[label="xwv173",fontsize=16,color="green",shape="box"];4296[label="xwv164",fontsize=16,color="green",shape="box"];4297[label="xwv160",fontsize=16,color="green",shape="box"];4298[label="xwv170",fontsize=16,color="green",shape="box"];4299[label="xwv160",fontsize=16,color="green",shape="box"];4300[label="xwv162",fontsize=16,color="green",shape="box"];4301[label="xwv162",fontsize=16,color="green",shape="box"];4302[label="xwv164",fontsize=16,color="green",shape="box"];4303[label="xwv174",fontsize=16,color="green",shape="box"];4288[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv400 xwv401 xwv402 xwv403 xwv404) (FiniteMap.Branch xwv405 xwv406 xwv407 xwv408 xwv409) (FiniteMap.findMax (FiniteMap.Branch xwv410 xwv411 xwv412 xwv413 xwv414))",fontsize=16,color="burlywood",shape="triangle"];5286[label="xwv414/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4288 -> 5286[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5286 -> 4379[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5287[label="xwv414/FiniteMap.Branch xwv4140 xwv4141 xwv4142 xwv4143 xwv4144",fontsize=10,color="white",style="solid",shape="box"];4288 -> 5287[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5287 -> 4380[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 4394[label="xwv161",fontsize=16,color="green",shape="box"];4395[label="xwv164",fontsize=16,color="green",shape="box"];4396[label="xwv160",fontsize=16,color="green",shape="box"];4397[label="xwv160",fontsize=16,color="green",shape="box"];4398[label="xwv163",fontsize=16,color="green",shape="box"];4399[label="xwv162",fontsize=16,color="green",shape="box"];4400[label="xwv163",fontsize=16,color="green",shape="box"];4401[label="xwv171",fontsize=16,color="green",shape="box"];4402[label="xwv170",fontsize=16,color="green",shape="box"];4403[label="xwv164",fontsize=16,color="green",shape="box"];4404[label="xwv161",fontsize=16,color="green",shape="box"];4405[label="xwv173",fontsize=16,color="green",shape="box"];4406[label="xwv174",fontsize=16,color="green",shape="box"];4407[label="xwv172",fontsize=16,color="green",shape="box"];4408[label="xwv162",fontsize=16,color="green",shape="box"];4393[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv416 xwv417 xwv418 xwv419 xwv420) (FiniteMap.Branch xwv421 xwv422 xwv423 xwv424 xwv425) (FiniteMap.findMax (FiniteMap.Branch xwv426 xwv427 xwv428 xwv429 xwv430))",fontsize=16,color="burlywood",shape="triangle"];5288[label="xwv430/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4393 -> 5288[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5288 -> 4484[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5289[label="xwv430/FiniteMap.Branch xwv4300 xwv4301 xwv4302 xwv4303 xwv4304",fontsize=10,color="white",style="solid",shape="box"];4393 -> 5289[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5289 -> 4485[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3769 -> 3718[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3769[label="FiniteMap.deleteMax (FiniteMap.Branch xwv1640 xwv1641 xwv1642 xwv1643 xwv1644)",fontsize=16,color="magenta"];3769 -> 3789[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3769 -> 3790[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3769 -> 3791[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3769 -> 3792[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3769 -> 3793[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3770[label="xwv161",fontsize=16,color="green",shape="box"];3771[label="xwv160",fontsize=16,color="green",shape="box"];3772[label="xwv163",fontsize=16,color="green",shape="box"];4202[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv337 xwv338 xwv339 xwv340 xwv341) (FiniteMap.Branch xwv342 xwv343 xwv344 xwv345 xwv346) (xwv347,xwv348)",fontsize=16,color="black",shape="box"];4202 -> 4219[label="",style="solid", color="black", weight=3]; 31.62/12.86 4203 -> 4006[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4203[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv337 xwv338 xwv339 xwv340 xwv341) (FiniteMap.Branch xwv342 xwv343 xwv344 xwv345 xwv346) (FiniteMap.findMin (FiniteMap.Branch xwv3500 xwv3501 xwv3502 xwv3503 xwv3504))",fontsize=16,color="magenta"];4203 -> 4220[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4203 -> 4221[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4203 -> 4222[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4203 -> 4223[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4203 -> 4224[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4217[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv353 xwv354 xwv355 xwv356 xwv357) (FiniteMap.Branch xwv358 xwv359 xwv360 xwv361 xwv362) (xwv363,xwv364)",fontsize=16,color="black",shape="box"];4217 -> 4237[label="",style="solid", color="black", weight=3]; 31.62/12.86 4218 -> 4109[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4218[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv353 xwv354 xwv355 xwv356 xwv357) (FiniteMap.Branch xwv358 xwv359 xwv360 xwv361 xwv362) (FiniteMap.findMin (FiniteMap.Branch xwv3660 xwv3661 xwv3662 xwv3663 xwv3664))",fontsize=16,color="magenta"];4218 -> 4238[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4218 -> 4239[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4218 -> 4240[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4218 -> 4241[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4218 -> 4242[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3556[label="xwv33200",fontsize=16,color="green",shape="box"];3557[label="xwv13100",fontsize=16,color="green",shape="box"];4105[label="xwv3153",fontsize=16,color="green",shape="box"];4106[label="FiniteMap.mkBalBranch6MkBalBranch10 xwv170 xwv171 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 xwv3150 xwv3151 xwv3152 xwv3153 xwv3154 True",fontsize=16,color="black",shape="box"];4106 -> 4207[label="",style="solid", color="black", weight=3]; 31.62/12.86 4107 -> 4490[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4107[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xwv3150 xwv3151 xwv3153 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xwv170 xwv171 xwv3154 xwv174)",fontsize=16,color="magenta"];4107 -> 4511[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4107 -> 4512[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4107 -> 4513[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4107 -> 4514[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4107 -> 4515[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4204[label="error []",fontsize=16,color="red",shape="box"];4205 -> 4490[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4205[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xwv17430 xwv17431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv170 xwv171 xwv315 xwv17433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xwv1740 xwv1741 xwv17434 xwv1744)",fontsize=16,color="magenta"];4205 -> 4516[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4205 -> 4517[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4205 -> 4518[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4205 -> 4519[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4205 -> 4520[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 2926[label="xwv1400",fontsize=16,color="green",shape="box"];2927[label="xwv300000",fontsize=16,color="green",shape="box"];3424 -> 2400[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3424[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];3424 -> 3435[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3424 -> 3436[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3423[label="compare1 xwv43000 xwv44000 xwv235",fontsize=16,color="burlywood",shape="triangle"];5290[label="xwv235/False",fontsize=10,color="white",style="solid",shape="box"];3423 -> 5290[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5290 -> 3437[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5291[label="xwv235/True",fontsize=10,color="white",style="solid",shape="box"];3423 -> 5291[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5291 -> 3438[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3426 -> 2402[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3426[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];3426 -> 3439[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3426 -> 3440[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3425[label="compare1 xwv43000 xwv44000 xwv236",fontsize=16,color="burlywood",shape="triangle"];5292[label="xwv236/False",fontsize=10,color="white",style="solid",shape="box"];3425 -> 5292[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5292 -> 3441[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5293[label="xwv236/True",fontsize=10,color="white",style="solid",shape="box"];3425 -> 5293[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5293 -> 3442[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3428 -> 2404[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3428[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];3428 -> 3443[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3428 -> 3444[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3427[label="compare1 xwv43000 xwv44000 xwv237",fontsize=16,color="burlywood",shape="triangle"];5294[label="xwv237/False",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5294[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5294 -> 3445[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5295[label="xwv237/True",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5295[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5295 -> 3446[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3430 -> 2405[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3430[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];3430 -> 3447[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3430 -> 3448[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3429[label="compare1 xwv43000 xwv44000 xwv238",fontsize=16,color="burlywood",shape="triangle"];5296[label="xwv238/False",fontsize=10,color="white",style="solid",shape="box"];3429 -> 5296[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5296 -> 3449[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5297[label="xwv238/True",fontsize=10,color="white",style="solid",shape="box"];3429 -> 5297[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5297 -> 3450[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 3432 -> 2410[label="",style="dashed", color="red", weight=0]; 31.62/12.86 3432[label="xwv43000 <= xwv44000",fontsize=16,color="magenta"];3432 -> 3451[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3432 -> 3452[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3431[label="compare1 xwv43000 xwv44000 xwv239",fontsize=16,color="burlywood",shape="triangle"];5298[label="xwv239/False",fontsize=10,color="white",style="solid",shape="box"];3431 -> 5298[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5298 -> 3453[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5299[label="xwv239/True",fontsize=10,color="white",style="solid",shape="box"];3431 -> 5299[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5299 -> 3454[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 4379[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv400 xwv401 xwv402 xwv403 xwv404) (FiniteMap.Branch xwv405 xwv406 xwv407 xwv408 xwv409) (FiniteMap.findMax (FiniteMap.Branch xwv410 xwv411 xwv412 xwv413 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];4379 -> 4486[label="",style="solid", color="black", weight=3]; 31.62/12.86 4380[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv400 xwv401 xwv402 xwv403 xwv404) (FiniteMap.Branch xwv405 xwv406 xwv407 xwv408 xwv409) (FiniteMap.findMax (FiniteMap.Branch xwv410 xwv411 xwv412 xwv413 (FiniteMap.Branch xwv4140 xwv4141 xwv4142 xwv4143 xwv4144)))",fontsize=16,color="black",shape="box"];4380 -> 4487[label="",style="solid", color="black", weight=3]; 31.62/12.86 4484[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv416 xwv417 xwv418 xwv419 xwv420) (FiniteMap.Branch xwv421 xwv422 xwv423 xwv424 xwv425) (FiniteMap.findMax (FiniteMap.Branch xwv426 xwv427 xwv428 xwv429 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];4484 -> 4552[label="",style="solid", color="black", weight=3]; 31.62/12.86 4485[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv416 xwv417 xwv418 xwv419 xwv420) (FiniteMap.Branch xwv421 xwv422 xwv423 xwv424 xwv425) (FiniteMap.findMax (FiniteMap.Branch xwv426 xwv427 xwv428 xwv429 (FiniteMap.Branch xwv4300 xwv4301 xwv4302 xwv4303 xwv4304)))",fontsize=16,color="black",shape="box"];4485 -> 4553[label="",style="solid", color="black", weight=3]; 31.62/12.86 3789[label="xwv1641",fontsize=16,color="green",shape="box"];3790[label="xwv1643",fontsize=16,color="green",shape="box"];3791[label="xwv1640",fontsize=16,color="green",shape="box"];3792[label="xwv1642",fontsize=16,color="green",shape="box"];3793[label="xwv1644",fontsize=16,color="green",shape="box"];4219[label="xwv348",fontsize=16,color="green",shape="box"];4220[label="xwv3500",fontsize=16,color="green",shape="box"];4221[label="xwv3504",fontsize=16,color="green",shape="box"];4222[label="xwv3501",fontsize=16,color="green",shape="box"];4223[label="xwv3503",fontsize=16,color="green",shape="box"];4224[label="xwv3502",fontsize=16,color="green",shape="box"];4237[label="xwv363",fontsize=16,color="green",shape="box"];4238[label="xwv3661",fontsize=16,color="green",shape="box"];4239[label="xwv3660",fontsize=16,color="green",shape="box"];4240[label="xwv3663",fontsize=16,color="green",shape="box"];4241[label="xwv3662",fontsize=16,color="green",shape="box"];4242[label="xwv3664",fontsize=16,color="green",shape="box"];4207[label="FiniteMap.mkBalBranch6Double_R xwv170 xwv171 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 xwv3154) xwv174",fontsize=16,color="burlywood",shape="box"];5300[label="xwv3154/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4207 -> 5300[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5300 -> 4244[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 5301[label="xwv3154/FiniteMap.Branch xwv31540 xwv31541 xwv31542 xwv31543 xwv31544",fontsize=10,color="white",style="solid",shape="box"];4207 -> 5301[label="",style="solid", color="burlywood", weight=9]; 31.62/12.86 5301 -> 4245[label="",style="solid", color="burlywood", weight=3]; 31.62/12.86 4511[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4512[label="xwv3153",fontsize=16,color="green",shape="box"];4513[label="xwv3151",fontsize=16,color="green",shape="box"];4514[label="xwv3150",fontsize=16,color="green",shape="box"];4515 -> 4490[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4515[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xwv170 xwv171 xwv3154 xwv174",fontsize=16,color="magenta"];4515 -> 4554[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4515 -> 4555[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4515 -> 4556[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4515 -> 4557[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4515 -> 4558[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4516[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4517 -> 4490[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4517[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv170 xwv171 xwv315 xwv17433",fontsize=16,color="magenta"];4517 -> 4559[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4517 -> 4560[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4517 -> 4561[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4517 -> 4562[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4517 -> 4563[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4518[label="xwv17431",fontsize=16,color="green",shape="box"];4519[label="xwv17430",fontsize=16,color="green",shape="box"];4520 -> 4490[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4520[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xwv1740 xwv1741 xwv17434 xwv1744",fontsize=16,color="magenta"];4520 -> 4564[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4520 -> 4565[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4520 -> 4566[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4520 -> 4567[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4520 -> 4568[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3435[label="xwv43000",fontsize=16,color="green",shape="box"];3436[label="xwv44000",fontsize=16,color="green",shape="box"];3437[label="compare1 xwv43000 xwv44000 False",fontsize=16,color="black",shape="box"];3437 -> 3517[label="",style="solid", color="black", weight=3]; 31.62/12.86 3438[label="compare1 xwv43000 xwv44000 True",fontsize=16,color="black",shape="box"];3438 -> 3518[label="",style="solid", color="black", weight=3]; 31.62/12.86 3439[label="xwv43000",fontsize=16,color="green",shape="box"];3440[label="xwv44000",fontsize=16,color="green",shape="box"];3441[label="compare1 xwv43000 xwv44000 False",fontsize=16,color="black",shape="box"];3441 -> 3519[label="",style="solid", color="black", weight=3]; 31.62/12.86 3442[label="compare1 xwv43000 xwv44000 True",fontsize=16,color="black",shape="box"];3442 -> 3520[label="",style="solid", color="black", weight=3]; 31.62/12.86 3443[label="xwv43000",fontsize=16,color="green",shape="box"];3444[label="xwv44000",fontsize=16,color="green",shape="box"];3445[label="compare1 xwv43000 xwv44000 False",fontsize=16,color="black",shape="box"];3445 -> 3521[label="",style="solid", color="black", weight=3]; 31.62/12.86 3446[label="compare1 xwv43000 xwv44000 True",fontsize=16,color="black",shape="box"];3446 -> 3522[label="",style="solid", color="black", weight=3]; 31.62/12.86 3447[label="xwv43000",fontsize=16,color="green",shape="box"];3448[label="xwv44000",fontsize=16,color="green",shape="box"];3449[label="compare1 xwv43000 xwv44000 False",fontsize=16,color="black",shape="box"];3449 -> 3523[label="",style="solid", color="black", weight=3]; 31.62/12.86 3450[label="compare1 xwv43000 xwv44000 True",fontsize=16,color="black",shape="box"];3450 -> 3524[label="",style="solid", color="black", weight=3]; 31.62/12.86 3451[label="xwv43000",fontsize=16,color="green",shape="box"];3452[label="xwv44000",fontsize=16,color="green",shape="box"];3453[label="compare1 xwv43000 xwv44000 False",fontsize=16,color="black",shape="box"];3453 -> 3525[label="",style="solid", color="black", weight=3]; 31.62/12.86 3454[label="compare1 xwv43000 xwv44000 True",fontsize=16,color="black",shape="box"];3454 -> 3526[label="",style="solid", color="black", weight=3]; 31.62/12.86 4486[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv400 xwv401 xwv402 xwv403 xwv404) (FiniteMap.Branch xwv405 xwv406 xwv407 xwv408 xwv409) (xwv410,xwv411)",fontsize=16,color="black",shape="box"];4486 -> 4569[label="",style="solid", color="black", weight=3]; 31.62/12.86 4487 -> 4288[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4487[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv400 xwv401 xwv402 xwv403 xwv404) (FiniteMap.Branch xwv405 xwv406 xwv407 xwv408 xwv409) (FiniteMap.findMax (FiniteMap.Branch xwv4140 xwv4141 xwv4142 xwv4143 xwv4144))",fontsize=16,color="magenta"];4487 -> 4570[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4487 -> 4571[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4487 -> 4572[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4487 -> 4573[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4487 -> 4574[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4552[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv416 xwv417 xwv418 xwv419 xwv420) (FiniteMap.Branch xwv421 xwv422 xwv423 xwv424 xwv425) (xwv426,xwv427)",fontsize=16,color="black",shape="box"];4552 -> 4586[label="",style="solid", color="black", weight=3]; 31.62/12.86 4553 -> 4393[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4553[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv416 xwv417 xwv418 xwv419 xwv420) (FiniteMap.Branch xwv421 xwv422 xwv423 xwv424 xwv425) (FiniteMap.findMax (FiniteMap.Branch xwv4300 xwv4301 xwv4302 xwv4303 xwv4304))",fontsize=16,color="magenta"];4553 -> 4587[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4553 -> 4588[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4553 -> 4589[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4553 -> 4590[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4553 -> 4591[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4244[label="FiniteMap.mkBalBranch6Double_R xwv170 xwv171 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 FiniteMap.EmptyFM) xwv174 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 FiniteMap.EmptyFM) xwv174",fontsize=16,color="black",shape="box"];4244 -> 4285[label="",style="solid", color="black", weight=3]; 31.62/12.86 4245[label="FiniteMap.mkBalBranch6Double_R xwv170 xwv171 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 (FiniteMap.Branch xwv31540 xwv31541 xwv31542 xwv31543 xwv31544)) xwv174 (FiniteMap.Branch xwv3150 xwv3151 xwv3152 xwv3153 (FiniteMap.Branch xwv31540 xwv31541 xwv31542 xwv31543 xwv31544)) xwv174",fontsize=16,color="black",shape="box"];4245 -> 4286[label="",style="solid", color="black", weight=3]; 31.62/12.86 4554[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4555[label="xwv3154",fontsize=16,color="green",shape="box"];4556[label="xwv171",fontsize=16,color="green",shape="box"];4557[label="xwv170",fontsize=16,color="green",shape="box"];4558[label="xwv174",fontsize=16,color="green",shape="box"];4559[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4560[label="xwv315",fontsize=16,color="green",shape="box"];4561[label="xwv171",fontsize=16,color="green",shape="box"];4562[label="xwv170",fontsize=16,color="green",shape="box"];4563[label="xwv17433",fontsize=16,color="green",shape="box"];4564[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4565[label="xwv17434",fontsize=16,color="green",shape="box"];4566[label="xwv1741",fontsize=16,color="green",shape="box"];4567[label="xwv1740",fontsize=16,color="green",shape="box"];4568[label="xwv1744",fontsize=16,color="green",shape="box"];3517[label="compare0 xwv43000 xwv44000 otherwise",fontsize=16,color="black",shape="box"];3517 -> 3566[label="",style="solid", color="black", weight=3]; 31.62/12.86 3518[label="LT",fontsize=16,color="green",shape="box"];3519[label="compare0 xwv43000 xwv44000 otherwise",fontsize=16,color="black",shape="box"];3519 -> 3567[label="",style="solid", color="black", weight=3]; 31.62/12.86 3520[label="LT",fontsize=16,color="green",shape="box"];3521[label="compare0 xwv43000 xwv44000 otherwise",fontsize=16,color="black",shape="box"];3521 -> 3568[label="",style="solid", color="black", weight=3]; 31.62/12.86 3522[label="LT",fontsize=16,color="green",shape="box"];3523[label="compare0 xwv43000 xwv44000 otherwise",fontsize=16,color="black",shape="box"];3523 -> 3569[label="",style="solid", color="black", weight=3]; 31.62/12.86 3524[label="LT",fontsize=16,color="green",shape="box"];3525[label="compare0 xwv43000 xwv44000 otherwise",fontsize=16,color="black",shape="box"];3525 -> 3570[label="",style="solid", color="black", weight=3]; 31.62/12.86 3526[label="LT",fontsize=16,color="green",shape="box"];4569[label="xwv411",fontsize=16,color="green",shape="box"];4570[label="xwv4143",fontsize=16,color="green",shape="box"];4571[label="xwv4141",fontsize=16,color="green",shape="box"];4572[label="xwv4144",fontsize=16,color="green",shape="box"];4573[label="xwv4140",fontsize=16,color="green",shape="box"];4574[label="xwv4142",fontsize=16,color="green",shape="box"];4586[label="xwv426",fontsize=16,color="green",shape="box"];4587[label="xwv4301",fontsize=16,color="green",shape="box"];4588[label="xwv4300",fontsize=16,color="green",shape="box"];4589[label="xwv4302",fontsize=16,color="green",shape="box"];4590[label="xwv4303",fontsize=16,color="green",shape="box"];4591[label="xwv4304",fontsize=16,color="green",shape="box"];4285[label="error []",fontsize=16,color="red",shape="box"];4286 -> 4490[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4286[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xwv31540 xwv31541 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv3150 xwv3151 xwv3153 xwv31543) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xwv170 xwv171 xwv31544 xwv174)",fontsize=16,color="magenta"];4286 -> 4531[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4286 -> 4532[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4286 -> 4533[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4286 -> 4534[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4286 -> 4535[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3566[label="compare0 xwv43000 xwv44000 True",fontsize=16,color="black",shape="box"];3566 -> 3650[label="",style="solid", color="black", weight=3]; 31.62/12.86 3567[label="compare0 xwv43000 xwv44000 True",fontsize=16,color="black",shape="box"];3567 -> 3651[label="",style="solid", color="black", weight=3]; 31.62/12.86 3568[label="compare0 xwv43000 xwv44000 True",fontsize=16,color="black",shape="box"];3568 -> 3652[label="",style="solid", color="black", weight=3]; 31.62/12.86 3569[label="compare0 xwv43000 xwv44000 True",fontsize=16,color="black",shape="box"];3569 -> 3653[label="",style="solid", color="black", weight=3]; 31.62/12.86 3570[label="compare0 xwv43000 xwv44000 True",fontsize=16,color="black",shape="box"];3570 -> 3654[label="",style="solid", color="black", weight=3]; 31.62/12.86 4531[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4532 -> 4490[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4532[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv3150 xwv3151 xwv3153 xwv31543",fontsize=16,color="magenta"];4532 -> 4575[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4532 -> 4576[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4532 -> 4577[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4532 -> 4578[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4532 -> 4579[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4533[label="xwv31541",fontsize=16,color="green",shape="box"];4534[label="xwv31540",fontsize=16,color="green",shape="box"];4535 -> 4490[label="",style="dashed", color="red", weight=0]; 31.62/12.86 4535[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xwv170 xwv171 xwv31544 xwv174",fontsize=16,color="magenta"];4535 -> 4580[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4535 -> 4581[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4535 -> 4582[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4535 -> 4583[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 4535 -> 4584[label="",style="dashed", color="magenta", weight=3]; 31.62/12.86 3650[label="GT",fontsize=16,color="green",shape="box"];3651[label="GT",fontsize=16,color="green",shape="box"];3652[label="GT",fontsize=16,color="green",shape="box"];3653[label="GT",fontsize=16,color="green",shape="box"];3654[label="GT",fontsize=16,color="green",shape="box"];4575[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4576[label="xwv3153",fontsize=16,color="green",shape="box"];4577[label="xwv3151",fontsize=16,color="green",shape="box"];4578[label="xwv3150",fontsize=16,color="green",shape="box"];4579[label="xwv31543",fontsize=16,color="green",shape="box"];4580[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4581[label="xwv31544",fontsize=16,color="green",shape="box"];4582[label="xwv171",fontsize=16,color="green",shape="box"];4583[label="xwv170",fontsize=16,color="green",shape="box"];4584[label="xwv174",fontsize=16,color="green",shape="box"];} 31.62/12.86 31.62/12.86 ---------------------------------------- 31.62/12.86 31.62/12.86 (16) 31.62/12.86 Complex Obligation (AND) 31.62/12.86 31.62/12.86 ---------------------------------------- 31.62/12.86 31.62/12.86 (17) 31.62/12.86 Obligation: 31.62/12.86 Q DP problem: 31.62/12.86 The TRS P consists of the following rules: 31.62/12.86 31.62/12.86 new_primCmpNat(Succ(xwv4300), Succ(xwv4400)) -> new_primCmpNat(xwv4300, xwv4400) 31.62/12.86 31.62/12.86 R is empty. 31.62/12.86 Q is empty. 31.62/12.86 We have to consider all minimal (P,Q,R)-chains. 31.62/12.86 ---------------------------------------- 31.62/12.86 31.62/12.86 (18) QDPSizeChangeProof (EQUIVALENT) 31.62/12.86 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.62/12.86 31.62/12.86 From the DPs we obtained the following set of size-change graphs: 31.62/12.86 *new_primCmpNat(Succ(xwv4300), Succ(xwv4400)) -> new_primCmpNat(xwv4300, xwv4400) 31.62/12.86 The graph contains the following edges 1 > 1, 2 > 2 31.62/12.86 31.62/12.86 31.62/12.86 ---------------------------------------- 31.62/12.86 31.62/12.86 (19) 31.62/12.86 YES 31.62/12.86 31.62/12.86 ---------------------------------------- 31.62/12.86 31.62/12.86 (20) 31.62/12.86 Obligation: 31.62/12.86 Q DP problem: 31.62/12.86 The TRS P consists of the following rules: 31.62/12.86 31.62/12.86 new_lt1(xwv43000, xwv44000, fd) -> new_compare1(xwv43000, xwv44000, fd) 31.62/12.86 new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, hg, app(ty_Maybe, bcd)) -> new_ltEs0(xwv43002, xwv44002, bcd) 31.62/12.86 new_ltEs0(Just(xwv43000), Just(xwv44000), app(app(app(ty_@3, ef), eg), eh)) -> new_ltEs3(xwv43000, xwv44000, ef, eg, eh) 31.62/12.86 new_primCompAux(xwv43000, xwv44000, xwv182, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare5(xwv43000, xwv44000, bfc, bfd, bfe) 31.62/12.86 new_compare2(Left(Right(xwv43000)), Left(Right(xwv44000)), False, app(app(ty_Either, ce), app(ty_[], db)), be) -> new_ltEs1(xwv43000, xwv44000, db) 31.62/12.86 new_compare21(xwv43000, xwv44000, False, ff, fg) -> new_ltEs2(xwv43000, xwv44000, ff, fg) 31.62/12.86 new_compare2(Left(Right(xwv43000)), Left(Right(xwv44000)), False, app(app(ty_Either, ce), app(app(ty_@2, dc), dd)), be) -> new_ltEs2(xwv43000, xwv44000, dc, dd) 31.62/12.86 new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), app(app(ty_@2, ff), fg), fb) -> new_compare21(xwv43000, xwv44000, new_esEs6(xwv43000, xwv44000, ff, fg), ff, fg) 31.62/12.86 new_compare2(Left(Left(xwv43000)), Left(Left(xwv44000)), False, app(app(ty_Either, app(app(ty_@2, bh), ca)), bd), be) -> new_ltEs2(xwv43000, xwv44000, bh, ca) 31.62/12.86 new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), app(app(ty_@2, bac), bad), hg, hh) -> new_lt2(xwv43000, xwv44000, bac, bad) 31.62/12.86 new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, app(app(ty_@2, bac), bad)), hg), hh), be) -> new_lt2(xwv43000, xwv44000, bac, bad) 31.62/12.86 new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), app(ty_[], bbd)), hh), be) -> new_lt1(xwv43001, xwv44001, bbd) 31.62/12.86 new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bae), baf), bag)), hg), hh), be) -> new_lt3(xwv43000, xwv44000, bae, baf, bag) 31.62/12.86 new_compare2(Left(Right(xwv43000)), Left(Right(xwv44000)), False, app(app(ty_Either, ce), app(ty_Maybe, da)), be) -> new_ltEs0(xwv43000, xwv44000, da) 31.62/12.86 new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), hg), app(app(app(ty_@3, bch), bda), bdb)), be) -> new_ltEs3(xwv43002, xwv44002, bch, bda, bdb) 31.62/12.86 new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), app(ty_Maybe, bbc)), hh), be) -> new_lt0(xwv43001, xwv44001, bbc) 31.62/12.86 new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), app(ty_Maybe, fc), fb) -> new_compare20(xwv43000, xwv44000, new_esEs5(xwv43000, xwv44000, fc), fc) 31.62/12.86 new_ltEs(Left(xwv43000), Left(xwv44000), app(app(ty_@2, bh), ca), bd) -> new_ltEs2(xwv43000, xwv44000, bh, ca) 31.62/12.86 new_ltEs(Left(xwv43000), Left(xwv44000), app(ty_[], bg), bd) -> new_ltEs1(xwv43000, xwv44000, bg) 31.62/12.86 new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, hg, app(app(ty_@2, bcf), bcg)) -> new_ltEs2(xwv43002, xwv44002, bcf, bcg) 31.62/12.86 new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), gc, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs3(xwv43001, xwv44001, hb, hc, hd) 31.62/12.86 new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, gc), app(app(app(ty_@3, hb), hc), hd)), be) -> new_ltEs3(xwv43001, xwv44001, hb, hc, hd) 31.62/12.86 new_compare2(Left(Just(xwv43000)), Left(Just(xwv44000)), False, app(ty_Maybe, app(ty_[], ec)), be) -> new_ltEs1(xwv43000, xwv44000, ec) 31.62/12.86 new_lt(xwv43000, xwv44000, h, ba) -> new_compare2(xwv43000, xwv44000, new_esEs4(xwv43000, xwv44000, h, ba), h, ba) 31.62/12.86 new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, app(ty_Maybe, bbc), hh) -> new_lt0(xwv43001, xwv44001, bbc) 31.62/12.86 new_compare2(Left(Right(xwv43000)), Left(Right(xwv44000)), False, app(app(ty_Either, ce), app(app(app(ty_@3, de), df), dg)), be) -> new_ltEs3(xwv43000, xwv44000, de, df, dg) 31.62/12.86 new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, hg, app(app(ty_Either, bcb), bcc)) -> new_ltEs(xwv43002, xwv44002, bcb, bcc) 31.62/12.86 new_compare4(xwv43000, xwv44000, ff, fg) -> new_compare21(xwv43000, xwv44000, new_esEs6(xwv43000, xwv44000, ff, fg), ff, fg) 31.62/12.86 new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), app(app(ty_@2, bbe), bbf)), hh), be) -> new_lt2(xwv43001, xwv44001, bbe, bbf) 31.62/12.86 new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), app(app(app(ty_@3, fh), ga), gb), fb) -> new_compare22(xwv43000, xwv44000, new_esEs7(xwv43000, xwv44000, fh, ga, gb), fh, ga, gb) 31.62/12.86 new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, hg, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs3(xwv43002, xwv44002, bch, bda, bdb) 31.62/12.86 new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, app(ty_[], fd)), fb), be) -> new_compare1(xwv43000, xwv44000, fd) 31.62/12.86 new_compare22(xwv43000, xwv44000, False, fh, ga, gb) -> new_ltEs3(xwv43000, xwv44000, fh, ga, gb) 31.62/12.86 new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), gc, app(ty_[], gg)) -> new_ltEs1(xwv43001, xwv44001, gg) 31.62/12.86 new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), hg), app(app(ty_Either, bcb), bcc)), be) -> new_ltEs(xwv43002, xwv44002, bcb, bcc) 31.62/12.86 new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, app(app(ty_@2, ff), fg)), fb), be) -> new_compare21(xwv43000, xwv44000, new_esEs6(xwv43000, xwv44000, ff, fg), ff, fg) 31.62/12.86 new_ltEs0(Just(xwv43000), Just(xwv44000), app(ty_[], ec)) -> new_ltEs1(xwv43000, xwv44000, ec) 31.62/12.86 new_ltEs(Left(xwv43000), Left(xwv44000), app(app(ty_Either, bb), bc), bd) -> new_ltEs(xwv43000, xwv44000, bb, bc) 31.62/12.86 new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), hg), app(ty_Maybe, bcd)), be) -> new_ltEs0(xwv43002, xwv44002, bcd) 31.62/12.86 new_ltEs(Right(xwv43000), Right(xwv44000), ce, app(app(ty_@2, dc), dd)) -> new_ltEs2(xwv43000, xwv44000, dc, dd) 31.62/12.86 new_compare1(:(xwv43000, xwv43001), :(xwv44000, xwv44001), fa) -> new_compare1(xwv43001, xwv44001, fa) 31.62/12.86 new_ltEs0(Just(xwv43000), Just(xwv44000), app(ty_Maybe, eb)) -> new_ltEs0(xwv43000, xwv44000, eb) 31.62/12.86 new_ltEs1(:(xwv43000, xwv43001), :(xwv44000, xwv44001), fa) -> new_compare1(xwv43001, xwv44001, fa) 31.62/12.86 new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, gc), app(ty_[], gg)), be) -> new_ltEs1(xwv43001, xwv44001, gg) 31.62/12.86 new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), app(app(ty_Either, he), hf), hg, hh) -> new_lt(xwv43000, xwv44000, he, hf) 31.62/12.86 new_compare2(Left(:(xwv43000, xwv43001)), Left(:(xwv44000, xwv44001)), False, app(ty_[], fa), be) -> new_compare1(xwv43001, xwv44001, fa) 31.62/12.86 new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), hg), app(ty_[], bce)), be) -> new_ltEs1(xwv43002, xwv44002, bce) 31.62/12.86 new_compare5(xwv43000, xwv44000, fh, ga, gb) -> new_compare22(xwv43000, xwv44000, new_esEs7(xwv43000, xwv44000, fh, ga, gb), fh, ga, gb) 31.62/12.86 new_ltEs(Left(xwv43000), Left(xwv44000), app(ty_Maybe, bf), bd) -> new_ltEs0(xwv43000, xwv44000, bf) 31.62/12.86 new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), gc, app(app(ty_Either, gd), ge)) -> new_ltEs(xwv43001, xwv44001, gd, ge) 31.62/12.86 new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), app(app(app(ty_@3, bae), baf), bag), hg, hh) -> new_lt3(xwv43000, xwv44000, bae, baf, bag) 31.62/12.86 new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), app(app(ty_Either, bba), bbb)), hh), be) -> new_lt(xwv43001, xwv44001, bba, bbb) 31.62/12.86 new_compare2(Left(Just(xwv43000)), Left(Just(xwv44000)), False, app(ty_Maybe, app(app(ty_Either, dh), ea)), be) -> new_ltEs(xwv43000, xwv44000, dh, ea) 31.62/12.86 new_lt3(xwv43000, xwv44000, fh, ga, gb) -> new_compare22(xwv43000, xwv44000, new_esEs7(xwv43000, xwv44000, fh, ga, gb), fh, ga, gb) 31.62/12.86 new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, gc), app(app(ty_Either, gd), ge)), be) -> new_ltEs(xwv43001, xwv44001, gd, ge) 31.62/12.86 new_ltEs(Right(xwv43000), Right(xwv44000), ce, app(ty_[], db)) -> new_ltEs1(xwv43000, xwv44000, db) 31.62/12.86 new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), gc, app(ty_Maybe, gf)) -> new_ltEs0(xwv43001, xwv44001, gf) 31.62/12.86 new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), app(ty_[], fd), fb) -> new_compare1(xwv43000, xwv44000, fd) 31.62/12.86 new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, gc), app(ty_Maybe, gf)), be) -> new_ltEs0(xwv43001, xwv44001, gf) 31.62/12.86 new_compare2(Right(xwv4300), Right(xwv4400), False, bdc, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs3(xwv4300, xwv4400, beb, bec, bed) 31.62/12.86 new_ltEs(Left(xwv43000), Left(xwv44000), app(app(app(ty_@3, cb), cc), cd), bd) -> new_ltEs3(xwv43000, xwv44000, cb, cc, cd) 31.62/12.86 new_primCompAux(xwv43000, xwv44000, xwv182, app(app(ty_Either, bee), bef)) -> new_compare(xwv43000, xwv44000, bee, bef) 31.62/12.86 new_compare2(Right(xwv4300), Right(xwv4400), False, bdc, app(app(ty_@2, bdh), bea)) -> new_ltEs2(xwv4300, xwv4400, bdh, bea) 31.62/12.86 new_primCompAux(xwv43000, xwv44000, xwv182, app(ty_Maybe, beg)) -> new_compare3(xwv43000, xwv44000, beg) 31.62/12.86 new_compare2(Left(Left(xwv43000)), Left(Left(xwv44000)), False, app(app(ty_Either, app(app(ty_Either, bb), bc)), bd), be) -> new_ltEs(xwv43000, xwv44000, bb, bc) 31.62/12.86 new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, app(ty_Maybe, fc)), fb), be) -> new_compare20(xwv43000, xwv44000, new_esEs5(xwv43000, xwv44000, fc), fc) 31.62/12.86 new_ltEs(Right(xwv43000), Right(xwv44000), ce, app(ty_Maybe, da)) -> new_ltEs0(xwv43000, xwv44000, da) 31.62/12.86 new_ltEs(Right(xwv43000), Right(xwv44000), ce, app(app(ty_Either, cf), cg)) -> new_ltEs(xwv43000, xwv44000, cf, cg) 31.62/12.86 new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), hg), app(app(ty_@2, bcf), bcg)), be) -> new_ltEs2(xwv43002, xwv44002, bcf, bcg) 31.62/12.86 new_ltEs(Right(xwv43000), Right(xwv44000), ce, app(app(app(ty_@3, de), df), dg)) -> new_ltEs3(xwv43000, xwv44000, de, df, dg) 31.62/12.86 new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, app(app(app(ty_@3, fh), ga), gb)), fb), be) -> new_compare22(xwv43000, xwv44000, new_esEs7(xwv43000, xwv44000, fh, ga, gb), fh, ga, gb) 31.62/12.86 new_compare2(Left(Just(xwv43000)), Left(Just(xwv44000)), False, app(ty_Maybe, app(app(ty_@2, ed), ee)), be) -> new_ltEs2(xwv43000, xwv44000, ed, ee) 31.62/12.86 new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), app(app(ty_Either, h), ba), fb) -> new_compare2(xwv43000, xwv44000, new_esEs4(xwv43000, xwv44000, h, ba), h, ba) 31.62/12.86 new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, app(app(ty_Either, bba), bbb), hh) -> new_lt(xwv43001, xwv44001, bba, bbb) 31.62/12.86 new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, hg, app(ty_[], bce)) -> new_ltEs1(xwv43002, xwv44002, bce) 31.62/12.86 new_ltEs0(Just(xwv43000), Just(xwv44000), app(app(ty_Either, dh), ea)) -> new_ltEs(xwv43000, xwv44000, dh, ea) 31.62/12.86 new_compare1(:(xwv43000, xwv43001), :(xwv44000, xwv44001), fa) -> new_primCompAux(xwv43000, xwv44000, new_compare0(xwv43001, xwv44001, fa), fa) 31.62/12.86 new_compare20(xwv43000, xwv44000, False, fc) -> new_ltEs0(xwv43000, xwv44000, fc) 31.62/12.86 new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, app(ty_[], bbd), hh) -> new_lt1(xwv43001, xwv44001, bbd) 31.62/12.86 new_compare2(Left(:(xwv43000, xwv43001)), Left(:(xwv44000, xwv44001)), False, app(ty_[], fa), be) -> new_primCompAux(xwv43000, xwv44000, new_compare0(xwv43001, xwv44001, fa), fa) 31.62/12.86 new_primCompAux(xwv43000, xwv44000, xwv182, app(ty_[], beh)) -> new_compare1(xwv43000, xwv44000, beh) 31.62/12.86 new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), gc, app(app(ty_@2, gh), ha)) -> new_ltEs2(xwv43001, xwv44001, gh, ha) 31.62/12.86 new_lt0(xwv43000, xwv44000, fc) -> new_compare20(xwv43000, xwv44000, new_esEs5(xwv43000, xwv44000, fc), fc) 31.62/12.86 new_compare2(Left(Just(xwv43000)), Left(Just(xwv44000)), False, app(ty_Maybe, app(ty_Maybe, eb)), be) -> new_ltEs0(xwv43000, xwv44000, eb) 31.62/12.86 new_compare2(Left(Just(xwv43000)), Left(Just(xwv44000)), False, app(ty_Maybe, app(app(app(ty_@3, ef), eg), eh)), be) -> new_ltEs3(xwv43000, xwv44000, ef, eg, eh) 31.62/12.86 new_compare2(Right(xwv4300), Right(xwv4400), False, bdc, app(ty_Maybe, bdf)) -> new_ltEs0(xwv4300, xwv4400, bdf) 31.62/12.86 new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, app(app(ty_Either, he), hf)), hg), hh), be) -> new_lt(xwv43000, xwv44000, he, hf) 31.62/12.86 new_compare2(Left(Right(xwv43000)), Left(Right(xwv44000)), False, app(app(ty_Either, ce), app(app(ty_Either, cf), cg)), be) -> new_ltEs(xwv43000, xwv44000, cf, cg) 31.62/12.86 new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, app(ty_Maybe, baa)), hg), hh), be) -> new_lt0(xwv43000, xwv44000, baa) 31.62/12.86 new_compare2(Right(xwv4300), Right(xwv4400), False, bdc, app(ty_[], bdg)) -> new_ltEs1(xwv4300, xwv4400, bdg) 31.62/12.86 new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, app(ty_[], bab)), hg), hh), be) -> new_lt1(xwv43000, xwv44000, bab) 31.62/12.86 new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, app(app(ty_@2, bbe), bbf), hh) -> new_lt2(xwv43001, xwv44001, bbe, bbf) 31.62/12.86 new_primCompAux(xwv43000, xwv44000, xwv182, app(app(ty_@2, bfa), bfb)) -> new_compare4(xwv43000, xwv44000, bfa, bfb) 31.62/12.86 new_lt2(xwv43000, xwv44000, ff, fg) -> new_compare21(xwv43000, xwv44000, new_esEs6(xwv43000, xwv44000, ff, fg), ff, fg) 31.62/12.86 new_ltEs1(:(xwv43000, xwv43001), :(xwv44000, xwv44001), fa) -> new_primCompAux(xwv43000, xwv44000, new_compare0(xwv43001, xwv44001, fa), fa) 31.62/12.86 new_compare2(Left(Left(xwv43000)), Left(Left(xwv44000)), False, app(app(ty_Either, app(app(app(ty_@3, cb), cc), cd)), bd), be) -> new_ltEs3(xwv43000, xwv44000, cb, cc, cd) 31.62/12.86 new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), app(app(app(ty_@3, bbg), bbh), bca)), hh), be) -> new_lt3(xwv43001, xwv44001, bbg, bbh, bca) 31.62/12.86 new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), app(ty_Maybe, baa), hg, hh) -> new_lt0(xwv43000, xwv44000, baa) 31.62/12.86 new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, app(app(ty_Either, h), ba)), fb), be) -> new_compare2(xwv43000, xwv44000, new_esEs4(xwv43000, xwv44000, h, ba), h, ba) 31.62/12.86 new_ltEs0(Just(xwv43000), Just(xwv44000), app(app(ty_@2, ed), ee)) -> new_ltEs2(xwv43000, xwv44000, ed, ee) 31.62/12.86 new_compare(xwv43000, xwv44000, h, ba) -> new_compare2(xwv43000, xwv44000, new_esEs4(xwv43000, xwv44000, h, ba), h, ba) 31.62/12.86 new_compare2(Left(Left(xwv43000)), Left(Left(xwv44000)), False, app(app(ty_Either, app(ty_Maybe, bf)), bd), be) -> new_ltEs0(xwv43000, xwv44000, bf) 31.62/12.86 new_compare3(xwv43000, xwv44000, fc) -> new_compare20(xwv43000, xwv44000, new_esEs5(xwv43000, xwv44000, fc), fc) 31.62/12.86 new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, gc), app(app(ty_@2, gh), ha)), be) -> new_ltEs2(xwv43001, xwv44001, gh, ha) 31.62/12.86 new_compare2(Left(Left(xwv43000)), Left(Left(xwv44000)), False, app(app(ty_Either, app(ty_[], bg)), bd), be) -> new_ltEs1(xwv43000, xwv44000, bg) 31.62/12.86 new_compare2(Right(xwv4300), Right(xwv4400), False, bdc, app(app(ty_Either, bdd), bde)) -> new_ltEs(xwv4300, xwv4400, bdd, bde) 31.62/12.86 new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, app(app(app(ty_@3, bbg), bbh), bca), hh) -> new_lt3(xwv43001, xwv44001, bbg, bbh, bca) 31.62/12.86 new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), app(ty_[], bab), hg, hh) -> new_lt1(xwv43000, xwv44000, bab) 31.62/12.86 31.62/12.86 The TRS R consists of the following rules: 31.62/12.86 31.62/12.86 new_ltEs8(Right(xwv43000), Right(xwv44000), ce, app(ty_Maybe, da)) -> new_ltEs4(xwv43000, xwv44000, da) 31.62/12.86 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 31.62/12.86 new_primCmpInt(Neg(Succ(xwv4300)), Pos(xwv440)) -> LT 31.62/12.86 new_esEs27(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.86 new_compare17(Double(xwv43000, Pos(xwv430010)), Double(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.62/12.86 new_pePe(True, xwv181) -> True 31.62/12.86 new_compare6(xwv43000, xwv44000, ty_Float) -> new_compare18(xwv43000, xwv44000) 31.62/12.86 new_esEs4(Right(xwv4000), Right(xwv3000), cgc, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.86 new_esEs12(xwv4000, xwv3000, app(ty_Maybe, cbf)) -> new_esEs5(xwv4000, xwv3000, cbf) 31.62/12.86 new_esEs19(False, True) -> False 31.62/12.86 new_esEs19(True, False) -> False 31.62/12.86 new_lt13(xwv43001, xwv44001, app(app(ty_Either, bba), bbb)) -> new_lt15(xwv43001, xwv44001, bba, bbb) 31.62/12.86 new_esEs27(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.86 new_compare23(xwv43000, xwv44000, True, fc) -> EQ 31.62/12.86 new_ltEs20(xwv43002, xwv44002, app(app(ty_@2, bcf), bcg)) -> new_ltEs11(xwv43002, xwv44002, bcf, bcg) 31.62/12.86 new_esEs25(xwv43000, xwv44000, app(ty_[], bab)) -> new_esEs13(xwv43000, xwv44000, bab) 31.62/12.86 new_esEs4(Left(xwv4000), Right(xwv3000), cgc, ceh) -> False 31.62/12.86 new_esEs4(Right(xwv4000), Left(xwv3000), cgc, ceh) -> False 31.62/12.86 new_lt18(xwv43000, xwv44000, fd) -> new_esEs8(new_compare0(xwv43000, xwv44000, fd), LT) 31.62/12.86 new_esEs15(Float(xwv4000, xwv4001), Float(xwv3000, xwv3001)) -> new_esEs9(new_sr(xwv4000, xwv3001), new_sr(xwv4001, xwv3000)) 31.62/12.86 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 31.62/12.86 new_ltEs19(xwv4300, xwv4400, ty_Ordering) -> new_ltEs9(xwv4300, xwv4400) 31.62/12.86 new_compare110(xwv43000, xwv44000, False, fc) -> GT 31.62/12.86 new_primCmpInt(Pos(Zero), Neg(Succ(xwv4400))) -> GT 31.62/12.86 new_esEs9(xwv400, xwv300) -> new_primEqInt(xwv400, xwv300) 31.62/12.86 new_compare26(xwv430, xwv440, True, bdc, be) -> EQ 31.62/12.86 new_ltEs8(Left(xwv43000), Left(xwv44000), app(ty_Maybe, bf), bd) -> new_ltEs4(xwv43000, xwv44000, bf) 31.62/12.86 new_esEs24(xwv43001, xwv44001, ty_Ordering) -> new_esEs8(xwv43001, xwv44001) 31.62/12.86 new_esEs28(xwv43000, xwv44000, ty_Char) -> new_esEs18(xwv43000, xwv44000) 31.62/12.86 new_ltEs19(xwv4300, xwv4400, ty_Integer) -> new_ltEs5(xwv4300, xwv4400) 31.62/12.86 new_primCmpInt(Neg(Succ(xwv4300)), Neg(xwv440)) -> new_primCmpNat0(xwv440, Succ(xwv4300)) 31.62/12.86 new_compare113(xwv160, xwv161, False, chf, chg) -> GT 31.62/12.86 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Bool, ceh) -> new_esEs19(xwv4000, xwv3000) 31.62/12.86 new_ltEs4(Nothing, Nothing, cce) -> True 31.62/12.86 new_compare111(xwv167, xwv168, True, bfg, bfh) -> LT 31.62/12.86 new_ltEs20(xwv43002, xwv44002, ty_Ordering) -> new_ltEs9(xwv43002, xwv44002) 31.62/12.86 new_ltEs4(Just(xwv43000), Nothing, cce) -> False 31.62/12.86 new_ltEs9(LT, LT) -> True 31.62/12.86 new_compare6(xwv43000, xwv44000, ty_Char) -> new_compare16(xwv43000, xwv44000) 31.62/12.86 new_lt12(xwv43000, xwv44000, ty_Float) -> new_lt19(xwv43000, xwv44000) 31.62/12.86 new_ltEs14(xwv4300, xwv4400) -> new_fsEs(new_compare16(xwv4300, xwv4400)) 31.62/12.86 new_esEs23(xwv4000, xwv3000, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.86 new_compare27(xwv43000, xwv44000, False, fh, ga, gb) -> new_compare115(xwv43000, xwv44000, new_ltEs12(xwv43000, xwv44000, fh, ga, gb), fh, ga, gb) 31.62/12.86 new_lt17(xwv43000, xwv44000, fc) -> new_esEs8(new_compare12(xwv43000, xwv44000, fc), LT) 31.62/12.86 new_esEs11(xwv4001, xwv3001, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs7(xwv4001, xwv3001, bhf, bhg, bhh) 31.62/12.86 new_ltEs8(Left(xwv43000), Left(xwv44000), app(app(ty_@2, bh), ca), bd) -> new_ltEs11(xwv43000, xwv44000, bh, ca) 31.62/12.86 new_esEs12(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.86 new_esEs10(xwv4002, xwv3002, app(ty_[], bgg)) -> new_esEs13(xwv4002, xwv3002, bgg) 31.62/12.86 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Char) -> new_ltEs14(xwv43000, xwv44000) 31.62/12.86 new_ltEs4(Just(xwv43000), Just(xwv44000), app(ty_Maybe, eb)) -> new_ltEs4(xwv43000, xwv44000, eb) 31.62/12.86 new_compare26(Right(xwv4300), Left(xwv4400), False, bdc, be) -> GT 31.62/12.86 new_lt20(xwv43000, xwv44000, ty_Bool) -> new_lt4(xwv43000, xwv44000) 31.62/12.86 new_compare6(xwv43000, xwv44000, app(ty_Maybe, beg)) -> new_compare12(xwv43000, xwv44000, beg) 31.62/12.86 new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False 31.62/12.86 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 31.62/12.86 new_esEs8(GT, GT) -> True 31.62/12.86 new_ltEs21(xwv43001, xwv44001, ty_@0) -> new_ltEs13(xwv43001, xwv44001) 31.62/12.86 new_esEs24(xwv43001, xwv44001, ty_Double) -> new_esEs17(xwv43001, xwv44001) 31.62/12.86 new_fsEs(xwv171) -> new_not(new_esEs8(xwv171, GT)) 31.62/12.86 new_esEs23(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.86 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Double, bd) -> new_ltEs15(xwv43000, xwv44000) 31.62/12.86 new_esEs8(EQ, EQ) -> True 31.62/12.86 new_lt20(xwv43000, xwv44000, ty_Int) -> new_lt14(xwv43000, xwv44000) 31.62/12.86 new_primEqNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 31.62/12.86 new_lt12(xwv43000, xwv44000, ty_Integer) -> new_lt7(xwv43000, xwv44000) 31.62/12.86 new_esEs26(xwv4001, xwv3001, ty_Integer) -> new_esEs14(xwv4001, xwv3001) 31.62/12.86 new_ltEs8(Right(xwv43000), Right(xwv44000), ce, ty_@0) -> new_ltEs13(xwv43000, xwv44000) 31.62/12.86 new_lt12(xwv43000, xwv44000, ty_Char) -> new_lt10(xwv43000, xwv44000) 31.62/12.86 new_esEs25(xwv43000, xwv44000, ty_Float) -> new_esEs15(xwv43000, xwv44000) 31.62/12.86 new_ltEs18(xwv4300, xwv4400, app(ty_[], fa)) -> new_ltEs10(xwv4300, xwv4400, fa) 31.62/12.86 new_ltEs20(xwv43002, xwv44002, app(app(ty_Either, bcb), bcc)) -> new_ltEs8(xwv43002, xwv44002, bcb, bcc) 31.62/12.86 new_lt12(xwv43000, xwv44000, ty_@0) -> new_lt6(xwv43000, xwv44000) 31.62/12.86 new_ltEs19(xwv4300, xwv4400, app(app(ty_@2, bdh), bea)) -> new_ltEs11(xwv4300, xwv4400, bdh, bea) 31.62/12.86 new_compare6(xwv43000, xwv44000, app(ty_[], beh)) -> new_compare0(xwv43000, xwv44000, beh) 31.62/12.86 new_compare12(xwv43000, xwv44000, fc) -> new_compare23(xwv43000, xwv44000, new_esEs5(xwv43000, xwv44000, fc), fc) 31.62/12.86 new_not(True) -> False 31.62/12.86 new_lt13(xwv43001, xwv44001, app(app(app(ty_@3, bbg), bbh), bca)) -> new_lt9(xwv43001, xwv44001, bbg, bbh, bca) 31.62/12.86 new_primCompAux00(xwv186, LT) -> LT 31.62/12.86 new_primCmpNat0(Zero, Zero) -> EQ 31.62/12.86 new_ltEs20(xwv43002, xwv44002, ty_Integer) -> new_ltEs5(xwv43002, xwv44002) 31.62/12.86 new_esEs4(Left(xwv4000), Left(xwv3000), ty_@0, ceh) -> new_esEs16(xwv4000, xwv3000) 31.62/12.86 new_compare115(xwv43000, xwv44000, True, fh, ga, gb) -> LT 31.62/12.86 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Char, ceh) -> new_esEs18(xwv4000, xwv3000) 31.62/12.86 new_lt13(xwv43001, xwv44001, ty_Integer) -> new_lt7(xwv43001, xwv44001) 31.62/12.86 new_ltEs18(xwv4300, xwv4400, app(ty_Ratio, ccb)) -> new_ltEs7(xwv4300, xwv4400, ccb) 31.62/12.86 new_esEs10(xwv4002, xwv3002, app(app(ty_@2, bhc), bhd)) -> new_esEs6(xwv4002, xwv3002, bhc, bhd) 31.62/12.86 new_compare23(xwv43000, xwv44000, False, fc) -> new_compare110(xwv43000, xwv44000, new_ltEs4(xwv43000, xwv44000, fc), fc) 31.62/12.86 new_esEs23(xwv4000, xwv3000, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.86 new_esEs7(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), bga, bgb, bgc) -> new_asAs(new_esEs12(xwv4000, xwv3000, bga), new_asAs(new_esEs11(xwv4001, xwv3001, bgb), new_esEs10(xwv4002, xwv3002, bgc))) 31.62/12.86 new_esEs25(xwv43000, xwv44000, app(app(app(ty_@3, bae), baf), bag)) -> new_esEs7(xwv43000, xwv44000, bae, baf, bag) 31.62/12.86 new_esEs10(xwv4002, xwv3002, ty_Ordering) -> new_esEs8(xwv4002, xwv3002) 31.62/12.86 new_esEs10(xwv4002, xwv3002, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs7(xwv4002, xwv3002, bgd, bge, bgf) 31.62/12.86 new_ltEs8(Left(xwv43000), Left(xwv44000), app(app(ty_Either, bb), bc), bd) -> new_ltEs8(xwv43000, xwv44000, bb, bc) 31.62/12.86 new_ltEs8(Right(xwv43000), Right(xwv44000), ce, ty_Integer) -> new_ltEs5(xwv43000, xwv44000) 31.62/12.86 new_lt12(xwv43000, xwv44000, app(ty_[], bab)) -> new_lt18(xwv43000, xwv44000, bab) 31.62/12.86 new_lt14(xwv430, xwv440) -> new_esEs8(new_compare7(xwv430, xwv440), LT) 31.62/12.86 new_esEs27(xwv4000, xwv3000, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.86 new_primEqNat0(Succ(xwv40000), Zero) -> False 31.62/12.86 new_primEqNat0(Zero, Succ(xwv30000)) -> False 31.62/12.86 new_esEs18(Char(xwv4000), Char(xwv3000)) -> new_primEqNat0(xwv4000, xwv3000) 31.62/12.86 new_ltEs10(xwv4300, xwv4400, fa) -> new_fsEs(new_compare0(xwv4300, xwv4400, fa)) 31.62/12.86 new_compare112(xwv43000, xwv44000, False) -> GT 31.62/12.86 new_ltEs20(xwv43002, xwv44002, ty_Int) -> new_ltEs6(xwv43002, xwv44002) 31.62/12.86 new_esEs13([], [], cda) -> True 31.62/12.86 new_esEs4(Right(xwv4000), Right(xwv3000), cgc, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs7(xwv4000, xwv3000, cgd, cge, cgf) 31.62/12.86 new_ltEs19(xwv4300, xwv4400, ty_Int) -> new_ltEs6(xwv4300, xwv4400) 31.62/12.86 new_esEs23(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.86 new_esEs11(xwv4001, xwv3001, app(app(ty_@2, cae), caf)) -> new_esEs6(xwv4001, xwv3001, cae, caf) 31.62/12.86 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Int, ceh) -> new_esEs9(xwv4000, xwv3000) 31.62/12.86 new_primCompAux00(xwv186, GT) -> GT 31.62/12.86 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Float) -> new_ltEs16(xwv43000, xwv44000) 31.62/12.86 new_esEs5(Just(xwv4000), Just(xwv3000), ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.86 new_ltEs21(xwv43001, xwv44001, ty_Char) -> new_ltEs14(xwv43001, xwv44001) 31.62/12.86 new_esEs4(Left(xwv4000), Left(xwv3000), app(app(ty_@2, cfh), cga), ceh) -> new_esEs6(xwv4000, xwv3000, cfh, cga) 31.62/12.86 new_esEs12(xwv4000, xwv3000, app(app(ty_Either, cbd), cbe)) -> new_esEs4(xwv4000, xwv3000, cbd, cbe) 31.62/12.86 new_ltEs21(xwv43001, xwv44001, ty_Float) -> new_ltEs16(xwv43001, xwv44001) 31.62/12.86 new_esEs17(Double(xwv4000, xwv4001), Double(xwv3000, xwv3001)) -> new_esEs9(new_sr(xwv4000, xwv3001), new_sr(xwv4001, xwv3000)) 31.62/12.86 new_ltEs21(xwv43001, xwv44001, ty_Int) -> new_ltEs6(xwv43001, xwv44001) 31.62/12.86 new_compare19(xwv43000, xwv44000) -> new_compare25(xwv43000, xwv44000, new_esEs19(xwv43000, xwv44000)) 31.62/12.86 new_lt15(xwv43000, xwv44000, h, ba) -> new_esEs8(new_compare8(xwv43000, xwv44000, h, ba), LT) 31.62/12.86 new_compare116(xwv43000, xwv44000, True, ff, fg) -> LT 31.62/12.86 new_primCmpInt(Pos(Succ(xwv4300)), Neg(xwv440)) -> GT 31.62/12.86 new_esEs19(False, False) -> True 31.62/12.86 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Bool, bd) -> new_ltEs17(xwv43000, xwv44000) 31.62/12.86 new_ltEs21(xwv43001, xwv44001, ty_Ordering) -> new_ltEs9(xwv43001, xwv44001) 31.62/12.86 new_esEs28(xwv43000, xwv44000, ty_Bool) -> new_esEs19(xwv43000, xwv44000) 31.62/12.86 new_ltEs18(xwv4300, xwv4400, ty_Double) -> new_ltEs15(xwv4300, xwv4400) 31.62/12.86 new_esEs25(xwv43000, xwv44000, app(ty_Ratio, ced)) -> new_esEs20(xwv43000, xwv44000, ced) 31.62/12.86 new_esEs28(xwv43000, xwv44000, ty_Double) -> new_esEs17(xwv43000, xwv44000) 31.62/12.86 new_esEs4(Right(xwv4000), Right(xwv3000), cgc, app(ty_[], cgg)) -> new_esEs13(xwv4000, xwv3000, cgg) 31.62/12.86 new_compare18(Float(xwv43000, Pos(xwv430010)), Float(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.62/12.86 new_compare18(Float(xwv43000, Neg(xwv430010)), Float(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.62/12.86 new_ltEs20(xwv43002, xwv44002, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs12(xwv43002, xwv44002, bch, bda, bdb) 31.62/12.86 new_esEs23(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.86 new_ltEs21(xwv43001, xwv44001, app(app(ty_@2, gh), ha)) -> new_ltEs11(xwv43001, xwv44001, gh, ha) 31.62/12.86 new_ltEs13(xwv4300, xwv4400) -> new_fsEs(new_compare15(xwv4300, xwv4400)) 31.62/12.86 new_esEs12(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.86 new_primPlusNat1(Succ(xwv33200), Succ(xwv13100)) -> Succ(Succ(new_primPlusNat1(xwv33200, xwv13100))) 31.62/12.86 new_compare15(@0, @0) -> EQ 31.62/12.86 new_esEs11(xwv4001, xwv3001, app(ty_[], caa)) -> new_esEs13(xwv4001, xwv3001, caa) 31.62/12.86 new_esEs6(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), chh, daa) -> new_asAs(new_esEs27(xwv4000, xwv3000, chh), new_esEs26(xwv4001, xwv3001, daa)) 31.62/12.86 new_primCmpNat0(Zero, Succ(xwv4400)) -> LT 31.62/12.86 new_esEs4(Left(xwv4000), Left(xwv3000), app(ty_[], cfd), ceh) -> new_esEs13(xwv4000, xwv3000, cfd) 31.62/12.86 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_@0) -> new_ltEs13(xwv43000, xwv44000) 31.62/12.86 new_esEs26(xwv4001, xwv3001, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs7(xwv4001, xwv3001, dab, dac, dad) 31.62/12.86 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_@2, ddf), ddg)) -> new_esEs6(xwv4000, xwv3000, ddf, ddg) 31.62/12.86 new_ltEs19(xwv4300, xwv4400, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs12(xwv4300, xwv4400, beb, bec, bed) 31.62/12.86 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Double, ceh) -> new_esEs17(xwv4000, xwv3000) 31.62/12.86 new_esEs24(xwv43001, xwv44001, app(ty_[], bbd)) -> new_esEs13(xwv43001, xwv44001, bbd) 31.62/12.86 new_primCmpNat0(Succ(xwv4300), Zero) -> GT 31.62/12.86 new_ltEs21(xwv43001, xwv44001, app(app(ty_Either, gd), ge)) -> new_ltEs8(xwv43001, xwv44001, gd, ge) 31.62/12.86 new_pePe(False, xwv181) -> xwv181 31.62/12.86 new_esEs10(xwv4002, xwv3002, ty_Double) -> new_esEs17(xwv4002, xwv3002) 31.62/12.86 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Ordering, ceh) -> new_esEs8(xwv4000, xwv3000) 31.62/12.86 new_esEs11(xwv4001, xwv3001, ty_Int) -> new_esEs9(xwv4001, xwv3001) 31.62/12.86 new_esEs25(xwv43000, xwv44000, ty_Integer) -> new_esEs14(xwv43000, xwv44000) 31.62/12.86 new_lt20(xwv43000, xwv44000, app(app(app(ty_@3, fh), ga), gb)) -> new_lt9(xwv43000, xwv44000, fh, ga, gb) 31.62/12.86 new_ltEs19(xwv4300, xwv4400, ty_@0) -> new_ltEs13(xwv4300, xwv4400) 31.62/12.86 new_lt20(xwv43000, xwv44000, app(ty_Ratio, ceg)) -> new_lt16(xwv43000, xwv44000, ceg) 31.62/12.86 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Ordering, bd) -> new_ltEs9(xwv43000, xwv44000) 31.62/12.86 new_lt13(xwv43001, xwv44001, app(ty_Maybe, bbc)) -> new_lt17(xwv43001, xwv44001, bbc) 31.62/12.86 new_ltEs18(xwv4300, xwv4400, ty_Bool) -> new_ltEs17(xwv4300, xwv4400) 31.62/12.86 new_esEs4(Right(xwv4000), Right(xwv3000), cgc, app(ty_Maybe, chb)) -> new_esEs5(xwv4000, xwv3000, chb) 31.62/12.86 new_compare26(Left(xwv4300), Right(xwv4400), False, bdc, be) -> LT 31.62/12.86 new_esEs8(LT, EQ) -> False 31.62/12.86 new_esEs8(EQ, LT) -> False 31.62/12.86 new_esEs27(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.86 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.86 new_esEs10(xwv4002, xwv3002, ty_Char) -> new_esEs18(xwv4002, xwv3002) 31.62/12.86 new_lt13(xwv43001, xwv44001, ty_Bool) -> new_lt4(xwv43001, xwv44001) 31.62/12.86 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 31.62/12.86 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 31.62/12.86 new_esEs28(xwv43000, xwv44000, ty_@0) -> new_esEs16(xwv43000, xwv44000) 31.62/12.86 new_compare28(xwv43000, xwv44000, False, ff, fg) -> new_compare116(xwv43000, xwv44000, new_ltEs11(xwv43000, xwv44000, ff, fg), ff, fg) 31.62/12.86 new_esEs11(xwv4001, xwv3001, app(ty_Maybe, cad)) -> new_esEs5(xwv4001, xwv3001, cad) 31.62/12.86 new_esEs24(xwv43001, xwv44001, app(app(ty_@2, bbe), bbf)) -> new_esEs6(xwv43001, xwv44001, bbe, bbf) 31.62/12.86 new_lt12(xwv43000, xwv44000, app(app(ty_Either, he), hf)) -> new_lt15(xwv43000, xwv44000, he, hf) 31.62/12.86 new_compare114(xwv43000, xwv44000, True) -> LT 31.62/12.86 new_compare25(xwv43000, xwv44000, False) -> new_compare112(xwv43000, xwv44000, new_ltEs17(xwv43000, xwv44000)) 31.62/12.86 new_ltEs20(xwv43002, xwv44002, ty_@0) -> new_ltEs13(xwv43002, xwv44002) 31.62/12.86 new_esEs26(xwv4001, xwv3001, app(ty_[], dae)) -> new_esEs13(xwv4001, xwv3001, dae) 31.62/12.86 new_ltEs8(Right(xwv43000), Right(xwv44000), ce, ty_Float) -> new_ltEs16(xwv43000, xwv44000) 31.62/12.86 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Int) -> new_ltEs6(xwv43000, xwv44000) 31.62/12.86 new_ltEs18(xwv4300, xwv4400, app(app(app(ty_@3, bah), hg), hh)) -> new_ltEs12(xwv4300, xwv4400, bah, hg, hh) 31.62/12.86 new_ltEs18(xwv4300, xwv4400, ty_Ordering) -> new_ltEs9(xwv4300, xwv4400) 31.62/12.86 new_esEs5(Nothing, Nothing, dcf) -> True 31.62/12.86 new_compare6(xwv43000, xwv44000, ty_Int) -> new_compare7(xwv43000, xwv44000) 31.62/12.86 new_esEs12(xwv4000, xwv3000, app(ty_Ratio, cca)) -> new_esEs20(xwv4000, xwv3000, cca) 31.62/12.86 new_compare17(Double(xwv43000, Neg(xwv430010)), Double(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.62/12.86 new_compare14(xwv43000, xwv44000, fh, ga, gb) -> new_compare27(xwv43000, xwv44000, new_esEs7(xwv43000, xwv44000, fh, ga, gb), fh, ga, gb) 31.62/12.86 new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 31.62/12.86 new_esEs25(xwv43000, xwv44000, ty_Ordering) -> new_esEs8(xwv43000, xwv44000) 31.62/12.86 new_esEs5(Nothing, Just(xwv3000), dcf) -> False 31.62/12.86 new_esEs5(Just(xwv4000), Nothing, dcf) -> False 31.62/12.86 new_primCmpInt(Neg(Zero), Pos(Succ(xwv4400))) -> LT 31.62/12.86 new_ltEs19(xwv4300, xwv4400, ty_Char) -> new_ltEs14(xwv4300, xwv4400) 31.62/12.86 new_primMulInt(Pos(xwv40010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 31.62/12.86 new_compare6(xwv43000, xwv44000, ty_Ordering) -> new_compare10(xwv43000, xwv44000) 31.62/12.86 new_esEs23(xwv4000, xwv3000, app(app(ty_Either, cdf), cdg)) -> new_esEs4(xwv4000, xwv3000, cdf, cdg) 31.62/12.86 new_ltEs20(xwv43002, xwv44002, ty_Double) -> new_ltEs15(xwv43002, xwv44002) 31.62/12.86 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.86 new_compare10(xwv43000, xwv44000) -> new_compare24(xwv43000, xwv44000, new_esEs8(xwv43000, xwv44000)) 31.62/12.86 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Double) -> new_ltEs15(xwv43000, xwv44000) 31.62/12.86 new_esEs13(:(xwv4000, xwv4001), [], cda) -> False 31.62/12.86 new_esEs13([], :(xwv3000, xwv3001), cda) -> False 31.62/12.86 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Bool) -> new_ltEs17(xwv43000, xwv44000) 31.62/12.86 new_esEs4(Right(xwv4000), Right(xwv3000), cgc, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.86 new_esEs26(xwv4001, xwv3001, app(app(ty_@2, dba), dbb)) -> new_esEs6(xwv4001, xwv3001, dba, dbb) 31.62/12.86 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(app(ty_@3, dcg), dch), dda)) -> new_esEs7(xwv4000, xwv3000, dcg, dch, dda) 31.62/12.86 new_esEs11(xwv4001, xwv3001, app(app(ty_Either, cab), cac)) -> new_esEs4(xwv4001, xwv3001, cab, cac) 31.62/12.86 new_ltEs8(Right(xwv43000), Left(xwv44000), ce, bd) -> False 31.62/12.86 new_lt11(xwv43000, xwv44000) -> new_esEs8(new_compare10(xwv43000, xwv44000), LT) 31.62/12.86 new_ltEs11(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), gc, fb) -> new_pePe(new_lt20(xwv43000, xwv44000, gc), new_asAs(new_esEs28(xwv43000, xwv44000, gc), new_ltEs21(xwv43001, xwv44001, fb))) 31.62/12.86 new_esEs12(xwv4000, xwv3000, app(app(ty_@2, cbg), cbh)) -> new_esEs6(xwv4000, xwv3000, cbg, cbh) 31.62/12.86 new_primMulNat0(Succ(xwv400100), Zero) -> Zero 31.62/12.86 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 31.62/12.86 new_lt20(xwv43000, xwv44000, ty_Double) -> new_lt8(xwv43000, xwv44000) 31.62/12.86 new_primPlusNat0(Zero, xwv300000) -> Succ(xwv300000) 31.62/12.86 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Integer, bd) -> new_ltEs5(xwv43000, xwv44000) 31.62/12.86 new_esEs4(Right(xwv4000), Right(xwv3000), cgc, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.86 new_ltEs9(GT, EQ) -> False 31.62/12.86 new_ltEs15(xwv4300, xwv4400) -> new_fsEs(new_compare17(xwv4300, xwv4400)) 31.62/12.86 new_esEs11(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 31.62/12.86 new_esEs23(xwv4000, xwv3000, app(ty_Maybe, cdh)) -> new_esEs5(xwv4000, xwv3000, cdh) 31.62/12.86 new_esEs10(xwv4002, xwv3002, app(ty_Ratio, bhe)) -> new_esEs20(xwv4002, xwv3002, bhe) 31.62/12.86 new_esEs4(Right(xwv4000), Right(xwv3000), cgc, app(ty_Ratio, che)) -> new_esEs20(xwv4000, xwv3000, che) 31.62/12.86 new_lt13(xwv43001, xwv44001, app(ty_[], bbd)) -> new_lt18(xwv43001, xwv44001, bbd) 31.62/12.86 new_compare27(xwv43000, xwv44000, True, fh, ga, gb) -> EQ 31.62/12.86 new_esEs10(xwv4002, xwv3002, app(app(ty_Either, bgh), bha)) -> new_esEs4(xwv4002, xwv3002, bgh, bha) 31.62/12.86 new_ltEs8(Right(xwv43000), Right(xwv44000), ce, app(app(ty_Either, cf), cg)) -> new_ltEs8(xwv43000, xwv44000, cf, cg) 31.62/12.86 new_ltEs4(Just(xwv43000), Just(xwv44000), app(ty_Ratio, cch)) -> new_ltEs7(xwv43000, xwv44000, cch) 31.62/12.86 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Char, bd) -> new_ltEs14(xwv43000, xwv44000) 31.62/12.86 new_esEs22(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.86 new_lt6(xwv43000, xwv44000) -> new_esEs8(new_compare15(xwv43000, xwv44000), LT) 31.62/12.86 new_ltEs19(xwv4300, xwv4400, app(app(ty_Either, bdd), bde)) -> new_ltEs8(xwv4300, xwv4400, bdd, bde) 31.62/12.86 new_compare7(xwv43, xwv44) -> new_primCmpInt(xwv43, xwv44) 31.62/12.86 new_esEs8(LT, LT) -> True 31.62/12.86 new_ltEs18(xwv4300, xwv4400, app(app(ty_@2, gc), fb)) -> new_ltEs11(xwv4300, xwv4400, gc, fb) 31.62/12.86 new_esEs10(xwv4002, xwv3002, ty_Float) -> new_esEs15(xwv4002, xwv3002) 31.62/12.86 new_primPlusNat1(Succ(xwv33200), Zero) -> Succ(xwv33200) 31.62/12.86 new_primPlusNat1(Zero, Succ(xwv13100)) -> Succ(xwv13100) 31.62/12.86 new_esEs24(xwv43001, xwv44001, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs7(xwv43001, xwv44001, bbg, bbh, bca) 31.62/12.86 new_esEs20(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), ccg) -> new_asAs(new_esEs22(xwv4000, xwv3000, ccg), new_esEs21(xwv4001, xwv3001, ccg)) 31.62/12.86 new_ltEs21(xwv43001, xwv44001, ty_Bool) -> new_ltEs17(xwv43001, xwv44001) 31.62/12.86 new_esEs11(xwv4001, xwv3001, app(ty_Ratio, cag)) -> new_esEs20(xwv4001, xwv3001, cag) 31.62/12.86 new_lt20(xwv43000, xwv44000, ty_Char) -> new_lt10(xwv43000, xwv44000) 31.62/12.86 new_compare116(xwv43000, xwv44000, False, ff, fg) -> GT 31.62/12.86 new_compare9(:%(xwv43000, xwv43001), :%(xwv44000, xwv44001), ty_Int) -> new_compare7(new_sr(xwv43000, xwv44001), new_sr(xwv44000, xwv43001)) 31.62/12.86 new_ltEs8(Right(xwv43000), Right(xwv44000), ce, app(app(ty_@2, dc), dd)) -> new_ltEs11(xwv43000, xwv44000, dc, dd) 31.62/12.86 new_ltEs9(GT, GT) -> True 31.62/12.86 new_esEs11(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 31.62/12.86 new_ltEs8(Right(xwv43000), Right(xwv44000), ce, ty_Int) -> new_ltEs6(xwv43000, xwv44000) 31.62/12.86 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Ratio, ddh)) -> new_esEs20(xwv4000, xwv3000, ddh) 31.62/12.86 new_esEs23(xwv4000, xwv3000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs7(xwv4000, xwv3000, cdb, cdc, cdd) 31.62/12.86 new_lt20(xwv43000, xwv44000, ty_Ordering) -> new_lt11(xwv43000, xwv44000) 31.62/12.86 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_Either, ddc), ddd)) -> new_esEs4(xwv4000, xwv3000, ddc, ddd) 31.62/12.86 new_esEs28(xwv43000, xwv44000, ty_Integer) -> new_esEs14(xwv43000, xwv44000) 31.62/12.86 new_primMulInt(Neg(xwv40010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 31.62/12.86 new_primCmpInt(Pos(Zero), Pos(Succ(xwv4400))) -> new_primCmpNat0(Zero, Succ(xwv4400)) 31.62/12.86 new_esEs10(xwv4002, xwv3002, app(ty_Maybe, bhb)) -> new_esEs5(xwv4002, xwv3002, bhb) 31.62/12.86 new_ltEs20(xwv43002, xwv44002, ty_Bool) -> new_ltEs17(xwv43002, xwv44002) 31.62/12.86 new_esEs25(xwv43000, xwv44000, app(app(ty_@2, bac), bad)) -> new_esEs6(xwv43000, xwv44000, bac, bad) 31.62/12.86 new_esEs12(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.86 new_lt12(xwv43000, xwv44000, ty_Bool) -> new_lt4(xwv43000, xwv44000) 31.62/12.86 new_esEs12(xwv4000, xwv3000, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs7(xwv4000, xwv3000, cah, cba, cbb) 31.62/12.86 new_compare114(xwv43000, xwv44000, False) -> GT 31.62/12.86 new_esEs21(xwv4001, xwv3001, ty_Int) -> new_esEs9(xwv4001, xwv3001) 31.62/12.86 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Maybe, dde)) -> new_esEs5(xwv4000, xwv3000, dde) 31.62/12.86 new_ltEs18(xwv4300, xwv4400, ty_Char) -> new_ltEs14(xwv4300, xwv4400) 31.62/12.86 new_esEs23(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.86 new_ltEs18(xwv4300, xwv4400, app(app(ty_Either, ce), bd)) -> new_ltEs8(xwv4300, xwv4400, ce, bd) 31.62/12.86 new_lt20(xwv43000, xwv44000, ty_Float) -> new_lt19(xwv43000, xwv44000) 31.62/12.86 new_ltEs8(Left(xwv43000), Left(xwv44000), app(ty_Ratio, ccc), bd) -> new_ltEs7(xwv43000, xwv44000, ccc) 31.62/12.86 new_ltEs21(xwv43001, xwv44001, ty_Double) -> new_ltEs15(xwv43001, xwv44001) 31.62/12.86 new_compare112(xwv43000, xwv44000, True) -> LT 31.62/12.86 new_compare113(xwv160, xwv161, True, chf, chg) -> LT 31.62/12.86 new_compare6(xwv43000, xwv44000, app(ty_Ratio, bff)) -> new_compare9(xwv43000, xwv44000, bff) 31.62/12.86 new_esEs10(xwv4002, xwv3002, ty_@0) -> new_esEs16(xwv4002, xwv3002) 31.62/12.86 new_ltEs6(xwv4300, xwv4400) -> new_fsEs(new_compare7(xwv4300, xwv4400)) 31.62/12.86 new_primMulInt(Pos(xwv40010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 31.62/12.86 new_primMulInt(Neg(xwv40010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 31.62/12.86 new_ltEs21(xwv43001, xwv44001, app(ty_Ratio, dea)) -> new_ltEs7(xwv43001, xwv44001, dea) 31.62/12.86 new_esEs26(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 31.62/12.86 new_esEs23(xwv4000, xwv3000, app(app(ty_@2, cea), ceb)) -> new_esEs6(xwv4000, xwv3000, cea, ceb) 31.62/12.86 new_esEs11(xwv4001, xwv3001, ty_Char) -> new_esEs18(xwv4001, xwv3001) 31.62/12.86 new_compare6(xwv43000, xwv44000, app(app(ty_Either, bee), bef)) -> new_compare8(xwv43000, xwv44000, bee, bef) 31.62/12.86 new_esEs23(xwv4000, xwv3000, app(ty_[], cde)) -> new_esEs13(xwv4000, xwv3000, cde) 31.62/12.86 new_lt10(xwv43000, xwv44000) -> new_esEs8(new_compare16(xwv43000, xwv44000), LT) 31.62/12.86 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Float, ceh) -> new_esEs15(xwv4000, xwv3000) 31.62/12.86 new_ltEs8(Right(xwv43000), Right(xwv44000), ce, app(ty_[], db)) -> new_ltEs10(xwv43000, xwv44000, db) 31.62/12.86 new_lt20(xwv43000, xwv44000, ty_@0) -> new_lt6(xwv43000, xwv44000) 31.62/12.86 new_lt8(xwv43000, xwv44000) -> new_esEs8(new_compare17(xwv43000, xwv44000), LT) 31.62/12.86 new_esEs11(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 31.62/12.86 new_sr0(Integer(xwv430000), Integer(xwv440010)) -> Integer(new_primMulInt(xwv430000, xwv440010)) 31.62/12.86 new_esEs24(xwv43001, xwv44001, ty_Integer) -> new_esEs14(xwv43001, xwv44001) 31.62/12.86 new_lt16(xwv43000, xwv44000, ceg) -> new_esEs8(new_compare9(xwv43000, xwv44000, ceg), LT) 31.62/12.86 new_esEs10(xwv4002, xwv3002, ty_Int) -> new_esEs9(xwv4002, xwv3002) 31.62/12.86 new_ltEs19(xwv4300, xwv4400, ty_Bool) -> new_ltEs17(xwv4300, xwv4400) 31.62/12.86 new_compare18(Float(xwv43000, Pos(xwv430010)), Float(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.62/12.86 new_lt19(xwv43000, xwv44000) -> new_esEs8(new_compare18(xwv43000, xwv44000), LT) 31.62/12.86 new_ltEs4(Just(xwv43000), Just(xwv44000), app(ty_[], ec)) -> new_ltEs10(xwv43000, xwv44000, ec) 31.62/12.86 new_ltEs18(xwv4300, xwv4400, ty_@0) -> new_ltEs13(xwv4300, xwv4400) 31.62/12.86 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_@0, bd) -> new_ltEs13(xwv43000, xwv44000) 31.62/12.86 new_esEs23(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.86 new_esEs28(xwv43000, xwv44000, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs7(xwv43000, xwv44000, fh, ga, gb) 31.62/12.86 new_esEs4(Right(xwv4000), Right(xwv3000), cgc, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.86 new_compare6(xwv43000, xwv44000, app(app(ty_@2, bfa), bfb)) -> new_compare13(xwv43000, xwv44000, bfa, bfb) 31.62/12.86 new_lt12(xwv43000, xwv44000, ty_Int) -> new_lt14(xwv43000, xwv44000) 31.62/12.86 new_esEs25(xwv43000, xwv44000, ty_Int) -> new_esEs9(xwv43000, xwv44000) 31.62/12.86 new_compare0([], :(xwv44000, xwv44001), fa) -> LT 31.62/12.86 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.86 new_asAs(True, xwv95) -> xwv95 31.62/12.86 new_lt12(xwv43000, xwv44000, app(ty_Maybe, baa)) -> new_lt17(xwv43000, xwv44000, baa) 31.62/12.86 new_esEs4(Right(xwv4000), Right(xwv3000), cgc, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.86 new_ltEs8(Right(xwv43000), Right(xwv44000), ce, app(app(app(ty_@3, de), df), dg)) -> new_ltEs12(xwv43000, xwv44000, de, df, dg) 31.62/12.86 new_esEs27(xwv4000, xwv3000, app(ty_[], dbg)) -> new_esEs13(xwv4000, xwv3000, dbg) 31.62/12.86 new_ltEs16(xwv4300, xwv4400) -> new_fsEs(new_compare18(xwv4300, xwv4400)) 31.62/12.86 new_ltEs4(Nothing, Just(xwv44000), cce) -> True 31.62/12.86 new_compare17(Double(xwv43000, Pos(xwv430010)), Double(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.62/12.86 new_compare17(Double(xwv43000, Neg(xwv430010)), Double(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.62/12.86 new_esEs23(xwv4000, xwv3000, app(ty_Ratio, cec)) -> new_esEs20(xwv4000, xwv3000, cec) 31.62/12.86 new_esEs4(Left(xwv4000), Left(xwv3000), app(app(app(ty_@3, cfa), cfb), cfc), ceh) -> new_esEs7(xwv4000, xwv3000, cfa, cfb, cfc) 31.62/12.86 new_esEs16(@0, @0) -> True 31.62/12.86 new_esEs4(Left(xwv4000), Left(xwv3000), app(app(ty_Either, cfe), cff), ceh) -> new_esEs4(xwv4000, xwv3000, cfe, cff) 31.62/12.86 new_esEs4(Right(xwv4000), Right(xwv3000), cgc, app(app(ty_@2, chc), chd)) -> new_esEs6(xwv4000, xwv3000, chc, chd) 31.62/12.86 new_ltEs18(xwv4300, xwv4400, app(ty_Maybe, cce)) -> new_ltEs4(xwv4300, xwv4400, cce) 31.62/12.86 new_esEs26(xwv4001, xwv3001, ty_Char) -> new_esEs18(xwv4001, xwv3001) 31.62/12.86 new_ltEs19(xwv4300, xwv4400, ty_Double) -> new_ltEs15(xwv4300, xwv4400) 31.62/12.86 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.86 new_compare111(xwv167, xwv168, False, bfg, bfh) -> GT 31.62/12.86 new_ltEs20(xwv43002, xwv44002, ty_Char) -> new_ltEs14(xwv43002, xwv44002) 31.62/12.86 new_ltEs20(xwv43002, xwv44002, ty_Float) -> new_ltEs16(xwv43002, xwv44002) 31.62/12.86 new_compare6(xwv43000, xwv44000, ty_Integer) -> new_compare11(xwv43000, xwv44000) 31.62/12.86 new_primCmpInt(Pos(Succ(xwv4300)), Pos(xwv440)) -> new_primCmpNat0(Succ(xwv4300), xwv440) 31.62/12.86 new_lt5(xwv43000, xwv44000, ff, fg) -> new_esEs8(new_compare13(xwv43000, xwv44000, ff, fg), LT) 31.62/12.86 new_primCompAux00(xwv186, EQ) -> xwv186 31.62/12.86 new_compare0([], [], fa) -> EQ 31.62/12.86 new_sr(xwv4001, xwv3000) -> new_primMulInt(xwv4001, xwv3000) 31.62/12.86 new_lt7(xwv43000, xwv44000) -> new_esEs8(new_compare11(xwv43000, xwv44000), LT) 31.62/12.86 new_esEs27(xwv4000, xwv3000, app(app(ty_@2, dcc), dcd)) -> new_esEs6(xwv4000, xwv3000, dcc, dcd) 31.62/12.86 new_esEs28(xwv43000, xwv44000, ty_Float) -> new_esEs15(xwv43000, xwv44000) 31.62/12.86 new_ltEs4(Just(xwv43000), Just(xwv44000), app(app(ty_Either, dh), ea)) -> new_ltEs8(xwv43000, xwv44000, dh, ea) 31.62/12.86 new_lt4(xwv43000, xwv44000) -> new_esEs8(new_compare19(xwv43000, xwv44000), LT) 31.62/12.86 new_primMulNat0(Zero, Zero) -> Zero 31.62/12.86 new_esEs12(xwv4000, xwv3000, app(ty_[], cbc)) -> new_esEs13(xwv4000, xwv3000, cbc) 31.62/12.86 new_compare6(xwv43000, xwv44000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare14(xwv43000, xwv44000, bfc, bfd, bfe) 31.62/12.86 new_ltEs5(xwv4300, xwv4400) -> new_fsEs(new_compare11(xwv4300, xwv4400)) 31.62/12.86 new_esEs10(xwv4002, xwv3002, ty_Bool) -> new_esEs19(xwv4002, xwv3002) 31.62/12.86 new_esEs27(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.86 new_ltEs19(xwv4300, xwv4400, app(ty_Ratio, ccf)) -> new_ltEs7(xwv4300, xwv4400, ccf) 31.62/12.86 new_esEs24(xwv43001, xwv44001, app(ty_Maybe, bbc)) -> new_esEs5(xwv43001, xwv44001, bbc) 31.62/12.86 new_esEs12(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.86 new_ltEs4(Just(xwv43000), Just(xwv44000), app(app(ty_@2, ed), ee)) -> new_ltEs11(xwv43000, xwv44000, ed, ee) 31.62/12.86 new_compare11(Integer(xwv43000), Integer(xwv44000)) -> new_primCmpInt(xwv43000, xwv44000) 31.62/12.86 new_compare115(xwv43000, xwv44000, False, fh, ga, gb) -> GT 31.62/12.86 new_compare24(xwv43000, xwv44000, False) -> new_compare114(xwv43000, xwv44000, new_ltEs9(xwv43000, xwv44000)) 31.62/12.86 new_esEs25(xwv43000, xwv44000, app(app(ty_Either, he), hf)) -> new_esEs4(xwv43000, xwv44000, he, hf) 31.62/12.86 new_esEs4(Right(xwv4000), Right(xwv3000), cgc, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.86 new_esEs25(xwv43000, xwv44000, app(ty_Maybe, baa)) -> new_esEs5(xwv43000, xwv44000, baa) 31.62/12.86 new_esEs4(Right(xwv4000), Right(xwv3000), cgc, app(app(ty_Either, cgh), cha)) -> new_esEs4(xwv4000, xwv3000, cgh, cha) 31.62/12.86 new_lt20(xwv43000, xwv44000, ty_Integer) -> new_lt7(xwv43000, xwv44000) 31.62/12.86 new_esEs28(xwv43000, xwv44000, app(app(ty_@2, ff), fg)) -> new_esEs6(xwv43000, xwv44000, ff, fg) 31.62/12.86 new_ltEs9(GT, LT) -> False 31.62/12.86 new_esEs24(xwv43001, xwv44001, app(ty_Ratio, cee)) -> new_esEs20(xwv43001, xwv44001, cee) 31.62/12.86 new_ltEs17(False, False) -> True 31.62/12.86 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.86 new_compare18(Float(xwv43000, Neg(xwv430010)), Float(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.62/12.86 new_esEs12(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.86 new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False 31.62/12.86 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 31.62/12.86 new_esEs24(xwv43001, xwv44001, ty_Int) -> new_esEs9(xwv43001, xwv44001) 31.62/12.86 new_lt13(xwv43001, xwv44001, app(app(ty_@2, bbe), bbf)) -> new_lt5(xwv43001, xwv44001, bbe, bbf) 31.62/12.86 new_ltEs8(Right(xwv43000), Right(xwv44000), ce, ty_Double) -> new_ltEs15(xwv43000, xwv44000) 31.62/12.86 new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 31.62/12.86 new_ltEs9(EQ, GT) -> True 31.62/12.86 new_compare24(xwv43000, xwv44000, True) -> EQ 31.62/12.86 new_esEs11(xwv4001, xwv3001, ty_Bool) -> new_esEs19(xwv4001, xwv3001) 31.62/12.86 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.86 new_ltEs18(xwv4300, xwv4400, ty_Integer) -> new_ltEs5(xwv4300, xwv4400) 31.62/12.86 new_ltEs8(Right(xwv43000), Right(xwv44000), ce, ty_Bool) -> new_ltEs17(xwv43000, xwv44000) 31.62/12.86 new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> False 31.62/12.86 new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> False 31.62/12.86 new_esEs26(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 31.62/12.86 new_compare26(Right(xwv4300), Right(xwv4400), False, bdc, be) -> new_compare111(xwv4300, xwv4400, new_ltEs19(xwv4300, xwv4400, be), bdc, be) 31.62/12.86 new_ltEs20(xwv43002, xwv44002, app(ty_Ratio, cef)) -> new_ltEs7(xwv43002, xwv44002, cef) 31.62/12.86 new_ltEs8(Left(xwv43000), Left(xwv44000), app(ty_[], bg), bd) -> new_ltEs10(xwv43000, xwv44000, bg) 31.62/12.86 new_primCmpInt(Neg(Zero), Neg(Succ(xwv4400))) -> new_primCmpNat0(Succ(xwv4400), Zero) 31.62/12.86 new_esEs28(xwv43000, xwv44000, app(ty_[], fd)) -> new_esEs13(xwv43000, xwv44000, fd) 31.62/12.86 new_esEs24(xwv43001, xwv44001, app(app(ty_Either, bba), bbb)) -> new_esEs4(xwv43001, xwv44001, bba, bbb) 31.62/12.86 new_esEs4(Right(xwv4000), Right(xwv3000), cgc, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.86 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 31.62/12.86 new_compare6(xwv43000, xwv44000, ty_Double) -> new_compare17(xwv43000, xwv44000) 31.62/12.86 new_ltEs17(True, False) -> False 31.62/12.86 new_compare8(xwv43000, xwv44000, h, ba) -> new_compare26(xwv43000, xwv44000, new_esEs4(xwv43000, xwv44000, h, ba), h, ba) 31.62/12.86 new_esEs27(xwv4000, xwv3000, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.86 new_esEs28(xwv43000, xwv44000, app(ty_Maybe, fc)) -> new_esEs5(xwv43000, xwv44000, fc) 31.62/12.86 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_[], ddb)) -> new_esEs13(xwv4000, xwv3000, ddb) 31.62/12.86 new_lt12(xwv43000, xwv44000, app(ty_Ratio, ced)) -> new_lt16(xwv43000, xwv44000, ced) 31.62/12.86 new_ltEs17(False, True) -> True 31.62/12.86 new_lt13(xwv43001, xwv44001, ty_Float) -> new_lt19(xwv43001, xwv44001) 31.62/12.86 new_primCompAux0(xwv43000, xwv44000, xwv182, fa) -> new_primCompAux00(xwv182, new_compare6(xwv43000, xwv44000, fa)) 31.62/12.86 new_esEs24(xwv43001, xwv44001, ty_Float) -> new_esEs15(xwv43001, xwv44001) 31.62/12.86 new_esEs4(Right(xwv4000), Right(xwv3000), cgc, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.86 new_esEs10(xwv4002, xwv3002, ty_Integer) -> new_esEs14(xwv4002, xwv3002) 31.62/12.86 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Integer) -> new_ltEs5(xwv43000, xwv44000) 31.62/12.86 new_esEs11(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 31.62/12.86 new_ltEs8(Left(xwv43000), Right(xwv44000), ce, bd) -> True 31.62/12.86 new_lt13(xwv43001, xwv44001, ty_@0) -> new_lt6(xwv43001, xwv44001) 31.62/12.86 new_not(False) -> True 31.62/12.86 new_esEs28(xwv43000, xwv44000, ty_Int) -> new_esEs9(xwv43000, xwv44000) 31.62/12.86 new_compare0(:(xwv43000, xwv43001), [], fa) -> GT 31.62/12.86 new_esEs8(LT, GT) -> False 31.62/12.86 new_esEs8(GT, LT) -> False 31.62/12.86 new_lt20(xwv43000, xwv44000, app(app(ty_@2, ff), fg)) -> new_lt5(xwv43000, xwv44000, ff, fg) 31.62/12.86 new_esEs25(xwv43000, xwv44000, ty_Double) -> new_esEs17(xwv43000, xwv44000) 31.62/12.86 new_esEs24(xwv43001, xwv44001, ty_@0) -> new_esEs16(xwv43001, xwv44001) 31.62/12.86 new_esEs12(xwv4000, xwv3000, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.86 new_compare25(xwv43000, xwv44000, True) -> EQ 31.62/12.86 new_esEs23(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.86 new_ltEs18(xwv4300, xwv4400, ty_Int) -> new_ltEs6(xwv4300, xwv4400) 31.62/12.86 new_esEs27(xwv4000, xwv3000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs7(xwv4000, xwv3000, dbd, dbe, dbf) 31.62/12.86 new_primPlusNat0(Succ(xwv1400), xwv300000) -> Succ(Succ(new_primPlusNat1(xwv1400, xwv300000))) 31.62/12.86 new_esEs26(xwv4001, xwv3001, app(ty_Maybe, dah)) -> new_esEs5(xwv4001, xwv3001, dah) 31.62/12.86 new_esEs13(:(xwv4000, xwv4001), :(xwv3000, xwv3001), cda) -> new_asAs(new_esEs23(xwv4000, xwv3000, cda), new_esEs13(xwv4001, xwv3001, cda)) 31.62/12.86 new_esEs24(xwv43001, xwv44001, ty_Bool) -> new_esEs19(xwv43001, xwv44001) 31.62/12.86 new_ltEs9(LT, EQ) -> True 31.62/12.86 new_esEs4(Left(xwv4000), Left(xwv3000), app(ty_Maybe, cfg), ceh) -> new_esEs5(xwv4000, xwv3000, cfg) 31.62/12.86 new_ltEs7(xwv4300, xwv4400, ccb) -> new_fsEs(new_compare9(xwv4300, xwv4400, ccb)) 31.62/12.86 new_compare16(Char(xwv43000), Char(xwv44000)) -> new_primCmpNat0(xwv43000, xwv44000) 31.62/12.86 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 31.62/12.86 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 31.62/12.86 new_compare0(:(xwv43000, xwv43001), :(xwv44000, xwv44001), fa) -> new_primCompAux0(xwv43000, xwv44000, new_compare0(xwv43001, xwv44001, fa), fa) 31.62/12.86 new_primPlusNat1(Zero, Zero) -> Zero 31.62/12.86 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Float, bd) -> new_ltEs16(xwv43000, xwv44000) 31.62/12.86 new_lt20(xwv43000, xwv44000, app(app(ty_Either, h), ba)) -> new_lt15(xwv43000, xwv44000, h, ba) 31.62/12.86 new_compare6(xwv43000, xwv44000, ty_Bool) -> new_compare19(xwv43000, xwv44000) 31.62/12.86 new_lt12(xwv43000, xwv44000, app(app(ty_@2, bac), bad)) -> new_lt5(xwv43000, xwv44000, bac, bad) 31.62/12.86 new_esEs26(xwv4001, xwv3001, app(ty_Ratio, dbc)) -> new_esEs20(xwv4001, xwv3001, dbc) 31.62/12.86 new_lt12(xwv43000, xwv44000, ty_Ordering) -> new_lt11(xwv43000, xwv44000) 31.62/12.86 new_ltEs21(xwv43001, xwv44001, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs12(xwv43001, xwv44001, hb, hc, hd) 31.62/12.86 new_esEs28(xwv43000, xwv44000, app(app(ty_Either, h), ba)) -> new_esEs4(xwv43000, xwv44000, h, ba) 31.62/12.86 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Ordering) -> new_ltEs9(xwv43000, xwv44000) 31.62/12.86 new_esEs26(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 31.62/12.86 new_esEs12(xwv4000, xwv3000, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.86 new_ltEs9(LT, GT) -> True 31.62/12.86 new_esEs27(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.86 new_esEs12(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.86 new_compare6(xwv43000, xwv44000, ty_@0) -> new_compare15(xwv43000, xwv44000) 31.62/12.86 new_esEs26(xwv4001, xwv3001, ty_Bool) -> new_esEs19(xwv4001, xwv3001) 31.62/12.86 new_esEs26(xwv4001, xwv3001, app(app(ty_Either, daf), dag)) -> new_esEs4(xwv4001, xwv3001, daf, dag) 31.62/12.86 new_ltEs20(xwv43002, xwv44002, app(ty_[], bce)) -> new_ltEs10(xwv43002, xwv44002, bce) 31.62/12.86 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 31.62/12.86 new_lt20(xwv43000, xwv44000, app(ty_[], fd)) -> new_lt18(xwv43000, xwv44000, fd) 31.62/12.86 new_primMulNat0(Succ(xwv400100), Succ(xwv300000)) -> new_primPlusNat0(new_primMulNat0(xwv400100, Succ(xwv300000)), xwv300000) 31.62/12.86 new_esEs27(xwv4000, xwv3000, app(ty_Ratio, dce)) -> new_esEs20(xwv4000, xwv3000, dce) 31.62/12.86 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Int, bd) -> new_ltEs6(xwv43000, xwv44000) 31.62/12.86 new_ltEs21(xwv43001, xwv44001, app(ty_[], gg)) -> new_ltEs10(xwv43001, xwv44001, gg) 31.62/12.86 new_esEs21(xwv4001, xwv3001, ty_Integer) -> new_esEs14(xwv4001, xwv3001) 31.62/12.86 new_primCmpNat0(Succ(xwv4300), Succ(xwv4400)) -> new_primCmpNat0(xwv4300, xwv4400) 31.62/12.86 new_compare9(:%(xwv43000, xwv43001), :%(xwv44000, xwv44001), ty_Integer) -> new_compare11(new_sr0(xwv43000, xwv44001), new_sr0(xwv44000, xwv43001)) 31.62/12.86 new_lt13(xwv43001, xwv44001, ty_Double) -> new_lt8(xwv43001, xwv44001) 31.62/12.86 new_lt13(xwv43001, xwv44001, ty_Char) -> new_lt10(xwv43001, xwv44001) 31.62/12.86 new_ltEs21(xwv43001, xwv44001, ty_Integer) -> new_ltEs5(xwv43001, xwv44001) 31.62/12.86 new_esEs28(xwv43000, xwv44000, ty_Ordering) -> new_esEs8(xwv43000, xwv44000) 31.62/12.86 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Integer, ceh) -> new_esEs14(xwv4000, xwv3000) 31.62/12.86 new_ltEs19(xwv4300, xwv4400, ty_Float) -> new_ltEs16(xwv4300, xwv4400) 31.62/12.86 new_esEs4(Left(xwv4000), Left(xwv3000), app(ty_Ratio, cgb), ceh) -> new_esEs20(xwv4000, xwv3000, cgb) 31.62/12.86 new_ltEs12(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, hg, hh) -> new_pePe(new_lt12(xwv43000, xwv44000, bah), new_asAs(new_esEs25(xwv43000, xwv44000, bah), new_pePe(new_lt13(xwv43001, xwv44001, hg), new_asAs(new_esEs24(xwv43001, xwv44001, hg), new_ltEs20(xwv43002, xwv44002, hh))))) 31.62/12.86 new_ltEs21(xwv43001, xwv44001, app(ty_Maybe, gf)) -> new_ltEs4(xwv43001, xwv44001, gf) 31.62/12.86 new_esEs24(xwv43001, xwv44001, ty_Char) -> new_esEs18(xwv43001, xwv44001) 31.62/12.86 new_esEs27(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.86 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 31.62/12.86 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 31.62/12.86 new_esEs28(xwv43000, xwv44000, app(ty_Ratio, ceg)) -> new_esEs20(xwv43000, xwv44000, ceg) 31.62/12.86 new_ltEs9(EQ, LT) -> False 31.62/12.86 new_compare26(Left(xwv4300), Left(xwv4400), False, bdc, be) -> new_compare113(xwv4300, xwv4400, new_ltEs18(xwv4300, xwv4400, bdc), bdc, be) 31.62/12.86 new_ltEs19(xwv4300, xwv4400, app(ty_Maybe, bdf)) -> new_ltEs4(xwv4300, xwv4400, bdf) 31.62/12.86 new_ltEs8(Right(xwv43000), Right(xwv44000), ce, ty_Char) -> new_ltEs14(xwv43000, xwv44000) 31.62/12.86 new_primEqNat0(Zero, Zero) -> True 31.62/12.86 new_lt12(xwv43000, xwv44000, ty_Double) -> new_lt8(xwv43000, xwv44000) 31.62/12.86 new_ltEs18(xwv4300, xwv4400, ty_Float) -> new_ltEs16(xwv4300, xwv4400) 31.62/12.86 new_ltEs8(Right(xwv43000), Right(xwv44000), ce, app(ty_Ratio, ccd)) -> new_ltEs7(xwv43000, xwv44000, ccd) 31.62/12.86 new_compare110(xwv43000, xwv44000, True, fc) -> LT 31.62/12.86 new_esEs26(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 31.62/12.86 new_esEs25(xwv43000, xwv44000, ty_Char) -> new_esEs18(xwv43000, xwv44000) 31.62/12.86 new_esEs11(xwv4001, xwv3001, ty_Integer) -> new_esEs14(xwv4001, xwv3001) 31.62/12.86 new_ltEs17(True, True) -> True 31.62/12.86 new_lt13(xwv43001, xwv44001, ty_Ordering) -> new_lt11(xwv43001, xwv44001) 31.62/12.86 new_asAs(False, xwv95) -> False 31.62/12.86 new_ltEs8(Left(xwv43000), Left(xwv44000), app(app(app(ty_@3, cb), cc), cd), bd) -> new_ltEs12(xwv43000, xwv44000, cb, cc, cd) 31.62/12.86 new_lt12(xwv43000, xwv44000, app(app(app(ty_@3, bae), baf), bag)) -> new_lt9(xwv43000, xwv44000, bae, baf, bag) 31.62/12.86 new_ltEs4(Just(xwv43000), Just(xwv44000), app(app(app(ty_@3, ef), eg), eh)) -> new_ltEs12(xwv43000, xwv44000, ef, eg, eh) 31.62/12.86 new_lt20(xwv43000, xwv44000, app(ty_Maybe, fc)) -> new_lt17(xwv43000, xwv44000, fc) 31.62/12.86 new_ltEs19(xwv4300, xwv4400, app(ty_[], bdg)) -> new_ltEs10(xwv4300, xwv4400, bdg) 31.62/12.86 new_lt13(xwv43001, xwv44001, app(ty_Ratio, cee)) -> new_lt16(xwv43001, xwv44001, cee) 31.62/12.86 new_esEs26(xwv4001, xwv3001, ty_Int) -> new_esEs9(xwv4001, xwv3001) 31.62/12.86 new_esEs27(xwv4000, xwv3000, app(ty_Maybe, dcb)) -> new_esEs5(xwv4000, xwv3000, dcb) 31.62/12.86 new_esEs25(xwv43000, xwv44000, ty_@0) -> new_esEs16(xwv43000, xwv44000) 31.62/12.86 new_compare28(xwv43000, xwv44000, True, ff, fg) -> EQ 31.62/12.86 new_esEs22(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.86 new_esEs14(Integer(xwv4000), Integer(xwv3000)) -> new_primEqInt(xwv4000, xwv3000) 31.62/12.86 new_lt13(xwv43001, xwv44001, ty_Int) -> new_lt14(xwv43001, xwv44001) 31.62/12.86 new_ltEs20(xwv43002, xwv44002, app(ty_Maybe, bcd)) -> new_ltEs4(xwv43002, xwv44002, bcd) 31.62/12.86 new_esEs27(xwv4000, xwv3000, app(app(ty_Either, dbh), dca)) -> new_esEs4(xwv4000, xwv3000, dbh, dca) 31.62/12.86 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.86 new_esEs8(EQ, GT) -> False 31.62/12.86 new_esEs8(GT, EQ) -> False 31.62/12.86 new_lt9(xwv43000, xwv44000, fh, ga, gb) -> new_esEs8(new_compare14(xwv43000, xwv44000, fh, ga, gb), LT) 31.62/12.86 new_compare13(xwv43000, xwv44000, ff, fg) -> new_compare28(xwv43000, xwv44000, new_esEs6(xwv43000, xwv44000, ff, fg), ff, fg) 31.62/12.86 new_ltEs9(EQ, EQ) -> True 31.62/12.86 new_esEs19(True, True) -> True 31.62/12.86 new_esEs25(xwv43000, xwv44000, ty_Bool) -> new_esEs19(xwv43000, xwv44000) 31.62/12.86 new_ltEs8(Right(xwv43000), Right(xwv44000), ce, ty_Ordering) -> new_ltEs9(xwv43000, xwv44000) 31.62/12.86 31.62/12.86 The set Q consists of the following terms: 31.62/12.86 31.62/12.86 new_esEs26(x0, x1, ty_Ordering) 31.62/12.86 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 31.62/12.86 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 31.62/12.86 new_esEs8(EQ, EQ) 31.62/12.86 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 31.62/12.86 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 31.62/12.86 new_esEs26(x0, x1, app(ty_Ratio, x2)) 31.62/12.86 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 31.62/12.86 new_esEs28(x0, x1, app(ty_Maybe, x2)) 31.62/12.86 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 31.62/12.86 new_ltEs20(x0, x1, ty_Bool) 31.62/12.86 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 31.62/12.86 new_compare6(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.86 new_esEs12(x0, x1, ty_Integer) 31.62/12.86 new_ltEs19(x0, x1, ty_Float) 31.62/12.86 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 31.62/12.86 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 31.62/12.86 new_esEs24(x0, x1, ty_Char) 31.62/12.86 new_ltEs18(x0, x1, ty_Int) 31.62/12.86 new_esEs5(Just(x0), Just(x1), ty_Float) 31.62/12.86 new_compare0(:(x0, x1), [], x2) 31.62/12.86 new_primPlusNat1(Zero, Zero) 31.62/12.86 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.86 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.86 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.86 new_lt8(x0, x1) 31.62/12.86 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.86 new_esEs18(Char(x0), Char(x1)) 31.62/12.86 new_primPlusNat1(Succ(x0), Zero) 31.62/12.86 new_esEs25(x0, x1, ty_Ordering) 31.62/12.86 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 31.62/12.86 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 31.62/12.86 new_ltEs18(x0, x1, ty_Ordering) 31.62/12.86 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.86 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.86 new_esEs23(x0, x1, ty_Double) 31.62/12.86 new_esEs24(x0, x1, ty_Int) 31.62/12.86 new_esEs19(False, False) 31.62/12.86 new_sr(x0, x1) 31.62/12.86 new_esEs26(x0, x1, ty_Int) 31.62/12.86 new_esEs11(x0, x1, ty_Float) 31.62/12.86 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 31.62/12.86 new_lt6(x0, x1) 31.62/12.86 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 31.62/12.86 new_lt10(x0, x1) 31.62/12.86 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 31.62/12.86 new_primEqInt(Pos(Zero), Pos(Zero)) 31.62/12.86 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.86 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 31.62/12.86 new_lt20(x0, x1, ty_Ordering) 31.62/12.86 new_ltEs18(x0, x1, ty_Char) 31.62/12.86 new_lt20(x0, x1, ty_Double) 31.62/12.86 new_esEs12(x0, x1, ty_Bool) 31.62/12.86 new_lt20(x0, x1, app(ty_[], x2)) 31.62/12.86 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 31.62/12.86 new_ltEs21(x0, x1, ty_Bool) 31.62/12.86 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.86 new_ltEs20(x0, x1, ty_@0) 31.62/12.86 new_esEs25(x0, x1, app(ty_Ratio, x2)) 31.62/12.86 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 31.62/12.86 new_esEs11(x0, x1, ty_Integer) 31.62/12.86 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 31.62/12.86 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 31.62/12.86 new_ltEs9(EQ, EQ) 31.62/12.86 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 31.62/12.86 new_primEqInt(Neg(Zero), Neg(Zero)) 31.62/12.86 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 31.62/12.86 new_ltEs18(x0, x1, ty_Double) 31.62/12.86 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.86 new_compare8(x0, x1, x2, x3) 31.62/12.86 new_esEs27(x0, x1, ty_Double) 31.62/12.86 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 31.62/12.86 new_ltEs8(Right(x0), Left(x1), x2, x3) 31.62/12.86 new_ltEs8(Left(x0), Right(x1), x2, x3) 31.62/12.86 new_esEs28(x0, x1, ty_Float) 31.62/12.86 new_compare24(x0, x1, True) 31.62/12.86 new_primMulInt(Pos(x0), Neg(x1)) 31.62/12.86 new_primMulInt(Neg(x0), Pos(x1)) 31.62/12.86 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 31.62/12.86 new_compare25(x0, x1, False) 31.62/12.86 new_primMulInt(Neg(x0), Neg(x1)) 31.62/12.86 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.86 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.86 new_esEs23(x0, x1, ty_Int) 31.62/12.86 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 31.62/12.86 new_lt13(x0, x1, ty_Double) 31.62/12.86 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.86 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 31.62/12.86 new_esEs24(x0, x1, ty_Ordering) 31.62/12.86 new_primEqNat0(Succ(x0), Succ(x1)) 31.62/12.86 new_ltEs17(True, True) 31.62/12.86 new_esEs12(x0, x1, ty_@0) 31.62/12.86 new_esEs23(x0, x1, ty_Char) 31.62/12.86 new_esEs12(x0, x1, app(ty_Ratio, x2)) 31.62/12.86 new_ltEs21(x0, x1, ty_Double) 31.62/12.86 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 31.62/12.86 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.86 new_esEs27(x0, x1, ty_Ordering) 31.62/12.86 new_ltEs4(Just(x0), Just(x1), ty_Float) 31.62/12.86 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.86 new_compare116(x0, x1, True, x2, x3) 31.62/12.86 new_primEqInt(Pos(Zero), Neg(Zero)) 31.62/12.86 new_primEqInt(Neg(Zero), Pos(Zero)) 31.62/12.86 new_ltEs21(x0, x1, ty_@0) 31.62/12.86 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.86 new_ltEs21(x0, x1, ty_Char) 31.62/12.86 new_esEs5(Just(x0), Just(x1), ty_Integer) 31.62/12.86 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.86 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 31.62/12.86 new_ltEs7(x0, x1, x2) 31.62/12.86 new_lt4(x0, x1) 31.62/12.86 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 31.62/12.86 new_esEs12(x0, x1, ty_Float) 31.62/12.86 new_compare19(x0, x1) 31.62/12.86 new_compare6(x0, x1, ty_Float) 31.62/12.86 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 31.62/12.86 new_esEs26(x0, x1, ty_Char) 31.62/12.86 new_compare6(x0, x1, app(ty_Maybe, x2)) 31.62/12.86 new_esEs26(x0, x1, ty_Double) 31.62/12.86 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 31.62/12.86 new_ltEs21(x0, x1, ty_Int) 31.62/12.86 new_compare15(@0, @0) 31.62/12.86 new_esEs10(x0, x1, ty_Integer) 31.62/12.86 new_esEs24(x0, x1, ty_Integer) 31.62/12.86 new_compare112(x0, x1, False) 31.62/12.86 new_esEs21(x0, x1, ty_Integer) 31.62/12.86 new_ltEs18(x0, x1, app(ty_[], x2)) 31.62/12.86 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 31.62/12.86 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.86 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.86 new_esEs26(x0, x1, app(ty_Maybe, x2)) 31.62/12.86 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.86 new_ltEs9(GT, GT) 31.62/12.86 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 31.62/12.86 new_ltEs20(x0, x1, ty_Ordering) 31.62/12.86 new_esEs12(x0, x1, ty_Int) 31.62/12.86 new_ltEs18(x0, x1, ty_Bool) 31.62/12.86 new_esEs25(x0, x1, ty_@0) 31.62/12.86 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 31.62/12.86 new_lt12(x0, x1, ty_Double) 31.62/12.86 new_compare7(x0, x1) 31.62/12.86 new_esEs11(x0, x1, ty_@0) 31.62/12.86 new_esEs13([], [], x0) 31.62/12.86 new_ltEs9(LT, EQ) 31.62/12.86 new_ltEs9(EQ, LT) 31.62/12.86 new_compare23(x0, x1, True, x2) 31.62/12.86 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 31.62/12.86 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 31.62/12.86 new_ltEs20(x0, x1, ty_Float) 31.62/12.86 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.86 new_esEs27(x0, x1, ty_@0) 31.62/12.86 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.86 new_lt9(x0, x1, x2, x3, x4) 31.62/12.86 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 31.62/12.86 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 31.62/12.86 new_esEs11(x0, x1, app(ty_Maybe, x2)) 31.62/12.86 new_esEs17(Double(x0, x1), Double(x2, x3)) 31.62/12.86 new_esEs5(Just(x0), Just(x1), ty_@0) 31.62/12.86 new_esEs27(x0, x1, app(ty_Ratio, x2)) 31.62/12.86 new_esEs19(False, True) 31.62/12.86 new_esEs19(True, False) 31.62/12.86 new_compare6(x0, x1, app(ty_Ratio, x2)) 31.62/12.86 new_lt13(x0, x1, ty_Ordering) 31.62/12.86 new_ltEs19(x0, x1, ty_Integer) 31.62/12.86 new_ltEs19(x0, x1, app(ty_[], x2)) 31.62/12.86 new_esEs10(x0, x1, ty_Bool) 31.62/12.86 new_ltEs4(Just(x0), Just(x1), ty_Char) 31.62/12.86 new_compare114(x0, x1, False) 31.62/12.86 new_esEs24(x0, x1, ty_Bool) 31.62/12.86 new_compare14(x0, x1, x2, x3, x4) 31.62/12.86 new_lt20(x0, x1, ty_@0) 31.62/12.86 new_compare6(x0, x1, ty_Bool) 31.62/12.86 new_ltEs4(Just(x0), Just(x1), ty_Int) 31.62/12.86 new_esEs8(GT, GT) 31.62/12.86 new_esEs12(x0, x1, ty_Char) 31.62/12.86 new_ltEs20(x0, x1, ty_Int) 31.62/12.86 new_esEs8(LT, EQ) 31.62/12.86 new_esEs8(EQ, LT) 31.62/12.86 new_esEs28(x0, x1, ty_Integer) 31.62/12.86 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.86 new_compare27(x0, x1, True, x2, x3, x4) 31.62/12.86 new_primCmpInt(Neg(Zero), Neg(Zero)) 31.62/12.86 new_esEs11(x0, x1, app(ty_Ratio, x2)) 31.62/12.86 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 31.62/12.86 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 31.62/12.86 new_esEs28(x0, x1, app(ty_Ratio, x2)) 31.62/12.86 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 31.62/12.86 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 31.62/12.86 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 31.62/12.86 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 31.62/12.86 new_compare26(x0, x1, True, x2, x3) 31.62/12.86 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.86 new_primCompAux00(x0, EQ) 31.62/12.86 new_ltEs5(x0, x1) 31.62/12.86 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 31.62/12.86 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 31.62/12.86 new_primCompAux0(x0, x1, x2, x3) 31.62/12.86 new_primCmpNat0(Zero, Succ(x0)) 31.62/12.86 new_esEs8(LT, LT) 31.62/12.86 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 31.62/12.86 new_compare25(x0, x1, True) 31.62/12.86 new_primCmpInt(Pos(Zero), Neg(Zero)) 31.62/12.86 new_primCmpInt(Neg(Zero), Pos(Zero)) 31.62/12.86 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.86 new_esEs28(x0, x1, ty_Char) 31.62/12.86 new_ltEs20(x0, x1, ty_Char) 31.62/12.86 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.86 new_esEs25(x0, x1, app(ty_[], x2)) 31.62/12.86 new_primEqNat0(Succ(x0), Zero) 31.62/12.86 new_esEs28(x0, x1, ty_Int) 31.62/12.86 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 31.62/12.86 new_ltEs17(True, False) 31.62/12.86 new_ltEs17(False, True) 31.62/12.86 new_ltEs9(LT, LT) 31.62/12.86 new_primCompAux00(x0, LT) 31.62/12.86 new_compare28(x0, x1, False, x2, x3) 31.62/12.86 new_ltEs4(Just(x0), Just(x1), ty_Bool) 31.62/12.86 new_sr0(Integer(x0), Integer(x1)) 31.62/12.86 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 31.62/12.86 new_esEs5(Nothing, Just(x0), x1) 31.62/12.86 new_esEs12(x0, x1, ty_Ordering) 31.62/12.86 new_compare115(x0, x1, False, x2, x3, x4) 31.62/12.86 new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 31.62/12.86 new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 31.62/12.86 new_ltEs20(x0, x1, ty_Integer) 31.62/12.86 new_ltEs19(x0, x1, ty_Char) 31.62/12.86 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.86 new_ltEs4(Just(x0), Just(x1), ty_Integer) 31.62/12.86 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 31.62/12.86 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 31.62/12.86 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 31.62/12.86 new_esEs11(x0, x1, ty_Double) 31.62/12.86 new_esEs23(x0, x1, app(ty_Maybe, x2)) 31.62/12.86 new_lt17(x0, x1, x2) 31.62/12.86 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.86 new_compare110(x0, x1, False, x2) 31.62/12.86 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.86 new_compare6(x0, x1, ty_Ordering) 31.62/12.86 new_lt12(x0, x1, app(ty_[], x2)) 31.62/12.86 new_compare0([], [], x0) 31.62/12.86 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 31.62/12.86 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 31.62/12.86 new_esEs26(x0, x1, app(ty_[], x2)) 31.62/12.86 new_esEs10(x0, x1, ty_Float) 31.62/12.87 new_lt20(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.87 new_ltEs18(x0, x1, ty_Float) 31.62/12.87 new_esEs28(x0, x1, ty_Bool) 31.62/12.87 new_esEs16(@0, @0) 31.62/12.87 new_pePe(False, x0) 31.62/12.87 new_ltEs19(x0, x1, ty_Bool) 31.62/12.87 new_esEs23(x0, x1, app(ty_[], x2)) 31.62/12.87 new_lt16(x0, x1, x2) 31.62/12.87 new_lt13(x0, x1, app(ty_Ratio, x2)) 31.62/12.87 new_compare113(x0, x1, False, x2, x3) 31.62/12.87 new_primMulInt(Pos(x0), Pos(x1)) 31.62/12.87 new_esEs25(x0, x1, ty_Double) 31.62/12.87 new_esEs24(x0, x1, ty_Float) 31.62/12.87 new_ltEs13(x0, x1) 31.62/12.87 new_compare6(x0, x1, ty_Integer) 31.62/12.87 new_esEs24(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 31.62/12.87 new_esEs9(x0, x1) 31.62/12.87 new_ltEs19(x0, x1, ty_Ordering) 31.62/12.87 new_esEs13(:(x0, x1), :(x2, x3), x4) 31.62/12.87 new_esEs25(x0, x1, ty_Float) 31.62/12.87 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 31.62/12.87 new_esEs5(Just(x0), Just(x1), ty_Ordering) 31.62/12.87 new_compare6(x0, x1, ty_Char) 31.62/12.87 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 31.62/12.87 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.87 new_compare23(x0, x1, False, x2) 31.62/12.87 new_esEs28(x0, x1, ty_Double) 31.62/12.87 new_esEs10(x0, x1, ty_Ordering) 31.62/12.87 new_esEs10(x0, x1, ty_Int) 31.62/12.87 new_ltEs19(x0, x1, ty_Double) 31.62/12.87 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 31.62/12.87 new_esEs13(:(x0, x1), [], x2) 31.62/12.87 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 31.62/12.87 new_primMulNat0(Zero, Zero) 31.62/12.87 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 31.62/12.87 new_ltEs20(x0, x1, app(ty_[], x2)) 31.62/12.87 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 31.62/12.87 new_esEs5(Just(x0), Nothing, x1) 31.62/12.87 new_fsEs(x0) 31.62/12.87 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 31.62/12.87 new_compare0(:(x0, x1), :(x2, x3), x4) 31.62/12.87 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.87 new_ltEs4(Nothing, Nothing, x0) 31.62/12.87 new_esEs21(x0, x1, ty_Int) 31.62/12.87 new_compare6(x0, x1, ty_Int) 31.62/12.87 new_esEs23(x0, x1, app(ty_Ratio, x2)) 31.62/12.87 new_lt20(x0, x1, ty_Float) 31.62/12.87 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 31.62/12.87 new_compare111(x0, x1, False, x2, x3) 31.62/12.87 new_lt12(x0, x1, ty_Integer) 31.62/12.87 new_esEs28(x0, x1, app(ty_[], x2)) 31.62/12.87 new_lt11(x0, x1) 31.62/12.87 new_primCmpNat0(Succ(x0), Succ(x1)) 31.62/12.87 new_compare10(x0, x1) 31.62/12.87 new_esEs28(x0, x1, ty_Ordering) 31.62/12.87 new_lt14(x0, x1) 31.62/12.87 new_compare112(x0, x1, True) 31.62/12.87 new_lt12(x0, x1, ty_@0) 31.62/12.87 new_esEs10(x0, x1, ty_Char) 31.62/12.87 new_esEs24(x0, x1, app(ty_Ratio, x2)) 31.62/12.87 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.87 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 31.62/12.87 new_compare28(x0, x1, True, x2, x3) 31.62/12.87 new_ltEs19(x0, x1, ty_Int) 31.62/12.87 new_esEs10(x0, x1, ty_Double) 31.62/12.87 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 31.62/12.87 new_primPlusNat0(Succ(x0), x1) 31.62/12.87 new_esEs5(Just(x0), Just(x1), ty_Int) 31.62/12.87 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 31.62/12.87 new_esEs5(Just(x0), Just(x1), ty_Double) 31.62/12.87 new_esEs5(Just(x0), Just(x1), ty_Char) 31.62/12.87 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.87 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 31.62/12.87 new_esEs26(x0, x1, ty_Float) 31.62/12.87 new_lt13(x0, x1, ty_Integer) 31.62/12.87 new_lt13(x0, x1, ty_@0) 31.62/12.87 new_ltEs6(x0, x1) 31.62/12.87 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 31.62/12.87 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 31.62/12.87 new_primEqNat0(Zero, Succ(x0)) 31.62/12.87 new_not(True) 31.62/12.87 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.87 new_compare13(x0, x1, x2, x3) 31.62/12.87 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.87 new_compare6(x0, x1, ty_@0) 31.62/12.87 new_esEs8(EQ, GT) 31.62/12.87 new_esEs8(GT, EQ) 31.62/12.87 new_lt13(x0, x1, app(ty_[], x2)) 31.62/12.87 new_compare6(x0, x1, ty_Double) 31.62/12.87 new_compare24(x0, x1, False) 31.62/12.87 new_compare16(Char(x0), Char(x1)) 31.62/12.87 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 31.62/12.87 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 31.62/12.87 new_esEs11(x0, x1, app(ty_[], x2)) 31.62/12.87 new_esEs15(Float(x0, x1), Float(x2, x3)) 31.62/12.87 new_ltEs21(x0, x1, ty_Float) 31.62/12.87 new_ltEs14(x0, x1) 31.62/12.87 new_esEs11(x0, x1, ty_Ordering) 31.62/12.87 new_asAs(True, x0) 31.62/12.87 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 31.62/12.87 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.87 new_asAs(False, x0) 31.62/12.87 new_esEs10(x0, x1, app(ty_Ratio, x2)) 31.62/12.87 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 31.62/12.87 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 31.62/12.87 new_lt15(x0, x1, x2, x3) 31.62/12.87 new_compare111(x0, x1, True, x2, x3) 31.62/12.87 new_primMulNat0(Zero, Succ(x0)) 31.62/12.87 new_primPlusNat1(Zero, Succ(x0)) 31.62/12.87 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 31.62/12.87 new_compare115(x0, x1, True, x2, x3, x4) 31.62/12.87 new_ltEs18(x0, x1, ty_Integer) 31.62/12.87 new_ltEs21(x0, x1, app(ty_[], x2)) 31.62/12.87 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 31.62/12.87 new_esEs23(x0, x1, ty_Float) 31.62/12.87 new_lt13(x0, x1, ty_Bool) 31.62/12.87 new_esEs27(x0, x1, ty_Integer) 31.62/12.87 new_esEs19(True, True) 31.62/12.87 new_lt19(x0, x1) 31.62/12.87 new_compare6(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.87 new_esEs23(x0, x1, ty_@0) 31.62/12.87 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.87 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.87 new_primCmpInt(Pos(Zero), Pos(Zero)) 31.62/12.87 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 31.62/12.87 new_lt7(x0, x1) 31.62/12.87 new_compare114(x0, x1, True) 31.62/12.87 new_esEs25(x0, x1, ty_Bool) 31.62/12.87 new_esEs13([], :(x0, x1), x2) 31.62/12.87 new_compare0([], :(x0, x1), x2) 31.62/12.87 new_ltEs4(Just(x0), Nothing, x1) 31.62/12.87 new_compare12(x0, x1, x2) 31.62/12.87 new_esEs5(Nothing, Nothing, x0) 31.62/12.87 new_lt13(x0, x1, ty_Char) 31.62/12.87 new_compare113(x0, x1, True, x2, x3) 31.62/12.87 new_esEs26(x0, x1, ty_Bool) 31.62/12.87 new_compare6(x0, x1, app(ty_[], x2)) 31.62/12.87 new_ltEs20(x0, x1, ty_Double) 31.62/12.87 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 31.62/12.87 new_lt12(x0, x1, ty_Ordering) 31.62/12.87 new_primMulNat0(Succ(x0), Zero) 31.62/12.87 new_esEs28(x0, x1, ty_@0) 31.62/12.87 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.87 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.87 new_lt12(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_lt13(x0, x1, ty_Int) 31.62/12.87 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 31.62/12.87 new_esEs26(x0, x1, ty_@0) 31.62/12.87 new_lt12(x0, x1, ty_Int) 31.62/12.87 new_compare26(Left(x0), Left(x1), False, x2, x3) 31.62/12.87 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_esEs8(LT, GT) 31.62/12.87 new_esEs8(GT, LT) 31.62/12.87 new_esEs5(Just(x0), Just(x1), ty_Bool) 31.62/12.87 new_esEs27(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 31.62/12.87 new_esEs27(x0, x1, ty_Char) 31.62/12.87 new_primPlusNat1(Succ(x0), Succ(x1)) 31.62/12.87 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.87 new_esEs26(x0, x1, ty_Integer) 31.62/12.87 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 31.62/12.87 new_primCmpNat0(Succ(x0), Zero) 31.62/12.87 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 31.62/12.87 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 31.62/12.87 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.87 new_esEs25(x0, x1, ty_Integer) 31.62/12.87 new_esEs27(x0, x1, app(ty_[], x2)) 31.62/12.87 new_ltEs15(x0, x1) 31.62/12.87 new_lt20(x0, x1, ty_Char) 31.62/12.87 new_esEs27(x0, x1, ty_Bool) 31.62/12.87 new_ltEs4(Just(x0), Just(x1), ty_@0) 31.62/12.87 new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 31.62/12.87 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 31.62/12.87 new_lt12(x0, x1, ty_Float) 31.62/12.87 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 31.62/12.87 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 31.62/12.87 new_esEs23(x0, x1, ty_Bool) 31.62/12.87 new_esEs22(x0, x1, ty_Integer) 31.62/12.87 new_compare110(x0, x1, True, x2) 31.62/12.87 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.87 new_pePe(True, x0) 31.62/12.87 new_lt12(x0, x1, app(ty_Ratio, x2)) 31.62/12.87 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.87 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 31.62/12.87 new_ltEs19(x0, x1, ty_@0) 31.62/12.87 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.87 new_primPlusNat0(Zero, x0) 31.62/12.87 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 31.62/12.87 new_primMulNat0(Succ(x0), Succ(x1)) 31.62/12.87 new_lt13(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_lt13(x0, x1, ty_Float) 31.62/12.87 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 31.62/12.87 new_esEs12(x0, x1, ty_Double) 31.62/12.87 new_compare116(x0, x1, False, x2, x3) 31.62/12.87 new_lt20(x0, x1, ty_Int) 31.62/12.87 new_ltEs9(GT, EQ) 31.62/12.87 new_ltEs9(EQ, GT) 31.62/12.87 new_primEqNat0(Zero, Zero) 31.62/12.87 new_esEs11(x0, x1, ty_Int) 31.62/12.87 new_esEs24(x0, x1, ty_@0) 31.62/12.87 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.87 new_compare6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.87 new_not(False) 31.62/12.87 new_ltEs4(Nothing, Just(x0), x1) 31.62/12.87 new_esEs24(x0, x1, ty_Double) 31.62/12.87 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.87 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 31.62/12.87 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 31.62/12.87 new_esEs24(x0, x1, app(ty_[], x2)) 31.62/12.87 new_compare27(x0, x1, False, x2, x3, x4) 31.62/12.87 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 31.62/12.87 new_esEs12(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 31.62/12.87 new_lt18(x0, x1, x2) 31.62/12.87 new_ltEs10(x0, x1, x2) 31.62/12.87 new_ltEs4(Just(x0), Just(x1), ty_Double) 31.62/12.87 new_ltEs17(False, False) 31.62/12.87 new_esEs23(x0, x1, ty_Integer) 31.62/12.87 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 31.62/12.87 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 31.62/12.87 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 31.62/12.87 new_esEs27(x0, x1, ty_Int) 31.62/12.87 new_esEs22(x0, x1, ty_Int) 31.62/12.87 new_esEs4(Left(x0), Right(x1), x2, x3) 31.62/12.87 new_esEs4(Right(x0), Left(x1), x2, x3) 31.62/12.87 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 31.62/12.87 new_lt20(x0, x1, ty_Integer) 31.62/12.87 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 31.62/12.87 new_lt5(x0, x1, x2, x3) 31.62/12.87 new_lt20(x0, x1, ty_Bool) 31.62/12.87 new_ltEs18(x0, x1, ty_@0) 31.62/12.87 new_ltEs16(x0, x1) 31.62/12.87 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 31.62/12.87 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 31.62/12.87 new_compare11(Integer(x0), Integer(x1)) 31.62/12.87 new_lt12(x0, x1, ty_Char) 31.62/12.87 new_esEs25(x0, x1, ty_Int) 31.62/12.87 new_compare26(Right(x0), Right(x1), False, x2, x3) 31.62/12.87 new_esEs11(x0, x1, ty_Char) 31.62/12.87 new_esEs27(x0, x1, ty_Float) 31.62/12.87 new_ltEs21(x0, x1, ty_Integer) 31.62/12.87 new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 31.62/12.87 new_esEs20(:%(x0, x1), :%(x2, x3), x4) 31.62/12.87 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 31.62/12.87 new_esEs10(x0, x1, ty_@0) 31.62/12.87 new_esEs11(x0, x1, ty_Bool) 31.62/12.87 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_esEs25(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 31.62/12.87 new_esEs14(Integer(x0), Integer(x1)) 31.62/12.87 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 31.62/12.87 new_esEs10(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.87 new_esEs25(x0, x1, ty_Char) 31.62/12.87 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 31.62/12.87 new_ltEs21(x0, x1, ty_Ordering) 31.62/12.87 new_esEs23(x0, x1, ty_Ordering) 31.62/12.87 new_esEs10(x0, x1, app(ty_[], x2)) 31.62/12.87 new_primCmpNat0(Zero, Zero) 31.62/12.87 new_ltEs9(GT, LT) 31.62/12.87 new_ltEs9(LT, GT) 31.62/12.87 new_primCompAux00(x0, GT) 31.62/12.87 new_esEs12(x0, x1, app(ty_[], x2)) 31.62/12.87 new_compare26(Right(x0), Left(x1), False, x2, x3) 31.62/12.87 new_lt20(x0, x1, app(ty_Ratio, x2)) 31.62/12.87 new_compare26(Left(x0), Right(x1), False, x2, x3) 31.62/12.87 new_lt12(x0, x1, ty_Bool) 31.62/12.87 31.62/12.87 We have to consider all minimal (P,Q,R)-chains. 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (21) QDPSizeChangeProof (EQUIVALENT) 31.62/12.87 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.62/12.87 31.62/12.87 From the DPs we obtained the following set of size-change graphs: 31.62/12.87 *new_ltEs0(Just(xwv43000), Just(xwv44000), app(app(app(ty_@3, ef), eg), eh)) -> new_ltEs3(xwv43000, xwv44000, ef, eg, eh) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs0(Just(xwv43000), Just(xwv44000), app(ty_Maybe, eb)) -> new_ltEs0(xwv43000, xwv44000, eb) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, hg, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs3(xwv43002, xwv44002, bch, bda, bdb) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, hg, app(ty_Maybe, bcd)) -> new_ltEs0(xwv43002, xwv44002, bcd) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare1(:(xwv43000, xwv43001), :(xwv44000, xwv44001), fa) -> new_primCompAux(xwv43000, xwv44000, new_compare0(xwv43001, xwv44001, fa), fa) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare1(:(xwv43000, xwv43001), :(xwv44000, xwv44001), fa) -> new_compare1(xwv43001, xwv44001, fa) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare5(xwv43000, xwv44000, fh, ga, gb) -> new_compare22(xwv43000, xwv44000, new_esEs7(xwv43000, xwv44000, fh, ga, gb), fh, ga, gb) 31.62/12.87 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs1(:(xwv43000, xwv43001), :(xwv44000, xwv44001), fa) -> new_primCompAux(xwv43000, xwv44000, new_compare0(xwv43001, xwv44001, fa), fa) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(:(xwv43000, xwv43001)), Left(:(xwv44000, xwv44001)), False, app(ty_[], fa), be) -> new_primCompAux(xwv43000, xwv44000, new_compare0(xwv43001, xwv44001, fa), fa) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs1(:(xwv43000, xwv43001), :(xwv44000, xwv44001), fa) -> new_compare1(xwv43001, xwv44001, fa) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), gc, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs3(xwv43001, xwv44001, hb, hc, hd) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), gc, app(ty_Maybe, gf)) -> new_ltEs0(xwv43001, xwv44001, gf) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), app(app(ty_Either, h), ba), fb) -> new_compare2(xwv43000, xwv44000, new_esEs4(xwv43000, xwv44000, h, ba), h, ba) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), app(app(ty_@2, ff), fg), fb) -> new_compare21(xwv43000, xwv44000, new_esEs6(xwv43000, xwv44000, ff, fg), ff, fg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs0(Just(xwv43000), Just(xwv44000), app(app(ty_@2, ed), ee)) -> new_ltEs2(xwv43000, xwv44000, ed, ee) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, hg, app(app(ty_@2, bcf), bcg)) -> new_ltEs2(xwv43002, xwv44002, bcf, bcg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), gc, app(app(ty_@2, gh), ha)) -> new_ltEs2(xwv43001, xwv44001, gh, ha) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare21(xwv43000, xwv44000, False, ff, fg) -> new_ltEs2(xwv43000, xwv44000, ff, fg) 31.62/12.87 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_lt2(xwv43000, xwv44000, ff, fg) -> new_compare21(xwv43000, xwv44000, new_esEs6(xwv43000, xwv44000, ff, fg), ff, fg) 31.62/12.87 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_lt1(xwv43000, xwv44000, fd) -> new_compare1(xwv43000, xwv44000, fd) 31.62/12.87 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_lt3(xwv43000, xwv44000, fh, ga, gb) -> new_compare22(xwv43000, xwv44000, new_esEs7(xwv43000, xwv44000, fh, ga, gb), fh, ga, gb) 31.62/12.87 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 31.62/12.87 31.62/12.87 31.62/12.87 *new_lt0(xwv43000, xwv44000, fc) -> new_compare20(xwv43000, xwv44000, new_esEs5(xwv43000, xwv44000, fc), fc) 31.62/12.87 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare20(xwv43000, xwv44000, False, fc) -> new_ltEs0(xwv43000, xwv44000, fc) 31.62/12.87 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs0(Just(xwv43000), Just(xwv44000), app(app(ty_Either, dh), ea)) -> new_ltEs(xwv43000, xwv44000, dh, ea) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs0(Just(xwv43000), Just(xwv44000), app(ty_[], ec)) -> new_ltEs1(xwv43000, xwv44000, ec) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, hg, app(app(ty_Either, bcb), bcc)) -> new_ltEs(xwv43002, xwv44002, bcb, bcc) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), gc, app(app(ty_Either, gd), ge)) -> new_ltEs(xwv43001, xwv44001, gd, ge) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, app(app(ty_Either, h), ba)), fb), be) -> new_compare2(xwv43000, xwv44000, new_esEs4(xwv43000, xwv44000, h, ba), h, ba) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, app(app(ty_@2, ff), fg)), fb), be) -> new_compare21(xwv43000, xwv44000, new_esEs6(xwv43000, xwv44000, ff, fg), ff, fg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare4(xwv43000, xwv44000, ff, fg) -> new_compare21(xwv43000, xwv44000, new_esEs6(xwv43000, xwv44000, ff, fg), ff, fg) 31.62/12.87 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare22(xwv43000, xwv44000, False, fh, ga, gb) -> new_ltEs3(xwv43000, xwv44000, fh, ga, gb) 31.62/12.87 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_primCompAux(xwv43000, xwv44000, xwv182, app(app(ty_@2, bfa), bfb)) -> new_compare4(xwv43000, xwv44000, bfa, bfb) 31.62/12.87 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), app(app(app(ty_@3, fh), ga), gb), fb) -> new_compare22(xwv43000, xwv44000, new_esEs7(xwv43000, xwv44000, fh, ga, gb), fh, ga, gb) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, app(app(app(ty_@3, fh), ga), gb)), fb), be) -> new_compare22(xwv43000, xwv44000, new_esEs7(xwv43000, xwv44000, fh, ga, gb), fh, ga, gb) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), app(ty_[], fd), fb) -> new_compare1(xwv43000, xwv44000, fd) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_primCompAux(xwv43000, xwv44000, xwv182, app(ty_[], beh)) -> new_compare1(xwv43000, xwv44000, beh) 31.62/12.87 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, hg, app(ty_[], bce)) -> new_ltEs1(xwv43002, xwv44002, bce) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), gc, app(ty_[], gg)) -> new_ltEs1(xwv43001, xwv44001, gg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs2(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), app(ty_Maybe, fc), fb) -> new_compare20(xwv43000, xwv44000, new_esEs5(xwv43000, xwv44000, fc), fc) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_lt(xwv43000, xwv44000, h, ba) -> new_compare2(xwv43000, xwv44000, new_esEs4(xwv43000, xwv44000, h, ba), h, ba) 31.62/12.87 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare(xwv43000, xwv44000, h, ba) -> new_compare2(xwv43000, xwv44000, new_esEs4(xwv43000, xwv44000, h, ba), h, ba) 31.62/12.87 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_primCompAux(xwv43000, xwv44000, xwv182, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare5(xwv43000, xwv44000, bfc, bfd, bfe) 31.62/12.87 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare3(xwv43000, xwv44000, fc) -> new_compare20(xwv43000, xwv44000, new_esEs5(xwv43000, xwv44000, fc), fc) 31.62/12.87 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, app(ty_Maybe, fc)), fb), be) -> new_compare20(xwv43000, xwv44000, new_esEs5(xwv43000, xwv44000, fc), fc) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_primCompAux(xwv43000, xwv44000, xwv182, app(app(ty_Either, bee), bef)) -> new_compare(xwv43000, xwv44000, bee, bef) 31.62/12.87 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_primCompAux(xwv43000, xwv44000, xwv182, app(ty_Maybe, beg)) -> new_compare3(xwv43000, xwv44000, beg) 31.62/12.87 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, app(ty_[], bbd), hh) -> new_lt1(xwv43001, xwv44001, bbd) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), app(ty_[], bab), hg, hh) -> new_lt1(xwv43000, xwv44000, bab) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), app(ty_[], bbd)), hh), be) -> new_lt1(xwv43001, xwv44001, bbd) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, app(ty_[], bab)), hg), hh), be) -> new_lt1(xwv43000, xwv44000, bab) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), hg), app(app(app(ty_@3, bch), bda), bdb)), be) -> new_ltEs3(xwv43002, xwv44002, bch, bda, bdb) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, gc), app(app(app(ty_@3, hb), hc), hd)), be) -> new_ltEs3(xwv43001, xwv44001, hb, hc, hd) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(Right(xwv43000)), Left(Right(xwv44000)), False, app(app(ty_Either, ce), app(app(app(ty_@3, de), df), dg)), be) -> new_ltEs3(xwv43000, xwv44000, de, df, dg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Right(xwv4300), Right(xwv4400), False, bdc, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs3(xwv4300, xwv4400, beb, bec, bed) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(Just(xwv43000)), Left(Just(xwv44000)), False, app(ty_Maybe, app(app(app(ty_@3, ef), eg), eh)), be) -> new_ltEs3(xwv43000, xwv44000, ef, eg, eh) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(Left(xwv43000)), Left(Left(xwv44000)), False, app(app(ty_Either, app(app(app(ty_@3, cb), cc), cd)), bd), be) -> new_ltEs3(xwv43000, xwv44000, cb, cc, cd) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs(Left(xwv43000), Left(xwv44000), app(app(app(ty_@3, cb), cc), cd), bd) -> new_ltEs3(xwv43000, xwv44000, cb, cc, cd) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs(Right(xwv43000), Right(xwv44000), ce, app(app(app(ty_@3, de), df), dg)) -> new_ltEs3(xwv43000, xwv44000, de, df, dg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), app(app(ty_Either, he), hf), hg, hh) -> new_lt(xwv43000, xwv44000, he, hf) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, app(app(ty_Either, bba), bbb), hh) -> new_lt(xwv43001, xwv44001, bba, bbb) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), app(app(app(ty_@3, bae), baf), bag), hg, hh) -> new_lt3(xwv43000, xwv44000, bae, baf, bag) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, app(app(app(ty_@3, bbg), bbh), bca), hh) -> new_lt3(xwv43001, xwv44001, bbg, bbh, bca) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, app(ty_Maybe, bbc), hh) -> new_lt0(xwv43001, xwv44001, bbc) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), app(ty_Maybe, baa), hg, hh) -> new_lt0(xwv43000, xwv44000, baa) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), app(app(ty_@2, bac), bad), hg, hh) -> new_lt2(xwv43000, xwv44000, bac, bad) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs3(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bah, app(app(ty_@2, bbe), bbf), hh) -> new_lt2(xwv43001, xwv44001, bbe, bbf) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(Right(xwv43000)), Left(Right(xwv44000)), False, app(app(ty_Either, ce), app(ty_Maybe, da)), be) -> new_ltEs0(xwv43000, xwv44000, da) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), hg), app(ty_Maybe, bcd)), be) -> new_ltEs0(xwv43002, xwv44002, bcd) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, gc), app(ty_Maybe, gf)), be) -> new_ltEs0(xwv43001, xwv44001, gf) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(Just(xwv43000)), Left(Just(xwv44000)), False, app(ty_Maybe, app(ty_Maybe, eb)), be) -> new_ltEs0(xwv43000, xwv44000, eb) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Right(xwv4300), Right(xwv4400), False, bdc, app(ty_Maybe, bdf)) -> new_ltEs0(xwv4300, xwv4400, bdf) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(Left(xwv43000)), Left(Left(xwv44000)), False, app(app(ty_Either, app(ty_Maybe, bf)), bd), be) -> new_ltEs0(xwv43000, xwv44000, bf) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs(Left(xwv43000), Left(xwv44000), app(ty_Maybe, bf), bd) -> new_ltEs0(xwv43000, xwv44000, bf) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs(Right(xwv43000), Right(xwv44000), ce, app(ty_Maybe, da)) -> new_ltEs0(xwv43000, xwv44000, da) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(Right(xwv43000)), Left(Right(xwv44000)), False, app(app(ty_Either, ce), app(app(ty_@2, dc), dd)), be) -> new_ltEs2(xwv43000, xwv44000, dc, dd) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(Left(xwv43000)), Left(Left(xwv44000)), False, app(app(ty_Either, app(app(ty_@2, bh), ca)), bd), be) -> new_ltEs2(xwv43000, xwv44000, bh, ca) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Right(xwv4300), Right(xwv4400), False, bdc, app(app(ty_@2, bdh), bea)) -> new_ltEs2(xwv4300, xwv4400, bdh, bea) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), hg), app(app(ty_@2, bcf), bcg)), be) -> new_ltEs2(xwv43002, xwv44002, bcf, bcg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(Just(xwv43000)), Left(Just(xwv44000)), False, app(ty_Maybe, app(app(ty_@2, ed), ee)), be) -> new_ltEs2(xwv43000, xwv44000, ed, ee) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, gc), app(app(ty_@2, gh), ha)), be) -> new_ltEs2(xwv43001, xwv44001, gh, ha) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs(Left(xwv43000), Left(xwv44000), app(app(ty_@2, bh), ca), bd) -> new_ltEs2(xwv43000, xwv44000, bh, ca) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs(Right(xwv43000), Right(xwv44000), ce, app(app(ty_@2, dc), dd)) -> new_ltEs2(xwv43000, xwv44000, dc, dd) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), hg), app(app(ty_Either, bcb), bcc)), be) -> new_ltEs(xwv43002, xwv44002, bcb, bcc) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(Just(xwv43000)), Left(Just(xwv44000)), False, app(ty_Maybe, app(app(ty_Either, dh), ea)), be) -> new_ltEs(xwv43000, xwv44000, dh, ea) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, gc), app(app(ty_Either, gd), ge)), be) -> new_ltEs(xwv43001, xwv44001, gd, ge) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(Left(xwv43000)), Left(Left(xwv44000)), False, app(app(ty_Either, app(app(ty_Either, bb), bc)), bd), be) -> new_ltEs(xwv43000, xwv44000, bb, bc) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(Right(xwv43000)), Left(Right(xwv44000)), False, app(app(ty_Either, ce), app(app(ty_Either, cf), cg)), be) -> new_ltEs(xwv43000, xwv44000, cf, cg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Right(xwv4300), Right(xwv4400), False, bdc, app(app(ty_Either, bdd), bde)) -> new_ltEs(xwv4300, xwv4400, bdd, bde) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs(Left(xwv43000), Left(xwv44000), app(app(ty_Either, bb), bc), bd) -> new_ltEs(xwv43000, xwv44000, bb, bc) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs(Right(xwv43000), Right(xwv44000), ce, app(app(ty_Either, cf), cg)) -> new_ltEs(xwv43000, xwv44000, cf, cg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), app(app(ty_Either, bba), bbb)), hh), be) -> new_lt(xwv43001, xwv44001, bba, bbb) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, app(app(ty_Either, he), hf)), hg), hh), be) -> new_lt(xwv43000, xwv44000, he, hf) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, app(ty_[], fd)), fb), be) -> new_compare1(xwv43000, xwv44000, fd) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(:(xwv43000, xwv43001)), Left(:(xwv44000, xwv44001)), False, app(ty_[], fa), be) -> new_compare1(xwv43001, xwv44001, fa) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(Right(xwv43000)), Left(Right(xwv44000)), False, app(app(ty_Either, ce), app(ty_[], db)), be) -> new_ltEs1(xwv43000, xwv44000, db) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(Just(xwv43000)), Left(Just(xwv44000)), False, app(ty_Maybe, app(ty_[], ec)), be) -> new_ltEs1(xwv43000, xwv44000, ec) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@2(xwv43000, xwv43001)), Left(@2(xwv44000, xwv44001)), False, app(app(ty_@2, gc), app(ty_[], gg)), be) -> new_ltEs1(xwv43001, xwv44001, gg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), hg), app(ty_[], bce)), be) -> new_ltEs1(xwv43002, xwv44002, bce) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Right(xwv4300), Right(xwv4400), False, bdc, app(ty_[], bdg)) -> new_ltEs1(xwv4300, xwv4400, bdg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(Left(xwv43000)), Left(Left(xwv44000)), False, app(app(ty_Either, app(ty_[], bg)), bd), be) -> new_ltEs1(xwv43000, xwv44000, bg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bae), baf), bag)), hg), hh), be) -> new_lt3(xwv43000, xwv44000, bae, baf, bag) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), app(app(app(ty_@3, bbg), bbh), bca)), hh), be) -> new_lt3(xwv43001, xwv44001, bbg, bbh, bca) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), app(ty_Maybe, bbc)), hh), be) -> new_lt0(xwv43001, xwv44001, bbc) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, app(ty_Maybe, baa)), hg), hh), be) -> new_lt0(xwv43000, xwv44000, baa) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, app(app(ty_@2, bac), bad)), hg), hh), be) -> new_lt2(xwv43000, xwv44000, bac, bad) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_compare2(Left(@3(xwv43000, xwv43001, xwv43002)), Left(@3(xwv44000, xwv44001, xwv44002)), False, app(app(app(ty_@3, bah), app(app(ty_@2, bbe), bbf)), hh), be) -> new_lt2(xwv43001, xwv44001, bbe, bbf) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs(Left(xwv43000), Left(xwv44000), app(ty_[], bg), bd) -> new_ltEs1(xwv43000, xwv44000, bg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_ltEs(Right(xwv43000), Right(xwv44000), ce, app(ty_[], db)) -> new_ltEs1(xwv43000, xwv44000, db) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (22) 31.62/12.87 YES 31.62/12.87 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (23) 31.62/12.87 Obligation: 31.62/12.87 Q DP problem: 31.62/12.87 The TRS P consists of the following rules: 31.62/12.87 31.62/12.87 new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, app(ty_Maybe, ee), ea) -> new_esEs2(xwv4001, xwv3001, ee) 31.62/12.87 new_esEs1(Left(xwv4000), Left(xwv3000), app(app(ty_Either, gg), gh), ge) -> new_esEs1(xwv4000, xwv3000, gg, gh) 31.62/12.87 new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(app(ty_Either, bdf), bdg), bdd) -> new_esEs1(xwv4000, xwv3000, bdf, bdg) 31.62/12.87 new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(ty_Maybe, fg), cc, ea) -> new_esEs2(xwv4000, xwv3000, fg) 31.62/12.87 new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), bbg, app(app(ty_Either, bcd), bce)) -> new_esEs1(xwv4001, xwv3001, bcd, bce) 31.62/12.87 new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, app(app(app(ty_@3, df), dg), dh), ea) -> new_esEs0(xwv4001, xwv3001, df, dg, dh) 31.62/12.87 new_esEs2(Just(xwv4000), Just(xwv3000), app(ty_[], bba)) -> new_esEs(xwv4000, xwv3000, bba) 31.62/12.87 new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(app(app(ty_@3, bda), bdb), bdc), bdd) -> new_esEs0(xwv4000, xwv3000, bda, bdb, bdc) 31.62/12.87 new_esEs(:(xwv4000, xwv4001), :(xwv3000, xwv3001), h) -> new_esEs(xwv4001, xwv3001, h) 31.62/12.87 new_esEs(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(app(ty_@2, bh), ca)) -> new_esEs3(xwv4000, xwv3000, bh, ca) 31.62/12.87 new_esEs1(Right(xwv4000), Right(xwv3000), hd, app(app(ty_@2, bad), bae)) -> new_esEs3(xwv4000, xwv3000, bad, bae) 31.62/12.87 new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), bbg, app(ty_Maybe, bcf)) -> new_esEs2(xwv4001, xwv3001, bcf) 31.62/12.87 new_esEs2(Just(xwv4000), Just(xwv3000), app(ty_Maybe, bbd)) -> new_esEs2(xwv4000, xwv3000, bbd) 31.62/12.87 new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, app(app(ty_@2, ef), eg), ea) -> new_esEs3(xwv4001, xwv3001, ef, eg) 31.62/12.87 new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(app(ty_Either, fd), ff), cc, ea) -> new_esEs1(xwv4000, xwv3000, fd, ff) 31.62/12.87 new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(ty_Maybe, bdh), bdd) -> new_esEs2(xwv4000, xwv3000, bdh) 31.62/12.87 new_esEs(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(ty_[], bd)) -> new_esEs(xwv4000, xwv3000, bd) 31.62/12.87 new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(app(ty_@2, fh), ga), cc, ea) -> new_esEs3(xwv4000, xwv3000, fh, ga) 31.62/12.87 new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), bbg, app(app(ty_@2, bcg), bch)) -> new_esEs3(xwv4001, xwv3001, bcg, bch) 31.62/12.87 new_esEs(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(app(app(ty_@3, ba), bb), bc)) -> new_esEs0(xwv4000, xwv3000, ba, bb, bc) 31.62/12.87 new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, cc, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs0(xwv4002, xwv3002, cd, ce, cf) 31.62/12.87 new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, cc, app(ty_Maybe, dc)) -> new_esEs2(xwv4002, xwv3002, dc) 31.62/12.87 new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), bbg, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs0(xwv4001, xwv3001, bbh, bca, bcb) 31.62/12.87 new_esEs(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(ty_Maybe, bg)) -> new_esEs2(xwv4000, xwv3000, bg) 31.62/12.87 new_esEs1(Left(xwv4000), Left(xwv3000), app(app(app(ty_@3, gb), gc), gd), ge) -> new_esEs0(xwv4000, xwv3000, gb, gc, gd) 31.62/12.87 new_esEs1(Left(xwv4000), Left(xwv3000), app(ty_[], gf), ge) -> new_esEs(xwv4000, xwv3000, gf) 31.62/12.87 new_esEs(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(app(ty_Either, be), bf)) -> new_esEs1(xwv4000, xwv3000, be, bf) 31.62/12.87 new_esEs1(Left(xwv4000), Left(xwv3000), app(ty_Maybe, ha), ge) -> new_esEs2(xwv4000, xwv3000, ha) 31.62/12.87 new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(ty_[], fc), cc, ea) -> new_esEs(xwv4000, xwv3000, fc) 31.62/12.87 new_esEs2(Just(xwv4000), Just(xwv3000), app(app(ty_Either, bbb), bbc)) -> new_esEs1(xwv4000, xwv3000, bbb, bbc) 31.62/12.87 new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, app(ty_[], eb), ea) -> new_esEs(xwv4001, xwv3001, eb) 31.62/12.87 new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(app(ty_@2, bea), beb), bdd) -> new_esEs3(xwv4000, xwv3000, bea, beb) 31.62/12.87 new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), bbg, app(ty_[], bcc)) -> new_esEs(xwv4001, xwv3001, bcc) 31.62/12.87 new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, cc, app(ty_[], cg)) -> new_esEs(xwv4002, xwv3002, cg) 31.62/12.87 new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, app(app(ty_Either, ec), ed), ea) -> new_esEs1(xwv4001, xwv3001, ec, ed) 31.62/12.87 new_esEs1(Right(xwv4000), Right(xwv3000), hd, app(app(app(ty_@3, he), hf), hg)) -> new_esEs0(xwv4000, xwv3000, he, hf, hg) 31.62/12.87 new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(ty_[], bde), bdd) -> new_esEs(xwv4000, xwv3000, bde) 31.62/12.87 new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, cc, app(app(ty_@2, dd), de)) -> new_esEs3(xwv4002, xwv3002, dd, de) 31.62/12.87 new_esEs1(Right(xwv4000), Right(xwv3000), hd, app(ty_[], hh)) -> new_esEs(xwv4000, xwv3000, hh) 31.62/12.87 new_esEs2(Just(xwv4000), Just(xwv3000), app(app(ty_@2, bbe), bbf)) -> new_esEs3(xwv4000, xwv3000, bbe, bbf) 31.62/12.87 new_esEs1(Right(xwv4000), Right(xwv3000), hd, app(ty_Maybe, bac)) -> new_esEs2(xwv4000, xwv3000, bac) 31.62/12.87 new_esEs1(Right(xwv4000), Right(xwv3000), hd, app(app(ty_Either, baa), bab)) -> new_esEs1(xwv4000, xwv3000, baa, bab) 31.62/12.87 new_esEs2(Just(xwv4000), Just(xwv3000), app(app(app(ty_@3, baf), bag), bah)) -> new_esEs0(xwv4000, xwv3000, baf, bag, bah) 31.62/12.87 new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(app(app(ty_@3, eh), fa), fb), cc, ea) -> new_esEs0(xwv4000, xwv3000, eh, fa, fb) 31.62/12.87 new_esEs1(Left(xwv4000), Left(xwv3000), app(app(ty_@2, hb), hc), ge) -> new_esEs3(xwv4000, xwv3000, hb, hc) 31.62/12.87 new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, cc, app(app(ty_Either, da), db)) -> new_esEs1(xwv4002, xwv3002, da, db) 31.62/12.87 31.62/12.87 R is empty. 31.62/12.87 Q is empty. 31.62/12.87 We have to consider all minimal (P,Q,R)-chains. 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (24) QDPSizeChangeProof (EQUIVALENT) 31.62/12.87 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.62/12.87 31.62/12.87 From the DPs we obtained the following set of size-change graphs: 31.62/12.87 *new_esEs2(Just(xwv4000), Just(xwv3000), app(app(app(ty_@3, baf), bag), bah)) -> new_esEs0(xwv4000, xwv3000, baf, bag, bah) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs2(Just(xwv4000), Just(xwv3000), app(app(ty_Either, bbb), bbc)) -> new_esEs1(xwv4000, xwv3000, bbb, bbc) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs2(Just(xwv4000), Just(xwv3000), app(app(ty_@2, bbe), bbf)) -> new_esEs3(xwv4000, xwv3000, bbe, bbf) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs2(Just(xwv4000), Just(xwv3000), app(ty_Maybe, bbd)) -> new_esEs2(xwv4000, xwv3000, bbd) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs2(Just(xwv4000), Just(xwv3000), app(ty_[], bba)) -> new_esEs(xwv4000, xwv3000, bba) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(app(app(ty_@3, ba), bb), bc)) -> new_esEs0(xwv4000, xwv3000, ba, bb, bc) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(app(ty_Either, be), bf)) -> new_esEs1(xwv4000, xwv3000, be, bf) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(app(ty_@2, bh), ca)) -> new_esEs3(xwv4000, xwv3000, bh, ca) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(ty_Maybe, bg)) -> new_esEs2(xwv4000, xwv3000, bg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs1(Left(xwv4000), Left(xwv3000), app(app(app(ty_@3, gb), gc), gd), ge) -> new_esEs0(xwv4000, xwv3000, gb, gc, gd) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs1(Right(xwv4000), Right(xwv3000), hd, app(app(app(ty_@3, he), hf), hg)) -> new_esEs0(xwv4000, xwv3000, he, hf, hg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, app(app(app(ty_@3, df), dg), dh), ea) -> new_esEs0(xwv4001, xwv3001, df, dg, dh) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, cc, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs0(xwv4002, xwv3002, cd, ce, cf) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(app(app(ty_@3, eh), fa), fb), cc, ea) -> new_esEs0(xwv4000, xwv3000, eh, fa, fb) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(app(app(ty_@3, bda), bdb), bdc), bdd) -> new_esEs0(xwv4000, xwv3000, bda, bdb, bdc) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), bbg, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs0(xwv4001, xwv3001, bbh, bca, bcb) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs1(Left(xwv4000), Left(xwv3000), app(app(ty_Either, gg), gh), ge) -> new_esEs1(xwv4000, xwv3000, gg, gh) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs1(Right(xwv4000), Right(xwv3000), hd, app(app(ty_Either, baa), bab)) -> new_esEs1(xwv4000, xwv3000, baa, bab) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs1(Right(xwv4000), Right(xwv3000), hd, app(app(ty_@2, bad), bae)) -> new_esEs3(xwv4000, xwv3000, bad, bae) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs1(Left(xwv4000), Left(xwv3000), app(app(ty_@2, hb), hc), ge) -> new_esEs3(xwv4000, xwv3000, hb, hc) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs1(Left(xwv4000), Left(xwv3000), app(ty_Maybe, ha), ge) -> new_esEs2(xwv4000, xwv3000, ha) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs1(Right(xwv4000), Right(xwv3000), hd, app(ty_Maybe, bac)) -> new_esEs2(xwv4000, xwv3000, bac) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs1(Left(xwv4000), Left(xwv3000), app(ty_[], gf), ge) -> new_esEs(xwv4000, xwv3000, gf) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs1(Right(xwv4000), Right(xwv3000), hd, app(ty_[], hh)) -> new_esEs(xwv4000, xwv3000, hh) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(app(ty_Either, fd), ff), cc, ea) -> new_esEs1(xwv4000, xwv3000, fd, ff) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, app(app(ty_Either, ec), ed), ea) -> new_esEs1(xwv4001, xwv3001, ec, ed) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, cc, app(app(ty_Either, da), db)) -> new_esEs1(xwv4002, xwv3002, da, db) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(app(ty_Either, bdf), bdg), bdd) -> new_esEs1(xwv4000, xwv3000, bdf, bdg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), bbg, app(app(ty_Either, bcd), bce)) -> new_esEs1(xwv4001, xwv3001, bcd, bce) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, app(app(ty_@2, ef), eg), ea) -> new_esEs3(xwv4001, xwv3001, ef, eg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(app(ty_@2, fh), ga), cc, ea) -> new_esEs3(xwv4000, xwv3000, fh, ga) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, cc, app(app(ty_@2, dd), de)) -> new_esEs3(xwv4002, xwv3002, dd, de) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), bbg, app(app(ty_@2, bcg), bch)) -> new_esEs3(xwv4001, xwv3001, bcg, bch) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(app(ty_@2, bea), beb), bdd) -> new_esEs3(xwv4000, xwv3000, bea, beb) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, app(ty_Maybe, ee), ea) -> new_esEs2(xwv4001, xwv3001, ee) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(ty_Maybe, fg), cc, ea) -> new_esEs2(xwv4000, xwv3000, fg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, cc, app(ty_Maybe, dc)) -> new_esEs2(xwv4002, xwv3002, dc) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(ty_[], fc), cc, ea) -> new_esEs(xwv4000, xwv3000, fc) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, app(ty_[], eb), ea) -> new_esEs(xwv4001, xwv3001, eb) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs0(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), cb, cc, app(ty_[], cg)) -> new_esEs(xwv4002, xwv3002, cg) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs(:(xwv4000, xwv4001), :(xwv3000, xwv3001), h) -> new_esEs(xwv4001, xwv3001, h) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(ty_[], bd)) -> new_esEs(xwv4000, xwv3000, bd) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), bbg, app(ty_Maybe, bcf)) -> new_esEs2(xwv4001, xwv3001, bcf) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(ty_Maybe, bdh), bdd) -> new_esEs2(xwv4000, xwv3000, bdh) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), bbg, app(ty_[], bcc)) -> new_esEs(xwv4001, xwv3001, bcc) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.62/12.87 31.62/12.87 31.62/12.87 *new_esEs3(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(ty_[], bde), bdd) -> new_esEs(xwv4000, xwv3000, bde) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.62/12.87 31.62/12.87 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (25) 31.62/12.87 YES 31.62/12.87 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (26) 31.62/12.87 Obligation: 31.62/12.87 Q DP problem: 31.62/12.87 The TRS P consists of the following rules: 31.62/12.87 31.62/12.87 new_primMulNat(Succ(xwv400100), Succ(xwv300000)) -> new_primMulNat(xwv400100, Succ(xwv300000)) 31.62/12.87 31.62/12.87 R is empty. 31.62/12.87 Q is empty. 31.62/12.87 We have to consider all minimal (P,Q,R)-chains. 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (27) QDPSizeChangeProof (EQUIVALENT) 31.62/12.87 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.62/12.87 31.62/12.87 From the DPs we obtained the following set of size-change graphs: 31.62/12.87 *new_primMulNat(Succ(xwv400100), Succ(xwv300000)) -> new_primMulNat(xwv400100, Succ(xwv300000)) 31.62/12.87 The graph contains the following edges 1 > 1, 2 >= 2 31.62/12.87 31.62/12.87 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (28) 31.62/12.87 YES 31.62/12.87 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (29) 31.62/12.87 Obligation: 31.62/12.87 Q DP problem: 31.62/12.87 The TRS P consists of the following rules: 31.62/12.87 31.62/12.87 new_primMinusNat(Succ(xwv31900), Succ(xwv32000)) -> new_primMinusNat(xwv31900, xwv32000) 31.62/12.87 31.62/12.87 R is empty. 31.62/12.87 Q is empty. 31.62/12.87 We have to consider all minimal (P,Q,R)-chains. 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (30) QDPSizeChangeProof (EQUIVALENT) 31.62/12.87 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.62/12.87 31.62/12.87 From the DPs we obtained the following set of size-change graphs: 31.62/12.87 *new_primMinusNat(Succ(xwv31900), Succ(xwv32000)) -> new_primMinusNat(xwv31900, xwv32000) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2 31.62/12.87 31.62/12.87 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (31) 31.62/12.87 YES 31.62/12.87 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (32) 31.62/12.87 Obligation: 31.62/12.87 Q DP problem: 31.62/12.87 The TRS P consists of the following rules: 31.62/12.87 31.62/12.87 new_primPlusNat(Succ(xwv33200), Succ(xwv13100)) -> new_primPlusNat(xwv33200, xwv13100) 31.62/12.87 31.62/12.87 R is empty. 31.62/12.87 Q is empty. 31.62/12.87 We have to consider all minimal (P,Q,R)-chains. 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (33) QDPSizeChangeProof (EQUIVALENT) 31.62/12.87 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.62/12.87 31.62/12.87 From the DPs we obtained the following set of size-change graphs: 31.62/12.87 *new_primPlusNat(Succ(xwv33200), Succ(xwv13100)) -> new_primPlusNat(xwv33200, xwv13100) 31.62/12.87 The graph contains the following edges 1 > 1, 2 > 2 31.62/12.87 31.62/12.87 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (34) 31.62/12.87 YES 31.62/12.87 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (35) 31.62/12.87 Obligation: 31.62/12.87 Q DP problem: 31.62/12.87 The TRS P consists of the following rules: 31.62/12.87 31.62/12.87 new_glueBal2Mid_key10(xwv416, xwv417, xwv418, xwv419, xwv420, xwv421, xwv422, xwv423, xwv424, xwv425, xwv426, xwv427, xwv428, xwv429, Branch(xwv4300, xwv4301, xwv4302, xwv4303, xwv4304), h, ba) -> new_glueBal2Mid_key10(xwv416, xwv417, xwv418, xwv419, xwv420, xwv421, xwv422, xwv423, xwv424, xwv425, xwv4300, xwv4301, xwv4302, xwv4303, xwv4304, h, ba) 31.62/12.87 31.62/12.87 R is empty. 31.62/12.87 Q is empty. 31.62/12.87 We have to consider all minimal (P,Q,R)-chains. 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (36) QDPSizeChangeProof (EQUIVALENT) 31.62/12.87 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.62/12.87 31.62/12.87 From the DPs we obtained the following set of size-change graphs: 31.62/12.87 *new_glueBal2Mid_key10(xwv416, xwv417, xwv418, xwv419, xwv420, xwv421, xwv422, xwv423, xwv424, xwv425, xwv426, xwv427, xwv428, xwv429, Branch(xwv4300, xwv4301, xwv4302, xwv4303, xwv4304), h, ba) -> new_glueBal2Mid_key10(xwv416, xwv417, xwv418, xwv419, xwv420, xwv421, xwv422, xwv423, xwv424, xwv425, xwv4300, xwv4301, xwv4302, xwv4303, xwv4304, h, ba) 31.62/12.87 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 31.62/12.87 31.62/12.87 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (37) 31.62/12.87 YES 31.62/12.87 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (38) 31.62/12.87 Obligation: 31.62/12.87 Q DP problem: 31.62/12.87 The TRS P consists of the following rules: 31.62/12.87 31.62/12.87 new_deleteMax(xwv160, xwv161, xwv162, xwv163, Branch(xwv1640, xwv1641, xwv1642, xwv1643, xwv1644), h, ba, bb) -> new_deleteMax(xwv1640, xwv1641, xwv1642, xwv1643, xwv1644, h, ba, bb) 31.62/12.87 31.62/12.87 R is empty. 31.62/12.87 Q is empty. 31.62/12.87 We have to consider all minimal (P,Q,R)-chains. 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (39) QDPSizeChangeProof (EQUIVALENT) 31.62/12.87 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.62/12.87 31.62/12.87 From the DPs we obtained the following set of size-change graphs: 31.62/12.87 *new_deleteMax(xwv160, xwv161, xwv162, xwv163, Branch(xwv1640, xwv1641, xwv1642, xwv1643, xwv1644), h, ba, bb) -> new_deleteMax(xwv1640, xwv1641, xwv1642, xwv1643, xwv1644, h, ba, bb) 31.62/12.87 The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 6 >= 6, 7 >= 7, 8 >= 8 31.62/12.87 31.62/12.87 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (40) 31.62/12.87 YES 31.62/12.87 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (41) 31.62/12.87 Obligation: 31.62/12.87 Q DP problem: 31.62/12.87 The TRS P consists of the following rules: 31.62/12.87 31.62/12.87 new_glueBal2Mid_elt20(xwv337, xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv347, xwv348, xwv349, Branch(xwv3500, xwv3501, xwv3502, xwv3503, xwv3504), xwv351, h, ba) -> new_glueBal2Mid_elt20(xwv337, xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv3500, xwv3501, xwv3502, xwv3503, xwv3504, h, ba) 31.62/12.87 31.62/12.87 R is empty. 31.62/12.87 Q is empty. 31.62/12.87 We have to consider all minimal (P,Q,R)-chains. 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (42) QDPSizeChangeProof (EQUIVALENT) 31.62/12.87 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.62/12.87 31.62/12.87 From the DPs we obtained the following set of size-change graphs: 31.62/12.87 *new_glueBal2Mid_elt20(xwv337, xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv347, xwv348, xwv349, Branch(xwv3500, xwv3501, xwv3502, xwv3503, xwv3504), xwv351, h, ba) -> new_glueBal2Mid_elt20(xwv337, xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv3500, xwv3501, xwv3502, xwv3503, xwv3504, h, ba) 31.62/12.87 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 31.62/12.87 31.62/12.87 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (43) 31.62/12.87 YES 31.62/12.87 31.62/12.87 ---------------------------------------- 31.62/12.87 31.62/12.87 (44) 31.62/12.87 Obligation: 31.62/12.87 Q DP problem: 31.62/12.87 The TRS P consists of the following rules: 31.62/12.87 31.62/12.87 new_foldl(xwv3, :(xwv40, xwv41), h, ba, bb) -> new_foldl(new_delFromFM0(xwv3, xwv40, h, ba, bb), xwv41, h, ba, bb) 31.62/12.87 31.62/12.87 The TRS R consists of the following rules: 31.62/12.87 31.62/12.87 new_ltEs8(Right(xwv43000), Right(xwv44000), bdc, app(ty_Maybe, ccg)) -> new_ltEs4(xwv43000, xwv44000, ccg) 31.62/12.87 new_primCmpInt(Neg(Succ(xwv4300)), Pos(xwv440)) -> LT 31.62/12.87 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 31.62/12.87 new_esEs27(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.87 new_compare17(Double(xwv43000, Pos(xwv430010)), Double(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.62/12.87 new_delFromFM16(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, False, h, ba, bb) -> new_delFromFM03(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs4(Left(xwv300), Right(xwv400), h, ba), h, ba, bb) 31.62/12.87 new_pePe(True, xwv181) -> True 31.62/12.87 new_esEs30(xwv400, xwv300, ty_Ordering) -> new_esEs8(xwv400, xwv300) 31.62/12.87 new_compare6(xwv43000, xwv44000, ty_Float) -> new_compare18(xwv43000, xwv44000) 31.62/12.87 new_esEs4(Right(xwv4000), Right(xwv3000), ec, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.87 new_esEs12(xwv4000, xwv3000, app(ty_Maybe, bca)) -> new_esEs5(xwv4000, xwv3000, bca) 31.62/12.87 new_esEs19(False, True) -> False 31.62/12.87 new_esEs19(True, False) -> False 31.62/12.87 new_esEs27(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.87 new_lt13(xwv43001, xwv44001, app(app(ty_Either, chf), chg)) -> new_lt15(xwv43001, xwv44001, chf, chg) 31.62/12.87 new_compare23(xwv43000, xwv44000, True, cag) -> EQ 31.62/12.87 new_ltEs20(xwv43002, xwv44002, app(app(ty_@2, dbe), dbf)) -> new_ltEs11(xwv43002, xwv44002, dbe, dbf) 31.62/12.87 new_lt18(xwv43000, xwv44000, caf) -> new_esEs8(new_compare0(xwv43000, xwv44000, caf), LT) 31.62/12.87 new_esEs25(xwv43000, xwv44000, app(ty_[], cgh)) -> new_esEs13(xwv43000, xwv44000, cgh) 31.62/12.87 new_esEs4(Left(xwv4000), Right(xwv3000), ec, ed) -> False 31.62/12.87 new_esEs4(Right(xwv4000), Left(xwv3000), ec, ed) -> False 31.62/12.87 new_delFromFM01(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, gd, ge, gf) -> new_glueBal(xwv16, xwv17, gd, ge, gf) 31.62/12.87 new_esEs15(Float(xwv4000, xwv4001), Float(xwv3000, xwv3001)) -> new_esEs9(new_sr(xwv4000, xwv3001), new_sr(xwv4001, xwv3000)) 31.62/12.87 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 31.62/12.87 new_ltEs19(xwv4300, xwv4400, ty_Ordering) -> new_ltEs9(xwv4300, xwv4400) 31.62/12.87 new_compare110(xwv43000, xwv44000, False, cag) -> GT 31.62/12.87 new_primCmpInt(Pos(Zero), Neg(Succ(xwv4400))) -> GT 31.62/12.87 new_compare26(xwv430, xwv440, True, bda, bdb) -> EQ 31.62/12.87 new_esEs9(xwv400, xwv300) -> new_primEqInt(xwv400, xwv300) 31.62/12.87 new_ltEs8(Left(xwv43000), Left(xwv44000), app(ty_Maybe, cbe), bdd) -> new_ltEs4(xwv43000, xwv44000, cbe) 31.62/12.87 new_esEs24(xwv43001, xwv44001, ty_Ordering) -> new_esEs8(xwv43001, xwv44001) 31.62/12.87 new_esEs28(xwv43000, xwv44000, ty_Char) -> new_esEs18(xwv43000, xwv44000) 31.62/12.87 new_ltEs19(xwv4300, xwv4400, ty_Integer) -> new_ltEs5(xwv4300, xwv4400) 31.62/12.87 new_primCmpInt(Neg(Succ(xwv4300)), Neg(xwv440)) -> new_primCmpNat0(xwv440, Succ(xwv4300)) 31.62/12.87 new_compare113(xwv160, xwv161, False, deg, deh) -> GT 31.62/12.87 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Bool, ed) -> new_esEs19(xwv4000, xwv3000) 31.62/12.87 new_ltEs4(Nothing, Nothing, bde) -> True 31.62/12.87 new_compare111(xwv167, xwv168, True, de, df) -> LT 31.62/12.87 new_ltEs20(xwv43002, xwv44002, ty_Ordering) -> new_ltEs9(xwv43002, xwv44002) 31.62/12.87 new_ltEs4(Just(xwv43000), Nothing, bde) -> False 31.62/12.87 new_ltEs9(LT, LT) -> True 31.62/12.87 new_compare6(xwv43000, xwv44000, ty_Char) -> new_compare16(xwv43000, xwv44000) 31.62/12.87 new_lt12(xwv43000, xwv44000, ty_Float) -> new_lt19(xwv43000, xwv44000) 31.62/12.87 new_ltEs14(xwv4300, xwv4400) -> new_fsEs(new_compare16(xwv4300, xwv4400)) 31.62/12.87 new_compare27(xwv43000, xwv44000, False, bfg, bfh, bga) -> new_compare115(xwv43000, xwv44000, new_ltEs12(xwv43000, xwv44000, bfg, bfh, bga), bfg, bfh, bga) 31.62/12.87 new_esEs23(xwv4000, xwv3000, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.87 new_lt17(xwv43000, xwv44000, cag) -> new_esEs8(new_compare12(xwv43000, xwv44000, cag), LT) 31.62/12.87 new_esEs11(xwv4001, xwv3001, app(app(app(ty_@3, baa), bab), bac)) -> new_esEs7(xwv4001, xwv3001, baa, bab, bac) 31.62/12.87 new_ltEs8(Left(xwv43000), Left(xwv44000), app(app(ty_@2, cbg), cbh), bdd) -> new_ltEs11(xwv43000, xwv44000, cbg, cbh) 31.62/12.87 new_esEs12(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.87 new_esEs10(xwv4002, xwv3002, app(ty_[], hb)) -> new_esEs13(xwv4002, xwv3002, hb) 31.62/12.87 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Char) -> new_ltEs14(xwv43000, xwv44000) 31.62/12.87 new_ltEs4(Just(xwv43000), Just(xwv44000), app(ty_Maybe, cec)) -> new_ltEs4(xwv43000, xwv44000, cec) 31.62/12.87 new_compare26(Right(xwv4300), Left(xwv4400), False, bda, bdb) -> GT 31.62/12.87 new_lt20(xwv43000, xwv44000, ty_Bool) -> new_lt4(xwv43000, xwv44000) 31.62/12.87 new_compare6(xwv43000, xwv44000, app(ty_Maybe, bg)) -> new_compare12(xwv43000, xwv44000, bg) 31.62/12.87 new_esEs8(GT, GT) -> True 31.62/12.87 new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False 31.62/12.87 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 31.62/12.87 new_ltEs21(xwv43001, xwv44001, ty_@0) -> new_ltEs13(xwv43001, xwv44001) 31.62/12.87 new_esEs24(xwv43001, xwv44001, ty_Double) -> new_esEs17(xwv43001, xwv44001) 31.62/12.87 new_fsEs(xwv171) -> new_not(new_esEs8(xwv171, GT)) 31.62/12.87 new_esEs23(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.87 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Double, bdd) -> new_ltEs15(xwv43000, xwv44000) 31.62/12.87 new_esEs8(EQ, EQ) -> True 31.62/12.87 new_lt20(xwv43000, xwv44000, ty_Int) -> new_lt14(xwv43000, xwv44000) 31.62/12.87 new_primEqNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 31.62/12.87 new_esEs26(xwv4001, xwv3001, ty_Integer) -> new_esEs14(xwv4001, xwv3001) 31.62/12.87 new_lt12(xwv43000, xwv44000, ty_Integer) -> new_lt7(xwv43000, xwv44000) 31.62/12.87 new_ltEs8(Right(xwv43000), Right(xwv44000), bdc, ty_@0) -> new_ltEs13(xwv43000, xwv44000) 31.62/12.87 new_lt12(xwv43000, xwv44000, ty_Char) -> new_lt10(xwv43000, xwv44000) 31.62/12.87 new_esEs25(xwv43000, xwv44000, ty_Float) -> new_esEs15(xwv43000, xwv44000) 31.62/12.87 new_ltEs18(xwv4300, xwv4400, app(ty_[], bc)) -> new_ltEs10(xwv4300, xwv4400, bc) 31.62/12.87 new_ltEs20(xwv43002, xwv44002, app(app(ty_Either, dah), dba)) -> new_ltEs8(xwv43002, xwv44002, dah, dba) 31.62/12.87 new_lt12(xwv43000, xwv44000, ty_@0) -> new_lt6(xwv43000, xwv44000) 31.62/12.87 new_ltEs19(xwv4300, xwv4400, app(app(ty_@2, beh), bfa)) -> new_ltEs11(xwv4300, xwv4400, beh, bfa) 31.62/12.87 new_compare6(xwv43000, xwv44000, app(ty_[], bh)) -> new_compare0(xwv43000, xwv44000, bh) 31.62/12.87 new_not(True) -> False 31.62/12.87 new_compare12(xwv43000, xwv44000, cag) -> new_compare23(xwv43000, xwv44000, new_esEs5(xwv43000, xwv44000, cag), cag) 31.62/12.87 new_lt13(xwv43001, xwv44001, app(app(app(ty_@3, dae), daf), dag)) -> new_lt9(xwv43001, xwv44001, dae, daf, dag) 31.62/12.87 new_mkBalBranch6MkBalBranch4(xwv170, xwv171, xwv315, Branch(xwv1740, xwv1741, xwv1742, xwv1743, xwv1744), True, gd, ge, gf) -> new_mkBalBranch6MkBalBranch01(xwv170, xwv171, xwv315, xwv1740, xwv1741, xwv1742, xwv1743, xwv1744, new_lt14(new_sizeFM0(xwv1743, gd, ge, gf), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xwv1744, gd, ge, gf))), gd, ge, gf) 31.62/12.87 new_primCompAux00(xwv186, LT) -> LT 31.62/12.87 new_primCmpNat0(Zero, Zero) -> EQ 31.62/12.87 new_ltEs20(xwv43002, xwv44002, ty_Integer) -> new_ltEs5(xwv43002, xwv44002) 31.62/12.87 new_esEs4(Left(xwv4000), Left(xwv3000), ty_@0, ed) -> new_esEs16(xwv4000, xwv3000) 31.62/12.87 new_compare115(xwv43000, xwv44000, True, bfg, bfh, bga) -> LT 31.62/12.87 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Char, ed) -> new_esEs18(xwv4000, xwv3000) 31.62/12.87 new_lt13(xwv43001, xwv44001, ty_Integer) -> new_lt7(xwv43001, xwv44001) 31.62/12.87 new_ltEs18(xwv4300, xwv4400, app(ty_Ratio, bce)) -> new_ltEs7(xwv4300, xwv4400, bce) 31.62/12.87 new_esEs10(xwv4002, xwv3002, app(app(ty_@2, hf), hg)) -> new_esEs6(xwv4002, xwv3002, hf, hg) 31.62/12.87 new_compare23(xwv43000, xwv44000, False, cag) -> new_compare110(xwv43000, xwv44000, new_ltEs4(xwv43000, xwv44000, cag), cag) 31.62/12.87 new_esEs23(xwv4000, xwv3000, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.87 new_esEs7(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), dg, dh, ea) -> new_asAs(new_esEs12(xwv4000, xwv3000, dg), new_asAs(new_esEs11(xwv4001, xwv3001, dh), new_esEs10(xwv4002, xwv3002, ea))) 31.62/12.87 new_esEs29(xwv400, xwv300, app(ty_[], eb)) -> new_esEs13(xwv400, xwv300, eb) 31.62/12.87 new_esEs25(xwv43000, xwv44000, app(app(app(ty_@3, chc), chd), che)) -> new_esEs7(xwv43000, xwv44000, chc, chd, che) 31.62/12.87 new_esEs30(xwv400, xwv300, ty_Double) -> new_esEs17(xwv400, xwv300) 31.62/12.87 new_esEs10(xwv4002, xwv3002, ty_Ordering) -> new_esEs8(xwv4002, xwv3002) 31.62/12.87 new_esEs10(xwv4002, xwv3002, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs7(xwv4002, xwv3002, gg, gh, ha) 31.62/12.87 new_ltEs8(Left(xwv43000), Left(xwv44000), app(app(ty_Either, cbb), cbc), bdd) -> new_ltEs8(xwv43000, xwv44000, cbb, cbc) 31.62/12.87 new_ltEs8(Right(xwv43000), Right(xwv44000), bdc, ty_Integer) -> new_ltEs5(xwv43000, xwv44000) 31.62/12.87 new_lt12(xwv43000, xwv44000, app(ty_[], cgh)) -> new_lt18(xwv43000, xwv44000, cgh) 31.62/12.87 new_lt14(xwv430, xwv440) -> new_esEs8(new_compare7(xwv430, xwv440), LT) 31.62/12.87 new_esEs27(xwv4000, xwv3000, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.87 new_primEqNat0(Succ(xwv40000), Zero) -> False 31.62/12.87 new_primEqNat0(Zero, Succ(xwv30000)) -> False 31.62/12.87 new_esEs18(Char(xwv4000), Char(xwv3000)) -> new_primEqNat0(xwv4000, xwv3000) 31.62/12.87 new_compare112(xwv43000, xwv44000, False) -> GT 31.62/12.87 new_ltEs10(xwv4300, xwv4400, bc) -> new_fsEs(new_compare0(xwv4300, xwv4400, bc)) 31.62/12.87 new_ltEs20(xwv43002, xwv44002, ty_Int) -> new_ltEs6(xwv43002, xwv44002) 31.62/12.87 new_esEs13([], [], eb) -> True 31.62/12.87 new_esEs4(Right(xwv4000), Right(xwv3000), ec, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs7(xwv4000, xwv3000, dde, ddf, ddg) 31.62/12.87 new_ltEs19(xwv4300, xwv4400, ty_Int) -> new_ltEs6(xwv4300, xwv4400) 31.62/12.87 new_primPlusInt0(xwv3190, Neg(xwv3200)) -> new_primMinusNat0(xwv3190, xwv3200) 31.62/12.87 new_deleteMax0(xwv160, xwv161, xwv162, xwv163, EmptyFM, gd, ge, gf) -> xwv163 31.62/12.87 new_esEs23(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.87 new_delFromFM00(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, False, h, ba, bb) -> error([]) 31.62/12.87 new_esEs11(xwv4001, xwv3001, app(app(ty_@2, bah), bba)) -> new_esEs6(xwv4001, xwv3001, bah, bba) 31.62/12.87 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Int, ed) -> new_esEs9(xwv4000, xwv3000) 31.62/12.87 new_primCompAux00(xwv186, GT) -> GT 31.62/12.87 new_primMinusNat0(Succ(xwv31900), Zero) -> Pos(Succ(xwv31900)) 31.62/12.87 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Float) -> new_ltEs16(xwv43000, xwv44000) 31.62/12.87 new_esEs5(Just(xwv4000), Just(xwv3000), ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.87 new_esEs29(xwv400, xwv300, ty_Double) -> new_esEs17(xwv400, xwv300) 31.62/12.87 new_glueBal(Branch(xwv160, xwv161, xwv162, xwv163, xwv164), EmptyFM, gd, ge, gf) -> Branch(xwv160, xwv161, xwv162, xwv163, xwv164) 31.62/12.87 new_ltEs21(xwv43001, xwv44001, ty_Char) -> new_ltEs14(xwv43001, xwv44001) 31.62/12.87 new_delFromFM02(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, bcf, bcg, bch) -> new_glueBal(xwv31, xwv32, bcf, bcg, bch) 31.62/12.87 new_esEs4(Left(xwv4000), Left(xwv3000), app(app(ty_@2, ddb), ddc), ed) -> new_esEs6(xwv4000, xwv3000, ddb, ddc) 31.62/12.87 new_esEs12(xwv4000, xwv3000, app(app(ty_Either, bbg), bbh)) -> new_esEs4(xwv4000, xwv3000, bbg, bbh) 31.62/12.87 new_ltEs21(xwv43001, xwv44001, ty_Float) -> new_ltEs16(xwv43001, xwv44001) 31.62/12.87 new_esEs17(Double(xwv4000, xwv4001), Double(xwv3000, xwv3001)) -> new_esEs9(new_sr(xwv4000, xwv3001), new_sr(xwv4001, xwv3000)) 31.62/12.87 new_ltEs21(xwv43001, xwv44001, ty_Int) -> new_ltEs6(xwv43001, xwv44001) 31.62/12.87 new_compare19(xwv43000, xwv44000) -> new_compare25(xwv43000, xwv44000, new_esEs19(xwv43000, xwv44000)) 31.62/12.87 new_lt15(xwv43000, xwv44000, cdf, cdg) -> new_esEs8(new_compare8(xwv43000, xwv44000, cdf, cdg), LT) 31.62/12.87 new_compare116(xwv43000, xwv44000, True, da, db) -> LT 31.62/12.87 new_primCmpInt(Pos(Succ(xwv4300)), Neg(xwv440)) -> GT 31.62/12.87 new_esEs19(False, False) -> True 31.62/12.87 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Bool, bdd) -> new_ltEs17(xwv43000, xwv44000) 31.62/12.87 new_ltEs21(xwv43001, xwv44001, ty_Ordering) -> new_ltEs9(xwv43001, xwv44001) 31.62/12.87 new_esEs28(xwv43000, xwv44000, ty_Bool) -> new_esEs19(xwv43000, xwv44000) 31.62/12.87 new_ltEs18(xwv4300, xwv4400, ty_Double) -> new_ltEs15(xwv4300, xwv4400) 31.62/12.87 new_primPlusInt0(xwv3190, Pos(xwv3200)) -> Pos(new_primPlusNat1(xwv3190, xwv3200)) 31.62/12.87 new_esEs25(xwv43000, xwv44000, app(ty_Ratio, cgf)) -> new_esEs20(xwv43000, xwv44000, cgf) 31.62/12.87 new_esEs28(xwv43000, xwv44000, ty_Double) -> new_esEs17(xwv43000, xwv44000) 31.62/12.87 new_esEs4(Right(xwv4000), Right(xwv3000), ec, app(ty_[], ddh)) -> new_esEs13(xwv4000, xwv3000, ddh) 31.62/12.87 new_compare18(Float(xwv43000, Pos(xwv430010)), Float(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.62/12.87 new_compare18(Float(xwv43000, Neg(xwv430010)), Float(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.62/12.87 new_ltEs20(xwv43002, xwv44002, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs12(xwv43002, xwv44002, dbg, dbh, dca) 31.62/12.87 new_primPlusInt(Pos(xwv4370), xwv436, xwv433, xwv435, cf, cg) -> new_primPlusInt0(xwv4370, new_sizeFM(xwv436, cf, cg)) 31.62/12.87 new_esEs29(xwv400, xwv300, ty_Float) -> new_esEs15(xwv400, xwv300) 31.62/12.87 new_mkBranch(xwv432, xwv433, xwv434, xwv435, xwv436, cf, cg) -> Branch(xwv433, xwv434, new_primPlusInt(new_primPlusInt0(Succ(Zero), new_sizeFM(xwv435, cf, cg)), xwv436, xwv433, xwv435, cf, cg), xwv435, xwv436) 31.62/12.87 new_esEs23(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.87 new_ltEs21(xwv43001, xwv44001, app(app(ty_@2, dhb), dhc)) -> new_ltEs11(xwv43001, xwv44001, dhb, dhc) 31.62/12.87 new_sizeFM0(EmptyFM, h, ba, bb) -> Pos(Zero) 31.62/12.87 new_ltEs13(xwv4300, xwv4400) -> new_fsEs(new_compare15(xwv4300, xwv4400)) 31.62/12.87 new_esEs12(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.87 new_primPlusNat1(Succ(xwv33200), Succ(xwv13100)) -> Succ(Succ(new_primPlusNat1(xwv33200, xwv13100))) 31.62/12.87 new_compare15(@0, @0) -> EQ 31.62/12.87 new_delFromFM0(EmptyFM, xwv40, h, ba, bb) -> EmptyFM 31.62/12.87 new_esEs11(xwv4001, xwv3001, app(ty_[], bad)) -> new_esEs13(xwv4001, xwv3001, bad) 31.62/12.87 new_esEs6(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), ef, eg) -> new_asAs(new_esEs27(xwv4000, xwv3000, ef), new_esEs26(xwv4001, xwv3001, eg)) 31.62/12.87 new_primCmpNat0(Zero, Succ(xwv4400)) -> LT 31.62/12.87 new_esEs4(Left(xwv4000), Left(xwv3000), app(ty_[], dcf), ed) -> new_esEs13(xwv4000, xwv3000, dcf) 31.62/12.87 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_@0) -> new_ltEs13(xwv43000, xwv44000) 31.62/12.87 new_esEs26(xwv4001, xwv3001, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs7(xwv4001, xwv3001, bgb, bgc, bgd) 31.62/12.87 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_@2, dfh), dga)) -> new_esEs6(xwv4000, xwv3000, dfh, dga) 31.62/12.87 new_sizeFM(EmptyFM, cf, cg) -> Pos(Zero) 31.62/12.87 new_ltEs19(xwv4300, xwv4400, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs12(xwv4300, xwv4400, bfb, bfc, bfd) 31.62/12.87 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Double, ed) -> new_esEs17(xwv4000, xwv3000) 31.62/12.87 new_esEs24(xwv43001, xwv44001, app(ty_[], dab)) -> new_esEs13(xwv43001, xwv44001, dab) 31.62/12.87 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 31.62/12.87 new_primCmpNat0(Succ(xwv4300), Zero) -> GT 31.62/12.87 new_ltEs21(xwv43001, xwv44001, app(app(ty_Either, dge), dgf)) -> new_ltEs8(xwv43001, xwv44001, dge, dgf) 31.62/12.87 new_esEs30(xwv400, xwv300, ty_Float) -> new_esEs15(xwv400, xwv300) 31.62/12.87 new_delFromFM00(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba, bb) -> new_glueBal(xwv33, xwv34, h, ba, bb) 31.62/12.87 new_pePe(False, xwv181) -> xwv181 31.62/12.87 new_esEs10(xwv4002, xwv3002, ty_Double) -> new_esEs17(xwv4002, xwv3002) 31.62/12.87 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Ordering, ed) -> new_esEs8(xwv4000, xwv3000) 31.62/12.87 new_esEs11(xwv4001, xwv3001, ty_Int) -> new_esEs9(xwv4001, xwv3001) 31.62/12.87 new_esEs25(xwv43000, xwv44000, ty_Integer) -> new_esEs14(xwv43000, xwv44000) 31.62/12.87 new_lt20(xwv43000, xwv44000, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt9(xwv43000, xwv44000, bfg, bfh, bga) 31.62/12.87 new_ltEs19(xwv4300, xwv4400, ty_@0) -> new_ltEs13(xwv4300, xwv4400) 31.62/12.87 new_primMinusNat0(Succ(xwv31900), Succ(xwv32000)) -> new_primMinusNat0(xwv31900, xwv32000) 31.62/12.87 new_lt20(xwv43000, xwv44000, app(ty_Ratio, dcb)) -> new_lt16(xwv43000, xwv44000, dcb) 31.62/12.87 new_delFromFM03(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, False, h, ba, bb) -> error([]) 31.62/12.87 new_mkBalBranch(xwv170, xwv171, xwv315, xwv174, gd, ge, gf) -> new_mkBalBranch6MkBalBranch5(xwv170, xwv171, xwv315, xwv174, new_lt14(new_primPlusInt1(new_mkBalBranch6Size_l(xwv170, xwv171, xwv315, xwv174, gd, ge, gf), xwv170, xwv171, xwv315, xwv174, gd, ge, gf), Pos(Succ(Succ(Zero)))), gd, ge, gf) 31.62/12.87 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Ordering, bdd) -> new_ltEs9(xwv43000, xwv44000) 31.62/12.87 new_lt13(xwv43001, xwv44001, app(ty_Maybe, daa)) -> new_lt17(xwv43001, xwv44001, daa) 31.62/12.87 new_ltEs18(xwv4300, xwv4400, ty_Bool) -> new_ltEs17(xwv4300, xwv4400) 31.62/12.87 new_esEs4(Right(xwv4000), Right(xwv3000), ec, app(ty_Maybe, dec)) -> new_esEs5(xwv4000, xwv3000, dec) 31.62/12.87 new_delFromFM23(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, gd, ge, gf) -> new_delFromFM14(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs8(new_compare26(Left(xwv18), Left(xwv13), new_esEs4(Left(xwv18), Left(xwv13), gd, ge), gd, ge), LT), gd, ge, gf) 31.62/12.87 new_compare26(Left(xwv4300), Right(xwv4400), False, bda, bdb) -> LT 31.62/12.87 new_esEs8(LT, EQ) -> False 31.62/12.87 new_esEs8(EQ, LT) -> False 31.62/12.87 new_esEs27(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.87 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.87 new_esEs10(xwv4002, xwv3002, ty_Char) -> new_esEs18(xwv4002, xwv3002) 31.62/12.87 new_lt13(xwv43001, xwv44001, ty_Bool) -> new_lt4(xwv43001, xwv44001) 31.62/12.87 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 31.62/12.87 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 31.62/12.87 new_esEs28(xwv43000, xwv44000, ty_@0) -> new_esEs16(xwv43000, xwv44000) 31.62/12.87 new_compare28(xwv43000, xwv44000, False, da, db) -> new_compare116(xwv43000, xwv44000, new_ltEs11(xwv43000, xwv44000, da, db), da, db) 31.62/12.87 new_esEs11(xwv4001, xwv3001, app(ty_Maybe, bag)) -> new_esEs5(xwv4001, xwv3001, bag) 31.62/12.87 new_esEs24(xwv43001, xwv44001, app(app(ty_@2, dac), dad)) -> new_esEs6(xwv43001, xwv44001, dac, dad) 31.62/12.87 new_mkBalBranch6MkBalBranch11(xwv170, xwv171, xwv3150, xwv3151, xwv3152, xwv3153, xwv3154, xwv174, True, gd, ge, gf) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xwv3150, xwv3151, xwv3153, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), xwv170, xwv171, xwv3154, xwv174, app(app(ty_Either, gd), ge), gf), app(app(ty_Either, gd), ge), gf) 31.62/12.87 new_lt12(xwv43000, xwv44000, app(app(ty_Either, cgd), cge)) -> new_lt15(xwv43000, xwv44000, cgd, cge) 31.62/12.87 new_mkBalBranch6MkBalBranch11(xwv170, xwv171, xwv3150, xwv3151, xwv3152, xwv3153, Branch(xwv31540, xwv31541, xwv31542, xwv31543, xwv31544), xwv174, False, gd, ge, gf) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xwv31540, xwv31541, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xwv3150, xwv3151, xwv3153, xwv31543, app(app(ty_Either, gd), ge), gf), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), xwv170, xwv171, xwv31544, xwv174, app(app(ty_Either, gd), ge), gf), app(app(ty_Either, gd), ge), gf) 31.62/12.87 new_compare114(xwv43000, xwv44000, True) -> LT 31.62/12.87 new_compare25(xwv43000, xwv44000, False) -> new_compare112(xwv43000, xwv44000, new_ltEs17(xwv43000, xwv44000)) 31.62/12.87 new_ltEs20(xwv43002, xwv44002, ty_@0) -> new_ltEs13(xwv43002, xwv44002) 31.62/12.87 new_esEs26(xwv4001, xwv3001, app(ty_[], bge)) -> new_esEs13(xwv4001, xwv3001, bge) 31.62/12.87 new_ltEs8(Right(xwv43000), Right(xwv44000), bdc, ty_Float) -> new_ltEs16(xwv43000, xwv44000) 31.62/12.87 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Int) -> new_ltEs6(xwv43000, xwv44000) 31.62/12.87 new_ltEs18(xwv4300, xwv4400, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs12(xwv4300, xwv4400, bdh, bea, beb) 31.62/12.87 new_ltEs18(xwv4300, xwv4400, ty_Ordering) -> new_ltEs9(xwv4300, xwv4400) 31.62/12.87 new_esEs5(Nothing, Nothing, ee) -> True 31.62/12.87 new_compare6(xwv43000, xwv44000, ty_Int) -> new_compare7(xwv43000, xwv44000) 31.62/12.87 new_esEs29(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 31.62/12.87 new_esEs12(xwv4000, xwv3000, app(ty_Ratio, bcd)) -> new_esEs20(xwv4000, xwv3000, bcd) 31.62/12.87 new_compare17(Double(xwv43000, Neg(xwv430010)), Double(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.62/12.87 new_compare14(xwv43000, xwv44000, bfg, bfh, bga) -> new_compare27(xwv43000, xwv44000, new_esEs7(xwv43000, xwv44000, bfg, bfh, bga), bfg, bfh, bga) 31.62/12.87 new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 31.62/12.87 new_esEs25(xwv43000, xwv44000, ty_Ordering) -> new_esEs8(xwv43000, xwv44000) 31.62/12.87 new_esEs5(Nothing, Just(xwv3000), ee) -> False 31.62/12.87 new_esEs5(Just(xwv4000), Nothing, ee) -> False 31.62/12.87 new_primCmpInt(Neg(Zero), Pos(Succ(xwv4400))) -> LT 31.62/12.87 new_delFromFM01(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, gd, ge, gf) -> error([]) 31.62/12.87 new_ltEs19(xwv4300, xwv4400, ty_Char) -> new_ltEs14(xwv4300, xwv4400) 31.62/12.87 new_esEs30(xwv400, xwv300, ty_Bool) -> new_esEs19(xwv400, xwv300) 31.62/12.87 new_primMulInt(Pos(xwv40010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 31.62/12.87 new_compare6(xwv43000, xwv44000, ty_Ordering) -> new_compare10(xwv43000, xwv44000) 31.62/12.87 new_esEs23(xwv4000, xwv3000, app(app(ty_Either, cff), cfg)) -> new_esEs4(xwv4000, xwv3000, cff, cfg) 31.62/12.87 new_ltEs20(xwv43002, xwv44002, ty_Double) -> new_ltEs15(xwv43002, xwv44002) 31.62/12.87 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.87 new_compare10(xwv43000, xwv44000) -> new_compare24(xwv43000, xwv44000, new_esEs8(xwv43000, xwv44000)) 31.62/12.87 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Double) -> new_ltEs15(xwv43000, xwv44000) 31.62/12.87 new_esEs13(:(xwv4000, xwv4001), [], eb) -> False 31.62/12.87 new_esEs13([], :(xwv3000, xwv3001), eb) -> False 31.62/12.87 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Bool) -> new_ltEs17(xwv43000, xwv44000) 31.62/12.87 new_esEs26(xwv4001, xwv3001, app(app(ty_@2, bha), bhb)) -> new_esEs6(xwv4001, xwv3001, bha, bhb) 31.62/12.87 new_esEs4(Right(xwv4000), Right(xwv3000), ec, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.87 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(app(ty_@3, dfa), dfb), dfc)) -> new_esEs7(xwv4000, xwv3000, dfa, dfb, dfc) 31.62/12.87 new_esEs11(xwv4001, xwv3001, app(app(ty_Either, bae), baf)) -> new_esEs4(xwv4001, xwv3001, bae, baf) 31.62/12.87 new_ltEs8(Right(xwv43000), Left(xwv44000), bdc, bdd) -> False 31.62/12.87 new_lt11(xwv43000, xwv44000) -> new_esEs8(new_compare10(xwv43000, xwv44000), LT) 31.62/12.87 new_ltEs11(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), bdf, bdg) -> new_pePe(new_lt20(xwv43000, xwv44000, bdf), new_asAs(new_esEs28(xwv43000, xwv44000, bdf), new_ltEs21(xwv43001, xwv44001, bdg))) 31.62/12.87 new_esEs12(xwv4000, xwv3000, app(app(ty_@2, bcb), bcc)) -> new_esEs6(xwv4000, xwv3000, bcb, bcc) 31.62/12.87 new_primMulNat0(Succ(xwv400100), Zero) -> Zero 31.62/12.87 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 31.62/12.87 new_esEs29(xwv400, xwv300, ty_Integer) -> new_esEs14(xwv400, xwv300) 31.62/12.87 new_lt20(xwv43000, xwv44000, ty_Double) -> new_lt8(xwv43000, xwv44000) 31.62/12.87 new_glueBal2Mid_key100(xwv416, xwv417, xwv418, xwv419, xwv420, xwv421, xwv422, xwv423, xwv424, xwv425, xwv426, xwv427, xwv428, xwv429, Branch(xwv4300, xwv4301, xwv4302, xwv4303, xwv4304), dc, dd) -> new_glueBal2Mid_key100(xwv416, xwv417, xwv418, xwv419, xwv420, xwv421, xwv422, xwv423, xwv424, xwv425, xwv4300, xwv4301, xwv4302, xwv4303, xwv4304, dc, dd) 31.62/12.87 new_primPlusNat0(Zero, xwv300000) -> Succ(xwv300000) 31.62/12.87 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Integer, bdd) -> new_ltEs5(xwv43000, xwv44000) 31.62/12.87 new_esEs4(Right(xwv4000), Right(xwv3000), ec, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.87 new_ltEs9(GT, EQ) -> False 31.62/12.87 new_ltEs15(xwv4300, xwv4400) -> new_fsEs(new_compare17(xwv4300, xwv4400)) 31.62/12.87 new_esEs11(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 31.62/12.87 new_esEs29(xwv400, xwv300, ty_Bool) -> new_esEs19(xwv400, xwv300) 31.62/12.87 new_delFromFM0(Branch(Right(xwv300), xwv31, xwv32, xwv33, xwv34), Left(xwv400), h, ba, bb) -> new_delFromFM24(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Left(xwv400), Right(xwv300), False, h, ba), GT), h, ba, bb) 31.62/12.87 new_esEs23(xwv4000, xwv3000, app(ty_Maybe, cfh)) -> new_esEs5(xwv4000, xwv3000, cfh) 31.62/12.87 new_esEs10(xwv4002, xwv3002, app(ty_Ratio, hh)) -> new_esEs20(xwv4002, xwv3002, hh) 31.62/12.87 new_esEs4(Right(xwv4000), Right(xwv3000), ec, app(ty_Ratio, def)) -> new_esEs20(xwv4000, xwv3000, def) 31.62/12.87 new_lt13(xwv43001, xwv44001, app(ty_[], dab)) -> new_lt18(xwv43001, xwv44001, dab) 31.62/12.87 new_compare27(xwv43000, xwv44000, True, bfg, bfh, bga) -> EQ 31.62/12.87 new_esEs10(xwv4002, xwv3002, app(app(ty_Either, hc), hd)) -> new_esEs4(xwv4002, xwv3002, hc, hd) 31.62/12.87 new_ltEs8(Right(xwv43000), Right(xwv44000), bdc, app(app(ty_Either, ccd), cce)) -> new_ltEs8(xwv43000, xwv44000, ccd, cce) 31.62/12.87 new_ltEs4(Just(xwv43000), Just(xwv44000), app(ty_Ratio, ceb)) -> new_ltEs7(xwv43000, xwv44000, ceb) 31.62/12.87 new_delFromFM13(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba, bb) -> new_mkBalBranch(Right(xwv300), xwv31, new_delFromFM0(xwv33, Left(xwv400), h, ba, bb), xwv34, h, ba, bb) 31.62/12.87 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Char, bdd) -> new_ltEs14(xwv43000, xwv44000) 31.62/12.87 new_esEs22(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.87 new_lt6(xwv43000, xwv44000) -> new_esEs8(new_compare15(xwv43000, xwv44000), LT) 31.62/12.87 new_ltEs19(xwv4300, xwv4400, app(app(ty_Either, bec), bed)) -> new_ltEs8(xwv4300, xwv4400, bec, bed) 31.62/12.87 new_compare7(xwv43, xwv44) -> new_primCmpInt(xwv43, xwv44) 31.62/12.87 new_esEs8(LT, LT) -> True 31.62/12.87 new_ltEs18(xwv4300, xwv4400, app(app(ty_@2, bdf), bdg)) -> new_ltEs11(xwv4300, xwv4400, bdf, bdg) 31.62/12.87 new_gt(xwv124, xwv123) -> new_esEs8(new_compare7(xwv124, xwv123), GT) 31.62/12.87 new_mkBalBranch6MkBalBranch11(xwv170, xwv171, xwv3150, xwv3151, xwv3152, xwv3153, EmptyFM, xwv174, False, gd, ge, gf) -> error([]) 31.62/12.87 new_esEs10(xwv4002, xwv3002, ty_Float) -> new_esEs15(xwv4002, xwv3002) 31.62/12.87 new_esEs30(xwv400, xwv300, ty_@0) -> new_esEs16(xwv400, xwv300) 31.62/12.87 new_primPlusNat1(Succ(xwv33200), Zero) -> Succ(xwv33200) 31.62/12.87 new_primPlusNat1(Zero, Succ(xwv13100)) -> Succ(xwv13100) 31.62/12.87 new_esEs24(xwv43001, xwv44001, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs7(xwv43001, xwv44001, dae, daf, dag) 31.62/12.87 new_esEs20(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), eh) -> new_asAs(new_esEs22(xwv4000, xwv3000, eh), new_esEs21(xwv4001, xwv3001, eh)) 31.62/12.87 new_ltEs21(xwv43001, xwv44001, ty_Bool) -> new_ltEs17(xwv43001, xwv44001) 31.62/12.87 new_esEs11(xwv4001, xwv3001, app(ty_Ratio, bbb)) -> new_esEs20(xwv4001, xwv3001, bbb) 31.62/12.87 new_glueBal2Mid_key200(xwv353, xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv363, xwv364, xwv365, Branch(xwv3660, xwv3661, xwv3662, xwv3663, xwv3664), xwv367, dgc, dgd) -> new_glueBal2Mid_key200(xwv353, xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv3660, xwv3661, xwv3662, xwv3663, xwv3664, dgc, dgd) 31.62/12.87 new_lt20(xwv43000, xwv44000, ty_Char) -> new_lt10(xwv43000, xwv44000) 31.62/12.87 new_compare116(xwv43000, xwv44000, False, da, db) -> GT 31.62/12.87 new_esEs30(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 31.62/12.87 new_compare9(:%(xwv43000, xwv43001), :%(xwv44000, xwv44001), ty_Int) -> new_compare7(new_sr(xwv43000, xwv44001), new_sr(xwv44000, xwv43001)) 31.62/12.87 new_ltEs8(Right(xwv43000), Right(xwv44000), bdc, app(app(ty_@2, cda), cdb)) -> new_ltEs11(xwv43000, xwv44000, cda, cdb) 31.62/12.87 new_delFromFM15(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, False, bcf, bcg, bch) -> new_delFromFM02(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, new_esEs4(Right(xwv28), Right(xwv33), bcf, bcg), bcf, bcg, bch) 31.62/12.87 new_ltEs9(GT, GT) -> True 31.62/12.87 new_mkBalBranch6Size_r(xwv170, xwv171, xwv315, xwv174, gd, ge, gf) -> new_sizeFM0(xwv174, gd, ge, gf) 31.62/12.87 new_esEs11(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 31.62/12.87 new_ltEs8(Right(xwv43000), Right(xwv44000), bdc, ty_Int) -> new_ltEs6(xwv43000, xwv44000) 31.62/12.87 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Ratio, dgb)) -> new_esEs20(xwv4000, xwv3000, dgb) 31.62/12.87 new_esEs23(xwv4000, xwv3000, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs7(xwv4000, xwv3000, cfb, cfc, cfd) 31.62/12.87 new_delFromFM24(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba, bb) -> new_mkBalBranch(Right(xwv300), xwv31, xwv33, new_delFromFM0(xwv34, Left(xwv400), h, ba, bb), h, ba, bb) 31.62/12.87 new_lt20(xwv43000, xwv44000, ty_Ordering) -> new_lt11(xwv43000, xwv44000) 31.62/12.87 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_Either, dfe), dff)) -> new_esEs4(xwv4000, xwv3000, dfe, dff) 31.62/12.87 new_esEs28(xwv43000, xwv44000, ty_Integer) -> new_esEs14(xwv43000, xwv44000) 31.62/12.87 new_primMulInt(Neg(xwv40010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 31.62/12.87 new_primCmpInt(Pos(Zero), Pos(Succ(xwv4400))) -> new_primCmpNat0(Zero, Succ(xwv4400)) 31.62/12.87 new_esEs10(xwv4002, xwv3002, app(ty_Maybe, he)) -> new_esEs5(xwv4002, xwv3002, he) 31.62/12.87 new_ltEs20(xwv43002, xwv44002, ty_Bool) -> new_ltEs17(xwv43002, xwv44002) 31.62/12.87 new_esEs25(xwv43000, xwv44000, app(app(ty_@2, cha), chb)) -> new_esEs6(xwv43000, xwv44000, cha, chb) 31.62/12.87 new_mkBalBranch6MkBalBranch5(xwv170, xwv171, xwv315, xwv174, False, gd, ge, gf) -> new_mkBalBranch6MkBalBranch4(xwv170, xwv171, xwv315, xwv174, new_gt(new_mkBalBranch6Size_r(xwv170, xwv171, xwv315, xwv174, gd, ge, gf), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xwv170, xwv171, xwv315, xwv174, gd, ge, gf))), gd, ge, gf) 31.62/12.87 new_primPlusInt(Neg(xwv4370), xwv436, xwv433, xwv435, cf, cg) -> new_primPlusInt2(xwv4370, new_sizeFM(xwv436, cf, cg)) 31.62/12.87 new_esEs12(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.87 new_mkBalBranch6MkBalBranch5(xwv170, xwv171, xwv315, xwv174, True, gd, ge, gf) -> new_mkBranch(Zero, xwv170, xwv171, xwv315, xwv174, app(app(ty_Either, gd), ge), gf) 31.62/12.87 new_lt12(xwv43000, xwv44000, ty_Bool) -> new_lt4(xwv43000, xwv44000) 31.62/12.87 new_mkBalBranch6MkBalBranch01(xwv170, xwv171, xwv315, xwv1740, xwv1741, xwv1742, xwv1743, xwv1744, True, gd, ge, gf) -> new_mkBranch(Succ(Succ(Zero)), xwv1740, xwv1741, new_mkBranch(Succ(Succ(Succ(Zero))), xwv170, xwv171, xwv315, xwv1743, app(app(ty_Either, gd), ge), gf), xwv1744, app(app(ty_Either, gd), ge), gf) 31.62/12.87 new_delFromFM26(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, False, bcf, bcg, bch) -> new_delFromFM15(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, new_esEs8(new_compare26(Right(xwv33), Right(xwv28), new_esEs4(Right(xwv33), Right(xwv28), bcf, bcg), bcf, bcg), LT), bcf, bcg, bch) 31.62/12.87 new_esEs12(xwv4000, xwv3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs7(xwv4000, xwv3000, bbc, bbd, bbe) 31.62/12.87 new_compare114(xwv43000, xwv44000, False) -> GT 31.62/12.87 new_esEs21(xwv4001, xwv3001, ty_Int) -> new_esEs9(xwv4001, xwv3001) 31.62/12.87 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Maybe, dfg)) -> new_esEs5(xwv4000, xwv3000, dfg) 31.62/12.87 new_ltEs18(xwv4300, xwv4400, ty_Char) -> new_ltEs14(xwv4300, xwv4400) 31.62/12.87 new_esEs23(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.87 new_ltEs18(xwv4300, xwv4400, app(app(ty_Either, bdc), bdd)) -> new_ltEs8(xwv4300, xwv4400, bdc, bdd) 31.62/12.87 new_lt20(xwv43000, xwv44000, ty_Float) -> new_lt19(xwv43000, xwv44000) 31.62/12.87 new_ltEs8(Left(xwv43000), Left(xwv44000), app(ty_Ratio, cbd), bdd) -> new_ltEs7(xwv43000, xwv44000, cbd) 31.62/12.87 new_ltEs21(xwv43001, xwv44001, ty_Double) -> new_ltEs15(xwv43001, xwv44001) 31.62/12.87 new_delFromFM02(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, False, bcf, bcg, bch) -> error([]) 31.62/12.87 new_compare112(xwv43000, xwv44000, True) -> LT 31.62/12.87 new_compare113(xwv160, xwv161, True, deg, deh) -> LT 31.62/12.87 new_compare6(xwv43000, xwv44000, app(ty_Ratio, bf)) -> new_compare9(xwv43000, xwv44000, bf) 31.62/12.87 new_esEs10(xwv4002, xwv3002, ty_@0) -> new_esEs16(xwv4002, xwv3002) 31.62/12.87 new_deleteMax0(xwv160, xwv161, xwv162, xwv163, Branch(xwv1640, xwv1641, xwv1642, xwv1643, xwv1644), gd, ge, gf) -> new_mkBalBranch(xwv160, xwv161, xwv163, new_deleteMax0(xwv1640, xwv1641, xwv1642, xwv1643, xwv1644, gd, ge, gf), gd, ge, gf) 31.62/12.87 new_ltEs6(xwv4300, xwv4400) -> new_fsEs(new_compare7(xwv4300, xwv4400)) 31.62/12.87 new_primMulInt(Pos(xwv40010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 31.62/12.87 new_primMulInt(Neg(xwv40010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 31.62/12.87 new_ltEs21(xwv43001, xwv44001, app(ty_Ratio, dgg)) -> new_ltEs7(xwv43001, xwv44001, dgg) 31.62/12.87 new_esEs26(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 31.62/12.87 new_mkBalBranch6MkBalBranch01(xwv170, xwv171, xwv315, xwv1740, xwv1741, xwv1742, EmptyFM, xwv1744, False, gd, ge, gf) -> error([]) 31.62/12.87 new_esEs23(xwv4000, xwv3000, app(app(ty_@2, cga), cgb)) -> new_esEs6(xwv4000, xwv3000, cga, cgb) 31.62/12.87 new_esEs11(xwv4001, xwv3001, ty_Char) -> new_esEs18(xwv4001, xwv3001) 31.62/12.87 new_compare6(xwv43000, xwv44000, app(app(ty_Either, bd), be)) -> new_compare8(xwv43000, xwv44000, bd, be) 31.62/12.87 new_esEs23(xwv4000, xwv3000, app(ty_[], cfe)) -> new_esEs13(xwv4000, xwv3000, cfe) 31.62/12.87 new_lt10(xwv43000, xwv44000) -> new_esEs8(new_compare16(xwv43000, xwv44000), LT) 31.62/12.87 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Float, ed) -> new_esEs15(xwv4000, xwv3000) 31.62/12.87 new_ltEs8(Right(xwv43000), Right(xwv44000), bdc, app(ty_[], cch)) -> new_ltEs10(xwv43000, xwv44000, cch) 31.62/12.87 new_lt20(xwv43000, xwv44000, ty_@0) -> new_lt6(xwv43000, xwv44000) 31.62/12.87 new_lt8(xwv43000, xwv44000) -> new_esEs8(new_compare17(xwv43000, xwv44000), LT) 31.62/12.87 new_esEs11(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 31.62/12.87 new_sr0(Integer(xwv430000), Integer(xwv440010)) -> Integer(new_primMulInt(xwv430000, xwv440010)) 31.62/12.87 new_esEs24(xwv43001, xwv44001, ty_Integer) -> new_esEs14(xwv43001, xwv44001) 31.62/12.87 new_lt16(xwv43000, xwv44000, dcb) -> new_esEs8(new_compare9(xwv43000, xwv44000, dcb), LT) 31.62/12.87 new_esEs29(xwv400, xwv300, app(ty_Maybe, ee)) -> new_esEs5(xwv400, xwv300, ee) 31.62/12.87 new_esEs10(xwv4002, xwv3002, ty_Int) -> new_esEs9(xwv4002, xwv3002) 31.62/12.87 new_ltEs19(xwv4300, xwv4400, ty_Bool) -> new_ltEs17(xwv4300, xwv4400) 31.62/12.87 new_compare18(Float(xwv43000, Pos(xwv430010)), Float(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.62/12.87 new_lt19(xwv43000, xwv44000) -> new_esEs8(new_compare18(xwv43000, xwv44000), LT) 31.62/12.87 new_primPlusInt1(Pos(xwv3190), xwv170, xwv171, xwv315, xwv174, gd, ge, gf) -> new_primPlusInt0(xwv3190, new_sizeFM0(xwv174, gd, ge, gf)) 31.62/12.87 new_ltEs4(Just(xwv43000), Just(xwv44000), app(ty_[], ced)) -> new_ltEs10(xwv43000, xwv44000, ced) 31.62/12.87 new_delFromFM16(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba, bb) -> new_mkBalBranch(Left(xwv300), xwv31, new_delFromFM0(xwv33, Right(xwv400), h, ba, bb), xwv34, h, ba, bb) 31.62/12.87 new_primPlusInt1(Neg(xwv3190), xwv170, xwv171, xwv315, xwv174, gd, ge, gf) -> new_primPlusInt2(xwv3190, new_sizeFM0(xwv174, gd, ge, gf)) 31.62/12.87 new_ltEs18(xwv4300, xwv4400, ty_@0) -> new_ltEs13(xwv4300, xwv4400) 31.62/12.87 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_@0, bdd) -> new_ltEs13(xwv43000, xwv44000) 31.62/12.87 new_esEs23(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.87 new_esEs28(xwv43000, xwv44000, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs7(xwv43000, xwv44000, bfg, bfh, bga) 31.62/12.87 new_esEs4(Right(xwv4000), Right(xwv3000), ec, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.87 new_compare6(xwv43000, xwv44000, app(app(ty_@2, ca), cb)) -> new_compare13(xwv43000, xwv44000, ca, cb) 31.62/12.87 new_mkBalBranch6MkBalBranch3(xwv170, xwv171, Branch(xwv3150, xwv3151, xwv3152, xwv3153, xwv3154), xwv174, True, gd, ge, gf) -> new_mkBalBranch6MkBalBranch11(xwv170, xwv171, xwv3150, xwv3151, xwv3152, xwv3153, xwv3154, xwv174, new_lt14(new_sizeFM0(xwv3154, gd, ge, gf), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xwv3153, gd, ge, gf))), gd, ge, gf) 31.62/12.87 new_lt12(xwv43000, xwv44000, ty_Int) -> new_lt14(xwv43000, xwv44000) 31.62/12.87 new_glueBal2Mid_elt200(xwv337, xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv347, xwv348, xwv349, EmptyFM, xwv351, bfe, bff) -> xwv348 31.62/12.87 new_esEs29(xwv400, xwv300, ty_@0) -> new_esEs16(xwv400, xwv300) 31.62/12.87 new_esEs25(xwv43000, xwv44000, ty_Int) -> new_esEs9(xwv43000, xwv44000) 31.62/12.87 new_delFromFM0(Branch(Right(xwv300), xwv31, xwv32, xwv33, xwv34), Right(xwv400), h, ba, bb) -> new_delFromFM26(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Right(xwv400), Right(xwv300), new_esEs30(xwv400, xwv300, ba), h, ba), GT), h, ba, bb) 31.62/12.87 new_compare0([], :(xwv44000, xwv44001), bc) -> LT 31.62/12.87 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.87 new_asAs(True, xwv95) -> xwv95 31.62/12.87 new_lt12(xwv43000, xwv44000, app(ty_Maybe, cgg)) -> new_lt17(xwv43000, xwv44000, cgg) 31.62/12.87 new_esEs4(Right(xwv4000), Right(xwv3000), ec, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.87 new_esEs30(xwv400, xwv300, ty_Integer) -> new_esEs14(xwv400, xwv300) 31.62/12.87 new_ltEs8(Right(xwv43000), Right(xwv44000), bdc, app(app(app(ty_@3, cdc), cdd), cde)) -> new_ltEs12(xwv43000, xwv44000, cdc, cdd, cde) 31.62/12.87 new_esEs27(xwv4000, xwv3000, app(ty_[], bhg)) -> new_esEs13(xwv4000, xwv3000, bhg) 31.62/12.87 new_ltEs16(xwv4300, xwv4400) -> new_fsEs(new_compare18(xwv4300, xwv4400)) 31.62/12.87 new_ltEs4(Nothing, Just(xwv44000), bde) -> True 31.62/12.87 new_esEs16(@0, @0) -> True 31.62/12.87 new_compare17(Double(xwv43000, Pos(xwv430010)), Double(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.62/12.87 new_compare17(Double(xwv43000, Neg(xwv430010)), Double(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.62/12.87 new_esEs23(xwv4000, xwv3000, app(ty_Ratio, cgc)) -> new_esEs20(xwv4000, xwv3000, cgc) 31.62/12.87 new_esEs4(Left(xwv4000), Left(xwv3000), app(app(app(ty_@3, dcc), dcd), dce), ed) -> new_esEs7(xwv4000, xwv3000, dcc, dcd, dce) 31.62/12.87 new_esEs4(Left(xwv4000), Left(xwv3000), app(app(ty_Either, dcg), dch), ed) -> new_esEs4(xwv4000, xwv3000, dcg, dch) 31.62/12.87 new_esEs4(Right(xwv4000), Right(xwv3000), ec, app(app(ty_@2, ded), dee)) -> new_esEs6(xwv4000, xwv3000, ded, dee) 31.62/12.87 new_ltEs18(xwv4300, xwv4400, app(ty_Maybe, bde)) -> new_ltEs4(xwv4300, xwv4400, bde) 31.62/12.87 new_esEs26(xwv4001, xwv3001, ty_Char) -> new_esEs18(xwv4001, xwv3001) 31.62/12.87 new_ltEs19(xwv4300, xwv4400, ty_Double) -> new_ltEs15(xwv4300, xwv4400) 31.62/12.87 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 31.62/12.87 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.87 new_compare111(xwv167, xwv168, False, de, df) -> GT 31.62/12.87 new_glueBal(Branch(xwv160, xwv161, xwv162, xwv163, xwv164), Branch(xwv170, xwv171, xwv172, xwv173, xwv174), gd, ge, gf) -> new_glueBal2GlueBal1(xwv170, xwv171, xwv172, xwv173, xwv174, xwv160, xwv161, xwv162, xwv163, xwv164, new_gt(new_sizeFM0(Branch(xwv170, xwv171, xwv172, xwv173, xwv174), gd, ge, gf), new_sizeFM0(Branch(xwv160, xwv161, xwv162, xwv163, xwv164), gd, ge, gf)), gd, ge, gf) 31.62/12.87 new_ltEs20(xwv43002, xwv44002, ty_Char) -> new_ltEs14(xwv43002, xwv44002) 31.62/12.87 new_ltEs20(xwv43002, xwv44002, ty_Float) -> new_ltEs16(xwv43002, xwv44002) 31.62/12.87 new_delFromFM03(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba, bb) -> new_glueBal(xwv33, xwv34, h, ba, bb) 31.62/12.87 new_compare6(xwv43000, xwv44000, ty_Integer) -> new_compare11(xwv43000, xwv44000) 31.62/12.87 new_primPlusInt2(xwv3190, Neg(xwv3210)) -> Neg(new_primPlusNat1(xwv3190, xwv3210)) 31.62/12.87 new_deleteMin0(xwv170, xwv171, xwv172, EmptyFM, xwv174, gd, ge, gf) -> xwv174 31.62/12.87 new_primCmpInt(Pos(Succ(xwv4300)), Pos(xwv440)) -> new_primCmpNat0(Succ(xwv4300), xwv440) 31.62/12.87 new_lt5(xwv43000, xwv44000, da, db) -> new_esEs8(new_compare13(xwv43000, xwv44000, da, db), LT) 31.62/12.87 new_primCompAux00(xwv186, EQ) -> xwv186 31.62/12.87 new_compare0([], [], bc) -> EQ 31.62/12.87 new_sr(xwv4001, xwv3000) -> new_primMulInt(xwv4001, xwv3000) 31.62/12.87 new_lt7(xwv43000, xwv44000) -> new_esEs8(new_compare11(xwv43000, xwv44000), LT) 31.62/12.87 new_esEs27(xwv4000, xwv3000, app(app(ty_@2, cac), cad)) -> new_esEs6(xwv4000, xwv3000, cac, cad) 31.62/12.87 new_esEs28(xwv43000, xwv44000, ty_Float) -> new_esEs15(xwv43000, xwv44000) 31.62/12.87 new_ltEs4(Just(xwv43000), Just(xwv44000), app(app(ty_Either, cdh), cea)) -> new_ltEs8(xwv43000, xwv44000, cdh, cea) 31.62/12.87 new_lt4(xwv43000, xwv44000) -> new_esEs8(new_compare19(xwv43000, xwv44000), LT) 31.62/12.87 new_primMulNat0(Zero, Zero) -> Zero 31.62/12.87 new_esEs12(xwv4000, xwv3000, app(ty_[], bbf)) -> new_esEs13(xwv4000, xwv3000, bbf) 31.62/12.87 new_compare6(xwv43000, xwv44000, app(app(app(ty_@3, cc), cd), ce)) -> new_compare14(xwv43000, xwv44000, cc, cd, ce) 31.62/12.87 new_ltEs5(xwv4300, xwv4400) -> new_fsEs(new_compare11(xwv4300, xwv4400)) 31.62/12.87 new_esEs10(xwv4002, xwv3002, ty_Bool) -> new_esEs19(xwv4002, xwv3002) 31.62/12.87 new_esEs27(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.87 new_ltEs19(xwv4300, xwv4400, app(ty_Ratio, bee)) -> new_ltEs7(xwv4300, xwv4400, bee) 31.62/12.87 new_esEs24(xwv43001, xwv44001, app(ty_Maybe, daa)) -> new_esEs5(xwv43001, xwv44001, daa) 31.62/12.87 new_esEs30(xwv400, xwv300, app(ty_Maybe, fh)) -> new_esEs5(xwv400, xwv300, fh) 31.62/12.87 new_esEs30(xwv400, xwv300, ty_Int) -> new_esEs9(xwv400, xwv300) 31.62/12.87 new_esEs12(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.87 new_compare11(Integer(xwv43000), Integer(xwv44000)) -> new_primCmpInt(xwv43000, xwv44000) 31.62/12.87 new_ltEs4(Just(xwv43000), Just(xwv44000), app(app(ty_@2, cee), cef)) -> new_ltEs11(xwv43000, xwv44000, cee, cef) 31.62/12.87 new_compare115(xwv43000, xwv44000, False, bfg, bfh, bga) -> GT 31.62/12.87 new_compare24(xwv43000, xwv44000, False) -> new_compare114(xwv43000, xwv44000, new_ltEs9(xwv43000, xwv44000)) 31.62/12.87 new_delFromFM25(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba, bb) -> new_mkBalBranch(Left(xwv300), xwv31, xwv33, new_delFromFM0(xwv34, Right(xwv400), h, ba, bb), h, ba, bb) 31.62/12.87 new_esEs25(xwv43000, xwv44000, app(app(ty_Either, cgd), cge)) -> new_esEs4(xwv43000, xwv44000, cgd, cge) 31.62/12.87 new_esEs4(Right(xwv4000), Right(xwv3000), ec, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.87 new_esEs25(xwv43000, xwv44000, app(ty_Maybe, cgg)) -> new_esEs5(xwv43000, xwv44000, cgg) 31.62/12.87 new_esEs4(Right(xwv4000), Right(xwv3000), ec, app(app(ty_Either, dea), deb)) -> new_esEs4(xwv4000, xwv3000, dea, deb) 31.62/12.87 new_lt20(xwv43000, xwv44000, ty_Integer) -> new_lt7(xwv43000, xwv44000) 31.62/12.87 new_esEs28(xwv43000, xwv44000, app(app(ty_@2, da), db)) -> new_esEs6(xwv43000, xwv44000, da, db) 31.62/12.87 new_glueBal2Mid_key100(xwv416, xwv417, xwv418, xwv419, xwv420, xwv421, xwv422, xwv423, xwv424, xwv425, xwv426, xwv427, xwv428, xwv429, EmptyFM, dc, dd) -> xwv426 31.62/12.87 new_deleteMin0(xwv170, xwv171, xwv172, Branch(xwv1730, xwv1731, xwv1732, xwv1733, xwv1734), xwv174, gd, ge, gf) -> new_mkBalBranch(xwv170, xwv171, new_deleteMin0(xwv1730, xwv1731, xwv1732, xwv1733, xwv1734, gd, ge, gf), xwv174, gd, ge, gf) 31.62/12.87 new_ltEs9(GT, LT) -> False 31.62/12.87 new_esEs24(xwv43001, xwv44001, app(ty_Ratio, chh)) -> new_esEs20(xwv43001, xwv44001, chh) 31.62/12.87 new_ltEs17(False, False) -> True 31.62/12.87 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.87 new_compare18(Float(xwv43000, Neg(xwv430010)), Float(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.62/12.87 new_esEs12(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.87 new_esEs29(xwv400, xwv300, app(app(ty_Either, ec), ed)) -> new_esEs4(xwv400, xwv300, ec, ed) 31.62/12.87 new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False 31.62/12.87 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 31.62/12.87 new_mkBalBranch6MkBalBranch01(xwv170, xwv171, xwv315, xwv1740, xwv1741, xwv1742, Branch(xwv17430, xwv17431, xwv17432, xwv17433, xwv17434), xwv1744, False, gd, ge, gf) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xwv17430, xwv17431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), xwv170, xwv171, xwv315, xwv17433, app(app(ty_Either, gd), ge), gf), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xwv1740, xwv1741, xwv17434, xwv1744, app(app(ty_Either, gd), ge), gf), app(app(ty_Either, gd), ge), gf) 31.62/12.87 new_esEs24(xwv43001, xwv44001, ty_Int) -> new_esEs9(xwv43001, xwv44001) 31.62/12.87 new_lt13(xwv43001, xwv44001, app(app(ty_@2, dac), dad)) -> new_lt5(xwv43001, xwv44001, dac, dad) 31.62/12.87 new_ltEs8(Right(xwv43000), Right(xwv44000), bdc, ty_Double) -> new_ltEs15(xwv43000, xwv44000) 31.62/12.87 new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 31.62/12.87 new_ltEs9(EQ, GT) -> True 31.62/12.87 new_delFromFM0(Branch(Left(xwv300), xwv31, xwv32, xwv33, xwv34), Right(xwv400), h, ba, bb) -> new_delFromFM25(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Right(xwv400), Left(xwv300), False, h, ba), GT), h, ba, bb) 31.62/12.87 new_compare24(xwv43000, xwv44000, True) -> EQ 31.62/12.87 new_esEs11(xwv4001, xwv3001, ty_Bool) -> new_esEs19(xwv4001, xwv3001) 31.62/12.87 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.87 new_ltEs18(xwv4300, xwv4400, ty_Integer) -> new_ltEs5(xwv4300, xwv4400) 31.62/12.87 new_esEs26(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 31.62/12.87 new_ltEs8(Right(xwv43000), Right(xwv44000), bdc, ty_Bool) -> new_ltEs17(xwv43000, xwv44000) 31.62/12.87 new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> False 31.62/12.87 new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> False 31.62/12.87 new_compare26(Right(xwv4300), Right(xwv4400), False, bda, bdb) -> new_compare111(xwv4300, xwv4400, new_ltEs19(xwv4300, xwv4400, bdb), bda, bdb) 31.62/12.87 new_ltEs20(xwv43002, xwv44002, app(ty_Ratio, dbb)) -> new_ltEs7(xwv43002, xwv44002, dbb) 31.62/12.87 new_ltEs8(Left(xwv43000), Left(xwv44000), app(ty_[], cbf), bdd) -> new_ltEs10(xwv43000, xwv44000, cbf) 31.62/12.87 new_primCmpInt(Neg(Zero), Neg(Succ(xwv4400))) -> new_primCmpNat0(Succ(xwv4400), Zero) 31.62/12.87 new_esEs28(xwv43000, xwv44000, app(ty_[], caf)) -> new_esEs13(xwv43000, xwv44000, caf) 31.62/12.87 new_esEs30(xwv400, xwv300, app(app(ty_Either, ff), fg)) -> new_esEs4(xwv400, xwv300, ff, fg) 31.62/12.87 new_esEs29(xwv400, xwv300, ty_Int) -> new_esEs9(xwv400, xwv300) 31.62/12.87 new_esEs24(xwv43001, xwv44001, app(app(ty_Either, chf), chg)) -> new_esEs4(xwv43001, xwv44001, chf, chg) 31.62/12.87 new_esEs4(Right(xwv4000), Right(xwv3000), ec, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.87 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 31.62/12.87 new_compare6(xwv43000, xwv44000, ty_Double) -> new_compare17(xwv43000, xwv44000) 31.62/12.87 new_ltEs17(True, False) -> False 31.62/12.87 new_esEs27(xwv4000, xwv3000, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.87 new_compare8(xwv43000, xwv44000, cdf, cdg) -> new_compare26(xwv43000, xwv44000, new_esEs4(xwv43000, xwv44000, cdf, cdg), cdf, cdg) 31.62/12.87 new_esEs28(xwv43000, xwv44000, app(ty_Maybe, cag)) -> new_esEs5(xwv43000, xwv44000, cag) 31.62/12.87 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_[], dfd)) -> new_esEs13(xwv4000, xwv3000, dfd) 31.62/12.87 new_lt12(xwv43000, xwv44000, app(ty_Ratio, cgf)) -> new_lt16(xwv43000, xwv44000, cgf) 31.62/12.87 new_ltEs17(False, True) -> True 31.62/12.87 new_lt13(xwv43001, xwv44001, ty_Float) -> new_lt19(xwv43001, xwv44001) 31.62/12.87 new_delFromFM23(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, gd, ge, gf) -> new_mkBalBranch(Left(xwv13), xwv14, xwv16, new_delFromFM0(xwv17, Left(xwv18), gd, ge, gf), gd, ge, gf) 31.62/12.87 new_primCompAux0(xwv43000, xwv44000, xwv182, bc) -> new_primCompAux00(xwv182, new_compare6(xwv43000, xwv44000, bc)) 31.62/12.87 new_sizeFM(Branch(xwv4350, xwv4351, xwv4352, xwv4353, xwv4354), cf, cg) -> xwv4352 31.62/12.87 new_esEs24(xwv43001, xwv44001, ty_Float) -> new_esEs15(xwv43001, xwv44001) 31.62/12.87 new_esEs29(xwv400, xwv300, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs7(xwv400, xwv300, dg, dh, ea) 31.62/12.87 new_glueBal2Mid_elt100(xwv400, xwv401, xwv402, xwv403, xwv404, xwv405, xwv406, xwv407, xwv408, xwv409, xwv410, xwv411, xwv412, xwv413, Branch(xwv4140, xwv4141, xwv4142, xwv4143, xwv4144), cah, cba) -> new_glueBal2Mid_elt100(xwv400, xwv401, xwv402, xwv403, xwv404, xwv405, xwv406, xwv407, xwv408, xwv409, xwv4140, xwv4141, xwv4142, xwv4143, xwv4144, cah, cba) 31.62/12.87 new_esEs30(xwv400, xwv300, app(ty_Ratio, gc)) -> new_esEs20(xwv400, xwv300, gc) 31.62/12.87 new_esEs4(Right(xwv4000), Right(xwv3000), ec, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.87 new_esEs10(xwv4002, xwv3002, ty_Integer) -> new_esEs14(xwv4002, xwv3002) 31.62/12.87 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Integer) -> new_ltEs5(xwv43000, xwv44000) 31.62/12.87 new_esEs11(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 31.62/12.87 new_not(False) -> True 31.62/12.87 new_ltEs8(Left(xwv43000), Right(xwv44000), bdc, bdd) -> True 31.62/12.87 new_lt13(xwv43001, xwv44001, ty_@0) -> new_lt6(xwv43001, xwv44001) 31.62/12.87 new_esEs28(xwv43000, xwv44000, ty_Int) -> new_esEs9(xwv43000, xwv44000) 31.62/12.87 new_mkBalBranch6MkBalBranch3(xwv170, xwv171, xwv315, xwv174, False, gd, ge, gf) -> new_mkBranch(Succ(Zero), xwv170, xwv171, xwv315, xwv174, app(app(ty_Either, gd), ge), gf) 31.62/12.87 new_esEs30(xwv400, xwv300, app(app(ty_@2, ga), gb)) -> new_esEs6(xwv400, xwv300, ga, gb) 31.62/12.87 new_compare0(:(xwv43000, xwv43001), [], bc) -> GT 31.62/12.87 new_esEs8(LT, GT) -> False 31.62/12.87 new_esEs8(GT, LT) -> False 31.62/12.87 new_lt20(xwv43000, xwv44000, app(app(ty_@2, da), db)) -> new_lt5(xwv43000, xwv44000, da, db) 31.62/12.87 new_delFromFM13(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, False, h, ba, bb) -> new_delFromFM00(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs4(Right(xwv300), Left(xwv400), h, ba), h, ba, bb) 31.62/12.87 new_esEs25(xwv43000, xwv44000, ty_Double) -> new_esEs17(xwv43000, xwv44000) 31.62/12.87 new_esEs30(xwv400, xwv300, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs7(xwv400, xwv300, fa, fb, fc) 31.62/12.87 new_esEs24(xwv43001, xwv44001, ty_@0) -> new_esEs16(xwv43001, xwv44001) 31.62/12.87 new_esEs12(xwv4000, xwv3000, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.87 new_compare25(xwv43000, xwv44000, True) -> EQ 31.62/12.87 new_esEs23(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.87 new_ltEs18(xwv4300, xwv4400, ty_Int) -> new_ltEs6(xwv4300, xwv4400) 31.62/12.87 new_esEs27(xwv4000, xwv3000, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs7(xwv4000, xwv3000, bhd, bhe, bhf) 31.62/12.87 new_primPlusNat0(Succ(xwv1400), xwv300000) -> Succ(Succ(new_primPlusNat1(xwv1400, xwv300000))) 31.62/12.87 new_esEs26(xwv4001, xwv3001, app(ty_Maybe, bgh)) -> new_esEs5(xwv4001, xwv3001, bgh) 31.62/12.87 new_esEs13(:(xwv4000, xwv4001), :(xwv3000, xwv3001), eb) -> new_asAs(new_esEs23(xwv4000, xwv3000, eb), new_esEs13(xwv4001, xwv3001, eb)) 31.62/12.87 new_esEs24(xwv43001, xwv44001, ty_Bool) -> new_esEs19(xwv43001, xwv44001) 31.62/12.87 new_esEs29(xwv400, xwv300, app(ty_Ratio, eh)) -> new_esEs20(xwv400, xwv300, eh) 31.62/12.87 new_ltEs9(LT, EQ) -> True 31.62/12.87 new_esEs29(xwv400, xwv300, app(app(ty_@2, ef), eg)) -> new_esEs6(xwv400, xwv300, ef, eg) 31.62/12.87 new_esEs4(Left(xwv4000), Left(xwv3000), app(ty_Maybe, dda), ed) -> new_esEs5(xwv4000, xwv3000, dda) 31.62/12.87 new_esEs30(xwv400, xwv300, app(ty_[], fd)) -> new_esEs13(xwv400, xwv300, fd) 31.62/12.87 new_ltEs7(xwv4300, xwv4400, bce) -> new_fsEs(new_compare9(xwv4300, xwv4400, bce)) 31.62/12.87 new_compare16(Char(xwv43000), Char(xwv44000)) -> new_primCmpNat0(xwv43000, xwv44000) 31.62/12.87 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 31.62/12.87 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 31.62/12.87 new_compare0(:(xwv43000, xwv43001), :(xwv44000, xwv44001), bc) -> new_primCompAux0(xwv43000, xwv44000, new_compare0(xwv43001, xwv44001, bc), bc) 31.62/12.87 new_primPlusNat1(Zero, Zero) -> Zero 31.62/12.87 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Float, bdd) -> new_ltEs16(xwv43000, xwv44000) 31.62/12.87 new_lt20(xwv43000, xwv44000, app(app(ty_Either, cdf), cdg)) -> new_lt15(xwv43000, xwv44000, cdf, cdg) 31.62/12.87 new_compare6(xwv43000, xwv44000, ty_Bool) -> new_compare19(xwv43000, xwv44000) 31.62/12.87 new_lt12(xwv43000, xwv44000, app(app(ty_@2, cha), chb)) -> new_lt5(xwv43000, xwv44000, cha, chb) 31.62/12.87 new_esEs26(xwv4001, xwv3001, app(ty_Ratio, bhc)) -> new_esEs20(xwv4001, xwv3001, bhc) 31.62/12.87 new_lt12(xwv43000, xwv44000, ty_Ordering) -> new_lt11(xwv43000, xwv44000) 31.62/12.87 new_ltEs21(xwv43001, xwv44001, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_ltEs12(xwv43001, xwv44001, dhd, dhe, dhf) 31.62/12.87 new_delFromFM24(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, False, h, ba, bb) -> new_delFromFM13(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Left(xwv400), Right(xwv300), new_esEs4(Left(xwv400), Right(xwv300), h, ba), h, ba), LT), h, ba, bb) 31.62/12.87 new_esEs28(xwv43000, xwv44000, app(app(ty_Either, cdf), cdg)) -> new_esEs4(xwv43000, xwv44000, cdf, cdg) 31.62/12.87 new_esEs26(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 31.62/12.87 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Ordering) -> new_ltEs9(xwv43000, xwv44000) 31.62/12.87 new_esEs12(xwv4000, xwv3000, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.87 new_ltEs9(LT, GT) -> True 31.62/12.87 new_esEs27(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.87 new_esEs12(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.87 new_compare6(xwv43000, xwv44000, ty_@0) -> new_compare15(xwv43000, xwv44000) 31.62/12.87 new_delFromFM0(Branch(Left(xwv300), xwv31, xwv32, xwv33, xwv34), Left(xwv400), h, ba, bb) -> new_delFromFM23(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Left(xwv400), Left(xwv300), new_esEs29(xwv400, xwv300, h), h, ba), GT), h, ba, bb) 31.62/12.87 new_esEs26(xwv4001, xwv3001, ty_Bool) -> new_esEs19(xwv4001, xwv3001) 31.62/12.87 new_esEs26(xwv4001, xwv3001, app(app(ty_Either, bgf), bgg)) -> new_esEs4(xwv4001, xwv3001, bgf, bgg) 31.62/12.87 new_mkBalBranch6Size_l(xwv170, xwv171, xwv315, xwv174, gd, ge, gf) -> new_sizeFM0(xwv315, gd, ge, gf) 31.62/12.87 new_ltEs20(xwv43002, xwv44002, app(ty_[], dbd)) -> new_ltEs10(xwv43002, xwv44002, dbd) 31.62/12.87 new_delFromFM14(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, gd, ge, gf) -> new_delFromFM01(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs4(Left(xwv13), Left(xwv18), gd, ge), gd, ge, gf) 31.62/12.87 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 31.62/12.87 new_lt20(xwv43000, xwv44000, app(ty_[], caf)) -> new_lt18(xwv43000, xwv44000, caf) 31.62/12.87 new_primMulNat0(Succ(xwv400100), Succ(xwv300000)) -> new_primPlusNat0(new_primMulNat0(xwv400100, Succ(xwv300000)), xwv300000) 31.62/12.87 new_esEs27(xwv4000, xwv3000, app(ty_Ratio, cae)) -> new_esEs20(xwv4000, xwv3000, cae) 31.62/12.87 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Int, bdd) -> new_ltEs6(xwv43000, xwv44000) 31.62/12.87 new_sizeFM0(Branch(xwv330, xwv331, xwv332, xwv333, xwv334), h, ba, bb) -> xwv332 31.62/12.87 new_ltEs21(xwv43001, xwv44001, app(ty_[], dha)) -> new_ltEs10(xwv43001, xwv44001, dha) 31.62/12.87 new_esEs21(xwv4001, xwv3001, ty_Integer) -> new_esEs14(xwv4001, xwv3001) 31.62/12.87 new_mkBalBranch6MkBalBranch4(xwv170, xwv171, xwv315, EmptyFM, True, gd, ge, gf) -> error([]) 31.62/12.87 new_primCmpNat0(Succ(xwv4300), Succ(xwv4400)) -> new_primCmpNat0(xwv4300, xwv4400) 31.62/12.87 new_primPlusInt2(xwv3190, Pos(xwv3210)) -> new_primMinusNat0(xwv3210, xwv3190) 31.62/12.87 new_delFromFM14(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, gd, ge, gf) -> new_mkBalBranch(Left(xwv13), xwv14, new_delFromFM0(xwv16, Left(xwv18), gd, ge, gf), xwv17, gd, ge, gf) 31.62/12.87 new_glueBal2Mid_elt200(xwv337, xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv347, xwv348, xwv349, Branch(xwv3500, xwv3501, xwv3502, xwv3503, xwv3504), xwv351, bfe, bff) -> new_glueBal2Mid_elt200(xwv337, xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv3500, xwv3501, xwv3502, xwv3503, xwv3504, bfe, bff) 31.62/12.87 new_compare9(:%(xwv43000, xwv43001), :%(xwv44000, xwv44001), ty_Integer) -> new_compare11(new_sr0(xwv43000, xwv44001), new_sr0(xwv44000, xwv43001)) 31.62/12.87 new_mkBalBranch6MkBalBranch3(xwv170, xwv171, EmptyFM, xwv174, True, gd, ge, gf) -> error([]) 31.62/12.87 new_glueBal2Mid_elt100(xwv400, xwv401, xwv402, xwv403, xwv404, xwv405, xwv406, xwv407, xwv408, xwv409, xwv410, xwv411, xwv412, xwv413, EmptyFM, cah, cba) -> xwv411 31.62/12.87 new_mkBalBranch6MkBalBranch4(xwv170, xwv171, xwv315, xwv174, False, gd, ge, gf) -> new_mkBalBranch6MkBalBranch3(xwv170, xwv171, xwv315, xwv174, new_gt(new_mkBalBranch6Size_l(xwv170, xwv171, xwv315, xwv174, gd, ge, gf), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xwv170, xwv171, xwv315, xwv174, gd, ge, gf))), gd, ge, gf) 31.62/12.87 new_lt13(xwv43001, xwv44001, ty_Double) -> new_lt8(xwv43001, xwv44001) 31.62/12.87 new_lt13(xwv43001, xwv44001, ty_Char) -> new_lt10(xwv43001, xwv44001) 31.62/12.87 new_primMinusNat0(Zero, Succ(xwv32000)) -> Neg(Succ(xwv32000)) 31.62/12.87 new_ltEs21(xwv43001, xwv44001, ty_Integer) -> new_ltEs5(xwv43001, xwv44001) 31.62/12.87 new_esEs28(xwv43000, xwv44000, ty_Ordering) -> new_esEs8(xwv43000, xwv44000) 31.62/12.87 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Integer, ed) -> new_esEs14(xwv4000, xwv3000) 31.62/12.87 new_ltEs19(xwv4300, xwv4400, ty_Float) -> new_ltEs16(xwv4300, xwv4400) 31.62/12.87 new_esEs4(Left(xwv4000), Left(xwv3000), app(ty_Ratio, ddd), ed) -> new_esEs20(xwv4000, xwv3000, ddd) 31.62/12.87 new_ltEs12(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bdh, bea, beb) -> new_pePe(new_lt12(xwv43000, xwv44000, bdh), new_asAs(new_esEs25(xwv43000, xwv44000, bdh), new_pePe(new_lt13(xwv43001, xwv44001, bea), new_asAs(new_esEs24(xwv43001, xwv44001, bea), new_ltEs20(xwv43002, xwv44002, beb))))) 31.62/12.87 new_ltEs21(xwv43001, xwv44001, app(ty_Maybe, dgh)) -> new_ltEs4(xwv43001, xwv44001, dgh) 31.62/12.87 new_esEs24(xwv43001, xwv44001, ty_Char) -> new_esEs18(xwv43001, xwv44001) 31.62/12.87 new_esEs27(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.87 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 31.62/12.87 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 31.62/12.87 new_esEs28(xwv43000, xwv44000, app(ty_Ratio, dcb)) -> new_esEs20(xwv43000, xwv44000, dcb) 31.62/12.87 new_glueBal(EmptyFM, xwv17, gd, ge, gf) -> xwv17 31.62/12.87 new_ltEs9(EQ, LT) -> False 31.62/12.87 new_delFromFM26(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, bcf, bcg, bch) -> new_mkBalBranch(Right(xwv28), xwv29, xwv31, new_delFromFM0(xwv32, Right(xwv33), bcf, bcg, bch), bcf, bcg, bch) 31.62/12.87 new_compare26(Left(xwv4300), Left(xwv4400), False, bda, bdb) -> new_compare113(xwv4300, xwv4400, new_ltEs18(xwv4300, xwv4400, bda), bda, bdb) 31.62/12.87 new_glueBal2GlueBal1(xwv170, xwv171, xwv172, xwv173, xwv174, xwv160, xwv161, xwv162, xwv163, xwv164, False, gd, ge, gf) -> new_mkBalBranch(new_glueBal2Mid_key100(xwv170, xwv171, xwv172, xwv173, xwv174, xwv160, xwv161, xwv162, xwv163, xwv164, xwv160, xwv161, xwv162, xwv163, xwv164, app(app(ty_Either, gd), ge), gf), new_glueBal2Mid_elt100(xwv170, xwv171, xwv172, xwv173, xwv174, xwv160, xwv161, xwv162, xwv163, xwv164, xwv160, xwv161, xwv162, xwv163, xwv164, gf, app(app(ty_Either, gd), ge)), new_deleteMax0(xwv160, xwv161, xwv162, xwv163, xwv164, gd, ge, gf), Branch(xwv170, xwv171, xwv172, xwv173, xwv174), gd, ge, gf) 31.62/12.87 new_ltEs19(xwv4300, xwv4400, app(ty_Maybe, bef)) -> new_ltEs4(xwv4300, xwv4400, bef) 31.62/12.87 new_ltEs8(Right(xwv43000), Right(xwv44000), bdc, ty_Char) -> new_ltEs14(xwv43000, xwv44000) 31.62/12.87 new_primEqNat0(Zero, Zero) -> True 31.62/12.87 new_glueBal2Mid_key200(xwv353, xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv363, xwv364, xwv365, EmptyFM, xwv367, dgc, dgd) -> xwv363 31.62/12.87 new_lt12(xwv43000, xwv44000, ty_Double) -> new_lt8(xwv43000, xwv44000) 31.62/12.87 new_ltEs18(xwv4300, xwv4400, ty_Float) -> new_ltEs16(xwv4300, xwv4400) 31.62/12.87 new_esEs29(xwv400, xwv300, ty_Ordering) -> new_esEs8(xwv400, xwv300) 31.62/12.87 new_ltEs8(Right(xwv43000), Right(xwv44000), bdc, app(ty_Ratio, ccf)) -> new_ltEs7(xwv43000, xwv44000, ccf) 31.62/12.87 new_compare110(xwv43000, xwv44000, True, cag) -> LT 31.62/12.87 new_esEs26(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 31.62/12.87 new_esEs25(xwv43000, xwv44000, ty_Char) -> new_esEs18(xwv43000, xwv44000) 31.62/12.87 new_esEs11(xwv4001, xwv3001, ty_Integer) -> new_esEs14(xwv4001, xwv3001) 31.62/12.87 new_ltEs17(True, True) -> True 31.62/12.87 new_lt13(xwv43001, xwv44001, ty_Ordering) -> new_lt11(xwv43001, xwv44001) 31.62/12.87 new_asAs(False, xwv95) -> False 31.62/12.87 new_ltEs8(Left(xwv43000), Left(xwv44000), app(app(app(ty_@3, cca), ccb), ccc), bdd) -> new_ltEs12(xwv43000, xwv44000, cca, ccb, ccc) 31.62/12.87 new_glueBal2GlueBal1(xwv170, xwv171, xwv172, xwv173, xwv174, xwv160, xwv161, xwv162, xwv163, xwv164, True, gd, ge, gf) -> new_mkBalBranch(new_glueBal2Mid_key200(xwv170, xwv171, xwv172, xwv173, xwv174, xwv160, xwv161, xwv162, xwv163, xwv164, xwv170, xwv171, xwv172, xwv173, xwv174, app(app(ty_Either, gd), ge), gf), new_glueBal2Mid_elt200(xwv170, xwv171, xwv172, xwv173, xwv174, xwv160, xwv161, xwv162, xwv163, xwv164, xwv170, xwv171, xwv172, xwv173, xwv174, gf, app(app(ty_Either, gd), ge)), Branch(xwv160, xwv161, xwv162, xwv163, xwv164), new_deleteMin0(xwv170, xwv171, xwv172, xwv173, xwv174, gd, ge, gf), gd, ge, gf) 31.62/12.87 new_lt12(xwv43000, xwv44000, app(app(app(ty_@3, chc), chd), che)) -> new_lt9(xwv43000, xwv44000, chc, chd, che) 31.62/12.87 new_ltEs4(Just(xwv43000), Just(xwv44000), app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs12(xwv43000, xwv44000, ceg, ceh, cfa) 31.62/12.87 new_lt20(xwv43000, xwv44000, app(ty_Maybe, cag)) -> new_lt17(xwv43000, xwv44000, cag) 31.62/12.87 new_ltEs19(xwv4300, xwv4400, app(ty_[], beg)) -> new_ltEs10(xwv4300, xwv4400, beg) 31.62/12.87 new_esEs26(xwv4001, xwv3001, ty_Int) -> new_esEs9(xwv4001, xwv3001) 31.62/12.87 new_esEs27(xwv4000, xwv3000, app(ty_Maybe, cab)) -> new_esEs5(xwv4000, xwv3000, cab) 31.62/12.87 new_lt13(xwv43001, xwv44001, app(ty_Ratio, chh)) -> new_lt16(xwv43001, xwv44001, chh) 31.62/12.87 new_compare28(xwv43000, xwv44000, True, da, db) -> EQ 31.62/12.87 new_esEs25(xwv43000, xwv44000, ty_@0) -> new_esEs16(xwv43000, xwv44000) 31.62/12.87 new_esEs22(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.87 new_delFromFM15(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, bcf, bcg, bch) -> new_mkBalBranch(Right(xwv28), xwv29, new_delFromFM0(xwv31, Right(xwv33), bcf, bcg, bch), xwv32, bcf, bcg, bch) 31.62/12.87 new_esEs14(Integer(xwv4000), Integer(xwv3000)) -> new_primEqInt(xwv4000, xwv3000) 31.62/12.87 new_esEs27(xwv4000, xwv3000, app(app(ty_Either, bhh), caa)) -> new_esEs4(xwv4000, xwv3000, bhh, caa) 31.62/12.87 new_lt13(xwv43001, xwv44001, ty_Int) -> new_lt14(xwv43001, xwv44001) 31.62/12.87 new_ltEs20(xwv43002, xwv44002, app(ty_Maybe, dbc)) -> new_ltEs4(xwv43002, xwv44002, dbc) 31.62/12.87 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.87 new_delFromFM25(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, False, h, ba, bb) -> new_delFromFM16(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Right(xwv400), Left(xwv300), new_esEs4(Right(xwv400), Left(xwv300), h, ba), h, ba), LT), h, ba, bb) 31.62/12.87 new_esEs8(EQ, GT) -> False 31.62/12.87 new_esEs8(GT, EQ) -> False 31.62/12.87 new_compare13(xwv43000, xwv44000, da, db) -> new_compare28(xwv43000, xwv44000, new_esEs6(xwv43000, xwv44000, da, db), da, db) 31.62/12.87 new_lt9(xwv43000, xwv44000, bfg, bfh, bga) -> new_esEs8(new_compare14(xwv43000, xwv44000, bfg, bfh, bga), LT) 31.62/12.87 new_ltEs9(EQ, EQ) -> True 31.62/12.87 new_esEs19(True, True) -> True 31.62/12.87 new_esEs25(xwv43000, xwv44000, ty_Bool) -> new_esEs19(xwv43000, xwv44000) 31.62/12.87 new_ltEs8(Right(xwv43000), Right(xwv44000), bdc, ty_Ordering) -> new_ltEs9(xwv43000, xwv44000) 31.62/12.87 31.62/12.87 The set Q consists of the following terms: 31.62/12.87 31.62/12.87 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.87 new_esEs29(x0, x1, ty_Integer) 31.62/12.87 new_esEs26(x0, x1, ty_Ordering) 31.62/12.87 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 31.62/12.87 new_esEs8(EQ, EQ) 31.62/12.87 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 31.62/12.87 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5, x6) 31.62/12.87 new_esEs10(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.87 new_primPlusInt(Pos(x0), x1, x2, x3, x4, x5) 31.62/12.87 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 31.62/12.87 new_ltEs20(x0, x1, ty_Bool) 31.62/12.87 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.87 new_compare0([], :(x0, x1), x2) 31.62/12.87 new_esEs30(x0, x1, ty_Int) 31.62/12.87 new_esEs27(x0, x1, app(ty_Ratio, x2)) 31.62/12.87 new_lt15(x0, x1, x2, x3) 31.62/12.87 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 31.62/12.87 new_esEs12(x0, x1, ty_Integer) 31.62/12.87 new_ltEs19(x0, x1, ty_Float) 31.62/12.87 new_esEs26(x0, x1, app(ty_Ratio, x2)) 31.62/12.87 new_esEs12(x0, x1, app(ty_[], x2)) 31.62/12.87 new_esEs24(x0, x1, ty_Char) 31.62/12.87 new_ltEs18(x0, x1, ty_Int) 31.62/12.87 new_esEs5(Just(x0), Just(x1), ty_Float) 31.62/12.87 new_glueBal(Branch(x0, x1, x2, x3, x4), EmptyFM, x5, x6, x7) 31.62/12.87 new_esEs25(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5, x6) 31.62/12.87 new_esEs30(x0, x1, ty_Char) 31.62/12.87 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 31.62/12.87 new_primPlusNat1(Zero, Zero) 31.62/12.87 new_compare115(x0, x1, False, x2, x3, x4) 31.62/12.87 new_glueBal2Mid_elt100(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, EmptyFM, x14, x15) 31.62/12.87 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) 31.62/12.87 new_compare23(x0, x1, True, x2) 31.62/12.87 new_lt8(x0, x1) 31.62/12.87 new_delFromFM01(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 31.62/12.87 new_primMinusNat0(Succ(x0), Zero) 31.62/12.87 new_esEs18(Char(x0), Char(x1)) 31.62/12.87 new_primPlusNat1(Succ(x0), Zero) 31.62/12.87 new_esEs25(x0, x1, ty_Ordering) 31.62/12.87 new_ltEs18(x0, x1, ty_Ordering) 31.62/12.87 new_esEs23(x0, x1, ty_Double) 31.62/12.87 new_esEs24(x0, x1, ty_Int) 31.62/12.87 new_esEs19(False, False) 31.62/12.87 new_sr(x0, x1) 31.62/12.87 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 31.62/12.87 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.87 new_esEs26(x0, x1, ty_Int) 31.62/12.87 new_esEs11(x0, x1, ty_Float) 31.62/12.87 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.87 new_lt6(x0, x1) 31.62/12.87 new_lt10(x0, x1) 31.62/12.87 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.87 new_delFromFM13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 31.62/12.87 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_primEqInt(Pos(Zero), Pos(Zero)) 31.62/12.87 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 31.62/12.87 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 31.62/12.87 new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, True, x3, x4, x5) 31.62/12.87 new_primMinusNat0(Zero, Zero) 31.62/12.87 new_lt20(x0, x1, ty_Ordering) 31.62/12.87 new_esEs30(x0, x1, ty_Ordering) 31.62/12.87 new_esEs30(x0, x1, app(ty_Ratio, x2)) 31.62/12.87 new_ltEs18(x0, x1, ty_Char) 31.62/12.87 new_delFromFM25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 31.62/12.87 new_compare12(x0, x1, x2) 31.62/12.87 new_lt20(x0, x1, ty_Double) 31.62/12.87 new_esEs12(x0, x1, ty_Bool) 31.62/12.87 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.87 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 31.62/12.87 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 31.62/12.87 new_ltEs21(x0, x1, ty_Bool) 31.62/12.87 new_ltEs20(x0, x1, ty_@0) 31.62/12.87 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.87 new_delFromFM0(EmptyFM, x0, x1, x2, x3) 31.62/12.87 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 31.62/12.87 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 31.62/12.87 new_esEs11(x0, x1, ty_Integer) 31.62/12.87 new_esEs24(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 31.62/12.87 new_ltEs9(EQ, EQ) 31.62/12.87 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 31.62/12.87 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 31.62/12.87 new_primEqInt(Neg(Zero), Neg(Zero)) 31.62/12.87 new_ltEs18(x0, x1, ty_Double) 31.62/12.87 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.87 new_esEs30(x0, x1, app(ty_[], x2)) 31.62/12.87 new_esEs27(x0, x1, ty_Double) 31.62/12.87 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 31.62/12.87 new_esEs28(x0, x1, ty_Float) 31.62/12.87 new_delFromFM0(Branch(Left(x0), x1, x2, x3, x4), Left(x5), x6, x7, x8) 31.62/12.87 new_ltEs4(Nothing, Nothing, x0) 31.62/12.87 new_compare24(x0, x1, True) 31.62/12.87 new_compare116(x0, x1, True, x2, x3) 31.62/12.87 new_sIZE_RATIO 31.62/12.87 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.87 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.87 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 31.62/12.87 new_primMulInt(Pos(x0), Neg(x1)) 31.62/12.87 new_primMulInt(Neg(x0), Pos(x1)) 31.62/12.87 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 31.62/12.87 new_esEs12(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_compare25(x0, x1, False) 31.62/12.87 new_primMulInt(Neg(x0), Neg(x1)) 31.62/12.87 new_delFromFM15(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 31.62/12.87 new_esEs5(Nothing, Nothing, x0) 31.62/12.87 new_esEs29(x0, x1, ty_@0) 31.62/12.87 new_esEs23(x0, x1, ty_Int) 31.62/12.87 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.87 new_lt13(x0, x1, ty_Double) 31.62/12.87 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 31.62/12.87 new_esEs28(x0, x1, app(ty_Ratio, x2)) 31.62/12.87 new_esEs24(x0, x1, ty_Ordering) 31.62/12.87 new_primEqNat0(Succ(x0), Succ(x1)) 31.62/12.87 new_lt13(x0, x1, app(ty_[], x2)) 31.62/12.87 new_compare26(x0, x1, True, x2, x3) 31.62/12.87 new_compare111(x0, x1, True, x2, x3) 31.62/12.87 new_ltEs17(True, True) 31.62/12.87 new_compare113(x0, x1, False, x2, x3) 31.62/12.87 new_esEs12(x0, x1, ty_@0) 31.62/12.87 new_esEs23(x0, x1, ty_Char) 31.62/12.87 new_esEs29(x0, x1, ty_Bool) 31.62/12.87 new_delFromFM15(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 31.62/12.87 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 31.62/12.87 new_esEs29(x0, x1, ty_Float) 31.62/12.87 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 31.62/12.87 new_ltEs21(x0, x1, ty_Double) 31.62/12.87 new_esEs23(x0, x1, app(ty_[], x2)) 31.62/12.87 new_esEs27(x0, x1, ty_Ordering) 31.62/12.87 new_ltEs4(Just(x0), Just(x1), ty_Float) 31.62/12.87 new_esEs28(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_primPlusInt2(x0, Pos(x1)) 31.62/12.87 new_primEqInt(Pos(Zero), Neg(Zero)) 31.62/12.87 new_primEqInt(Neg(Zero), Pos(Zero)) 31.62/12.87 new_ltEs21(x0, x1, ty_@0) 31.62/12.87 new_lt16(x0, x1, x2) 31.62/12.87 new_ltEs21(x0, x1, ty_Char) 31.62/12.87 new_esEs5(Just(x0), Just(x1), ty_Integer) 31.62/12.87 new_primPlusInt0(x0, Neg(x1)) 31.62/12.87 new_delFromFM03(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 31.62/12.87 new_compare26(Left(x0), Left(x1), False, x2, x3) 31.62/12.87 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 31.62/12.87 new_lt12(x0, x1, app(ty_[], x2)) 31.62/12.87 new_glueBal2GlueBal1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, True, x10, x11, x12) 31.62/12.87 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 31.62/12.87 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 31.62/12.87 new_lt4(x0, x1) 31.62/12.87 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 31.62/12.87 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 31.62/12.87 new_esEs12(x0, x1, ty_Float) 31.62/12.87 new_compare19(x0, x1) 31.62/12.87 new_compare6(x0, x1, ty_Float) 31.62/12.87 new_esEs26(x0, x1, ty_Char) 31.62/12.87 new_compare110(x0, x1, True, x2) 31.62/12.87 new_esEs26(x0, x1, ty_Double) 31.62/12.87 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) 31.62/12.87 new_esEs29(x0, x1, ty_Char) 31.62/12.87 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 31.62/12.87 new_ltEs21(x0, x1, ty_Int) 31.62/12.87 new_esEs10(x0, x1, app(ty_[], x2)) 31.62/12.87 new_compare15(@0, @0) 31.62/12.87 new_esEs10(x0, x1, ty_Integer) 31.62/12.87 new_mkBranch(x0, x1, x2, x3, x4, x5, x6) 31.62/12.87 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 31.62/12.87 new_esEs24(x0, x1, ty_Integer) 31.62/12.87 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.87 new_compare112(x0, x1, False) 31.62/12.87 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 31.62/12.87 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.87 new_esEs21(x0, x1, ty_Integer) 31.62/12.87 new_lt12(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_delFromFM23(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 31.62/12.87 new_ltEs19(x0, x1, app(ty_[], x2)) 31.62/12.87 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 31.62/12.87 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 31.62/12.87 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5, x6) 31.62/12.87 new_delFromFM0(Branch(Left(x0), x1, x2, x3, x4), Right(x5), x6, x7, x8) 31.62/12.87 new_ltEs9(GT, GT) 31.62/12.87 new_ltEs20(x0, x1, ty_Ordering) 31.62/12.87 new_esEs12(x0, x1, ty_Int) 31.62/12.87 new_ltEs4(Nothing, Just(x0), x1) 31.62/12.87 new_glueBal2Mid_elt200(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, Branch(x13, x14, x15, x16, x17), x18, x19, x20) 31.62/12.87 new_ltEs18(x0, x1, ty_Bool) 31.62/12.87 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_esEs25(x0, x1, ty_@0) 31.62/12.87 new_primMinusNat0(Succ(x0), Succ(x1)) 31.62/12.87 new_lt12(x0, x1, ty_Double) 31.62/12.87 new_delFromFM16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 31.62/12.87 new_compare7(x0, x1) 31.62/12.87 new_esEs11(x0, x1, ty_@0) 31.62/12.87 new_ltEs9(LT, EQ) 31.62/12.87 new_ltEs9(EQ, LT) 31.62/12.87 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 31.62/12.87 new_lt20(x0, x1, app(ty_[], x2)) 31.62/12.87 new_esEs26(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_ltEs20(x0, x1, ty_Float) 31.62/12.87 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 31.62/12.87 new_sizeFM0(EmptyFM, x0, x1, x2) 31.62/12.87 new_esEs27(x0, x1, ty_@0) 31.62/12.87 new_delFromFM25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 31.62/12.87 new_mkBalBranch6MkBalBranch3(x0, x1, EmptyFM, x2, True, x3, x4, x5) 31.62/12.87 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.87 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 31.62/12.87 new_deleteMin0(x0, x1, x2, Branch(x3, x4, x5, x6, x7), x8, x9, x10, x11) 31.62/12.87 new_esEs27(x0, x1, app(ty_[], x2)) 31.62/12.87 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.87 new_esEs17(Double(x0, x1), Double(x2, x3)) 31.62/12.87 new_esEs5(Just(x0), Just(x1), ty_@0) 31.62/12.87 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.87 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 31.62/12.87 new_esEs11(x0, x1, app(ty_[], x2)) 31.62/12.87 new_esEs19(False, True) 31.62/12.87 new_esEs19(True, False) 31.62/12.87 new_lt13(x0, x1, ty_Ordering) 31.62/12.87 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 31.62/12.87 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 31.62/12.87 new_ltEs19(x0, x1, ty_Integer) 31.62/12.87 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 31.62/12.87 new_deleteMax0(x0, x1, x2, x3, EmptyFM, x4, x5, x6) 31.62/12.87 new_esEs10(x0, x1, ty_Bool) 31.62/12.87 new_ltEs4(Just(x0), Just(x1), ty_Char) 31.62/12.87 new_primMinusNat0(Zero, Succ(x0)) 31.62/12.87 new_glueBal2Mid_key100(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, Branch(x14, x15, x16, x17, x18), x19, x20) 31.62/12.87 new_compare114(x0, x1, False) 31.62/12.87 new_esEs24(x0, x1, ty_Bool) 31.62/12.87 new_esEs30(x0, x1, ty_@0) 31.62/12.87 new_primPlusInt0(x0, Pos(x1)) 31.62/12.87 new_lt20(x0, x1, ty_@0) 31.62/12.87 new_compare6(x0, x1, ty_Bool) 31.62/12.87 new_ltEs4(Just(x0), Just(x1), ty_Int) 31.62/12.87 new_sizeFM(EmptyFM, x0, x1) 31.62/12.87 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.87 new_esEs8(GT, GT) 31.62/12.87 new_esEs12(x0, x1, ty_Char) 31.62/12.87 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.87 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 31.62/12.87 new_ltEs20(x0, x1, ty_Int) 31.62/12.87 new_esEs8(LT, EQ) 31.62/12.87 new_esEs8(EQ, LT) 31.62/12.87 new_esEs5(Just(x0), Nothing, x1) 31.62/12.87 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.87 new_esEs28(x0, x1, ty_Integer) 31.62/12.87 new_lt17(x0, x1, x2) 31.62/12.87 new_primCmpInt(Neg(Zero), Neg(Zero)) 31.62/12.87 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 31.62/12.87 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 31.62/12.87 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 31.62/12.87 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 31.62/12.87 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 31.62/12.87 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 31.62/12.87 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 31.62/12.87 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 31.62/12.87 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.87 new_primCompAux00(x0, EQ) 31.62/12.87 new_ltEs5(x0, x1) 31.62/12.87 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 31.62/12.87 new_primCmpNat0(Zero, Succ(x0)) 31.62/12.87 new_esEs8(LT, LT) 31.62/12.87 new_compare25(x0, x1, True) 31.62/12.87 new_primCmpInt(Pos(Zero), Neg(Zero)) 31.62/12.87 new_primCmpInt(Neg(Zero), Pos(Zero)) 31.62/12.87 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 31.62/12.88 new_esEs28(x0, x1, ty_Char) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 31.62/12.88 new_ltEs20(x0, x1, ty_Char) 31.62/12.88 new_primEqNat0(Succ(x0), Zero) 31.62/12.88 new_esEs28(x0, x1, ty_Int) 31.62/12.88 new_compare6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_ltEs17(True, False) 31.62/12.88 new_ltEs17(False, True) 31.62/12.88 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 31.62/12.88 new_compare110(x0, x1, False, x2) 31.62/12.88 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs30(x0, x1, ty_Double) 31.62/12.88 new_ltEs9(LT, LT) 31.62/12.88 new_primCompAux00(x0, LT) 31.62/12.88 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), ty_Bool) 31.62/12.88 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_sr0(Integer(x0), Integer(x1)) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs12(x0, x1, ty_Ordering) 31.62/12.88 new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 31.62/12.88 new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 31.62/12.88 new_ltEs20(x0, x1, ty_Integer) 31.62/12.88 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_ltEs19(x0, x1, ty_Char) 31.62/12.88 new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9, x10) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), ty_Integer) 31.62/12.88 new_delFromFM03(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 31.62/12.88 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 31.62/12.88 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 31.62/12.88 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 31.62/12.88 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 31.62/12.88 new_lt18(x0, x1, x2) 31.62/12.88 new_esEs11(x0, x1, ty_Double) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 31.62/12.88 new_esEs30(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_compare28(x0, x1, False, x2, x3) 31.62/12.88 new_compare113(x0, x1, True, x2, x3) 31.62/12.88 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_compare6(x0, x1, ty_Ordering) 31.62/12.88 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 31.62/12.88 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 31.62/12.88 new_esEs12(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_esEs24(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_esEs10(x0, x1, ty_Float) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 31.62/12.88 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 31.62/12.88 new_compare111(x0, x1, False, x2, x3) 31.62/12.88 new_primPlusInt(Neg(x0), x1, x2, x3, x4, x5) 31.62/12.88 new_ltEs18(x0, x1, ty_Float) 31.62/12.88 new_esEs28(x0, x1, ty_Bool) 31.62/12.88 new_esEs16(@0, @0) 31.62/12.88 new_pePe(False, x0) 31.62/12.88 new_ltEs19(x0, x1, ty_Bool) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 31.62/12.88 new_primMulInt(Pos(x0), Pos(x1)) 31.62/12.88 new_esEs25(x0, x1, ty_Double) 31.62/12.88 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5, x6) 31.62/12.88 new_esEs24(x0, x1, ty_Float) 31.62/12.88 new_compare0(:(x0, x1), [], x2) 31.62/12.88 new_ltEs13(x0, x1) 31.62/12.88 new_compare6(x0, x1, ty_Integer) 31.62/12.88 new_delFromFM24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 31.62/12.88 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_compare6(x0, x1, app(ty_[], x2)) 31.62/12.88 new_esEs9(x0, x1) 31.62/12.88 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_ltEs19(x0, x1, ty_Ordering) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 31.62/12.88 new_esEs25(x0, x1, ty_Float) 31.62/12.88 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs5(Just(x0), Just(x1), ty_Ordering) 31.62/12.88 new_compare6(x0, x1, ty_Char) 31.62/12.88 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 31.62/12.88 new_esEs28(x0, x1, ty_Double) 31.62/12.88 new_esEs26(x0, x1, app(ty_[], x2)) 31.62/12.88 new_esEs10(x0, x1, ty_Ordering) 31.62/12.88 new_delFromFM02(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 31.62/12.88 new_esEs10(x0, x1, ty_Int) 31.62/12.88 new_ltEs19(x0, x1, ty_Double) 31.62/12.88 new_delFromFM00(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 31.62/12.88 new_primMulNat0(Zero, Zero) 31.62/12.88 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_fsEs(x0) 31.62/12.88 new_compare6(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_delFromFM23(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 31.62/12.88 new_esEs21(x0, x1, ty_Int) 31.62/12.88 new_compare6(x0, x1, ty_Int) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 31.62/12.88 new_esEs10(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_lt20(x0, x1, ty_Float) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 31.62/12.88 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 31.62/12.88 new_lt12(x0, x1, ty_Integer) 31.62/12.88 new_compare26(Right(x0), Right(x1), False, x2, x3) 31.62/12.88 new_lt11(x0, x1) 31.62/12.88 new_glueBal2Mid_elt200(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, EmptyFM, x13, x14, x15) 31.62/12.88 new_primCmpNat0(Succ(x0), Succ(x1)) 31.62/12.88 new_compare10(x0, x1) 31.62/12.88 new_esEs28(x0, x1, ty_Ordering) 31.62/12.88 new_lt14(x0, x1) 31.62/12.88 new_esEs30(x0, x1, ty_Float) 31.62/12.88 new_compare112(x0, x1, True) 31.62/12.88 new_lt12(x0, x1, ty_@0) 31.62/12.88 new_esEs10(x0, x1, ty_Char) 31.62/12.88 new_glueBal2Mid_key200(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, EmptyFM, x13, x14, x15) 31.62/12.88 new_compare0([], [], x0) 31.62/12.88 new_ltEs19(x0, x1, ty_Int) 31.62/12.88 new_esEs10(x0, x1, ty_Double) 31.62/12.88 new_compare6(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_ltEs10(x0, x1, x2) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 31.62/12.88 new_lt13(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_deleteMax0(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10, x11) 31.62/12.88 new_delFromFM16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 31.62/12.88 new_glueBal(Branch(x0, x1, x2, x3, x4), Branch(x5, x6, x7, x8, x9), x10, x11, x12) 31.62/12.88 new_primPlusNat0(Succ(x0), x1) 31.62/12.88 new_compare27(x0, x1, False, x2, x3, x4) 31.62/12.88 new_esEs5(Just(x0), Just(x1), ty_Int) 31.62/12.88 new_gt(x0, x1) 31.62/12.88 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 31.62/12.88 new_esEs4(Left(x0), Right(x1), x2, x3) 31.62/12.88 new_esEs4(Right(x0), Left(x1), x2, x3) 31.62/12.88 new_esEs5(Just(x0), Just(x1), ty_Double) 31.62/12.88 new_esEs5(Just(x0), Just(x1), ty_Char) 31.62/12.88 new_esEs23(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_esEs26(x0, x1, ty_Float) 31.62/12.88 new_lt13(x0, x1, ty_Integer) 31.62/12.88 new_esEs13([], [], x0) 31.62/12.88 new_primPlusInt1(Pos(x0), x1, x2, x3, x4, x5, x6, x7) 31.62/12.88 new_lt13(x0, x1, ty_@0) 31.62/12.88 new_ltEs6(x0, x1) 31.62/12.88 new_ltEs18(x0, x1, app(ty_[], x2)) 31.62/12.88 new_primEqNat0(Zero, Succ(x0)) 31.62/12.88 new_not(True) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 31.62/12.88 new_esEs13(:(x0, x1), [], x2) 31.62/12.88 new_primPlusInt1(Neg(x0), x1, x2, x3, x4, x5, x6, x7) 31.62/12.88 new_lt13(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_ltEs7(x0, x1, x2) 31.62/12.88 new_compare6(x0, x1, ty_@0) 31.62/12.88 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8, x9) 31.62/12.88 new_esEs8(EQ, GT) 31.62/12.88 new_esEs8(GT, EQ) 31.62/12.88 new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6, x7) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 31.62/12.88 new_compare6(x0, x1, ty_Double) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 31.62/12.88 new_compare24(x0, x1, False) 31.62/12.88 new_compare16(Char(x0), Char(x1)) 31.62/12.88 new_esEs11(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 31.62/12.88 new_esEs13(:(x0, x1), :(x2, x3), x4) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 31.62/12.88 new_esEs15(Float(x0, x1), Float(x2, x3)) 31.62/12.88 new_mkBalBranch(x0, x1, x2, x3, x4, x5, x6) 31.62/12.88 new_ltEs21(x0, x1, ty_Float) 31.62/12.88 new_esEs24(x0, x1, app(ty_[], x2)) 31.62/12.88 new_ltEs14(x0, x1) 31.62/12.88 new_esEs11(x0, x1, ty_Ordering) 31.62/12.88 new_asAs(True, x0) 31.62/12.88 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 31.62/12.88 new_asAs(False, x0) 31.62/12.88 new_esEs25(x0, x1, app(ty_[], x2)) 31.62/12.88 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 31.62/12.88 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 31.62/12.88 new_compare13(x0, x1, x2, x3) 31.62/12.88 new_primMulNat0(Zero, Succ(x0)) 31.62/12.88 new_lt20(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 31.62/12.88 new_compare14(x0, x1, x2, x3, x4) 31.62/12.88 new_esEs5(Nothing, Just(x0), x1) 31.62/12.88 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_compare6(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 31.62/12.88 new_primPlusNat1(Zero, Succ(x0)) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 31.62/12.88 new_ltEs18(x0, x1, ty_Integer) 31.62/12.88 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 31.62/12.88 new_delFromFM02(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 31.62/12.88 new_compare8(x0, x1, x2, x3) 31.62/12.88 new_delFromFM14(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 31.62/12.88 new_esEs23(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_esEs23(x0, x1, ty_Float) 31.62/12.88 new_compare27(x0, x1, True, x2, x3, x4) 31.62/12.88 new_esEs29(x0, x1, ty_Double) 31.62/12.88 new_lt13(x0, x1, ty_Bool) 31.62/12.88 new_esEs27(x0, x1, ty_Integer) 31.62/12.88 new_lt20(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_ltEs4(Just(x0), Nothing, x1) 31.62/12.88 new_esEs19(True, True) 31.62/12.88 new_esEs29(x0, x1, ty_Int) 31.62/12.88 new_lt19(x0, x1) 31.62/12.88 new_esEs23(x0, x1, ty_@0) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 31.62/12.88 new_primCmpInt(Pos(Zero), Pos(Zero)) 31.62/12.88 new_delFromFM26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 31.62/12.88 new_lt7(x0, x1) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 31.62/12.88 new_compare114(x0, x1, True) 31.62/12.88 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_esEs25(x0, x1, ty_Bool) 31.62/12.88 new_lt13(x0, x1, ty_Char) 31.62/12.88 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_esEs30(x0, x1, ty_Integer) 31.62/12.88 new_esEs26(x0, x1, ty_Bool) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 31.62/12.88 new_ltEs20(x0, x1, ty_Double) 31.62/12.88 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_lt12(x0, x1, ty_Ordering) 31.62/12.88 new_delFromFM26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 31.62/12.88 new_primMulNat0(Succ(x0), Zero) 31.62/12.88 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_esEs28(x0, x1, ty_@0) 31.62/12.88 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 31.62/12.88 new_lt13(x0, x1, ty_Int) 31.62/12.88 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_esEs26(x0, x1, ty_@0) 31.62/12.88 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_lt12(x0, x1, ty_Int) 31.62/12.88 new_delFromFM01(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 31.62/12.88 new_esEs29(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 31.62/12.88 new_esEs8(LT, GT) 31.62/12.88 new_esEs8(GT, LT) 31.62/12.88 new_compare26(Right(x0), Left(x1), False, x2, x3) 31.62/12.88 new_compare26(Left(x0), Right(x1), False, x2, x3) 31.62/12.88 new_esEs5(Just(x0), Just(x1), ty_Bool) 31.62/12.88 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 31.62/12.88 new_glueBal2Mid_elt100(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, Branch(x14, x15, x16, x17, x18), x19, x20) 31.62/12.88 new_compare0(:(x0, x1), :(x2, x3), x4) 31.62/12.88 new_esEs27(x0, x1, ty_Char) 31.62/12.88 new_primPlusNat1(Succ(x0), Succ(x1)) 31.62/12.88 new_compare6(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_esEs26(x0, x1, ty_Integer) 31.62/12.88 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 31.62/12.88 new_primCmpNat0(Succ(x0), Zero) 31.62/12.88 new_delFromFM24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 31.62/12.88 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 31.62/12.88 new_esEs25(x0, x1, ty_Integer) 31.62/12.88 new_compare115(x0, x1, True, x2, x3, x4) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 31.62/12.88 new_ltEs15(x0, x1) 31.62/12.88 new_lt20(x0, x1, ty_Char) 31.62/12.88 new_esEs27(x0, x1, ty_Bool) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), ty_@0) 31.62/12.88 new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 31.62/12.88 new_lt12(x0, x1, ty_Float) 31.62/12.88 new_esEs11(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_compare23(x0, x1, False, x2) 31.62/12.88 new_esEs23(x0, x1, ty_Bool) 31.62/12.88 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_delFromFM14(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 31.62/12.88 new_esEs22(x0, x1, ty_Integer) 31.62/12.88 new_pePe(True, x0) 31.62/12.88 new_glueBal2GlueBal1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, False, x10, x11, x12) 31.62/12.88 new_ltEs19(x0, x1, ty_@0) 31.62/12.88 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_primPlusNat0(Zero, x0) 31.62/12.88 new_primMulNat0(Succ(x0), Succ(x1)) 31.62/12.88 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_compare28(x0, x1, True, x2, x3) 31.62/12.88 new_lt13(x0, x1, ty_Float) 31.62/12.88 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_esEs28(x0, x1, app(ty_[], x2)) 31.62/12.88 new_esEs12(x0, x1, ty_Double) 31.62/12.88 new_lt12(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_lt20(x0, x1, ty_Int) 31.62/12.88 new_ltEs9(GT, EQ) 31.62/12.88 new_compare116(x0, x1, False, x2, x3) 31.62/12.88 new_ltEs9(EQ, GT) 31.62/12.88 new_primEqNat0(Zero, Zero) 31.62/12.88 new_esEs11(x0, x1, ty_Int) 31.62/12.88 new_esEs24(x0, x1, ty_@0) 31.62/12.88 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13, x14) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 31.62/12.88 new_esEs20(:%(x0, x1), :%(x2, x3), x4) 31.62/12.88 new_not(False) 31.62/12.88 new_esEs24(x0, x1, ty_Double) 31.62/12.88 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 31.62/12.88 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13, x14) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 31.62/12.88 new_ltEs21(x0, x1, app(ty_[], x2)) 31.62/12.88 new_esEs25(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), ty_Double) 31.62/12.88 new_delFromFM0(Branch(Right(x0), x1, x2, x3, x4), Left(x5), x6, x7, x8) 31.62/12.88 new_ltEs17(False, False) 31.62/12.88 new_primCompAux0(x0, x1, x2, x3) 31.62/12.88 new_esEs23(x0, x1, ty_Integer) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 31.62/12.88 new_esEs13([], :(x0, x1), x2) 31.62/12.88 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_ltEs20(x0, x1, app(ty_[], x2)) 31.62/12.88 new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5, x6) 31.62/12.88 new_esEs27(x0, x1, ty_Int) 31.62/12.88 new_esEs22(x0, x1, ty_Int) 31.62/12.88 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5, x6) 31.62/12.88 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 31.62/12.88 new_lt20(x0, x1, ty_Integer) 31.62/12.88 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_mkBalBranch6MkBalBranch3(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9, x10) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 31.62/12.88 new_glueBal2Mid_key200(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, Branch(x13, x14, x15, x16, x17), x18, x19, x20) 31.62/12.88 new_delFromFM13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 31.62/12.88 new_esEs29(x0, x1, ty_Ordering) 31.62/12.88 new_lt20(x0, x1, ty_Bool) 31.62/12.88 new_ltEs18(x0, x1, ty_@0) 31.62/12.88 new_ltEs16(x0, x1) 31.62/12.88 new_compare11(Integer(x0), Integer(x1)) 31.62/12.88 new_lt12(x0, x1, ty_Char) 31.62/12.88 new_esEs25(x0, x1, ty_Int) 31.62/12.88 new_esEs11(x0, x1, ty_Char) 31.62/12.88 new_esEs27(x0, x1, ty_Float) 31.62/12.88 new_ltEs21(x0, x1, ty_Integer) 31.62/12.88 new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 31.62/12.88 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 31.62/12.88 new_deleteMin0(x0, x1, x2, EmptyFM, x3, x4, x5, x6) 31.62/12.88 new_esEs10(x0, x1, ty_@0) 31.62/12.88 new_esEs11(x0, x1, ty_Bool) 31.62/12.88 new_primPlusInt2(x0, Neg(x1)) 31.62/12.88 new_lt5(x0, x1, x2, x3) 31.62/12.88 new_esEs14(Integer(x0), Integer(x1)) 31.62/12.88 new_delFromFM00(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 31.62/12.88 new_lt9(x0, x1, x2, x3, x4) 31.62/12.88 new_glueBal2Mid_key100(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, EmptyFM, x14, x15) 31.62/12.88 new_ltEs8(Right(x0), Left(x1), x2, x3) 31.62/12.88 new_ltEs8(Left(x0), Right(x1), x2, x3) 31.62/12.88 new_esEs25(x0, x1, ty_Char) 31.62/12.88 new_esEs29(x0, x1, app(ty_[], x2)) 31.62/12.88 new_delFromFM0(Branch(Right(x0), x1, x2, x3, x4), Right(x5), x6, x7, x8) 31.62/12.88 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8, x9) 31.62/12.88 new_esEs29(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_ltEs21(x0, x1, ty_Ordering) 31.62/12.88 new_esEs23(x0, x1, ty_Ordering) 31.62/12.88 new_esEs27(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 31.62/12.88 new_primCmpNat0(Zero, Zero) 31.62/12.88 new_ltEs9(GT, LT) 31.62/12.88 new_ltEs9(LT, GT) 31.62/12.88 new_esEs30(x0, x1, ty_Bool) 31.62/12.88 new_primCompAux00(x0, GT) 31.62/12.88 new_glueBal(EmptyFM, x0, x1, x2, x3) 31.62/12.88 new_lt12(x0, x1, ty_Bool) 31.62/12.88 31.62/12.88 We have to consider all minimal (P,Q,R)-chains. 31.62/12.88 ---------------------------------------- 31.62/12.88 31.62/12.88 (45) QDPSizeChangeProof (EQUIVALENT) 31.62/12.88 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.62/12.88 31.62/12.88 From the DPs we obtained the following set of size-change graphs: 31.62/12.88 *new_foldl(xwv3, :(xwv40, xwv41), h, ba, bb) -> new_foldl(new_delFromFM0(xwv3, xwv40, h, ba, bb), xwv41, h, ba, bb) 31.62/12.88 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4, 5 >= 5 31.62/12.88 31.62/12.88 31.62/12.88 ---------------------------------------- 31.62/12.88 31.62/12.88 (46) 31.62/12.88 YES 31.62/12.88 31.62/12.88 ---------------------------------------- 31.62/12.88 31.62/12.88 (47) 31.62/12.88 Obligation: 31.62/12.88 Q DP problem: 31.62/12.88 The TRS P consists of the following rules: 31.62/12.88 31.62/12.88 new_glueBal2Mid_key20(xwv353, xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv363, xwv364, xwv365, Branch(xwv3660, xwv3661, xwv3662, xwv3663, xwv3664), xwv367, h, ba) -> new_glueBal2Mid_key20(xwv353, xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv3660, xwv3661, xwv3662, xwv3663, xwv3664, h, ba) 31.62/12.88 31.62/12.88 R is empty. 31.62/12.88 Q is empty. 31.62/12.88 We have to consider all minimal (P,Q,R)-chains. 31.62/12.88 ---------------------------------------- 31.62/12.88 31.62/12.88 (48) QDPSizeChangeProof (EQUIVALENT) 31.62/12.88 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.62/12.88 31.62/12.88 From the DPs we obtained the following set of size-change graphs: 31.62/12.88 *new_glueBal2Mid_key20(xwv353, xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv363, xwv364, xwv365, Branch(xwv3660, xwv3661, xwv3662, xwv3663, xwv3664), xwv367, h, ba) -> new_glueBal2Mid_key20(xwv353, xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv3660, xwv3661, xwv3662, xwv3663, xwv3664, h, ba) 31.62/12.88 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 31.62/12.88 31.62/12.88 31.62/12.88 ---------------------------------------- 31.62/12.88 31.62/12.88 (49) 31.62/12.88 YES 31.62/12.88 31.62/12.88 ---------------------------------------- 31.62/12.88 31.62/12.88 (50) 31.62/12.88 Obligation: 31.62/12.88 Q DP problem: 31.62/12.88 The TRS P consists of the following rules: 31.62/12.88 31.62/12.88 new_deleteMin(xwv170, xwv171, xwv172, Branch(xwv1730, xwv1731, xwv1732, xwv1733, xwv1734), xwv174, h, ba, bb) -> new_deleteMin(xwv1730, xwv1731, xwv1732, xwv1733, xwv1734, h, ba, bb) 31.62/12.88 31.62/12.88 R is empty. 31.62/12.88 Q is empty. 31.62/12.88 We have to consider all minimal (P,Q,R)-chains. 31.62/12.88 ---------------------------------------- 31.62/12.88 31.62/12.88 (51) QDPSizeChangeProof (EQUIVALENT) 31.62/12.88 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.62/12.88 31.62/12.88 From the DPs we obtained the following set of size-change graphs: 31.62/12.88 *new_deleteMin(xwv170, xwv171, xwv172, Branch(xwv1730, xwv1731, xwv1732, xwv1733, xwv1734), xwv174, h, ba, bb) -> new_deleteMin(xwv1730, xwv1731, xwv1732, xwv1733, xwv1734, h, ba, bb) 31.62/12.88 The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 6 >= 6, 7 >= 7, 8 >= 8 31.62/12.88 31.62/12.88 31.62/12.88 ---------------------------------------- 31.62/12.88 31.62/12.88 (52) 31.62/12.88 YES 31.62/12.88 31.62/12.88 ---------------------------------------- 31.62/12.88 31.62/12.88 (53) 31.62/12.88 Obligation: 31.62/12.88 Q DP problem: 31.62/12.88 The TRS P consists of the following rules: 31.62/12.88 31.62/12.88 new_delFromFM11(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, bc, bd, be) -> new_delFromFM(xwv33, Right(xwv400), bc, bd, be) 31.62/12.88 new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, bc, bd, be) -> new_delFromFM(xwv34, Right(xwv400), bc, bd, be) 31.62/12.88 new_delFromFM22(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, False, bf, bg, bh) -> new_delFromFM12(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, new_esEs8(new_compare26(Right(xwv33), Right(xwv28), new_esEs4(Right(xwv33), Right(xwv28), bf, bg), bf, bg), LT), bf, bg, bh) 31.62/12.88 new_delFromFM(Branch(Left(xwv300), xwv31, xwv32, xwv33, xwv34), Left(xwv400), bc, bd, be) -> new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Left(xwv400), Left(xwv300), new_esEs29(xwv400, xwv300, bc), bc, bd), GT), bc, bd, be) 31.62/12.88 new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, bc, bd, be) -> new_delFromFM(xwv33, Left(xwv400), bc, bd, be) 31.62/12.88 new_delFromFM12(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, bf, bg, bh) -> new_delFromFM(xwv31, Right(xwv33), bf, bg, bh) 31.62/12.88 new_delFromFM20(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, bc, bd, be) -> new_delFromFM(xwv34, Left(xwv400), bc, bd, be) 31.62/12.88 new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, h, ba, bb) -> new_delFromFM(xwv17, Left(xwv18), h, ba, bb) 31.62/12.88 new_delFromFM(Branch(Left(xwv300), xwv31, xwv32, xwv33, xwv34), Right(xwv400), bc, bd, be) -> new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Right(xwv400), Left(xwv300), False, bc, bd), GT), bc, bd, be) 31.62/12.88 new_delFromFM1(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, h, ba, bb) -> new_delFromFM(xwv16, Left(xwv18), h, ba, bb) 31.62/12.88 new_delFromFM(Branch(Right(xwv300), xwv31, xwv32, xwv33, xwv34), Left(xwv400), bc, bd, be) -> new_delFromFM20(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Left(xwv400), Right(xwv300), False, bc, bd), GT), bc, bd, be) 31.62/12.88 new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, False, bc, bd, be) -> new_delFromFM11(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Right(xwv400), Left(xwv300), new_esEs4(Right(xwv400), Left(xwv300), bc, bd), bc, bd), LT), bc, bd, be) 31.62/12.88 new_delFromFM20(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, False, bc, bd, be) -> new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Left(xwv400), Right(xwv300), new_esEs4(Left(xwv400), Right(xwv300), bc, bd), bc, bd), LT), bc, bd, be) 31.62/12.88 new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, h, ba, bb) -> new_delFromFM1(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs8(new_compare26(Left(xwv18), Left(xwv13), new_esEs4(Left(xwv18), Left(xwv13), h, ba), h, ba), LT), h, ba, bb) 31.62/12.88 new_delFromFM(Branch(Right(xwv300), xwv31, xwv32, xwv33, xwv34), Right(xwv400), bc, bd, be) -> new_delFromFM22(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Right(xwv400), Right(xwv300), new_esEs30(xwv400, xwv300, bd), bc, bd), GT), bc, bd, be) 31.62/12.88 new_delFromFM22(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, bf, bg, bh) -> new_delFromFM(xwv32, Right(xwv33), bf, bg, bh) 31.62/12.88 31.62/12.88 The TRS R consists of the following rules: 31.62/12.88 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(ty_Maybe, bcd)) -> new_ltEs4(xwv43000, xwv44000, bcd) 31.62/12.88 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 31.62/12.88 new_primCmpInt(Neg(Succ(xwv4300)), Pos(xwv440)) -> LT 31.62/12.88 new_esEs27(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.88 new_compare17(Double(xwv43000, Pos(xwv430010)), Double(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.62/12.88 new_pePe(True, xwv181) -> True 31.62/12.88 new_esEs30(xwv400, xwv300, ty_Ordering) -> new_esEs8(xwv400, xwv300) 31.62/12.88 new_compare6(xwv43000, xwv44000, ty_Float) -> new_compare18(xwv43000, xwv44000) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.88 new_esEs12(xwv4000, xwv3000, app(ty_Maybe, hh)) -> new_esEs5(xwv4000, xwv3000, hh) 31.62/12.88 new_esEs19(False, True) -> False 31.62/12.88 new_esEs19(True, False) -> False 31.62/12.88 new_lt13(xwv43001, xwv44001, app(app(ty_Either, cea), ceb)) -> new_lt15(xwv43001, xwv44001, cea, ceb) 31.62/12.88 new_esEs27(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.88 new_compare23(xwv43000, xwv44000, True, de) -> EQ 31.62/12.88 new_ltEs20(xwv43002, xwv44002, app(app(ty_@2, cfh), cga)) -> new_ltEs11(xwv43002, xwv44002, cfh, cga) 31.62/12.88 new_esEs25(xwv43000, xwv44000, app(ty_[], cdc)) -> new_esEs13(xwv43000, xwv44000, cdc) 31.62/12.88 new_esEs4(Left(xwv4000), Right(xwv3000), cah, cba) -> False 31.62/12.88 new_esEs4(Right(xwv4000), Left(xwv3000), cah, cba) -> False 31.62/12.88 new_lt18(xwv43000, xwv44000, dfb) -> new_esEs8(new_compare0(xwv43000, xwv44000, dfb), LT) 31.62/12.88 new_esEs15(Float(xwv4000, xwv4001), Float(xwv3000, xwv3001)) -> new_esEs9(new_sr(xwv4000, xwv3001), new_sr(xwv4001, xwv3000)) 31.62/12.88 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 31.62/12.88 new_ltEs19(xwv4300, xwv4400, ty_Ordering) -> new_ltEs9(xwv4300, xwv4400) 31.62/12.88 new_compare110(xwv43000, xwv44000, False, de) -> GT 31.62/12.88 new_primCmpInt(Pos(Zero), Neg(Succ(xwv4400))) -> GT 31.62/12.88 new_esEs9(xwv400, xwv300) -> new_primEqInt(xwv400, xwv300) 31.62/12.88 new_compare26(xwv430, xwv440, True, bdc, bdd) -> EQ 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), app(ty_Maybe, bba), bae) -> new_ltEs4(xwv43000, xwv44000, bba) 31.62/12.88 new_esEs24(xwv43001, xwv44001, ty_Ordering) -> new_esEs8(xwv43001, xwv44001) 31.62/12.88 new_esEs28(xwv43000, xwv44000, ty_Char) -> new_esEs18(xwv43000, xwv44000) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, ty_Integer) -> new_ltEs5(xwv4300, xwv4400) 31.62/12.88 new_primCmpInt(Neg(Succ(xwv4300)), Neg(xwv440)) -> new_primCmpNat0(xwv440, Succ(xwv4300)) 31.62/12.88 new_compare113(xwv160, xwv161, False, cgf, cgg) -> GT 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Bool, cba) -> new_esEs19(xwv4000, xwv3000) 31.62/12.88 new_ltEs4(Nothing, Nothing, bde) -> True 31.62/12.88 new_compare111(xwv167, xwv168, True, dh, ea) -> LT 31.62/12.88 new_ltEs20(xwv43002, xwv44002, ty_Ordering) -> new_ltEs9(xwv43002, xwv44002) 31.62/12.88 new_ltEs4(Just(xwv43000), Nothing, bde) -> False 31.62/12.88 new_ltEs9(LT, LT) -> True 31.62/12.88 new_compare6(xwv43000, xwv44000, ty_Char) -> new_compare16(xwv43000, xwv44000) 31.62/12.88 new_lt12(xwv43000, xwv44000, ty_Float) -> new_lt19(xwv43000, xwv44000) 31.62/12.88 new_ltEs14(xwv4300, xwv4400) -> new_fsEs(new_compare16(xwv4300, xwv4400)) 31.62/12.88 new_esEs23(xwv4000, xwv3000, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.88 new_compare27(xwv43000, xwv44000, False, bfe, bff, bfg) -> new_compare115(xwv43000, xwv44000, new_ltEs12(xwv43000, xwv44000, bfe, bff, bfg), bfe, bff, bfg) 31.62/12.88 new_lt17(xwv43000, xwv44000, de) -> new_esEs8(new_compare12(xwv43000, xwv44000, de), LT) 31.62/12.88 new_esEs11(xwv4001, xwv3001, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs7(xwv4001, xwv3001, fh, ga, gb) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), app(app(ty_@2, bbc), bbd), bae) -> new_ltEs11(xwv43000, xwv44000, bbc, bbd) 31.62/12.88 new_esEs12(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.88 new_esEs10(xwv4002, xwv3002, app(ty_[], eh)) -> new_esEs13(xwv4002, xwv3002, eh) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Char) -> new_ltEs14(xwv43000, xwv44000) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), app(ty_Maybe, bhh)) -> new_ltEs4(xwv43000, xwv44000, bhh) 31.62/12.88 new_compare26(Right(xwv4300), Left(xwv4400), False, bdc, bdd) -> GT 31.62/12.88 new_lt20(xwv43000, xwv44000, ty_Bool) -> new_lt4(xwv43000, xwv44000) 31.62/12.88 new_compare6(xwv43000, xwv44000, app(ty_Maybe, ce)) -> new_compare12(xwv43000, xwv44000, ce) 31.62/12.88 new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False 31.62/12.88 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 31.62/12.88 new_esEs8(GT, GT) -> True 31.62/12.88 new_ltEs21(xwv43001, xwv44001, ty_@0) -> new_ltEs13(xwv43001, xwv44001) 31.62/12.88 new_esEs24(xwv43001, xwv44001, ty_Double) -> new_esEs17(xwv43001, xwv44001) 31.62/12.88 new_fsEs(xwv171) -> new_not(new_esEs8(xwv171, GT)) 31.62/12.88 new_esEs23(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Double, bae) -> new_ltEs15(xwv43000, xwv44000) 31.62/12.88 new_esEs8(EQ, EQ) -> True 31.62/12.88 new_lt20(xwv43000, xwv44000, ty_Int) -> new_lt14(xwv43000, xwv44000) 31.62/12.88 new_primEqNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 31.62/12.88 new_lt12(xwv43000, xwv44000, ty_Integer) -> new_lt7(xwv43000, xwv44000) 31.62/12.88 new_esEs26(xwv4001, xwv3001, ty_Integer) -> new_esEs14(xwv4001, xwv3001) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_@0) -> new_ltEs13(xwv43000, xwv44000) 31.62/12.88 new_lt12(xwv43000, xwv44000, ty_Char) -> new_lt10(xwv43000, xwv44000) 31.62/12.88 new_esEs25(xwv43000, xwv44000, ty_Float) -> new_esEs15(xwv43000, xwv44000) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, app(ty_[], ca)) -> new_ltEs10(xwv4300, xwv4400, ca) 31.62/12.88 new_ltEs20(xwv43002, xwv44002, app(app(ty_Either, cfc), cfd)) -> new_ltEs8(xwv43002, xwv44002, cfc, cfd) 31.62/12.88 new_lt12(xwv43000, xwv44000, ty_@0) -> new_lt6(xwv43000, xwv44000) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, app(app(ty_@2, beh), bfa)) -> new_ltEs11(xwv4300, xwv4400, beh, bfa) 31.62/12.88 new_compare6(xwv43000, xwv44000, app(ty_[], cf)) -> new_compare0(xwv43000, xwv44000, cf) 31.62/12.88 new_compare12(xwv43000, xwv44000, de) -> new_compare23(xwv43000, xwv44000, new_esEs5(xwv43000, xwv44000, de), de) 31.62/12.88 new_not(True) -> False 31.62/12.88 new_lt13(xwv43001, xwv44001, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_lt9(xwv43001, xwv44001, ceh, cfa, cfb) 31.62/12.88 new_primCompAux00(xwv186, LT) -> LT 31.62/12.88 new_primCmpNat0(Zero, Zero) -> EQ 31.62/12.88 new_ltEs20(xwv43002, xwv44002, ty_Integer) -> new_ltEs5(xwv43002, xwv44002) 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), ty_@0, cba) -> new_esEs16(xwv4000, xwv3000) 31.62/12.88 new_compare115(xwv43000, xwv44000, True, bfe, bff, bfg) -> LT 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Char, cba) -> new_esEs18(xwv4000, xwv3000) 31.62/12.88 new_lt13(xwv43001, xwv44001, ty_Integer) -> new_lt7(xwv43001, xwv44001) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, app(ty_Ratio, bad)) -> new_ltEs7(xwv4300, xwv4400, bad) 31.62/12.88 new_esEs10(xwv4002, xwv3002, app(app(ty_@2, fd), ff)) -> new_esEs6(xwv4002, xwv3002, fd, ff) 31.62/12.88 new_compare23(xwv43000, xwv44000, False, de) -> new_compare110(xwv43000, xwv44000, new_ltEs4(xwv43000, xwv44000, de), de) 31.62/12.88 new_esEs23(xwv4000, xwv3000, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.88 new_esEs7(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), eb, ec, ed) -> new_asAs(new_esEs12(xwv4000, xwv3000, eb), new_asAs(new_esEs11(xwv4001, xwv3001, ec), new_esEs10(xwv4002, xwv3002, ed))) 31.62/12.88 new_esEs29(xwv400, xwv300, app(ty_[], cag)) -> new_esEs13(xwv400, xwv300, cag) 31.62/12.88 new_esEs25(xwv43000, xwv44000, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_esEs7(xwv43000, xwv44000, cdf, cdg, cdh) 31.62/12.88 new_esEs30(xwv400, xwv300, ty_Double) -> new_esEs17(xwv400, xwv300) 31.62/12.88 new_esEs10(xwv4002, xwv3002, ty_Ordering) -> new_esEs8(xwv4002, xwv3002) 31.62/12.88 new_esEs10(xwv4002, xwv3002, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs7(xwv4002, xwv3002, ee, ef, eg) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), app(app(ty_Either, baf), bag), bae) -> new_ltEs8(xwv43000, xwv44000, baf, bag) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Integer) -> new_ltEs5(xwv43000, xwv44000) 31.62/12.88 new_lt12(xwv43000, xwv44000, app(ty_[], cdc)) -> new_lt18(xwv43000, xwv44000, cdc) 31.62/12.88 new_lt14(xwv430, xwv440) -> new_esEs8(new_compare7(xwv430, xwv440), LT) 31.62/12.88 new_esEs27(xwv4000, xwv3000, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.88 new_primEqNat0(Succ(xwv40000), Zero) -> False 31.62/12.88 new_primEqNat0(Zero, Succ(xwv30000)) -> False 31.62/12.88 new_esEs18(Char(xwv4000), Char(xwv3000)) -> new_primEqNat0(xwv4000, xwv3000) 31.62/12.88 new_ltEs10(xwv4300, xwv4400, ca) -> new_fsEs(new_compare0(xwv4300, xwv4400, ca)) 31.62/12.88 new_compare112(xwv43000, xwv44000, False) -> GT 31.62/12.88 new_ltEs20(xwv43002, xwv44002, ty_Int) -> new_ltEs6(xwv43002, xwv44002) 31.62/12.88 new_esEs13([], [], cag) -> True 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs7(xwv4000, xwv3000, dab, dac, dad) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, ty_Int) -> new_ltEs6(xwv4300, xwv4400) 31.62/12.88 new_esEs23(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.88 new_esEs11(xwv4001, xwv3001, app(app(ty_@2, gg), gh)) -> new_esEs6(xwv4001, xwv3001, gg, gh) 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Int, cba) -> new_esEs9(xwv4000, xwv3000) 31.62/12.88 new_primCompAux00(xwv186, GT) -> GT 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Float) -> new_ltEs16(xwv43000, xwv44000) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.88 new_esEs29(xwv400, xwv300, ty_Double) -> new_esEs17(xwv400, xwv300) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, ty_Char) -> new_ltEs14(xwv43001, xwv44001) 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), app(app(ty_@2, chg), chh), cba) -> new_esEs6(xwv4000, xwv3000, chg, chh) 31.62/12.88 new_esEs12(xwv4000, xwv3000, app(app(ty_Either, hf), hg)) -> new_esEs4(xwv4000, xwv3000, hf, hg) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, ty_Float) -> new_ltEs16(xwv43001, xwv44001) 31.62/12.88 new_esEs17(Double(xwv4000, xwv4001), Double(xwv3000, xwv3001)) -> new_esEs9(new_sr(xwv4000, xwv3001), new_sr(xwv4001, xwv3000)) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, ty_Int) -> new_ltEs6(xwv43001, xwv44001) 31.62/12.88 new_compare19(xwv43000, xwv44000) -> new_compare25(xwv43000, xwv44000, new_esEs19(xwv43000, xwv44000)) 31.62/12.88 new_lt15(xwv43000, xwv44000, bhb, bhc) -> new_esEs8(new_compare8(xwv43000, xwv44000, bhb, bhc), LT) 31.62/12.88 new_compare116(xwv43000, xwv44000, True, df, dg) -> LT 31.62/12.88 new_primCmpInt(Pos(Succ(xwv4300)), Neg(xwv440)) -> GT 31.62/12.88 new_esEs19(False, False) -> True 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Bool, bae) -> new_ltEs17(xwv43000, xwv44000) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, ty_Ordering) -> new_ltEs9(xwv43001, xwv44001) 31.62/12.88 new_esEs28(xwv43000, xwv44000, ty_Bool) -> new_esEs19(xwv43000, xwv44000) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, ty_Double) -> new_ltEs15(xwv4300, xwv4400) 31.62/12.88 new_esEs25(xwv43000, xwv44000, app(ty_Ratio, cda)) -> new_esEs20(xwv43000, xwv44000, cda) 31.62/12.88 new_esEs28(xwv43000, xwv44000, ty_Double) -> new_esEs17(xwv43000, xwv44000) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(ty_[], dae)) -> new_esEs13(xwv4000, xwv3000, dae) 31.62/12.88 new_compare18(Float(xwv43000, Pos(xwv430010)), Float(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.62/12.88 new_compare18(Float(xwv43000, Neg(xwv430010)), Float(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.62/12.88 new_ltEs20(xwv43002, xwv44002, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_ltEs12(xwv43002, xwv44002, cgb, cgc, cgd) 31.62/12.88 new_esEs29(xwv400, xwv300, ty_Float) -> new_esEs15(xwv400, xwv300) 31.62/12.88 new_esEs23(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, app(app(ty_@2, dfh), dga)) -> new_ltEs11(xwv43001, xwv44001, dfh, dga) 31.62/12.88 new_ltEs13(xwv4300, xwv4400) -> new_fsEs(new_compare15(xwv4300, xwv4400)) 31.62/12.88 new_esEs12(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.88 new_primPlusNat1(Succ(xwv33200), Succ(xwv13100)) -> Succ(Succ(new_primPlusNat1(xwv33200, xwv13100))) 31.62/12.88 new_compare15(@0, @0) -> EQ 31.62/12.88 new_esEs11(xwv4001, xwv3001, app(ty_[], gc)) -> new_esEs13(xwv4001, xwv3001, gc) 31.62/12.88 new_esEs6(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), cbc, cbd) -> new_asAs(new_esEs27(xwv4000, xwv3000, cbc), new_esEs26(xwv4001, xwv3001, cbd)) 31.62/12.88 new_primCmpNat0(Zero, Succ(xwv4400)) -> LT 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), app(ty_[], chc), cba) -> new_esEs13(xwv4000, xwv3000, chc) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_@0) -> new_ltEs13(xwv43000, xwv44000) 31.62/12.88 new_esEs26(xwv4001, xwv3001, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs7(xwv4001, xwv3001, dbd, dbe, dbf) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_@2, deg), deh)) -> new_esEs6(xwv4000, xwv3000, deg, deh) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs12(xwv4300, xwv4400, bfb, bfc, bfd) 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Double, cba) -> new_esEs17(xwv4000, xwv3000) 31.62/12.88 new_esEs24(xwv43001, xwv44001, app(ty_[], cee)) -> new_esEs13(xwv43001, xwv44001, cee) 31.62/12.88 new_primCmpNat0(Succ(xwv4300), Zero) -> GT 31.62/12.88 new_ltEs21(xwv43001, xwv44001, app(app(ty_Either, dfc), dfd)) -> new_ltEs8(xwv43001, xwv44001, dfc, dfd) 31.62/12.88 new_esEs30(xwv400, xwv300, ty_Float) -> new_esEs15(xwv400, xwv300) 31.62/12.88 new_pePe(False, xwv181) -> xwv181 31.62/12.88 new_esEs10(xwv4002, xwv3002, ty_Double) -> new_esEs17(xwv4002, xwv3002) 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Ordering, cba) -> new_esEs8(xwv4000, xwv3000) 31.62/12.88 new_esEs11(xwv4001, xwv3001, ty_Int) -> new_esEs9(xwv4001, xwv3001) 31.62/12.88 new_esEs25(xwv43000, xwv44000, ty_Integer) -> new_esEs14(xwv43000, xwv44000) 31.62/12.88 new_lt20(xwv43000, xwv44000, app(app(app(ty_@3, bfe), bff), bfg)) -> new_lt9(xwv43000, xwv44000, bfe, bff, bfg) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, ty_@0) -> new_ltEs13(xwv4300, xwv4400) 31.62/12.88 new_lt20(xwv43000, xwv44000, app(ty_Ratio, cge)) -> new_lt16(xwv43000, xwv44000, cge) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Ordering, bae) -> new_ltEs9(xwv43000, xwv44000) 31.62/12.88 new_lt13(xwv43001, xwv44001, app(ty_Maybe, ced)) -> new_lt17(xwv43001, xwv44001, ced) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, ty_Bool) -> new_ltEs17(xwv4300, xwv4400) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(ty_Maybe, dah)) -> new_esEs5(xwv4000, xwv3000, dah) 31.62/12.88 new_compare26(Left(xwv4300), Right(xwv4400), False, bdc, bdd) -> LT 31.62/12.88 new_esEs8(LT, EQ) -> False 31.62/12.88 new_esEs8(EQ, LT) -> False 31.62/12.88 new_esEs27(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.88 new_esEs10(xwv4002, xwv3002, ty_Char) -> new_esEs18(xwv4002, xwv3002) 31.62/12.88 new_lt13(xwv43001, xwv44001, ty_Bool) -> new_lt4(xwv43001, xwv44001) 31.62/12.88 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 31.62/12.88 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 31.62/12.88 new_esEs28(xwv43000, xwv44000, ty_@0) -> new_esEs16(xwv43000, xwv44000) 31.62/12.88 new_compare28(xwv43000, xwv44000, False, df, dg) -> new_compare116(xwv43000, xwv44000, new_ltEs11(xwv43000, xwv44000, df, dg), df, dg) 31.62/12.88 new_esEs11(xwv4001, xwv3001, app(ty_Maybe, gf)) -> new_esEs5(xwv4001, xwv3001, gf) 31.62/12.88 new_esEs24(xwv43001, xwv44001, app(app(ty_@2, cef), ceg)) -> new_esEs6(xwv43001, xwv44001, cef, ceg) 31.62/12.88 new_lt12(xwv43000, xwv44000, app(app(ty_Either, ccg), cch)) -> new_lt15(xwv43000, xwv44000, ccg, cch) 31.62/12.88 new_compare114(xwv43000, xwv44000, True) -> LT 31.62/12.88 new_compare25(xwv43000, xwv44000, False) -> new_compare112(xwv43000, xwv44000, new_ltEs17(xwv43000, xwv44000)) 31.62/12.88 new_ltEs20(xwv43002, xwv44002, ty_@0) -> new_ltEs13(xwv43002, xwv44002) 31.62/12.88 new_esEs26(xwv4001, xwv3001, app(ty_[], dbg)) -> new_esEs13(xwv4001, xwv3001, dbg) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Float) -> new_ltEs16(xwv43000, xwv44000) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Int) -> new_ltEs6(xwv43000, xwv44000) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs12(xwv4300, xwv4400, bdh, bea, beb) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, ty_Ordering) -> new_ltEs9(xwv4300, xwv4400) 31.62/12.88 new_esEs5(Nothing, Nothing, cbb) -> True 31.62/12.88 new_compare6(xwv43000, xwv44000, ty_Int) -> new_compare7(xwv43000, xwv44000) 31.62/12.88 new_esEs12(xwv4000, xwv3000, app(ty_Ratio, bac)) -> new_esEs20(xwv4000, xwv3000, bac) 31.62/12.88 new_esEs29(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 31.62/12.88 new_compare17(Double(xwv43000, Neg(xwv430010)), Double(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.62/12.88 new_compare14(xwv43000, xwv44000, bfe, bff, bfg) -> new_compare27(xwv43000, xwv44000, new_esEs7(xwv43000, xwv44000, bfe, bff, bfg), bfe, bff, bfg) 31.62/12.88 new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 31.62/12.88 new_esEs25(xwv43000, xwv44000, ty_Ordering) -> new_esEs8(xwv43000, xwv44000) 31.62/12.88 new_esEs5(Nothing, Just(xwv3000), cbb) -> False 31.62/12.88 new_esEs5(Just(xwv4000), Nothing, cbb) -> False 31.62/12.88 new_primCmpInt(Neg(Zero), Pos(Succ(xwv4400))) -> LT 31.62/12.88 new_ltEs19(xwv4300, xwv4400, ty_Char) -> new_ltEs14(xwv4300, xwv4400) 31.62/12.88 new_esEs30(xwv400, xwv300, ty_Bool) -> new_esEs19(xwv400, xwv300) 31.62/12.88 new_primMulInt(Pos(xwv40010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 31.62/12.88 new_compare6(xwv43000, xwv44000, ty_Ordering) -> new_compare10(xwv43000, xwv44000) 31.62/12.88 new_esEs23(xwv4000, xwv3000, app(app(ty_Either, cca), ccb)) -> new_esEs4(xwv4000, xwv3000, cca, ccb) 31.62/12.88 new_ltEs20(xwv43002, xwv44002, ty_Double) -> new_ltEs15(xwv43002, xwv44002) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.88 new_compare10(xwv43000, xwv44000) -> new_compare24(xwv43000, xwv44000, new_esEs8(xwv43000, xwv44000)) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Double) -> new_ltEs15(xwv43000, xwv44000) 31.62/12.88 new_esEs13(:(xwv4000, xwv4001), [], cag) -> False 31.62/12.88 new_esEs13([], :(xwv3000, xwv3001), cag) -> False 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Bool) -> new_ltEs17(xwv43000, xwv44000) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.88 new_esEs26(xwv4001, xwv3001, app(app(ty_@2, dcc), dcd)) -> new_esEs6(xwv4001, xwv3001, dcc, dcd) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(app(ty_@3, ddh), dea), deb)) -> new_esEs7(xwv4000, xwv3000, ddh, dea, deb) 31.62/12.88 new_esEs11(xwv4001, xwv3001, app(app(ty_Either, gd), ge)) -> new_esEs4(xwv4001, xwv3001, gd, ge) 31.62/12.88 new_ltEs8(Right(xwv43000), Left(xwv44000), bbh, bae) -> False 31.62/12.88 new_lt11(xwv43000, xwv44000) -> new_esEs8(new_compare10(xwv43000, xwv44000), LT) 31.62/12.88 new_ltEs11(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), bdf, bdg) -> new_pePe(new_lt20(xwv43000, xwv44000, bdf), new_asAs(new_esEs28(xwv43000, xwv44000, bdf), new_ltEs21(xwv43001, xwv44001, bdg))) 31.62/12.88 new_esEs12(xwv4000, xwv3000, app(app(ty_@2, baa), bab)) -> new_esEs6(xwv4000, xwv3000, baa, bab) 31.62/12.88 new_primMulNat0(Succ(xwv400100), Zero) -> Zero 31.62/12.88 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 31.62/12.88 new_esEs29(xwv400, xwv300, ty_Integer) -> new_esEs14(xwv400, xwv300) 31.62/12.88 new_lt20(xwv43000, xwv44000, ty_Double) -> new_lt8(xwv43000, xwv44000) 31.62/12.88 new_primPlusNat0(Zero, xwv300000) -> Succ(xwv300000) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Integer, bae) -> new_ltEs5(xwv43000, xwv44000) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.88 new_ltEs9(GT, EQ) -> False 31.62/12.88 new_ltEs15(xwv4300, xwv4400) -> new_fsEs(new_compare17(xwv4300, xwv4400)) 31.62/12.88 new_esEs11(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 31.62/12.88 new_esEs29(xwv400, xwv300, ty_Bool) -> new_esEs19(xwv400, xwv300) 31.62/12.88 new_esEs23(xwv4000, xwv3000, app(ty_Maybe, ccc)) -> new_esEs5(xwv4000, xwv3000, ccc) 31.62/12.88 new_esEs10(xwv4002, xwv3002, app(ty_Ratio, fg)) -> new_esEs20(xwv4002, xwv3002, fg) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(ty_Ratio, dbc)) -> new_esEs20(xwv4000, xwv3000, dbc) 31.62/12.88 new_lt13(xwv43001, xwv44001, app(ty_[], cee)) -> new_lt18(xwv43001, xwv44001, cee) 31.62/12.88 new_compare27(xwv43000, xwv44000, True, bfe, bff, bfg) -> EQ 31.62/12.88 new_esEs10(xwv4002, xwv3002, app(app(ty_Either, fa), fb)) -> new_esEs4(xwv4002, xwv3002, fa, fb) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(app(ty_Either, bca), bcb)) -> new_ltEs8(xwv43000, xwv44000, bca, bcb) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), app(ty_Ratio, bhg)) -> new_ltEs7(xwv43000, xwv44000, bhg) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Char, bae) -> new_ltEs14(xwv43000, xwv44000) 31.62/12.88 new_esEs22(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.88 new_lt6(xwv43000, xwv44000) -> new_esEs8(new_compare15(xwv43000, xwv44000), LT) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, app(app(ty_Either, bec), bed)) -> new_ltEs8(xwv4300, xwv4400, bec, bed) 31.62/12.88 new_compare7(xwv43, xwv44) -> new_primCmpInt(xwv43, xwv44) 31.62/12.88 new_esEs8(LT, LT) -> True 31.62/12.88 new_ltEs18(xwv4300, xwv4400, app(app(ty_@2, bdf), bdg)) -> new_ltEs11(xwv4300, xwv4400, bdf, bdg) 31.62/12.88 new_esEs10(xwv4002, xwv3002, ty_Float) -> new_esEs15(xwv4002, xwv3002) 31.62/12.88 new_esEs30(xwv400, xwv300, ty_@0) -> new_esEs16(xwv400, xwv300) 31.62/12.88 new_primPlusNat1(Succ(xwv33200), Zero) -> Succ(xwv33200) 31.62/12.88 new_primPlusNat1(Zero, Succ(xwv13100)) -> Succ(xwv13100) 31.62/12.88 new_esEs24(xwv43001, xwv44001, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs7(xwv43001, xwv44001, ceh, cfa, cfb) 31.62/12.88 new_esEs20(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), bhd) -> new_asAs(new_esEs22(xwv4000, xwv3000, bhd), new_esEs21(xwv4001, xwv3001, bhd)) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, ty_Bool) -> new_ltEs17(xwv43001, xwv44001) 31.62/12.88 new_esEs11(xwv4001, xwv3001, app(ty_Ratio, ha)) -> new_esEs20(xwv4001, xwv3001, ha) 31.62/12.88 new_lt20(xwv43000, xwv44000, ty_Char) -> new_lt10(xwv43000, xwv44000) 31.62/12.88 new_compare116(xwv43000, xwv44000, False, df, dg) -> GT 31.62/12.88 new_esEs30(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 31.62/12.88 new_compare9(:%(xwv43000, xwv43001), :%(xwv44000, xwv44001), ty_Int) -> new_compare7(new_sr(xwv43000, xwv44001), new_sr(xwv44000, xwv43001)) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(app(ty_@2, bcf), bcg)) -> new_ltEs11(xwv43000, xwv44000, bcf, bcg) 31.62/12.88 new_ltEs9(GT, GT) -> True 31.62/12.88 new_esEs11(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Int) -> new_ltEs6(xwv43000, xwv44000) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Ratio, dfa)) -> new_esEs20(xwv4000, xwv3000, dfa) 31.62/12.88 new_esEs23(xwv4000, xwv3000, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs7(xwv4000, xwv3000, cbe, cbf, cbg) 31.62/12.88 new_lt20(xwv43000, xwv44000, ty_Ordering) -> new_lt11(xwv43000, xwv44000) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_Either, ded), dee)) -> new_esEs4(xwv4000, xwv3000, ded, dee) 31.62/12.88 new_esEs28(xwv43000, xwv44000, ty_Integer) -> new_esEs14(xwv43000, xwv44000) 31.62/12.88 new_primMulInt(Neg(xwv40010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 31.62/12.88 new_primCmpInt(Pos(Zero), Pos(Succ(xwv4400))) -> new_primCmpNat0(Zero, Succ(xwv4400)) 31.62/12.88 new_esEs10(xwv4002, xwv3002, app(ty_Maybe, fc)) -> new_esEs5(xwv4002, xwv3002, fc) 31.62/12.88 new_ltEs20(xwv43002, xwv44002, ty_Bool) -> new_ltEs17(xwv43002, xwv44002) 31.62/12.88 new_esEs25(xwv43000, xwv44000, app(app(ty_@2, cdd), cde)) -> new_esEs6(xwv43000, xwv44000, cdd, cde) 31.62/12.88 new_esEs12(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.88 new_lt12(xwv43000, xwv44000, ty_Bool) -> new_lt4(xwv43000, xwv44000) 31.62/12.88 new_esEs12(xwv4000, xwv3000, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs7(xwv4000, xwv3000, hb, hc, hd) 31.62/12.88 new_compare114(xwv43000, xwv44000, False) -> GT 31.62/12.88 new_esEs21(xwv4001, xwv3001, ty_Int) -> new_esEs9(xwv4001, xwv3001) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Maybe, def)) -> new_esEs5(xwv4000, xwv3000, def) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, ty_Char) -> new_ltEs14(xwv4300, xwv4400) 31.62/12.88 new_esEs23(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, app(app(ty_Either, bbh), bae)) -> new_ltEs8(xwv4300, xwv4400, bbh, bae) 31.62/12.88 new_lt20(xwv43000, xwv44000, ty_Float) -> new_lt19(xwv43000, xwv44000) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), app(ty_Ratio, bah), bae) -> new_ltEs7(xwv43000, xwv44000, bah) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, ty_Double) -> new_ltEs15(xwv43001, xwv44001) 31.62/12.88 new_compare112(xwv43000, xwv44000, True) -> LT 31.62/12.88 new_compare113(xwv160, xwv161, True, cgf, cgg) -> LT 31.62/12.88 new_compare6(xwv43000, xwv44000, app(ty_Ratio, cd)) -> new_compare9(xwv43000, xwv44000, cd) 31.62/12.88 new_esEs10(xwv4002, xwv3002, ty_@0) -> new_esEs16(xwv4002, xwv3002) 31.62/12.88 new_ltEs6(xwv4300, xwv4400) -> new_fsEs(new_compare7(xwv4300, xwv4400)) 31.62/12.88 new_primMulInt(Pos(xwv40010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 31.62/12.88 new_primMulInt(Neg(xwv40010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, app(ty_Ratio, dfe)) -> new_ltEs7(xwv43001, xwv44001, dfe) 31.62/12.88 new_esEs26(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 31.62/12.88 new_esEs23(xwv4000, xwv3000, app(app(ty_@2, ccd), cce)) -> new_esEs6(xwv4000, xwv3000, ccd, cce) 31.62/12.88 new_esEs11(xwv4001, xwv3001, ty_Char) -> new_esEs18(xwv4001, xwv3001) 31.62/12.88 new_compare6(xwv43000, xwv44000, app(app(ty_Either, cb), cc)) -> new_compare8(xwv43000, xwv44000, cb, cc) 31.62/12.88 new_esEs23(xwv4000, xwv3000, app(ty_[], cbh)) -> new_esEs13(xwv4000, xwv3000, cbh) 31.62/12.88 new_lt10(xwv43000, xwv44000) -> new_esEs8(new_compare16(xwv43000, xwv44000), LT) 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Float, cba) -> new_esEs15(xwv4000, xwv3000) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(ty_[], bce)) -> new_ltEs10(xwv43000, xwv44000, bce) 31.62/12.88 new_lt20(xwv43000, xwv44000, ty_@0) -> new_lt6(xwv43000, xwv44000) 31.62/12.88 new_lt8(xwv43000, xwv44000) -> new_esEs8(new_compare17(xwv43000, xwv44000), LT) 31.62/12.88 new_esEs11(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 31.62/12.88 new_sr0(Integer(xwv430000), Integer(xwv440010)) -> Integer(new_primMulInt(xwv430000, xwv440010)) 31.62/12.88 new_esEs24(xwv43001, xwv44001, ty_Integer) -> new_esEs14(xwv43001, xwv44001) 31.62/12.88 new_lt16(xwv43000, xwv44000, cge) -> new_esEs8(new_compare9(xwv43000, xwv44000, cge), LT) 31.62/12.88 new_esEs29(xwv400, xwv300, app(ty_Maybe, cbb)) -> new_esEs5(xwv400, xwv300, cbb) 31.62/12.88 new_esEs10(xwv4002, xwv3002, ty_Int) -> new_esEs9(xwv4002, xwv3002) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, ty_Bool) -> new_ltEs17(xwv4300, xwv4400) 31.62/12.88 new_compare18(Float(xwv43000, Pos(xwv430010)), Float(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.62/12.88 new_lt19(xwv43000, xwv44000) -> new_esEs8(new_compare18(xwv43000, xwv44000), LT) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), app(ty_[], caa)) -> new_ltEs10(xwv43000, xwv44000, caa) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, ty_@0) -> new_ltEs13(xwv4300, xwv4400) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_@0, bae) -> new_ltEs13(xwv43000, xwv44000) 31.62/12.88 new_esEs23(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.88 new_esEs28(xwv43000, xwv44000, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs7(xwv43000, xwv44000, bfe, bff, bfg) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.88 new_compare6(xwv43000, xwv44000, app(app(ty_@2, cg), da)) -> new_compare13(xwv43000, xwv44000, cg, da) 31.62/12.88 new_lt12(xwv43000, xwv44000, ty_Int) -> new_lt14(xwv43000, xwv44000) 31.62/12.88 new_esEs29(xwv400, xwv300, ty_@0) -> new_esEs16(xwv400, xwv300) 31.62/12.88 new_esEs25(xwv43000, xwv44000, ty_Int) -> new_esEs9(xwv43000, xwv44000) 31.62/12.88 new_compare0([], :(xwv44000, xwv44001), ca) -> LT 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.88 new_asAs(True, xwv95) -> xwv95 31.62/12.88 new_lt12(xwv43000, xwv44000, app(ty_Maybe, cdb)) -> new_lt17(xwv43000, xwv44000, cdb) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.88 new_esEs30(xwv400, xwv300, ty_Integer) -> new_esEs14(xwv400, xwv300) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs12(xwv43000, xwv44000, bch, bda, bdb) 31.62/12.88 new_esEs27(xwv4000, xwv3000, app(ty_[], dda)) -> new_esEs13(xwv4000, xwv3000, dda) 31.62/12.88 new_ltEs16(xwv4300, xwv4400) -> new_fsEs(new_compare18(xwv4300, xwv4400)) 31.62/12.88 new_ltEs4(Nothing, Just(xwv44000), bde) -> True 31.62/12.88 new_compare17(Double(xwv43000, Pos(xwv430010)), Double(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.62/12.88 new_compare17(Double(xwv43000, Neg(xwv430010)), Double(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.62/12.88 new_esEs23(xwv4000, xwv3000, app(ty_Ratio, ccf)) -> new_esEs20(xwv4000, xwv3000, ccf) 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), app(app(app(ty_@3, cgh), cha), chb), cba) -> new_esEs7(xwv4000, xwv3000, cgh, cha, chb) 31.62/12.88 new_esEs16(@0, @0) -> True 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), app(app(ty_Either, chd), che), cba) -> new_esEs4(xwv4000, xwv3000, chd, che) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(app(ty_@2, dba), dbb)) -> new_esEs6(xwv4000, xwv3000, dba, dbb) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, app(ty_Maybe, bde)) -> new_ltEs4(xwv4300, xwv4400, bde) 31.62/12.88 new_esEs26(xwv4001, xwv3001, ty_Char) -> new_esEs18(xwv4001, xwv3001) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, ty_Double) -> new_ltEs15(xwv4300, xwv4400) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.88 new_compare111(xwv167, xwv168, False, dh, ea) -> GT 31.62/12.88 new_ltEs20(xwv43002, xwv44002, ty_Char) -> new_ltEs14(xwv43002, xwv44002) 31.62/12.88 new_ltEs20(xwv43002, xwv44002, ty_Float) -> new_ltEs16(xwv43002, xwv44002) 31.62/12.88 new_compare6(xwv43000, xwv44000, ty_Integer) -> new_compare11(xwv43000, xwv44000) 31.62/12.88 new_primCmpInt(Pos(Succ(xwv4300)), Pos(xwv440)) -> new_primCmpNat0(Succ(xwv4300), xwv440) 31.62/12.88 new_lt5(xwv43000, xwv44000, df, dg) -> new_esEs8(new_compare13(xwv43000, xwv44000, df, dg), LT) 31.62/12.88 new_primCompAux00(xwv186, EQ) -> xwv186 31.62/12.88 new_compare0([], [], ca) -> EQ 31.62/12.88 new_sr(xwv4001, xwv3000) -> new_primMulInt(xwv4001, xwv3000) 31.62/12.88 new_lt7(xwv43000, xwv44000) -> new_esEs8(new_compare11(xwv43000, xwv44000), LT) 31.62/12.88 new_esEs27(xwv4000, xwv3000, app(app(ty_@2, dde), ddf)) -> new_esEs6(xwv4000, xwv3000, dde, ddf) 31.62/12.88 new_esEs28(xwv43000, xwv44000, ty_Float) -> new_esEs15(xwv43000, xwv44000) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), app(app(ty_Either, bhe), bhf)) -> new_ltEs8(xwv43000, xwv44000, bhe, bhf) 31.62/12.88 new_lt4(xwv43000, xwv44000) -> new_esEs8(new_compare19(xwv43000, xwv44000), LT) 31.62/12.88 new_primMulNat0(Zero, Zero) -> Zero 31.62/12.88 new_esEs12(xwv4000, xwv3000, app(ty_[], he)) -> new_esEs13(xwv4000, xwv3000, he) 31.62/12.88 new_compare6(xwv43000, xwv44000, app(app(app(ty_@3, db), dc), dd)) -> new_compare14(xwv43000, xwv44000, db, dc, dd) 31.62/12.88 new_ltEs5(xwv4300, xwv4400) -> new_fsEs(new_compare11(xwv4300, xwv4400)) 31.62/12.88 new_esEs10(xwv4002, xwv3002, ty_Bool) -> new_esEs19(xwv4002, xwv3002) 31.62/12.88 new_esEs27(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, app(ty_Ratio, bee)) -> new_ltEs7(xwv4300, xwv4400, bee) 31.62/12.88 new_esEs24(xwv43001, xwv44001, app(ty_Maybe, ced)) -> new_esEs5(xwv43001, xwv44001, ced) 31.62/12.88 new_esEs30(xwv400, xwv300, app(ty_Maybe, bgf)) -> new_esEs5(xwv400, xwv300, bgf) 31.62/12.88 new_esEs12(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.88 new_esEs30(xwv400, xwv300, ty_Int) -> new_esEs9(xwv400, xwv300) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), app(app(ty_@2, cab), cac)) -> new_ltEs11(xwv43000, xwv44000, cab, cac) 31.62/12.88 new_compare11(Integer(xwv43000), Integer(xwv44000)) -> new_primCmpInt(xwv43000, xwv44000) 31.62/12.88 new_compare115(xwv43000, xwv44000, False, bfe, bff, bfg) -> GT 31.62/12.88 new_compare24(xwv43000, xwv44000, False) -> new_compare114(xwv43000, xwv44000, new_ltEs9(xwv43000, xwv44000)) 31.62/12.88 new_esEs25(xwv43000, xwv44000, app(app(ty_Either, ccg), cch)) -> new_esEs4(xwv43000, xwv44000, ccg, cch) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.88 new_esEs25(xwv43000, xwv44000, app(ty_Maybe, cdb)) -> new_esEs5(xwv43000, xwv44000, cdb) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(app(ty_Either, daf), dag)) -> new_esEs4(xwv4000, xwv3000, daf, dag) 31.62/12.88 new_lt20(xwv43000, xwv44000, ty_Integer) -> new_lt7(xwv43000, xwv44000) 31.62/12.88 new_esEs28(xwv43000, xwv44000, app(app(ty_@2, df), dg)) -> new_esEs6(xwv43000, xwv44000, df, dg) 31.62/12.88 new_ltEs9(GT, LT) -> False 31.62/12.88 new_esEs24(xwv43001, xwv44001, app(ty_Ratio, cec)) -> new_esEs20(xwv43001, xwv44001, cec) 31.62/12.88 new_ltEs17(False, False) -> True 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.88 new_compare18(Float(xwv43000, Neg(xwv430010)), Float(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.62/12.88 new_esEs12(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.88 new_esEs29(xwv400, xwv300, app(app(ty_Either, cah), cba)) -> new_esEs4(xwv400, xwv300, cah, cba) 31.62/12.88 new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False 31.62/12.88 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 31.62/12.88 new_esEs24(xwv43001, xwv44001, ty_Int) -> new_esEs9(xwv43001, xwv44001) 31.62/12.88 new_lt13(xwv43001, xwv44001, app(app(ty_@2, cef), ceg)) -> new_lt5(xwv43001, xwv44001, cef, ceg) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Double) -> new_ltEs15(xwv43000, xwv44000) 31.62/12.88 new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 31.62/12.88 new_ltEs9(EQ, GT) -> True 31.62/12.88 new_compare24(xwv43000, xwv44000, True) -> EQ 31.62/12.88 new_esEs11(xwv4001, xwv3001, ty_Bool) -> new_esEs19(xwv4001, xwv3001) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, ty_Integer) -> new_ltEs5(xwv4300, xwv4400) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Bool) -> new_ltEs17(xwv43000, xwv44000) 31.62/12.88 new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> False 31.62/12.88 new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> False 31.62/12.88 new_esEs26(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 31.62/12.88 new_compare26(Right(xwv4300), Right(xwv4400), False, bdc, bdd) -> new_compare111(xwv4300, xwv4400, new_ltEs19(xwv4300, xwv4400, bdd), bdc, bdd) 31.62/12.88 new_ltEs20(xwv43002, xwv44002, app(ty_Ratio, cfe)) -> new_ltEs7(xwv43002, xwv44002, cfe) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), app(ty_[], bbb), bae) -> new_ltEs10(xwv43000, xwv44000, bbb) 31.62/12.88 new_primCmpInt(Neg(Zero), Neg(Succ(xwv4400))) -> new_primCmpNat0(Succ(xwv4400), Zero) 31.62/12.88 new_esEs28(xwv43000, xwv44000, app(ty_[], dfb)) -> new_esEs13(xwv43000, xwv44000, dfb) 31.62/12.88 new_esEs30(xwv400, xwv300, app(app(ty_Either, bgd), bge)) -> new_esEs4(xwv400, xwv300, bgd, bge) 31.62/12.88 new_esEs29(xwv400, xwv300, ty_Int) -> new_esEs9(xwv400, xwv300) 31.62/12.88 new_esEs24(xwv43001, xwv44001, app(app(ty_Either, cea), ceb)) -> new_esEs4(xwv43001, xwv44001, cea, ceb) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.88 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 31.62/12.88 new_compare6(xwv43000, xwv44000, ty_Double) -> new_compare17(xwv43000, xwv44000) 31.62/12.88 new_ltEs17(True, False) -> False 31.62/12.88 new_compare8(xwv43000, xwv44000, bhb, bhc) -> new_compare26(xwv43000, xwv44000, new_esEs4(xwv43000, xwv44000, bhb, bhc), bhb, bhc) 31.62/12.88 new_esEs27(xwv4000, xwv3000, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.88 new_esEs28(xwv43000, xwv44000, app(ty_Maybe, de)) -> new_esEs5(xwv43000, xwv44000, de) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_[], dec)) -> new_esEs13(xwv4000, xwv3000, dec) 31.62/12.88 new_lt12(xwv43000, xwv44000, app(ty_Ratio, cda)) -> new_lt16(xwv43000, xwv44000, cda) 31.62/12.88 new_ltEs17(False, True) -> True 31.62/12.88 new_lt13(xwv43001, xwv44001, ty_Float) -> new_lt19(xwv43001, xwv44001) 31.62/12.88 new_primCompAux0(xwv43000, xwv44000, xwv182, ca) -> new_primCompAux00(xwv182, new_compare6(xwv43000, xwv44000, ca)) 31.62/12.88 new_esEs24(xwv43001, xwv44001, ty_Float) -> new_esEs15(xwv43001, xwv44001) 31.62/12.88 new_esEs29(xwv400, xwv300, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs7(xwv400, xwv300, eb, ec, ed) 31.62/12.88 new_esEs30(xwv400, xwv300, app(ty_Ratio, bha)) -> new_esEs20(xwv400, xwv300, bha) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.88 new_esEs10(xwv4002, xwv3002, ty_Integer) -> new_esEs14(xwv4002, xwv3002) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Integer) -> new_ltEs5(xwv43000, xwv44000) 31.62/12.88 new_esEs11(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 31.62/12.88 new_ltEs8(Left(xwv43000), Right(xwv44000), bbh, bae) -> True 31.62/12.88 new_lt13(xwv43001, xwv44001, ty_@0) -> new_lt6(xwv43001, xwv44001) 31.62/12.88 new_not(False) -> True 31.62/12.88 new_esEs28(xwv43000, xwv44000, ty_Int) -> new_esEs9(xwv43000, xwv44000) 31.62/12.88 new_esEs30(xwv400, xwv300, app(app(ty_@2, bgg), bgh)) -> new_esEs6(xwv400, xwv300, bgg, bgh) 31.62/12.88 new_compare0(:(xwv43000, xwv43001), [], ca) -> GT 31.62/12.88 new_esEs8(LT, GT) -> False 31.62/12.88 new_esEs8(GT, LT) -> False 31.62/12.88 new_lt20(xwv43000, xwv44000, app(app(ty_@2, df), dg)) -> new_lt5(xwv43000, xwv44000, df, dg) 31.62/12.88 new_esEs25(xwv43000, xwv44000, ty_Double) -> new_esEs17(xwv43000, xwv44000) 31.62/12.88 new_esEs30(xwv400, xwv300, app(app(app(ty_@3, bfh), bga), bgb)) -> new_esEs7(xwv400, xwv300, bfh, bga, bgb) 31.62/12.88 new_esEs24(xwv43001, xwv44001, ty_@0) -> new_esEs16(xwv43001, xwv44001) 31.62/12.88 new_esEs12(xwv4000, xwv3000, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.88 new_compare25(xwv43000, xwv44000, True) -> EQ 31.62/12.88 new_esEs23(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, ty_Int) -> new_ltEs6(xwv4300, xwv4400) 31.62/12.88 new_esEs27(xwv4000, xwv3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs7(xwv4000, xwv3000, dcf, dcg, dch) 31.62/12.88 new_primPlusNat0(Succ(xwv1400), xwv300000) -> Succ(Succ(new_primPlusNat1(xwv1400, xwv300000))) 31.62/12.88 new_esEs26(xwv4001, xwv3001, app(ty_Maybe, dcb)) -> new_esEs5(xwv4001, xwv3001, dcb) 31.62/12.88 new_esEs13(:(xwv4000, xwv4001), :(xwv3000, xwv3001), cag) -> new_asAs(new_esEs23(xwv4000, xwv3000, cag), new_esEs13(xwv4001, xwv3001, cag)) 31.62/12.88 new_esEs24(xwv43001, xwv44001, ty_Bool) -> new_esEs19(xwv43001, xwv44001) 31.62/12.88 new_ltEs9(LT, EQ) -> True 31.62/12.88 new_esEs29(xwv400, xwv300, app(ty_Ratio, bhd)) -> new_esEs20(xwv400, xwv300, bhd) 31.62/12.88 new_esEs29(xwv400, xwv300, app(app(ty_@2, cbc), cbd)) -> new_esEs6(xwv400, xwv300, cbc, cbd) 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), app(ty_Maybe, chf), cba) -> new_esEs5(xwv4000, xwv3000, chf) 31.62/12.88 new_esEs30(xwv400, xwv300, app(ty_[], bgc)) -> new_esEs13(xwv400, xwv300, bgc) 31.62/12.88 new_ltEs7(xwv4300, xwv4400, bad) -> new_fsEs(new_compare9(xwv4300, xwv4400, bad)) 31.62/12.88 new_compare16(Char(xwv43000), Char(xwv44000)) -> new_primCmpNat0(xwv43000, xwv44000) 31.62/12.88 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 31.62/12.88 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 31.62/12.88 new_compare0(:(xwv43000, xwv43001), :(xwv44000, xwv44001), ca) -> new_primCompAux0(xwv43000, xwv44000, new_compare0(xwv43001, xwv44001, ca), ca) 31.62/12.88 new_primPlusNat1(Zero, Zero) -> Zero 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Float, bae) -> new_ltEs16(xwv43000, xwv44000) 31.62/12.88 new_lt20(xwv43000, xwv44000, app(app(ty_Either, bhb), bhc)) -> new_lt15(xwv43000, xwv44000, bhb, bhc) 31.62/12.88 new_compare6(xwv43000, xwv44000, ty_Bool) -> new_compare19(xwv43000, xwv44000) 31.62/12.88 new_lt12(xwv43000, xwv44000, app(app(ty_@2, cdd), cde)) -> new_lt5(xwv43000, xwv44000, cdd, cde) 31.62/12.88 new_esEs26(xwv4001, xwv3001, app(ty_Ratio, dce)) -> new_esEs20(xwv4001, xwv3001, dce) 31.62/12.88 new_lt12(xwv43000, xwv44000, ty_Ordering) -> new_lt11(xwv43000, xwv44000) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_ltEs12(xwv43001, xwv44001, dgb, dgc, dgd) 31.62/12.88 new_esEs28(xwv43000, xwv44000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xwv43000, xwv44000, bhb, bhc) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Ordering) -> new_ltEs9(xwv43000, xwv44000) 31.62/12.88 new_esEs26(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 31.62/12.88 new_esEs12(xwv4000, xwv3000, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.88 new_ltEs9(LT, GT) -> True 31.62/12.88 new_esEs27(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.88 new_esEs12(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.88 new_compare6(xwv43000, xwv44000, ty_@0) -> new_compare15(xwv43000, xwv44000) 31.62/12.88 new_esEs26(xwv4001, xwv3001, ty_Bool) -> new_esEs19(xwv4001, xwv3001) 31.62/12.88 new_esEs26(xwv4001, xwv3001, app(app(ty_Either, dbh), dca)) -> new_esEs4(xwv4001, xwv3001, dbh, dca) 31.62/12.88 new_ltEs20(xwv43002, xwv44002, app(ty_[], cfg)) -> new_ltEs10(xwv43002, xwv44002, cfg) 31.62/12.88 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 31.62/12.88 new_lt20(xwv43000, xwv44000, app(ty_[], dfb)) -> new_lt18(xwv43000, xwv44000, dfb) 31.62/12.88 new_primMulNat0(Succ(xwv400100), Succ(xwv300000)) -> new_primPlusNat0(new_primMulNat0(xwv400100, Succ(xwv300000)), xwv300000) 31.62/12.88 new_esEs27(xwv4000, xwv3000, app(ty_Ratio, ddg)) -> new_esEs20(xwv4000, xwv3000, ddg) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Int, bae) -> new_ltEs6(xwv43000, xwv44000) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, app(ty_[], dfg)) -> new_ltEs10(xwv43001, xwv44001, dfg) 31.62/12.88 new_esEs21(xwv4001, xwv3001, ty_Integer) -> new_esEs14(xwv4001, xwv3001) 31.62/12.88 new_primCmpNat0(Succ(xwv4300), Succ(xwv4400)) -> new_primCmpNat0(xwv4300, xwv4400) 31.62/12.88 new_compare9(:%(xwv43000, xwv43001), :%(xwv44000, xwv44001), ty_Integer) -> new_compare11(new_sr0(xwv43000, xwv44001), new_sr0(xwv44000, xwv43001)) 31.62/12.88 new_lt13(xwv43001, xwv44001, ty_Double) -> new_lt8(xwv43001, xwv44001) 31.62/12.88 new_lt13(xwv43001, xwv44001, ty_Char) -> new_lt10(xwv43001, xwv44001) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, ty_Integer) -> new_ltEs5(xwv43001, xwv44001) 31.62/12.88 new_esEs28(xwv43000, xwv44000, ty_Ordering) -> new_esEs8(xwv43000, xwv44000) 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Integer, cba) -> new_esEs14(xwv4000, xwv3000) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, ty_Float) -> new_ltEs16(xwv4300, xwv4400) 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), app(ty_Ratio, daa), cba) -> new_esEs20(xwv4000, xwv3000, daa) 31.62/12.88 new_ltEs12(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bdh, bea, beb) -> new_pePe(new_lt12(xwv43000, xwv44000, bdh), new_asAs(new_esEs25(xwv43000, xwv44000, bdh), new_pePe(new_lt13(xwv43001, xwv44001, bea), new_asAs(new_esEs24(xwv43001, xwv44001, bea), new_ltEs20(xwv43002, xwv44002, beb))))) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, app(ty_Maybe, dff)) -> new_ltEs4(xwv43001, xwv44001, dff) 31.62/12.88 new_esEs24(xwv43001, xwv44001, ty_Char) -> new_esEs18(xwv43001, xwv44001) 31.62/12.88 new_esEs27(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.88 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 31.62/12.88 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 31.62/12.88 new_esEs28(xwv43000, xwv44000, app(ty_Ratio, cge)) -> new_esEs20(xwv43000, xwv44000, cge) 31.62/12.88 new_ltEs9(EQ, LT) -> False 31.62/12.88 new_compare26(Left(xwv4300), Left(xwv4400), False, bdc, bdd) -> new_compare113(xwv4300, xwv4400, new_ltEs18(xwv4300, xwv4400, bdc), bdc, bdd) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, app(ty_Maybe, bef)) -> new_ltEs4(xwv4300, xwv4400, bef) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Char) -> new_ltEs14(xwv43000, xwv44000) 31.62/12.88 new_primEqNat0(Zero, Zero) -> True 31.62/12.88 new_lt12(xwv43000, xwv44000, ty_Double) -> new_lt8(xwv43000, xwv44000) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, ty_Float) -> new_ltEs16(xwv4300, xwv4400) 31.62/12.88 new_esEs29(xwv400, xwv300, ty_Ordering) -> new_esEs8(xwv400, xwv300) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(ty_Ratio, bcc)) -> new_ltEs7(xwv43000, xwv44000, bcc) 31.62/12.88 new_compare110(xwv43000, xwv44000, True, de) -> LT 31.62/12.88 new_esEs26(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 31.62/12.88 new_esEs25(xwv43000, xwv44000, ty_Char) -> new_esEs18(xwv43000, xwv44000) 31.62/12.88 new_esEs11(xwv4001, xwv3001, ty_Integer) -> new_esEs14(xwv4001, xwv3001) 31.62/12.88 new_ltEs17(True, True) -> True 31.62/12.88 new_lt13(xwv43001, xwv44001, ty_Ordering) -> new_lt11(xwv43001, xwv44001) 31.62/12.88 new_asAs(False, xwv95) -> False 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), app(app(app(ty_@3, bbe), bbf), bbg), bae) -> new_ltEs12(xwv43000, xwv44000, bbe, bbf, bbg) 31.62/12.88 new_lt12(xwv43000, xwv44000, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_lt9(xwv43000, xwv44000, cdf, cdg, cdh) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs12(xwv43000, xwv44000, cad, cae, caf) 31.62/12.88 new_lt20(xwv43000, xwv44000, app(ty_Maybe, de)) -> new_lt17(xwv43000, xwv44000, de) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, app(ty_[], beg)) -> new_ltEs10(xwv4300, xwv4400, beg) 31.62/12.88 new_lt13(xwv43001, xwv44001, app(ty_Ratio, cec)) -> new_lt16(xwv43001, xwv44001, cec) 31.62/12.88 new_esEs26(xwv4001, xwv3001, ty_Int) -> new_esEs9(xwv4001, xwv3001) 31.62/12.88 new_esEs27(xwv4000, xwv3000, app(ty_Maybe, ddd)) -> new_esEs5(xwv4000, xwv3000, ddd) 31.62/12.88 new_esEs25(xwv43000, xwv44000, ty_@0) -> new_esEs16(xwv43000, xwv44000) 31.62/12.88 new_compare28(xwv43000, xwv44000, True, df, dg) -> EQ 31.62/12.88 new_esEs22(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.88 new_esEs14(Integer(xwv4000), Integer(xwv3000)) -> new_primEqInt(xwv4000, xwv3000) 31.62/12.88 new_lt13(xwv43001, xwv44001, ty_Int) -> new_lt14(xwv43001, xwv44001) 31.62/12.88 new_ltEs20(xwv43002, xwv44002, app(ty_Maybe, cff)) -> new_ltEs4(xwv43002, xwv44002, cff) 31.62/12.88 new_esEs27(xwv4000, xwv3000, app(app(ty_Either, ddb), ddc)) -> new_esEs4(xwv4000, xwv3000, ddb, ddc) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.88 new_esEs8(EQ, GT) -> False 31.62/12.88 new_esEs8(GT, EQ) -> False 31.62/12.88 new_lt9(xwv43000, xwv44000, bfe, bff, bfg) -> new_esEs8(new_compare14(xwv43000, xwv44000, bfe, bff, bfg), LT) 31.62/12.88 new_compare13(xwv43000, xwv44000, df, dg) -> new_compare28(xwv43000, xwv44000, new_esEs6(xwv43000, xwv44000, df, dg), df, dg) 31.62/12.88 new_ltEs9(EQ, EQ) -> True 31.62/12.88 new_esEs19(True, True) -> True 31.62/12.88 new_esEs25(xwv43000, xwv44000, ty_Bool) -> new_esEs19(xwv43000, xwv44000) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Ordering) -> new_ltEs9(xwv43000, xwv44000) 31.62/12.88 31.62/12.88 The set Q consists of the following terms: 31.62/12.88 31.62/12.88 new_esEs29(x0, x1, ty_Integer) 31.62/12.88 new_esEs26(x0, x1, ty_Ordering) 31.62/12.88 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 31.62/12.88 new_esEs8(EQ, EQ) 31.62/12.88 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 31.62/12.88 new_lt5(x0, x1, x2, x3) 31.62/12.88 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 31.62/12.88 new_ltEs20(x0, x1, ty_Bool) 31.62/12.88 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 31.62/12.88 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_esEs30(x0, x1, ty_Int) 31.62/12.88 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 31.62/12.88 new_esEs12(x0, x1, ty_Integer) 31.62/12.88 new_ltEs19(x0, x1, ty_Float) 31.62/12.88 new_compare110(x0, x1, False, x2) 31.62/12.88 new_esEs13(:(x0, x1), :(x2, x3), x4) 31.62/12.88 new_esEs24(x0, x1, ty_Char) 31.62/12.88 new_ltEs18(x0, x1, ty_Int) 31.62/12.88 new_esEs5(Just(x0), Just(x1), ty_Float) 31.62/12.88 new_lt18(x0, x1, x2) 31.62/12.88 new_compare26(x0, x1, True, x2, x3) 31.62/12.88 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs30(x0, x1, ty_Char) 31.62/12.88 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_primPlusNat1(Zero, Zero) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 31.62/12.88 new_lt8(x0, x1) 31.62/12.88 new_esEs18(Char(x0), Char(x1)) 31.62/12.88 new_primPlusNat1(Succ(x0), Zero) 31.62/12.88 new_esEs25(x0, x1, ty_Ordering) 31.62/12.88 new_esEs28(x0, x1, app(ty_[], x2)) 31.62/12.88 new_esEs29(x0, x1, app(ty_[], x2)) 31.62/12.88 new_ltEs18(x0, x1, ty_Ordering) 31.62/12.88 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_compare28(x0, x1, False, x2, x3) 31.62/12.88 new_esEs23(x0, x1, ty_Double) 31.62/12.88 new_esEs24(x0, x1, ty_Int) 31.62/12.88 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs19(False, False) 31.62/12.88 new_sr(x0, x1) 31.62/12.88 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_esEs26(x0, x1, ty_Int) 31.62/12.88 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs11(x0, x1, ty_Float) 31.62/12.88 new_lt6(x0, x1) 31.62/12.88 new_lt10(x0, x1) 31.62/12.88 new_compare0([], [], x0) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 31.62/12.88 new_primEqInt(Pos(Zero), Pos(Zero)) 31.62/12.88 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 31.62/12.88 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 31.62/12.88 new_lt20(x0, x1, ty_Ordering) 31.62/12.88 new_esEs30(x0, x1, ty_Ordering) 31.62/12.88 new_ltEs18(x0, x1, ty_Char) 31.62/12.88 new_esEs11(x0, x1, app(ty_[], x2)) 31.62/12.88 new_lt20(x0, x1, ty_Double) 31.62/12.88 new_esEs12(x0, x1, ty_Bool) 31.62/12.88 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 31.62/12.88 new_esEs10(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 31.62/12.88 new_ltEs21(x0, x1, ty_Bool) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 31.62/12.88 new_ltEs20(x0, x1, ty_@0) 31.62/12.88 new_esEs23(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_esEs10(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 31.62/12.88 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_esEs11(x0, x1, ty_Integer) 31.62/12.88 new_ltEs9(EQ, EQ) 31.62/12.88 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 31.62/12.88 new_primEqInt(Neg(Zero), Neg(Zero)) 31.62/12.88 new_compare27(x0, x1, False, x2, x3, x4) 31.62/12.88 new_ltEs18(x0, x1, ty_Double) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 31.62/12.88 new_esEs27(x0, x1, ty_Double) 31.62/12.88 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_ltEs10(x0, x1, x2) 31.62/12.88 new_lt12(x0, x1, app(ty_[], x2)) 31.62/12.88 new_esEs28(x0, x1, ty_Float) 31.62/12.88 new_ltEs4(Nothing, Nothing, x0) 31.62/12.88 new_compare24(x0, x1, True) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 31.62/12.88 new_primMulInt(Pos(x0), Neg(x1)) 31.62/12.88 new_primMulInt(Neg(x0), Pos(x1)) 31.62/12.88 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_compare25(x0, x1, False) 31.62/12.88 new_primMulInt(Neg(x0), Neg(x1)) 31.62/12.88 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs29(x0, x1, ty_@0) 31.62/12.88 new_esEs23(x0, x1, ty_Int) 31.62/12.88 new_lt13(x0, x1, ty_Double) 31.62/12.88 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs24(x0, x1, ty_Ordering) 31.62/12.88 new_primEqNat0(Succ(x0), Succ(x1)) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 31.62/12.88 new_ltEs17(True, True) 31.62/12.88 new_esEs12(x0, x1, ty_@0) 31.62/12.88 new_esEs23(x0, x1, ty_Char) 31.62/12.88 new_esEs29(x0, x1, ty_Bool) 31.62/12.88 new_esEs29(x0, x1, ty_Float) 31.62/12.88 new_ltEs21(x0, x1, ty_Double) 31.62/12.88 new_esEs10(x0, x1, app(ty_[], x2)) 31.62/12.88 new_esEs29(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_esEs27(x0, x1, ty_Ordering) 31.62/12.88 new_compare23(x0, x1, True, x2) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), ty_Float) 31.62/12.88 new_primEqInt(Pos(Zero), Neg(Zero)) 31.62/12.88 new_primEqInt(Neg(Zero), Pos(Zero)) 31.62/12.88 new_ltEs21(x0, x1, ty_@0) 31.62/12.88 new_ltEs21(x0, x1, ty_Char) 31.62/12.88 new_esEs5(Just(x0), Just(x1), ty_Integer) 31.62/12.88 new_esEs12(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_esEs12(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_lt4(x0, x1) 31.62/12.88 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_ltEs8(Right(x0), Left(x1), x2, x3) 31.62/12.88 new_ltEs8(Left(x0), Right(x1), x2, x3) 31.62/12.88 new_esEs12(x0, x1, ty_Float) 31.62/12.88 new_compare19(x0, x1) 31.62/12.88 new_compare6(x0, x1, ty_Float) 31.62/12.88 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_esEs26(x0, x1, ty_Char) 31.62/12.88 new_esEs26(x0, x1, ty_Double) 31.62/12.88 new_esEs27(x0, x1, app(ty_[], x2)) 31.62/12.88 new_esEs12(x0, x1, app(ty_[], x2)) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 31.62/12.88 new_esEs29(x0, x1, ty_Char) 31.62/12.88 new_compare6(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_ltEs21(x0, x1, ty_Int) 31.62/12.88 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_compare15(@0, @0) 31.62/12.88 new_esEs10(x0, x1, ty_Integer) 31.62/12.88 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_esEs30(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_esEs24(x0, x1, ty_Integer) 31.62/12.88 new_esEs27(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_compare112(x0, x1, False) 31.62/12.88 new_esEs26(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_esEs21(x0, x1, ty_Integer) 31.62/12.88 new_lt17(x0, x1, x2) 31.62/12.88 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_ltEs19(x0, x1, app(ty_[], x2)) 31.62/12.88 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 31.62/12.88 new_ltEs9(GT, GT) 31.62/12.88 new_ltEs20(x0, x1, ty_Ordering) 31.62/12.88 new_esEs12(x0, x1, ty_Int) 31.62/12.88 new_ltEs4(Nothing, Just(x0), x1) 31.62/12.88 new_compare0(:(x0, x1), [], x2) 31.62/12.88 new_esEs28(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_ltEs18(x0, x1, ty_Bool) 31.62/12.88 new_esEs25(x0, x1, ty_@0) 31.62/12.88 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 31.62/12.88 new_lt12(x0, x1, ty_Double) 31.62/12.88 new_compare7(x0, x1) 31.62/12.88 new_esEs11(x0, x1, ty_@0) 31.62/12.88 new_ltEs9(LT, EQ) 31.62/12.88 new_ltEs9(EQ, LT) 31.62/12.88 new_ltEs20(x0, x1, ty_Float) 31.62/12.88 new_esEs5(Just(x0), Nothing, x1) 31.62/12.88 new_esEs27(x0, x1, ty_@0) 31.62/12.88 new_esEs25(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_compare116(x0, x1, True, x2, x3) 31.62/12.88 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_esEs30(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_esEs27(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs17(Double(x0, x1), Double(x2, x3)) 31.62/12.88 new_esEs5(Just(x0), Just(x1), ty_@0) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 31.62/12.88 new_compare13(x0, x1, x2, x3) 31.62/12.88 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs19(False, True) 31.62/12.88 new_esEs19(True, False) 31.62/12.88 new_lt13(x0, x1, ty_Ordering) 31.62/12.88 new_esEs29(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_compare6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_ltEs19(x0, x1, ty_Integer) 31.62/12.88 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 31.62/12.88 new_esEs10(x0, x1, ty_Bool) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), ty_Char) 31.62/12.88 new_compare114(x0, x1, False) 31.62/12.88 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs24(x0, x1, ty_Bool) 31.62/12.88 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 31.62/12.88 new_esEs30(x0, x1, ty_@0) 31.62/12.88 new_lt20(x0, x1, ty_@0) 31.62/12.88 new_compare6(x0, x1, ty_Bool) 31.62/12.88 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), ty_Int) 31.62/12.88 new_esEs8(GT, GT) 31.62/12.88 new_esEs12(x0, x1, ty_Char) 31.62/12.88 new_compare6(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_compare115(x0, x1, True, x2, x3, x4) 31.62/12.88 new_ltEs20(x0, x1, ty_Int) 31.62/12.88 new_esEs8(LT, EQ) 31.62/12.88 new_esEs8(EQ, LT) 31.62/12.88 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_esEs28(x0, x1, ty_Integer) 31.62/12.88 new_primCmpInt(Neg(Zero), Neg(Zero)) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 31.62/12.88 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 31.62/12.88 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs23(x0, x1, app(ty_[], x2)) 31.62/12.88 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 31.62/12.88 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 31.62/12.88 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 31.62/12.88 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 31.62/12.88 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_primCompAux00(x0, EQ) 31.62/12.88 new_ltEs5(x0, x1) 31.62/12.88 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 31.62/12.88 new_primCmpNat0(Zero, Succ(x0)) 31.62/12.88 new_esEs8(LT, LT) 31.62/12.88 new_lt12(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 31.62/12.88 new_compare25(x0, x1, True) 31.62/12.88 new_primCmpInt(Pos(Zero), Neg(Zero)) 31.62/12.88 new_primCmpInt(Neg(Zero), Pos(Zero)) 31.62/12.88 new_esEs28(x0, x1, ty_Char) 31.62/12.88 new_ltEs20(x0, x1, ty_Char) 31.62/12.88 new_primEqNat0(Succ(x0), Zero) 31.62/12.88 new_esEs28(x0, x1, ty_Int) 31.62/12.88 new_ltEs17(True, False) 31.62/12.88 new_ltEs17(False, True) 31.62/12.88 new_esEs24(x0, x1, app(ty_[], x2)) 31.62/12.88 new_esEs26(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_esEs25(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_esEs5(Nothing, Just(x0), x1) 31.62/12.88 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_esEs30(x0, x1, ty_Double) 31.62/12.88 new_compare113(x0, x1, True, x2, x3) 31.62/12.88 new_ltEs9(LT, LT) 31.62/12.88 new_primCompAux00(x0, LT) 31.62/12.88 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs26(x0, x1, app(ty_[], x2)) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), ty_Bool) 31.62/12.88 new_sr0(Integer(x0), Integer(x1)) 31.62/12.88 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs12(x0, x1, ty_Ordering) 31.62/12.88 new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 31.62/12.88 new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 31.62/12.88 new_ltEs20(x0, x1, ty_Integer) 31.62/12.88 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 31.62/12.88 new_ltEs19(x0, x1, ty_Char) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), ty_Integer) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 31.62/12.88 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 31.62/12.88 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 31.62/12.88 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 31.62/12.88 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 31.62/12.88 new_esEs11(x0, x1, ty_Double) 31.62/12.88 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_esEs4(Left(x0), Right(x1), x2, x3) 31.62/12.88 new_esEs4(Right(x0), Left(x1), x2, x3) 31.62/12.88 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 31.62/12.88 new_compare6(x0, x1, ty_Ordering) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 31.62/12.88 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 31.62/12.88 new_lt13(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_compare6(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_lt16(x0, x1, x2) 31.62/12.88 new_ltEs7(x0, x1, x2) 31.62/12.88 new_esEs10(x0, x1, ty_Float) 31.62/12.88 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 31.62/12.88 new_ltEs18(x0, x1, ty_Float) 31.62/12.88 new_esEs28(x0, x1, ty_Bool) 31.62/12.88 new_esEs16(@0, @0) 31.62/12.88 new_pePe(False, x0) 31.62/12.88 new_ltEs19(x0, x1, ty_Bool) 31.62/12.88 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_lt20(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_primMulInt(Pos(x0), Pos(x1)) 31.62/12.88 new_esEs25(x0, x1, ty_Double) 31.62/12.88 new_esEs24(x0, x1, ty_Float) 31.62/12.88 new_compare0([], :(x0, x1), x2) 31.62/12.88 new_ltEs13(x0, x1) 31.62/12.88 new_compare6(x0, x1, ty_Integer) 31.62/12.88 new_esEs9(x0, x1) 31.62/12.88 new_esEs20(:%(x0, x1), :%(x2, x3), x4) 31.62/12.88 new_ltEs19(x0, x1, ty_Ordering) 31.62/12.88 new_esEs25(x0, x1, ty_Float) 31.62/12.88 new_esEs5(Just(x0), Just(x1), ty_Ordering) 31.62/12.88 new_compare6(x0, x1, ty_Char) 31.62/12.88 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 31.62/12.88 new_esEs28(x0, x1, ty_Double) 31.62/12.88 new_lt12(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_esEs10(x0, x1, ty_Ordering) 31.62/12.88 new_esEs11(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_esEs10(x0, x1, ty_Int) 31.62/12.88 new_ltEs19(x0, x1, ty_Double) 31.62/12.88 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 31.62/12.88 new_primMulNat0(Zero, Zero) 31.62/12.88 new_fsEs(x0) 31.62/12.88 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 31.62/12.88 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 31.62/12.88 new_esEs21(x0, x1, ty_Int) 31.62/12.88 new_compare6(x0, x1, ty_Int) 31.62/12.88 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_compare116(x0, x1, False, x2, x3) 31.62/12.88 new_lt20(x0, x1, ty_Float) 31.62/12.88 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 31.62/12.88 new_lt12(x0, x1, ty_Integer) 31.62/12.88 new_lt11(x0, x1) 31.62/12.88 new_primCmpNat0(Succ(x0), Succ(x1)) 31.62/12.88 new_compare10(x0, x1) 31.62/12.88 new_esEs28(x0, x1, ty_Ordering) 31.62/12.88 new_lt14(x0, x1) 31.62/12.88 new_esEs30(x0, x1, ty_Float) 31.62/12.88 new_compare112(x0, x1, True) 31.62/12.88 new_lt12(x0, x1, ty_@0) 31.62/12.88 new_esEs10(x0, x1, ty_Char) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 31.62/12.88 new_ltEs19(x0, x1, ty_Int) 31.62/12.88 new_esEs10(x0, x1, ty_Double) 31.62/12.88 new_primPlusNat0(Succ(x0), x1) 31.62/12.88 new_compare111(x0, x1, True, x2, x3) 31.62/12.88 new_esEs5(Just(x0), Just(x1), ty_Int) 31.62/12.88 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 31.62/12.88 new_esEs5(Nothing, Nothing, x0) 31.62/12.88 new_esEs5(Just(x0), Just(x1), ty_Double) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 31.62/12.88 new_esEs5(Just(x0), Just(x1), ty_Char) 31.62/12.88 new_esEs24(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_esEs26(x0, x1, ty_Float) 31.62/12.88 new_lt13(x0, x1, ty_Integer) 31.62/12.88 new_primCompAux0(x0, x1, x2, x3) 31.62/12.88 new_lt13(x0, x1, ty_@0) 31.62/12.88 new_ltEs6(x0, x1) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 31.62/12.88 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_primEqNat0(Zero, Succ(x0)) 31.62/12.88 new_not(True) 31.62/12.88 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 31.62/12.88 new_compare6(x0, x1, ty_@0) 31.62/12.88 new_esEs8(EQ, GT) 31.62/12.88 new_esEs8(GT, EQ) 31.62/12.88 new_compare6(x0, x1, ty_Double) 31.62/12.88 new_compare24(x0, x1, False) 31.62/12.88 new_compare16(Char(x0), Char(x1)) 31.62/12.88 new_esEs23(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 31.62/12.88 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs15(Float(x0, x1), Float(x2, x3)) 31.62/12.88 new_lt9(x0, x1, x2, x3, x4) 31.62/12.88 new_ltEs21(x0, x1, ty_Float) 31.62/12.88 new_ltEs14(x0, x1) 31.62/12.88 new_esEs11(x0, x1, ty_Ordering) 31.62/12.88 new_asAs(True, x0) 31.62/12.88 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 31.62/12.88 new_ltEs18(x0, x1, app(ty_[], x2)) 31.62/12.88 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 31.62/12.88 new_asAs(False, x0) 31.62/12.88 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 31.62/12.88 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 31.62/12.88 new_primMulNat0(Zero, Succ(x0)) 31.62/12.88 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_primPlusNat1(Zero, Succ(x0)) 31.62/12.88 new_lt13(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_ltEs18(x0, x1, ty_Integer) 31.62/12.88 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 31.62/12.88 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 31.62/12.88 new_esEs23(x0, x1, ty_Float) 31.62/12.88 new_esEs29(x0, x1, ty_Double) 31.62/12.88 new_lt13(x0, x1, ty_Bool) 31.62/12.88 new_esEs27(x0, x1, ty_Integer) 31.62/12.88 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 31.62/12.88 new_ltEs4(Just(x0), Nothing, x1) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 31.62/12.88 new_compare111(x0, x1, False, x2, x3) 31.62/12.88 new_compare8(x0, x1, x2, x3) 31.62/12.88 new_esEs19(True, True) 31.62/12.88 new_esEs29(x0, x1, ty_Int) 31.62/12.88 new_lt19(x0, x1) 31.62/12.88 new_esEs13([], :(x0, x1), x2) 31.62/12.88 new_esEs23(x0, x1, ty_@0) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 31.62/12.88 new_primCmpInt(Pos(Zero), Pos(Zero)) 31.62/12.88 new_lt20(x0, x1, app(ty_[], x2)) 31.62/12.88 new_lt7(x0, x1) 31.62/12.88 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_compare114(x0, x1, True) 31.62/12.88 new_compare6(x0, x1, app(ty_[], x2)) 31.62/12.88 new_esEs25(x0, x1, ty_Bool) 31.62/12.88 new_lt13(x0, x1, ty_Char) 31.62/12.88 new_compare28(x0, x1, True, x2, x3) 31.62/12.88 new_esEs30(x0, x1, ty_Integer) 31.62/12.88 new_esEs26(x0, x1, ty_Bool) 31.62/12.88 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 31.62/12.88 new_ltEs20(x0, x1, ty_Double) 31.62/12.88 new_lt12(x0, x1, ty_Ordering) 31.62/12.88 new_primMulNat0(Succ(x0), Zero) 31.62/12.88 new_esEs28(x0, x1, ty_@0) 31.62/12.88 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_esEs30(x0, x1, app(ty_[], x2)) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 31.62/12.88 new_lt13(x0, x1, ty_Int) 31.62/12.88 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_esEs26(x0, x1, ty_@0) 31.62/12.88 new_lt12(x0, x1, ty_Int) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 31.62/12.88 new_esEs13([], [], x0) 31.62/12.88 new_esEs8(LT, GT) 31.62/12.88 new_esEs8(GT, LT) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 31.62/12.88 new_esEs5(Just(x0), Just(x1), ty_Bool) 31.62/12.88 new_compare14(x0, x1, x2, x3, x4) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 31.62/12.88 new_ltEs20(x0, x1, app(ty_[], x2)) 31.62/12.88 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 31.62/12.88 new_esEs27(x0, x1, ty_Char) 31.62/12.88 new_primPlusNat1(Succ(x0), Succ(x1)) 31.62/12.88 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 31.62/12.88 new_esEs26(x0, x1, ty_Integer) 31.62/12.88 new_primCmpNat0(Succ(x0), Zero) 31.62/12.88 new_lt15(x0, x1, x2, x3) 31.62/12.88 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 31.62/12.88 new_esEs25(x0, x1, ty_Integer) 31.62/12.88 new_esEs24(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_ltEs15(x0, x1) 31.62/12.88 new_lt20(x0, x1, ty_Char) 31.62/12.88 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_esEs27(x0, x1, ty_Bool) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), ty_@0) 31.62/12.88 new_esEs25(x0, x1, app(ty_[], x2)) 31.62/12.88 new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 31.62/12.88 new_compare0(:(x0, x1), :(x2, x3), x4) 31.62/12.88 new_lt12(x0, x1, ty_Float) 31.62/12.88 new_compare110(x0, x1, True, x2) 31.62/12.88 new_ltEs21(x0, x1, app(ty_[], x2)) 31.62/12.88 new_esEs23(x0, x1, ty_Bool) 31.62/12.88 new_esEs22(x0, x1, ty_Integer) 31.62/12.88 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 31.62/12.88 new_pePe(True, x0) 31.62/12.88 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 31.62/12.88 new_ltEs19(x0, x1, ty_@0) 31.62/12.88 new_primPlusNat0(Zero, x0) 31.62/12.88 new_esEs11(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_primMulNat0(Succ(x0), Succ(x1)) 31.62/12.88 new_lt13(x0, x1, ty_Float) 31.62/12.88 new_esEs12(x0, x1, ty_Double) 31.62/12.88 new_lt20(x0, x1, ty_Int) 31.62/12.88 new_ltEs9(GT, EQ) 31.62/12.88 new_ltEs9(EQ, GT) 31.62/12.88 new_primEqNat0(Zero, Zero) 31.62/12.88 new_esEs11(x0, x1, ty_Int) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 31.62/12.88 new_compare26(Left(x0), Left(x1), False, x2, x3) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 31.62/12.88 new_esEs24(x0, x1, ty_@0) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 31.62/12.88 new_not(False) 31.62/12.88 new_esEs24(x0, x1, ty_Double) 31.62/12.88 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 31.62/12.88 new_ltEs4(Just(x0), Just(x1), ty_Double) 31.62/12.88 new_ltEs17(False, False) 31.62/12.88 new_esEs23(x0, x1, ty_Integer) 31.62/12.88 new_lt13(x0, x1, app(ty_[], x2)) 31.62/12.88 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 31.62/12.88 new_esEs27(x0, x1, ty_Int) 31.62/12.88 new_esEs22(x0, x1, ty_Int) 31.62/12.88 new_compare6(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_compare12(x0, x1, x2) 31.62/12.88 new_lt20(x0, x1, ty_Integer) 31.62/12.88 new_compare113(x0, x1, False, x2, x3) 31.62/12.88 new_compare26(Right(x0), Left(x1), False, x2, x3) 31.62/12.88 new_compare26(Left(x0), Right(x1), False, x2, x3) 31.62/12.88 new_esEs28(x0, x1, app(ty_Ratio, x2)) 31.62/12.88 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 31.62/12.88 new_esEs29(x0, x1, ty_Ordering) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 31.62/12.88 new_lt20(x0, x1, ty_Bool) 31.62/12.88 new_ltEs18(x0, x1, ty_@0) 31.62/12.88 new_ltEs16(x0, x1) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 31.62/12.88 new_compare11(Integer(x0), Integer(x1)) 31.62/12.88 new_lt12(x0, x1, ty_Char) 31.62/12.88 new_esEs25(x0, x1, ty_Int) 31.62/12.88 new_lt20(x0, x1, app(ty_Maybe, x2)) 31.62/12.88 new_esEs11(x0, x1, ty_Char) 31.62/12.88 new_esEs27(x0, x1, ty_Float) 31.62/12.88 new_ltEs21(x0, x1, ty_Integer) 31.62/12.88 new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 31.62/12.88 new_esEs13(:(x0, x1), [], x2) 31.62/12.88 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 31.62/12.88 new_compare23(x0, x1, False, x2) 31.62/12.88 new_esEs10(x0, x1, ty_@0) 31.62/12.88 new_esEs11(x0, x1, ty_Bool) 31.62/12.88 new_compare27(x0, x1, True, x2, x3, x4) 31.62/12.88 new_esEs14(Integer(x0), Integer(x1)) 31.62/12.88 new_esEs25(x0, x1, ty_Char) 31.62/12.88 new_compare115(x0, x1, False, x2, x3, x4) 31.62/12.88 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 31.62/12.88 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.88 new_ltEs21(x0, x1, ty_Ordering) 31.62/12.88 new_esEs23(x0, x1, ty_Ordering) 31.62/12.88 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.88 new_primCmpNat0(Zero, Zero) 31.62/12.88 new_compare26(Right(x0), Right(x1), False, x2, x3) 31.62/12.88 new_ltEs9(GT, LT) 31.62/12.88 new_ltEs9(LT, GT) 31.62/12.88 new_esEs30(x0, x1, ty_Bool) 31.62/12.88 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 31.62/12.88 new_primCompAux00(x0, GT) 31.62/12.88 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 31.62/12.88 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 31.62/12.88 new_lt12(x0, x1, ty_Bool) 31.62/12.88 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 31.62/12.88 31.62/12.88 We have to consider all minimal (P,Q,R)-chains. 31.62/12.88 ---------------------------------------- 31.62/12.88 31.62/12.88 (54) DependencyGraphProof (EQUIVALENT) 31.62/12.88 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 31.62/12.88 ---------------------------------------- 31.62/12.88 31.62/12.88 (55) 31.62/12.88 Complex Obligation (AND) 31.62/12.88 31.62/12.88 ---------------------------------------- 31.62/12.88 31.62/12.88 (56) 31.62/12.88 Obligation: 31.62/12.88 Q DP problem: 31.62/12.88 The TRS P consists of the following rules: 31.62/12.88 31.62/12.88 new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, h, ba, bb) -> new_delFromFM(xwv17, Left(xwv18), h, ba, bb) 31.62/12.88 new_delFromFM(Branch(Left(xwv300), xwv31, xwv32, xwv33, xwv34), Left(xwv400), bc, bd, be) -> new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Left(xwv400), Left(xwv300), new_esEs29(xwv400, xwv300, bc), bc, bd), GT), bc, bd, be) 31.62/12.88 new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, h, ba, bb) -> new_delFromFM1(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs8(new_compare26(Left(xwv18), Left(xwv13), new_esEs4(Left(xwv18), Left(xwv13), h, ba), h, ba), LT), h, ba, bb) 31.62/12.88 new_delFromFM1(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, h, ba, bb) -> new_delFromFM(xwv16, Left(xwv18), h, ba, bb) 31.62/12.88 new_delFromFM(Branch(Right(xwv300), xwv31, xwv32, xwv33, xwv34), Left(xwv400), bc, bd, be) -> new_delFromFM20(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Left(xwv400), Right(xwv300), False, bc, bd), GT), bc, bd, be) 31.62/12.88 new_delFromFM20(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, bc, bd, be) -> new_delFromFM(xwv34, Left(xwv400), bc, bd, be) 31.62/12.88 new_delFromFM20(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, False, bc, bd, be) -> new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Left(xwv400), Right(xwv300), new_esEs4(Left(xwv400), Right(xwv300), bc, bd), bc, bd), LT), bc, bd, be) 31.62/12.88 new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, bc, bd, be) -> new_delFromFM(xwv33, Left(xwv400), bc, bd, be) 31.62/12.88 31.62/12.88 The TRS R consists of the following rules: 31.62/12.88 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(ty_Maybe, bcd)) -> new_ltEs4(xwv43000, xwv44000, bcd) 31.62/12.88 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 31.62/12.88 new_primCmpInt(Neg(Succ(xwv4300)), Pos(xwv440)) -> LT 31.62/12.88 new_esEs27(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.88 new_compare17(Double(xwv43000, Pos(xwv430010)), Double(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.62/12.88 new_pePe(True, xwv181) -> True 31.62/12.88 new_esEs30(xwv400, xwv300, ty_Ordering) -> new_esEs8(xwv400, xwv300) 31.62/12.88 new_compare6(xwv43000, xwv44000, ty_Float) -> new_compare18(xwv43000, xwv44000) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.88 new_esEs12(xwv4000, xwv3000, app(ty_Maybe, hh)) -> new_esEs5(xwv4000, xwv3000, hh) 31.62/12.88 new_esEs19(False, True) -> False 31.62/12.88 new_esEs19(True, False) -> False 31.62/12.88 new_lt13(xwv43001, xwv44001, app(app(ty_Either, cea), ceb)) -> new_lt15(xwv43001, xwv44001, cea, ceb) 31.62/12.88 new_esEs27(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.88 new_compare23(xwv43000, xwv44000, True, de) -> EQ 31.62/12.88 new_ltEs20(xwv43002, xwv44002, app(app(ty_@2, cfh), cga)) -> new_ltEs11(xwv43002, xwv44002, cfh, cga) 31.62/12.88 new_esEs25(xwv43000, xwv44000, app(ty_[], cdc)) -> new_esEs13(xwv43000, xwv44000, cdc) 31.62/12.88 new_esEs4(Left(xwv4000), Right(xwv3000), cah, cba) -> False 31.62/12.88 new_esEs4(Right(xwv4000), Left(xwv3000), cah, cba) -> False 31.62/12.88 new_lt18(xwv43000, xwv44000, dfb) -> new_esEs8(new_compare0(xwv43000, xwv44000, dfb), LT) 31.62/12.88 new_esEs15(Float(xwv4000, xwv4001), Float(xwv3000, xwv3001)) -> new_esEs9(new_sr(xwv4000, xwv3001), new_sr(xwv4001, xwv3000)) 31.62/12.88 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 31.62/12.88 new_ltEs19(xwv4300, xwv4400, ty_Ordering) -> new_ltEs9(xwv4300, xwv4400) 31.62/12.88 new_compare110(xwv43000, xwv44000, False, de) -> GT 31.62/12.88 new_primCmpInt(Pos(Zero), Neg(Succ(xwv4400))) -> GT 31.62/12.88 new_esEs9(xwv400, xwv300) -> new_primEqInt(xwv400, xwv300) 31.62/12.88 new_compare26(xwv430, xwv440, True, bdc, bdd) -> EQ 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), app(ty_Maybe, bba), bae) -> new_ltEs4(xwv43000, xwv44000, bba) 31.62/12.88 new_esEs24(xwv43001, xwv44001, ty_Ordering) -> new_esEs8(xwv43001, xwv44001) 31.62/12.88 new_esEs28(xwv43000, xwv44000, ty_Char) -> new_esEs18(xwv43000, xwv44000) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, ty_Integer) -> new_ltEs5(xwv4300, xwv4400) 31.62/12.88 new_primCmpInt(Neg(Succ(xwv4300)), Neg(xwv440)) -> new_primCmpNat0(xwv440, Succ(xwv4300)) 31.62/12.88 new_compare113(xwv160, xwv161, False, cgf, cgg) -> GT 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Bool, cba) -> new_esEs19(xwv4000, xwv3000) 31.62/12.88 new_ltEs4(Nothing, Nothing, bde) -> True 31.62/12.88 new_compare111(xwv167, xwv168, True, dh, ea) -> LT 31.62/12.88 new_ltEs20(xwv43002, xwv44002, ty_Ordering) -> new_ltEs9(xwv43002, xwv44002) 31.62/12.88 new_ltEs4(Just(xwv43000), Nothing, bde) -> False 31.62/12.88 new_ltEs9(LT, LT) -> True 31.62/12.88 new_compare6(xwv43000, xwv44000, ty_Char) -> new_compare16(xwv43000, xwv44000) 31.62/12.88 new_lt12(xwv43000, xwv44000, ty_Float) -> new_lt19(xwv43000, xwv44000) 31.62/12.88 new_ltEs14(xwv4300, xwv4400) -> new_fsEs(new_compare16(xwv4300, xwv4400)) 31.62/12.88 new_esEs23(xwv4000, xwv3000, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.88 new_compare27(xwv43000, xwv44000, False, bfe, bff, bfg) -> new_compare115(xwv43000, xwv44000, new_ltEs12(xwv43000, xwv44000, bfe, bff, bfg), bfe, bff, bfg) 31.62/12.88 new_lt17(xwv43000, xwv44000, de) -> new_esEs8(new_compare12(xwv43000, xwv44000, de), LT) 31.62/12.88 new_esEs11(xwv4001, xwv3001, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs7(xwv4001, xwv3001, fh, ga, gb) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), app(app(ty_@2, bbc), bbd), bae) -> new_ltEs11(xwv43000, xwv44000, bbc, bbd) 31.62/12.88 new_esEs12(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.88 new_esEs10(xwv4002, xwv3002, app(ty_[], eh)) -> new_esEs13(xwv4002, xwv3002, eh) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Char) -> new_ltEs14(xwv43000, xwv44000) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), app(ty_Maybe, bhh)) -> new_ltEs4(xwv43000, xwv44000, bhh) 31.62/12.88 new_compare26(Right(xwv4300), Left(xwv4400), False, bdc, bdd) -> GT 31.62/12.88 new_lt20(xwv43000, xwv44000, ty_Bool) -> new_lt4(xwv43000, xwv44000) 31.62/12.88 new_compare6(xwv43000, xwv44000, app(ty_Maybe, ce)) -> new_compare12(xwv43000, xwv44000, ce) 31.62/12.88 new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False 31.62/12.88 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 31.62/12.88 new_esEs8(GT, GT) -> True 31.62/12.88 new_ltEs21(xwv43001, xwv44001, ty_@0) -> new_ltEs13(xwv43001, xwv44001) 31.62/12.88 new_esEs24(xwv43001, xwv44001, ty_Double) -> new_esEs17(xwv43001, xwv44001) 31.62/12.88 new_fsEs(xwv171) -> new_not(new_esEs8(xwv171, GT)) 31.62/12.88 new_esEs23(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Double, bae) -> new_ltEs15(xwv43000, xwv44000) 31.62/12.88 new_esEs8(EQ, EQ) -> True 31.62/12.88 new_lt20(xwv43000, xwv44000, ty_Int) -> new_lt14(xwv43000, xwv44000) 31.62/12.88 new_primEqNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 31.62/12.88 new_lt12(xwv43000, xwv44000, ty_Integer) -> new_lt7(xwv43000, xwv44000) 31.62/12.88 new_esEs26(xwv4001, xwv3001, ty_Integer) -> new_esEs14(xwv4001, xwv3001) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_@0) -> new_ltEs13(xwv43000, xwv44000) 31.62/12.88 new_lt12(xwv43000, xwv44000, ty_Char) -> new_lt10(xwv43000, xwv44000) 31.62/12.88 new_esEs25(xwv43000, xwv44000, ty_Float) -> new_esEs15(xwv43000, xwv44000) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, app(ty_[], ca)) -> new_ltEs10(xwv4300, xwv4400, ca) 31.62/12.88 new_ltEs20(xwv43002, xwv44002, app(app(ty_Either, cfc), cfd)) -> new_ltEs8(xwv43002, xwv44002, cfc, cfd) 31.62/12.88 new_lt12(xwv43000, xwv44000, ty_@0) -> new_lt6(xwv43000, xwv44000) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, app(app(ty_@2, beh), bfa)) -> new_ltEs11(xwv4300, xwv4400, beh, bfa) 31.62/12.88 new_compare6(xwv43000, xwv44000, app(ty_[], cf)) -> new_compare0(xwv43000, xwv44000, cf) 31.62/12.88 new_compare12(xwv43000, xwv44000, de) -> new_compare23(xwv43000, xwv44000, new_esEs5(xwv43000, xwv44000, de), de) 31.62/12.88 new_not(True) -> False 31.62/12.88 new_lt13(xwv43001, xwv44001, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_lt9(xwv43001, xwv44001, ceh, cfa, cfb) 31.62/12.88 new_primCompAux00(xwv186, LT) -> LT 31.62/12.88 new_primCmpNat0(Zero, Zero) -> EQ 31.62/12.88 new_ltEs20(xwv43002, xwv44002, ty_Integer) -> new_ltEs5(xwv43002, xwv44002) 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), ty_@0, cba) -> new_esEs16(xwv4000, xwv3000) 31.62/12.88 new_compare115(xwv43000, xwv44000, True, bfe, bff, bfg) -> LT 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Char, cba) -> new_esEs18(xwv4000, xwv3000) 31.62/12.88 new_lt13(xwv43001, xwv44001, ty_Integer) -> new_lt7(xwv43001, xwv44001) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, app(ty_Ratio, bad)) -> new_ltEs7(xwv4300, xwv4400, bad) 31.62/12.88 new_esEs10(xwv4002, xwv3002, app(app(ty_@2, fd), ff)) -> new_esEs6(xwv4002, xwv3002, fd, ff) 31.62/12.88 new_compare23(xwv43000, xwv44000, False, de) -> new_compare110(xwv43000, xwv44000, new_ltEs4(xwv43000, xwv44000, de), de) 31.62/12.88 new_esEs23(xwv4000, xwv3000, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.88 new_esEs7(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), eb, ec, ed) -> new_asAs(new_esEs12(xwv4000, xwv3000, eb), new_asAs(new_esEs11(xwv4001, xwv3001, ec), new_esEs10(xwv4002, xwv3002, ed))) 31.62/12.88 new_esEs29(xwv400, xwv300, app(ty_[], cag)) -> new_esEs13(xwv400, xwv300, cag) 31.62/12.88 new_esEs25(xwv43000, xwv44000, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_esEs7(xwv43000, xwv44000, cdf, cdg, cdh) 31.62/12.88 new_esEs30(xwv400, xwv300, ty_Double) -> new_esEs17(xwv400, xwv300) 31.62/12.88 new_esEs10(xwv4002, xwv3002, ty_Ordering) -> new_esEs8(xwv4002, xwv3002) 31.62/12.88 new_esEs10(xwv4002, xwv3002, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs7(xwv4002, xwv3002, ee, ef, eg) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), app(app(ty_Either, baf), bag), bae) -> new_ltEs8(xwv43000, xwv44000, baf, bag) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Integer) -> new_ltEs5(xwv43000, xwv44000) 31.62/12.88 new_lt12(xwv43000, xwv44000, app(ty_[], cdc)) -> new_lt18(xwv43000, xwv44000, cdc) 31.62/12.88 new_lt14(xwv430, xwv440) -> new_esEs8(new_compare7(xwv430, xwv440), LT) 31.62/12.88 new_esEs27(xwv4000, xwv3000, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.88 new_primEqNat0(Succ(xwv40000), Zero) -> False 31.62/12.88 new_primEqNat0(Zero, Succ(xwv30000)) -> False 31.62/12.88 new_esEs18(Char(xwv4000), Char(xwv3000)) -> new_primEqNat0(xwv4000, xwv3000) 31.62/12.88 new_ltEs10(xwv4300, xwv4400, ca) -> new_fsEs(new_compare0(xwv4300, xwv4400, ca)) 31.62/12.88 new_compare112(xwv43000, xwv44000, False) -> GT 31.62/12.88 new_ltEs20(xwv43002, xwv44002, ty_Int) -> new_ltEs6(xwv43002, xwv44002) 31.62/12.88 new_esEs13([], [], cag) -> True 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs7(xwv4000, xwv3000, dab, dac, dad) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, ty_Int) -> new_ltEs6(xwv4300, xwv4400) 31.62/12.88 new_esEs23(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.88 new_esEs11(xwv4001, xwv3001, app(app(ty_@2, gg), gh)) -> new_esEs6(xwv4001, xwv3001, gg, gh) 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Int, cba) -> new_esEs9(xwv4000, xwv3000) 31.62/12.88 new_primCompAux00(xwv186, GT) -> GT 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Float) -> new_ltEs16(xwv43000, xwv44000) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.88 new_esEs29(xwv400, xwv300, ty_Double) -> new_esEs17(xwv400, xwv300) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, ty_Char) -> new_ltEs14(xwv43001, xwv44001) 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), app(app(ty_@2, chg), chh), cba) -> new_esEs6(xwv4000, xwv3000, chg, chh) 31.62/12.88 new_esEs12(xwv4000, xwv3000, app(app(ty_Either, hf), hg)) -> new_esEs4(xwv4000, xwv3000, hf, hg) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, ty_Float) -> new_ltEs16(xwv43001, xwv44001) 31.62/12.88 new_esEs17(Double(xwv4000, xwv4001), Double(xwv3000, xwv3001)) -> new_esEs9(new_sr(xwv4000, xwv3001), new_sr(xwv4001, xwv3000)) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, ty_Int) -> new_ltEs6(xwv43001, xwv44001) 31.62/12.88 new_compare19(xwv43000, xwv44000) -> new_compare25(xwv43000, xwv44000, new_esEs19(xwv43000, xwv44000)) 31.62/12.88 new_lt15(xwv43000, xwv44000, bhb, bhc) -> new_esEs8(new_compare8(xwv43000, xwv44000, bhb, bhc), LT) 31.62/12.88 new_compare116(xwv43000, xwv44000, True, df, dg) -> LT 31.62/12.88 new_primCmpInt(Pos(Succ(xwv4300)), Neg(xwv440)) -> GT 31.62/12.88 new_esEs19(False, False) -> True 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Bool, bae) -> new_ltEs17(xwv43000, xwv44000) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, ty_Ordering) -> new_ltEs9(xwv43001, xwv44001) 31.62/12.88 new_esEs28(xwv43000, xwv44000, ty_Bool) -> new_esEs19(xwv43000, xwv44000) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, ty_Double) -> new_ltEs15(xwv4300, xwv4400) 31.62/12.88 new_esEs25(xwv43000, xwv44000, app(ty_Ratio, cda)) -> new_esEs20(xwv43000, xwv44000, cda) 31.62/12.88 new_esEs28(xwv43000, xwv44000, ty_Double) -> new_esEs17(xwv43000, xwv44000) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(ty_[], dae)) -> new_esEs13(xwv4000, xwv3000, dae) 31.62/12.88 new_compare18(Float(xwv43000, Pos(xwv430010)), Float(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.62/12.88 new_compare18(Float(xwv43000, Neg(xwv430010)), Float(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.62/12.88 new_ltEs20(xwv43002, xwv44002, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_ltEs12(xwv43002, xwv44002, cgb, cgc, cgd) 31.62/12.88 new_esEs29(xwv400, xwv300, ty_Float) -> new_esEs15(xwv400, xwv300) 31.62/12.88 new_esEs23(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, app(app(ty_@2, dfh), dga)) -> new_ltEs11(xwv43001, xwv44001, dfh, dga) 31.62/12.88 new_ltEs13(xwv4300, xwv4400) -> new_fsEs(new_compare15(xwv4300, xwv4400)) 31.62/12.88 new_esEs12(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.88 new_primPlusNat1(Succ(xwv33200), Succ(xwv13100)) -> Succ(Succ(new_primPlusNat1(xwv33200, xwv13100))) 31.62/12.88 new_compare15(@0, @0) -> EQ 31.62/12.88 new_esEs11(xwv4001, xwv3001, app(ty_[], gc)) -> new_esEs13(xwv4001, xwv3001, gc) 31.62/12.88 new_esEs6(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), cbc, cbd) -> new_asAs(new_esEs27(xwv4000, xwv3000, cbc), new_esEs26(xwv4001, xwv3001, cbd)) 31.62/12.88 new_primCmpNat0(Zero, Succ(xwv4400)) -> LT 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), app(ty_[], chc), cba) -> new_esEs13(xwv4000, xwv3000, chc) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_@0) -> new_ltEs13(xwv43000, xwv44000) 31.62/12.88 new_esEs26(xwv4001, xwv3001, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs7(xwv4001, xwv3001, dbd, dbe, dbf) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_@2, deg), deh)) -> new_esEs6(xwv4000, xwv3000, deg, deh) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs12(xwv4300, xwv4400, bfb, bfc, bfd) 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Double, cba) -> new_esEs17(xwv4000, xwv3000) 31.62/12.88 new_esEs24(xwv43001, xwv44001, app(ty_[], cee)) -> new_esEs13(xwv43001, xwv44001, cee) 31.62/12.88 new_primCmpNat0(Succ(xwv4300), Zero) -> GT 31.62/12.88 new_ltEs21(xwv43001, xwv44001, app(app(ty_Either, dfc), dfd)) -> new_ltEs8(xwv43001, xwv44001, dfc, dfd) 31.62/12.88 new_esEs30(xwv400, xwv300, ty_Float) -> new_esEs15(xwv400, xwv300) 31.62/12.88 new_pePe(False, xwv181) -> xwv181 31.62/12.88 new_esEs10(xwv4002, xwv3002, ty_Double) -> new_esEs17(xwv4002, xwv3002) 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Ordering, cba) -> new_esEs8(xwv4000, xwv3000) 31.62/12.88 new_esEs11(xwv4001, xwv3001, ty_Int) -> new_esEs9(xwv4001, xwv3001) 31.62/12.88 new_esEs25(xwv43000, xwv44000, ty_Integer) -> new_esEs14(xwv43000, xwv44000) 31.62/12.88 new_lt20(xwv43000, xwv44000, app(app(app(ty_@3, bfe), bff), bfg)) -> new_lt9(xwv43000, xwv44000, bfe, bff, bfg) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, ty_@0) -> new_ltEs13(xwv4300, xwv4400) 31.62/12.88 new_lt20(xwv43000, xwv44000, app(ty_Ratio, cge)) -> new_lt16(xwv43000, xwv44000, cge) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Ordering, bae) -> new_ltEs9(xwv43000, xwv44000) 31.62/12.88 new_lt13(xwv43001, xwv44001, app(ty_Maybe, ced)) -> new_lt17(xwv43001, xwv44001, ced) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, ty_Bool) -> new_ltEs17(xwv4300, xwv4400) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(ty_Maybe, dah)) -> new_esEs5(xwv4000, xwv3000, dah) 31.62/12.88 new_compare26(Left(xwv4300), Right(xwv4400), False, bdc, bdd) -> LT 31.62/12.88 new_esEs8(LT, EQ) -> False 31.62/12.88 new_esEs8(EQ, LT) -> False 31.62/12.88 new_esEs27(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.88 new_esEs10(xwv4002, xwv3002, ty_Char) -> new_esEs18(xwv4002, xwv3002) 31.62/12.88 new_lt13(xwv43001, xwv44001, ty_Bool) -> new_lt4(xwv43001, xwv44001) 31.62/12.88 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 31.62/12.88 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 31.62/12.88 new_esEs28(xwv43000, xwv44000, ty_@0) -> new_esEs16(xwv43000, xwv44000) 31.62/12.88 new_compare28(xwv43000, xwv44000, False, df, dg) -> new_compare116(xwv43000, xwv44000, new_ltEs11(xwv43000, xwv44000, df, dg), df, dg) 31.62/12.88 new_esEs11(xwv4001, xwv3001, app(ty_Maybe, gf)) -> new_esEs5(xwv4001, xwv3001, gf) 31.62/12.88 new_esEs24(xwv43001, xwv44001, app(app(ty_@2, cef), ceg)) -> new_esEs6(xwv43001, xwv44001, cef, ceg) 31.62/12.88 new_lt12(xwv43000, xwv44000, app(app(ty_Either, ccg), cch)) -> new_lt15(xwv43000, xwv44000, ccg, cch) 31.62/12.88 new_compare114(xwv43000, xwv44000, True) -> LT 31.62/12.88 new_compare25(xwv43000, xwv44000, False) -> new_compare112(xwv43000, xwv44000, new_ltEs17(xwv43000, xwv44000)) 31.62/12.88 new_ltEs20(xwv43002, xwv44002, ty_@0) -> new_ltEs13(xwv43002, xwv44002) 31.62/12.88 new_esEs26(xwv4001, xwv3001, app(ty_[], dbg)) -> new_esEs13(xwv4001, xwv3001, dbg) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Float) -> new_ltEs16(xwv43000, xwv44000) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Int) -> new_ltEs6(xwv43000, xwv44000) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs12(xwv4300, xwv4400, bdh, bea, beb) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, ty_Ordering) -> new_ltEs9(xwv4300, xwv4400) 31.62/12.88 new_esEs5(Nothing, Nothing, cbb) -> True 31.62/12.88 new_compare6(xwv43000, xwv44000, ty_Int) -> new_compare7(xwv43000, xwv44000) 31.62/12.88 new_esEs12(xwv4000, xwv3000, app(ty_Ratio, bac)) -> new_esEs20(xwv4000, xwv3000, bac) 31.62/12.88 new_esEs29(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 31.62/12.88 new_compare17(Double(xwv43000, Neg(xwv430010)), Double(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.62/12.88 new_compare14(xwv43000, xwv44000, bfe, bff, bfg) -> new_compare27(xwv43000, xwv44000, new_esEs7(xwv43000, xwv44000, bfe, bff, bfg), bfe, bff, bfg) 31.62/12.88 new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 31.62/12.88 new_esEs25(xwv43000, xwv44000, ty_Ordering) -> new_esEs8(xwv43000, xwv44000) 31.62/12.88 new_esEs5(Nothing, Just(xwv3000), cbb) -> False 31.62/12.88 new_esEs5(Just(xwv4000), Nothing, cbb) -> False 31.62/12.88 new_primCmpInt(Neg(Zero), Pos(Succ(xwv4400))) -> LT 31.62/12.88 new_ltEs19(xwv4300, xwv4400, ty_Char) -> new_ltEs14(xwv4300, xwv4400) 31.62/12.88 new_esEs30(xwv400, xwv300, ty_Bool) -> new_esEs19(xwv400, xwv300) 31.62/12.88 new_primMulInt(Pos(xwv40010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 31.62/12.88 new_compare6(xwv43000, xwv44000, ty_Ordering) -> new_compare10(xwv43000, xwv44000) 31.62/12.88 new_esEs23(xwv4000, xwv3000, app(app(ty_Either, cca), ccb)) -> new_esEs4(xwv4000, xwv3000, cca, ccb) 31.62/12.88 new_ltEs20(xwv43002, xwv44002, ty_Double) -> new_ltEs15(xwv43002, xwv44002) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.88 new_compare10(xwv43000, xwv44000) -> new_compare24(xwv43000, xwv44000, new_esEs8(xwv43000, xwv44000)) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Double) -> new_ltEs15(xwv43000, xwv44000) 31.62/12.88 new_esEs13(:(xwv4000, xwv4001), [], cag) -> False 31.62/12.88 new_esEs13([], :(xwv3000, xwv3001), cag) -> False 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Bool) -> new_ltEs17(xwv43000, xwv44000) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.88 new_esEs26(xwv4001, xwv3001, app(app(ty_@2, dcc), dcd)) -> new_esEs6(xwv4001, xwv3001, dcc, dcd) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(app(ty_@3, ddh), dea), deb)) -> new_esEs7(xwv4000, xwv3000, ddh, dea, deb) 31.62/12.88 new_esEs11(xwv4001, xwv3001, app(app(ty_Either, gd), ge)) -> new_esEs4(xwv4001, xwv3001, gd, ge) 31.62/12.88 new_ltEs8(Right(xwv43000), Left(xwv44000), bbh, bae) -> False 31.62/12.88 new_lt11(xwv43000, xwv44000) -> new_esEs8(new_compare10(xwv43000, xwv44000), LT) 31.62/12.88 new_ltEs11(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), bdf, bdg) -> new_pePe(new_lt20(xwv43000, xwv44000, bdf), new_asAs(new_esEs28(xwv43000, xwv44000, bdf), new_ltEs21(xwv43001, xwv44001, bdg))) 31.62/12.88 new_esEs12(xwv4000, xwv3000, app(app(ty_@2, baa), bab)) -> new_esEs6(xwv4000, xwv3000, baa, bab) 31.62/12.88 new_primMulNat0(Succ(xwv400100), Zero) -> Zero 31.62/12.88 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 31.62/12.88 new_esEs29(xwv400, xwv300, ty_Integer) -> new_esEs14(xwv400, xwv300) 31.62/12.88 new_lt20(xwv43000, xwv44000, ty_Double) -> new_lt8(xwv43000, xwv44000) 31.62/12.88 new_primPlusNat0(Zero, xwv300000) -> Succ(xwv300000) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Integer, bae) -> new_ltEs5(xwv43000, xwv44000) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.88 new_ltEs9(GT, EQ) -> False 31.62/12.88 new_ltEs15(xwv4300, xwv4400) -> new_fsEs(new_compare17(xwv4300, xwv4400)) 31.62/12.88 new_esEs11(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 31.62/12.88 new_esEs29(xwv400, xwv300, ty_Bool) -> new_esEs19(xwv400, xwv300) 31.62/12.88 new_esEs23(xwv4000, xwv3000, app(ty_Maybe, ccc)) -> new_esEs5(xwv4000, xwv3000, ccc) 31.62/12.88 new_esEs10(xwv4002, xwv3002, app(ty_Ratio, fg)) -> new_esEs20(xwv4002, xwv3002, fg) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(ty_Ratio, dbc)) -> new_esEs20(xwv4000, xwv3000, dbc) 31.62/12.88 new_lt13(xwv43001, xwv44001, app(ty_[], cee)) -> new_lt18(xwv43001, xwv44001, cee) 31.62/12.88 new_compare27(xwv43000, xwv44000, True, bfe, bff, bfg) -> EQ 31.62/12.88 new_esEs10(xwv4002, xwv3002, app(app(ty_Either, fa), fb)) -> new_esEs4(xwv4002, xwv3002, fa, fb) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(app(ty_Either, bca), bcb)) -> new_ltEs8(xwv43000, xwv44000, bca, bcb) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), app(ty_Ratio, bhg)) -> new_ltEs7(xwv43000, xwv44000, bhg) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Char, bae) -> new_ltEs14(xwv43000, xwv44000) 31.62/12.88 new_esEs22(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.88 new_lt6(xwv43000, xwv44000) -> new_esEs8(new_compare15(xwv43000, xwv44000), LT) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, app(app(ty_Either, bec), bed)) -> new_ltEs8(xwv4300, xwv4400, bec, bed) 31.62/12.88 new_compare7(xwv43, xwv44) -> new_primCmpInt(xwv43, xwv44) 31.62/12.88 new_esEs8(LT, LT) -> True 31.62/12.88 new_ltEs18(xwv4300, xwv4400, app(app(ty_@2, bdf), bdg)) -> new_ltEs11(xwv4300, xwv4400, bdf, bdg) 31.62/12.88 new_esEs10(xwv4002, xwv3002, ty_Float) -> new_esEs15(xwv4002, xwv3002) 31.62/12.88 new_esEs30(xwv400, xwv300, ty_@0) -> new_esEs16(xwv400, xwv300) 31.62/12.88 new_primPlusNat1(Succ(xwv33200), Zero) -> Succ(xwv33200) 31.62/12.88 new_primPlusNat1(Zero, Succ(xwv13100)) -> Succ(xwv13100) 31.62/12.88 new_esEs24(xwv43001, xwv44001, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs7(xwv43001, xwv44001, ceh, cfa, cfb) 31.62/12.88 new_esEs20(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), bhd) -> new_asAs(new_esEs22(xwv4000, xwv3000, bhd), new_esEs21(xwv4001, xwv3001, bhd)) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, ty_Bool) -> new_ltEs17(xwv43001, xwv44001) 31.62/12.88 new_esEs11(xwv4001, xwv3001, app(ty_Ratio, ha)) -> new_esEs20(xwv4001, xwv3001, ha) 31.62/12.88 new_lt20(xwv43000, xwv44000, ty_Char) -> new_lt10(xwv43000, xwv44000) 31.62/12.88 new_compare116(xwv43000, xwv44000, False, df, dg) -> GT 31.62/12.88 new_esEs30(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 31.62/12.88 new_compare9(:%(xwv43000, xwv43001), :%(xwv44000, xwv44001), ty_Int) -> new_compare7(new_sr(xwv43000, xwv44001), new_sr(xwv44000, xwv43001)) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(app(ty_@2, bcf), bcg)) -> new_ltEs11(xwv43000, xwv44000, bcf, bcg) 31.62/12.88 new_ltEs9(GT, GT) -> True 31.62/12.88 new_esEs11(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Int) -> new_ltEs6(xwv43000, xwv44000) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Ratio, dfa)) -> new_esEs20(xwv4000, xwv3000, dfa) 31.62/12.88 new_esEs23(xwv4000, xwv3000, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs7(xwv4000, xwv3000, cbe, cbf, cbg) 31.62/12.88 new_lt20(xwv43000, xwv44000, ty_Ordering) -> new_lt11(xwv43000, xwv44000) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_Either, ded), dee)) -> new_esEs4(xwv4000, xwv3000, ded, dee) 31.62/12.88 new_esEs28(xwv43000, xwv44000, ty_Integer) -> new_esEs14(xwv43000, xwv44000) 31.62/12.88 new_primMulInt(Neg(xwv40010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 31.62/12.88 new_primCmpInt(Pos(Zero), Pos(Succ(xwv4400))) -> new_primCmpNat0(Zero, Succ(xwv4400)) 31.62/12.88 new_esEs10(xwv4002, xwv3002, app(ty_Maybe, fc)) -> new_esEs5(xwv4002, xwv3002, fc) 31.62/12.88 new_ltEs20(xwv43002, xwv44002, ty_Bool) -> new_ltEs17(xwv43002, xwv44002) 31.62/12.88 new_esEs25(xwv43000, xwv44000, app(app(ty_@2, cdd), cde)) -> new_esEs6(xwv43000, xwv44000, cdd, cde) 31.62/12.88 new_esEs12(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.88 new_lt12(xwv43000, xwv44000, ty_Bool) -> new_lt4(xwv43000, xwv44000) 31.62/12.88 new_esEs12(xwv4000, xwv3000, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs7(xwv4000, xwv3000, hb, hc, hd) 31.62/12.88 new_compare114(xwv43000, xwv44000, False) -> GT 31.62/12.88 new_esEs21(xwv4001, xwv3001, ty_Int) -> new_esEs9(xwv4001, xwv3001) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Maybe, def)) -> new_esEs5(xwv4000, xwv3000, def) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, ty_Char) -> new_ltEs14(xwv4300, xwv4400) 31.62/12.88 new_esEs23(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, app(app(ty_Either, bbh), bae)) -> new_ltEs8(xwv4300, xwv4400, bbh, bae) 31.62/12.88 new_lt20(xwv43000, xwv44000, ty_Float) -> new_lt19(xwv43000, xwv44000) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), app(ty_Ratio, bah), bae) -> new_ltEs7(xwv43000, xwv44000, bah) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, ty_Double) -> new_ltEs15(xwv43001, xwv44001) 31.62/12.88 new_compare112(xwv43000, xwv44000, True) -> LT 31.62/12.88 new_compare113(xwv160, xwv161, True, cgf, cgg) -> LT 31.62/12.88 new_compare6(xwv43000, xwv44000, app(ty_Ratio, cd)) -> new_compare9(xwv43000, xwv44000, cd) 31.62/12.88 new_esEs10(xwv4002, xwv3002, ty_@0) -> new_esEs16(xwv4002, xwv3002) 31.62/12.88 new_ltEs6(xwv4300, xwv4400) -> new_fsEs(new_compare7(xwv4300, xwv4400)) 31.62/12.88 new_primMulInt(Pos(xwv40010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 31.62/12.88 new_primMulInt(Neg(xwv40010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 31.62/12.88 new_ltEs21(xwv43001, xwv44001, app(ty_Ratio, dfe)) -> new_ltEs7(xwv43001, xwv44001, dfe) 31.62/12.88 new_esEs26(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 31.62/12.88 new_esEs23(xwv4000, xwv3000, app(app(ty_@2, ccd), cce)) -> new_esEs6(xwv4000, xwv3000, ccd, cce) 31.62/12.88 new_esEs11(xwv4001, xwv3001, ty_Char) -> new_esEs18(xwv4001, xwv3001) 31.62/12.88 new_compare6(xwv43000, xwv44000, app(app(ty_Either, cb), cc)) -> new_compare8(xwv43000, xwv44000, cb, cc) 31.62/12.88 new_esEs23(xwv4000, xwv3000, app(ty_[], cbh)) -> new_esEs13(xwv4000, xwv3000, cbh) 31.62/12.88 new_lt10(xwv43000, xwv44000) -> new_esEs8(new_compare16(xwv43000, xwv44000), LT) 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Float, cba) -> new_esEs15(xwv4000, xwv3000) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(ty_[], bce)) -> new_ltEs10(xwv43000, xwv44000, bce) 31.62/12.88 new_lt20(xwv43000, xwv44000, ty_@0) -> new_lt6(xwv43000, xwv44000) 31.62/12.88 new_lt8(xwv43000, xwv44000) -> new_esEs8(new_compare17(xwv43000, xwv44000), LT) 31.62/12.88 new_esEs11(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 31.62/12.88 new_sr0(Integer(xwv430000), Integer(xwv440010)) -> Integer(new_primMulInt(xwv430000, xwv440010)) 31.62/12.88 new_esEs24(xwv43001, xwv44001, ty_Integer) -> new_esEs14(xwv43001, xwv44001) 31.62/12.88 new_lt16(xwv43000, xwv44000, cge) -> new_esEs8(new_compare9(xwv43000, xwv44000, cge), LT) 31.62/12.88 new_esEs29(xwv400, xwv300, app(ty_Maybe, cbb)) -> new_esEs5(xwv400, xwv300, cbb) 31.62/12.88 new_esEs10(xwv4002, xwv3002, ty_Int) -> new_esEs9(xwv4002, xwv3002) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, ty_Bool) -> new_ltEs17(xwv4300, xwv4400) 31.62/12.88 new_compare18(Float(xwv43000, Pos(xwv430010)), Float(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.62/12.88 new_lt19(xwv43000, xwv44000) -> new_esEs8(new_compare18(xwv43000, xwv44000), LT) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), app(ty_[], caa)) -> new_ltEs10(xwv43000, xwv44000, caa) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, ty_@0) -> new_ltEs13(xwv4300, xwv4400) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_@0, bae) -> new_ltEs13(xwv43000, xwv44000) 31.62/12.88 new_esEs23(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.88 new_esEs28(xwv43000, xwv44000, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs7(xwv43000, xwv44000, bfe, bff, bfg) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.88 new_compare6(xwv43000, xwv44000, app(app(ty_@2, cg), da)) -> new_compare13(xwv43000, xwv44000, cg, da) 31.62/12.88 new_lt12(xwv43000, xwv44000, ty_Int) -> new_lt14(xwv43000, xwv44000) 31.62/12.88 new_esEs29(xwv400, xwv300, ty_@0) -> new_esEs16(xwv400, xwv300) 31.62/12.88 new_esEs25(xwv43000, xwv44000, ty_Int) -> new_esEs9(xwv43000, xwv44000) 31.62/12.88 new_compare0([], :(xwv44000, xwv44001), ca) -> LT 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.88 new_asAs(True, xwv95) -> xwv95 31.62/12.88 new_lt12(xwv43000, xwv44000, app(ty_Maybe, cdb)) -> new_lt17(xwv43000, xwv44000, cdb) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.88 new_esEs30(xwv400, xwv300, ty_Integer) -> new_esEs14(xwv400, xwv300) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs12(xwv43000, xwv44000, bch, bda, bdb) 31.62/12.88 new_esEs27(xwv4000, xwv3000, app(ty_[], dda)) -> new_esEs13(xwv4000, xwv3000, dda) 31.62/12.88 new_ltEs16(xwv4300, xwv4400) -> new_fsEs(new_compare18(xwv4300, xwv4400)) 31.62/12.88 new_ltEs4(Nothing, Just(xwv44000), bde) -> True 31.62/12.88 new_compare17(Double(xwv43000, Pos(xwv430010)), Double(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.62/12.88 new_compare17(Double(xwv43000, Neg(xwv430010)), Double(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.62/12.88 new_esEs23(xwv4000, xwv3000, app(ty_Ratio, ccf)) -> new_esEs20(xwv4000, xwv3000, ccf) 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), app(app(app(ty_@3, cgh), cha), chb), cba) -> new_esEs7(xwv4000, xwv3000, cgh, cha, chb) 31.62/12.88 new_esEs16(@0, @0) -> True 31.62/12.88 new_esEs4(Left(xwv4000), Left(xwv3000), app(app(ty_Either, chd), che), cba) -> new_esEs4(xwv4000, xwv3000, chd, che) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(app(ty_@2, dba), dbb)) -> new_esEs6(xwv4000, xwv3000, dba, dbb) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, app(ty_Maybe, bde)) -> new_ltEs4(xwv4300, xwv4400, bde) 31.62/12.88 new_esEs26(xwv4001, xwv3001, ty_Char) -> new_esEs18(xwv4001, xwv3001) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, ty_Double) -> new_ltEs15(xwv4300, xwv4400) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.88 new_compare111(xwv167, xwv168, False, dh, ea) -> GT 31.62/12.88 new_ltEs20(xwv43002, xwv44002, ty_Char) -> new_ltEs14(xwv43002, xwv44002) 31.62/12.88 new_ltEs20(xwv43002, xwv44002, ty_Float) -> new_ltEs16(xwv43002, xwv44002) 31.62/12.88 new_compare6(xwv43000, xwv44000, ty_Integer) -> new_compare11(xwv43000, xwv44000) 31.62/12.88 new_primCmpInt(Pos(Succ(xwv4300)), Pos(xwv440)) -> new_primCmpNat0(Succ(xwv4300), xwv440) 31.62/12.88 new_lt5(xwv43000, xwv44000, df, dg) -> new_esEs8(new_compare13(xwv43000, xwv44000, df, dg), LT) 31.62/12.88 new_primCompAux00(xwv186, EQ) -> xwv186 31.62/12.88 new_compare0([], [], ca) -> EQ 31.62/12.88 new_sr(xwv4001, xwv3000) -> new_primMulInt(xwv4001, xwv3000) 31.62/12.88 new_lt7(xwv43000, xwv44000) -> new_esEs8(new_compare11(xwv43000, xwv44000), LT) 31.62/12.88 new_esEs27(xwv4000, xwv3000, app(app(ty_@2, dde), ddf)) -> new_esEs6(xwv4000, xwv3000, dde, ddf) 31.62/12.88 new_esEs28(xwv43000, xwv44000, ty_Float) -> new_esEs15(xwv43000, xwv44000) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), app(app(ty_Either, bhe), bhf)) -> new_ltEs8(xwv43000, xwv44000, bhe, bhf) 31.62/12.88 new_lt4(xwv43000, xwv44000) -> new_esEs8(new_compare19(xwv43000, xwv44000), LT) 31.62/12.88 new_primMulNat0(Zero, Zero) -> Zero 31.62/12.88 new_esEs12(xwv4000, xwv3000, app(ty_[], he)) -> new_esEs13(xwv4000, xwv3000, he) 31.62/12.88 new_compare6(xwv43000, xwv44000, app(app(app(ty_@3, db), dc), dd)) -> new_compare14(xwv43000, xwv44000, db, dc, dd) 31.62/12.88 new_ltEs5(xwv4300, xwv4400) -> new_fsEs(new_compare11(xwv4300, xwv4400)) 31.62/12.88 new_esEs10(xwv4002, xwv3002, ty_Bool) -> new_esEs19(xwv4002, xwv3002) 31.62/12.88 new_esEs27(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.88 new_ltEs19(xwv4300, xwv4400, app(ty_Ratio, bee)) -> new_ltEs7(xwv4300, xwv4400, bee) 31.62/12.88 new_esEs24(xwv43001, xwv44001, app(ty_Maybe, ced)) -> new_esEs5(xwv43001, xwv44001, ced) 31.62/12.88 new_esEs30(xwv400, xwv300, app(ty_Maybe, bgf)) -> new_esEs5(xwv400, xwv300, bgf) 31.62/12.88 new_esEs12(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.88 new_esEs30(xwv400, xwv300, ty_Int) -> new_esEs9(xwv400, xwv300) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), app(app(ty_@2, cab), cac)) -> new_ltEs11(xwv43000, xwv44000, cab, cac) 31.62/12.88 new_compare11(Integer(xwv43000), Integer(xwv44000)) -> new_primCmpInt(xwv43000, xwv44000) 31.62/12.88 new_compare115(xwv43000, xwv44000, False, bfe, bff, bfg) -> GT 31.62/12.88 new_compare24(xwv43000, xwv44000, False) -> new_compare114(xwv43000, xwv44000, new_ltEs9(xwv43000, xwv44000)) 31.62/12.88 new_esEs25(xwv43000, xwv44000, app(app(ty_Either, ccg), cch)) -> new_esEs4(xwv43000, xwv44000, ccg, cch) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.88 new_esEs25(xwv43000, xwv44000, app(ty_Maybe, cdb)) -> new_esEs5(xwv43000, xwv44000, cdb) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(app(ty_Either, daf), dag)) -> new_esEs4(xwv4000, xwv3000, daf, dag) 31.62/12.88 new_lt20(xwv43000, xwv44000, ty_Integer) -> new_lt7(xwv43000, xwv44000) 31.62/12.88 new_esEs28(xwv43000, xwv44000, app(app(ty_@2, df), dg)) -> new_esEs6(xwv43000, xwv44000, df, dg) 31.62/12.88 new_ltEs9(GT, LT) -> False 31.62/12.88 new_esEs24(xwv43001, xwv44001, app(ty_Ratio, cec)) -> new_esEs20(xwv43001, xwv44001, cec) 31.62/12.88 new_ltEs17(False, False) -> True 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.88 new_compare18(Float(xwv43000, Neg(xwv430010)), Float(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.62/12.88 new_esEs12(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.88 new_esEs29(xwv400, xwv300, app(app(ty_Either, cah), cba)) -> new_esEs4(xwv400, xwv300, cah, cba) 31.62/12.88 new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False 31.62/12.88 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 31.62/12.88 new_esEs24(xwv43001, xwv44001, ty_Int) -> new_esEs9(xwv43001, xwv44001) 31.62/12.88 new_lt13(xwv43001, xwv44001, app(app(ty_@2, cef), ceg)) -> new_lt5(xwv43001, xwv44001, cef, ceg) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Double) -> new_ltEs15(xwv43000, xwv44000) 31.62/12.88 new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 31.62/12.88 new_ltEs9(EQ, GT) -> True 31.62/12.88 new_compare24(xwv43000, xwv44000, True) -> EQ 31.62/12.88 new_esEs11(xwv4001, xwv3001, ty_Bool) -> new_esEs19(xwv4001, xwv3001) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, ty_Integer) -> new_ltEs5(xwv4300, xwv4400) 31.62/12.88 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Bool) -> new_ltEs17(xwv43000, xwv44000) 31.62/12.88 new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> False 31.62/12.88 new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> False 31.62/12.88 new_esEs26(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 31.62/12.88 new_compare26(Right(xwv4300), Right(xwv4400), False, bdc, bdd) -> new_compare111(xwv4300, xwv4400, new_ltEs19(xwv4300, xwv4400, bdd), bdc, bdd) 31.62/12.88 new_ltEs20(xwv43002, xwv44002, app(ty_Ratio, cfe)) -> new_ltEs7(xwv43002, xwv44002, cfe) 31.62/12.88 new_ltEs8(Left(xwv43000), Left(xwv44000), app(ty_[], bbb), bae) -> new_ltEs10(xwv43000, xwv44000, bbb) 31.62/12.88 new_primCmpInt(Neg(Zero), Neg(Succ(xwv4400))) -> new_primCmpNat0(Succ(xwv4400), Zero) 31.62/12.88 new_esEs28(xwv43000, xwv44000, app(ty_[], dfb)) -> new_esEs13(xwv43000, xwv44000, dfb) 31.62/12.88 new_esEs30(xwv400, xwv300, app(app(ty_Either, bgd), bge)) -> new_esEs4(xwv400, xwv300, bgd, bge) 31.62/12.88 new_esEs29(xwv400, xwv300, ty_Int) -> new_esEs9(xwv400, xwv300) 31.62/12.88 new_esEs24(xwv43001, xwv44001, app(app(ty_Either, cea), ceb)) -> new_esEs4(xwv43001, xwv44001, cea, ceb) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.88 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 31.62/12.88 new_compare6(xwv43000, xwv44000, ty_Double) -> new_compare17(xwv43000, xwv44000) 31.62/12.88 new_ltEs17(True, False) -> False 31.62/12.88 new_compare8(xwv43000, xwv44000, bhb, bhc) -> new_compare26(xwv43000, xwv44000, new_esEs4(xwv43000, xwv44000, bhb, bhc), bhb, bhc) 31.62/12.88 new_esEs27(xwv4000, xwv3000, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.88 new_esEs28(xwv43000, xwv44000, app(ty_Maybe, de)) -> new_esEs5(xwv43000, xwv44000, de) 31.62/12.88 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_[], dec)) -> new_esEs13(xwv4000, xwv3000, dec) 31.62/12.88 new_lt12(xwv43000, xwv44000, app(ty_Ratio, cda)) -> new_lt16(xwv43000, xwv44000, cda) 31.62/12.88 new_ltEs17(False, True) -> True 31.62/12.88 new_lt13(xwv43001, xwv44001, ty_Float) -> new_lt19(xwv43001, xwv44001) 31.62/12.88 new_primCompAux0(xwv43000, xwv44000, xwv182, ca) -> new_primCompAux00(xwv182, new_compare6(xwv43000, xwv44000, ca)) 31.62/12.88 new_esEs24(xwv43001, xwv44001, ty_Float) -> new_esEs15(xwv43001, xwv44001) 31.62/12.88 new_esEs29(xwv400, xwv300, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs7(xwv400, xwv300, eb, ec, ed) 31.62/12.88 new_esEs30(xwv400, xwv300, app(ty_Ratio, bha)) -> new_esEs20(xwv400, xwv300, bha) 31.62/12.88 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.62/12.88 new_esEs10(xwv4002, xwv3002, ty_Integer) -> new_esEs14(xwv4002, xwv3002) 31.62/12.88 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Integer) -> new_ltEs5(xwv43000, xwv44000) 31.62/12.88 new_esEs11(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 31.62/12.88 new_ltEs8(Left(xwv43000), Right(xwv44000), bbh, bae) -> True 31.62/12.88 new_lt13(xwv43001, xwv44001, ty_@0) -> new_lt6(xwv43001, xwv44001) 31.62/12.88 new_not(False) -> True 31.62/12.88 new_esEs28(xwv43000, xwv44000, ty_Int) -> new_esEs9(xwv43000, xwv44000) 31.62/12.88 new_esEs30(xwv400, xwv300, app(app(ty_@2, bgg), bgh)) -> new_esEs6(xwv400, xwv300, bgg, bgh) 31.62/12.88 new_compare0(:(xwv43000, xwv43001), [], ca) -> GT 31.62/12.88 new_esEs8(LT, GT) -> False 31.62/12.88 new_esEs8(GT, LT) -> False 31.62/12.88 new_lt20(xwv43000, xwv44000, app(app(ty_@2, df), dg)) -> new_lt5(xwv43000, xwv44000, df, dg) 31.62/12.88 new_esEs25(xwv43000, xwv44000, ty_Double) -> new_esEs17(xwv43000, xwv44000) 31.62/12.88 new_esEs30(xwv400, xwv300, app(app(app(ty_@3, bfh), bga), bgb)) -> new_esEs7(xwv400, xwv300, bfh, bga, bgb) 31.62/12.88 new_esEs24(xwv43001, xwv44001, ty_@0) -> new_esEs16(xwv43001, xwv44001) 31.62/12.88 new_esEs12(xwv4000, xwv3000, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.88 new_compare25(xwv43000, xwv44000, True) -> EQ 31.62/12.88 new_esEs23(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.88 new_ltEs18(xwv4300, xwv4400, ty_Int) -> new_ltEs6(xwv4300, xwv4400) 31.62/12.88 new_esEs27(xwv4000, xwv3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs7(xwv4000, xwv3000, dcf, dcg, dch) 31.62/12.88 new_primPlusNat0(Succ(xwv1400), xwv300000) -> Succ(Succ(new_primPlusNat1(xwv1400, xwv300000))) 31.62/12.89 new_esEs26(xwv4001, xwv3001, app(ty_Maybe, dcb)) -> new_esEs5(xwv4001, xwv3001, dcb) 31.62/12.89 new_esEs13(:(xwv4000, xwv4001), :(xwv3000, xwv3001), cag) -> new_asAs(new_esEs23(xwv4000, xwv3000, cag), new_esEs13(xwv4001, xwv3001, cag)) 31.62/12.89 new_esEs24(xwv43001, xwv44001, ty_Bool) -> new_esEs19(xwv43001, xwv44001) 31.62/12.89 new_ltEs9(LT, EQ) -> True 31.62/12.89 new_esEs29(xwv400, xwv300, app(ty_Ratio, bhd)) -> new_esEs20(xwv400, xwv300, bhd) 31.62/12.89 new_esEs29(xwv400, xwv300, app(app(ty_@2, cbc), cbd)) -> new_esEs6(xwv400, xwv300, cbc, cbd) 31.62/12.89 new_esEs4(Left(xwv4000), Left(xwv3000), app(ty_Maybe, chf), cba) -> new_esEs5(xwv4000, xwv3000, chf) 31.62/12.89 new_esEs30(xwv400, xwv300, app(ty_[], bgc)) -> new_esEs13(xwv400, xwv300, bgc) 31.62/12.89 new_ltEs7(xwv4300, xwv4400, bad) -> new_fsEs(new_compare9(xwv4300, xwv4400, bad)) 31.62/12.89 new_compare16(Char(xwv43000), Char(xwv44000)) -> new_primCmpNat0(xwv43000, xwv44000) 31.62/12.89 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 31.62/12.89 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 31.62/12.89 new_compare0(:(xwv43000, xwv43001), :(xwv44000, xwv44001), ca) -> new_primCompAux0(xwv43000, xwv44000, new_compare0(xwv43001, xwv44001, ca), ca) 31.62/12.89 new_primPlusNat1(Zero, Zero) -> Zero 31.62/12.89 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Float, bae) -> new_ltEs16(xwv43000, xwv44000) 31.62/12.89 new_lt20(xwv43000, xwv44000, app(app(ty_Either, bhb), bhc)) -> new_lt15(xwv43000, xwv44000, bhb, bhc) 31.62/12.89 new_compare6(xwv43000, xwv44000, ty_Bool) -> new_compare19(xwv43000, xwv44000) 31.62/12.89 new_lt12(xwv43000, xwv44000, app(app(ty_@2, cdd), cde)) -> new_lt5(xwv43000, xwv44000, cdd, cde) 31.62/12.89 new_esEs26(xwv4001, xwv3001, app(ty_Ratio, dce)) -> new_esEs20(xwv4001, xwv3001, dce) 31.62/12.89 new_lt12(xwv43000, xwv44000, ty_Ordering) -> new_lt11(xwv43000, xwv44000) 31.62/12.89 new_ltEs21(xwv43001, xwv44001, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_ltEs12(xwv43001, xwv44001, dgb, dgc, dgd) 31.62/12.89 new_esEs28(xwv43000, xwv44000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xwv43000, xwv44000, bhb, bhc) 31.62/12.89 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Ordering) -> new_ltEs9(xwv43000, xwv44000) 31.62/12.89 new_esEs26(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 31.62/12.89 new_esEs12(xwv4000, xwv3000, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.62/12.89 new_ltEs9(LT, GT) -> True 31.62/12.89 new_esEs27(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.62/12.89 new_esEs12(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.89 new_compare6(xwv43000, xwv44000, ty_@0) -> new_compare15(xwv43000, xwv44000) 31.62/12.89 new_esEs26(xwv4001, xwv3001, ty_Bool) -> new_esEs19(xwv4001, xwv3001) 31.62/12.89 new_esEs26(xwv4001, xwv3001, app(app(ty_Either, dbh), dca)) -> new_esEs4(xwv4001, xwv3001, dbh, dca) 31.62/12.89 new_ltEs20(xwv43002, xwv44002, app(ty_[], cfg)) -> new_ltEs10(xwv43002, xwv44002, cfg) 31.62/12.89 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 31.62/12.89 new_lt20(xwv43000, xwv44000, app(ty_[], dfb)) -> new_lt18(xwv43000, xwv44000, dfb) 31.62/12.89 new_primMulNat0(Succ(xwv400100), Succ(xwv300000)) -> new_primPlusNat0(new_primMulNat0(xwv400100, Succ(xwv300000)), xwv300000) 31.62/12.89 new_esEs27(xwv4000, xwv3000, app(ty_Ratio, ddg)) -> new_esEs20(xwv4000, xwv3000, ddg) 31.62/12.89 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Int, bae) -> new_ltEs6(xwv43000, xwv44000) 31.62/12.89 new_ltEs21(xwv43001, xwv44001, app(ty_[], dfg)) -> new_ltEs10(xwv43001, xwv44001, dfg) 31.62/12.89 new_esEs21(xwv4001, xwv3001, ty_Integer) -> new_esEs14(xwv4001, xwv3001) 31.62/12.89 new_primCmpNat0(Succ(xwv4300), Succ(xwv4400)) -> new_primCmpNat0(xwv4300, xwv4400) 31.62/12.89 new_compare9(:%(xwv43000, xwv43001), :%(xwv44000, xwv44001), ty_Integer) -> new_compare11(new_sr0(xwv43000, xwv44001), new_sr0(xwv44000, xwv43001)) 31.62/12.89 new_lt13(xwv43001, xwv44001, ty_Double) -> new_lt8(xwv43001, xwv44001) 31.62/12.89 new_lt13(xwv43001, xwv44001, ty_Char) -> new_lt10(xwv43001, xwv44001) 31.62/12.89 new_ltEs21(xwv43001, xwv44001, ty_Integer) -> new_ltEs5(xwv43001, xwv44001) 31.62/12.89 new_esEs28(xwv43000, xwv44000, ty_Ordering) -> new_esEs8(xwv43000, xwv44000) 31.62/12.89 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Integer, cba) -> new_esEs14(xwv4000, xwv3000) 31.62/12.89 new_ltEs19(xwv4300, xwv4400, ty_Float) -> new_ltEs16(xwv4300, xwv4400) 31.62/12.89 new_esEs4(Left(xwv4000), Left(xwv3000), app(ty_Ratio, daa), cba) -> new_esEs20(xwv4000, xwv3000, daa) 31.62/12.89 new_ltEs12(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bdh, bea, beb) -> new_pePe(new_lt12(xwv43000, xwv44000, bdh), new_asAs(new_esEs25(xwv43000, xwv44000, bdh), new_pePe(new_lt13(xwv43001, xwv44001, bea), new_asAs(new_esEs24(xwv43001, xwv44001, bea), new_ltEs20(xwv43002, xwv44002, beb))))) 31.62/12.89 new_ltEs21(xwv43001, xwv44001, app(ty_Maybe, dff)) -> new_ltEs4(xwv43001, xwv44001, dff) 31.62/12.89 new_esEs24(xwv43001, xwv44001, ty_Char) -> new_esEs18(xwv43001, xwv44001) 31.62/12.89 new_esEs27(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.89 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 31.62/12.89 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 31.62/12.89 new_esEs28(xwv43000, xwv44000, app(ty_Ratio, cge)) -> new_esEs20(xwv43000, xwv44000, cge) 31.62/12.89 new_ltEs9(EQ, LT) -> False 31.62/12.89 new_compare26(Left(xwv4300), Left(xwv4400), False, bdc, bdd) -> new_compare113(xwv4300, xwv4400, new_ltEs18(xwv4300, xwv4400, bdc), bdc, bdd) 31.62/12.89 new_ltEs19(xwv4300, xwv4400, app(ty_Maybe, bef)) -> new_ltEs4(xwv4300, xwv4400, bef) 31.62/12.89 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Char) -> new_ltEs14(xwv43000, xwv44000) 31.62/12.89 new_primEqNat0(Zero, Zero) -> True 31.62/12.89 new_lt12(xwv43000, xwv44000, ty_Double) -> new_lt8(xwv43000, xwv44000) 31.62/12.89 new_ltEs18(xwv4300, xwv4400, ty_Float) -> new_ltEs16(xwv4300, xwv4400) 31.62/12.89 new_esEs29(xwv400, xwv300, ty_Ordering) -> new_esEs8(xwv400, xwv300) 31.62/12.89 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(ty_Ratio, bcc)) -> new_ltEs7(xwv43000, xwv44000, bcc) 31.62/12.89 new_compare110(xwv43000, xwv44000, True, de) -> LT 31.62/12.89 new_esEs26(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 31.62/12.89 new_esEs25(xwv43000, xwv44000, ty_Char) -> new_esEs18(xwv43000, xwv44000) 31.62/12.89 new_esEs11(xwv4001, xwv3001, ty_Integer) -> new_esEs14(xwv4001, xwv3001) 31.62/12.89 new_ltEs17(True, True) -> True 31.62/12.89 new_lt13(xwv43001, xwv44001, ty_Ordering) -> new_lt11(xwv43001, xwv44001) 31.62/12.89 new_asAs(False, xwv95) -> False 31.62/12.89 new_ltEs8(Left(xwv43000), Left(xwv44000), app(app(app(ty_@3, bbe), bbf), bbg), bae) -> new_ltEs12(xwv43000, xwv44000, bbe, bbf, bbg) 31.62/12.89 new_lt12(xwv43000, xwv44000, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_lt9(xwv43000, xwv44000, cdf, cdg, cdh) 31.62/12.89 new_ltEs4(Just(xwv43000), Just(xwv44000), app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs12(xwv43000, xwv44000, cad, cae, caf) 31.62/12.89 new_lt20(xwv43000, xwv44000, app(ty_Maybe, de)) -> new_lt17(xwv43000, xwv44000, de) 31.62/12.89 new_ltEs19(xwv4300, xwv4400, app(ty_[], beg)) -> new_ltEs10(xwv4300, xwv4400, beg) 31.62/12.89 new_lt13(xwv43001, xwv44001, app(ty_Ratio, cec)) -> new_lt16(xwv43001, xwv44001, cec) 31.62/12.89 new_esEs26(xwv4001, xwv3001, ty_Int) -> new_esEs9(xwv4001, xwv3001) 31.62/12.89 new_esEs27(xwv4000, xwv3000, app(ty_Maybe, ddd)) -> new_esEs5(xwv4000, xwv3000, ddd) 31.62/12.89 new_esEs25(xwv43000, xwv44000, ty_@0) -> new_esEs16(xwv43000, xwv44000) 31.62/12.89 new_compare28(xwv43000, xwv44000, True, df, dg) -> EQ 31.62/12.89 new_esEs22(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.89 new_esEs14(Integer(xwv4000), Integer(xwv3000)) -> new_primEqInt(xwv4000, xwv3000) 31.62/12.89 new_lt13(xwv43001, xwv44001, ty_Int) -> new_lt14(xwv43001, xwv44001) 31.62/12.89 new_ltEs20(xwv43002, xwv44002, app(ty_Maybe, cff)) -> new_ltEs4(xwv43002, xwv44002, cff) 31.62/12.89 new_esEs27(xwv4000, xwv3000, app(app(ty_Either, ddb), ddc)) -> new_esEs4(xwv4000, xwv3000, ddb, ddc) 31.62/12.89 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.62/12.89 new_esEs8(EQ, GT) -> False 31.62/12.89 new_esEs8(GT, EQ) -> False 31.62/12.89 new_lt9(xwv43000, xwv44000, bfe, bff, bfg) -> new_esEs8(new_compare14(xwv43000, xwv44000, bfe, bff, bfg), LT) 31.62/12.89 new_compare13(xwv43000, xwv44000, df, dg) -> new_compare28(xwv43000, xwv44000, new_esEs6(xwv43000, xwv44000, df, dg), df, dg) 31.62/12.89 new_ltEs9(EQ, EQ) -> True 31.62/12.89 new_esEs19(True, True) -> True 31.62/12.89 new_esEs25(xwv43000, xwv44000, ty_Bool) -> new_esEs19(xwv43000, xwv44000) 31.62/12.89 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Ordering) -> new_ltEs9(xwv43000, xwv44000) 31.62/12.89 31.62/12.89 The set Q consists of the following terms: 31.62/12.89 31.62/12.89 new_esEs29(x0, x1, ty_Integer) 31.62/12.89 new_esEs26(x0, x1, ty_Ordering) 31.62/12.89 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 31.62/12.89 new_esEs8(EQ, EQ) 31.62/12.89 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 31.62/12.89 new_lt5(x0, x1, x2, x3) 31.62/12.89 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 31.62/12.89 new_ltEs20(x0, x1, ty_Bool) 31.62/12.89 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 31.62/12.89 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_esEs30(x0, x1, ty_Int) 31.62/12.89 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 31.62/12.89 new_esEs12(x0, x1, ty_Integer) 31.62/12.89 new_ltEs19(x0, x1, ty_Float) 31.62/12.89 new_compare110(x0, x1, False, x2) 31.62/12.89 new_esEs13(:(x0, x1), :(x2, x3), x4) 31.62/12.89 new_esEs24(x0, x1, ty_Char) 31.62/12.89 new_ltEs18(x0, x1, ty_Int) 31.62/12.89 new_esEs5(Just(x0), Just(x1), ty_Float) 31.62/12.89 new_lt18(x0, x1, x2) 31.62/12.89 new_compare26(x0, x1, True, x2, x3) 31.62/12.89 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_esEs30(x0, x1, ty_Char) 31.62/12.89 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_primPlusNat1(Zero, Zero) 31.62/12.89 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 31.62/12.89 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 31.62/12.89 new_lt8(x0, x1) 31.62/12.89 new_esEs18(Char(x0), Char(x1)) 31.62/12.89 new_primPlusNat1(Succ(x0), Zero) 31.62/12.89 new_esEs25(x0, x1, ty_Ordering) 31.62/12.89 new_esEs28(x0, x1, app(ty_[], x2)) 31.62/12.89 new_esEs29(x0, x1, app(ty_[], x2)) 31.62/12.89 new_ltEs18(x0, x1, ty_Ordering) 31.62/12.89 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_compare28(x0, x1, False, x2, x3) 31.62/12.89 new_esEs23(x0, x1, ty_Double) 31.62/12.89 new_esEs24(x0, x1, ty_Int) 31.62/12.89 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_esEs19(False, False) 31.62/12.89 new_sr(x0, x1) 31.62/12.89 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_esEs26(x0, x1, ty_Int) 31.62/12.89 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_esEs11(x0, x1, ty_Float) 31.62/12.89 new_lt6(x0, x1) 31.62/12.89 new_lt10(x0, x1) 31.62/12.89 new_compare0([], [], x0) 31.62/12.89 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 31.62/12.89 new_primEqInt(Pos(Zero), Pos(Zero)) 31.62/12.89 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 31.62/12.89 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 31.62/12.89 new_lt20(x0, x1, ty_Ordering) 31.62/12.89 new_esEs30(x0, x1, ty_Ordering) 31.62/12.89 new_ltEs18(x0, x1, ty_Char) 31.62/12.89 new_esEs11(x0, x1, app(ty_[], x2)) 31.62/12.89 new_lt20(x0, x1, ty_Double) 31.62/12.89 new_esEs12(x0, x1, ty_Bool) 31.62/12.89 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 31.62/12.89 new_esEs10(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 31.62/12.89 new_ltEs21(x0, x1, ty_Bool) 31.62/12.89 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 31.62/12.89 new_ltEs20(x0, x1, ty_@0) 31.62/12.89 new_esEs23(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_esEs10(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 31.62/12.89 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_esEs11(x0, x1, ty_Integer) 31.62/12.89 new_ltEs9(EQ, EQ) 31.62/12.89 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 31.62/12.89 new_primEqInt(Neg(Zero), Neg(Zero)) 31.62/12.89 new_compare27(x0, x1, False, x2, x3, x4) 31.62/12.89 new_ltEs18(x0, x1, ty_Double) 31.62/12.89 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 31.62/12.89 new_esEs27(x0, x1, ty_Double) 31.62/12.89 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_ltEs10(x0, x1, x2) 31.62/12.89 new_lt12(x0, x1, app(ty_[], x2)) 31.62/12.89 new_esEs28(x0, x1, ty_Float) 31.62/12.89 new_ltEs4(Nothing, Nothing, x0) 31.62/12.89 new_compare24(x0, x1, True) 31.62/12.89 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 31.62/12.89 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 31.62/12.89 new_primMulInt(Pos(x0), Neg(x1)) 31.62/12.89 new_primMulInt(Neg(x0), Pos(x1)) 31.62/12.89 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_compare25(x0, x1, False) 31.62/12.89 new_primMulInt(Neg(x0), Neg(x1)) 31.62/12.89 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_esEs29(x0, x1, ty_@0) 31.62/12.89 new_esEs23(x0, x1, ty_Int) 31.62/12.89 new_lt13(x0, x1, ty_Double) 31.62/12.89 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_esEs24(x0, x1, ty_Ordering) 31.62/12.89 new_primEqNat0(Succ(x0), Succ(x1)) 31.62/12.89 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 31.62/12.89 new_ltEs17(True, True) 31.62/12.89 new_esEs12(x0, x1, ty_@0) 31.62/12.89 new_esEs23(x0, x1, ty_Char) 31.62/12.89 new_esEs29(x0, x1, ty_Bool) 31.62/12.89 new_esEs29(x0, x1, ty_Float) 31.62/12.89 new_ltEs21(x0, x1, ty_Double) 31.62/12.89 new_esEs10(x0, x1, app(ty_[], x2)) 31.62/12.89 new_esEs29(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_esEs27(x0, x1, ty_Ordering) 31.62/12.89 new_compare23(x0, x1, True, x2) 31.62/12.89 new_ltEs4(Just(x0), Just(x1), ty_Float) 31.62/12.89 new_primEqInt(Pos(Zero), Neg(Zero)) 31.62/12.89 new_primEqInt(Neg(Zero), Pos(Zero)) 31.62/12.89 new_ltEs21(x0, x1, ty_@0) 31.62/12.89 new_ltEs21(x0, x1, ty_Char) 31.62/12.89 new_esEs5(Just(x0), Just(x1), ty_Integer) 31.62/12.89 new_esEs12(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_esEs12(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_lt4(x0, x1) 31.62/12.89 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_ltEs8(Right(x0), Left(x1), x2, x3) 31.62/12.89 new_ltEs8(Left(x0), Right(x1), x2, x3) 31.62/12.89 new_esEs12(x0, x1, ty_Float) 31.62/12.89 new_compare19(x0, x1) 31.62/12.89 new_compare6(x0, x1, ty_Float) 31.62/12.89 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_esEs26(x0, x1, ty_Char) 31.62/12.89 new_esEs26(x0, x1, ty_Double) 31.62/12.89 new_esEs27(x0, x1, app(ty_[], x2)) 31.62/12.89 new_esEs12(x0, x1, app(ty_[], x2)) 31.62/12.89 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 31.62/12.89 new_esEs29(x0, x1, ty_Char) 31.62/12.89 new_compare6(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_ltEs21(x0, x1, ty_Int) 31.62/12.89 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_compare15(@0, @0) 31.62/12.89 new_esEs10(x0, x1, ty_Integer) 31.62/12.89 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_esEs30(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_esEs24(x0, x1, ty_Integer) 31.62/12.89 new_esEs27(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_compare112(x0, x1, False) 31.62/12.89 new_esEs26(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_esEs21(x0, x1, ty_Integer) 31.62/12.89 new_lt17(x0, x1, x2) 31.62/12.89 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_ltEs19(x0, x1, app(ty_[], x2)) 31.62/12.89 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 31.62/12.89 new_ltEs9(GT, GT) 31.62/12.89 new_ltEs20(x0, x1, ty_Ordering) 31.62/12.89 new_esEs12(x0, x1, ty_Int) 31.62/12.89 new_ltEs4(Nothing, Just(x0), x1) 31.62/12.89 new_compare0(:(x0, x1), [], x2) 31.62/12.89 new_esEs28(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_ltEs18(x0, x1, ty_Bool) 31.62/12.89 new_esEs25(x0, x1, ty_@0) 31.62/12.89 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 31.62/12.89 new_lt12(x0, x1, ty_Double) 31.62/12.89 new_compare7(x0, x1) 31.62/12.89 new_esEs11(x0, x1, ty_@0) 31.62/12.89 new_ltEs9(LT, EQ) 31.62/12.89 new_ltEs9(EQ, LT) 31.62/12.89 new_ltEs20(x0, x1, ty_Float) 31.62/12.89 new_esEs5(Just(x0), Nothing, x1) 31.62/12.89 new_esEs27(x0, x1, ty_@0) 31.62/12.89 new_esEs25(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_compare116(x0, x1, True, x2, x3) 31.62/12.89 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_esEs30(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_esEs27(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_esEs17(Double(x0, x1), Double(x2, x3)) 31.62/12.89 new_esEs5(Just(x0), Just(x1), ty_@0) 31.62/12.89 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 31.62/12.89 new_compare13(x0, x1, x2, x3) 31.62/12.89 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_esEs19(False, True) 31.62/12.89 new_esEs19(True, False) 31.62/12.89 new_lt13(x0, x1, ty_Ordering) 31.62/12.89 new_esEs29(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_compare6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_ltEs19(x0, x1, ty_Integer) 31.62/12.89 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 31.62/12.89 new_esEs10(x0, x1, ty_Bool) 31.62/12.89 new_ltEs4(Just(x0), Just(x1), ty_Char) 31.62/12.89 new_compare114(x0, x1, False) 31.62/12.89 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_esEs24(x0, x1, ty_Bool) 31.62/12.89 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 31.62/12.89 new_esEs30(x0, x1, ty_@0) 31.62/12.89 new_lt20(x0, x1, ty_@0) 31.62/12.89 new_compare6(x0, x1, ty_Bool) 31.62/12.89 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_ltEs4(Just(x0), Just(x1), ty_Int) 31.62/12.89 new_esEs8(GT, GT) 31.62/12.89 new_esEs12(x0, x1, ty_Char) 31.62/12.89 new_compare6(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_compare115(x0, x1, True, x2, x3, x4) 31.62/12.89 new_ltEs20(x0, x1, ty_Int) 31.62/12.89 new_esEs8(LT, EQ) 31.62/12.89 new_esEs8(EQ, LT) 31.62/12.89 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_esEs28(x0, x1, ty_Integer) 31.62/12.89 new_primCmpInt(Neg(Zero), Neg(Zero)) 31.62/12.89 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 31.62/12.89 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 31.62/12.89 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_esEs23(x0, x1, app(ty_[], x2)) 31.62/12.89 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 31.62/12.89 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 31.62/12.89 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 31.62/12.89 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 31.62/12.89 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 31.62/12.89 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_primCompAux00(x0, EQ) 31.62/12.89 new_ltEs5(x0, x1) 31.62/12.89 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 31.62/12.89 new_primCmpNat0(Zero, Succ(x0)) 31.62/12.89 new_esEs8(LT, LT) 31.62/12.89 new_lt12(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 31.62/12.89 new_compare25(x0, x1, True) 31.62/12.89 new_primCmpInt(Pos(Zero), Neg(Zero)) 31.62/12.89 new_primCmpInt(Neg(Zero), Pos(Zero)) 31.62/12.89 new_esEs28(x0, x1, ty_Char) 31.62/12.89 new_ltEs20(x0, x1, ty_Char) 31.62/12.89 new_primEqNat0(Succ(x0), Zero) 31.62/12.89 new_esEs28(x0, x1, ty_Int) 31.62/12.89 new_ltEs17(True, False) 31.62/12.89 new_ltEs17(False, True) 31.62/12.89 new_esEs24(x0, x1, app(ty_[], x2)) 31.62/12.89 new_esEs26(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_esEs25(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_esEs5(Nothing, Just(x0), x1) 31.62/12.89 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_esEs30(x0, x1, ty_Double) 31.62/12.89 new_compare113(x0, x1, True, x2, x3) 31.62/12.89 new_ltEs9(LT, LT) 31.62/12.89 new_primCompAux00(x0, LT) 31.62/12.89 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_esEs26(x0, x1, app(ty_[], x2)) 31.62/12.89 new_ltEs4(Just(x0), Just(x1), ty_Bool) 31.62/12.89 new_sr0(Integer(x0), Integer(x1)) 31.62/12.89 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_esEs12(x0, x1, ty_Ordering) 31.62/12.89 new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 31.62/12.89 new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 31.62/12.89 new_ltEs20(x0, x1, ty_Integer) 31.62/12.89 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 31.62/12.89 new_ltEs19(x0, x1, ty_Char) 31.62/12.89 new_ltEs4(Just(x0), Just(x1), ty_Integer) 31.62/12.89 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 31.62/12.89 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 31.62/12.89 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 31.62/12.89 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 31.62/12.89 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 31.62/12.89 new_esEs11(x0, x1, ty_Double) 31.62/12.89 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_esEs4(Left(x0), Right(x1), x2, x3) 31.62/12.89 new_esEs4(Right(x0), Left(x1), x2, x3) 31.62/12.89 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 31.62/12.89 new_compare6(x0, x1, ty_Ordering) 31.62/12.89 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 31.62/12.89 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 31.62/12.89 new_lt13(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_compare6(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_lt16(x0, x1, x2) 31.62/12.89 new_ltEs7(x0, x1, x2) 31.62/12.89 new_esEs10(x0, x1, ty_Float) 31.62/12.89 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 31.62/12.89 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 31.62/12.89 new_ltEs18(x0, x1, ty_Float) 31.62/12.89 new_esEs28(x0, x1, ty_Bool) 31.62/12.89 new_esEs16(@0, @0) 31.62/12.89 new_pePe(False, x0) 31.62/12.89 new_ltEs19(x0, x1, ty_Bool) 31.62/12.89 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_lt20(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_primMulInt(Pos(x0), Pos(x1)) 31.62/12.89 new_esEs25(x0, x1, ty_Double) 31.62/12.89 new_esEs24(x0, x1, ty_Float) 31.62/12.89 new_compare0([], :(x0, x1), x2) 31.62/12.89 new_ltEs13(x0, x1) 31.62/12.89 new_compare6(x0, x1, ty_Integer) 31.62/12.89 new_esEs9(x0, x1) 31.62/12.89 new_esEs20(:%(x0, x1), :%(x2, x3), x4) 31.62/12.89 new_ltEs19(x0, x1, ty_Ordering) 31.62/12.89 new_esEs25(x0, x1, ty_Float) 31.62/12.89 new_esEs5(Just(x0), Just(x1), ty_Ordering) 31.62/12.89 new_compare6(x0, x1, ty_Char) 31.62/12.89 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 31.62/12.89 new_esEs28(x0, x1, ty_Double) 31.62/12.89 new_lt12(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_esEs10(x0, x1, ty_Ordering) 31.62/12.89 new_esEs11(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_esEs10(x0, x1, ty_Int) 31.62/12.89 new_ltEs19(x0, x1, ty_Double) 31.62/12.89 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 31.62/12.89 new_primMulNat0(Zero, Zero) 31.62/12.89 new_fsEs(x0) 31.62/12.89 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 31.62/12.89 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 31.62/12.89 new_esEs21(x0, x1, ty_Int) 31.62/12.89 new_compare6(x0, x1, ty_Int) 31.62/12.89 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_compare116(x0, x1, False, x2, x3) 31.62/12.89 new_lt20(x0, x1, ty_Float) 31.62/12.89 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 31.62/12.89 new_lt12(x0, x1, ty_Integer) 31.62/12.89 new_lt11(x0, x1) 31.62/12.89 new_primCmpNat0(Succ(x0), Succ(x1)) 31.62/12.89 new_compare10(x0, x1) 31.62/12.89 new_esEs28(x0, x1, ty_Ordering) 31.62/12.89 new_lt14(x0, x1) 31.62/12.89 new_esEs30(x0, x1, ty_Float) 31.62/12.89 new_compare112(x0, x1, True) 31.62/12.89 new_lt12(x0, x1, ty_@0) 31.62/12.89 new_esEs10(x0, x1, ty_Char) 31.62/12.89 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 31.62/12.89 new_ltEs19(x0, x1, ty_Int) 31.62/12.89 new_esEs10(x0, x1, ty_Double) 31.62/12.89 new_primPlusNat0(Succ(x0), x1) 31.62/12.89 new_compare111(x0, x1, True, x2, x3) 31.62/12.89 new_esEs5(Just(x0), Just(x1), ty_Int) 31.62/12.89 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 31.62/12.89 new_esEs5(Nothing, Nothing, x0) 31.62/12.89 new_esEs5(Just(x0), Just(x1), ty_Double) 31.62/12.89 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 31.62/12.89 new_esEs5(Just(x0), Just(x1), ty_Char) 31.62/12.89 new_esEs24(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_esEs26(x0, x1, ty_Float) 31.62/12.89 new_lt13(x0, x1, ty_Integer) 31.62/12.89 new_primCompAux0(x0, x1, x2, x3) 31.62/12.89 new_lt13(x0, x1, ty_@0) 31.62/12.89 new_ltEs6(x0, x1) 31.62/12.89 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 31.62/12.89 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_primEqNat0(Zero, Succ(x0)) 31.62/12.89 new_not(True) 31.62/12.89 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 31.62/12.89 new_compare6(x0, x1, ty_@0) 31.62/12.89 new_esEs8(EQ, GT) 31.62/12.89 new_esEs8(GT, EQ) 31.62/12.89 new_compare6(x0, x1, ty_Double) 31.62/12.89 new_compare24(x0, x1, False) 31.62/12.89 new_compare16(Char(x0), Char(x1)) 31.62/12.89 new_esEs23(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 31.62/12.89 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_esEs15(Float(x0, x1), Float(x2, x3)) 31.62/12.89 new_lt9(x0, x1, x2, x3, x4) 31.62/12.89 new_ltEs21(x0, x1, ty_Float) 31.62/12.89 new_ltEs14(x0, x1) 31.62/12.89 new_esEs11(x0, x1, ty_Ordering) 31.62/12.89 new_asAs(True, x0) 31.62/12.89 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 31.62/12.89 new_ltEs18(x0, x1, app(ty_[], x2)) 31.62/12.89 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 31.62/12.89 new_asAs(False, x0) 31.62/12.89 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 31.62/12.89 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 31.62/12.89 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 31.62/12.89 new_primMulNat0(Zero, Succ(x0)) 31.62/12.89 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_primPlusNat1(Zero, Succ(x0)) 31.62/12.89 new_lt13(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_ltEs18(x0, x1, ty_Integer) 31.62/12.89 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 31.62/12.89 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 31.62/12.89 new_esEs23(x0, x1, ty_Float) 31.62/12.89 new_esEs29(x0, x1, ty_Double) 31.62/12.89 new_lt13(x0, x1, ty_Bool) 31.62/12.89 new_esEs27(x0, x1, ty_Integer) 31.62/12.89 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 31.62/12.89 new_ltEs4(Just(x0), Nothing, x1) 31.62/12.89 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 31.62/12.89 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 31.62/12.89 new_compare111(x0, x1, False, x2, x3) 31.62/12.89 new_compare8(x0, x1, x2, x3) 31.62/12.89 new_esEs19(True, True) 31.62/12.89 new_esEs29(x0, x1, ty_Int) 31.62/12.89 new_lt19(x0, x1) 31.62/12.89 new_esEs13([], :(x0, x1), x2) 31.62/12.89 new_esEs23(x0, x1, ty_@0) 31.62/12.89 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 31.62/12.89 new_primCmpInt(Pos(Zero), Pos(Zero)) 31.62/12.89 new_lt20(x0, x1, app(ty_[], x2)) 31.62/12.89 new_lt7(x0, x1) 31.62/12.89 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_compare114(x0, x1, True) 31.62/12.89 new_compare6(x0, x1, app(ty_[], x2)) 31.62/12.89 new_esEs25(x0, x1, ty_Bool) 31.62/12.89 new_lt13(x0, x1, ty_Char) 31.62/12.89 new_compare28(x0, x1, True, x2, x3) 31.62/12.89 new_esEs30(x0, x1, ty_Integer) 31.62/12.89 new_esEs26(x0, x1, ty_Bool) 31.62/12.89 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 31.62/12.89 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 31.62/12.89 new_ltEs20(x0, x1, ty_Double) 31.62/12.89 new_lt12(x0, x1, ty_Ordering) 31.62/12.89 new_primMulNat0(Succ(x0), Zero) 31.62/12.89 new_esEs28(x0, x1, ty_@0) 31.62/12.89 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_esEs30(x0, x1, app(ty_[], x2)) 31.62/12.89 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 31.62/12.89 new_lt13(x0, x1, ty_Int) 31.62/12.89 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_esEs26(x0, x1, ty_@0) 31.62/12.89 new_lt12(x0, x1, ty_Int) 31.62/12.89 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 31.62/12.89 new_esEs13([], [], x0) 31.62/12.89 new_esEs8(LT, GT) 31.62/12.89 new_esEs8(GT, LT) 31.62/12.89 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 31.62/12.89 new_esEs5(Just(x0), Just(x1), ty_Bool) 31.62/12.89 new_compare14(x0, x1, x2, x3, x4) 31.62/12.89 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 31.62/12.89 new_ltEs20(x0, x1, app(ty_[], x2)) 31.62/12.89 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 31.62/12.89 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 31.62/12.89 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 31.62/12.89 new_esEs27(x0, x1, ty_Char) 31.62/12.89 new_primPlusNat1(Succ(x0), Succ(x1)) 31.62/12.89 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 31.62/12.89 new_esEs26(x0, x1, ty_Integer) 31.62/12.89 new_primCmpNat0(Succ(x0), Zero) 31.62/12.89 new_lt15(x0, x1, x2, x3) 31.62/12.89 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 31.62/12.89 new_esEs25(x0, x1, ty_Integer) 31.62/12.89 new_esEs24(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_ltEs15(x0, x1) 31.62/12.89 new_lt20(x0, x1, ty_Char) 31.62/12.89 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_esEs27(x0, x1, ty_Bool) 31.62/12.89 new_ltEs4(Just(x0), Just(x1), ty_@0) 31.62/12.89 new_esEs25(x0, x1, app(ty_[], x2)) 31.62/12.89 new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 31.62/12.89 new_compare0(:(x0, x1), :(x2, x3), x4) 31.62/12.89 new_lt12(x0, x1, ty_Float) 31.62/12.89 new_compare110(x0, x1, True, x2) 31.62/12.89 new_ltEs21(x0, x1, app(ty_[], x2)) 31.62/12.89 new_esEs23(x0, x1, ty_Bool) 31.62/12.89 new_esEs22(x0, x1, ty_Integer) 31.62/12.89 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 31.62/12.89 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 31.62/12.89 new_pePe(True, x0) 31.62/12.89 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 31.62/12.89 new_ltEs19(x0, x1, ty_@0) 31.62/12.89 new_primPlusNat0(Zero, x0) 31.62/12.89 new_esEs11(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_primMulNat0(Succ(x0), Succ(x1)) 31.62/12.89 new_lt13(x0, x1, ty_Float) 31.62/12.89 new_esEs12(x0, x1, ty_Double) 31.62/12.89 new_lt20(x0, x1, ty_Int) 31.62/12.89 new_ltEs9(GT, EQ) 31.62/12.89 new_ltEs9(EQ, GT) 31.62/12.89 new_primEqNat0(Zero, Zero) 31.62/12.89 new_esEs11(x0, x1, ty_Int) 31.62/12.89 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 31.62/12.89 new_compare26(Left(x0), Left(x1), False, x2, x3) 31.62/12.89 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 31.62/12.89 new_esEs24(x0, x1, ty_@0) 31.62/12.89 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 31.62/12.89 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 31.62/12.89 new_not(False) 31.62/12.89 new_esEs24(x0, x1, ty_Double) 31.62/12.89 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 31.62/12.89 new_ltEs4(Just(x0), Just(x1), ty_Double) 31.62/12.89 new_ltEs17(False, False) 31.62/12.89 new_esEs23(x0, x1, ty_Integer) 31.62/12.89 new_lt13(x0, x1, app(ty_[], x2)) 31.62/12.89 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 31.62/12.89 new_esEs27(x0, x1, ty_Int) 31.62/12.89 new_esEs22(x0, x1, ty_Int) 31.62/12.89 new_compare6(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_compare12(x0, x1, x2) 31.62/12.89 new_lt20(x0, x1, ty_Integer) 31.62/12.89 new_compare113(x0, x1, False, x2, x3) 31.62/12.89 new_compare26(Right(x0), Left(x1), False, x2, x3) 31.62/12.89 new_compare26(Left(x0), Right(x1), False, x2, x3) 31.62/12.89 new_esEs28(x0, x1, app(ty_Ratio, x2)) 31.62/12.89 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 31.62/12.89 new_esEs29(x0, x1, ty_Ordering) 31.62/12.89 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 31.62/12.89 new_lt20(x0, x1, ty_Bool) 31.62/12.89 new_ltEs18(x0, x1, ty_@0) 31.62/12.89 new_ltEs16(x0, x1) 31.62/12.89 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 31.62/12.89 new_compare11(Integer(x0), Integer(x1)) 31.62/12.89 new_lt12(x0, x1, ty_Char) 31.62/12.89 new_esEs25(x0, x1, ty_Int) 31.62/12.89 new_lt20(x0, x1, app(ty_Maybe, x2)) 31.62/12.89 new_esEs11(x0, x1, ty_Char) 31.62/12.89 new_esEs27(x0, x1, ty_Float) 31.62/12.89 new_ltEs21(x0, x1, ty_Integer) 31.62/12.89 new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 31.62/12.89 new_esEs13(:(x0, x1), [], x2) 31.62/12.89 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 31.62/12.89 new_compare23(x0, x1, False, x2) 31.62/12.89 new_esEs10(x0, x1, ty_@0) 31.62/12.89 new_esEs11(x0, x1, ty_Bool) 31.62/12.89 new_compare27(x0, x1, True, x2, x3, x4) 31.62/12.89 new_esEs14(Integer(x0), Integer(x1)) 31.62/12.89 new_esEs25(x0, x1, ty_Char) 31.62/12.89 new_compare115(x0, x1, False, x2, x3, x4) 31.62/12.89 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 31.62/12.89 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 31.62/12.89 new_ltEs21(x0, x1, ty_Ordering) 31.62/12.89 new_esEs23(x0, x1, ty_Ordering) 31.62/12.89 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.62/12.89 new_primCmpNat0(Zero, Zero) 31.62/12.89 new_compare26(Right(x0), Right(x1), False, x2, x3) 31.62/12.89 new_ltEs9(GT, LT) 31.62/12.89 new_ltEs9(LT, GT) 31.62/12.89 new_esEs30(x0, x1, ty_Bool) 31.62/12.89 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 31.62/12.89 new_primCompAux00(x0, GT) 31.62/12.89 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 31.62/12.89 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 31.62/12.89 new_lt12(x0, x1, ty_Bool) 31.62/12.89 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 31.62/12.89 31.62/12.89 We have to consider all minimal (P,Q,R)-chains. 31.62/12.89 ---------------------------------------- 31.62/12.89 31.62/12.89 (57) QDPSizeChangeProof (EQUIVALENT) 31.62/12.89 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.62/12.89 31.62/12.89 From the DPs we obtained the following set of size-change graphs: 31.62/12.89 *new_delFromFM(Branch(Left(xwv300), xwv31, xwv32, xwv33, xwv34), Left(xwv400), bc, bd, be) -> new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Left(xwv400), Left(xwv300), new_esEs29(xwv400, xwv300, bc), bc, bd), GT), bc, bd, be) 31.62/12.89 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 31.62/12.89 31.62/12.89 31.62/12.89 *new_delFromFM(Branch(Right(xwv300), xwv31, xwv32, xwv33, xwv34), Left(xwv400), bc, bd, be) -> new_delFromFM20(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Left(xwv400), Right(xwv300), False, bc, bd), GT), bc, bd, be) 31.62/12.89 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 31.62/12.89 31.62/12.89 31.62/12.89 *new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, h, ba, bb) -> new_delFromFM(xwv17, Left(xwv18), h, ba, bb) 31.62/12.89 The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 31.62/12.89 31.62/12.89 31.62/12.89 *new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, h, ba, bb) -> new_delFromFM1(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs8(new_compare26(Left(xwv18), Left(xwv13), new_esEs4(Left(xwv18), Left(xwv13), h, ba), h, ba), LT), h, ba, bb) 31.62/12.89 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 31.62/12.89 31.62/12.89 31.62/12.89 *new_delFromFM20(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, False, bc, bd, be) -> new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Left(xwv400), Right(xwv300), new_esEs4(Left(xwv400), Right(xwv300), bc, bd), bc, bd), LT), bc, bd, be) 31.62/12.89 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 31.62/12.89 31.62/12.89 31.62/12.89 *new_delFromFM1(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, h, ba, bb) -> new_delFromFM(xwv16, Left(xwv18), h, ba, bb) 31.62/12.89 The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 31.62/12.89 31.62/12.89 31.62/12.89 *new_delFromFM20(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, bc, bd, be) -> new_delFromFM(xwv34, Left(xwv400), bc, bd, be) 31.62/12.89 The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 31.62/12.89 31.62/12.89 31.62/12.89 *new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, bc, bd, be) -> new_delFromFM(xwv33, Left(xwv400), bc, bd, be) 31.62/12.89 The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 31.62/12.89 31.62/12.89 31.62/12.89 ---------------------------------------- 31.62/12.89 31.62/12.89 (58) 31.62/12.89 YES 31.62/12.89 31.62/12.89 ---------------------------------------- 31.62/12.89 31.62/12.89 (59) 31.62/12.89 Obligation: 31.62/12.89 Q DP problem: 31.62/12.89 The TRS P consists of the following rules: 31.62/12.89 31.62/12.89 new_delFromFM(Branch(Left(xwv300), xwv31, xwv32, xwv33, xwv34), Right(xwv400), bc, bd, be) -> new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Right(xwv400), Left(xwv300), False, bc, bd), GT), bc, bd, be) 31.62/12.89 new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, bc, bd, be) -> new_delFromFM(xwv34, Right(xwv400), bc, bd, be) 31.62/12.89 new_delFromFM(Branch(Right(xwv300), xwv31, xwv32, xwv33, xwv34), Right(xwv400), bc, bd, be) -> new_delFromFM22(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Right(xwv400), Right(xwv300), new_esEs30(xwv400, xwv300, bd), bc, bd), GT), bc, bd, be) 31.62/12.89 new_delFromFM22(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, False, bf, bg, bh) -> new_delFromFM12(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, new_esEs8(new_compare26(Right(xwv33), Right(xwv28), new_esEs4(Right(xwv33), Right(xwv28), bf, bg), bf, bg), LT), bf, bg, bh) 31.62/12.89 new_delFromFM12(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, bf, bg, bh) -> new_delFromFM(xwv31, Right(xwv33), bf, bg, bh) 31.62/12.89 new_delFromFM22(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, bf, bg, bh) -> new_delFromFM(xwv32, Right(xwv33), bf, bg, bh) 31.62/12.89 new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, False, bc, bd, be) -> new_delFromFM11(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Right(xwv400), Left(xwv300), new_esEs4(Right(xwv400), Left(xwv300), bc, bd), bc, bd), LT), bc, bd, be) 31.62/12.89 new_delFromFM11(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, bc, bd, be) -> new_delFromFM(xwv33, Right(xwv400), bc, bd, be) 31.62/12.89 31.62/12.89 The TRS R consists of the following rules: 31.62/12.89 31.62/12.89 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(ty_Maybe, bcd)) -> new_ltEs4(xwv43000, xwv44000, bcd) 31.62/12.89 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 31.62/12.89 new_primCmpInt(Neg(Succ(xwv4300)), Pos(xwv440)) -> LT 31.62/12.89 new_esEs27(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.62/12.89 new_compare17(Double(xwv43000, Pos(xwv430010)), Double(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.62/12.89 new_pePe(True, xwv181) -> True 31.62/12.89 new_esEs30(xwv400, xwv300, ty_Ordering) -> new_esEs8(xwv400, xwv300) 31.62/12.89 new_compare6(xwv43000, xwv44000, ty_Float) -> new_compare18(xwv43000, xwv44000) 31.62/12.89 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.62/12.89 new_esEs12(xwv4000, xwv3000, app(ty_Maybe, hh)) -> new_esEs5(xwv4000, xwv3000, hh) 31.62/12.89 new_esEs19(False, True) -> False 31.62/12.89 new_esEs19(True, False) -> False 31.62/12.89 new_lt13(xwv43001, xwv44001, app(app(ty_Either, cea), ceb)) -> new_lt15(xwv43001, xwv44001, cea, ceb) 31.62/12.89 new_esEs27(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.89 new_compare23(xwv43000, xwv44000, True, de) -> EQ 31.62/12.89 new_ltEs20(xwv43002, xwv44002, app(app(ty_@2, cfh), cga)) -> new_ltEs11(xwv43002, xwv44002, cfh, cga) 31.62/12.89 new_esEs25(xwv43000, xwv44000, app(ty_[], cdc)) -> new_esEs13(xwv43000, xwv44000, cdc) 31.62/12.89 new_esEs4(Left(xwv4000), Right(xwv3000), cah, cba) -> False 31.62/12.89 new_esEs4(Right(xwv4000), Left(xwv3000), cah, cba) -> False 31.62/12.89 new_lt18(xwv43000, xwv44000, dfb) -> new_esEs8(new_compare0(xwv43000, xwv44000, dfb), LT) 31.62/12.89 new_esEs15(Float(xwv4000, xwv4001), Float(xwv3000, xwv3001)) -> new_esEs9(new_sr(xwv4000, xwv3001), new_sr(xwv4001, xwv3000)) 31.62/12.89 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 31.62/12.89 new_ltEs19(xwv4300, xwv4400, ty_Ordering) -> new_ltEs9(xwv4300, xwv4400) 31.62/12.89 new_compare110(xwv43000, xwv44000, False, de) -> GT 31.62/12.89 new_primCmpInt(Pos(Zero), Neg(Succ(xwv4400))) -> GT 31.62/12.89 new_esEs9(xwv400, xwv300) -> new_primEqInt(xwv400, xwv300) 31.62/12.89 new_compare26(xwv430, xwv440, True, bdc, bdd) -> EQ 31.62/12.89 new_ltEs8(Left(xwv43000), Left(xwv44000), app(ty_Maybe, bba), bae) -> new_ltEs4(xwv43000, xwv44000, bba) 31.62/12.89 new_esEs24(xwv43001, xwv44001, ty_Ordering) -> new_esEs8(xwv43001, xwv44001) 31.62/12.89 new_esEs28(xwv43000, xwv44000, ty_Char) -> new_esEs18(xwv43000, xwv44000) 31.62/12.89 new_ltEs19(xwv4300, xwv4400, ty_Integer) -> new_ltEs5(xwv4300, xwv4400) 31.62/12.89 new_primCmpInt(Neg(Succ(xwv4300)), Neg(xwv440)) -> new_primCmpNat0(xwv440, Succ(xwv4300)) 31.62/12.89 new_compare113(xwv160, xwv161, False, cgf, cgg) -> GT 31.62/12.89 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Bool, cba) -> new_esEs19(xwv4000, xwv3000) 31.62/12.89 new_ltEs4(Nothing, Nothing, bde) -> True 31.62/12.89 new_compare111(xwv167, xwv168, True, dh, ea) -> LT 31.62/12.89 new_ltEs20(xwv43002, xwv44002, ty_Ordering) -> new_ltEs9(xwv43002, xwv44002) 31.62/12.89 new_ltEs4(Just(xwv43000), Nothing, bde) -> False 31.62/12.89 new_ltEs9(LT, LT) -> True 31.62/12.89 new_compare6(xwv43000, xwv44000, ty_Char) -> new_compare16(xwv43000, xwv44000) 31.62/12.89 new_lt12(xwv43000, xwv44000, ty_Float) -> new_lt19(xwv43000, xwv44000) 31.62/12.89 new_ltEs14(xwv4300, xwv4400) -> new_fsEs(new_compare16(xwv4300, xwv4400)) 31.62/12.89 new_esEs23(xwv4000, xwv3000, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.62/12.89 new_compare27(xwv43000, xwv44000, False, bfe, bff, bfg) -> new_compare115(xwv43000, xwv44000, new_ltEs12(xwv43000, xwv44000, bfe, bff, bfg), bfe, bff, bfg) 31.62/12.89 new_lt17(xwv43000, xwv44000, de) -> new_esEs8(new_compare12(xwv43000, xwv44000, de), LT) 31.62/12.89 new_esEs11(xwv4001, xwv3001, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs7(xwv4001, xwv3001, fh, ga, gb) 31.62/12.89 new_ltEs8(Left(xwv43000), Left(xwv44000), app(app(ty_@2, bbc), bbd), bae) -> new_ltEs11(xwv43000, xwv44000, bbc, bbd) 31.62/12.89 new_esEs12(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.89 new_esEs10(xwv4002, xwv3002, app(ty_[], eh)) -> new_esEs13(xwv4002, xwv3002, eh) 31.62/12.89 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Char) -> new_ltEs14(xwv43000, xwv44000) 31.62/12.89 new_ltEs4(Just(xwv43000), Just(xwv44000), app(ty_Maybe, bhh)) -> new_ltEs4(xwv43000, xwv44000, bhh) 31.62/12.89 new_compare26(Right(xwv4300), Left(xwv4400), False, bdc, bdd) -> GT 31.62/12.89 new_lt20(xwv43000, xwv44000, ty_Bool) -> new_lt4(xwv43000, xwv44000) 31.62/12.89 new_compare6(xwv43000, xwv44000, app(ty_Maybe, ce)) -> new_compare12(xwv43000, xwv44000, ce) 31.62/12.89 new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False 31.62/12.89 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 31.62/12.89 new_esEs8(GT, GT) -> True 31.62/12.89 new_ltEs21(xwv43001, xwv44001, ty_@0) -> new_ltEs13(xwv43001, xwv44001) 31.62/12.89 new_esEs24(xwv43001, xwv44001, ty_Double) -> new_esEs17(xwv43001, xwv44001) 31.62/12.89 new_fsEs(xwv171) -> new_not(new_esEs8(xwv171, GT)) 31.62/12.89 new_esEs23(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.62/12.89 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Double, bae) -> new_ltEs15(xwv43000, xwv44000) 31.62/12.89 new_esEs8(EQ, EQ) -> True 31.62/12.89 new_lt20(xwv43000, xwv44000, ty_Int) -> new_lt14(xwv43000, xwv44000) 31.62/12.89 new_primEqNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 31.62/12.89 new_lt12(xwv43000, xwv44000, ty_Integer) -> new_lt7(xwv43000, xwv44000) 31.62/12.89 new_esEs26(xwv4001, xwv3001, ty_Integer) -> new_esEs14(xwv4001, xwv3001) 31.62/12.89 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_@0) -> new_ltEs13(xwv43000, xwv44000) 31.62/12.89 new_lt12(xwv43000, xwv44000, ty_Char) -> new_lt10(xwv43000, xwv44000) 31.62/12.89 new_esEs25(xwv43000, xwv44000, ty_Float) -> new_esEs15(xwv43000, xwv44000) 31.62/12.89 new_ltEs18(xwv4300, xwv4400, app(ty_[], ca)) -> new_ltEs10(xwv4300, xwv4400, ca) 31.62/12.89 new_ltEs20(xwv43002, xwv44002, app(app(ty_Either, cfc), cfd)) -> new_ltEs8(xwv43002, xwv44002, cfc, cfd) 31.78/12.89 new_lt12(xwv43000, xwv44000, ty_@0) -> new_lt6(xwv43000, xwv44000) 31.78/12.89 new_ltEs19(xwv4300, xwv4400, app(app(ty_@2, beh), bfa)) -> new_ltEs11(xwv4300, xwv4400, beh, bfa) 31.78/12.89 new_compare6(xwv43000, xwv44000, app(ty_[], cf)) -> new_compare0(xwv43000, xwv44000, cf) 31.78/12.89 new_compare12(xwv43000, xwv44000, de) -> new_compare23(xwv43000, xwv44000, new_esEs5(xwv43000, xwv44000, de), de) 31.78/12.89 new_not(True) -> False 31.78/12.89 new_lt13(xwv43001, xwv44001, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_lt9(xwv43001, xwv44001, ceh, cfa, cfb) 31.78/12.89 new_primCompAux00(xwv186, LT) -> LT 31.78/12.89 new_primCmpNat0(Zero, Zero) -> EQ 31.78/12.89 new_ltEs20(xwv43002, xwv44002, ty_Integer) -> new_ltEs5(xwv43002, xwv44002) 31.78/12.89 new_esEs4(Left(xwv4000), Left(xwv3000), ty_@0, cba) -> new_esEs16(xwv4000, xwv3000) 31.78/12.89 new_compare115(xwv43000, xwv44000, True, bfe, bff, bfg) -> LT 31.78/12.89 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Char, cba) -> new_esEs18(xwv4000, xwv3000) 31.78/12.89 new_lt13(xwv43001, xwv44001, ty_Integer) -> new_lt7(xwv43001, xwv44001) 31.78/12.89 new_ltEs18(xwv4300, xwv4400, app(ty_Ratio, bad)) -> new_ltEs7(xwv4300, xwv4400, bad) 31.78/12.89 new_esEs10(xwv4002, xwv3002, app(app(ty_@2, fd), ff)) -> new_esEs6(xwv4002, xwv3002, fd, ff) 31.78/12.89 new_compare23(xwv43000, xwv44000, False, de) -> new_compare110(xwv43000, xwv44000, new_ltEs4(xwv43000, xwv44000, de), de) 31.78/12.89 new_esEs23(xwv4000, xwv3000, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.78/12.89 new_esEs7(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), eb, ec, ed) -> new_asAs(new_esEs12(xwv4000, xwv3000, eb), new_asAs(new_esEs11(xwv4001, xwv3001, ec), new_esEs10(xwv4002, xwv3002, ed))) 31.78/12.89 new_esEs29(xwv400, xwv300, app(ty_[], cag)) -> new_esEs13(xwv400, xwv300, cag) 31.78/12.89 new_esEs25(xwv43000, xwv44000, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_esEs7(xwv43000, xwv44000, cdf, cdg, cdh) 31.78/12.89 new_esEs30(xwv400, xwv300, ty_Double) -> new_esEs17(xwv400, xwv300) 31.78/12.89 new_esEs10(xwv4002, xwv3002, ty_Ordering) -> new_esEs8(xwv4002, xwv3002) 31.78/12.89 new_esEs10(xwv4002, xwv3002, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs7(xwv4002, xwv3002, ee, ef, eg) 31.78/12.89 new_ltEs8(Left(xwv43000), Left(xwv44000), app(app(ty_Either, baf), bag), bae) -> new_ltEs8(xwv43000, xwv44000, baf, bag) 31.78/12.89 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Integer) -> new_ltEs5(xwv43000, xwv44000) 31.78/12.89 new_lt12(xwv43000, xwv44000, app(ty_[], cdc)) -> new_lt18(xwv43000, xwv44000, cdc) 31.78/12.89 new_lt14(xwv430, xwv440) -> new_esEs8(new_compare7(xwv430, xwv440), LT) 31.78/12.89 new_esEs27(xwv4000, xwv3000, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.78/12.89 new_primEqNat0(Succ(xwv40000), Zero) -> False 31.78/12.89 new_primEqNat0(Zero, Succ(xwv30000)) -> False 31.78/12.89 new_esEs18(Char(xwv4000), Char(xwv3000)) -> new_primEqNat0(xwv4000, xwv3000) 31.78/12.89 new_ltEs10(xwv4300, xwv4400, ca) -> new_fsEs(new_compare0(xwv4300, xwv4400, ca)) 31.78/12.89 new_compare112(xwv43000, xwv44000, False) -> GT 31.78/12.89 new_ltEs20(xwv43002, xwv44002, ty_Int) -> new_ltEs6(xwv43002, xwv44002) 31.78/12.89 new_esEs13([], [], cag) -> True 31.78/12.89 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs7(xwv4000, xwv3000, dab, dac, dad) 31.78/12.89 new_ltEs19(xwv4300, xwv4400, ty_Int) -> new_ltEs6(xwv4300, xwv4400) 31.78/12.89 new_esEs23(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.78/12.89 new_esEs11(xwv4001, xwv3001, app(app(ty_@2, gg), gh)) -> new_esEs6(xwv4001, xwv3001, gg, gh) 31.78/12.89 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Int, cba) -> new_esEs9(xwv4000, xwv3000) 31.78/12.89 new_primCompAux00(xwv186, GT) -> GT 31.78/12.89 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Float) -> new_ltEs16(xwv43000, xwv44000) 31.78/12.89 new_esEs5(Just(xwv4000), Just(xwv3000), ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.78/12.89 new_esEs29(xwv400, xwv300, ty_Double) -> new_esEs17(xwv400, xwv300) 31.78/12.89 new_ltEs21(xwv43001, xwv44001, ty_Char) -> new_ltEs14(xwv43001, xwv44001) 31.78/12.89 new_esEs4(Left(xwv4000), Left(xwv3000), app(app(ty_@2, chg), chh), cba) -> new_esEs6(xwv4000, xwv3000, chg, chh) 31.78/12.89 new_esEs12(xwv4000, xwv3000, app(app(ty_Either, hf), hg)) -> new_esEs4(xwv4000, xwv3000, hf, hg) 31.78/12.89 new_ltEs21(xwv43001, xwv44001, ty_Float) -> new_ltEs16(xwv43001, xwv44001) 31.78/12.89 new_esEs17(Double(xwv4000, xwv4001), Double(xwv3000, xwv3001)) -> new_esEs9(new_sr(xwv4000, xwv3001), new_sr(xwv4001, xwv3000)) 31.78/12.89 new_ltEs21(xwv43001, xwv44001, ty_Int) -> new_ltEs6(xwv43001, xwv44001) 31.78/12.89 new_compare19(xwv43000, xwv44000) -> new_compare25(xwv43000, xwv44000, new_esEs19(xwv43000, xwv44000)) 31.78/12.89 new_lt15(xwv43000, xwv44000, bhb, bhc) -> new_esEs8(new_compare8(xwv43000, xwv44000, bhb, bhc), LT) 31.78/12.89 new_compare116(xwv43000, xwv44000, True, df, dg) -> LT 31.78/12.89 new_primCmpInt(Pos(Succ(xwv4300)), Neg(xwv440)) -> GT 31.78/12.89 new_esEs19(False, False) -> True 31.78/12.89 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Bool, bae) -> new_ltEs17(xwv43000, xwv44000) 31.78/12.89 new_ltEs21(xwv43001, xwv44001, ty_Ordering) -> new_ltEs9(xwv43001, xwv44001) 31.78/12.89 new_esEs28(xwv43000, xwv44000, ty_Bool) -> new_esEs19(xwv43000, xwv44000) 31.78/12.89 new_ltEs18(xwv4300, xwv4400, ty_Double) -> new_ltEs15(xwv4300, xwv4400) 31.78/12.89 new_esEs25(xwv43000, xwv44000, app(ty_Ratio, cda)) -> new_esEs20(xwv43000, xwv44000, cda) 31.78/12.89 new_esEs28(xwv43000, xwv44000, ty_Double) -> new_esEs17(xwv43000, xwv44000) 31.78/12.89 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(ty_[], dae)) -> new_esEs13(xwv4000, xwv3000, dae) 31.78/12.89 new_compare18(Float(xwv43000, Pos(xwv430010)), Float(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.78/12.89 new_compare18(Float(xwv43000, Neg(xwv430010)), Float(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.78/12.89 new_ltEs20(xwv43002, xwv44002, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_ltEs12(xwv43002, xwv44002, cgb, cgc, cgd) 31.78/12.89 new_esEs29(xwv400, xwv300, ty_Float) -> new_esEs15(xwv400, xwv300) 31.78/12.89 new_esEs23(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.78/12.89 new_ltEs21(xwv43001, xwv44001, app(app(ty_@2, dfh), dga)) -> new_ltEs11(xwv43001, xwv44001, dfh, dga) 31.78/12.89 new_ltEs13(xwv4300, xwv4400) -> new_fsEs(new_compare15(xwv4300, xwv4400)) 31.78/12.89 new_esEs12(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.78/12.89 new_primPlusNat1(Succ(xwv33200), Succ(xwv13100)) -> Succ(Succ(new_primPlusNat1(xwv33200, xwv13100))) 31.78/12.89 new_compare15(@0, @0) -> EQ 31.78/12.89 new_esEs11(xwv4001, xwv3001, app(ty_[], gc)) -> new_esEs13(xwv4001, xwv3001, gc) 31.78/12.89 new_esEs6(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), cbc, cbd) -> new_asAs(new_esEs27(xwv4000, xwv3000, cbc), new_esEs26(xwv4001, xwv3001, cbd)) 31.78/12.89 new_primCmpNat0(Zero, Succ(xwv4400)) -> LT 31.78/12.89 new_esEs4(Left(xwv4000), Left(xwv3000), app(ty_[], chc), cba) -> new_esEs13(xwv4000, xwv3000, chc) 31.78/12.89 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_@0) -> new_ltEs13(xwv43000, xwv44000) 31.78/12.89 new_esEs26(xwv4001, xwv3001, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs7(xwv4001, xwv3001, dbd, dbe, dbf) 31.78/12.89 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_@2, deg), deh)) -> new_esEs6(xwv4000, xwv3000, deg, deh) 31.78/12.89 new_ltEs19(xwv4300, xwv4400, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs12(xwv4300, xwv4400, bfb, bfc, bfd) 31.78/12.89 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Double, cba) -> new_esEs17(xwv4000, xwv3000) 31.78/12.89 new_esEs24(xwv43001, xwv44001, app(ty_[], cee)) -> new_esEs13(xwv43001, xwv44001, cee) 31.78/12.89 new_primCmpNat0(Succ(xwv4300), Zero) -> GT 31.78/12.89 new_ltEs21(xwv43001, xwv44001, app(app(ty_Either, dfc), dfd)) -> new_ltEs8(xwv43001, xwv44001, dfc, dfd) 31.78/12.89 new_esEs30(xwv400, xwv300, ty_Float) -> new_esEs15(xwv400, xwv300) 31.78/12.89 new_pePe(False, xwv181) -> xwv181 31.78/12.89 new_esEs10(xwv4002, xwv3002, ty_Double) -> new_esEs17(xwv4002, xwv3002) 31.78/12.89 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Ordering, cba) -> new_esEs8(xwv4000, xwv3000) 31.78/12.89 new_esEs11(xwv4001, xwv3001, ty_Int) -> new_esEs9(xwv4001, xwv3001) 31.78/12.89 new_esEs25(xwv43000, xwv44000, ty_Integer) -> new_esEs14(xwv43000, xwv44000) 31.78/12.89 new_lt20(xwv43000, xwv44000, app(app(app(ty_@3, bfe), bff), bfg)) -> new_lt9(xwv43000, xwv44000, bfe, bff, bfg) 31.78/12.89 new_ltEs19(xwv4300, xwv4400, ty_@0) -> new_ltEs13(xwv4300, xwv4400) 31.78/12.89 new_lt20(xwv43000, xwv44000, app(ty_Ratio, cge)) -> new_lt16(xwv43000, xwv44000, cge) 31.78/12.89 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Ordering, bae) -> new_ltEs9(xwv43000, xwv44000) 31.78/12.89 new_lt13(xwv43001, xwv44001, app(ty_Maybe, ced)) -> new_lt17(xwv43001, xwv44001, ced) 31.78/12.89 new_ltEs18(xwv4300, xwv4400, ty_Bool) -> new_ltEs17(xwv4300, xwv4400) 31.78/12.89 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(ty_Maybe, dah)) -> new_esEs5(xwv4000, xwv3000, dah) 31.78/12.89 new_compare26(Left(xwv4300), Right(xwv4400), False, bdc, bdd) -> LT 31.78/12.89 new_esEs8(LT, EQ) -> False 31.78/12.89 new_esEs8(EQ, LT) -> False 31.78/12.89 new_esEs27(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.78/12.89 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.78/12.89 new_esEs10(xwv4002, xwv3002, ty_Char) -> new_esEs18(xwv4002, xwv3002) 31.78/12.89 new_lt13(xwv43001, xwv44001, ty_Bool) -> new_lt4(xwv43001, xwv44001) 31.78/12.89 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 31.78/12.89 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 31.78/12.89 new_esEs28(xwv43000, xwv44000, ty_@0) -> new_esEs16(xwv43000, xwv44000) 31.78/12.89 new_compare28(xwv43000, xwv44000, False, df, dg) -> new_compare116(xwv43000, xwv44000, new_ltEs11(xwv43000, xwv44000, df, dg), df, dg) 31.78/12.89 new_esEs11(xwv4001, xwv3001, app(ty_Maybe, gf)) -> new_esEs5(xwv4001, xwv3001, gf) 31.78/12.89 new_esEs24(xwv43001, xwv44001, app(app(ty_@2, cef), ceg)) -> new_esEs6(xwv43001, xwv44001, cef, ceg) 31.78/12.89 new_lt12(xwv43000, xwv44000, app(app(ty_Either, ccg), cch)) -> new_lt15(xwv43000, xwv44000, ccg, cch) 31.78/12.89 new_compare114(xwv43000, xwv44000, True) -> LT 31.78/12.89 new_compare25(xwv43000, xwv44000, False) -> new_compare112(xwv43000, xwv44000, new_ltEs17(xwv43000, xwv44000)) 31.78/12.89 new_ltEs20(xwv43002, xwv44002, ty_@0) -> new_ltEs13(xwv43002, xwv44002) 31.78/12.89 new_esEs26(xwv4001, xwv3001, app(ty_[], dbg)) -> new_esEs13(xwv4001, xwv3001, dbg) 31.78/12.89 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Float) -> new_ltEs16(xwv43000, xwv44000) 31.78/12.89 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Int) -> new_ltEs6(xwv43000, xwv44000) 31.78/12.89 new_ltEs18(xwv4300, xwv4400, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs12(xwv4300, xwv4400, bdh, bea, beb) 31.78/12.89 new_ltEs18(xwv4300, xwv4400, ty_Ordering) -> new_ltEs9(xwv4300, xwv4400) 31.78/12.89 new_esEs5(Nothing, Nothing, cbb) -> True 31.78/12.89 new_compare6(xwv43000, xwv44000, ty_Int) -> new_compare7(xwv43000, xwv44000) 31.78/12.89 new_esEs12(xwv4000, xwv3000, app(ty_Ratio, bac)) -> new_esEs20(xwv4000, xwv3000, bac) 31.78/12.89 new_esEs29(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 31.78/12.89 new_compare17(Double(xwv43000, Neg(xwv430010)), Double(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.78/12.89 new_compare14(xwv43000, xwv44000, bfe, bff, bfg) -> new_compare27(xwv43000, xwv44000, new_esEs7(xwv43000, xwv44000, bfe, bff, bfg), bfe, bff, bfg) 31.78/12.89 new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 31.78/12.89 new_esEs25(xwv43000, xwv44000, ty_Ordering) -> new_esEs8(xwv43000, xwv44000) 31.78/12.89 new_esEs5(Nothing, Just(xwv3000), cbb) -> False 31.78/12.89 new_esEs5(Just(xwv4000), Nothing, cbb) -> False 31.78/12.89 new_primCmpInt(Neg(Zero), Pos(Succ(xwv4400))) -> LT 31.78/12.89 new_ltEs19(xwv4300, xwv4400, ty_Char) -> new_ltEs14(xwv4300, xwv4400) 31.78/12.89 new_esEs30(xwv400, xwv300, ty_Bool) -> new_esEs19(xwv400, xwv300) 31.78/12.89 new_primMulInt(Pos(xwv40010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 31.78/12.89 new_compare6(xwv43000, xwv44000, ty_Ordering) -> new_compare10(xwv43000, xwv44000) 31.78/12.89 new_esEs23(xwv4000, xwv3000, app(app(ty_Either, cca), ccb)) -> new_esEs4(xwv4000, xwv3000, cca, ccb) 31.78/12.89 new_ltEs20(xwv43002, xwv44002, ty_Double) -> new_ltEs15(xwv43002, xwv44002) 31.78/12.89 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.78/12.89 new_compare10(xwv43000, xwv44000) -> new_compare24(xwv43000, xwv44000, new_esEs8(xwv43000, xwv44000)) 31.78/12.89 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Double) -> new_ltEs15(xwv43000, xwv44000) 31.78/12.89 new_esEs13(:(xwv4000, xwv4001), [], cag) -> False 31.78/12.89 new_esEs13([], :(xwv3000, xwv3001), cag) -> False 31.78/12.89 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Bool) -> new_ltEs17(xwv43000, xwv44000) 31.78/12.89 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.78/12.89 new_esEs26(xwv4001, xwv3001, app(app(ty_@2, dcc), dcd)) -> new_esEs6(xwv4001, xwv3001, dcc, dcd) 31.78/12.89 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(app(ty_@3, ddh), dea), deb)) -> new_esEs7(xwv4000, xwv3000, ddh, dea, deb) 31.78/12.89 new_esEs11(xwv4001, xwv3001, app(app(ty_Either, gd), ge)) -> new_esEs4(xwv4001, xwv3001, gd, ge) 31.78/12.89 new_ltEs8(Right(xwv43000), Left(xwv44000), bbh, bae) -> False 31.78/12.89 new_lt11(xwv43000, xwv44000) -> new_esEs8(new_compare10(xwv43000, xwv44000), LT) 31.78/12.89 new_ltEs11(@2(xwv43000, xwv43001), @2(xwv44000, xwv44001), bdf, bdg) -> new_pePe(new_lt20(xwv43000, xwv44000, bdf), new_asAs(new_esEs28(xwv43000, xwv44000, bdf), new_ltEs21(xwv43001, xwv44001, bdg))) 31.78/12.89 new_esEs12(xwv4000, xwv3000, app(app(ty_@2, baa), bab)) -> new_esEs6(xwv4000, xwv3000, baa, bab) 31.78/12.89 new_primMulNat0(Succ(xwv400100), Zero) -> Zero 31.78/12.89 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 31.78/12.89 new_esEs29(xwv400, xwv300, ty_Integer) -> new_esEs14(xwv400, xwv300) 31.78/12.89 new_lt20(xwv43000, xwv44000, ty_Double) -> new_lt8(xwv43000, xwv44000) 31.78/12.89 new_primPlusNat0(Zero, xwv300000) -> Succ(xwv300000) 31.78/12.89 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Integer, bae) -> new_ltEs5(xwv43000, xwv44000) 31.78/12.89 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.78/12.89 new_ltEs9(GT, EQ) -> False 31.78/12.89 new_ltEs15(xwv4300, xwv4400) -> new_fsEs(new_compare17(xwv4300, xwv4400)) 31.78/12.89 new_esEs11(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 31.78/12.89 new_esEs29(xwv400, xwv300, ty_Bool) -> new_esEs19(xwv400, xwv300) 31.78/12.89 new_esEs23(xwv4000, xwv3000, app(ty_Maybe, ccc)) -> new_esEs5(xwv4000, xwv3000, ccc) 31.78/12.89 new_esEs10(xwv4002, xwv3002, app(ty_Ratio, fg)) -> new_esEs20(xwv4002, xwv3002, fg) 31.78/12.89 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(ty_Ratio, dbc)) -> new_esEs20(xwv4000, xwv3000, dbc) 31.78/12.89 new_lt13(xwv43001, xwv44001, app(ty_[], cee)) -> new_lt18(xwv43001, xwv44001, cee) 31.78/12.89 new_compare27(xwv43000, xwv44000, True, bfe, bff, bfg) -> EQ 31.78/12.89 new_esEs10(xwv4002, xwv3002, app(app(ty_Either, fa), fb)) -> new_esEs4(xwv4002, xwv3002, fa, fb) 31.78/12.89 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(app(ty_Either, bca), bcb)) -> new_ltEs8(xwv43000, xwv44000, bca, bcb) 31.78/12.89 new_ltEs4(Just(xwv43000), Just(xwv44000), app(ty_Ratio, bhg)) -> new_ltEs7(xwv43000, xwv44000, bhg) 31.78/12.89 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Char, bae) -> new_ltEs14(xwv43000, xwv44000) 31.78/12.89 new_esEs22(xwv4000, xwv3000, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.78/12.89 new_lt6(xwv43000, xwv44000) -> new_esEs8(new_compare15(xwv43000, xwv44000), LT) 31.78/12.89 new_ltEs19(xwv4300, xwv4400, app(app(ty_Either, bec), bed)) -> new_ltEs8(xwv4300, xwv4400, bec, bed) 31.78/12.89 new_compare7(xwv43, xwv44) -> new_primCmpInt(xwv43, xwv44) 31.78/12.89 new_esEs8(LT, LT) -> True 31.78/12.89 new_ltEs18(xwv4300, xwv4400, app(app(ty_@2, bdf), bdg)) -> new_ltEs11(xwv4300, xwv4400, bdf, bdg) 31.78/12.89 new_esEs10(xwv4002, xwv3002, ty_Float) -> new_esEs15(xwv4002, xwv3002) 31.78/12.89 new_esEs30(xwv400, xwv300, ty_@0) -> new_esEs16(xwv400, xwv300) 31.78/12.89 new_primPlusNat1(Succ(xwv33200), Zero) -> Succ(xwv33200) 31.78/12.89 new_primPlusNat1(Zero, Succ(xwv13100)) -> Succ(xwv13100) 31.78/12.89 new_esEs24(xwv43001, xwv44001, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs7(xwv43001, xwv44001, ceh, cfa, cfb) 31.78/12.89 new_esEs20(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), bhd) -> new_asAs(new_esEs22(xwv4000, xwv3000, bhd), new_esEs21(xwv4001, xwv3001, bhd)) 31.78/12.89 new_ltEs21(xwv43001, xwv44001, ty_Bool) -> new_ltEs17(xwv43001, xwv44001) 31.78/12.89 new_esEs11(xwv4001, xwv3001, app(ty_Ratio, ha)) -> new_esEs20(xwv4001, xwv3001, ha) 31.78/12.89 new_lt20(xwv43000, xwv44000, ty_Char) -> new_lt10(xwv43000, xwv44000) 31.78/12.89 new_compare116(xwv43000, xwv44000, False, df, dg) -> GT 31.78/12.89 new_esEs30(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 31.78/12.89 new_compare9(:%(xwv43000, xwv43001), :%(xwv44000, xwv44001), ty_Int) -> new_compare7(new_sr(xwv43000, xwv44001), new_sr(xwv44000, xwv43001)) 31.78/12.89 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(app(ty_@2, bcf), bcg)) -> new_ltEs11(xwv43000, xwv44000, bcf, bcg) 31.78/12.89 new_ltEs9(GT, GT) -> True 31.78/12.89 new_esEs11(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 31.78/12.89 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Int) -> new_ltEs6(xwv43000, xwv44000) 31.78/12.89 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Ratio, dfa)) -> new_esEs20(xwv4000, xwv3000, dfa) 31.78/12.89 new_esEs23(xwv4000, xwv3000, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs7(xwv4000, xwv3000, cbe, cbf, cbg) 31.78/12.89 new_lt20(xwv43000, xwv44000, ty_Ordering) -> new_lt11(xwv43000, xwv44000) 31.78/12.89 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_Either, ded), dee)) -> new_esEs4(xwv4000, xwv3000, ded, dee) 31.78/12.89 new_esEs28(xwv43000, xwv44000, ty_Integer) -> new_esEs14(xwv43000, xwv44000) 31.78/12.89 new_primMulInt(Neg(xwv40010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 31.78/12.89 new_primCmpInt(Pos(Zero), Pos(Succ(xwv4400))) -> new_primCmpNat0(Zero, Succ(xwv4400)) 31.78/12.89 new_esEs10(xwv4002, xwv3002, app(ty_Maybe, fc)) -> new_esEs5(xwv4002, xwv3002, fc) 31.78/12.89 new_ltEs20(xwv43002, xwv44002, ty_Bool) -> new_ltEs17(xwv43002, xwv44002) 31.78/12.89 new_esEs25(xwv43000, xwv44000, app(app(ty_@2, cdd), cde)) -> new_esEs6(xwv43000, xwv44000, cdd, cde) 31.78/12.89 new_esEs12(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.78/12.89 new_lt12(xwv43000, xwv44000, ty_Bool) -> new_lt4(xwv43000, xwv44000) 31.78/12.89 new_esEs12(xwv4000, xwv3000, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs7(xwv4000, xwv3000, hb, hc, hd) 31.78/12.89 new_compare114(xwv43000, xwv44000, False) -> GT 31.78/12.89 new_esEs21(xwv4001, xwv3001, ty_Int) -> new_esEs9(xwv4001, xwv3001) 31.78/12.89 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Maybe, def)) -> new_esEs5(xwv4000, xwv3000, def) 31.78/12.89 new_ltEs18(xwv4300, xwv4400, ty_Char) -> new_ltEs14(xwv4300, xwv4400) 31.78/12.89 new_esEs23(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.78/12.89 new_ltEs18(xwv4300, xwv4400, app(app(ty_Either, bbh), bae)) -> new_ltEs8(xwv4300, xwv4400, bbh, bae) 31.78/12.89 new_lt20(xwv43000, xwv44000, ty_Float) -> new_lt19(xwv43000, xwv44000) 31.78/12.89 new_ltEs8(Left(xwv43000), Left(xwv44000), app(ty_Ratio, bah), bae) -> new_ltEs7(xwv43000, xwv44000, bah) 31.78/12.89 new_ltEs21(xwv43001, xwv44001, ty_Double) -> new_ltEs15(xwv43001, xwv44001) 31.78/12.89 new_compare112(xwv43000, xwv44000, True) -> LT 31.78/12.89 new_compare113(xwv160, xwv161, True, cgf, cgg) -> LT 31.78/12.89 new_compare6(xwv43000, xwv44000, app(ty_Ratio, cd)) -> new_compare9(xwv43000, xwv44000, cd) 31.78/12.89 new_esEs10(xwv4002, xwv3002, ty_@0) -> new_esEs16(xwv4002, xwv3002) 31.78/12.89 new_ltEs6(xwv4300, xwv4400) -> new_fsEs(new_compare7(xwv4300, xwv4400)) 31.78/12.89 new_primMulInt(Pos(xwv40010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 31.78/12.89 new_primMulInt(Neg(xwv40010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 31.78/12.89 new_ltEs21(xwv43001, xwv44001, app(ty_Ratio, dfe)) -> new_ltEs7(xwv43001, xwv44001, dfe) 31.78/12.89 new_esEs26(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 31.78/12.89 new_esEs23(xwv4000, xwv3000, app(app(ty_@2, ccd), cce)) -> new_esEs6(xwv4000, xwv3000, ccd, cce) 31.78/12.89 new_esEs11(xwv4001, xwv3001, ty_Char) -> new_esEs18(xwv4001, xwv3001) 31.78/12.89 new_compare6(xwv43000, xwv44000, app(app(ty_Either, cb), cc)) -> new_compare8(xwv43000, xwv44000, cb, cc) 31.78/12.89 new_esEs23(xwv4000, xwv3000, app(ty_[], cbh)) -> new_esEs13(xwv4000, xwv3000, cbh) 31.78/12.89 new_lt10(xwv43000, xwv44000) -> new_esEs8(new_compare16(xwv43000, xwv44000), LT) 31.78/12.89 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Float, cba) -> new_esEs15(xwv4000, xwv3000) 31.78/12.89 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(ty_[], bce)) -> new_ltEs10(xwv43000, xwv44000, bce) 31.78/12.89 new_lt20(xwv43000, xwv44000, ty_@0) -> new_lt6(xwv43000, xwv44000) 31.78/12.89 new_lt8(xwv43000, xwv44000) -> new_esEs8(new_compare17(xwv43000, xwv44000), LT) 31.78/12.89 new_esEs11(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 31.78/12.89 new_sr0(Integer(xwv430000), Integer(xwv440010)) -> Integer(new_primMulInt(xwv430000, xwv440010)) 31.78/12.89 new_esEs24(xwv43001, xwv44001, ty_Integer) -> new_esEs14(xwv43001, xwv44001) 31.78/12.89 new_lt16(xwv43000, xwv44000, cge) -> new_esEs8(new_compare9(xwv43000, xwv44000, cge), LT) 31.78/12.89 new_esEs29(xwv400, xwv300, app(ty_Maybe, cbb)) -> new_esEs5(xwv400, xwv300, cbb) 31.78/12.89 new_esEs10(xwv4002, xwv3002, ty_Int) -> new_esEs9(xwv4002, xwv3002) 31.78/12.89 new_ltEs19(xwv4300, xwv4400, ty_Bool) -> new_ltEs17(xwv4300, xwv4400) 31.78/12.89 new_compare18(Float(xwv43000, Pos(xwv430010)), Float(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.78/12.89 new_lt19(xwv43000, xwv44000) -> new_esEs8(new_compare18(xwv43000, xwv44000), LT) 31.78/12.89 new_ltEs4(Just(xwv43000), Just(xwv44000), app(ty_[], caa)) -> new_ltEs10(xwv43000, xwv44000, caa) 31.78/12.89 new_ltEs18(xwv4300, xwv4400, ty_@0) -> new_ltEs13(xwv4300, xwv4400) 31.78/12.89 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_@0, bae) -> new_ltEs13(xwv43000, xwv44000) 31.78/12.89 new_esEs23(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.78/12.89 new_esEs28(xwv43000, xwv44000, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs7(xwv43000, xwv44000, bfe, bff, bfg) 31.78/12.89 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.78/12.89 new_compare6(xwv43000, xwv44000, app(app(ty_@2, cg), da)) -> new_compare13(xwv43000, xwv44000, cg, da) 31.78/12.89 new_lt12(xwv43000, xwv44000, ty_Int) -> new_lt14(xwv43000, xwv44000) 31.78/12.89 new_esEs29(xwv400, xwv300, ty_@0) -> new_esEs16(xwv400, xwv300) 31.78/12.89 new_esEs25(xwv43000, xwv44000, ty_Int) -> new_esEs9(xwv43000, xwv44000) 31.78/12.89 new_compare0([], :(xwv44000, xwv44001), ca) -> LT 31.78/12.89 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.78/12.89 new_asAs(True, xwv95) -> xwv95 31.78/12.89 new_lt12(xwv43000, xwv44000, app(ty_Maybe, cdb)) -> new_lt17(xwv43000, xwv44000, cdb) 31.78/12.89 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_@0) -> new_esEs16(xwv4000, xwv3000) 31.78/12.89 new_esEs30(xwv400, xwv300, ty_Integer) -> new_esEs14(xwv400, xwv300) 31.78/12.89 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs12(xwv43000, xwv44000, bch, bda, bdb) 31.78/12.89 new_esEs27(xwv4000, xwv3000, app(ty_[], dda)) -> new_esEs13(xwv4000, xwv3000, dda) 31.78/12.89 new_ltEs16(xwv4300, xwv4400) -> new_fsEs(new_compare18(xwv4300, xwv4400)) 31.78/12.89 new_ltEs4(Nothing, Just(xwv44000), bde) -> True 31.78/12.89 new_compare17(Double(xwv43000, Pos(xwv430010)), Double(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Pos(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.78/12.89 new_compare17(Double(xwv43000, Neg(xwv430010)), Double(xwv44000, Pos(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Pos(xwv430010), xwv44000)) 31.78/12.89 new_esEs23(xwv4000, xwv3000, app(ty_Ratio, ccf)) -> new_esEs20(xwv4000, xwv3000, ccf) 31.78/12.89 new_esEs4(Left(xwv4000), Left(xwv3000), app(app(app(ty_@3, cgh), cha), chb), cba) -> new_esEs7(xwv4000, xwv3000, cgh, cha, chb) 31.78/12.89 new_esEs16(@0, @0) -> True 31.78/12.89 new_esEs4(Left(xwv4000), Left(xwv3000), app(app(ty_Either, chd), che), cba) -> new_esEs4(xwv4000, xwv3000, chd, che) 31.78/12.89 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(app(ty_@2, dba), dbb)) -> new_esEs6(xwv4000, xwv3000, dba, dbb) 31.78/12.89 new_ltEs18(xwv4300, xwv4400, app(ty_Maybe, bde)) -> new_ltEs4(xwv4300, xwv4400, bde) 31.78/12.89 new_esEs26(xwv4001, xwv3001, ty_Char) -> new_esEs18(xwv4001, xwv3001) 31.78/12.89 new_ltEs19(xwv4300, xwv4400, ty_Double) -> new_ltEs15(xwv4300, xwv4400) 31.78/12.89 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.78/12.89 new_compare111(xwv167, xwv168, False, dh, ea) -> GT 31.78/12.89 new_ltEs20(xwv43002, xwv44002, ty_Char) -> new_ltEs14(xwv43002, xwv44002) 31.78/12.89 new_ltEs20(xwv43002, xwv44002, ty_Float) -> new_ltEs16(xwv43002, xwv44002) 31.78/12.89 new_compare6(xwv43000, xwv44000, ty_Integer) -> new_compare11(xwv43000, xwv44000) 31.78/12.89 new_primCmpInt(Pos(Succ(xwv4300)), Pos(xwv440)) -> new_primCmpNat0(Succ(xwv4300), xwv440) 31.78/12.89 new_lt5(xwv43000, xwv44000, df, dg) -> new_esEs8(new_compare13(xwv43000, xwv44000, df, dg), LT) 31.78/12.89 new_primCompAux00(xwv186, EQ) -> xwv186 31.78/12.89 new_compare0([], [], ca) -> EQ 31.78/12.89 new_sr(xwv4001, xwv3000) -> new_primMulInt(xwv4001, xwv3000) 31.78/12.89 new_lt7(xwv43000, xwv44000) -> new_esEs8(new_compare11(xwv43000, xwv44000), LT) 31.78/12.89 new_esEs27(xwv4000, xwv3000, app(app(ty_@2, dde), ddf)) -> new_esEs6(xwv4000, xwv3000, dde, ddf) 31.78/12.89 new_esEs28(xwv43000, xwv44000, ty_Float) -> new_esEs15(xwv43000, xwv44000) 31.78/12.89 new_ltEs4(Just(xwv43000), Just(xwv44000), app(app(ty_Either, bhe), bhf)) -> new_ltEs8(xwv43000, xwv44000, bhe, bhf) 31.78/12.89 new_lt4(xwv43000, xwv44000) -> new_esEs8(new_compare19(xwv43000, xwv44000), LT) 31.78/12.89 new_primMulNat0(Zero, Zero) -> Zero 31.78/12.89 new_esEs12(xwv4000, xwv3000, app(ty_[], he)) -> new_esEs13(xwv4000, xwv3000, he) 31.78/12.89 new_compare6(xwv43000, xwv44000, app(app(app(ty_@3, db), dc), dd)) -> new_compare14(xwv43000, xwv44000, db, dc, dd) 31.78/12.89 new_ltEs5(xwv4300, xwv4400) -> new_fsEs(new_compare11(xwv4300, xwv4400)) 31.78/12.89 new_esEs10(xwv4002, xwv3002, ty_Bool) -> new_esEs19(xwv4002, xwv3002) 31.78/12.89 new_esEs27(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.78/12.89 new_ltEs19(xwv4300, xwv4400, app(ty_Ratio, bee)) -> new_ltEs7(xwv4300, xwv4400, bee) 31.78/12.89 new_esEs24(xwv43001, xwv44001, app(ty_Maybe, ced)) -> new_esEs5(xwv43001, xwv44001, ced) 31.78/12.89 new_esEs30(xwv400, xwv300, app(ty_Maybe, bgf)) -> new_esEs5(xwv400, xwv300, bgf) 31.78/12.89 new_esEs12(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.78/12.89 new_esEs30(xwv400, xwv300, ty_Int) -> new_esEs9(xwv400, xwv300) 31.78/12.89 new_ltEs4(Just(xwv43000), Just(xwv44000), app(app(ty_@2, cab), cac)) -> new_ltEs11(xwv43000, xwv44000, cab, cac) 31.78/12.89 new_compare11(Integer(xwv43000), Integer(xwv44000)) -> new_primCmpInt(xwv43000, xwv44000) 31.78/12.89 new_compare115(xwv43000, xwv44000, False, bfe, bff, bfg) -> GT 31.78/12.89 new_compare24(xwv43000, xwv44000, False) -> new_compare114(xwv43000, xwv44000, new_ltEs9(xwv43000, xwv44000)) 31.78/12.89 new_esEs25(xwv43000, xwv44000, app(app(ty_Either, ccg), cch)) -> new_esEs4(xwv43000, xwv44000, ccg, cch) 31.78/12.89 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.78/12.89 new_esEs25(xwv43000, xwv44000, app(ty_Maybe, cdb)) -> new_esEs5(xwv43000, xwv44000, cdb) 31.78/12.89 new_esEs4(Right(xwv4000), Right(xwv3000), cah, app(app(ty_Either, daf), dag)) -> new_esEs4(xwv4000, xwv3000, daf, dag) 31.78/12.89 new_lt20(xwv43000, xwv44000, ty_Integer) -> new_lt7(xwv43000, xwv44000) 31.78/12.89 new_esEs28(xwv43000, xwv44000, app(app(ty_@2, df), dg)) -> new_esEs6(xwv43000, xwv44000, df, dg) 31.78/12.89 new_ltEs9(GT, LT) -> False 31.78/12.89 new_esEs24(xwv43001, xwv44001, app(ty_Ratio, cec)) -> new_esEs20(xwv43001, xwv44001, cec) 31.78/12.89 new_ltEs17(False, False) -> True 31.78/12.89 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.78/12.89 new_compare18(Float(xwv43000, Neg(xwv430010)), Float(xwv44000, Neg(xwv440010))) -> new_compare7(new_sr(xwv43000, Neg(xwv440010)), new_sr(Neg(xwv430010), xwv44000)) 31.78/12.89 new_esEs12(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.78/12.89 new_esEs29(xwv400, xwv300, app(app(ty_Either, cah), cba)) -> new_esEs4(xwv400, xwv300, cah, cba) 31.78/12.89 new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False 31.78/12.89 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 31.78/12.89 new_esEs24(xwv43001, xwv44001, ty_Int) -> new_esEs9(xwv43001, xwv44001) 31.78/12.89 new_lt13(xwv43001, xwv44001, app(app(ty_@2, cef), ceg)) -> new_lt5(xwv43001, xwv44001, cef, ceg) 31.78/12.89 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Double) -> new_ltEs15(xwv43000, xwv44000) 31.78/12.89 new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 31.78/12.89 new_ltEs9(EQ, GT) -> True 31.78/12.89 new_compare24(xwv43000, xwv44000, True) -> EQ 31.78/12.89 new_esEs11(xwv4001, xwv3001, ty_Bool) -> new_esEs19(xwv4001, xwv3001) 31.78/12.89 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.78/12.89 new_ltEs18(xwv4300, xwv4400, ty_Integer) -> new_ltEs5(xwv4300, xwv4400) 31.78/12.89 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Bool) -> new_ltEs17(xwv43000, xwv44000) 31.78/12.89 new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> False 31.78/12.89 new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> False 31.78/12.89 new_esEs26(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 31.78/12.89 new_compare26(Right(xwv4300), Right(xwv4400), False, bdc, bdd) -> new_compare111(xwv4300, xwv4400, new_ltEs19(xwv4300, xwv4400, bdd), bdc, bdd) 31.78/12.89 new_ltEs20(xwv43002, xwv44002, app(ty_Ratio, cfe)) -> new_ltEs7(xwv43002, xwv44002, cfe) 31.78/12.89 new_ltEs8(Left(xwv43000), Left(xwv44000), app(ty_[], bbb), bae) -> new_ltEs10(xwv43000, xwv44000, bbb) 31.78/12.89 new_primCmpInt(Neg(Zero), Neg(Succ(xwv4400))) -> new_primCmpNat0(Succ(xwv4400), Zero) 31.78/12.89 new_esEs28(xwv43000, xwv44000, app(ty_[], dfb)) -> new_esEs13(xwv43000, xwv44000, dfb) 31.78/12.89 new_esEs30(xwv400, xwv300, app(app(ty_Either, bgd), bge)) -> new_esEs4(xwv400, xwv300, bgd, bge) 31.78/12.89 new_esEs29(xwv400, xwv300, ty_Int) -> new_esEs9(xwv400, xwv300) 31.78/12.89 new_esEs24(xwv43001, xwv44001, app(app(ty_Either, cea), ceb)) -> new_esEs4(xwv43001, xwv44001, cea, ceb) 31.78/12.89 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Int) -> new_esEs9(xwv4000, xwv3000) 31.78/12.89 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 31.78/12.89 new_compare6(xwv43000, xwv44000, ty_Double) -> new_compare17(xwv43000, xwv44000) 31.78/12.89 new_ltEs17(True, False) -> False 31.78/12.89 new_compare8(xwv43000, xwv44000, bhb, bhc) -> new_compare26(xwv43000, xwv44000, new_esEs4(xwv43000, xwv44000, bhb, bhc), bhb, bhc) 31.78/12.89 new_esEs27(xwv4000, xwv3000, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.78/12.89 new_esEs28(xwv43000, xwv44000, app(ty_Maybe, de)) -> new_esEs5(xwv43000, xwv44000, de) 31.78/12.89 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_[], dec)) -> new_esEs13(xwv4000, xwv3000, dec) 31.78/12.89 new_lt12(xwv43000, xwv44000, app(ty_Ratio, cda)) -> new_lt16(xwv43000, xwv44000, cda) 31.78/12.89 new_ltEs17(False, True) -> True 31.78/12.89 new_lt13(xwv43001, xwv44001, ty_Float) -> new_lt19(xwv43001, xwv44001) 31.78/12.89 new_primCompAux0(xwv43000, xwv44000, xwv182, ca) -> new_primCompAux00(xwv182, new_compare6(xwv43000, xwv44000, ca)) 31.78/12.89 new_esEs24(xwv43001, xwv44001, ty_Float) -> new_esEs15(xwv43001, xwv44001) 31.78/12.89 new_esEs29(xwv400, xwv300, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs7(xwv400, xwv300, eb, ec, ed) 31.78/12.89 new_esEs30(xwv400, xwv300, app(ty_Ratio, bha)) -> new_esEs20(xwv400, xwv300, bha) 31.78/12.89 new_esEs4(Right(xwv4000), Right(xwv3000), cah, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 31.78/12.89 new_esEs10(xwv4002, xwv3002, ty_Integer) -> new_esEs14(xwv4002, xwv3002) 31.78/12.89 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Integer) -> new_ltEs5(xwv43000, xwv44000) 31.78/12.89 new_esEs11(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 31.78/12.89 new_ltEs8(Left(xwv43000), Right(xwv44000), bbh, bae) -> True 31.78/12.89 new_lt13(xwv43001, xwv44001, ty_@0) -> new_lt6(xwv43001, xwv44001) 31.78/12.89 new_not(False) -> True 31.78/12.89 new_esEs28(xwv43000, xwv44000, ty_Int) -> new_esEs9(xwv43000, xwv44000) 31.78/12.89 new_esEs30(xwv400, xwv300, app(app(ty_@2, bgg), bgh)) -> new_esEs6(xwv400, xwv300, bgg, bgh) 31.78/12.89 new_compare0(:(xwv43000, xwv43001), [], ca) -> GT 31.78/12.89 new_esEs8(LT, GT) -> False 31.78/12.89 new_esEs8(GT, LT) -> False 31.78/12.89 new_lt20(xwv43000, xwv44000, app(app(ty_@2, df), dg)) -> new_lt5(xwv43000, xwv44000, df, dg) 31.78/12.89 new_esEs25(xwv43000, xwv44000, ty_Double) -> new_esEs17(xwv43000, xwv44000) 31.78/12.89 new_esEs30(xwv400, xwv300, app(app(app(ty_@3, bfh), bga), bgb)) -> new_esEs7(xwv400, xwv300, bfh, bga, bgb) 31.78/12.89 new_esEs24(xwv43001, xwv44001, ty_@0) -> new_esEs16(xwv43001, xwv44001) 31.78/12.89 new_esEs12(xwv4000, xwv3000, ty_Bool) -> new_esEs19(xwv4000, xwv3000) 31.78/12.89 new_compare25(xwv43000, xwv44000, True) -> EQ 31.78/12.89 new_esEs23(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.78/12.89 new_ltEs18(xwv4300, xwv4400, ty_Int) -> new_ltEs6(xwv4300, xwv4400) 31.78/12.89 new_esEs27(xwv4000, xwv3000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs7(xwv4000, xwv3000, dcf, dcg, dch) 31.78/12.89 new_primPlusNat0(Succ(xwv1400), xwv300000) -> Succ(Succ(new_primPlusNat1(xwv1400, xwv300000))) 31.78/12.89 new_esEs26(xwv4001, xwv3001, app(ty_Maybe, dcb)) -> new_esEs5(xwv4001, xwv3001, dcb) 31.78/12.89 new_esEs13(:(xwv4000, xwv4001), :(xwv3000, xwv3001), cag) -> new_asAs(new_esEs23(xwv4000, xwv3000, cag), new_esEs13(xwv4001, xwv3001, cag)) 31.78/12.89 new_esEs24(xwv43001, xwv44001, ty_Bool) -> new_esEs19(xwv43001, xwv44001) 31.78/12.89 new_ltEs9(LT, EQ) -> True 31.78/12.89 new_esEs29(xwv400, xwv300, app(ty_Ratio, bhd)) -> new_esEs20(xwv400, xwv300, bhd) 31.78/12.89 new_esEs29(xwv400, xwv300, app(app(ty_@2, cbc), cbd)) -> new_esEs6(xwv400, xwv300, cbc, cbd) 31.78/12.89 new_esEs4(Left(xwv4000), Left(xwv3000), app(ty_Maybe, chf), cba) -> new_esEs5(xwv4000, xwv3000, chf) 31.78/12.89 new_esEs30(xwv400, xwv300, app(ty_[], bgc)) -> new_esEs13(xwv400, xwv300, bgc) 31.78/12.89 new_ltEs7(xwv4300, xwv4400, bad) -> new_fsEs(new_compare9(xwv4300, xwv4400, bad)) 31.78/12.89 new_compare16(Char(xwv43000), Char(xwv44000)) -> new_primCmpNat0(xwv43000, xwv44000) 31.78/12.89 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 31.78/12.89 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 31.78/12.89 new_compare0(:(xwv43000, xwv43001), :(xwv44000, xwv44001), ca) -> new_primCompAux0(xwv43000, xwv44000, new_compare0(xwv43001, xwv44001, ca), ca) 31.78/12.89 new_primPlusNat1(Zero, Zero) -> Zero 31.78/12.89 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Float, bae) -> new_ltEs16(xwv43000, xwv44000) 31.78/12.89 new_lt20(xwv43000, xwv44000, app(app(ty_Either, bhb), bhc)) -> new_lt15(xwv43000, xwv44000, bhb, bhc) 31.78/12.89 new_compare6(xwv43000, xwv44000, ty_Bool) -> new_compare19(xwv43000, xwv44000) 31.78/12.89 new_lt12(xwv43000, xwv44000, app(app(ty_@2, cdd), cde)) -> new_lt5(xwv43000, xwv44000, cdd, cde) 31.78/12.89 new_esEs26(xwv4001, xwv3001, app(ty_Ratio, dce)) -> new_esEs20(xwv4001, xwv3001, dce) 31.78/12.89 new_lt12(xwv43000, xwv44000, ty_Ordering) -> new_lt11(xwv43000, xwv44000) 31.78/12.89 new_ltEs21(xwv43001, xwv44001, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_ltEs12(xwv43001, xwv44001, dgb, dgc, dgd) 31.78/12.89 new_esEs28(xwv43000, xwv44000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xwv43000, xwv44000, bhb, bhc) 31.78/12.89 new_ltEs4(Just(xwv43000), Just(xwv44000), ty_Ordering) -> new_ltEs9(xwv43000, xwv44000) 31.78/12.89 new_esEs26(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 31.78/12.89 new_esEs12(xwv4000, xwv3000, ty_Char) -> new_esEs18(xwv4000, xwv3000) 31.78/12.89 new_ltEs9(LT, GT) -> True 31.78/12.89 new_esEs27(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 31.78/12.89 new_esEs12(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.78/12.89 new_compare6(xwv43000, xwv44000, ty_@0) -> new_compare15(xwv43000, xwv44000) 31.78/12.89 new_esEs26(xwv4001, xwv3001, ty_Bool) -> new_esEs19(xwv4001, xwv3001) 31.78/12.89 new_esEs26(xwv4001, xwv3001, app(app(ty_Either, dbh), dca)) -> new_esEs4(xwv4001, xwv3001, dbh, dca) 31.78/12.89 new_ltEs20(xwv43002, xwv44002, app(ty_[], cfg)) -> new_ltEs10(xwv43002, xwv44002, cfg) 31.78/12.89 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 31.78/12.89 new_lt20(xwv43000, xwv44000, app(ty_[], dfb)) -> new_lt18(xwv43000, xwv44000, dfb) 31.78/12.89 new_primMulNat0(Succ(xwv400100), Succ(xwv300000)) -> new_primPlusNat0(new_primMulNat0(xwv400100, Succ(xwv300000)), xwv300000) 31.78/12.89 new_esEs27(xwv4000, xwv3000, app(ty_Ratio, ddg)) -> new_esEs20(xwv4000, xwv3000, ddg) 31.78/12.89 new_ltEs8(Left(xwv43000), Left(xwv44000), ty_Int, bae) -> new_ltEs6(xwv43000, xwv44000) 31.78/12.89 new_ltEs21(xwv43001, xwv44001, app(ty_[], dfg)) -> new_ltEs10(xwv43001, xwv44001, dfg) 31.78/12.89 new_esEs21(xwv4001, xwv3001, ty_Integer) -> new_esEs14(xwv4001, xwv3001) 31.78/12.89 new_primCmpNat0(Succ(xwv4300), Succ(xwv4400)) -> new_primCmpNat0(xwv4300, xwv4400) 31.78/12.89 new_compare9(:%(xwv43000, xwv43001), :%(xwv44000, xwv44001), ty_Integer) -> new_compare11(new_sr0(xwv43000, xwv44001), new_sr0(xwv44000, xwv43001)) 31.78/12.89 new_lt13(xwv43001, xwv44001, ty_Double) -> new_lt8(xwv43001, xwv44001) 31.78/12.89 new_lt13(xwv43001, xwv44001, ty_Char) -> new_lt10(xwv43001, xwv44001) 31.78/12.89 new_ltEs21(xwv43001, xwv44001, ty_Integer) -> new_ltEs5(xwv43001, xwv44001) 31.78/12.89 new_esEs28(xwv43000, xwv44000, ty_Ordering) -> new_esEs8(xwv43000, xwv44000) 31.78/12.89 new_esEs4(Left(xwv4000), Left(xwv3000), ty_Integer, cba) -> new_esEs14(xwv4000, xwv3000) 31.78/12.89 new_ltEs19(xwv4300, xwv4400, ty_Float) -> new_ltEs16(xwv4300, xwv4400) 31.78/12.89 new_esEs4(Left(xwv4000), Left(xwv3000), app(ty_Ratio, daa), cba) -> new_esEs20(xwv4000, xwv3000, daa) 31.78/12.89 new_ltEs12(@3(xwv43000, xwv43001, xwv43002), @3(xwv44000, xwv44001, xwv44002), bdh, bea, beb) -> new_pePe(new_lt12(xwv43000, xwv44000, bdh), new_asAs(new_esEs25(xwv43000, xwv44000, bdh), new_pePe(new_lt13(xwv43001, xwv44001, bea), new_asAs(new_esEs24(xwv43001, xwv44001, bea), new_ltEs20(xwv43002, xwv44002, beb))))) 31.78/12.89 new_ltEs21(xwv43001, xwv44001, app(ty_Maybe, dff)) -> new_ltEs4(xwv43001, xwv44001, dff) 31.78/12.89 new_esEs24(xwv43001, xwv44001, ty_Char) -> new_esEs18(xwv43001, xwv44001) 31.78/12.89 new_esEs27(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 31.78/12.89 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 31.78/12.89 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 31.78/12.89 new_esEs28(xwv43000, xwv44000, app(ty_Ratio, cge)) -> new_esEs20(xwv43000, xwv44000, cge) 31.78/12.89 new_ltEs9(EQ, LT) -> False 31.78/12.89 new_compare26(Left(xwv4300), Left(xwv4400), False, bdc, bdd) -> new_compare113(xwv4300, xwv4400, new_ltEs18(xwv4300, xwv4400, bdc), bdc, bdd) 31.78/12.89 new_ltEs19(xwv4300, xwv4400, app(ty_Maybe, bef)) -> new_ltEs4(xwv4300, xwv4400, bef) 31.78/12.89 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Char) -> new_ltEs14(xwv43000, xwv44000) 31.78/12.89 new_primEqNat0(Zero, Zero) -> True 31.78/12.89 new_lt12(xwv43000, xwv44000, ty_Double) -> new_lt8(xwv43000, xwv44000) 31.78/12.89 new_ltEs18(xwv4300, xwv4400, ty_Float) -> new_ltEs16(xwv4300, xwv4400) 31.78/12.89 new_esEs29(xwv400, xwv300, ty_Ordering) -> new_esEs8(xwv400, xwv300) 31.78/12.89 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, app(ty_Ratio, bcc)) -> new_ltEs7(xwv43000, xwv44000, bcc) 31.78/12.89 new_compare110(xwv43000, xwv44000, True, de) -> LT 31.78/12.89 new_esEs26(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 31.78/12.89 new_esEs25(xwv43000, xwv44000, ty_Char) -> new_esEs18(xwv43000, xwv44000) 31.78/12.89 new_esEs11(xwv4001, xwv3001, ty_Integer) -> new_esEs14(xwv4001, xwv3001) 31.78/12.89 new_ltEs17(True, True) -> True 31.78/12.89 new_lt13(xwv43001, xwv44001, ty_Ordering) -> new_lt11(xwv43001, xwv44001) 31.78/12.89 new_asAs(False, xwv95) -> False 31.78/12.89 new_ltEs8(Left(xwv43000), Left(xwv44000), app(app(app(ty_@3, bbe), bbf), bbg), bae) -> new_ltEs12(xwv43000, xwv44000, bbe, bbf, bbg) 31.78/12.89 new_lt12(xwv43000, xwv44000, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_lt9(xwv43000, xwv44000, cdf, cdg, cdh) 31.78/12.89 new_ltEs4(Just(xwv43000), Just(xwv44000), app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs12(xwv43000, xwv44000, cad, cae, caf) 31.78/12.89 new_lt20(xwv43000, xwv44000, app(ty_Maybe, de)) -> new_lt17(xwv43000, xwv44000, de) 31.78/12.89 new_ltEs19(xwv4300, xwv4400, app(ty_[], beg)) -> new_ltEs10(xwv4300, xwv4400, beg) 31.78/12.89 new_lt13(xwv43001, xwv44001, app(ty_Ratio, cec)) -> new_lt16(xwv43001, xwv44001, cec) 31.78/12.89 new_esEs26(xwv4001, xwv3001, ty_Int) -> new_esEs9(xwv4001, xwv3001) 31.78/12.89 new_esEs27(xwv4000, xwv3000, app(ty_Maybe, ddd)) -> new_esEs5(xwv4000, xwv3000, ddd) 31.78/12.89 new_esEs25(xwv43000, xwv44000, ty_@0) -> new_esEs16(xwv43000, xwv44000) 31.78/12.89 new_compare28(xwv43000, xwv44000, True, df, dg) -> EQ 31.78/12.89 new_esEs22(xwv4000, xwv3000, ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.78/12.89 new_esEs14(Integer(xwv4000), Integer(xwv3000)) -> new_primEqInt(xwv4000, xwv3000) 31.78/12.89 new_lt13(xwv43001, xwv44001, ty_Int) -> new_lt14(xwv43001, xwv44001) 31.78/12.89 new_ltEs20(xwv43002, xwv44002, app(ty_Maybe, cff)) -> new_ltEs4(xwv43002, xwv44002, cff) 31.78/12.89 new_esEs27(xwv4000, xwv3000, app(app(ty_Either, ddb), ddc)) -> new_esEs4(xwv4000, xwv3000, ddb, ddc) 31.78/12.89 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Integer) -> new_esEs14(xwv4000, xwv3000) 31.78/12.89 new_esEs8(EQ, GT) -> False 31.78/12.89 new_esEs8(GT, EQ) -> False 31.78/12.89 new_lt9(xwv43000, xwv44000, bfe, bff, bfg) -> new_esEs8(new_compare14(xwv43000, xwv44000, bfe, bff, bfg), LT) 31.78/12.89 new_compare13(xwv43000, xwv44000, df, dg) -> new_compare28(xwv43000, xwv44000, new_esEs6(xwv43000, xwv44000, df, dg), df, dg) 31.78/12.89 new_ltEs9(EQ, EQ) -> True 31.78/12.89 new_esEs19(True, True) -> True 31.78/12.89 new_esEs25(xwv43000, xwv44000, ty_Bool) -> new_esEs19(xwv43000, xwv44000) 31.78/12.89 new_ltEs8(Right(xwv43000), Right(xwv44000), bbh, ty_Ordering) -> new_ltEs9(xwv43000, xwv44000) 31.78/12.89 31.78/12.89 The set Q consists of the following terms: 31.78/12.89 31.78/12.89 new_esEs29(x0, x1, ty_Integer) 31.78/12.89 new_esEs26(x0, x1, ty_Ordering) 31.78/12.89 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 31.78/12.89 new_esEs8(EQ, EQ) 31.78/12.89 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 31.78/12.89 new_lt5(x0, x1, x2, x3) 31.78/12.89 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 31.78/12.89 new_ltEs20(x0, x1, ty_Bool) 31.78/12.89 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 31.78/12.89 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_esEs30(x0, x1, ty_Int) 31.78/12.89 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 31.78/12.89 new_esEs12(x0, x1, ty_Integer) 31.78/12.89 new_ltEs19(x0, x1, ty_Float) 31.78/12.89 new_compare110(x0, x1, False, x2) 31.78/12.89 new_esEs13(:(x0, x1), :(x2, x3), x4) 31.78/12.89 new_esEs24(x0, x1, ty_Char) 31.78/12.89 new_ltEs18(x0, x1, ty_Int) 31.78/12.89 new_esEs5(Just(x0), Just(x1), ty_Float) 31.78/12.89 new_lt18(x0, x1, x2) 31.78/12.89 new_compare26(x0, x1, True, x2, x3) 31.78/12.89 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_esEs30(x0, x1, ty_Char) 31.78/12.89 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_primPlusNat1(Zero, Zero) 31.78/12.89 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 31.78/12.89 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 31.78/12.89 new_lt8(x0, x1) 31.78/12.89 new_esEs18(Char(x0), Char(x1)) 31.78/12.89 new_primPlusNat1(Succ(x0), Zero) 31.78/12.89 new_esEs25(x0, x1, ty_Ordering) 31.78/12.89 new_esEs28(x0, x1, app(ty_[], x2)) 31.78/12.89 new_esEs29(x0, x1, app(ty_[], x2)) 31.78/12.89 new_ltEs18(x0, x1, ty_Ordering) 31.78/12.89 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_compare28(x0, x1, False, x2, x3) 31.78/12.89 new_esEs23(x0, x1, ty_Double) 31.78/12.89 new_esEs24(x0, x1, ty_Int) 31.78/12.89 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_esEs19(False, False) 31.78/12.89 new_sr(x0, x1) 31.78/12.89 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_esEs26(x0, x1, ty_Int) 31.78/12.89 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_esEs11(x0, x1, ty_Float) 31.78/12.89 new_lt6(x0, x1) 31.78/12.89 new_lt10(x0, x1) 31.78/12.89 new_compare0([], [], x0) 31.78/12.89 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 31.78/12.89 new_primEqInt(Pos(Zero), Pos(Zero)) 31.78/12.89 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 31.78/12.89 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 31.78/12.89 new_lt20(x0, x1, ty_Ordering) 31.78/12.89 new_esEs30(x0, x1, ty_Ordering) 31.78/12.89 new_ltEs18(x0, x1, ty_Char) 31.78/12.89 new_esEs11(x0, x1, app(ty_[], x2)) 31.78/12.89 new_lt20(x0, x1, ty_Double) 31.78/12.89 new_esEs12(x0, x1, ty_Bool) 31.78/12.89 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 31.78/12.89 new_esEs10(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 31.78/12.89 new_ltEs21(x0, x1, ty_Bool) 31.78/12.89 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 31.78/12.89 new_ltEs20(x0, x1, ty_@0) 31.78/12.89 new_esEs23(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_esEs10(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 31.78/12.89 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_esEs11(x0, x1, ty_Integer) 31.78/12.89 new_ltEs9(EQ, EQ) 31.78/12.89 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 31.78/12.89 new_primEqInt(Neg(Zero), Neg(Zero)) 31.78/12.89 new_compare27(x0, x1, False, x2, x3, x4) 31.78/12.89 new_ltEs18(x0, x1, ty_Double) 31.78/12.89 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 31.78/12.89 new_esEs27(x0, x1, ty_Double) 31.78/12.89 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_ltEs10(x0, x1, x2) 31.78/12.89 new_lt12(x0, x1, app(ty_[], x2)) 31.78/12.89 new_esEs28(x0, x1, ty_Float) 31.78/12.89 new_ltEs4(Nothing, Nothing, x0) 31.78/12.89 new_compare24(x0, x1, True) 31.78/12.89 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 31.78/12.89 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 31.78/12.89 new_primMulInt(Pos(x0), Neg(x1)) 31.78/12.89 new_primMulInt(Neg(x0), Pos(x1)) 31.78/12.89 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_compare25(x0, x1, False) 31.78/12.89 new_primMulInt(Neg(x0), Neg(x1)) 31.78/12.89 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_esEs29(x0, x1, ty_@0) 31.78/12.89 new_esEs23(x0, x1, ty_Int) 31.78/12.89 new_lt13(x0, x1, ty_Double) 31.78/12.89 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_esEs24(x0, x1, ty_Ordering) 31.78/12.89 new_primEqNat0(Succ(x0), Succ(x1)) 31.78/12.89 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 31.78/12.89 new_ltEs17(True, True) 31.78/12.89 new_esEs12(x0, x1, ty_@0) 31.78/12.89 new_esEs23(x0, x1, ty_Char) 31.78/12.89 new_esEs29(x0, x1, ty_Bool) 31.78/12.89 new_esEs29(x0, x1, ty_Float) 31.78/12.89 new_ltEs21(x0, x1, ty_Double) 31.78/12.89 new_esEs10(x0, x1, app(ty_[], x2)) 31.78/12.89 new_esEs29(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_esEs27(x0, x1, ty_Ordering) 31.78/12.89 new_compare23(x0, x1, True, x2) 31.78/12.89 new_ltEs4(Just(x0), Just(x1), ty_Float) 31.78/12.89 new_primEqInt(Pos(Zero), Neg(Zero)) 31.78/12.89 new_primEqInt(Neg(Zero), Pos(Zero)) 31.78/12.89 new_ltEs21(x0, x1, ty_@0) 31.78/12.89 new_ltEs21(x0, x1, ty_Char) 31.78/12.89 new_esEs5(Just(x0), Just(x1), ty_Integer) 31.78/12.89 new_esEs12(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_esEs12(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_lt4(x0, x1) 31.78/12.89 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_ltEs8(Right(x0), Left(x1), x2, x3) 31.78/12.89 new_ltEs8(Left(x0), Right(x1), x2, x3) 31.78/12.89 new_esEs12(x0, x1, ty_Float) 31.78/12.89 new_compare19(x0, x1) 31.78/12.89 new_compare6(x0, x1, ty_Float) 31.78/12.89 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_esEs26(x0, x1, ty_Char) 31.78/12.89 new_esEs26(x0, x1, ty_Double) 31.78/12.89 new_esEs27(x0, x1, app(ty_[], x2)) 31.78/12.89 new_esEs12(x0, x1, app(ty_[], x2)) 31.78/12.89 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 31.78/12.89 new_esEs29(x0, x1, ty_Char) 31.78/12.89 new_compare6(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_ltEs21(x0, x1, ty_Int) 31.78/12.89 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_compare15(@0, @0) 31.78/12.89 new_esEs10(x0, x1, ty_Integer) 31.78/12.89 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_esEs30(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_esEs24(x0, x1, ty_Integer) 31.78/12.89 new_esEs27(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_compare112(x0, x1, False) 31.78/12.89 new_esEs26(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_esEs21(x0, x1, ty_Integer) 31.78/12.89 new_lt17(x0, x1, x2) 31.78/12.89 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_ltEs19(x0, x1, app(ty_[], x2)) 31.78/12.89 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 31.78/12.89 new_ltEs9(GT, GT) 31.78/12.89 new_ltEs20(x0, x1, ty_Ordering) 31.78/12.89 new_esEs12(x0, x1, ty_Int) 31.78/12.89 new_ltEs4(Nothing, Just(x0), x1) 31.78/12.89 new_compare0(:(x0, x1), [], x2) 31.78/12.89 new_esEs28(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_ltEs18(x0, x1, ty_Bool) 31.78/12.89 new_esEs25(x0, x1, ty_@0) 31.78/12.89 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 31.78/12.89 new_lt12(x0, x1, ty_Double) 31.78/12.89 new_compare7(x0, x1) 31.78/12.89 new_esEs11(x0, x1, ty_@0) 31.78/12.89 new_ltEs9(LT, EQ) 31.78/12.89 new_ltEs9(EQ, LT) 31.78/12.89 new_ltEs20(x0, x1, ty_Float) 31.78/12.89 new_esEs5(Just(x0), Nothing, x1) 31.78/12.89 new_esEs27(x0, x1, ty_@0) 31.78/12.89 new_esEs25(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_compare116(x0, x1, True, x2, x3) 31.78/12.89 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_esEs30(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_esEs27(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_esEs17(Double(x0, x1), Double(x2, x3)) 31.78/12.89 new_esEs5(Just(x0), Just(x1), ty_@0) 31.78/12.89 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 31.78/12.89 new_compare13(x0, x1, x2, x3) 31.78/12.89 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_esEs19(False, True) 31.78/12.89 new_esEs19(True, False) 31.78/12.89 new_lt13(x0, x1, ty_Ordering) 31.78/12.89 new_esEs29(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_compare6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_ltEs19(x0, x1, ty_Integer) 31.78/12.89 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 31.78/12.89 new_esEs10(x0, x1, ty_Bool) 31.78/12.89 new_ltEs4(Just(x0), Just(x1), ty_Char) 31.78/12.89 new_compare114(x0, x1, False) 31.78/12.89 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_esEs24(x0, x1, ty_Bool) 31.78/12.89 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 31.78/12.89 new_esEs30(x0, x1, ty_@0) 31.78/12.89 new_lt20(x0, x1, ty_@0) 31.78/12.89 new_compare6(x0, x1, ty_Bool) 31.78/12.89 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_ltEs4(Just(x0), Just(x1), ty_Int) 31.78/12.89 new_esEs8(GT, GT) 31.78/12.89 new_esEs12(x0, x1, ty_Char) 31.78/12.89 new_compare6(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_compare115(x0, x1, True, x2, x3, x4) 31.78/12.89 new_ltEs20(x0, x1, ty_Int) 31.78/12.89 new_esEs8(LT, EQ) 31.78/12.89 new_esEs8(EQ, LT) 31.78/12.89 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_esEs28(x0, x1, ty_Integer) 31.78/12.89 new_primCmpInt(Neg(Zero), Neg(Zero)) 31.78/12.89 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 31.78/12.89 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 31.78/12.89 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_esEs23(x0, x1, app(ty_[], x2)) 31.78/12.89 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 31.78/12.89 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 31.78/12.89 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 31.78/12.89 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 31.78/12.89 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 31.78/12.89 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_primCompAux00(x0, EQ) 31.78/12.89 new_ltEs5(x0, x1) 31.78/12.89 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 31.78/12.89 new_primCmpNat0(Zero, Succ(x0)) 31.78/12.89 new_esEs8(LT, LT) 31.78/12.89 new_lt12(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 31.78/12.89 new_compare25(x0, x1, True) 31.78/12.89 new_primCmpInt(Pos(Zero), Neg(Zero)) 31.78/12.89 new_primCmpInt(Neg(Zero), Pos(Zero)) 31.78/12.89 new_esEs28(x0, x1, ty_Char) 31.78/12.89 new_ltEs20(x0, x1, ty_Char) 31.78/12.89 new_primEqNat0(Succ(x0), Zero) 31.78/12.89 new_esEs28(x0, x1, ty_Int) 31.78/12.89 new_ltEs17(True, False) 31.78/12.89 new_ltEs17(False, True) 31.78/12.89 new_esEs24(x0, x1, app(ty_[], x2)) 31.78/12.89 new_esEs26(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_esEs25(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_esEs5(Nothing, Just(x0), x1) 31.78/12.89 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_esEs30(x0, x1, ty_Double) 31.78/12.89 new_compare113(x0, x1, True, x2, x3) 31.78/12.89 new_ltEs9(LT, LT) 31.78/12.89 new_primCompAux00(x0, LT) 31.78/12.89 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_esEs26(x0, x1, app(ty_[], x2)) 31.78/12.89 new_ltEs4(Just(x0), Just(x1), ty_Bool) 31.78/12.89 new_sr0(Integer(x0), Integer(x1)) 31.78/12.89 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_esEs12(x0, x1, ty_Ordering) 31.78/12.89 new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 31.78/12.89 new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 31.78/12.89 new_ltEs20(x0, x1, ty_Integer) 31.78/12.89 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 31.78/12.89 new_ltEs19(x0, x1, ty_Char) 31.78/12.89 new_ltEs4(Just(x0), Just(x1), ty_Integer) 31.78/12.89 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 31.78/12.89 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 31.78/12.89 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 31.78/12.89 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 31.78/12.89 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 31.78/12.89 new_esEs11(x0, x1, ty_Double) 31.78/12.89 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_esEs4(Left(x0), Right(x1), x2, x3) 31.78/12.89 new_esEs4(Right(x0), Left(x1), x2, x3) 31.78/12.89 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 31.78/12.89 new_compare6(x0, x1, ty_Ordering) 31.78/12.89 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 31.78/12.89 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 31.78/12.89 new_lt13(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_compare6(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_lt16(x0, x1, x2) 31.78/12.89 new_ltEs7(x0, x1, x2) 31.78/12.89 new_esEs10(x0, x1, ty_Float) 31.78/12.89 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 31.78/12.89 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 31.78/12.89 new_ltEs18(x0, x1, ty_Float) 31.78/12.89 new_esEs28(x0, x1, ty_Bool) 31.78/12.89 new_esEs16(@0, @0) 31.78/12.89 new_pePe(False, x0) 31.78/12.89 new_ltEs19(x0, x1, ty_Bool) 31.78/12.89 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_lt20(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_primMulInt(Pos(x0), Pos(x1)) 31.78/12.89 new_esEs25(x0, x1, ty_Double) 31.78/12.89 new_esEs24(x0, x1, ty_Float) 31.78/12.89 new_compare0([], :(x0, x1), x2) 31.78/12.89 new_ltEs13(x0, x1) 31.78/12.89 new_compare6(x0, x1, ty_Integer) 31.78/12.89 new_esEs9(x0, x1) 31.78/12.89 new_esEs20(:%(x0, x1), :%(x2, x3), x4) 31.78/12.89 new_ltEs19(x0, x1, ty_Ordering) 31.78/12.89 new_esEs25(x0, x1, ty_Float) 31.78/12.89 new_esEs5(Just(x0), Just(x1), ty_Ordering) 31.78/12.89 new_compare6(x0, x1, ty_Char) 31.78/12.89 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 31.78/12.89 new_esEs28(x0, x1, ty_Double) 31.78/12.89 new_lt12(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_esEs10(x0, x1, ty_Ordering) 31.78/12.89 new_esEs11(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_esEs10(x0, x1, ty_Int) 31.78/12.89 new_ltEs19(x0, x1, ty_Double) 31.78/12.89 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 31.78/12.89 new_primMulNat0(Zero, Zero) 31.78/12.89 new_fsEs(x0) 31.78/12.89 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 31.78/12.89 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 31.78/12.89 new_esEs21(x0, x1, ty_Int) 31.78/12.89 new_compare6(x0, x1, ty_Int) 31.78/12.89 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_compare116(x0, x1, False, x2, x3) 31.78/12.89 new_lt20(x0, x1, ty_Float) 31.78/12.89 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 31.78/12.89 new_lt12(x0, x1, ty_Integer) 31.78/12.89 new_lt11(x0, x1) 31.78/12.89 new_primCmpNat0(Succ(x0), Succ(x1)) 31.78/12.89 new_compare10(x0, x1) 31.78/12.89 new_esEs28(x0, x1, ty_Ordering) 31.78/12.89 new_lt14(x0, x1) 31.78/12.89 new_esEs30(x0, x1, ty_Float) 31.78/12.89 new_compare112(x0, x1, True) 31.78/12.89 new_lt12(x0, x1, ty_@0) 31.78/12.89 new_esEs10(x0, x1, ty_Char) 31.78/12.89 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 31.78/12.89 new_ltEs19(x0, x1, ty_Int) 31.78/12.89 new_esEs10(x0, x1, ty_Double) 31.78/12.89 new_primPlusNat0(Succ(x0), x1) 31.78/12.89 new_compare111(x0, x1, True, x2, x3) 31.78/12.89 new_esEs5(Just(x0), Just(x1), ty_Int) 31.78/12.89 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 31.78/12.89 new_esEs5(Nothing, Nothing, x0) 31.78/12.89 new_esEs5(Just(x0), Just(x1), ty_Double) 31.78/12.89 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 31.78/12.89 new_esEs5(Just(x0), Just(x1), ty_Char) 31.78/12.89 new_esEs24(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_esEs26(x0, x1, ty_Float) 31.78/12.89 new_lt13(x0, x1, ty_Integer) 31.78/12.89 new_primCompAux0(x0, x1, x2, x3) 31.78/12.89 new_lt13(x0, x1, ty_@0) 31.78/12.89 new_ltEs6(x0, x1) 31.78/12.89 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 31.78/12.89 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_primEqNat0(Zero, Succ(x0)) 31.78/12.89 new_not(True) 31.78/12.89 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 31.78/12.89 new_compare6(x0, x1, ty_@0) 31.78/12.89 new_esEs8(EQ, GT) 31.78/12.89 new_esEs8(GT, EQ) 31.78/12.89 new_compare6(x0, x1, ty_Double) 31.78/12.89 new_compare24(x0, x1, False) 31.78/12.89 new_compare16(Char(x0), Char(x1)) 31.78/12.89 new_esEs23(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 31.78/12.89 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_esEs15(Float(x0, x1), Float(x2, x3)) 31.78/12.89 new_lt9(x0, x1, x2, x3, x4) 31.78/12.89 new_ltEs21(x0, x1, ty_Float) 31.78/12.89 new_ltEs14(x0, x1) 31.78/12.89 new_esEs11(x0, x1, ty_Ordering) 31.78/12.89 new_asAs(True, x0) 31.78/12.89 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 31.78/12.89 new_ltEs18(x0, x1, app(ty_[], x2)) 31.78/12.89 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 31.78/12.89 new_asAs(False, x0) 31.78/12.89 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 31.78/12.89 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 31.78/12.89 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 31.78/12.89 new_primMulNat0(Zero, Succ(x0)) 31.78/12.89 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_primPlusNat1(Zero, Succ(x0)) 31.78/12.89 new_lt13(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_ltEs18(x0, x1, ty_Integer) 31.78/12.89 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 31.78/12.89 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 31.78/12.89 new_esEs23(x0, x1, ty_Float) 31.78/12.89 new_esEs29(x0, x1, ty_Double) 31.78/12.89 new_lt13(x0, x1, ty_Bool) 31.78/12.89 new_esEs27(x0, x1, ty_Integer) 31.78/12.89 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 31.78/12.89 new_ltEs4(Just(x0), Nothing, x1) 31.78/12.89 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 31.78/12.89 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 31.78/12.89 new_compare111(x0, x1, False, x2, x3) 31.78/12.89 new_compare8(x0, x1, x2, x3) 31.78/12.89 new_esEs19(True, True) 31.78/12.89 new_esEs29(x0, x1, ty_Int) 31.78/12.89 new_lt19(x0, x1) 31.78/12.89 new_esEs13([], :(x0, x1), x2) 31.78/12.89 new_esEs23(x0, x1, ty_@0) 31.78/12.89 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 31.78/12.89 new_primCmpInt(Pos(Zero), Pos(Zero)) 31.78/12.89 new_lt20(x0, x1, app(ty_[], x2)) 31.78/12.89 new_lt7(x0, x1) 31.78/12.89 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_compare114(x0, x1, True) 31.78/12.89 new_compare6(x0, x1, app(ty_[], x2)) 31.78/12.89 new_esEs25(x0, x1, ty_Bool) 31.78/12.89 new_lt13(x0, x1, ty_Char) 31.78/12.89 new_compare28(x0, x1, True, x2, x3) 31.78/12.89 new_esEs30(x0, x1, ty_Integer) 31.78/12.89 new_esEs26(x0, x1, ty_Bool) 31.78/12.89 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 31.78/12.89 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 31.78/12.89 new_ltEs20(x0, x1, ty_Double) 31.78/12.89 new_lt12(x0, x1, ty_Ordering) 31.78/12.89 new_primMulNat0(Succ(x0), Zero) 31.78/12.89 new_esEs28(x0, x1, ty_@0) 31.78/12.89 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_esEs30(x0, x1, app(ty_[], x2)) 31.78/12.89 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 31.78/12.89 new_lt13(x0, x1, ty_Int) 31.78/12.89 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_esEs26(x0, x1, ty_@0) 31.78/12.89 new_lt12(x0, x1, ty_Int) 31.78/12.89 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 31.78/12.89 new_esEs13([], [], x0) 31.78/12.89 new_esEs8(LT, GT) 31.78/12.89 new_esEs8(GT, LT) 31.78/12.89 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 31.78/12.89 new_esEs5(Just(x0), Just(x1), ty_Bool) 31.78/12.89 new_compare14(x0, x1, x2, x3, x4) 31.78/12.89 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 31.78/12.89 new_ltEs20(x0, x1, app(ty_[], x2)) 31.78/12.89 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 31.78/12.89 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 31.78/12.89 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 31.78/12.89 new_esEs27(x0, x1, ty_Char) 31.78/12.89 new_primPlusNat1(Succ(x0), Succ(x1)) 31.78/12.89 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 31.78/12.89 new_esEs26(x0, x1, ty_Integer) 31.78/12.89 new_primCmpNat0(Succ(x0), Zero) 31.78/12.89 new_lt15(x0, x1, x2, x3) 31.78/12.89 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 31.78/12.89 new_esEs25(x0, x1, ty_Integer) 31.78/12.89 new_esEs24(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_ltEs15(x0, x1) 31.78/12.89 new_lt20(x0, x1, ty_Char) 31.78/12.89 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_esEs27(x0, x1, ty_Bool) 31.78/12.89 new_ltEs4(Just(x0), Just(x1), ty_@0) 31.78/12.89 new_esEs25(x0, x1, app(ty_[], x2)) 31.78/12.89 new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 31.78/12.89 new_compare0(:(x0, x1), :(x2, x3), x4) 31.78/12.89 new_lt12(x0, x1, ty_Float) 31.78/12.89 new_compare110(x0, x1, True, x2) 31.78/12.89 new_ltEs21(x0, x1, app(ty_[], x2)) 31.78/12.89 new_esEs23(x0, x1, ty_Bool) 31.78/12.89 new_esEs22(x0, x1, ty_Integer) 31.78/12.89 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 31.78/12.89 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 31.78/12.89 new_pePe(True, x0) 31.78/12.89 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 31.78/12.89 new_ltEs19(x0, x1, ty_@0) 31.78/12.89 new_primPlusNat0(Zero, x0) 31.78/12.89 new_esEs11(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_primMulNat0(Succ(x0), Succ(x1)) 31.78/12.89 new_lt13(x0, x1, ty_Float) 31.78/12.89 new_esEs12(x0, x1, ty_Double) 31.78/12.89 new_lt20(x0, x1, ty_Int) 31.78/12.89 new_ltEs9(GT, EQ) 31.78/12.89 new_ltEs9(EQ, GT) 31.78/12.89 new_primEqNat0(Zero, Zero) 31.78/12.89 new_esEs11(x0, x1, ty_Int) 31.78/12.89 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 31.78/12.89 new_compare26(Left(x0), Left(x1), False, x2, x3) 31.78/12.89 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 31.78/12.89 new_esEs24(x0, x1, ty_@0) 31.78/12.89 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 31.78/12.89 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 31.78/12.89 new_not(False) 31.78/12.89 new_esEs24(x0, x1, ty_Double) 31.78/12.89 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 31.78/12.89 new_ltEs4(Just(x0), Just(x1), ty_Double) 31.78/12.89 new_ltEs17(False, False) 31.78/12.89 new_esEs23(x0, x1, ty_Integer) 31.78/12.89 new_lt13(x0, x1, app(ty_[], x2)) 31.78/12.89 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 31.78/12.89 new_esEs27(x0, x1, ty_Int) 31.78/12.89 new_esEs22(x0, x1, ty_Int) 31.78/12.89 new_compare6(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_compare12(x0, x1, x2) 31.78/12.89 new_lt20(x0, x1, ty_Integer) 31.78/12.89 new_compare113(x0, x1, False, x2, x3) 31.78/12.89 new_compare26(Right(x0), Left(x1), False, x2, x3) 31.78/12.89 new_compare26(Left(x0), Right(x1), False, x2, x3) 31.78/12.89 new_esEs28(x0, x1, app(ty_Ratio, x2)) 31.78/12.89 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 31.78/12.89 new_esEs29(x0, x1, ty_Ordering) 31.78/12.89 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 31.78/12.89 new_lt20(x0, x1, ty_Bool) 31.78/12.89 new_ltEs18(x0, x1, ty_@0) 31.78/12.89 new_ltEs16(x0, x1) 31.78/12.89 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 31.78/12.89 new_compare11(Integer(x0), Integer(x1)) 31.78/12.89 new_lt12(x0, x1, ty_Char) 31.78/12.89 new_esEs25(x0, x1, ty_Int) 31.78/12.89 new_lt20(x0, x1, app(ty_Maybe, x2)) 31.78/12.89 new_esEs11(x0, x1, ty_Char) 31.78/12.89 new_esEs27(x0, x1, ty_Float) 31.78/12.89 new_ltEs21(x0, x1, ty_Integer) 31.78/12.89 new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 31.78/12.89 new_esEs13(:(x0, x1), [], x2) 31.78/12.89 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 31.78/12.89 new_compare23(x0, x1, False, x2) 31.78/12.89 new_esEs10(x0, x1, ty_@0) 31.78/12.89 new_esEs11(x0, x1, ty_Bool) 31.78/12.89 new_compare27(x0, x1, True, x2, x3, x4) 31.78/12.89 new_esEs14(Integer(x0), Integer(x1)) 31.78/12.89 new_esEs25(x0, x1, ty_Char) 31.78/12.89 new_compare115(x0, x1, False, x2, x3, x4) 31.78/12.89 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 31.78/12.89 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 31.78/12.89 new_ltEs21(x0, x1, ty_Ordering) 31.78/12.89 new_esEs23(x0, x1, ty_Ordering) 31.78/12.89 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.78/12.89 new_primCmpNat0(Zero, Zero) 31.78/12.89 new_compare26(Right(x0), Right(x1), False, x2, x3) 31.78/12.89 new_ltEs9(GT, LT) 31.78/12.89 new_ltEs9(LT, GT) 31.78/12.89 new_esEs30(x0, x1, ty_Bool) 31.78/12.89 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 31.78/12.89 new_primCompAux00(x0, GT) 31.78/12.89 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 31.78/12.89 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 31.78/12.89 new_lt12(x0, x1, ty_Bool) 31.78/12.89 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 31.78/12.89 31.78/12.89 We have to consider all minimal (P,Q,R)-chains. 31.78/12.89 ---------------------------------------- 31.78/12.89 31.78/12.89 (60) QDPSizeChangeProof (EQUIVALENT) 31.78/12.89 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.78/12.89 31.78/12.89 From the DPs we obtained the following set of size-change graphs: 31.78/12.89 *new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, bc, bd, be) -> new_delFromFM(xwv34, Right(xwv400), bc, bd, be) 31.78/12.89 The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 31.78/12.89 31.78/12.89 31.78/12.89 *new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, False, bc, bd, be) -> new_delFromFM11(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Right(xwv400), Left(xwv300), new_esEs4(Right(xwv400), Left(xwv300), bc, bd), bc, bd), LT), bc, bd, be) 31.78/12.89 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 31.78/12.89 31.78/12.89 31.78/12.89 *new_delFromFM(Branch(Left(xwv300), xwv31, xwv32, xwv33, xwv34), Right(xwv400), bc, bd, be) -> new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Right(xwv400), Left(xwv300), False, bc, bd), GT), bc, bd, be) 31.78/12.89 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 31.78/12.89 31.78/12.89 31.78/12.89 *new_delFromFM(Branch(Right(xwv300), xwv31, xwv32, xwv33, xwv34), Right(xwv400), bc, bd, be) -> new_delFromFM22(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare26(Right(xwv400), Right(xwv300), new_esEs30(xwv400, xwv300, bd), bc, bd), GT), bc, bd, be) 31.78/12.89 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 31.78/12.89 31.78/12.89 31.78/12.89 *new_delFromFM22(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, False, bf, bg, bh) -> new_delFromFM12(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, new_esEs8(new_compare26(Right(xwv33), Right(xwv28), new_esEs4(Right(xwv33), Right(xwv28), bf, bg), bf, bg), LT), bf, bg, bh) 31.78/12.89 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 31.78/12.89 31.78/12.89 31.78/12.89 *new_delFromFM22(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, bf, bg, bh) -> new_delFromFM(xwv32, Right(xwv33), bf, bg, bh) 31.78/12.89 The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 31.78/12.89 31.78/12.89 31.78/12.89 *new_delFromFM12(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, bf, bg, bh) -> new_delFromFM(xwv31, Right(xwv33), bf, bg, bh) 31.78/12.89 The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 31.78/12.89 31.78/12.89 31.78/12.89 *new_delFromFM11(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, True, bc, bd, be) -> new_delFromFM(xwv33, Right(xwv400), bc, bd, be) 31.78/12.89 The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 31.78/12.89 31.78/12.89 31.78/12.89 ---------------------------------------- 31.78/12.89 31.78/12.89 (61) 31.78/12.89 YES 31.78/12.89 31.78/12.89 ---------------------------------------- 31.78/12.89 31.78/12.89 (62) 31.78/12.89 Obligation: 31.78/12.89 Q DP problem: 31.78/12.89 The TRS P consists of the following rules: 31.78/12.89 31.78/12.89 new_glueBal2Mid_elt10(xwv400, xwv401, xwv402, xwv403, xwv404, xwv405, xwv406, xwv407, xwv408, xwv409, xwv410, xwv411, xwv412, xwv413, Branch(xwv4140, xwv4141, xwv4142, xwv4143, xwv4144), h, ba) -> new_glueBal2Mid_elt10(xwv400, xwv401, xwv402, xwv403, xwv404, xwv405, xwv406, xwv407, xwv408, xwv409, xwv4140, xwv4141, xwv4142, xwv4143, xwv4144, h, ba) 31.78/12.89 31.78/12.89 R is empty. 31.78/12.89 Q is empty. 31.78/12.89 We have to consider all minimal (P,Q,R)-chains. 31.78/12.89 ---------------------------------------- 31.78/12.89 31.78/12.89 (63) QDPSizeChangeProof (EQUIVALENT) 31.78/12.89 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.78/12.89 31.78/12.89 From the DPs we obtained the following set of size-change graphs: 31.78/12.89 *new_glueBal2Mid_elt10(xwv400, xwv401, xwv402, xwv403, xwv404, xwv405, xwv406, xwv407, xwv408, xwv409, xwv410, xwv411, xwv412, xwv413, Branch(xwv4140, xwv4141, xwv4142, xwv4143, xwv4144), h, ba) -> new_glueBal2Mid_elt10(xwv400, xwv401, xwv402, xwv403, xwv404, xwv405, xwv406, xwv407, xwv408, xwv409, xwv4140, xwv4141, xwv4142, xwv4143, xwv4144, h, ba) 31.78/12.89 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 31.78/12.89 31.78/12.89 31.78/12.89 ---------------------------------------- 31.78/12.89 31.78/12.89 (64) 31.78/12.89 YES 31.78/12.89 31.78/12.89 ---------------------------------------- 31.78/12.89 31.78/12.89 (65) 31.78/12.89 Obligation: 31.78/12.89 Q DP problem: 31.78/12.89 The TRS P consists of the following rules: 31.78/12.89 31.78/12.89 new_primEqNat(Succ(xwv40000), Succ(xwv30000)) -> new_primEqNat(xwv40000, xwv30000) 31.78/12.89 31.78/12.89 R is empty. 31.78/12.89 Q is empty. 31.78/12.89 We have to consider all minimal (P,Q,R)-chains. 31.78/12.89 ---------------------------------------- 31.78/12.89 31.78/12.89 (66) QDPSizeChangeProof (EQUIVALENT) 31.78/12.89 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.78/12.89 31.78/12.89 From the DPs we obtained the following set of size-change graphs: 31.78/12.89 *new_primEqNat(Succ(xwv40000), Succ(xwv30000)) -> new_primEqNat(xwv40000, xwv30000) 31.78/12.89 The graph contains the following edges 1 > 1, 2 > 2 31.78/12.89 31.78/12.89 31.78/12.89 ---------------------------------------- 31.78/12.89 31.78/12.89 (67) 31.78/12.89 YES 31.78/12.91 EOF