33.14/17.70 YES 35.70/18.53 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 35.70/18.53 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 35.70/18.53 35.70/18.53 35.70/18.53 H-Termination with start terms of the given HASKELL could be proven: 35.70/18.53 35.70/18.53 (0) HASKELL 35.70/18.53 (1) LR [EQUIVALENT, 0 ms] 35.70/18.53 (2) HASKELL 35.70/18.53 (3) CR [EQUIVALENT, 0 ms] 35.70/18.53 (4) HASKELL 35.70/18.53 (5) IFR [EQUIVALENT, 0 ms] 35.70/18.53 (6) HASKELL 35.70/18.53 (7) BR [EQUIVALENT, 0 ms] 35.70/18.53 (8) HASKELL 35.70/18.53 (9) COR [EQUIVALENT, 0 ms] 35.70/18.53 (10) HASKELL 35.70/18.53 (11) LetRed [EQUIVALENT, 0 ms] 35.70/18.53 (12) HASKELL 35.70/18.53 (13) NumRed [SOUND, 11 ms] 35.70/18.53 (14) HASKELL 35.70/18.53 (15) Narrow [SOUND, 0 ms] 35.70/18.53 (16) AND 35.70/18.53 (17) QDP 35.70/18.53 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 35.70/18.53 (19) YES 35.70/18.53 (20) QDP 35.70/18.53 (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] 35.70/18.53 (22) YES 35.70/18.53 (23) QDP 35.70/18.53 (24) QDPSizeChangeProof [EQUIVALENT, 82 ms] 35.70/18.53 (25) YES 35.70/18.53 (26) QDP 35.70/18.53 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 35.70/18.53 (28) YES 35.70/18.53 (29) QDP 35.70/18.53 (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] 35.70/18.53 (31) YES 35.70/18.53 (32) QDP 35.70/18.53 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 35.70/18.53 (34) YES 35.70/18.53 (35) QDP 35.70/18.53 (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] 35.70/18.53 (37) YES 35.70/18.53 (38) QDP 35.70/18.53 (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] 35.70/18.53 (40) YES 35.70/18.53 (41) QDP 35.70/18.53 (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] 35.70/18.53 (43) YES 35.70/18.53 (44) QDP 35.70/18.53 (45) QDPSizeChangeProof [EQUIVALENT, 0 ms] 35.70/18.53 (46) YES 35.70/18.53 (47) QDP 35.70/18.53 (48) QDPSizeChangeProof [EQUIVALENT, 0 ms] 35.70/18.53 (49) YES 35.70/18.53 (50) QDP 35.70/18.53 (51) QDPSizeChangeProof [EQUIVALENT, 0 ms] 35.70/18.53 (52) YES 35.70/18.53 (53) QDP 35.70/18.53 (54) QDPSizeChangeProof [EQUIVALENT, 0 ms] 35.70/18.53 (55) YES 35.70/18.53 (56) QDP 35.70/18.53 (57) QDPSizeChangeProof [EQUIVALENT, 0 ms] 35.70/18.53 (58) YES 35.70/18.53 (59) QDP 35.70/18.53 (60) QDPSizeChangeProof [EQUIVALENT, 0 ms] 35.70/18.53 (61) YES 35.70/18.53 35.70/18.53 35.70/18.53 ---------------------------------------- 35.70/18.53 35.70/18.53 (0) 35.70/18.53 Obligation: 35.70/18.53 mainModule Main 35.70/18.53 module FiniteMap where { 35.70/18.53 import qualified Main; 35.70/18.53 import qualified Maybe; 35.70/18.53 import qualified Prelude; 35.70/18.53 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 35.70/18.53 35.70/18.53 instance (Eq a, Eq b) => Eq FiniteMap b a where { 35.70/18.53 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 35.70/18.53 } 35.70/18.53 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 35.70/18.53 delFromFM EmptyFM del_key = emptyFM; 35.70/18.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) 35.70/18.53 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 35.70/18.53 | key == del_key = glueBal fm_l fm_r; 35.70/18.53 35.70/18.53 delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; 35.70/18.53 delListFromFM fm keys = foldl delFromFM fm keys; 35.70/18.53 35.70/18.53 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 35.70/18.53 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 35.70/18.53 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 35.70/18.53 35.70/18.53 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 35.70/18.53 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 35.70/18.53 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 35.70/18.53 35.70/18.53 emptyFM :: FiniteMap b a; 35.70/18.53 emptyFM = EmptyFM; 35.70/18.53 35.70/18.53 findMax :: FiniteMap a b -> (a,b); 35.70/18.53 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 35.70/18.53 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 35.70/18.53 35.70/18.53 findMin :: FiniteMap a b -> (a,b); 35.70/18.53 findMin (Branch key elt _ EmptyFM _) = (key,elt); 35.70/18.53 findMin (Branch key elt _ fm_l _) = findMin fm_l; 35.70/18.53 35.70/18.53 fmToList :: FiniteMap a b -> [(a,b)]; 35.70/18.53 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 35.70/18.53 35.70/18.53 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 35.70/18.53 foldFM k z EmptyFM = z; 35.70/18.53 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 35.70/18.53 35.70/18.53 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 35.70/18.53 glueBal EmptyFM fm2 = fm2; 35.70/18.53 glueBal fm1 EmptyFM = fm1; 35.70/18.53 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 35.70/18.53 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 35.70/18.53 mid_elt1 = (\(_,mid_elt1) ->mid_elt1) vv2; 35.70/18.53 mid_elt2 = (\(_,mid_elt2) ->mid_elt2) vv3; 35.70/18.53 mid_key1 = (\(mid_key1,_) ->mid_key1) vv2; 35.70/18.53 mid_key2 = (\(mid_key2,_) ->mid_key2) vv3; 35.70/18.53 vv2 = findMax fm1; 35.70/18.53 vv3 = findMin fm2; 35.70/18.53 }; 35.70/18.53 35.70/18.53 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 35.70/18.53 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 35.70/18.53 | size_r > sIZE_RATIO * size_l = case fm_R of { 35.70/18.53 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 35.70/18.53 | otherwise -> double_L fm_L fm_R; 35.70/18.53 } 35.70/18.53 | size_l > sIZE_RATIO * size_r = case fm_L of { 35.70/18.53 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 35.70/18.53 | otherwise -> double_R fm_L fm_R; 35.70/18.53 } 35.70/18.53 | otherwise = mkBranch 2 key elt fm_L fm_R where { 35.70/18.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); 35.70/18.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); 35.70/18.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; 35.70/18.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); 35.70/18.53 size_l = sizeFM fm_L; 35.70/18.53 size_r = sizeFM fm_R; 35.70/18.53 }; 35.70/18.53 35.70/18.53 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 35.70/18.53 mkBranch which key elt fm_l fm_r = let { 35.70/18.53 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 35.70/18.53 } in result where { 35.70/18.53 balance_ok = True; 35.70/18.53 left_ok = case fm_l of { 35.70/18.53 EmptyFM-> True; 35.70/18.53 Branch left_key _ _ _ _-> let { 35.70/18.53 biggest_left_key = fst (findMax fm_l); 35.70/18.53 } in biggest_left_key < key; 35.70/18.53 } ; 35.70/18.53 left_size = sizeFM fm_l; 35.70/18.53 right_ok = case fm_r of { 35.70/18.53 EmptyFM-> True; 35.70/18.53 Branch right_key _ _ _ _-> let { 35.70/18.53 smallest_right_key = fst (findMin fm_r); 35.70/18.53 } in key < smallest_right_key; 35.70/18.53 } ; 35.70/18.53 right_size = sizeFM fm_r; 35.70/18.53 unbox :: Int -> Int; 35.70/18.53 unbox x = x; 35.70/18.53 }; 35.70/18.53 35.70/18.53 sIZE_RATIO :: Int; 35.70/18.53 sIZE_RATIO = 5; 35.70/18.53 35.70/18.53 sizeFM :: FiniteMap a b -> Int; 35.70/18.53 sizeFM EmptyFM = 0; 35.70/18.53 sizeFM (Branch _ _ size _ _) = size; 35.70/18.53 35.70/18.53 } 35.70/18.53 module Maybe where { 35.70/18.53 import qualified FiniteMap; 35.70/18.53 import qualified Main; 35.70/18.53 import qualified Prelude; 35.70/18.53 } 35.70/18.53 module Main where { 35.70/18.53 import qualified FiniteMap; 35.70/18.53 import qualified Maybe; 35.70/18.53 import qualified Prelude; 35.70/18.53 } 35.70/18.53 35.70/18.53 ---------------------------------------- 35.70/18.53 35.70/18.53 (1) LR (EQUIVALENT) 35.70/18.53 Lambda Reductions: 35.70/18.53 The following Lambda expression 35.70/18.53 "\(_,mid_elt2)->mid_elt2" 35.70/18.53 is transformed to 35.70/18.53 "mid_elt20 (_,mid_elt2) = mid_elt2; 35.70/18.53 " 35.70/18.53 The following Lambda expression 35.70/18.53 "\(mid_key2,_)->mid_key2" 35.70/18.53 is transformed to 35.70/18.53 "mid_key20 (mid_key2,_) = mid_key2; 35.70/18.53 " 35.70/18.53 The following Lambda expression 35.70/18.53 "\(mid_key1,_)->mid_key1" 35.70/18.53 is transformed to 35.70/18.53 "mid_key10 (mid_key1,_) = mid_key1; 35.70/18.53 " 35.70/18.53 The following Lambda expression 35.70/18.53 "\(_,mid_elt1)->mid_elt1" 35.70/18.53 is transformed to 35.70/18.53 "mid_elt10 (_,mid_elt1) = mid_elt1; 35.70/18.53 " 35.70/18.53 The following Lambda expression 35.70/18.53 "\keyeltrest->(key,elt) : rest" 35.70/18.53 is transformed to 35.70/18.53 "fmToList0 key elt rest = (key,elt) : rest; 35.70/18.53 " 35.70/18.53 35.70/18.53 ---------------------------------------- 35.70/18.53 35.70/18.53 (2) 35.70/18.53 Obligation: 35.70/18.53 mainModule Main 35.70/18.53 module FiniteMap where { 35.70/18.53 import qualified Main; 35.70/18.53 import qualified Maybe; 35.70/18.53 import qualified Prelude; 35.70/18.53 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 35.70/18.53 35.70/18.53 instance (Eq a, Eq b) => Eq FiniteMap a b where { 35.70/18.53 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 35.70/18.53 } 35.70/18.53 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 35.70/18.53 delFromFM EmptyFM del_key = emptyFM; 35.70/18.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) 35.70/18.53 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 35.70/18.53 | key == del_key = glueBal fm_l fm_r; 35.70/18.53 35.70/18.53 delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; 35.70/18.53 delListFromFM fm keys = foldl delFromFM fm keys; 35.70/18.53 35.70/18.53 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 35.70/18.53 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 35.70/18.53 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 35.70/18.53 35.70/18.53 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 35.70/18.53 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 35.70/18.53 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 35.70/18.53 35.70/18.53 emptyFM :: FiniteMap a b; 36.80/18.76 emptyFM = EmptyFM; 36.80/18.76 36.80/18.76 findMax :: FiniteMap a b -> (a,b); 36.80/18.76 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 36.80/18.76 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 36.80/18.76 36.80/18.76 findMin :: FiniteMap b a -> (b,a); 36.80/18.76 findMin (Branch key elt _ EmptyFM _) = (key,elt); 36.80/18.76 findMin (Branch key elt _ fm_l _) = findMin fm_l; 36.80/18.76 36.80/18.76 fmToList :: FiniteMap a b -> [(a,b)]; 36.80/18.76 fmToList fm = foldFM fmToList0 [] fm; 36.80/18.76 36.80/18.76 fmToList0 key elt rest = (key,elt) : rest; 36.80/18.76 36.80/18.76 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 36.80/18.76 foldFM k z EmptyFM = z; 36.80/18.76 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 36.80/18.76 36.80/18.76 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 36.80/18.76 glueBal EmptyFM fm2 = fm2; 36.80/18.76 glueBal fm1 EmptyFM = fm1; 36.80/18.76 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 36.80/18.76 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 36.80/18.76 mid_elt1 = mid_elt10 vv2; 36.80/18.76 mid_elt10 (_,mid_elt1) = mid_elt1; 36.80/18.76 mid_elt2 = mid_elt20 vv3; 36.80/18.76 mid_elt20 (_,mid_elt2) = mid_elt2; 36.80/18.76 mid_key1 = mid_key10 vv2; 36.80/18.76 mid_key10 (mid_key1,_) = mid_key1; 36.80/18.76 mid_key2 = mid_key20 vv3; 36.80/18.76 mid_key20 (mid_key2,_) = mid_key2; 36.80/18.76 vv2 = findMax fm1; 36.80/18.76 vv3 = findMin fm2; 36.80/18.76 }; 36.80/18.76 36.80/18.76 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 36.80/18.76 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 36.80/18.76 | size_r > sIZE_RATIO * size_l = case fm_R of { 36.80/18.76 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 36.80/18.76 | otherwise -> double_L fm_L fm_R; 36.80/18.76 } 36.80/18.76 | size_l > sIZE_RATIO * size_r = case fm_L of { 36.80/18.76 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 36.80/18.76 | otherwise -> double_R fm_L fm_R; 36.80/18.76 } 36.80/18.76 | otherwise = mkBranch 2 key elt fm_L fm_R where { 36.80/18.76 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); 36.80/18.76 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); 36.80/18.76 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; 36.80/18.76 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); 36.80/18.76 size_l = sizeFM fm_L; 36.80/18.76 size_r = sizeFM fm_R; 36.80/18.76 }; 36.80/18.76 36.80/18.76 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 36.80/18.76 mkBranch which key elt fm_l fm_r = let { 36.80/18.76 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 36.80/18.76 } in result where { 36.80/18.76 balance_ok = True; 36.80/18.76 left_ok = case fm_l of { 36.80/18.76 EmptyFM-> True; 36.80/18.76 Branch left_key _ _ _ _-> let { 36.80/18.76 biggest_left_key = fst (findMax fm_l); 36.80/18.76 } in biggest_left_key < key; 36.80/18.76 } ; 36.80/18.76 left_size = sizeFM fm_l; 36.80/18.76 right_ok = case fm_r of { 36.80/18.76 EmptyFM-> True; 36.80/18.76 Branch right_key _ _ _ _-> let { 36.80/18.76 smallest_right_key = fst (findMin fm_r); 36.80/18.76 } in key < smallest_right_key; 36.80/18.76 } ; 36.80/18.76 right_size = sizeFM fm_r; 36.80/18.76 unbox :: Int -> Int; 36.80/18.76 unbox x = x; 36.80/18.76 }; 36.80/18.76 36.80/18.76 sIZE_RATIO :: Int; 36.80/18.76 sIZE_RATIO = 5; 36.80/18.76 36.80/18.76 sizeFM :: FiniteMap a b -> Int; 36.80/18.76 sizeFM EmptyFM = 0; 36.80/18.76 sizeFM (Branch _ _ size _ _) = size; 36.80/18.76 36.80/18.76 } 36.80/18.76 module Maybe where { 36.80/18.76 import qualified FiniteMap; 36.80/18.76 import qualified Main; 36.80/18.76 import qualified Prelude; 36.80/18.76 } 36.80/18.76 module Main where { 36.80/18.76 import qualified FiniteMap; 36.80/18.76 import qualified Maybe; 36.80/18.76 import qualified Prelude; 36.80/18.76 } 36.80/18.76 36.80/18.76 ---------------------------------------- 36.80/18.76 36.80/18.76 (3) CR (EQUIVALENT) 36.80/18.76 Case Reductions: 36.80/18.76 The following Case expression 36.80/18.76 "case compare x y of { 36.80/18.76 EQ -> o; 36.80/18.76 LT -> LT; 36.80/18.76 GT -> GT} 36.80/18.76 " 36.80/18.76 is transformed to 36.80/18.76 "primCompAux0 o EQ = o; 36.80/18.76 primCompAux0 o LT = LT; 36.80/18.76 primCompAux0 o GT = GT; 36.80/18.76 " 36.80/18.76 The following Case expression 36.80/18.76 "case fm_r of { 36.80/18.76 EmptyFM -> True; 36.80/18.76 Branch right_key _ _ _ _ -> let { 36.80/18.76 smallest_right_key = fst (findMin fm_r); 36.80/18.76 } in key < smallest_right_key} 36.80/18.76 " 36.80/18.76 is transformed to 36.80/18.76 "right_ok0 fm_r key EmptyFM = True; 36.80/18.76 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 36.80/18.76 smallest_right_key = fst (findMin fm_r); 36.80/18.76 } in key < smallest_right_key; 36.80/18.76 " 36.80/18.76 The following Case expression 36.80/18.76 "case fm_l of { 36.80/18.76 EmptyFM -> True; 36.80/18.76 Branch left_key _ _ _ _ -> let { 36.80/18.77 biggest_left_key = fst (findMax fm_l); 36.80/18.77 } in biggest_left_key < key} 36.80/18.77 " 36.80/18.77 is transformed to 36.80/18.77 "left_ok0 fm_l key EmptyFM = True; 36.80/18.77 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 36.80/18.77 biggest_left_key = fst (findMax fm_l); 36.80/18.77 } in biggest_left_key < key; 36.80/18.77 " 36.80/18.77 The following Case expression 36.80/18.77 "case fm_R of { 36.80/18.77 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 36.80/18.77 " 36.80/18.77 is transformed to 36.80/18.77 "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; 36.80/18.77 " 36.80/18.77 The following Case expression 36.80/18.77 "case fm_L of { 36.80/18.77 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 36.80/18.77 " 36.80/18.77 is transformed to 36.80/18.77 "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; 36.80/18.77 " 36.80/18.77 36.80/18.77 ---------------------------------------- 36.80/18.77 36.80/18.77 (4) 36.80/18.77 Obligation: 36.80/18.77 mainModule Main 36.80/18.77 module FiniteMap where { 36.80/18.77 import qualified Main; 36.80/18.77 import qualified Maybe; 36.80/18.77 import qualified Prelude; 36.80/18.77 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 36.80/18.77 36.80/18.77 instance (Eq a, Eq b) => Eq FiniteMap b a where { 36.80/18.77 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 36.80/18.77 } 36.80/18.77 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 36.80/18.77 delFromFM EmptyFM del_key = emptyFM; 36.80/18.77 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 36.80/18.77 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 36.80/18.77 | key == del_key = glueBal fm_l fm_r; 36.80/18.77 36.80/18.77 delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; 36.80/18.77 delListFromFM fm keys = foldl delFromFM fm keys; 36.80/18.77 36.80/18.77 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 36.80/18.77 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 36.80/18.77 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 36.80/18.77 36.80/18.77 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 36.80/18.77 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 36.80/18.77 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 36.80/18.77 36.80/18.77 emptyFM :: FiniteMap b a; 36.80/18.77 emptyFM = EmptyFM; 36.80/18.77 36.80/18.77 findMax :: FiniteMap a b -> (a,b); 36.80/18.77 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 36.80/18.77 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 36.80/18.77 36.80/18.77 findMin :: FiniteMap b a -> (b,a); 36.80/18.77 findMin (Branch key elt _ EmptyFM _) = (key,elt); 36.80/18.77 findMin (Branch key elt _ fm_l _) = findMin fm_l; 36.80/18.77 36.80/18.77 fmToList :: FiniteMap b a -> [(b,a)]; 36.80/18.77 fmToList fm = foldFM fmToList0 [] fm; 36.80/18.77 36.80/18.77 fmToList0 key elt rest = (key,elt) : rest; 36.80/18.77 36.80/18.77 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 36.80/18.77 foldFM k z EmptyFM = z; 36.80/18.77 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 36.80/18.77 36.80/18.77 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 36.80/18.77 glueBal EmptyFM fm2 = fm2; 36.80/18.77 glueBal fm1 EmptyFM = fm1; 36.80/18.77 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 36.80/18.77 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 36.80/18.77 mid_elt1 = mid_elt10 vv2; 36.80/18.77 mid_elt10 (_,mid_elt1) = mid_elt1; 36.80/18.77 mid_elt2 = mid_elt20 vv3; 36.80/18.77 mid_elt20 (_,mid_elt2) = mid_elt2; 36.80/18.77 mid_key1 = mid_key10 vv2; 36.80/18.77 mid_key10 (mid_key1,_) = mid_key1; 36.80/18.77 mid_key2 = mid_key20 vv3; 36.80/18.77 mid_key20 (mid_key2,_) = mid_key2; 36.80/18.77 vv2 = findMax fm1; 36.80/18.77 vv3 = findMin fm2; 36.80/18.77 }; 36.80/18.77 36.80/18.77 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 36.80/18.77 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 36.80/18.77 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 36.80/18.77 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 36.80/18.77 | otherwise = mkBranch 2 key elt fm_L fm_R where { 36.80/18.77 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); 36.80/18.77 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); 36.80/18.77 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 36.80/18.77 | otherwise = double_L fm_L fm_R; 36.80/18.77 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 36.80/18.77 | otherwise = double_R fm_L fm_R; 36.80/18.77 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; 36.80/18.77 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); 36.80/18.77 size_l = sizeFM fm_L; 36.80/18.77 size_r = sizeFM fm_R; 36.80/18.77 }; 36.80/18.77 36.80/18.77 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 36.80/18.77 mkBranch which key elt fm_l fm_r = let { 36.80/18.77 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 36.80/18.77 } in result where { 36.80/18.77 balance_ok = True; 36.80/18.77 left_ok = left_ok0 fm_l key fm_l; 36.80/18.77 left_ok0 fm_l key EmptyFM = True; 36.80/18.77 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 36.80/18.77 biggest_left_key = fst (findMax fm_l); 36.80/18.77 } in biggest_left_key < key; 36.80/18.77 left_size = sizeFM fm_l; 36.80/18.77 right_ok = right_ok0 fm_r key fm_r; 36.80/18.77 right_ok0 fm_r key EmptyFM = True; 36.80/18.77 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 36.80/18.77 smallest_right_key = fst (findMin fm_r); 36.80/18.77 } in key < smallest_right_key; 36.80/18.77 right_size = sizeFM fm_r; 36.80/18.77 unbox :: Int -> Int; 36.80/18.77 unbox x = x; 36.80/18.77 }; 36.80/18.77 36.80/18.77 sIZE_RATIO :: Int; 36.80/18.77 sIZE_RATIO = 5; 36.80/18.77 36.80/18.77 sizeFM :: FiniteMap b a -> Int; 36.80/18.77 sizeFM EmptyFM = 0; 36.80/18.77 sizeFM (Branch _ _ size _ _) = size; 36.80/18.77 36.80/18.77 } 36.80/18.77 module Maybe where { 36.80/18.77 import qualified FiniteMap; 36.80/18.77 import qualified Main; 36.80/18.77 import qualified Prelude; 36.80/18.77 } 36.80/18.77 module Main where { 36.80/18.77 import qualified FiniteMap; 36.80/18.77 import qualified Maybe; 36.80/18.77 import qualified Prelude; 36.80/18.77 } 36.80/18.77 36.80/18.77 ---------------------------------------- 36.80/18.77 36.80/18.77 (5) IFR (EQUIVALENT) 36.80/18.77 If Reductions: 36.80/18.77 The following If expression 36.80/18.77 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 36.80/18.77 is transformed to 36.80/18.77 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 36.80/18.77 primDivNatS0 x y False = Zero; 36.80/18.77 " 36.80/18.77 The following If expression 36.80/18.77 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 36.80/18.77 is transformed to 36.80/18.77 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 36.80/18.77 primModNatS0 x y False = Succ x; 36.80/18.77 " 36.80/18.77 36.80/18.77 ---------------------------------------- 36.80/18.77 36.80/18.77 (6) 36.80/18.77 Obligation: 36.80/18.77 mainModule Main 36.80/18.77 module FiniteMap where { 36.80/18.77 import qualified Main; 36.80/18.77 import qualified Maybe; 36.80/18.77 import qualified Prelude; 36.80/18.77 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 36.80/18.77 36.80/18.77 instance (Eq a, Eq b) => Eq FiniteMap a b where { 36.80/18.77 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 36.80/18.77 } 36.80/18.77 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 36.80/18.77 delFromFM EmptyFM del_key = emptyFM; 36.80/18.77 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 36.80/18.77 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 36.80/18.77 | key == del_key = glueBal fm_l fm_r; 36.80/18.77 36.80/18.77 delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; 36.80/18.77 delListFromFM fm keys = foldl delFromFM fm keys; 36.80/18.77 36.80/18.77 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 36.80/18.77 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 36.80/18.77 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 36.80/18.77 36.80/18.77 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 36.80/18.77 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 36.80/18.77 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 36.80/18.77 36.80/18.77 emptyFM :: FiniteMap b a; 36.80/18.77 emptyFM = EmptyFM; 36.80/18.77 36.80/18.77 findMax :: FiniteMap a b -> (a,b); 36.80/18.77 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 36.80/18.77 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 36.80/18.77 36.80/18.77 findMin :: FiniteMap b a -> (b,a); 36.80/18.77 findMin (Branch key elt _ EmptyFM _) = (key,elt); 36.80/18.77 findMin (Branch key elt _ fm_l _) = findMin fm_l; 36.80/18.77 36.80/18.77 fmToList :: FiniteMap b a -> [(b,a)]; 36.80/18.77 fmToList fm = foldFM fmToList0 [] fm; 36.80/18.77 36.80/18.77 fmToList0 key elt rest = (key,elt) : rest; 36.80/18.77 36.80/18.77 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 36.80/18.77 foldFM k z EmptyFM = z; 36.80/18.77 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 36.80/18.77 36.80/18.77 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 36.80/18.77 glueBal EmptyFM fm2 = fm2; 36.80/18.77 glueBal fm1 EmptyFM = fm1; 36.80/18.77 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 36.80/18.77 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 36.80/18.77 mid_elt1 = mid_elt10 vv2; 36.80/18.77 mid_elt10 (_,mid_elt1) = mid_elt1; 36.80/18.77 mid_elt2 = mid_elt20 vv3; 36.80/18.77 mid_elt20 (_,mid_elt2) = mid_elt2; 36.80/18.77 mid_key1 = mid_key10 vv2; 36.80/18.77 mid_key10 (mid_key1,_) = mid_key1; 36.80/18.77 mid_key2 = mid_key20 vv3; 36.80/18.77 mid_key20 (mid_key2,_) = mid_key2; 36.80/18.77 vv2 = findMax fm1; 36.80/18.77 vv3 = findMin fm2; 36.80/18.77 }; 36.80/18.77 36.80/18.77 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 36.80/18.77 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 36.80/18.77 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 36.80/18.77 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 36.80/18.77 | otherwise = mkBranch 2 key elt fm_L fm_R where { 36.80/18.77 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); 36.80/18.77 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); 36.80/18.77 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 36.80/18.77 | otherwise = double_L fm_L fm_R; 36.80/18.77 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 36.80/18.77 | otherwise = double_R fm_L fm_R; 36.80/18.77 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; 36.80/18.77 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); 36.80/18.77 size_l = sizeFM fm_L; 36.80/18.77 size_r = sizeFM fm_R; 36.80/18.77 }; 36.80/18.77 36.80/18.77 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 36.80/18.77 mkBranch which key elt fm_l fm_r = let { 36.80/18.77 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 36.80/18.77 } in result where { 36.80/18.77 balance_ok = True; 36.80/18.77 left_ok = left_ok0 fm_l key fm_l; 36.80/18.77 left_ok0 fm_l key EmptyFM = True; 36.80/18.77 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 36.80/18.77 biggest_left_key = fst (findMax fm_l); 36.80/18.77 } in biggest_left_key < key; 36.80/18.77 left_size = sizeFM fm_l; 36.80/18.77 right_ok = right_ok0 fm_r key fm_r; 36.80/18.77 right_ok0 fm_r key EmptyFM = True; 36.80/18.77 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 36.80/18.77 smallest_right_key = fst (findMin fm_r); 36.80/18.77 } in key < smallest_right_key; 36.80/18.77 right_size = sizeFM fm_r; 36.80/18.77 unbox :: Int -> Int; 36.80/18.77 unbox x = x; 36.80/18.77 }; 36.80/18.77 36.80/18.77 sIZE_RATIO :: Int; 36.80/18.77 sIZE_RATIO = 5; 36.80/18.77 36.80/18.77 sizeFM :: FiniteMap a b -> Int; 36.80/18.77 sizeFM EmptyFM = 0; 36.80/18.77 sizeFM (Branch _ _ size _ _) = size; 36.80/18.77 36.80/18.77 } 36.80/18.77 module Maybe where { 36.80/18.77 import qualified FiniteMap; 36.80/18.77 import qualified Main; 36.80/18.77 import qualified Prelude; 36.80/18.77 } 36.80/18.77 module Main where { 36.80/18.77 import qualified FiniteMap; 36.80/18.77 import qualified Maybe; 36.80/18.77 import qualified Prelude; 36.80/18.77 } 36.80/18.77 36.80/18.77 ---------------------------------------- 36.80/18.77 36.80/18.77 (7) BR (EQUIVALENT) 36.80/18.77 Replaced joker patterns by fresh variables and removed binding patterns. 36.80/18.77 ---------------------------------------- 36.80/18.77 36.80/18.77 (8) 36.80/18.77 Obligation: 36.80/18.77 mainModule Main 36.80/18.77 module FiniteMap where { 36.80/18.77 import qualified Main; 36.80/18.77 import qualified Maybe; 36.80/18.77 import qualified Prelude; 36.80/18.77 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 36.80/18.77 36.80/18.77 instance (Eq a, Eq b) => Eq FiniteMap b a where { 36.80/18.77 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 36.80/18.77 } 36.80/18.77 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 36.80/18.77 delFromFM EmptyFM del_key = emptyFM; 36.80/18.77 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 36.80/18.77 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 36.80/18.77 | key == del_key = glueBal fm_l fm_r; 36.80/18.77 36.80/18.77 delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; 36.80/18.77 delListFromFM fm keys = foldl delFromFM fm keys; 36.80/18.77 36.80/18.77 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 36.80/18.77 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 36.80/18.77 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 36.80/18.77 36.80/18.77 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 36.80/18.77 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 36.80/18.77 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 36.80/18.77 36.80/18.77 emptyFM :: FiniteMap b a; 37.01/18.82 emptyFM = EmptyFM; 37.01/18.82 37.01/18.82 findMax :: FiniteMap a b -> (a,b); 37.01/18.82 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 37.01/18.82 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 37.01/18.82 37.01/18.82 findMin :: FiniteMap b a -> (b,a); 37.01/18.82 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 37.01/18.82 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 37.01/18.82 37.01/18.82 fmToList :: FiniteMap b a -> [(b,a)]; 37.01/18.82 fmToList fm = foldFM fmToList0 [] fm; 37.01/18.82 37.01/18.82 fmToList0 key elt rest = (key,elt) : rest; 37.01/18.82 37.01/18.82 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 37.01/18.82 foldFM k z EmptyFM = z; 37.01/18.82 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 37.01/18.82 37.01/18.82 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 37.01/18.82 glueBal EmptyFM fm2 = fm2; 37.01/18.82 glueBal fm1 EmptyFM = fm1; 37.01/18.82 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 37.01/18.82 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 37.01/18.82 mid_elt1 = mid_elt10 vv2; 37.01/18.82 mid_elt10 (vyw,mid_elt1) = mid_elt1; 37.01/18.82 mid_elt2 = mid_elt20 vv3; 37.01/18.82 mid_elt20 (vyv,mid_elt2) = mid_elt2; 37.01/18.82 mid_key1 = mid_key10 vv2; 37.01/18.82 mid_key10 (mid_key1,vyx) = mid_key1; 37.01/18.82 mid_key2 = mid_key20 vv3; 37.01/18.82 mid_key20 (mid_key2,vyy) = mid_key2; 37.01/18.82 vv2 = findMax fm1; 37.01/18.82 vv3 = findMin fm2; 37.01/18.82 }; 37.01/18.82 37.01/18.82 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 37.01/18.82 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 37.01/18.82 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 37.01/18.82 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 37.01/18.82 | otherwise = mkBranch 2 key elt fm_L fm_R where { 37.01/18.82 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); 37.01/18.82 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); 37.01/18.82 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 37.01/18.82 | otherwise = double_L fm_L fm_R; 37.01/18.82 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 37.01/18.82 | otherwise = double_R fm_L fm_R; 37.01/18.82 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; 37.01/18.82 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); 37.01/18.82 size_l = sizeFM fm_L; 37.01/18.82 size_r = sizeFM fm_R; 37.01/18.82 }; 37.01/18.82 37.01/18.82 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 37.01/18.82 mkBranch which key elt fm_l fm_r = let { 37.01/18.82 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 37.01/18.82 } in result where { 37.01/18.82 balance_ok = True; 37.01/18.82 left_ok = left_ok0 fm_l key fm_l; 37.01/18.82 left_ok0 fm_l key EmptyFM = True; 37.01/18.82 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 37.01/18.82 biggest_left_key = fst (findMax fm_l); 37.01/18.82 } in biggest_left_key < key; 37.01/18.82 left_size = sizeFM fm_l; 37.01/18.82 right_ok = right_ok0 fm_r key fm_r; 37.01/18.82 right_ok0 fm_r key EmptyFM = True; 37.01/18.82 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 37.01/18.82 smallest_right_key = fst (findMin fm_r); 37.01/18.82 } in key < smallest_right_key; 37.01/18.82 right_size = sizeFM fm_r; 37.01/18.82 unbox :: Int -> Int; 37.01/18.82 unbox x = x; 37.01/18.82 }; 37.01/18.82 37.01/18.82 sIZE_RATIO :: Int; 37.01/18.82 sIZE_RATIO = 5; 37.01/18.82 37.01/18.82 sizeFM :: FiniteMap a b -> Int; 37.01/18.82 sizeFM EmptyFM = 0; 37.01/18.82 sizeFM (Branch vzu vzv size vzw vzx) = size; 37.01/18.82 37.01/18.82 } 37.01/18.82 module Maybe where { 37.01/18.82 import qualified FiniteMap; 37.01/18.82 import qualified Main; 37.01/18.82 import qualified Prelude; 37.01/18.82 } 37.01/18.82 module Main where { 37.01/18.82 import qualified FiniteMap; 37.01/18.82 import qualified Maybe; 37.01/18.82 import qualified Prelude; 37.01/18.82 } 37.01/18.82 37.01/18.82 ---------------------------------------- 37.01/18.82 37.01/18.82 (9) COR (EQUIVALENT) 37.01/18.82 Cond Reductions: 37.01/18.82 The following Function with conditions 37.01/18.82 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 37.01/18.82 " 37.01/18.82 is transformed to 37.01/18.82 "compare x y = compare3 x y; 37.01/18.82 " 37.01/18.82 "compare2 x y True = EQ; 37.01/18.82 compare2 x y False = compare1 x y (x <= y); 37.01/18.82 " 37.01/18.82 "compare1 x y True = LT; 37.01/18.82 compare1 x y False = compare0 x y otherwise; 37.01/18.82 " 37.01/18.82 "compare0 x y True = GT; 37.01/18.82 " 37.01/18.82 "compare3 x y = compare2 x y (x == y); 37.01/18.82 " 37.01/18.82 The following Function with conditions 37.01/18.82 "absReal x|x >= 0x|otherwise`negate` x; 37.01/18.82 " 37.01/18.82 is transformed to 37.01/18.82 "absReal x = absReal2 x; 37.01/18.82 " 37.01/18.82 "absReal0 x True = `negate` x; 37.01/18.82 " 37.01/18.82 "absReal1 x True = x; 37.01/18.82 absReal1 x False = absReal0 x otherwise; 37.01/18.82 " 37.01/18.82 "absReal2 x = absReal1 x (x >= 0); 37.01/18.82 " 37.01/18.82 The following Function with conditions 37.01/18.82 "gcd' x 0 = x; 37.01/18.82 gcd' x y = gcd' y (x `rem` y); 37.01/18.82 " 37.01/18.82 is transformed to 37.01/18.82 "gcd' x wuy = gcd'2 x wuy; 37.01/18.82 gcd' x y = gcd'0 x y; 37.01/18.82 " 37.01/18.82 "gcd'0 x y = gcd' y (x `rem` y); 37.01/18.82 " 37.01/18.82 "gcd'1 True x wuy = x; 37.01/18.82 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 37.01/18.82 " 37.01/18.82 "gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 37.01/18.82 gcd'2 wvw wvx = gcd'0 wvw wvx; 37.01/18.82 " 37.01/18.82 The following Function with conditions 37.01/18.82 "gcd 0 0 = error []; 37.01/18.82 gcd x y = gcd' (abs x) (abs y) where { 37.01/18.82 gcd' x 0 = x; 37.01/18.82 gcd' x y = gcd' y (x `rem` y); 37.01/18.82 } 37.01/18.82 ; 37.01/18.82 " 37.01/18.82 is transformed to 37.01/18.82 "gcd wvy wvz = gcd3 wvy wvz; 37.01/18.82 gcd x y = gcd0 x y; 37.01/18.82 " 37.01/18.82 "gcd0 x y = gcd' (abs x) (abs y) where { 37.01/18.82 gcd' x wuy = gcd'2 x wuy; 37.01/18.82 gcd' x y = gcd'0 x y; 37.01/18.82 ; 37.01/18.82 gcd'0 x y = gcd' y (x `rem` y); 37.01/18.82 ; 37.01/18.82 gcd'1 True x wuy = x; 37.01/18.82 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 37.01/18.82 ; 37.01/18.82 gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 37.01/18.82 gcd'2 wvw wvx = gcd'0 wvw wvx; 37.01/18.82 } 37.01/18.82 ; 37.01/18.82 " 37.01/18.82 "gcd1 True wvy wvz = error []; 37.01/18.82 gcd1 wwu wwv www = gcd0 wwv www; 37.01/18.82 " 37.01/18.82 "gcd2 True wvy wvz = gcd1 (wvz == 0) wvy wvz; 37.01/18.82 gcd2 wwx wwy wwz = gcd0 wwy wwz; 37.01/18.82 " 37.01/18.82 "gcd3 wvy wvz = gcd2 (wvy == 0) wvy wvz; 37.01/18.82 gcd3 wxu wxv = gcd0 wxu wxv; 37.01/18.82 " 37.01/18.82 The following Function with conditions 37.01/18.82 "undefined |Falseundefined; 37.01/18.82 " 37.01/18.82 is transformed to 37.01/18.82 "undefined = undefined1; 37.01/18.82 " 37.01/18.82 "undefined0 True = undefined; 37.01/18.82 " 37.01/18.82 "undefined1 = undefined0 False; 37.01/18.82 " 37.01/18.82 The following Function with conditions 37.01/18.82 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 37.01/18.82 d = gcd x y; 37.01/18.82 } 37.01/18.82 ; 37.01/18.82 " 37.01/18.82 is transformed to 37.01/18.82 "reduce x y = reduce2 x y; 37.01/18.82 " 37.01/18.82 "reduce2 x y = reduce1 x y (y == 0) where { 37.01/18.82 d = gcd x y; 37.01/18.82 ; 37.01/18.82 reduce0 x y True = x `quot` d :% (y `quot` d); 37.01/18.82 ; 37.01/18.82 reduce1 x y True = error []; 37.01/18.82 reduce1 x y False = reduce0 x y otherwise; 37.01/18.82 } 37.01/18.82 ; 37.01/18.82 " 37.01/18.82 The following Function with conditions 37.01/18.82 "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; 37.01/18.82 " 37.01/18.82 is transformed to 37.01/18.82 "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); 37.01/18.82 " 37.01/18.82 "mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 37.01/18.82 " 37.01/18.82 "mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 37.01/18.82 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; 37.01/18.82 " 37.01/18.82 "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); 37.01/18.82 " 37.01/18.82 The following Function with conditions 37.01/18.82 "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; 37.01/18.82 " 37.01/18.82 is transformed to 37.01/18.82 "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); 37.01/18.82 " 37.01/18.82 "mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 37.01/18.82 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; 37.01/18.82 " 37.01/18.82 "mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 37.01/18.82 " 37.01/18.82 "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); 37.01/18.82 " 37.01/18.82 The following Function with conditions 37.01/18.82 "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 { 37.01/18.82 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); 37.01/18.82 ; 37.01/18.82 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); 37.01/18.82 ; 37.01/18.82 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; 37.01/18.82 ; 37.01/18.82 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; 37.01/18.82 ; 37.01/18.82 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; 37.01/18.82 ; 37.01/18.82 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); 37.01/18.82 ; 37.01/18.82 size_l = sizeFM fm_L; 37.01/18.82 ; 37.01/18.82 size_r = sizeFM fm_R; 37.01/18.82 } 37.01/18.82 ; 37.01/18.82 " 37.01/18.82 is transformed to 37.01/18.82 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 37.01/18.82 " 37.01/18.82 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 37.01/18.82 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); 37.01/18.82 ; 37.01/18.82 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); 37.01/18.82 ; 37.01/18.82 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); 37.01/18.82 ; 37.01/18.82 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 37.01/18.82 ; 37.01/18.82 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 37.01/18.82 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; 37.01/18.82 ; 37.01/18.82 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); 37.01/18.82 ; 37.01/18.82 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); 37.01/18.82 ; 37.01/18.82 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 37.01/18.82 ; 37.01/18.82 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 37.01/18.82 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; 37.01/18.82 ; 37.01/18.82 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); 37.01/18.82 ; 37.01/18.82 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 37.01/18.82 ; 37.01/18.82 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 37.01/18.82 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 37.01/18.82 ; 37.01/18.82 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 37.01/18.82 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 37.01/18.82 ; 37.01/18.82 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 37.01/18.82 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 37.01/18.82 ; 37.01/18.82 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; 37.01/18.82 ; 37.01/18.82 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); 37.01/18.82 ; 37.01/18.82 size_l = sizeFM fm_L; 37.01/18.82 ; 37.01/18.82 size_r = sizeFM fm_R; 37.01/18.82 } 37.01/18.82 ; 37.01/18.82 " 37.01/18.82 The following Function with conditions 37.01/18.82 "glueBal EmptyFM fm2 = fm2; 37.01/18.82 glueBal fm1 EmptyFM = fm1; 37.01/18.82 glueBal fm1 fm2|sizeFM fm2 > sizeFM fm1mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2)|otherwisemkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 37.01/18.82 mid_elt1 = mid_elt10 vv2; 37.01/18.82 ; 37.01/18.82 mid_elt10 (vyw,mid_elt1) = mid_elt1; 37.01/18.82 ; 37.01/18.82 mid_elt2 = mid_elt20 vv3; 37.01/18.82 ; 37.01/18.82 mid_elt20 (vyv,mid_elt2) = mid_elt2; 37.01/18.82 ; 37.01/18.82 mid_key1 = mid_key10 vv2; 37.01/18.82 ; 37.01/18.82 mid_key10 (mid_key1,vyx) = mid_key1; 37.01/18.82 ; 37.01/18.82 mid_key2 = mid_key20 vv3; 37.01/18.82 ; 37.01/18.82 mid_key20 (mid_key2,vyy) = mid_key2; 37.01/18.82 ; 37.01/18.82 vv2 = findMax fm1; 37.01/18.82 ; 37.01/18.82 vv3 = findMin fm2; 37.01/18.82 } 37.01/18.82 ; 37.01/18.82 " 37.01/18.82 is transformed to 37.01/18.82 "glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 37.01/18.82 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 37.01/18.82 glueBal fm1 fm2 = glueBal2 fm1 fm2; 37.01/18.82 " 37.01/18.82 "glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 37.01/18.82 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 37.01/18.82 ; 37.01/18.82 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 37.01/18.82 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 37.01/18.82 ; 37.01/18.82 mid_elt1 = mid_elt10 vv2; 37.01/18.82 ; 37.01/18.82 mid_elt10 (vyw,mid_elt1) = mid_elt1; 37.01/18.82 ; 37.01/18.82 mid_elt2 = mid_elt20 vv3; 37.01/18.82 ; 37.01/18.82 mid_elt20 (vyv,mid_elt2) = mid_elt2; 37.01/18.82 ; 37.01/18.82 mid_key1 = mid_key10 vv2; 37.01/18.82 ; 37.01/18.82 mid_key10 (mid_key1,vyx) = mid_key1; 37.01/18.82 ; 37.01/18.82 mid_key2 = mid_key20 vv3; 37.01/18.82 ; 37.01/18.82 mid_key20 (mid_key2,vyy) = mid_key2; 37.01/18.82 ; 37.01/18.82 vv2 = findMax fm1; 37.01/18.82 ; 37.01/18.82 vv3 = findMin fm2; 37.01/18.82 } 37.01/18.82 ; 37.01/18.82 " 37.01/18.82 "glueBal3 fm1 EmptyFM = fm1; 37.01/18.82 glueBal3 wxz wyu = glueBal2 wxz wyu; 37.01/18.82 " 37.01/18.82 "glueBal4 EmptyFM fm2 = fm2; 37.01/18.82 glueBal4 wyw wyx = glueBal3 wyw wyx; 37.01/18.82 " 37.01/18.82 The following Function with conditions 37.01/18.82 "delFromFM EmptyFM del_key = emptyFM; 37.01/18.82 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; 37.01/18.82 " 37.01/18.82 is transformed to 37.01/18.82 "delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 37.01/18.82 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 37.01/18.82 " 37.01/18.82 "delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 37.01/18.82 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 37.01/18.82 " 37.01/18.82 "delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 37.01/18.82 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 37.01/18.82 " 37.01/18.82 "delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 37.01/18.82 " 37.01/18.82 "delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 37.01/18.82 " 37.01/18.82 "delFromFM4 EmptyFM del_key = emptyFM; 37.01/18.82 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 37.01/18.82 " 37.01/18.82 37.01/18.82 ---------------------------------------- 37.01/18.82 37.01/18.82 (10) 37.01/18.82 Obligation: 37.01/18.82 mainModule Main 37.01/18.82 module FiniteMap where { 37.01/18.82 import qualified Main; 37.01/18.82 import qualified Maybe; 37.01/18.82 import qualified Prelude; 37.01/18.82 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 37.01/18.82 37.01/18.82 instance (Eq a, Eq b) => Eq FiniteMap b a where { 37.01/18.82 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 37.01/18.82 } 37.01/18.82 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 37.01/18.82 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 37.01/18.82 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 37.01/18.82 37.01/18.82 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 37.01/18.82 37.01/18.82 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 37.01/18.82 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 37.01/18.82 37.01/18.82 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 37.01/18.82 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 37.01/18.82 37.01/18.82 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 37.01/18.82 37.01/18.82 delFromFM4 EmptyFM del_key = emptyFM; 37.01/18.82 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 37.01/18.82 37.01/18.82 delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; 37.01/18.82 delListFromFM fm keys = foldl delFromFM fm keys; 37.01/18.82 37.01/18.82 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 37.01/18.82 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 37.01/18.82 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 37.01/18.82 37.01/18.82 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 37.01/18.82 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 37.01/18.82 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 37.01/18.82 37.01/18.82 emptyFM :: FiniteMap b a; 37.01/18.82 emptyFM = EmptyFM; 37.01/18.82 37.01/18.82 findMax :: FiniteMap b a -> (b,a); 37.01/18.82 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 37.01/18.82 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 37.01/18.82 37.01/18.82 findMin :: FiniteMap a b -> (a,b); 37.01/18.82 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 37.01/18.82 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 37.01/18.82 37.01/18.82 fmToList :: FiniteMap a b -> [(a,b)]; 37.01/18.82 fmToList fm = foldFM fmToList0 [] fm; 37.01/18.82 37.01/18.82 fmToList0 key elt rest = (key,elt) : rest; 37.01/18.82 37.01/18.82 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 37.01/18.82 foldFM k z EmptyFM = z; 37.01/18.82 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 37.01/18.82 37.01/18.82 glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 37.01/18.82 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 37.01/18.82 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 37.01/18.82 glueBal fm1 fm2 = glueBal2 fm1 fm2; 37.01/18.82 37.01/18.82 glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 37.01/18.82 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 37.01/18.82 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 37.01/18.82 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 37.01/18.82 mid_elt1 = mid_elt10 vv2; 37.01/18.82 mid_elt10 (vyw,mid_elt1) = mid_elt1; 37.01/18.82 mid_elt2 = mid_elt20 vv3; 37.01/18.82 mid_elt20 (vyv,mid_elt2) = mid_elt2; 37.01/18.82 mid_key1 = mid_key10 vv2; 37.01/18.82 mid_key10 (mid_key1,vyx) = mid_key1; 37.01/18.82 mid_key2 = mid_key20 vv3; 37.01/18.82 mid_key20 (mid_key2,vyy) = mid_key2; 37.01/18.82 vv2 = findMax fm1; 37.01/18.82 vv3 = findMin fm2; 37.01/18.82 }; 37.01/18.82 37.01/18.82 glueBal3 fm1 EmptyFM = fm1; 37.01/18.82 glueBal3 wxz wyu = glueBal2 wxz wyu; 37.01/18.82 37.01/18.82 glueBal4 EmptyFM fm2 = fm2; 37.01/18.82 glueBal4 wyw wyx = glueBal3 wyw wyx; 37.01/18.82 37.01/18.82 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 37.01/18.82 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 37.01/18.82 37.01/18.82 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 37.01/18.82 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); 37.01/18.82 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); 37.01/18.82 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); 37.01/18.82 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 37.01/18.82 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 37.01/18.82 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; 37.01/18.82 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); 37.01/18.82 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); 37.01/18.82 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 37.01/18.82 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 37.01/18.82 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; 37.01/18.82 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); 37.01/18.82 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 37.01/18.82 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 37.01/18.82 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 37.01/18.82 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 37.01/18.82 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 37.01/18.82 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 37.01/18.82 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 37.01/18.82 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; 37.01/18.82 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); 37.01/18.82 size_l = sizeFM fm_L; 37.01/18.82 size_r = sizeFM fm_R; 37.01/18.82 }; 37.01/18.82 37.01/18.82 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 37.01/18.82 mkBranch which key elt fm_l fm_r = let { 37.01/18.82 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 37.01/18.82 } in result where { 37.01/18.82 balance_ok = True; 37.01/18.82 left_ok = left_ok0 fm_l key fm_l; 37.01/18.82 left_ok0 fm_l key EmptyFM = True; 37.01/18.82 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 37.01/18.82 biggest_left_key = fst (findMax fm_l); 37.01/18.82 } in biggest_left_key < key; 37.01/18.82 left_size = sizeFM fm_l; 37.01/18.82 right_ok = right_ok0 fm_r key fm_r; 37.01/18.82 right_ok0 fm_r key EmptyFM = True; 37.01/18.82 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 37.01/18.82 smallest_right_key = fst (findMin fm_r); 37.01/18.82 } in key < smallest_right_key; 37.01/18.82 right_size = sizeFM fm_r; 37.01/18.82 unbox :: Int -> Int; 37.01/18.82 unbox x = x; 37.01/18.82 }; 37.01/18.82 37.01/18.82 sIZE_RATIO :: Int; 37.01/18.82 sIZE_RATIO = 5; 37.01/18.82 37.01/18.82 sizeFM :: FiniteMap a b -> Int; 37.01/18.82 sizeFM EmptyFM = 0; 37.01/18.82 sizeFM (Branch vzu vzv size vzw vzx) = size; 37.01/18.82 37.01/18.82 } 37.01/18.82 module Maybe where { 37.01/18.82 import qualified FiniteMap; 37.01/18.82 import qualified Main; 37.01/18.82 import qualified Prelude; 37.01/18.82 } 37.01/18.82 module Main where { 37.01/18.82 import qualified FiniteMap; 37.01/18.82 import qualified Maybe; 37.01/18.82 import qualified Prelude; 37.01/18.82 } 37.01/18.82 37.01/18.82 ---------------------------------------- 37.01/18.82 37.01/18.82 (11) LetRed (EQUIVALENT) 37.01/18.82 Let/Where Reductions: 37.01/18.82 The bindings of the following Let/Where expression 37.01/18.82 "gcd' (abs x) (abs y) where { 37.01/18.82 gcd' x wuy = gcd'2 x wuy; 37.01/18.82 gcd' x y = gcd'0 x y; 37.01/18.82 ; 37.01/18.82 gcd'0 x y = gcd' y (x `rem` y); 37.01/18.82 ; 37.01/18.82 gcd'1 True x wuy = x; 37.01/18.82 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 37.01/18.82 ; 37.01/18.82 gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 37.01/18.82 gcd'2 wvw wvx = gcd'0 wvw wvx; 37.01/18.82 } 37.01/18.82 " 37.01/18.82 are unpacked to the following functions on top level 37.01/18.82 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 37.01/18.82 " 37.01/18.82 "gcd0Gcd'1 True x wuy = x; 37.01/18.82 gcd0Gcd'1 wuz wvu wvv = gcd0Gcd'0 wvu wvv; 37.01/18.82 " 37.01/18.82 "gcd0Gcd' x wuy = gcd0Gcd'2 x wuy; 37.01/18.82 gcd0Gcd' x y = gcd0Gcd'0 x y; 37.01/18.82 " 37.01/18.82 "gcd0Gcd'2 x wuy = gcd0Gcd'1 (wuy == 0) x wuy; 37.01/18.82 gcd0Gcd'2 wvw wvx = gcd0Gcd'0 wvw wvx; 37.01/18.82 " 37.01/18.82 The bindings of the following Let/Where expression 37.01/18.82 "reduce1 x y (y == 0) where { 37.01/18.82 d = gcd x y; 37.01/18.82 ; 37.01/18.82 reduce0 x y True = x `quot` d :% (y `quot` d); 37.01/18.82 ; 37.01/18.82 reduce1 x y True = error []; 37.01/18.82 reduce1 x y False = reduce0 x y otherwise; 37.01/18.82 } 37.01/18.82 " 37.01/18.82 are unpacked to the following functions on top level 37.01/18.82 "reduce2D wzw wzx = gcd wzw wzx; 37.01/18.82 " 37.01/18.82 "reduce2Reduce1 wzw wzx x y True = error []; 37.01/18.82 reduce2Reduce1 wzw wzx x y False = reduce2Reduce0 wzw wzx x y otherwise; 37.01/18.82 " 37.01/18.82 "reduce2Reduce0 wzw wzx x y True = x `quot` reduce2D wzw wzx :% (y `quot` reduce2D wzw wzx); 37.01/18.82 " 37.01/18.82 The bindings of the following Let/Where expression 37.01/18.82 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 37.01/18.82 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); 37.01/18.82 ; 37.01/18.82 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); 37.01/18.82 ; 37.01/18.82 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); 37.01/18.82 ; 37.01/18.82 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 37.01/18.82 ; 37.01/18.82 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 37.01/18.82 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; 37.01/18.82 ; 37.01/18.82 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); 37.01/18.82 ; 37.01/18.82 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); 37.01/18.82 ; 37.01/18.82 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 37.01/18.82 ; 37.01/18.82 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 37.01/18.82 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; 37.01/18.82 ; 37.01/18.82 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); 37.01/18.82 ; 37.01/18.82 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 37.01/18.82 ; 37.01/18.82 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 37.01/18.82 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 37.01/18.82 ; 37.01/18.82 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 37.01/18.82 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 37.01/18.82 ; 37.01/18.82 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 37.01/18.82 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 37.01/18.82 ; 37.01/18.82 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; 37.01/18.82 ; 37.01/18.82 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); 37.01/18.82 ; 37.01/18.82 size_l = sizeFM fm_L; 37.01/18.82 ; 37.01/18.82 size_r = sizeFM fm_R; 37.01/18.82 } 37.01/18.82 " 37.01/18.82 are unpacked to the following functions on top level 37.01/18.82 "mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM wzy; 37.01/18.82 " 37.01/18.82 "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; 37.01/18.82 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; 37.19/18.86 " 37.19/18.86 "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); 37.19/18.86 " 37.19/18.86 "mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 37.19/18.86 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 37.19/18.86 " 37.19/18.86 "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; 37.19/18.86 " 37.19/18.86 "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 wzz xuu fm_lrr fm_r); 37.19/18.86 " 37.19/18.86 "mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; 37.19/18.86 " 37.19/18.86 "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); 37.19/18.86 " 37.19/18.86 "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 wzz xuu fm_l fm_rl) fm_rr; 37.19/18.86 " 37.19/18.86 "mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 37.19/18.86 " 37.19/18.86 "mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 37.19/18.86 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); 37.19/18.86 " 37.19/18.86 "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); 37.19/18.86 " 37.19/18.86 "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; 37.19/18.86 " 37.19/18.86 "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 wzz xuu fm_lr fm_r); 37.19/18.86 " 37.19/18.86 "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; 37.19/18.86 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; 37.19/18.86 " 37.19/18.86 "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); 37.19/18.86 " 37.19/18.86 "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 wzz xuu fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 37.19/18.86 " 37.19/18.86 "mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 37.19/18.86 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); 37.19/18.86 " 37.19/18.86 The bindings of the following Let/Where expression 37.19/18.86 "let { 37.19/18.86 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 37.19/18.86 } in result where { 37.19/18.86 balance_ok = True; 37.19/18.86 ; 37.19/18.86 left_ok = left_ok0 fm_l key fm_l; 37.19/18.86 ; 37.19/18.86 left_ok0 fm_l key EmptyFM = True; 37.19/18.86 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 37.19/18.86 biggest_left_key = fst (findMax fm_l); 37.19/18.86 } in biggest_left_key < key; 37.19/18.86 ; 37.19/18.86 left_size = sizeFM fm_l; 37.19/18.86 ; 37.19/18.86 right_ok = right_ok0 fm_r key fm_r; 37.19/18.86 ; 37.19/18.86 right_ok0 fm_r key EmptyFM = True; 37.19/18.86 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 37.19/18.86 smallest_right_key = fst (findMin fm_r); 37.19/18.86 } in key < smallest_right_key; 37.19/18.86 ; 37.19/18.86 right_size = sizeFM fm_r; 37.19/18.86 ; 37.19/18.86 unbox x = x; 37.19/18.86 } 37.19/18.86 " 37.19/18.86 are unpacked to the following functions on top level 37.19/18.86 "mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xux xuw; 37.19/18.86 " 37.19/18.86 "mkBranchRight_size xuw xux xuy = sizeFM xuy; 37.19/18.86 " 37.19/18.86 "mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuy xux xuy; 37.19/18.86 " 37.19/18.86 "mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 37.19/18.86 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 37.19/18.86 " 37.19/18.86 "mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 37.19/18.86 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 37.19/18.86 " 37.19/18.86 "mkBranchUnbox xuw xux xuy x = x; 37.19/18.86 " 37.19/18.86 "mkBranchLeft_size xuw xux xuy = sizeFM xuw; 37.19/18.86 " 37.19/18.86 "mkBranchBalance_ok xuw xux xuy = True; 37.19/18.86 " 37.19/18.86 The bindings of the following Let/Where expression 37.19/18.86 "let { 37.19/18.86 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 37.19/18.86 } in result" 37.19/18.86 are unpacked to the following functions on top level 37.19/18.86 "mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xuz xvw (1 + mkBranchLeft_size xvv xuz xvw + mkBranchRight_size xvv xuz xvw)) xvv xvw; 37.19/18.86 " 37.19/18.86 The bindings of the following Let/Where expression 37.19/18.86 "glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 37.19/18.86 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 37.19/18.86 ; 37.19/18.86 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 37.19/18.86 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 37.19/18.86 ; 37.19/18.86 mid_elt1 = mid_elt10 vv2; 37.19/18.86 ; 37.19/18.86 mid_elt10 (vyw,mid_elt1) = mid_elt1; 37.19/18.86 ; 37.19/18.86 mid_elt2 = mid_elt20 vv3; 37.19/18.86 ; 37.19/18.86 mid_elt20 (vyv,mid_elt2) = mid_elt2; 37.19/18.86 ; 37.19/18.86 mid_key1 = mid_key10 vv2; 37.19/18.86 ; 37.19/18.86 mid_key10 (mid_key1,vyx) = mid_key1; 37.19/18.86 ; 37.19/18.86 mid_key2 = mid_key20 vv3; 37.19/18.86 ; 37.19/18.86 mid_key20 (mid_key2,vyy) = mid_key2; 37.19/18.86 ; 37.19/18.86 vv2 = findMax fm1; 37.19/18.86 ; 37.19/18.86 vv3 = findMin fm2; 37.19/18.86 } 37.19/18.86 " 37.19/18.86 are unpacked to the following functions on top level 37.19/18.86 "glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 37.19/18.86 " 37.19/18.86 "glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 37.19/18.86 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 37.19/18.86 " 37.19/18.86 "glueBal2Vv3 xvx xvy = findMin xvx; 37.19/18.86 " 37.19/18.86 "glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 37.19/18.86 " 37.19/18.86 "glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 37.19/18.86 " 37.19/18.86 "glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 37.19/18.86 " 37.19/18.86 "glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 37.19/18.86 " 37.19/18.86 "glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 37.19/18.86 " 37.19/18.86 "glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 37.19/18.86 " 37.19/18.86 "glueBal2Vv2 xvx xvy = findMax xvy; 37.19/18.86 " 37.19/18.86 "glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 37.19/18.86 " 37.19/18.86 "glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 37.19/18.86 " 37.19/18.86 The bindings of the following Let/Where expression 37.19/18.86 "let { 37.19/18.86 biggest_left_key = fst (findMax fm_l); 37.19/18.86 } in biggest_left_key < key" 37.19/18.86 are unpacked to the following functions on top level 37.19/18.86 "mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 37.19/18.86 " 37.19/18.86 The bindings of the following Let/Where expression 37.19/18.86 "let { 37.19/18.86 smallest_right_key = fst (findMin fm_r); 37.19/18.86 } in key < smallest_right_key" 37.19/18.86 are unpacked to the following functions on top level 37.19/18.86 "mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 37.19/18.86 " 37.19/18.86 37.19/18.86 ---------------------------------------- 37.19/18.86 37.19/18.86 (12) 37.19/18.86 Obligation: 37.19/18.86 mainModule Main 37.19/18.86 module FiniteMap where { 37.19/18.86 import qualified Main; 37.19/18.86 import qualified Maybe; 37.19/18.86 import qualified Prelude; 37.19/18.86 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 37.19/18.86 37.19/18.86 instance (Eq a, Eq b) => Eq FiniteMap b a where { 37.19/18.86 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 37.19/18.86 } 37.19/18.86 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 37.19/18.86 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 37.19/18.86 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 37.19/18.86 37.19/18.86 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 37.19/18.86 37.19/18.86 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 37.19/18.86 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 37.19/18.86 37.19/18.86 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 37.19/18.86 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 37.19/18.86 37.19/18.86 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 37.19/18.86 37.19/18.86 delFromFM4 EmptyFM del_key = emptyFM; 37.19/18.86 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 37.19/18.86 37.19/18.86 delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; 37.19/18.86 delListFromFM fm keys = foldl delFromFM fm keys; 37.19/18.86 37.19/18.86 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 37.19/18.86 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 37.19/18.86 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 37.19/18.86 37.19/18.86 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 37.19/18.86 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 37.19/18.86 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 37.19/18.86 37.19/18.86 emptyFM :: FiniteMap b a; 37.19/18.86 emptyFM = EmptyFM; 37.19/18.86 37.19/18.86 findMax :: FiniteMap b a -> (b,a); 37.19/18.86 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 37.19/18.86 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 37.19/18.86 37.19/18.86 findMin :: FiniteMap b a -> (b,a); 37.19/18.86 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 37.19/18.86 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 37.19/18.86 37.19/18.86 fmToList :: FiniteMap a b -> [(a,b)]; 37.19/18.86 fmToList fm = foldFM fmToList0 [] fm; 37.19/18.86 37.19/18.86 fmToList0 key elt rest = (key,elt) : rest; 37.19/18.86 37.19/18.86 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 37.19/18.86 foldFM k z EmptyFM = z; 37.19/18.86 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 37.19/18.86 37.19/18.86 glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 37.19/18.86 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 37.19/18.86 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 37.19/18.86 glueBal fm1 fm2 = glueBal2 fm1 fm2; 37.19/18.86 37.19/18.86 glueBal2 fm1 fm2 = glueBal2GlueBal1 fm2 fm1 fm1 fm2 (sizeFM fm2 > sizeFM fm1); 37.19/18.86 37.19/18.86 glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 37.19/18.86 37.19/18.86 glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 37.19/18.86 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 37.19/18.86 37.19/18.86 glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 37.19/18.86 37.19/18.86 glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 37.19/18.86 37.19/18.86 glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 37.19/18.86 37.19/18.86 glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 37.19/18.86 37.19/18.86 glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 37.19/18.86 37.19/18.86 glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 37.19/18.86 37.19/18.86 glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 37.19/18.86 37.19/18.86 glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 37.19/18.86 37.19/18.86 glueBal2Vv2 xvx xvy = findMax xvy; 37.19/18.86 37.19/18.86 glueBal2Vv3 xvx xvy = findMin xvx; 37.19/18.86 37.19/18.86 glueBal3 fm1 EmptyFM = fm1; 37.19/18.86 glueBal3 wxz wyu = glueBal2 wxz wyu; 37.19/18.86 37.19/18.86 glueBal4 EmptyFM fm2 = fm2; 37.19/18.86 glueBal4 wyw wyx = glueBal3 wyw wyx; 37.19/18.86 37.19/18.86 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 37.19/18.86 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 37.19/18.86 37.19/18.86 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt fm_R < 2); 37.19/18.86 37.19/18.86 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 wzz xuu fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 37.19/18.86 37.19/18.86 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 wzz xuu fm_lrr fm_r); 37.19/18.86 37.19/18.86 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); 37.19/18.86 37.19/18.86 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; 37.19/18.86 37.19/18.86 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; 37.19/18.86 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; 37.19/18.86 37.19/18.86 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); 37.19/18.86 37.19/18.86 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); 37.19/18.86 37.19/18.86 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; 37.19/18.86 37.19/18.86 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; 37.19/18.86 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; 37.19/18.86 37.19/18.86 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); 37.19/18.86 37.19/18.86 mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 37.19/18.86 37.19/18.86 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 37.19/18.86 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 37.19/18.86 37.19/18.86 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 37.19/18.86 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); 37.19/18.86 37.19/18.86 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 37.19/18.86 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); 37.19/18.86 37.19/18.86 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 wzz xuu fm_l fm_rl) fm_rr; 37.19/18.86 37.19/18.86 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 wzz xuu fm_lr fm_r); 37.19/18.86 37.19/18.86 mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM wzy; 37.19/18.86 37.19/18.86 mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; 37.19/18.86 37.19/18.86 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 37.19/18.86 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 37.19/18.86 37.19/18.86 mkBranchBalance_ok xuw xux xuy = True; 37.19/18.86 37.19/18.86 mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xux xuw; 37.19/18.86 37.19/18.86 mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 37.19/18.86 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 37.19/18.86 37.19/18.86 mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 37.19/18.86 37.19/18.86 mkBranchLeft_size xuw xux xuy = sizeFM xuw; 37.19/18.86 37.19/18.86 mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xuz xvw (1 + mkBranchLeft_size xvv xuz xvw + mkBranchRight_size xvv xuz xvw)) xvv xvw; 37.19/18.86 37.19/18.86 mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuy xux xuy; 37.19/18.86 37.19/18.86 mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 37.19/18.86 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 37.19/18.86 37.19/18.86 mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 37.19/18.86 37.19/18.86 mkBranchRight_size xuw xux xuy = sizeFM xuy; 37.19/18.86 37.19/18.86 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 37.19/18.86 mkBranchUnbox xuw xux xuy x = x; 37.19/18.86 37.19/18.86 sIZE_RATIO :: Int; 37.19/18.86 sIZE_RATIO = 5; 37.19/18.86 37.19/18.86 sizeFM :: FiniteMap b a -> Int; 37.19/18.86 sizeFM EmptyFM = 0; 37.19/18.86 sizeFM (Branch vzu vzv size vzw vzx) = size; 37.19/18.86 37.19/18.86 } 37.19/18.86 module Maybe where { 37.19/18.86 import qualified FiniteMap; 37.19/18.86 import qualified Main; 37.19/18.86 import qualified Prelude; 37.19/18.86 } 37.19/18.86 module Main where { 37.19/18.86 import qualified FiniteMap; 37.19/18.86 import qualified Maybe; 37.19/18.86 import qualified Prelude; 37.19/18.86 } 37.19/18.86 37.19/18.86 ---------------------------------------- 37.19/18.86 37.19/18.86 (13) NumRed (SOUND) 37.19/18.86 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 37.19/18.86 ---------------------------------------- 37.19/18.86 37.19/18.86 (14) 37.19/18.86 Obligation: 37.19/18.86 mainModule Main 37.19/18.86 module FiniteMap where { 37.19/18.86 import qualified Main; 37.19/18.86 import qualified Maybe; 37.19/18.86 import qualified Prelude; 37.19/18.86 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 37.19/18.86 37.19/18.86 instance (Eq a, Eq b) => Eq FiniteMap b a where { 37.19/18.86 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 37.19/18.86 } 37.19/18.86 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 37.19/18.86 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 37.19/18.86 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 37.19/18.86 37.19/18.86 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 37.19/18.86 37.19/18.86 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 37.19/18.86 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 37.19/18.86 37.19/18.86 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 37.19/18.86 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 37.19/18.86 37.19/18.86 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 37.19/18.86 37.19/18.86 delFromFM4 EmptyFM del_key = emptyFM; 37.19/18.86 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 37.19/18.86 37.19/18.86 delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; 37.19/18.86 delListFromFM fm keys = foldl delFromFM fm keys; 37.19/18.86 37.19/18.86 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 37.19/18.86 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 37.19/18.86 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 37.19/18.86 37.19/18.86 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 37.19/18.86 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 37.19/18.86 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 37.19/18.86 37.19/18.86 emptyFM :: FiniteMap a b; 37.19/18.86 emptyFM = EmptyFM; 37.19/18.86 37.19/18.86 findMax :: FiniteMap a b -> (a,b); 37.19/18.86 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 37.19/18.86 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 37.19/18.86 37.19/18.86 findMin :: FiniteMap a b -> (a,b); 37.19/18.86 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 37.19/18.86 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 37.19/18.86 37.19/18.86 fmToList :: FiniteMap b a -> [(b,a)]; 37.19/18.86 fmToList fm = foldFM fmToList0 [] fm; 37.19/18.86 37.19/18.86 fmToList0 key elt rest = (key,elt) : rest; 37.19/18.86 37.19/18.86 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 37.19/18.86 foldFM k z EmptyFM = z; 37.19/18.86 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 37.19/18.86 37.19/18.86 glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 37.19/18.86 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 37.19/18.86 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 37.19/18.86 glueBal fm1 fm2 = glueBal2 fm1 fm2; 37.19/18.86 37.19/18.86 glueBal2 fm1 fm2 = glueBal2GlueBal1 fm2 fm1 fm1 fm2 (sizeFM fm2 > sizeFM fm1); 37.19/18.86 37.19/18.86 glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 37.19/18.86 37.19/18.86 glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 37.19/18.86 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 37.19/18.86 37.19/18.86 glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 37.19/18.86 37.19/18.86 glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 37.19/18.86 37.19/18.86 glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 37.19/18.86 37.19/18.86 glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 37.19/18.86 37.19/18.86 glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 37.19/18.86 37.19/18.86 glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 37.19/18.86 37.19/18.86 glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 37.19/18.86 37.19/18.86 glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 37.19/18.86 37.19/18.86 glueBal2Vv2 xvx xvy = findMax xvy; 37.19/18.86 37.19/18.86 glueBal2Vv3 xvx xvy = findMin xvx; 37.19/18.86 37.19/18.86 glueBal3 fm1 EmptyFM = fm1; 37.19/18.86 glueBal3 wxz wyu = glueBal2 wxz wyu; 37.19/18.86 37.19/18.86 glueBal4 EmptyFM fm2 = fm2; 37.19/18.86 glueBal4 wyw wyx = glueBal3 wyw wyx; 37.19/18.86 37.19/18.86 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 37.19/18.86 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 37.19/18.86 37.19/18.86 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt fm_R < Pos (Succ (Succ Zero))); 37.19/18.86 37.19/18.86 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))))))) wzz xuu fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); 37.19/18.86 37.19/18.86 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))))))))))))) wzz xuu fm_lrr fm_r); 37.19/18.86 37.19/18.86 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); 37.19/18.86 37.19/18.86 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; 37.19/18.86 37.19/18.86 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; 37.19/18.86 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; 37.19/18.86 37.19/18.86 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); 37.19/18.86 37.19/18.86 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); 37.19/18.86 37.19/18.86 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; 37.19/18.86 37.19/18.86 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; 37.19/18.86 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; 37.19/18.86 37.19/18.86 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); 37.19/18.86 37.19/18.86 mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 37.19/18.86 37.19/18.86 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 37.19/18.86 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 37.19/18.86 37.19/18.86 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 37.19/18.86 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); 37.19/18.86 37.19/18.86 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 37.19/18.86 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); 37.19/18.86 37.19/18.86 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))))) wzz xuu fm_l fm_rl) fm_rr; 37.19/18.86 37.19/18.86 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)))))))))) wzz xuu fm_lr fm_r); 37.19/18.86 37.19/18.86 mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM wzy; 37.19/18.86 37.19/18.86 mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; 37.19/18.86 37.19/18.86 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 37.19/18.86 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 37.19/18.86 37.19/18.86 mkBranchBalance_ok xuw xux xuy = True; 37.19/18.86 37.19/18.86 mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xux xuw; 37.19/18.86 37.19/18.86 mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 37.19/18.86 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 37.19/18.86 37.19/18.86 mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 37.19/18.86 37.19/18.86 mkBranchLeft_size xuw xux xuy = sizeFM xuw; 37.19/18.86 37.19/18.86 mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xuz xvw (Pos (Succ Zero) + mkBranchLeft_size xvv xuz xvw + mkBranchRight_size xvv xuz xvw)) xvv xvw; 37.19/18.86 37.19/18.86 mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuy xux xuy; 37.19/18.86 37.19/18.86 mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 37.19/18.86 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 37.19/18.86 37.19/18.86 mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 37.19/18.86 37.19/18.86 mkBranchRight_size xuw xux xuy = sizeFM xuy; 37.19/18.86 37.19/18.86 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 37.19/18.86 mkBranchUnbox xuw xux xuy x = x; 37.19/18.86 37.19/18.86 sIZE_RATIO :: Int; 37.19/18.86 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 37.19/18.86 37.19/18.86 sizeFM :: FiniteMap a b -> Int; 37.19/18.86 sizeFM EmptyFM = Pos Zero; 37.19/18.86 sizeFM (Branch vzu vzv size vzw vzx) = size; 37.19/18.86 37.19/18.86 } 37.19/18.86 module Maybe where { 37.19/18.86 import qualified FiniteMap; 37.19/18.86 import qualified Main; 37.19/18.86 import qualified Prelude; 37.19/18.86 } 37.19/18.86 module Main where { 37.19/18.86 import qualified FiniteMap; 37.19/18.86 import qualified Maybe; 37.19/18.86 import qualified Prelude; 37.19/18.86 } 37.19/18.86 37.19/18.86 ---------------------------------------- 37.19/18.86 37.19/18.86 (15) Narrow (SOUND) 37.19/18.86 Haskell To QDPs 37.19/18.86 37.19/18.86 digraph dp_graph { 37.19/18.86 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.delListFromFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 37.19/18.86 3[label="FiniteMap.delListFromFM xwv3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 37.19/18.86 4[label="FiniteMap.delListFromFM xwv3 xwv4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 37.19/18.86 5[label="foldl FiniteMap.delFromFM xwv3 xwv4",fontsize=16,color="burlywood",shape="triangle"];3796[label="xwv4/xwv40 : xwv41",fontsize=10,color="white",style="solid",shape="box"];5 -> 3796[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3796 -> 6[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3797[label="xwv4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 3797[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3797 -> 7[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 6[label="foldl FiniteMap.delFromFM xwv3 (xwv40 : xwv41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 37.19/18.86 7[label="foldl FiniteMap.delFromFM xwv3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 37.19/18.86 8 -> 5[label="",style="dashed", color="red", weight=0]; 37.19/18.86 8[label="foldl FiniteMap.delFromFM (FiniteMap.delFromFM xwv3 xwv40) xwv41",fontsize=16,color="magenta"];8 -> 10[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 8 -> 11[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 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"];3798[label="xwv3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];11 -> 3798[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3798 -> 12[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3799[label="xwv3/FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34",fontsize=10,color="white",style="solid",shape="box"];11 -> 3799[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3799 -> 13[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 12[label="FiniteMap.delFromFM FiniteMap.EmptyFM xwv40",fontsize=16,color="black",shape="box"];12 -> 14[label="",style="solid", color="black", weight=3]; 37.19/18.86 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]; 37.19/18.86 14[label="FiniteMap.delFromFM4 FiniteMap.EmptyFM xwv40",fontsize=16,color="black",shape="box"];14 -> 16[label="",style="solid", color="black", weight=3]; 37.19/18.86 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]; 37.19/18.86 16[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 37.19/18.86 17 -> 19[label="",style="dashed", color="red", weight=0]; 37.19/18.86 17[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv40 (xwv40 > xwv30)",fontsize=16,color="magenta"];17 -> 20[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 17 -> 21[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 17 -> 22[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 17 -> 23[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 17 -> 24[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 17 -> 25[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 17 -> 26[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 18[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];20[label="xwv31",fontsize=16,color="green",shape="box"];21[label="xwv32",fontsize=16,color="green",shape="box"];22[label="xwv34",fontsize=16,color="green",shape="box"];23[label="xwv30",fontsize=16,color="green",shape="box"];24[label="xwv40 > xwv30",fontsize=16,color="blue",shape="box"];3800[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3800[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3800 -> 27[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3801[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3801[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3801 -> 28[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3802[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3802[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3802 -> 29[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3803[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3803[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3803 -> 30[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3804[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3804[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3804 -> 31[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3805[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3805[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3805 -> 32[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3806[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3806[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3806 -> 33[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3807[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3807[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3807 -> 34[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3808[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3808[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3808 -> 35[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3809[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3809[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3809 -> 36[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3810[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3810[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3810 -> 37[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3811[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3811[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3811 -> 38[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3812[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3812[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3812 -> 39[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3813[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];24 -> 3813[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3813 -> 40[label="",style="solid", color="blue", weight=3]; 37.19/18.86 25[label="xwv33",fontsize=16,color="green",shape="box"];26[label="xwv40",fontsize=16,color="green",shape="box"];19[label="FiniteMap.delFromFM2 xwv13 xwv14 xwv15 xwv16 xwv17 xwv18 xwv19",fontsize=16,color="burlywood",shape="triangle"];3814[label="xwv19/False",fontsize=10,color="white",style="solid",shape="box"];19 -> 3814[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3814 -> 41[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3815[label="xwv19/True",fontsize=10,color="white",style="solid",shape="box"];19 -> 3815[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3815 -> 42[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 27[label="xwv40 > xwv30",fontsize=16,color="black",shape="triangle"];27 -> 43[label="",style="solid", color="black", weight=3]; 37.19/18.86 28[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];28 -> 44[label="",style="solid", color="black", weight=3]; 37.19/18.86 29[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];29 -> 45[label="",style="solid", color="black", weight=3]; 37.19/18.86 30[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];30 -> 46[label="",style="solid", color="black", weight=3]; 37.19/18.86 31[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];31 -> 47[label="",style="solid", color="black", weight=3]; 37.19/18.86 32[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];32 -> 48[label="",style="solid", color="black", weight=3]; 37.19/18.86 33[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];33 -> 49[label="",style="solid", color="black", weight=3]; 37.19/18.86 34[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];34 -> 50[label="",style="solid", color="black", weight=3]; 37.19/18.86 35[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];35 -> 51[label="",style="solid", color="black", weight=3]; 37.19/18.86 36[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];36 -> 52[label="",style="solid", color="black", weight=3]; 37.19/18.86 37[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];37 -> 53[label="",style="solid", color="black", weight=3]; 37.19/18.86 38[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];38 -> 54[label="",style="solid", color="black", weight=3]; 37.19/18.86 39[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];39 -> 55[label="",style="solid", color="black", weight=3]; 37.19/18.86 40[label="xwv40 > xwv30",fontsize=16,color="black",shape="box"];40 -> 56[label="",style="solid", color="black", weight=3]; 37.19/18.86 41[label="FiniteMap.delFromFM2 xwv13 xwv14 xwv15 xwv16 xwv17 xwv18 False",fontsize=16,color="black",shape="box"];41 -> 57[label="",style="solid", color="black", weight=3]; 37.19/18.86 42[label="FiniteMap.delFromFM2 xwv13 xwv14 xwv15 xwv16 xwv17 xwv18 True",fontsize=16,color="black",shape="box"];42 -> 58[label="",style="solid", color="black", weight=3]; 37.19/18.86 43 -> 207[label="",style="dashed", color="red", weight=0]; 37.19/18.86 43[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];43 -> 208[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 44 -> 207[label="",style="dashed", color="red", weight=0]; 37.19/18.86 44[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];44 -> 209[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 45 -> 207[label="",style="dashed", color="red", weight=0]; 37.19/18.86 45[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];45 -> 210[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 46 -> 207[label="",style="dashed", color="red", weight=0]; 37.19/18.86 46[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];46 -> 211[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 47 -> 207[label="",style="dashed", color="red", weight=0]; 37.19/18.86 47[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];47 -> 212[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 48 -> 207[label="",style="dashed", color="red", weight=0]; 37.19/18.86 48[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];48 -> 213[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 49 -> 207[label="",style="dashed", color="red", weight=0]; 37.19/18.86 49[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];49 -> 214[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 50 -> 207[label="",style="dashed", color="red", weight=0]; 37.19/18.86 50[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];50 -> 215[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 51 -> 207[label="",style="dashed", color="red", weight=0]; 37.19/18.86 51[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];51 -> 216[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 52 -> 207[label="",style="dashed", color="red", weight=0]; 37.19/18.86 52[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];52 -> 217[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 53 -> 207[label="",style="dashed", color="red", weight=0]; 37.19/18.86 53[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];53 -> 218[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 54 -> 207[label="",style="dashed", color="red", weight=0]; 37.19/18.86 54[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];54 -> 219[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 55 -> 207[label="",style="dashed", color="red", weight=0]; 37.19/18.86 55[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];55 -> 220[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 56 -> 207[label="",style="dashed", color="red", weight=0]; 37.19/18.86 56[label="compare xwv40 xwv30 == GT",fontsize=16,color="magenta"];56 -> 221[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 57 -> 74[label="",style="dashed", color="red", weight=0]; 37.19/18.86 57[label="FiniteMap.delFromFM1 xwv13 xwv14 xwv15 xwv16 xwv17 xwv18 (xwv18 < xwv13)",fontsize=16,color="magenta"];57 -> 75[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 57 -> 76[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 57 -> 77[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 57 -> 78[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 57 -> 79[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 57 -> 80[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 57 -> 81[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 58 -> 82[label="",style="dashed", color="red", weight=0]; 37.19/18.86 58[label="FiniteMap.mkBalBranch xwv13 xwv14 xwv16 (FiniteMap.delFromFM xwv17 xwv18)",fontsize=16,color="magenta"];58 -> 83[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 208[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];208 -> 247[label="",style="solid", color="black", weight=3]; 37.19/18.86 207[label="xwv38 == GT",fontsize=16,color="burlywood",shape="triangle"];3816[label="xwv38/LT",fontsize=10,color="white",style="solid",shape="box"];207 -> 3816[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3816 -> 248[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3817[label="xwv38/EQ",fontsize=10,color="white",style="solid",shape="box"];207 -> 3817[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3817 -> 249[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3818[label="xwv38/GT",fontsize=10,color="white",style="solid",shape="box"];207 -> 3818[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3818 -> 250[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 209[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];209 -> 251[label="",style="solid", color="black", weight=3]; 37.19/18.86 210[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];210 -> 252[label="",style="solid", color="black", weight=3]; 37.19/18.86 211[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];211 -> 253[label="",style="solid", color="black", weight=3]; 37.19/18.86 212[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];212 -> 254[label="",style="solid", color="black", weight=3]; 37.19/18.86 213[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];213 -> 255[label="",style="solid", color="black", weight=3]; 37.19/18.86 214[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];214 -> 256[label="",style="solid", color="black", weight=3]; 37.19/18.86 215[label="compare xwv40 xwv30",fontsize=16,color="burlywood",shape="triangle"];3819[label="xwv40/()",fontsize=10,color="white",style="solid",shape="box"];215 -> 3819[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3819 -> 257[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 216[label="compare xwv40 xwv30",fontsize=16,color="burlywood",shape="triangle"];3820[label="xwv40/xwv400 : xwv401",fontsize=10,color="white",style="solid",shape="box"];216 -> 3820[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3820 -> 258[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3821[label="xwv40/[]",fontsize=10,color="white",style="solid",shape="box"];216 -> 3821[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3821 -> 259[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 217[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];217 -> 260[label="",style="solid", color="black", weight=3]; 37.19/18.86 218[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];218 -> 261[label="",style="solid", color="black", weight=3]; 37.19/18.86 219[label="compare xwv40 xwv30",fontsize=16,color="black",shape="triangle"];219 -> 262[label="",style="solid", color="black", weight=3]; 37.19/18.86 220[label="compare xwv40 xwv30",fontsize=16,color="burlywood",shape="triangle"];3822[label="xwv40/Integer xwv400",fontsize=10,color="white",style="solid",shape="box"];220 -> 3822[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3822 -> 263[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 221[label="compare xwv40 xwv30",fontsize=16,color="burlywood",shape="triangle"];3823[label="xwv40/xwv400 :% xwv401",fontsize=10,color="white",style="solid",shape="box"];221 -> 3823[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3823 -> 264[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 75[label="xwv15",fontsize=16,color="green",shape="box"];76[label="xwv13",fontsize=16,color="green",shape="box"];77[label="xwv17",fontsize=16,color="green",shape="box"];78[label="xwv18",fontsize=16,color="green",shape="box"];79[label="xwv18 < xwv13",fontsize=16,color="blue",shape="box"];3824[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3824[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3824 -> 102[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3825[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3825[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3825 -> 103[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3826[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3826[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3826 -> 104[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3827[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3827[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3827 -> 105[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3828[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3828[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3828 -> 106[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3829[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3829[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3829 -> 107[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3830[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3830[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3830 -> 108[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3831[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3831[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3831 -> 109[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3832[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3832[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3832 -> 110[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3833[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3833[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3833 -> 111[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3834[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3834[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3834 -> 112[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3835[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3835[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3835 -> 113[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3836[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3836[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3836 -> 114[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3837[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];79 -> 3837[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3837 -> 115[label="",style="solid", color="blue", weight=3]; 37.19/18.86 80[label="xwv16",fontsize=16,color="green",shape="box"];81[label="xwv14",fontsize=16,color="green",shape="box"];74[label="FiniteMap.delFromFM1 xwv28 xwv29 xwv30 xwv31 xwv32 xwv33 xwv34",fontsize=16,color="burlywood",shape="triangle"];3838[label="xwv34/False",fontsize=10,color="white",style="solid",shape="box"];74 -> 3838[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3838 -> 116[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3839[label="xwv34/True",fontsize=10,color="white",style="solid",shape="box"];74 -> 3839[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3839 -> 117[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 83 -> 11[label="",style="dashed", color="red", weight=0]; 37.19/18.86 83[label="FiniteMap.delFromFM xwv17 xwv18",fontsize=16,color="magenta"];83 -> 118[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 83 -> 119[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 82[label="FiniteMap.mkBalBranch xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="triangle"];82 -> 120[label="",style="solid", color="black", weight=3]; 37.19/18.86 247[label="primCmpInt xwv40 xwv30",fontsize=16,color="burlywood",shape="triangle"];3840[label="xwv40/Pos xwv400",fontsize=10,color="white",style="solid",shape="box"];247 -> 3840[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3840 -> 280[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3841[label="xwv40/Neg xwv400",fontsize=10,color="white",style="solid",shape="box"];247 -> 3841[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3841 -> 281[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 248[label="LT == GT",fontsize=16,color="black",shape="box"];248 -> 282[label="",style="solid", color="black", weight=3]; 37.19/18.86 249[label="EQ == GT",fontsize=16,color="black",shape="box"];249 -> 283[label="",style="solid", color="black", weight=3]; 37.19/18.86 250[label="GT == GT",fontsize=16,color="black",shape="box"];250 -> 284[label="",style="solid", color="black", weight=3]; 37.19/18.86 251[label="primCmpChar xwv40 xwv30",fontsize=16,color="burlywood",shape="box"];3842[label="xwv40/Char xwv400",fontsize=10,color="white",style="solid",shape="box"];251 -> 3842[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3842 -> 285[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 252[label="compare3 xwv40 xwv30",fontsize=16,color="black",shape="box"];252 -> 286[label="",style="solid", color="black", weight=3]; 37.19/18.86 253[label="compare3 xwv40 xwv30",fontsize=16,color="black",shape="box"];253 -> 287[label="",style="solid", color="black", weight=3]; 37.19/18.86 254[label="compare3 xwv40 xwv30",fontsize=16,color="black",shape="box"];254 -> 288[label="",style="solid", color="black", weight=3]; 37.19/18.86 255[label="primCmpDouble xwv40 xwv30",fontsize=16,color="burlywood",shape="box"];3843[label="xwv40/Double xwv400 xwv401",fontsize=10,color="white",style="solid",shape="box"];255 -> 3843[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3843 -> 289[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 256[label="primCmpFloat xwv40 xwv30",fontsize=16,color="burlywood",shape="box"];3844[label="xwv40/Float xwv400 xwv401",fontsize=10,color="white",style="solid",shape="box"];256 -> 3844[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3844 -> 290[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 257[label="compare () xwv30",fontsize=16,color="burlywood",shape="box"];3845[label="xwv30/()",fontsize=10,color="white",style="solid",shape="box"];257 -> 3845[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3845 -> 291[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 258[label="compare (xwv400 : xwv401) xwv30",fontsize=16,color="burlywood",shape="box"];3846[label="xwv30/xwv300 : xwv301",fontsize=10,color="white",style="solid",shape="box"];258 -> 3846[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3846 -> 292[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3847[label="xwv30/[]",fontsize=10,color="white",style="solid",shape="box"];258 -> 3847[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3847 -> 293[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 259[label="compare [] xwv30",fontsize=16,color="burlywood",shape="box"];3848[label="xwv30/xwv300 : xwv301",fontsize=10,color="white",style="solid",shape="box"];259 -> 3848[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3848 -> 294[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3849[label="xwv30/[]",fontsize=10,color="white",style="solid",shape="box"];259 -> 3849[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3849 -> 295[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 260[label="compare3 xwv40 xwv30",fontsize=16,color="black",shape="box"];260 -> 296[label="",style="solid", color="black", weight=3]; 37.19/18.86 261[label="compare3 xwv40 xwv30",fontsize=16,color="black",shape="box"];261 -> 297[label="",style="solid", color="black", weight=3]; 37.19/18.86 262[label="compare3 xwv40 xwv30",fontsize=16,color="black",shape="box"];262 -> 298[label="",style="solid", color="black", weight=3]; 37.19/18.86 263[label="compare (Integer xwv400) xwv30",fontsize=16,color="burlywood",shape="box"];3850[label="xwv30/Integer xwv300",fontsize=10,color="white",style="solid",shape="box"];263 -> 3850[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3850 -> 299[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 264[label="compare (xwv400 :% xwv401) xwv30",fontsize=16,color="burlywood",shape="box"];3851[label="xwv30/xwv300 :% xwv301",fontsize=10,color="white",style="solid",shape="box"];264 -> 3851[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3851 -> 300[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 102[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];102 -> 148[label="",style="solid", color="black", weight=3]; 37.19/18.86 103[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];103 -> 149[label="",style="solid", color="black", weight=3]; 37.19/18.86 104[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];104 -> 150[label="",style="solid", color="black", weight=3]; 37.19/18.86 105[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];105 -> 151[label="",style="solid", color="black", weight=3]; 37.19/18.86 106[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];106 -> 152[label="",style="solid", color="black", weight=3]; 37.19/18.86 107[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];107 -> 153[label="",style="solid", color="black", weight=3]; 37.19/18.86 108[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];108 -> 154[label="",style="solid", color="black", weight=3]; 37.19/18.86 109[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];109 -> 155[label="",style="solid", color="black", weight=3]; 37.19/18.86 110[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];110 -> 156[label="",style="solid", color="black", weight=3]; 37.19/18.86 111[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];111 -> 157[label="",style="solid", color="black", weight=3]; 37.19/18.86 112[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];112 -> 158[label="",style="solid", color="black", weight=3]; 37.19/18.86 113[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];113 -> 159[label="",style="solid", color="black", weight=3]; 37.19/18.86 114[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];114 -> 160[label="",style="solid", color="black", weight=3]; 37.19/18.86 115[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];115 -> 161[label="",style="solid", color="black", weight=3]; 37.19/18.86 116[label="FiniteMap.delFromFM1 xwv28 xwv29 xwv30 xwv31 xwv32 xwv33 False",fontsize=16,color="black",shape="box"];116 -> 162[label="",style="solid", color="black", weight=3]; 37.19/18.86 117[label="FiniteMap.delFromFM1 xwv28 xwv29 xwv30 xwv31 xwv32 xwv33 True",fontsize=16,color="black",shape="box"];117 -> 163[label="",style="solid", color="black", weight=3]; 37.19/18.86 118[label="xwv18",fontsize=16,color="green",shape="box"];119[label="xwv17",fontsize=16,color="green",shape="box"];120[label="FiniteMap.mkBalBranch6 xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="box"];120 -> 164[label="",style="solid", color="black", weight=3]; 37.19/18.86 280[label="primCmpInt (Pos xwv400) xwv30",fontsize=16,color="burlywood",shape="box"];3852[label="xwv400/Succ xwv4000",fontsize=10,color="white",style="solid",shape="box"];280 -> 3852[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3852 -> 309[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3853[label="xwv400/Zero",fontsize=10,color="white",style="solid",shape="box"];280 -> 3853[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3853 -> 310[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 281[label="primCmpInt (Neg xwv400) xwv30",fontsize=16,color="burlywood",shape="box"];3854[label="xwv400/Succ xwv4000",fontsize=10,color="white",style="solid",shape="box"];281 -> 3854[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3854 -> 311[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3855[label="xwv400/Zero",fontsize=10,color="white",style="solid",shape="box"];281 -> 3855[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3855 -> 312[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 282[label="False",fontsize=16,color="green",shape="box"];283[label="False",fontsize=16,color="green",shape="box"];284[label="True",fontsize=16,color="green",shape="box"];285[label="primCmpChar (Char xwv400) xwv30",fontsize=16,color="burlywood",shape="box"];3856[label="xwv30/Char xwv300",fontsize=10,color="white",style="solid",shape="box"];285 -> 3856[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3856 -> 313[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 286[label="compare2 xwv40 xwv30 (xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3857[label="xwv40/False",fontsize=10,color="white",style="solid",shape="box"];286 -> 3857[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3857 -> 314[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3858[label="xwv40/True",fontsize=10,color="white",style="solid",shape="box"];286 -> 3858[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3858 -> 315[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 287[label="compare2 xwv40 xwv30 (xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3859[label="xwv40/(xwv400,xwv401)",fontsize=10,color="white",style="solid",shape="box"];287 -> 3859[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3859 -> 316[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 288[label="compare2 xwv40 xwv30 (xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3860[label="xwv40/Nothing",fontsize=10,color="white",style="solid",shape="box"];288 -> 3860[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3860 -> 317[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3861[label="xwv40/Just xwv400",fontsize=10,color="white",style="solid",shape="box"];288 -> 3861[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3861 -> 318[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 289[label="primCmpDouble (Double xwv400 xwv401) xwv30",fontsize=16,color="burlywood",shape="box"];3862[label="xwv401/Pos xwv4010",fontsize=10,color="white",style="solid",shape="box"];289 -> 3862[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3862 -> 319[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3863[label="xwv401/Neg xwv4010",fontsize=10,color="white",style="solid",shape="box"];289 -> 3863[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3863 -> 320[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 290[label="primCmpFloat (Float xwv400 xwv401) xwv30",fontsize=16,color="burlywood",shape="box"];3864[label="xwv401/Pos xwv4010",fontsize=10,color="white",style="solid",shape="box"];290 -> 3864[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3864 -> 321[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3865[label="xwv401/Neg xwv4010",fontsize=10,color="white",style="solid",shape="box"];290 -> 3865[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3865 -> 322[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 291[label="compare () ()",fontsize=16,color="black",shape="box"];291 -> 323[label="",style="solid", color="black", weight=3]; 37.19/18.86 292[label="compare (xwv400 : xwv401) (xwv300 : xwv301)",fontsize=16,color="black",shape="box"];292 -> 324[label="",style="solid", color="black", weight=3]; 37.19/18.86 293[label="compare (xwv400 : xwv401) []",fontsize=16,color="black",shape="box"];293 -> 325[label="",style="solid", color="black", weight=3]; 37.19/18.86 294[label="compare [] (xwv300 : xwv301)",fontsize=16,color="black",shape="box"];294 -> 326[label="",style="solid", color="black", weight=3]; 37.19/18.86 295[label="compare [] []",fontsize=16,color="black",shape="box"];295 -> 327[label="",style="solid", color="black", weight=3]; 37.19/18.86 296[label="compare2 xwv40 xwv30 (xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3866[label="xwv40/LT",fontsize=10,color="white",style="solid",shape="box"];296 -> 3866[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3866 -> 328[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3867[label="xwv40/EQ",fontsize=10,color="white",style="solid",shape="box"];296 -> 3867[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3867 -> 329[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3868[label="xwv40/GT",fontsize=10,color="white",style="solid",shape="box"];296 -> 3868[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3868 -> 330[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 297[label="compare2 xwv40 xwv30 (xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3869[label="xwv40/(xwv400,xwv401,xwv402)",fontsize=10,color="white",style="solid",shape="box"];297 -> 3869[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3869 -> 331[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 298[label="compare2 xwv40 xwv30 (xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3870[label="xwv40/Left xwv400",fontsize=10,color="white",style="solid",shape="box"];298 -> 3870[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3870 -> 332[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3871[label="xwv40/Right xwv400",fontsize=10,color="white",style="solid",shape="box"];298 -> 3871[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3871 -> 333[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 299[label="compare (Integer xwv400) (Integer xwv300)",fontsize=16,color="black",shape="box"];299 -> 334[label="",style="solid", color="black", weight=3]; 37.19/18.86 300[label="compare (xwv400 :% xwv401) (xwv300 :% xwv301)",fontsize=16,color="black",shape="box"];300 -> 335[label="",style="solid", color="black", weight=3]; 37.19/18.86 148 -> 265[label="",style="dashed", color="red", weight=0]; 37.19/18.86 148[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];148 -> 266[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 149 -> 265[label="",style="dashed", color="red", weight=0]; 37.19/18.86 149[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];149 -> 267[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 150 -> 265[label="",style="dashed", color="red", weight=0]; 37.19/18.86 150[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];150 -> 268[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 151 -> 265[label="",style="dashed", color="red", weight=0]; 37.19/18.86 151[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];151 -> 269[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 152 -> 265[label="",style="dashed", color="red", weight=0]; 37.19/18.86 152[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];152 -> 270[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 153 -> 265[label="",style="dashed", color="red", weight=0]; 37.19/18.86 153[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];153 -> 271[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 154 -> 265[label="",style="dashed", color="red", weight=0]; 37.19/18.86 154[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];154 -> 272[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 155 -> 265[label="",style="dashed", color="red", weight=0]; 37.19/18.86 155[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];155 -> 273[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 156 -> 265[label="",style="dashed", color="red", weight=0]; 37.19/18.86 156[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];156 -> 274[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 157 -> 265[label="",style="dashed", color="red", weight=0]; 37.19/18.86 157[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];157 -> 275[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 158 -> 265[label="",style="dashed", color="red", weight=0]; 37.19/18.86 158[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];158 -> 276[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 159 -> 265[label="",style="dashed", color="red", weight=0]; 37.19/18.86 159[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];159 -> 277[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 160 -> 265[label="",style="dashed", color="red", weight=0]; 37.19/18.86 160[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];160 -> 278[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 161 -> 265[label="",style="dashed", color="red", weight=0]; 37.19/18.86 161[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];161 -> 279[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 162 -> 301[label="",style="dashed", color="red", weight=0]; 37.19/18.86 162[label="FiniteMap.delFromFM0 xwv28 xwv29 xwv30 xwv31 xwv32 xwv33 (xwv28 == xwv33)",fontsize=16,color="magenta"];162 -> 302[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 162 -> 303[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 162 -> 304[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 162 -> 305[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 162 -> 306[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 162 -> 307[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 162 -> 308[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 163 -> 82[label="",style="dashed", color="red", weight=0]; 37.19/18.86 163[label="FiniteMap.mkBalBranch xwv28 xwv29 (FiniteMap.delFromFM xwv31 xwv33) xwv32",fontsize=16,color="magenta"];163 -> 336[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 163 -> 337[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 163 -> 338[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 163 -> 339[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 164 -> 340[label="",style="dashed", color="red", weight=0]; 37.19/18.86 164[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 (FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35 + FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];164 -> 341[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 309[label="primCmpInt (Pos (Succ xwv4000)) xwv30",fontsize=16,color="burlywood",shape="box"];3872[label="xwv30/Pos xwv300",fontsize=10,color="white",style="solid",shape="box"];309 -> 3872[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3872 -> 342[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3873[label="xwv30/Neg xwv300",fontsize=10,color="white",style="solid",shape="box"];309 -> 3873[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3873 -> 343[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 310[label="primCmpInt (Pos Zero) xwv30",fontsize=16,color="burlywood",shape="box"];3874[label="xwv30/Pos xwv300",fontsize=10,color="white",style="solid",shape="box"];310 -> 3874[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3874 -> 344[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3875[label="xwv30/Neg xwv300",fontsize=10,color="white",style="solid",shape="box"];310 -> 3875[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3875 -> 345[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 311[label="primCmpInt (Neg (Succ xwv4000)) xwv30",fontsize=16,color="burlywood",shape="box"];3876[label="xwv30/Pos xwv300",fontsize=10,color="white",style="solid",shape="box"];311 -> 3876[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3876 -> 346[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3877[label="xwv30/Neg xwv300",fontsize=10,color="white",style="solid",shape="box"];311 -> 3877[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3877 -> 347[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 312[label="primCmpInt (Neg Zero) xwv30",fontsize=16,color="burlywood",shape="box"];3878[label="xwv30/Pos xwv300",fontsize=10,color="white",style="solid",shape="box"];312 -> 3878[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3878 -> 348[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3879[label="xwv30/Neg xwv300",fontsize=10,color="white",style="solid",shape="box"];312 -> 3879[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3879 -> 349[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 313[label="primCmpChar (Char xwv400) (Char xwv300)",fontsize=16,color="black",shape="box"];313 -> 350[label="",style="solid", color="black", weight=3]; 37.19/18.86 314[label="compare2 False xwv30 (False == xwv30)",fontsize=16,color="burlywood",shape="box"];3880[label="xwv30/False",fontsize=10,color="white",style="solid",shape="box"];314 -> 3880[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3880 -> 351[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3881[label="xwv30/True",fontsize=10,color="white",style="solid",shape="box"];314 -> 3881[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3881 -> 352[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 315[label="compare2 True xwv30 (True == xwv30)",fontsize=16,color="burlywood",shape="box"];3882[label="xwv30/False",fontsize=10,color="white",style="solid",shape="box"];315 -> 3882[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3882 -> 353[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3883[label="xwv30/True",fontsize=10,color="white",style="solid",shape="box"];315 -> 3883[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3883 -> 354[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 316[label="compare2 (xwv400,xwv401) xwv30 ((xwv400,xwv401) == xwv30)",fontsize=16,color="burlywood",shape="box"];3884[label="xwv30/(xwv300,xwv301)",fontsize=10,color="white",style="solid",shape="box"];316 -> 3884[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3884 -> 355[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 317[label="compare2 Nothing xwv30 (Nothing == xwv30)",fontsize=16,color="burlywood",shape="box"];3885[label="xwv30/Nothing",fontsize=10,color="white",style="solid",shape="box"];317 -> 3885[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3885 -> 356[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3886[label="xwv30/Just xwv300",fontsize=10,color="white",style="solid",shape="box"];317 -> 3886[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3886 -> 357[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 318[label="compare2 (Just xwv400) xwv30 (Just xwv400 == xwv30)",fontsize=16,color="burlywood",shape="box"];3887[label="xwv30/Nothing",fontsize=10,color="white",style="solid",shape="box"];318 -> 3887[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3887 -> 358[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3888[label="xwv30/Just xwv300",fontsize=10,color="white",style="solid",shape="box"];318 -> 3888[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3888 -> 359[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 319[label="primCmpDouble (Double xwv400 (Pos xwv4010)) xwv30",fontsize=16,color="burlywood",shape="box"];3889[label="xwv30/Double xwv300 xwv301",fontsize=10,color="white",style="solid",shape="box"];319 -> 3889[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3889 -> 360[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 320[label="primCmpDouble (Double xwv400 (Neg xwv4010)) xwv30",fontsize=16,color="burlywood",shape="box"];3890[label="xwv30/Double xwv300 xwv301",fontsize=10,color="white",style="solid",shape="box"];320 -> 3890[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3890 -> 361[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 321[label="primCmpFloat (Float xwv400 (Pos xwv4010)) xwv30",fontsize=16,color="burlywood",shape="box"];3891[label="xwv30/Float xwv300 xwv301",fontsize=10,color="white",style="solid",shape="box"];321 -> 3891[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3891 -> 362[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 322[label="primCmpFloat (Float xwv400 (Neg xwv4010)) xwv30",fontsize=16,color="burlywood",shape="box"];3892[label="xwv30/Float xwv300 xwv301",fontsize=10,color="white",style="solid",shape="box"];322 -> 3892[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3892 -> 363[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 323[label="EQ",fontsize=16,color="green",shape="box"];324 -> 364[label="",style="dashed", color="red", weight=0]; 37.19/18.86 324[label="primCompAux xwv400 xwv300 (compare xwv401 xwv301)",fontsize=16,color="magenta"];324 -> 365[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 325[label="GT",fontsize=16,color="green",shape="box"];326[label="LT",fontsize=16,color="green",shape="box"];327[label="EQ",fontsize=16,color="green",shape="box"];328[label="compare2 LT xwv30 (LT == xwv30)",fontsize=16,color="burlywood",shape="box"];3893[label="xwv30/LT",fontsize=10,color="white",style="solid",shape="box"];328 -> 3893[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3893 -> 366[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3894[label="xwv30/EQ",fontsize=10,color="white",style="solid",shape="box"];328 -> 3894[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3894 -> 367[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3895[label="xwv30/GT",fontsize=10,color="white",style="solid",shape="box"];328 -> 3895[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3895 -> 368[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 329[label="compare2 EQ xwv30 (EQ == xwv30)",fontsize=16,color="burlywood",shape="box"];3896[label="xwv30/LT",fontsize=10,color="white",style="solid",shape="box"];329 -> 3896[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3896 -> 369[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3897[label="xwv30/EQ",fontsize=10,color="white",style="solid",shape="box"];329 -> 3897[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3897 -> 370[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3898[label="xwv30/GT",fontsize=10,color="white",style="solid",shape="box"];329 -> 3898[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3898 -> 371[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 330[label="compare2 GT xwv30 (GT == xwv30)",fontsize=16,color="burlywood",shape="box"];3899[label="xwv30/LT",fontsize=10,color="white",style="solid",shape="box"];330 -> 3899[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3899 -> 372[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3900[label="xwv30/EQ",fontsize=10,color="white",style="solid",shape="box"];330 -> 3900[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3900 -> 373[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3901[label="xwv30/GT",fontsize=10,color="white",style="solid",shape="box"];330 -> 3901[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3901 -> 374[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 331[label="compare2 (xwv400,xwv401,xwv402) xwv30 ((xwv400,xwv401,xwv402) == xwv30)",fontsize=16,color="burlywood",shape="box"];3902[label="xwv30/(xwv300,xwv301,xwv302)",fontsize=10,color="white",style="solid",shape="box"];331 -> 3902[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3902 -> 375[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 332[label="compare2 (Left xwv400) xwv30 (Left xwv400 == xwv30)",fontsize=16,color="burlywood",shape="box"];3903[label="xwv30/Left xwv300",fontsize=10,color="white",style="solid",shape="box"];332 -> 3903[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3903 -> 376[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3904[label="xwv30/Right xwv300",fontsize=10,color="white",style="solid",shape="box"];332 -> 3904[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3904 -> 377[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 333[label="compare2 (Right xwv400) xwv30 (Right xwv400 == xwv30)",fontsize=16,color="burlywood",shape="box"];3905[label="xwv30/Left xwv300",fontsize=10,color="white",style="solid",shape="box"];333 -> 3905[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3905 -> 378[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3906[label="xwv30/Right xwv300",fontsize=10,color="white",style="solid",shape="box"];333 -> 3906[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3906 -> 379[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 334 -> 247[label="",style="dashed", color="red", weight=0]; 37.19/18.86 334[label="primCmpInt xwv400 xwv300",fontsize=16,color="magenta"];334 -> 380[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 334 -> 381[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 335[label="compare (xwv400 * xwv301) (xwv300 * xwv401)",fontsize=16,color="blue",shape="box"];3907[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];335 -> 3907[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3907 -> 382[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3908[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];335 -> 3908[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3908 -> 383[label="",style="solid", color="blue", weight=3]; 37.19/18.86 266 -> 208[label="",style="dashed", color="red", weight=0]; 37.19/18.86 266[label="compare xwv18 xwv13",fontsize=16,color="magenta"];266 -> 384[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 266 -> 385[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 265[label="xwv39 == LT",fontsize=16,color="burlywood",shape="triangle"];3909[label="xwv39/LT",fontsize=10,color="white",style="solid",shape="box"];265 -> 3909[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3909 -> 386[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3910[label="xwv39/EQ",fontsize=10,color="white",style="solid",shape="box"];265 -> 3910[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3910 -> 387[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3911[label="xwv39/GT",fontsize=10,color="white",style="solid",shape="box"];265 -> 3911[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3911 -> 388[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 267 -> 209[label="",style="dashed", color="red", weight=0]; 37.19/18.86 267[label="compare xwv18 xwv13",fontsize=16,color="magenta"];267 -> 389[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 267 -> 390[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 268 -> 210[label="",style="dashed", color="red", weight=0]; 37.19/18.86 268[label="compare xwv18 xwv13",fontsize=16,color="magenta"];268 -> 391[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 268 -> 392[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 269 -> 211[label="",style="dashed", color="red", weight=0]; 37.19/18.86 269[label="compare xwv18 xwv13",fontsize=16,color="magenta"];269 -> 393[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 269 -> 394[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 270 -> 212[label="",style="dashed", color="red", weight=0]; 37.19/18.86 270[label="compare xwv18 xwv13",fontsize=16,color="magenta"];270 -> 395[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 270 -> 396[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 271 -> 213[label="",style="dashed", color="red", weight=0]; 37.19/18.86 271[label="compare xwv18 xwv13",fontsize=16,color="magenta"];271 -> 397[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 271 -> 398[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 272 -> 214[label="",style="dashed", color="red", weight=0]; 37.19/18.86 272[label="compare xwv18 xwv13",fontsize=16,color="magenta"];272 -> 399[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 272 -> 400[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 273 -> 215[label="",style="dashed", color="red", weight=0]; 37.19/18.86 273[label="compare xwv18 xwv13",fontsize=16,color="magenta"];273 -> 401[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 273 -> 402[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 274 -> 216[label="",style="dashed", color="red", weight=0]; 37.19/18.86 274[label="compare xwv18 xwv13",fontsize=16,color="magenta"];274 -> 403[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 274 -> 404[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 275 -> 217[label="",style="dashed", color="red", weight=0]; 37.19/18.86 275[label="compare xwv18 xwv13",fontsize=16,color="magenta"];275 -> 405[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 275 -> 406[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 276 -> 218[label="",style="dashed", color="red", weight=0]; 37.19/18.86 276[label="compare xwv18 xwv13",fontsize=16,color="magenta"];276 -> 407[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 276 -> 408[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 277 -> 219[label="",style="dashed", color="red", weight=0]; 37.19/18.86 277[label="compare xwv18 xwv13",fontsize=16,color="magenta"];277 -> 409[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 277 -> 410[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 278 -> 220[label="",style="dashed", color="red", weight=0]; 37.19/18.86 278[label="compare xwv18 xwv13",fontsize=16,color="magenta"];278 -> 411[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 278 -> 412[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 279 -> 221[label="",style="dashed", color="red", weight=0]; 37.19/18.86 279[label="compare xwv18 xwv13",fontsize=16,color="magenta"];279 -> 413[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 279 -> 414[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 302[label="xwv31",fontsize=16,color="green",shape="box"];303[label="xwv28 == xwv33",fontsize=16,color="blue",shape="box"];3912[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 3912[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3912 -> 415[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3913[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 3913[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3913 -> 416[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3914[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 3914[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3914 -> 417[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3915[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 3915[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3915 -> 418[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3916[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 3916[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3916 -> 419[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3917[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 3917[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3917 -> 420[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3918[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 3918[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3918 -> 421[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3919[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 3919[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3919 -> 422[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3920[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 3920[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3920 -> 423[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3921[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 3921[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3921 -> 424[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3922[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 3922[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3922 -> 425[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3923[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 3923[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3923 -> 426[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3924[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 3924[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3924 -> 427[label="",style="solid", color="blue", weight=3]; 37.19/18.86 3925[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 3925[label="",style="solid", color="blue", weight=9]; 37.19/18.86 3925 -> 428[label="",style="solid", color="blue", weight=3]; 37.19/18.86 304[label="xwv29",fontsize=16,color="green",shape="box"];305[label="xwv30",fontsize=16,color="green",shape="box"];306[label="xwv28",fontsize=16,color="green",shape="box"];307[label="xwv33",fontsize=16,color="green",shape="box"];308[label="xwv32",fontsize=16,color="green",shape="box"];301[label="FiniteMap.delFromFM0 xwv48 xwv49 xwv50 xwv51 xwv52 xwv53 xwv54",fontsize=16,color="burlywood",shape="triangle"];3926[label="xwv54/False",fontsize=10,color="white",style="solid",shape="box"];301 -> 3926[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3926 -> 429[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3927[label="xwv54/True",fontsize=10,color="white",style="solid",shape="box"];301 -> 3927[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3927 -> 430[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 336[label="xwv29",fontsize=16,color="green",shape="box"];337[label="xwv28",fontsize=16,color="green",shape="box"];338 -> 11[label="",style="dashed", color="red", weight=0]; 37.19/18.86 338[label="FiniteMap.delFromFM xwv31 xwv33",fontsize=16,color="magenta"];338 -> 431[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 338 -> 432[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 339[label="xwv32",fontsize=16,color="green",shape="box"];341 -> 102[label="",style="dashed", color="red", weight=0]; 37.19/18.86 341[label="FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35 + FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];341 -> 433[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 341 -> 434[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 340[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 xwv55",fontsize=16,color="burlywood",shape="triangle"];3928[label="xwv55/False",fontsize=10,color="white",style="solid",shape="box"];340 -> 3928[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3928 -> 435[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3929[label="xwv55/True",fontsize=10,color="white",style="solid",shape="box"];340 -> 3929[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3929 -> 436[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 342[label="primCmpInt (Pos (Succ xwv4000)) (Pos xwv300)",fontsize=16,color="black",shape="box"];342 -> 437[label="",style="solid", color="black", weight=3]; 37.19/18.86 343[label="primCmpInt (Pos (Succ xwv4000)) (Neg xwv300)",fontsize=16,color="black",shape="box"];343 -> 438[label="",style="solid", color="black", weight=3]; 37.19/18.86 344[label="primCmpInt (Pos Zero) (Pos xwv300)",fontsize=16,color="burlywood",shape="box"];3930[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];344 -> 3930[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3930 -> 439[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3931[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];344 -> 3931[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3931 -> 440[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 345[label="primCmpInt (Pos Zero) (Neg xwv300)",fontsize=16,color="burlywood",shape="box"];3932[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];345 -> 3932[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3932 -> 441[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3933[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];345 -> 3933[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3933 -> 442[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 346[label="primCmpInt (Neg (Succ xwv4000)) (Pos xwv300)",fontsize=16,color="black",shape="box"];346 -> 443[label="",style="solid", color="black", weight=3]; 37.19/18.86 347[label="primCmpInt (Neg (Succ xwv4000)) (Neg xwv300)",fontsize=16,color="black",shape="box"];347 -> 444[label="",style="solid", color="black", weight=3]; 37.19/18.86 348[label="primCmpInt (Neg Zero) (Pos xwv300)",fontsize=16,color="burlywood",shape="box"];3934[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];348 -> 3934[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3934 -> 445[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3935[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];348 -> 3935[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3935 -> 446[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 349[label="primCmpInt (Neg Zero) (Neg xwv300)",fontsize=16,color="burlywood",shape="box"];3936[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];349 -> 3936[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3936 -> 447[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3937[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];349 -> 3937[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3937 -> 448[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 350[label="primCmpNat xwv400 xwv300",fontsize=16,color="burlywood",shape="triangle"];3938[label="xwv400/Succ xwv4000",fontsize=10,color="white",style="solid",shape="box"];350 -> 3938[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3938 -> 449[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3939[label="xwv400/Zero",fontsize=10,color="white",style="solid",shape="box"];350 -> 3939[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3939 -> 450[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 351[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];351 -> 451[label="",style="solid", color="black", weight=3]; 37.19/18.86 352[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];352 -> 452[label="",style="solid", color="black", weight=3]; 37.19/18.86 353[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];353 -> 453[label="",style="solid", color="black", weight=3]; 37.19/18.86 354[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];354 -> 454[label="",style="solid", color="black", weight=3]; 37.19/18.86 355[label="compare2 (xwv400,xwv401) (xwv300,xwv301) ((xwv400,xwv401) == (xwv300,xwv301))",fontsize=16,color="black",shape="box"];355 -> 455[label="",style="solid", color="black", weight=3]; 37.19/18.86 356[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];356 -> 456[label="",style="solid", color="black", weight=3]; 37.19/18.86 357[label="compare2 Nothing (Just xwv300) (Nothing == Just xwv300)",fontsize=16,color="black",shape="box"];357 -> 457[label="",style="solid", color="black", weight=3]; 37.19/18.86 358[label="compare2 (Just xwv400) Nothing (Just xwv400 == Nothing)",fontsize=16,color="black",shape="box"];358 -> 458[label="",style="solid", color="black", weight=3]; 37.19/18.86 359[label="compare2 (Just xwv400) (Just xwv300) (Just xwv400 == Just xwv300)",fontsize=16,color="black",shape="box"];359 -> 459[label="",style="solid", color="black", weight=3]; 37.19/18.86 360[label="primCmpDouble (Double xwv400 (Pos xwv4010)) (Double xwv300 xwv301)",fontsize=16,color="burlywood",shape="box"];3940[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];360 -> 3940[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3940 -> 460[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3941[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];360 -> 3941[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3941 -> 461[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 361[label="primCmpDouble (Double xwv400 (Neg xwv4010)) (Double xwv300 xwv301)",fontsize=16,color="burlywood",shape="box"];3942[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];361 -> 3942[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3942 -> 462[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3943[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];361 -> 3943[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3943 -> 463[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 362[label="primCmpFloat (Float xwv400 (Pos xwv4010)) (Float xwv300 xwv301)",fontsize=16,color="burlywood",shape="box"];3944[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];362 -> 3944[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3944 -> 464[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3945[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];362 -> 3945[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3945 -> 465[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 363[label="primCmpFloat (Float xwv400 (Neg xwv4010)) (Float xwv300 xwv301)",fontsize=16,color="burlywood",shape="box"];3946[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];363 -> 3946[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3946 -> 466[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3947[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];363 -> 3947[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3947 -> 467[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 365 -> 216[label="",style="dashed", color="red", weight=0]; 37.19/18.86 365[label="compare xwv401 xwv301",fontsize=16,color="magenta"];365 -> 468[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 365 -> 469[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 364[label="primCompAux xwv400 xwv300 xwv56",fontsize=16,color="black",shape="triangle"];364 -> 470[label="",style="solid", color="black", weight=3]; 37.19/18.86 366[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];366 -> 471[label="",style="solid", color="black", weight=3]; 37.19/18.86 367[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];367 -> 472[label="",style="solid", color="black", weight=3]; 37.19/18.86 368[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];368 -> 473[label="",style="solid", color="black", weight=3]; 37.19/18.86 369[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];369 -> 474[label="",style="solid", color="black", weight=3]; 37.19/18.86 370[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];370 -> 475[label="",style="solid", color="black", weight=3]; 37.19/18.86 371[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];371 -> 476[label="",style="solid", color="black", weight=3]; 37.19/18.86 372[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];372 -> 477[label="",style="solid", color="black", weight=3]; 37.19/18.86 373[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];373 -> 478[label="",style="solid", color="black", weight=3]; 37.19/18.86 374[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];374 -> 479[label="",style="solid", color="black", weight=3]; 37.19/18.86 375[label="compare2 (xwv400,xwv401,xwv402) (xwv300,xwv301,xwv302) ((xwv400,xwv401,xwv402) == (xwv300,xwv301,xwv302))",fontsize=16,color="black",shape="box"];375 -> 480[label="",style="solid", color="black", weight=3]; 37.19/18.86 376[label="compare2 (Left xwv400) (Left xwv300) (Left xwv400 == Left xwv300)",fontsize=16,color="black",shape="box"];376 -> 481[label="",style="solid", color="black", weight=3]; 37.19/18.86 377[label="compare2 (Left xwv400) (Right xwv300) (Left xwv400 == Right xwv300)",fontsize=16,color="black",shape="box"];377 -> 482[label="",style="solid", color="black", weight=3]; 37.19/18.86 378[label="compare2 (Right xwv400) (Left xwv300) (Right xwv400 == Left xwv300)",fontsize=16,color="black",shape="box"];378 -> 483[label="",style="solid", color="black", weight=3]; 37.19/18.86 379[label="compare2 (Right xwv400) (Right xwv300) (Right xwv400 == Right xwv300)",fontsize=16,color="black",shape="box"];379 -> 484[label="",style="solid", color="black", weight=3]; 37.19/18.86 380[label="xwv300",fontsize=16,color="green",shape="box"];381[label="xwv400",fontsize=16,color="green",shape="box"];382 -> 208[label="",style="dashed", color="red", weight=0]; 37.19/18.86 382[label="compare (xwv400 * xwv301) (xwv300 * xwv401)",fontsize=16,color="magenta"];382 -> 485[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 382 -> 486[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 383 -> 220[label="",style="dashed", color="red", weight=0]; 37.19/18.86 383[label="compare (xwv400 * xwv301) (xwv300 * xwv401)",fontsize=16,color="magenta"];383 -> 487[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 383 -> 488[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 384[label="xwv13",fontsize=16,color="green",shape="box"];385[label="xwv18",fontsize=16,color="green",shape="box"];386[label="LT == LT",fontsize=16,color="black",shape="box"];386 -> 489[label="",style="solid", color="black", weight=3]; 37.19/18.86 387[label="EQ == LT",fontsize=16,color="black",shape="box"];387 -> 490[label="",style="solid", color="black", weight=3]; 37.19/18.86 388[label="GT == LT",fontsize=16,color="black",shape="box"];388 -> 491[label="",style="solid", color="black", weight=3]; 37.19/18.86 389[label="xwv13",fontsize=16,color="green",shape="box"];390[label="xwv18",fontsize=16,color="green",shape="box"];391[label="xwv13",fontsize=16,color="green",shape="box"];392[label="xwv18",fontsize=16,color="green",shape="box"];393[label="xwv13",fontsize=16,color="green",shape="box"];394[label="xwv18",fontsize=16,color="green",shape="box"];395[label="xwv13",fontsize=16,color="green",shape="box"];396[label="xwv18",fontsize=16,color="green",shape="box"];397[label="xwv13",fontsize=16,color="green",shape="box"];398[label="xwv18",fontsize=16,color="green",shape="box"];399[label="xwv13",fontsize=16,color="green",shape="box"];400[label="xwv18",fontsize=16,color="green",shape="box"];401[label="xwv13",fontsize=16,color="green",shape="box"];402[label="xwv18",fontsize=16,color="green",shape="box"];403[label="xwv13",fontsize=16,color="green",shape="box"];404[label="xwv18",fontsize=16,color="green",shape="box"];405[label="xwv13",fontsize=16,color="green",shape="box"];406[label="xwv18",fontsize=16,color="green",shape="box"];407[label="xwv13",fontsize=16,color="green",shape="box"];408[label="xwv18",fontsize=16,color="green",shape="box"];409[label="xwv13",fontsize=16,color="green",shape="box"];410[label="xwv18",fontsize=16,color="green",shape="box"];411[label="xwv13",fontsize=16,color="green",shape="box"];412[label="xwv18",fontsize=16,color="green",shape="box"];413[label="xwv13",fontsize=16,color="green",shape="box"];414[label="xwv18",fontsize=16,color="green",shape="box"];415[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3948[label="xwv28/False",fontsize=10,color="white",style="solid",shape="box"];415 -> 3948[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3948 -> 492[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3949[label="xwv28/True",fontsize=10,color="white",style="solid",shape="box"];415 -> 3949[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3949 -> 493[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 416[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3950[label="xwv28/LT",fontsize=10,color="white",style="solid",shape="box"];416 -> 3950[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3950 -> 494[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3951[label="xwv28/EQ",fontsize=10,color="white",style="solid",shape="box"];416 -> 3951[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3951 -> 495[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3952[label="xwv28/GT",fontsize=10,color="white",style="solid",shape="box"];416 -> 3952[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3952 -> 496[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 417[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3953[label="xwv28/Nothing",fontsize=10,color="white",style="solid",shape="box"];417 -> 3953[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3953 -> 497[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3954[label="xwv28/Just xwv280",fontsize=10,color="white",style="solid",shape="box"];417 -> 3954[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3954 -> 498[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 418[label="xwv28 == xwv33",fontsize=16,color="black",shape="triangle"];418 -> 499[label="",style="solid", color="black", weight=3]; 37.19/18.86 419[label="xwv28 == xwv33",fontsize=16,color="black",shape="triangle"];419 -> 500[label="",style="solid", color="black", weight=3]; 37.19/18.86 420[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3955[label="xwv28/Left xwv280",fontsize=10,color="white",style="solid",shape="box"];420 -> 3955[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3955 -> 501[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3956[label="xwv28/Right xwv280",fontsize=10,color="white",style="solid",shape="box"];420 -> 3956[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3956 -> 502[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 421[label="xwv28 == xwv33",fontsize=16,color="black",shape="triangle"];421 -> 503[label="",style="solid", color="black", weight=3]; 37.19/18.86 422[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3957[label="xwv28/(xwv280,xwv281)",fontsize=10,color="white",style="solid",shape="box"];422 -> 3957[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3957 -> 504[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 423[label="xwv28 == xwv33",fontsize=16,color="black",shape="triangle"];423 -> 505[label="",style="solid", color="black", weight=3]; 37.19/18.86 424[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3958[label="xwv28/xwv280 :% xwv281",fontsize=10,color="white",style="solid",shape="box"];424 -> 3958[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3958 -> 506[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 425[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3959[label="xwv28/()",fontsize=10,color="white",style="solid",shape="box"];425 -> 3959[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3959 -> 507[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 426[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3960[label="xwv28/(xwv280,xwv281,xwv282)",fontsize=10,color="white",style="solid",shape="box"];426 -> 3960[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3960 -> 508[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 427[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3961[label="xwv28/Integer xwv280",fontsize=10,color="white",style="solid",shape="box"];427 -> 3961[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3961 -> 509[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 428[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3962[label="xwv28/xwv280 : xwv281",fontsize=10,color="white",style="solid",shape="box"];428 -> 3962[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3962 -> 510[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3963[label="xwv28/[]",fontsize=10,color="white",style="solid",shape="box"];428 -> 3963[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3963 -> 511[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 429[label="FiniteMap.delFromFM0 xwv48 xwv49 xwv50 xwv51 xwv52 xwv53 False",fontsize=16,color="black",shape="box"];429 -> 512[label="",style="solid", color="black", weight=3]; 37.19/18.86 430[label="FiniteMap.delFromFM0 xwv48 xwv49 xwv50 xwv51 xwv52 xwv53 True",fontsize=16,color="black",shape="box"];430 -> 513[label="",style="solid", color="black", weight=3]; 37.19/18.86 431[label="xwv33",fontsize=16,color="green",shape="box"];432[label="xwv31",fontsize=16,color="green",shape="box"];433[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];434[label="FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35 + FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35",fontsize=16,color="black",shape="box"];434 -> 514[label="",style="solid", color="black", weight=3]; 37.19/18.86 435[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 False",fontsize=16,color="black",shape="box"];435 -> 515[label="",style="solid", color="black", weight=3]; 37.19/18.86 436[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 True",fontsize=16,color="black",shape="box"];436 -> 516[label="",style="solid", color="black", weight=3]; 37.19/18.86 437 -> 350[label="",style="dashed", color="red", weight=0]; 37.19/18.86 437[label="primCmpNat (Succ xwv4000) xwv300",fontsize=16,color="magenta"];437 -> 517[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 437 -> 518[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 438[label="GT",fontsize=16,color="green",shape="box"];439[label="primCmpInt (Pos Zero) (Pos (Succ xwv3000))",fontsize=16,color="black",shape="box"];439 -> 519[label="",style="solid", color="black", weight=3]; 37.19/18.86 440[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];440 -> 520[label="",style="solid", color="black", weight=3]; 37.19/18.86 441[label="primCmpInt (Pos Zero) (Neg (Succ xwv3000))",fontsize=16,color="black",shape="box"];441 -> 521[label="",style="solid", color="black", weight=3]; 37.19/18.86 442[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];442 -> 522[label="",style="solid", color="black", weight=3]; 37.19/18.86 443[label="LT",fontsize=16,color="green",shape="box"];444 -> 350[label="",style="dashed", color="red", weight=0]; 37.19/18.86 444[label="primCmpNat xwv300 (Succ xwv4000)",fontsize=16,color="magenta"];444 -> 523[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 444 -> 524[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 445[label="primCmpInt (Neg Zero) (Pos (Succ xwv3000))",fontsize=16,color="black",shape="box"];445 -> 525[label="",style="solid", color="black", weight=3]; 37.19/18.86 446[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];446 -> 526[label="",style="solid", color="black", weight=3]; 37.19/18.86 447[label="primCmpInt (Neg Zero) (Neg (Succ xwv3000))",fontsize=16,color="black",shape="box"];447 -> 527[label="",style="solid", color="black", weight=3]; 37.19/18.86 448[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];448 -> 528[label="",style="solid", color="black", weight=3]; 37.19/18.86 449[label="primCmpNat (Succ xwv4000) xwv300",fontsize=16,color="burlywood",shape="box"];3964[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];449 -> 3964[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3964 -> 529[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3965[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];449 -> 3965[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3965 -> 530[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 450[label="primCmpNat Zero xwv300",fontsize=16,color="burlywood",shape="box"];3966[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];450 -> 3966[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3966 -> 531[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3967[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];450 -> 3967[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3967 -> 532[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 451[label="compare2 False False True",fontsize=16,color="black",shape="box"];451 -> 533[label="",style="solid", color="black", weight=3]; 37.19/18.86 452[label="compare2 False True False",fontsize=16,color="black",shape="box"];452 -> 534[label="",style="solid", color="black", weight=3]; 37.19/18.86 453[label="compare2 True False False",fontsize=16,color="black",shape="box"];453 -> 535[label="",style="solid", color="black", weight=3]; 37.19/18.86 454[label="compare2 True True True",fontsize=16,color="black",shape="box"];454 -> 536[label="",style="solid", color="black", weight=3]; 37.19/18.86 455 -> 1139[label="",style="dashed", color="red", weight=0]; 37.19/18.86 455[label="compare2 (xwv400,xwv401) (xwv300,xwv301) (xwv400 == xwv300 && xwv401 == xwv301)",fontsize=16,color="magenta"];455 -> 1140[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 455 -> 1141[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 455 -> 1142[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 455 -> 1143[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 455 -> 1144[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 456[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];456 -> 543[label="",style="solid", color="black", weight=3]; 37.19/18.86 457[label="compare2 Nothing (Just xwv300) False",fontsize=16,color="black",shape="box"];457 -> 544[label="",style="solid", color="black", weight=3]; 37.19/18.86 458[label="compare2 (Just xwv400) Nothing False",fontsize=16,color="black",shape="box"];458 -> 545[label="",style="solid", color="black", weight=3]; 37.19/18.86 459 -> 546[label="",style="dashed", color="red", weight=0]; 37.19/18.86 459[label="compare2 (Just xwv400) (Just xwv300) (xwv400 == xwv300)",fontsize=16,color="magenta"];459 -> 547[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 459 -> 548[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 459 -> 549[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 460[label="primCmpDouble (Double xwv400 (Pos xwv4010)) (Double xwv300 (Pos xwv3010))",fontsize=16,color="black",shape="box"];460 -> 550[label="",style="solid", color="black", weight=3]; 37.19/18.86 461[label="primCmpDouble (Double xwv400 (Pos xwv4010)) (Double xwv300 (Neg xwv3010))",fontsize=16,color="black",shape="box"];461 -> 551[label="",style="solid", color="black", weight=3]; 37.19/18.86 462[label="primCmpDouble (Double xwv400 (Neg xwv4010)) (Double xwv300 (Pos xwv3010))",fontsize=16,color="black",shape="box"];462 -> 552[label="",style="solid", color="black", weight=3]; 37.19/18.86 463[label="primCmpDouble (Double xwv400 (Neg xwv4010)) (Double xwv300 (Neg xwv3010))",fontsize=16,color="black",shape="box"];463 -> 553[label="",style="solid", color="black", weight=3]; 37.19/18.86 464[label="primCmpFloat (Float xwv400 (Pos xwv4010)) (Float xwv300 (Pos xwv3010))",fontsize=16,color="black",shape="box"];464 -> 554[label="",style="solid", color="black", weight=3]; 37.19/18.86 465[label="primCmpFloat (Float xwv400 (Pos xwv4010)) (Float xwv300 (Neg xwv3010))",fontsize=16,color="black",shape="box"];465 -> 555[label="",style="solid", color="black", weight=3]; 37.19/18.86 466[label="primCmpFloat (Float xwv400 (Neg xwv4010)) (Float xwv300 (Pos xwv3010))",fontsize=16,color="black",shape="box"];466 -> 556[label="",style="solid", color="black", weight=3]; 37.19/18.86 467[label="primCmpFloat (Float xwv400 (Neg xwv4010)) (Float xwv300 (Neg xwv3010))",fontsize=16,color="black",shape="box"];467 -> 557[label="",style="solid", color="black", weight=3]; 37.19/18.86 468[label="xwv301",fontsize=16,color="green",shape="box"];469[label="xwv401",fontsize=16,color="green",shape="box"];470 -> 558[label="",style="dashed", color="red", weight=0]; 37.19/18.86 470[label="primCompAux0 xwv56 (compare xwv400 xwv300)",fontsize=16,color="magenta"];470 -> 559[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 470 -> 560[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 471[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];471 -> 561[label="",style="solid", color="black", weight=3]; 37.19/18.86 472[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];472 -> 562[label="",style="solid", color="black", weight=3]; 37.19/18.86 473[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];473 -> 563[label="",style="solid", color="black", weight=3]; 37.19/18.86 474[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];474 -> 564[label="",style="solid", color="black", weight=3]; 37.19/18.86 475[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];475 -> 565[label="",style="solid", color="black", weight=3]; 37.19/18.86 476[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];476 -> 566[label="",style="solid", color="black", weight=3]; 37.19/18.86 477[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];477 -> 567[label="",style="solid", color="black", weight=3]; 37.19/18.86 478[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];478 -> 568[label="",style="solid", color="black", weight=3]; 37.19/18.86 479[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];479 -> 569[label="",style="solid", color="black", weight=3]; 37.19/18.86 480 -> 1171[label="",style="dashed", color="red", weight=0]; 37.19/18.86 480[label="compare2 (xwv400,xwv401,xwv402) (xwv300,xwv301,xwv302) (xwv400 == xwv300 && xwv401 == xwv301 && xwv402 == xwv302)",fontsize=16,color="magenta"];480 -> 1172[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 480 -> 1173[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 480 -> 1174[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 480 -> 1175[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 480 -> 1176[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 480 -> 1177[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 480 -> 1178[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 481 -> 578[label="",style="dashed", color="red", weight=0]; 37.19/18.86 481[label="compare2 (Left xwv400) (Left xwv300) (xwv400 == xwv300)",fontsize=16,color="magenta"];481 -> 579[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 481 -> 580[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 481 -> 581[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 482[label="compare2 (Left xwv400) (Right xwv300) False",fontsize=16,color="black",shape="box"];482 -> 582[label="",style="solid", color="black", weight=3]; 37.19/18.86 483[label="compare2 (Right xwv400) (Left xwv300) False",fontsize=16,color="black",shape="box"];483 -> 583[label="",style="solid", color="black", weight=3]; 37.19/18.86 484 -> 584[label="",style="dashed", color="red", weight=0]; 37.19/18.86 484[label="compare2 (Right xwv400) (Right xwv300) (xwv400 == xwv300)",fontsize=16,color="magenta"];484 -> 585[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 484 -> 586[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 484 -> 587[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 485[label="xwv300 * xwv401",fontsize=16,color="black",shape="triangle"];485 -> 588[label="",style="solid", color="black", weight=3]; 37.19/18.86 486 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.86 486[label="xwv400 * xwv301",fontsize=16,color="magenta"];486 -> 589[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 486 -> 590[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 487[label="xwv300 * xwv401",fontsize=16,color="burlywood",shape="triangle"];3968[label="xwv300/Integer xwv3000",fontsize=10,color="white",style="solid",shape="box"];487 -> 3968[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3968 -> 591[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 488 -> 487[label="",style="dashed", color="red", weight=0]; 37.19/18.86 488[label="xwv400 * xwv301",fontsize=16,color="magenta"];488 -> 592[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 488 -> 593[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 489[label="True",fontsize=16,color="green",shape="box"];490[label="False",fontsize=16,color="green",shape="box"];491[label="False",fontsize=16,color="green",shape="box"];492[label="False == xwv33",fontsize=16,color="burlywood",shape="box"];3969[label="xwv33/False",fontsize=10,color="white",style="solid",shape="box"];492 -> 3969[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3969 -> 594[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3970[label="xwv33/True",fontsize=10,color="white",style="solid",shape="box"];492 -> 3970[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3970 -> 595[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 493[label="True == xwv33",fontsize=16,color="burlywood",shape="box"];3971[label="xwv33/False",fontsize=10,color="white",style="solid",shape="box"];493 -> 3971[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3971 -> 596[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3972[label="xwv33/True",fontsize=10,color="white",style="solid",shape="box"];493 -> 3972[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3972 -> 597[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 494[label="LT == xwv33",fontsize=16,color="burlywood",shape="box"];3973[label="xwv33/LT",fontsize=10,color="white",style="solid",shape="box"];494 -> 3973[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3973 -> 598[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3974[label="xwv33/EQ",fontsize=10,color="white",style="solid",shape="box"];494 -> 3974[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3974 -> 599[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3975[label="xwv33/GT",fontsize=10,color="white",style="solid",shape="box"];494 -> 3975[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3975 -> 600[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 495[label="EQ == xwv33",fontsize=16,color="burlywood",shape="box"];3976[label="xwv33/LT",fontsize=10,color="white",style="solid",shape="box"];495 -> 3976[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3976 -> 601[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3977[label="xwv33/EQ",fontsize=10,color="white",style="solid",shape="box"];495 -> 3977[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3977 -> 602[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3978[label="xwv33/GT",fontsize=10,color="white",style="solid",shape="box"];495 -> 3978[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3978 -> 603[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 496[label="GT == xwv33",fontsize=16,color="burlywood",shape="box"];3979[label="xwv33/LT",fontsize=10,color="white",style="solid",shape="box"];496 -> 3979[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3979 -> 604[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3980[label="xwv33/EQ",fontsize=10,color="white",style="solid",shape="box"];496 -> 3980[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3980 -> 605[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3981[label="xwv33/GT",fontsize=10,color="white",style="solid",shape="box"];496 -> 3981[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3981 -> 606[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 497[label="Nothing == xwv33",fontsize=16,color="burlywood",shape="box"];3982[label="xwv33/Nothing",fontsize=10,color="white",style="solid",shape="box"];497 -> 3982[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3982 -> 607[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3983[label="xwv33/Just xwv330",fontsize=10,color="white",style="solid",shape="box"];497 -> 3983[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3983 -> 608[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 498[label="Just xwv280 == xwv33",fontsize=16,color="burlywood",shape="box"];3984[label="xwv33/Nothing",fontsize=10,color="white",style="solid",shape="box"];498 -> 3984[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3984 -> 609[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3985[label="xwv33/Just xwv330",fontsize=10,color="white",style="solid",shape="box"];498 -> 3985[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3985 -> 610[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 499[label="primEqDouble xwv28 xwv33",fontsize=16,color="burlywood",shape="box"];3986[label="xwv28/Double xwv280 xwv281",fontsize=10,color="white",style="solid",shape="box"];499 -> 3986[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3986 -> 611[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 500[label="primEqInt xwv28 xwv33",fontsize=16,color="burlywood",shape="triangle"];3987[label="xwv28/Pos xwv280",fontsize=10,color="white",style="solid",shape="box"];500 -> 3987[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3987 -> 612[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3988[label="xwv28/Neg xwv280",fontsize=10,color="white",style="solid",shape="box"];500 -> 3988[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3988 -> 613[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 501[label="Left xwv280 == xwv33",fontsize=16,color="burlywood",shape="box"];3989[label="xwv33/Left xwv330",fontsize=10,color="white",style="solid",shape="box"];501 -> 3989[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3989 -> 614[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3990[label="xwv33/Right xwv330",fontsize=10,color="white",style="solid",shape="box"];501 -> 3990[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3990 -> 615[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 502[label="Right xwv280 == xwv33",fontsize=16,color="burlywood",shape="box"];3991[label="xwv33/Left xwv330",fontsize=10,color="white",style="solid",shape="box"];502 -> 3991[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3991 -> 616[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 3992[label="xwv33/Right xwv330",fontsize=10,color="white",style="solid",shape="box"];502 -> 3992[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3992 -> 617[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 503[label="primEqChar xwv28 xwv33",fontsize=16,color="burlywood",shape="box"];3993[label="xwv28/Char xwv280",fontsize=10,color="white",style="solid",shape="box"];503 -> 3993[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3993 -> 618[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 504[label="(xwv280,xwv281) == xwv33",fontsize=16,color="burlywood",shape="box"];3994[label="xwv33/(xwv330,xwv331)",fontsize=10,color="white",style="solid",shape="box"];504 -> 3994[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3994 -> 619[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 505[label="primEqFloat xwv28 xwv33",fontsize=16,color="burlywood",shape="box"];3995[label="xwv28/Float xwv280 xwv281",fontsize=10,color="white",style="solid",shape="box"];505 -> 3995[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3995 -> 620[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 506[label="xwv280 :% xwv281 == xwv33",fontsize=16,color="burlywood",shape="box"];3996[label="xwv33/xwv330 :% xwv331",fontsize=10,color="white",style="solid",shape="box"];506 -> 3996[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3996 -> 621[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 507[label="() == xwv33",fontsize=16,color="burlywood",shape="box"];3997[label="xwv33/()",fontsize=10,color="white",style="solid",shape="box"];507 -> 3997[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3997 -> 622[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 508[label="(xwv280,xwv281,xwv282) == xwv33",fontsize=16,color="burlywood",shape="box"];3998[label="xwv33/(xwv330,xwv331,xwv332)",fontsize=10,color="white",style="solid",shape="box"];508 -> 3998[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3998 -> 623[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 509[label="Integer xwv280 == xwv33",fontsize=16,color="burlywood",shape="box"];3999[label="xwv33/Integer xwv330",fontsize=10,color="white",style="solid",shape="box"];509 -> 3999[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 3999 -> 624[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 510[label="xwv280 : xwv281 == xwv33",fontsize=16,color="burlywood",shape="box"];4000[label="xwv33/xwv330 : xwv331",fontsize=10,color="white",style="solid",shape="box"];510 -> 4000[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 4000 -> 625[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 4001[label="xwv33/[]",fontsize=10,color="white",style="solid",shape="box"];510 -> 4001[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 4001 -> 626[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 511[label="[] == xwv33",fontsize=16,color="burlywood",shape="box"];4002[label="xwv33/xwv330 : xwv331",fontsize=10,color="white",style="solid",shape="box"];511 -> 4002[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 4002 -> 627[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 4003[label="xwv33/[]",fontsize=10,color="white",style="solid",shape="box"];511 -> 4003[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 4003 -> 628[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 512[label="error []",fontsize=16,color="red",shape="box"];513[label="FiniteMap.glueBal xwv51 xwv52",fontsize=16,color="burlywood",shape="box"];4004[label="xwv51/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];513 -> 4004[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 4004 -> 629[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 4005[label="xwv51/FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514",fontsize=10,color="white",style="solid",shape="box"];513 -> 4005[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 4005 -> 630[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 514 -> 1566[label="",style="dashed", color="red", weight=0]; 37.19/18.86 514[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35) (FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35)",fontsize=16,color="magenta"];514 -> 1567[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 514 -> 1568[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 515 -> 632[label="",style="dashed", color="red", weight=0]; 37.19/18.86 515[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 (FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35)",fontsize=16,color="magenta"];515 -> 633[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 516[label="FiniteMap.mkBranch (Pos (Succ Zero)) xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="box"];516 -> 634[label="",style="solid", color="black", weight=3]; 37.19/18.86 517[label="Succ xwv4000",fontsize=16,color="green",shape="box"];518[label="xwv300",fontsize=16,color="green",shape="box"];519 -> 350[label="",style="dashed", color="red", weight=0]; 37.19/18.86 519[label="primCmpNat Zero (Succ xwv3000)",fontsize=16,color="magenta"];519 -> 635[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 519 -> 636[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 520[label="EQ",fontsize=16,color="green",shape="box"];521[label="GT",fontsize=16,color="green",shape="box"];522[label="EQ",fontsize=16,color="green",shape="box"];523[label="xwv300",fontsize=16,color="green",shape="box"];524[label="Succ xwv4000",fontsize=16,color="green",shape="box"];525[label="LT",fontsize=16,color="green",shape="box"];526[label="EQ",fontsize=16,color="green",shape="box"];527 -> 350[label="",style="dashed", color="red", weight=0]; 37.19/18.86 527[label="primCmpNat (Succ xwv3000) Zero",fontsize=16,color="magenta"];527 -> 637[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 527 -> 638[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 528[label="EQ",fontsize=16,color="green",shape="box"];529[label="primCmpNat (Succ xwv4000) (Succ xwv3000)",fontsize=16,color="black",shape="box"];529 -> 639[label="",style="solid", color="black", weight=3]; 37.19/18.86 530[label="primCmpNat (Succ xwv4000) Zero",fontsize=16,color="black",shape="box"];530 -> 640[label="",style="solid", color="black", weight=3]; 37.19/18.86 531[label="primCmpNat Zero (Succ xwv3000)",fontsize=16,color="black",shape="box"];531 -> 641[label="",style="solid", color="black", weight=3]; 37.19/18.86 532[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];532 -> 642[label="",style="solid", color="black", weight=3]; 37.19/18.86 533[label="EQ",fontsize=16,color="green",shape="box"];534[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];534 -> 643[label="",style="solid", color="black", weight=3]; 37.19/18.86 535[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];535 -> 644[label="",style="solid", color="black", weight=3]; 37.19/18.86 536[label="EQ",fontsize=16,color="green",shape="box"];1140[label="xwv300",fontsize=16,color="green",shape="box"];1141[label="xwv401",fontsize=16,color="green",shape="box"];1142[label="xwv301",fontsize=16,color="green",shape="box"];1143 -> 1201[label="",style="dashed", color="red", weight=0]; 37.19/18.86 1143[label="xwv400 == xwv300 && xwv401 == xwv301",fontsize=16,color="magenta"];1143 -> 1202[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 1143 -> 1203[label="",style="dashed", color="magenta", weight=3]; 37.19/18.86 1144[label="xwv400",fontsize=16,color="green",shape="box"];1139[label="compare2 (xwv125,xwv126) (xwv127,xwv128) xwv129",fontsize=16,color="burlywood",shape="triangle"];4006[label="xwv129/False",fontsize=10,color="white",style="solid",shape="box"];1139 -> 4006[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 4006 -> 1163[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 4007[label="xwv129/True",fontsize=10,color="white",style="solid",shape="box"];1139 -> 4007[label="",style="solid", color="burlywood", weight=9]; 37.19/18.86 4007 -> 1164[label="",style="solid", color="burlywood", weight=3]; 37.19/18.86 543[label="EQ",fontsize=16,color="green",shape="box"];544[label="compare1 Nothing (Just xwv300) (Nothing <= Just xwv300)",fontsize=16,color="black",shape="box"];544 -> 661[label="",style="solid", color="black", weight=3]; 37.19/18.86 545[label="compare1 (Just xwv400) Nothing (Just xwv400 <= Nothing)",fontsize=16,color="black",shape="box"];545 -> 662[label="",style="solid", color="black", weight=3]; 37.19/18.86 547[label="xwv400",fontsize=16,color="green",shape="box"];548[label="xwv400 == xwv300",fontsize=16,color="blue",shape="box"];4008[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];548 -> 4008[label="",style="solid", color="blue", weight=9]; 37.19/18.86 4008 -> 663[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4009[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];548 -> 4009[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4009 -> 664[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4010[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];548 -> 4010[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4010 -> 665[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4011[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];548 -> 4011[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4011 -> 666[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4012[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];548 -> 4012[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4012 -> 667[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4013[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];548 -> 4013[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4013 -> 668[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4014[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];548 -> 4014[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4014 -> 669[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4015[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];548 -> 4015[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4015 -> 670[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4016[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];548 -> 4016[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4016 -> 671[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4017[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];548 -> 4017[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4017 -> 672[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4018[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];548 -> 4018[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4018 -> 673[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4019[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];548 -> 4019[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4019 -> 674[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4020[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];548 -> 4020[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4020 -> 675[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4021[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];548 -> 4021[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4021 -> 676[label="",style="solid", color="blue", weight=3]; 37.19/18.87 549[label="xwv300",fontsize=16,color="green",shape="box"];546[label="compare2 (Just xwv72) (Just xwv73) xwv74",fontsize=16,color="burlywood",shape="triangle"];4022[label="xwv74/False",fontsize=10,color="white",style="solid",shape="box"];546 -> 4022[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4022 -> 677[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4023[label="xwv74/True",fontsize=10,color="white",style="solid",shape="box"];546 -> 4023[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4023 -> 678[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 550 -> 208[label="",style="dashed", color="red", weight=0]; 37.19/18.87 550[label="compare (xwv400 * Pos xwv3010) (Pos xwv4010 * xwv300)",fontsize=16,color="magenta"];550 -> 679[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 550 -> 680[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 551 -> 208[label="",style="dashed", color="red", weight=0]; 37.19/18.87 551[label="compare (xwv400 * Pos xwv3010) (Neg xwv4010 * xwv300)",fontsize=16,color="magenta"];551 -> 681[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 551 -> 682[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 552 -> 208[label="",style="dashed", color="red", weight=0]; 37.19/18.87 552[label="compare (xwv400 * Neg xwv3010) (Pos xwv4010 * xwv300)",fontsize=16,color="magenta"];552 -> 683[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 552 -> 684[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 553 -> 208[label="",style="dashed", color="red", weight=0]; 37.19/18.87 553[label="compare (xwv400 * Neg xwv3010) (Neg xwv4010 * xwv300)",fontsize=16,color="magenta"];553 -> 685[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 553 -> 686[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 554 -> 208[label="",style="dashed", color="red", weight=0]; 37.19/18.87 554[label="compare (xwv400 * Pos xwv3010) (Pos xwv4010 * xwv300)",fontsize=16,color="magenta"];554 -> 687[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 554 -> 688[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 555 -> 208[label="",style="dashed", color="red", weight=0]; 37.19/18.87 555[label="compare (xwv400 * Pos xwv3010) (Neg xwv4010 * xwv300)",fontsize=16,color="magenta"];555 -> 689[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 555 -> 690[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 556 -> 208[label="",style="dashed", color="red", weight=0]; 37.19/18.87 556[label="compare (xwv400 * Neg xwv3010) (Pos xwv4010 * xwv300)",fontsize=16,color="magenta"];556 -> 691[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 556 -> 692[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 557 -> 208[label="",style="dashed", color="red", weight=0]; 37.19/18.87 557[label="compare (xwv400 * Neg xwv3010) (Neg xwv4010 * xwv300)",fontsize=16,color="magenta"];557 -> 693[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 557 -> 694[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 559[label="compare xwv400 xwv300",fontsize=16,color="blue",shape="box"];4024[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];559 -> 4024[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4024 -> 695[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4025[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];559 -> 4025[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4025 -> 696[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4026[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];559 -> 4026[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4026 -> 697[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4027[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];559 -> 4027[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4027 -> 698[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4028[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];559 -> 4028[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4028 -> 699[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4029[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];559 -> 4029[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4029 -> 700[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4030[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];559 -> 4030[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4030 -> 701[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4031[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];559 -> 4031[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4031 -> 702[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4032[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];559 -> 4032[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4032 -> 703[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4033[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];559 -> 4033[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4033 -> 704[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4034[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];559 -> 4034[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4034 -> 705[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4035[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];559 -> 4035[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4035 -> 706[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4036[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];559 -> 4036[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4036 -> 707[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4037[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];559 -> 4037[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4037 -> 708[label="",style="solid", color="blue", weight=3]; 37.19/18.87 560[label="xwv56",fontsize=16,color="green",shape="box"];558[label="primCompAux0 xwv78 xwv79",fontsize=16,color="burlywood",shape="triangle"];4038[label="xwv79/LT",fontsize=10,color="white",style="solid",shape="box"];558 -> 4038[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4038 -> 709[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4039[label="xwv79/EQ",fontsize=10,color="white",style="solid",shape="box"];558 -> 4039[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4039 -> 710[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4040[label="xwv79/GT",fontsize=10,color="white",style="solid",shape="box"];558 -> 4040[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4040 -> 711[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 561[label="EQ",fontsize=16,color="green",shape="box"];562[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];562 -> 712[label="",style="solid", color="black", weight=3]; 37.19/18.87 563[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];563 -> 713[label="",style="solid", color="black", weight=3]; 37.19/18.87 564[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];564 -> 714[label="",style="solid", color="black", weight=3]; 37.19/18.87 565[label="EQ",fontsize=16,color="green",shape="box"];566[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];566 -> 715[label="",style="solid", color="black", weight=3]; 37.19/18.87 567[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];567 -> 716[label="",style="solid", color="black", weight=3]; 37.19/18.87 568[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];568 -> 717[label="",style="solid", color="black", weight=3]; 37.19/18.87 569[label="EQ",fontsize=16,color="green",shape="box"];1172[label="xwv400",fontsize=16,color="green",shape="box"];1173[label="xwv401",fontsize=16,color="green",shape="box"];1174[label="xwv302",fontsize=16,color="green",shape="box"];1175 -> 1201[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1175[label="xwv400 == xwv300 && xwv401 == xwv301 && xwv402 == xwv302",fontsize=16,color="magenta"];1175 -> 1204[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1175 -> 1205[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1176[label="xwv402",fontsize=16,color="green",shape="box"];1177[label="xwv300",fontsize=16,color="green",shape="box"];1178[label="xwv301",fontsize=16,color="green",shape="box"];1171[label="compare2 (xwv88,xwv89,xwv90) (xwv91,xwv92,xwv93) xwv130",fontsize=16,color="burlywood",shape="triangle"];4041[label="xwv130/False",fontsize=10,color="white",style="solid",shape="box"];1171 -> 4041[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4041 -> 1185[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4042[label="xwv130/True",fontsize=10,color="white",style="solid",shape="box"];1171 -> 4042[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4042 -> 1186[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 579[label="xwv400 == xwv300",fontsize=16,color="blue",shape="box"];4043[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];579 -> 4043[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4043 -> 734[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4044[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];579 -> 4044[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4044 -> 735[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4045[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];579 -> 4045[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4045 -> 736[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4046[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];579 -> 4046[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4046 -> 737[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4047[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];579 -> 4047[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4047 -> 738[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4048[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];579 -> 4048[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4048 -> 739[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4049[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];579 -> 4049[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4049 -> 740[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4050[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];579 -> 4050[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4050 -> 741[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4051[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];579 -> 4051[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4051 -> 742[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4052[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];579 -> 4052[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4052 -> 743[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4053[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];579 -> 4053[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4053 -> 744[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4054[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];579 -> 4054[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4054 -> 745[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4055[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];579 -> 4055[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4055 -> 746[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4056[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];579 -> 4056[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4056 -> 747[label="",style="solid", color="blue", weight=3]; 37.19/18.87 580[label="xwv400",fontsize=16,color="green",shape="box"];581[label="xwv300",fontsize=16,color="green",shape="box"];578[label="compare2 (Left xwv99) (Left xwv100) xwv101",fontsize=16,color="burlywood",shape="triangle"];4057[label="xwv101/False",fontsize=10,color="white",style="solid",shape="box"];578 -> 4057[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4057 -> 748[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4058[label="xwv101/True",fontsize=10,color="white",style="solid",shape="box"];578 -> 4058[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4058 -> 749[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 582[label="compare1 (Left xwv400) (Right xwv300) (Left xwv400 <= Right xwv300)",fontsize=16,color="black",shape="box"];582 -> 750[label="",style="solid", color="black", weight=3]; 37.19/18.87 583[label="compare1 (Right xwv400) (Left xwv300) (Right xwv400 <= Left xwv300)",fontsize=16,color="black",shape="box"];583 -> 751[label="",style="solid", color="black", weight=3]; 37.19/18.87 585[label="xwv300",fontsize=16,color="green",shape="box"];586[label="xwv400 == xwv300",fontsize=16,color="blue",shape="box"];4059[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];586 -> 4059[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4059 -> 752[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4060[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];586 -> 4060[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4060 -> 753[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4061[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];586 -> 4061[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4061 -> 754[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4062[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];586 -> 4062[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4062 -> 755[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4063[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];586 -> 4063[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4063 -> 756[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4064[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];586 -> 4064[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4064 -> 757[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4065[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];586 -> 4065[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4065 -> 758[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4066[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];586 -> 4066[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4066 -> 759[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4067[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];586 -> 4067[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4067 -> 760[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4068[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];586 -> 4068[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4068 -> 761[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4069[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];586 -> 4069[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4069 -> 762[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4070[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];586 -> 4070[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4070 -> 763[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4071[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];586 -> 4071[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4071 -> 764[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4072[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];586 -> 4072[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4072 -> 765[label="",style="solid", color="blue", weight=3]; 37.19/18.87 587[label="xwv400",fontsize=16,color="green",shape="box"];584[label="compare2 (Right xwv106) (Right xwv107) xwv108",fontsize=16,color="burlywood",shape="triangle"];4073[label="xwv108/False",fontsize=10,color="white",style="solid",shape="box"];584 -> 4073[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4073 -> 766[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4074[label="xwv108/True",fontsize=10,color="white",style="solid",shape="box"];584 -> 4074[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4074 -> 767[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 588[label="primMulInt xwv300 xwv401",fontsize=16,color="burlywood",shape="triangle"];4075[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];588 -> 4075[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4075 -> 768[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4076[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];588 -> 4076[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4076 -> 769[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 589[label="xwv301",fontsize=16,color="green",shape="box"];590[label="xwv400",fontsize=16,color="green",shape="box"];591[label="Integer xwv3000 * xwv401",fontsize=16,color="burlywood",shape="box"];4077[label="xwv401/Integer xwv4010",fontsize=10,color="white",style="solid",shape="box"];591 -> 4077[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4077 -> 770[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 592[label="xwv301",fontsize=16,color="green",shape="box"];593[label="xwv400",fontsize=16,color="green",shape="box"];594[label="False == False",fontsize=16,color="black",shape="box"];594 -> 771[label="",style="solid", color="black", weight=3]; 37.19/18.87 595[label="False == True",fontsize=16,color="black",shape="box"];595 -> 772[label="",style="solid", color="black", weight=3]; 37.19/18.87 596[label="True == False",fontsize=16,color="black",shape="box"];596 -> 773[label="",style="solid", color="black", weight=3]; 37.19/18.87 597[label="True == True",fontsize=16,color="black",shape="box"];597 -> 774[label="",style="solid", color="black", weight=3]; 37.19/18.87 598[label="LT == LT",fontsize=16,color="black",shape="box"];598 -> 775[label="",style="solid", color="black", weight=3]; 37.19/18.87 599[label="LT == EQ",fontsize=16,color="black",shape="box"];599 -> 776[label="",style="solid", color="black", weight=3]; 37.19/18.87 600[label="LT == GT",fontsize=16,color="black",shape="box"];600 -> 777[label="",style="solid", color="black", weight=3]; 37.19/18.87 601[label="EQ == LT",fontsize=16,color="black",shape="box"];601 -> 778[label="",style="solid", color="black", weight=3]; 37.19/18.87 602[label="EQ == EQ",fontsize=16,color="black",shape="box"];602 -> 779[label="",style="solid", color="black", weight=3]; 37.19/18.87 603[label="EQ == GT",fontsize=16,color="black",shape="box"];603 -> 780[label="",style="solid", color="black", weight=3]; 37.19/18.87 604[label="GT == LT",fontsize=16,color="black",shape="box"];604 -> 781[label="",style="solid", color="black", weight=3]; 37.19/18.87 605[label="GT == EQ",fontsize=16,color="black",shape="box"];605 -> 782[label="",style="solid", color="black", weight=3]; 37.19/18.87 606[label="GT == GT",fontsize=16,color="black",shape="box"];606 -> 783[label="",style="solid", color="black", weight=3]; 37.19/18.87 607[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];607 -> 784[label="",style="solid", color="black", weight=3]; 37.19/18.87 608[label="Nothing == Just xwv330",fontsize=16,color="black",shape="box"];608 -> 785[label="",style="solid", color="black", weight=3]; 37.19/18.87 609[label="Just xwv280 == Nothing",fontsize=16,color="black",shape="box"];609 -> 786[label="",style="solid", color="black", weight=3]; 37.19/18.87 610[label="Just xwv280 == Just xwv330",fontsize=16,color="black",shape="box"];610 -> 787[label="",style="solid", color="black", weight=3]; 37.19/18.87 611[label="primEqDouble (Double xwv280 xwv281) xwv33",fontsize=16,color="burlywood",shape="box"];4078[label="xwv33/Double xwv330 xwv331",fontsize=10,color="white",style="solid",shape="box"];611 -> 4078[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4078 -> 788[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 612[label="primEqInt (Pos xwv280) xwv33",fontsize=16,color="burlywood",shape="box"];4079[label="xwv280/Succ xwv2800",fontsize=10,color="white",style="solid",shape="box"];612 -> 4079[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4079 -> 789[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4080[label="xwv280/Zero",fontsize=10,color="white",style="solid",shape="box"];612 -> 4080[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4080 -> 790[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 613[label="primEqInt (Neg xwv280) xwv33",fontsize=16,color="burlywood",shape="box"];4081[label="xwv280/Succ xwv2800",fontsize=10,color="white",style="solid",shape="box"];613 -> 4081[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4081 -> 791[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4082[label="xwv280/Zero",fontsize=10,color="white",style="solid",shape="box"];613 -> 4082[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4082 -> 792[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 614[label="Left xwv280 == Left xwv330",fontsize=16,color="black",shape="box"];614 -> 793[label="",style="solid", color="black", weight=3]; 37.19/18.87 615[label="Left xwv280 == Right xwv330",fontsize=16,color="black",shape="box"];615 -> 794[label="",style="solid", color="black", weight=3]; 37.19/18.87 616[label="Right xwv280 == Left xwv330",fontsize=16,color="black",shape="box"];616 -> 795[label="",style="solid", color="black", weight=3]; 37.19/18.87 617[label="Right xwv280 == Right xwv330",fontsize=16,color="black",shape="box"];617 -> 796[label="",style="solid", color="black", weight=3]; 37.19/18.87 618[label="primEqChar (Char xwv280) xwv33",fontsize=16,color="burlywood",shape="box"];4083[label="xwv33/Char xwv330",fontsize=10,color="white",style="solid",shape="box"];618 -> 4083[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4083 -> 797[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 619[label="(xwv280,xwv281) == (xwv330,xwv331)",fontsize=16,color="black",shape="box"];619 -> 798[label="",style="solid", color="black", weight=3]; 37.19/18.87 620[label="primEqFloat (Float xwv280 xwv281) xwv33",fontsize=16,color="burlywood",shape="box"];4084[label="xwv33/Float xwv330 xwv331",fontsize=10,color="white",style="solid",shape="box"];620 -> 4084[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4084 -> 799[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 621[label="xwv280 :% xwv281 == xwv330 :% xwv331",fontsize=16,color="black",shape="box"];621 -> 800[label="",style="solid", color="black", weight=3]; 37.19/18.87 622[label="() == ()",fontsize=16,color="black",shape="box"];622 -> 801[label="",style="solid", color="black", weight=3]; 37.19/18.87 623[label="(xwv280,xwv281,xwv282) == (xwv330,xwv331,xwv332)",fontsize=16,color="black",shape="box"];623 -> 802[label="",style="solid", color="black", weight=3]; 37.19/18.87 624[label="Integer xwv280 == Integer xwv330",fontsize=16,color="black",shape="box"];624 -> 803[label="",style="solid", color="black", weight=3]; 37.19/18.87 625[label="xwv280 : xwv281 == xwv330 : xwv331",fontsize=16,color="black",shape="box"];625 -> 804[label="",style="solid", color="black", weight=3]; 37.19/18.87 626[label="xwv280 : xwv281 == []",fontsize=16,color="black",shape="box"];626 -> 805[label="",style="solid", color="black", weight=3]; 37.19/18.87 627[label="[] == xwv330 : xwv331",fontsize=16,color="black",shape="box"];627 -> 806[label="",style="solid", color="black", weight=3]; 37.19/18.87 628[label="[] == []",fontsize=16,color="black",shape="box"];628 -> 807[label="",style="solid", color="black", weight=3]; 37.19/18.87 629[label="FiniteMap.glueBal FiniteMap.EmptyFM xwv52",fontsize=16,color="black",shape="box"];629 -> 808[label="",style="solid", color="black", weight=3]; 37.19/18.87 630[label="FiniteMap.glueBal (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) xwv52",fontsize=16,color="burlywood",shape="box"];4085[label="xwv52/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];630 -> 4085[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4085 -> 809[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4086[label="xwv52/FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524",fontsize=10,color="white",style="solid",shape="box"];630 -> 4086[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4086 -> 810[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 1567 -> 814[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1567[label="FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35",fontsize=16,color="magenta"];1568[label="FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35",fontsize=16,color="black",shape="triangle"];1568 -> 1576[label="",style="solid", color="black", weight=3]; 37.19/18.87 1566[label="primPlusInt xwv162 xwv137",fontsize=16,color="burlywood",shape="triangle"];4087[label="xwv162/Pos xwv1620",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4087[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4087 -> 1577[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4088[label="xwv162/Neg xwv1620",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4088[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4088 -> 1578[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 633 -> 27[label="",style="dashed", color="red", weight=0]; 37.19/18.87 633[label="FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35",fontsize=16,color="magenta"];633 -> 813[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 633 -> 814[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 632[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 xwv109",fontsize=16,color="burlywood",shape="triangle"];4089[label="xwv109/False",fontsize=10,color="white",style="solid",shape="box"];632 -> 4089[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4089 -> 815[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4090[label="xwv109/True",fontsize=10,color="white",style="solid",shape="box"];632 -> 4090[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4090 -> 816[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 634[label="FiniteMap.mkBranchResult xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="triangle"];634 -> 817[label="",style="solid", color="black", weight=3]; 37.19/18.87 635[label="Zero",fontsize=16,color="green",shape="box"];636[label="Succ xwv3000",fontsize=16,color="green",shape="box"];637[label="Succ xwv3000",fontsize=16,color="green",shape="box"];638[label="Zero",fontsize=16,color="green",shape="box"];639 -> 350[label="",style="dashed", color="red", weight=0]; 37.19/18.87 639[label="primCmpNat xwv4000 xwv3000",fontsize=16,color="magenta"];639 -> 818[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 639 -> 819[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 640[label="GT",fontsize=16,color="green",shape="box"];641[label="LT",fontsize=16,color="green",shape="box"];642[label="EQ",fontsize=16,color="green",shape="box"];643[label="compare1 False True True",fontsize=16,color="black",shape="box"];643 -> 820[label="",style="solid", color="black", weight=3]; 37.19/18.87 644[label="compare1 True False False",fontsize=16,color="black",shape="box"];644 -> 821[label="",style="solid", color="black", weight=3]; 37.19/18.87 1202[label="xwv400 == xwv300",fontsize=16,color="blue",shape="box"];4091[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1202 -> 4091[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4091 -> 1220[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4092[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1202 -> 4092[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4092 -> 1221[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4093[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1202 -> 4093[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4093 -> 1222[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4094[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1202 -> 4094[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4094 -> 1223[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4095[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1202 -> 4095[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4095 -> 1224[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4096[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1202 -> 4096[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4096 -> 1225[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4097[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1202 -> 4097[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4097 -> 1226[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4098[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1202 -> 4098[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4098 -> 1227[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4099[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1202 -> 4099[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4099 -> 1228[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4100[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1202 -> 4100[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4100 -> 1229[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4101[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1202 -> 4101[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4101 -> 1230[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4102[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1202 -> 4102[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4102 -> 1231[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4103[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1202 -> 4103[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4103 -> 1232[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4104[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1202 -> 4104[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4104 -> 1233[label="",style="solid", color="blue", weight=3]; 37.19/18.87 1203[label="xwv401 == xwv301",fontsize=16,color="blue",shape="box"];4105[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1203 -> 4105[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4105 -> 1234[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4106[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1203 -> 4106[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4106 -> 1235[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4107[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1203 -> 4107[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4107 -> 1236[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4108[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1203 -> 4108[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4108 -> 1237[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4109[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1203 -> 4109[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4109 -> 1238[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4110[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1203 -> 4110[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4110 -> 1239[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4111[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1203 -> 4111[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4111 -> 1240[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4112[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1203 -> 4112[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4112 -> 1241[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4113[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1203 -> 4113[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4113 -> 1242[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4114[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1203 -> 4114[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4114 -> 1243[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4115[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1203 -> 4115[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4115 -> 1244[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4116[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1203 -> 4116[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4116 -> 1245[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4117[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1203 -> 4117[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4117 -> 1246[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4118[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1203 -> 4118[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4118 -> 1247[label="",style="solid", color="blue", weight=3]; 37.19/18.87 1201[label="xwv134 && xwv135",fontsize=16,color="burlywood",shape="triangle"];4119[label="xwv134/False",fontsize=10,color="white",style="solid",shape="box"];1201 -> 4119[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4119 -> 1248[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4120[label="xwv134/True",fontsize=10,color="white",style="solid",shape="box"];1201 -> 4120[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4120 -> 1249[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 1163[label="compare2 (xwv125,xwv126) (xwv127,xwv128) False",fontsize=16,color="black",shape="box"];1163 -> 1250[label="",style="solid", color="black", weight=3]; 37.19/18.87 1164[label="compare2 (xwv125,xwv126) (xwv127,xwv128) True",fontsize=16,color="black",shape="box"];1164 -> 1251[label="",style="solid", color="black", weight=3]; 37.19/18.87 661[label="compare1 Nothing (Just xwv300) True",fontsize=16,color="black",shape="box"];661 -> 852[label="",style="solid", color="black", weight=3]; 37.19/18.87 662[label="compare1 (Just xwv400) Nothing False",fontsize=16,color="black",shape="box"];662 -> 853[label="",style="solid", color="black", weight=3]; 37.19/18.87 663 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.87 663[label="xwv400 == xwv300",fontsize=16,color="magenta"];663 -> 854[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 663 -> 855[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 664 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.87 664[label="xwv400 == xwv300",fontsize=16,color="magenta"];664 -> 856[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 664 -> 857[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 665 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.87 665[label="xwv400 == xwv300",fontsize=16,color="magenta"];665 -> 858[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 665 -> 859[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 666 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.87 666[label="xwv400 == xwv300",fontsize=16,color="magenta"];666 -> 860[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 666 -> 861[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 667 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 667[label="xwv400 == xwv300",fontsize=16,color="magenta"];667 -> 862[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 667 -> 863[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 668 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.87 668[label="xwv400 == xwv300",fontsize=16,color="magenta"];668 -> 864[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 668 -> 865[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 669 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.87 669[label="xwv400 == xwv300",fontsize=16,color="magenta"];669 -> 866[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 669 -> 867[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 670 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.87 670[label="xwv400 == xwv300",fontsize=16,color="magenta"];670 -> 868[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 670 -> 869[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 671 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.87 671[label="xwv400 == xwv300",fontsize=16,color="magenta"];671 -> 870[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 671 -> 871[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 672 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.87 672[label="xwv400 == xwv300",fontsize=16,color="magenta"];672 -> 872[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 672 -> 873[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 673 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.87 673[label="xwv400 == xwv300",fontsize=16,color="magenta"];673 -> 874[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 673 -> 875[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 674 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.87 674[label="xwv400 == xwv300",fontsize=16,color="magenta"];674 -> 876[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 674 -> 877[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 675 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.87 675[label="xwv400 == xwv300",fontsize=16,color="magenta"];675 -> 878[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 675 -> 879[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 676 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.87 676[label="xwv400 == xwv300",fontsize=16,color="magenta"];676 -> 880[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 676 -> 881[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 677[label="compare2 (Just xwv72) (Just xwv73) False",fontsize=16,color="black",shape="box"];677 -> 882[label="",style="solid", color="black", weight=3]; 37.19/18.87 678[label="compare2 (Just xwv72) (Just xwv73) True",fontsize=16,color="black",shape="box"];678 -> 883[label="",style="solid", color="black", weight=3]; 37.19/18.87 679 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 679[label="Pos xwv4010 * xwv300",fontsize=16,color="magenta"];679 -> 884[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 679 -> 885[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 680 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 680[label="xwv400 * Pos xwv3010",fontsize=16,color="magenta"];680 -> 886[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 680 -> 887[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 681 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 681[label="Neg xwv4010 * xwv300",fontsize=16,color="magenta"];681 -> 888[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 681 -> 889[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 682 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 682[label="xwv400 * Pos xwv3010",fontsize=16,color="magenta"];682 -> 890[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 682 -> 891[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 683 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 683[label="Pos xwv4010 * xwv300",fontsize=16,color="magenta"];683 -> 892[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 683 -> 893[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 684 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 684[label="xwv400 * Neg xwv3010",fontsize=16,color="magenta"];684 -> 894[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 684 -> 895[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 685 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 685[label="Neg xwv4010 * xwv300",fontsize=16,color="magenta"];685 -> 896[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 685 -> 897[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 686 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 686[label="xwv400 * Neg xwv3010",fontsize=16,color="magenta"];686 -> 898[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 686 -> 899[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 687 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 687[label="Pos xwv4010 * xwv300",fontsize=16,color="magenta"];687 -> 900[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 687 -> 901[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 688 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 688[label="xwv400 * Pos xwv3010",fontsize=16,color="magenta"];688 -> 902[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 688 -> 903[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 689 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 689[label="Neg xwv4010 * xwv300",fontsize=16,color="magenta"];689 -> 904[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 689 -> 905[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 690 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 690[label="xwv400 * Pos xwv3010",fontsize=16,color="magenta"];690 -> 906[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 690 -> 907[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 691 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 691[label="Pos xwv4010 * xwv300",fontsize=16,color="magenta"];691 -> 908[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 691 -> 909[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 692 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 692[label="xwv400 * Neg xwv3010",fontsize=16,color="magenta"];692 -> 910[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 692 -> 911[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 693 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 693[label="Neg xwv4010 * xwv300",fontsize=16,color="magenta"];693 -> 912[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 693 -> 913[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 694 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 694[label="xwv400 * Neg xwv3010",fontsize=16,color="magenta"];694 -> 914[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 694 -> 915[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 695 -> 208[label="",style="dashed", color="red", weight=0]; 37.19/18.87 695[label="compare xwv400 xwv300",fontsize=16,color="magenta"];695 -> 916[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 695 -> 917[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 696 -> 209[label="",style="dashed", color="red", weight=0]; 37.19/18.87 696[label="compare xwv400 xwv300",fontsize=16,color="magenta"];696 -> 918[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 696 -> 919[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 697 -> 210[label="",style="dashed", color="red", weight=0]; 37.19/18.87 697[label="compare xwv400 xwv300",fontsize=16,color="magenta"];697 -> 920[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 697 -> 921[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 698 -> 211[label="",style="dashed", color="red", weight=0]; 37.19/18.87 698[label="compare xwv400 xwv300",fontsize=16,color="magenta"];698 -> 922[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 698 -> 923[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 699 -> 212[label="",style="dashed", color="red", weight=0]; 37.19/18.87 699[label="compare xwv400 xwv300",fontsize=16,color="magenta"];699 -> 924[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 699 -> 925[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 700 -> 213[label="",style="dashed", color="red", weight=0]; 37.19/18.87 700[label="compare xwv400 xwv300",fontsize=16,color="magenta"];700 -> 926[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 700 -> 927[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 701 -> 214[label="",style="dashed", color="red", weight=0]; 37.19/18.87 701[label="compare xwv400 xwv300",fontsize=16,color="magenta"];701 -> 928[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 701 -> 929[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 702 -> 215[label="",style="dashed", color="red", weight=0]; 37.19/18.87 702[label="compare xwv400 xwv300",fontsize=16,color="magenta"];702 -> 930[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 702 -> 931[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 703 -> 216[label="",style="dashed", color="red", weight=0]; 37.19/18.87 703[label="compare xwv400 xwv300",fontsize=16,color="magenta"];703 -> 932[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 703 -> 933[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 704 -> 217[label="",style="dashed", color="red", weight=0]; 37.19/18.87 704[label="compare xwv400 xwv300",fontsize=16,color="magenta"];704 -> 934[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 704 -> 935[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 705 -> 218[label="",style="dashed", color="red", weight=0]; 37.19/18.87 705[label="compare xwv400 xwv300",fontsize=16,color="magenta"];705 -> 936[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 705 -> 937[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 706 -> 219[label="",style="dashed", color="red", weight=0]; 37.19/18.87 706[label="compare xwv400 xwv300",fontsize=16,color="magenta"];706 -> 938[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 706 -> 939[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 707 -> 220[label="",style="dashed", color="red", weight=0]; 37.19/18.87 707[label="compare xwv400 xwv300",fontsize=16,color="magenta"];707 -> 940[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 707 -> 941[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 708 -> 221[label="",style="dashed", color="red", weight=0]; 37.19/18.87 708[label="compare xwv400 xwv300",fontsize=16,color="magenta"];708 -> 942[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 708 -> 943[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 709[label="primCompAux0 xwv78 LT",fontsize=16,color="black",shape="box"];709 -> 944[label="",style="solid", color="black", weight=3]; 37.19/18.87 710[label="primCompAux0 xwv78 EQ",fontsize=16,color="black",shape="box"];710 -> 945[label="",style="solid", color="black", weight=3]; 37.19/18.87 711[label="primCompAux0 xwv78 GT",fontsize=16,color="black",shape="box"];711 -> 946[label="",style="solid", color="black", weight=3]; 37.19/18.87 712[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];712 -> 947[label="",style="solid", color="black", weight=3]; 37.19/18.87 713[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];713 -> 948[label="",style="solid", color="black", weight=3]; 37.19/18.87 714[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];714 -> 949[label="",style="solid", color="black", weight=3]; 37.19/18.87 715[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];715 -> 950[label="",style="solid", color="black", weight=3]; 37.19/18.87 716[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];716 -> 951[label="",style="solid", color="black", weight=3]; 37.19/18.87 717[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];717 -> 952[label="",style="solid", color="black", weight=3]; 37.19/18.87 1204[label="xwv400 == xwv300",fontsize=16,color="blue",shape="box"];4121[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 4121[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4121 -> 1252[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4122[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 4122[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4122 -> 1253[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4123[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 4123[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4123 -> 1254[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4124[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 4124[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4124 -> 1255[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4125[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 4125[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4125 -> 1256[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4126[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 4126[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4126 -> 1257[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4127[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 4127[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4127 -> 1258[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4128[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 4128[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4128 -> 1259[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4129[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 4129[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4129 -> 1260[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4130[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 4130[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4130 -> 1261[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4131[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 4131[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4131 -> 1262[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4132[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 4132[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4132 -> 1263[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4133[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 4133[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4133 -> 1264[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4134[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1204 -> 4134[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4134 -> 1265[label="",style="solid", color="blue", weight=3]; 37.19/18.87 1205 -> 1201[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1205[label="xwv401 == xwv301 && xwv402 == xwv302",fontsize=16,color="magenta"];1205 -> 1266[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1205 -> 1267[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1185[label="compare2 (xwv88,xwv89,xwv90) (xwv91,xwv92,xwv93) False",fontsize=16,color="black",shape="box"];1185 -> 1268[label="",style="solid", color="black", weight=3]; 37.19/18.87 1186[label="compare2 (xwv88,xwv89,xwv90) (xwv91,xwv92,xwv93) True",fontsize=16,color="black",shape="box"];1186 -> 1269[label="",style="solid", color="black", weight=3]; 37.19/18.87 734 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.87 734[label="xwv400 == xwv300",fontsize=16,color="magenta"];734 -> 983[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 734 -> 984[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 735 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.87 735[label="xwv400 == xwv300",fontsize=16,color="magenta"];735 -> 985[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 735 -> 986[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 736 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.87 736[label="xwv400 == xwv300",fontsize=16,color="magenta"];736 -> 987[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 736 -> 988[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 737 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.87 737[label="xwv400 == xwv300",fontsize=16,color="magenta"];737 -> 989[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 737 -> 990[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 738 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 738[label="xwv400 == xwv300",fontsize=16,color="magenta"];738 -> 991[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 738 -> 992[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 739 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.87 739[label="xwv400 == xwv300",fontsize=16,color="magenta"];739 -> 993[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 739 -> 994[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 740 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.87 740[label="xwv400 == xwv300",fontsize=16,color="magenta"];740 -> 995[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 740 -> 996[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 741 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.87 741[label="xwv400 == xwv300",fontsize=16,color="magenta"];741 -> 997[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 741 -> 998[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 742 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.87 742[label="xwv400 == xwv300",fontsize=16,color="magenta"];742 -> 999[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 742 -> 1000[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 743 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.87 743[label="xwv400 == xwv300",fontsize=16,color="magenta"];743 -> 1001[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 743 -> 1002[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 744 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.87 744[label="xwv400 == xwv300",fontsize=16,color="magenta"];744 -> 1003[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 744 -> 1004[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 745 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.87 745[label="xwv400 == xwv300",fontsize=16,color="magenta"];745 -> 1005[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 745 -> 1006[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 746 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.87 746[label="xwv400 == xwv300",fontsize=16,color="magenta"];746 -> 1007[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 746 -> 1008[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 747 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.87 747[label="xwv400 == xwv300",fontsize=16,color="magenta"];747 -> 1009[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 747 -> 1010[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 748[label="compare2 (Left xwv99) (Left xwv100) False",fontsize=16,color="black",shape="box"];748 -> 1011[label="",style="solid", color="black", weight=3]; 37.19/18.87 749[label="compare2 (Left xwv99) (Left xwv100) True",fontsize=16,color="black",shape="box"];749 -> 1012[label="",style="solid", color="black", weight=3]; 37.19/18.87 750[label="compare1 (Left xwv400) (Right xwv300) True",fontsize=16,color="black",shape="box"];750 -> 1013[label="",style="solid", color="black", weight=3]; 37.19/18.87 751[label="compare1 (Right xwv400) (Left xwv300) False",fontsize=16,color="black",shape="box"];751 -> 1014[label="",style="solid", color="black", weight=3]; 37.19/18.87 752 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.87 752[label="xwv400 == xwv300",fontsize=16,color="magenta"];752 -> 1015[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 752 -> 1016[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 753 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.87 753[label="xwv400 == xwv300",fontsize=16,color="magenta"];753 -> 1017[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 753 -> 1018[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 754 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.87 754[label="xwv400 == xwv300",fontsize=16,color="magenta"];754 -> 1019[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 754 -> 1020[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 755 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.87 755[label="xwv400 == xwv300",fontsize=16,color="magenta"];755 -> 1021[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 755 -> 1022[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 756 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 756[label="xwv400 == xwv300",fontsize=16,color="magenta"];756 -> 1023[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 756 -> 1024[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 757 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.87 757[label="xwv400 == xwv300",fontsize=16,color="magenta"];757 -> 1025[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 757 -> 1026[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 758 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.87 758[label="xwv400 == xwv300",fontsize=16,color="magenta"];758 -> 1027[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 758 -> 1028[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 759 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.87 759[label="xwv400 == xwv300",fontsize=16,color="magenta"];759 -> 1029[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 759 -> 1030[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 760 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.87 760[label="xwv400 == xwv300",fontsize=16,color="magenta"];760 -> 1031[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 760 -> 1032[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 761 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.87 761[label="xwv400 == xwv300",fontsize=16,color="magenta"];761 -> 1033[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 761 -> 1034[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 762 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.87 762[label="xwv400 == xwv300",fontsize=16,color="magenta"];762 -> 1035[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 762 -> 1036[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 763 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.87 763[label="xwv400 == xwv300",fontsize=16,color="magenta"];763 -> 1037[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 763 -> 1038[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 764 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.87 764[label="xwv400 == xwv300",fontsize=16,color="magenta"];764 -> 1039[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 764 -> 1040[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 765 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.87 765[label="xwv400 == xwv300",fontsize=16,color="magenta"];765 -> 1041[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 765 -> 1042[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 766[label="compare2 (Right xwv106) (Right xwv107) False",fontsize=16,color="black",shape="box"];766 -> 1043[label="",style="solid", color="black", weight=3]; 37.19/18.87 767[label="compare2 (Right xwv106) (Right xwv107) True",fontsize=16,color="black",shape="box"];767 -> 1044[label="",style="solid", color="black", weight=3]; 37.19/18.87 768[label="primMulInt (Pos xwv3000) xwv401",fontsize=16,color="burlywood",shape="box"];4135[label="xwv401/Pos xwv4010",fontsize=10,color="white",style="solid",shape="box"];768 -> 4135[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4135 -> 1045[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4136[label="xwv401/Neg xwv4010",fontsize=10,color="white",style="solid",shape="box"];768 -> 4136[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4136 -> 1046[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 769[label="primMulInt (Neg xwv3000) xwv401",fontsize=16,color="burlywood",shape="box"];4137[label="xwv401/Pos xwv4010",fontsize=10,color="white",style="solid",shape="box"];769 -> 4137[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4137 -> 1047[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4138[label="xwv401/Neg xwv4010",fontsize=10,color="white",style="solid",shape="box"];769 -> 4138[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4138 -> 1048[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 770[label="Integer xwv3000 * Integer xwv4010",fontsize=16,color="black",shape="box"];770 -> 1049[label="",style="solid", color="black", weight=3]; 37.19/18.87 771[label="True",fontsize=16,color="green",shape="box"];772[label="False",fontsize=16,color="green",shape="box"];773[label="False",fontsize=16,color="green",shape="box"];774[label="True",fontsize=16,color="green",shape="box"];775[label="True",fontsize=16,color="green",shape="box"];776[label="False",fontsize=16,color="green",shape="box"];777[label="False",fontsize=16,color="green",shape="box"];778[label="False",fontsize=16,color="green",shape="box"];779[label="True",fontsize=16,color="green",shape="box"];780[label="False",fontsize=16,color="green",shape="box"];781[label="False",fontsize=16,color="green",shape="box"];782[label="False",fontsize=16,color="green",shape="box"];783[label="True",fontsize=16,color="green",shape="box"];784[label="True",fontsize=16,color="green",shape="box"];785[label="False",fontsize=16,color="green",shape="box"];786[label="False",fontsize=16,color="green",shape="box"];787[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4139[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];787 -> 4139[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4139 -> 1050[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4140[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];787 -> 4140[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4140 -> 1051[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4141[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];787 -> 4141[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4141 -> 1052[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4142[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];787 -> 4142[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4142 -> 1053[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4143[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];787 -> 4143[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4143 -> 1054[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4144[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];787 -> 4144[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4144 -> 1055[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4145[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];787 -> 4145[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4145 -> 1056[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4146[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];787 -> 4146[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4146 -> 1057[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4147[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];787 -> 4147[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4147 -> 1058[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4148[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];787 -> 4148[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4148 -> 1059[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4149[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];787 -> 4149[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4149 -> 1060[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4150[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];787 -> 4150[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4150 -> 1061[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4151[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];787 -> 4151[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4151 -> 1062[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4152[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];787 -> 4152[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4152 -> 1063[label="",style="solid", color="blue", weight=3]; 37.19/18.87 788[label="primEqDouble (Double xwv280 xwv281) (Double xwv330 xwv331)",fontsize=16,color="black",shape="box"];788 -> 1064[label="",style="solid", color="black", weight=3]; 37.19/18.87 789[label="primEqInt (Pos (Succ xwv2800)) xwv33",fontsize=16,color="burlywood",shape="box"];4153[label="xwv33/Pos xwv330",fontsize=10,color="white",style="solid",shape="box"];789 -> 4153[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4153 -> 1065[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4154[label="xwv33/Neg xwv330",fontsize=10,color="white",style="solid",shape="box"];789 -> 4154[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4154 -> 1066[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 790[label="primEqInt (Pos Zero) xwv33",fontsize=16,color="burlywood",shape="box"];4155[label="xwv33/Pos xwv330",fontsize=10,color="white",style="solid",shape="box"];790 -> 4155[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4155 -> 1067[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4156[label="xwv33/Neg xwv330",fontsize=10,color="white",style="solid",shape="box"];790 -> 4156[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4156 -> 1068[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 791[label="primEqInt (Neg (Succ xwv2800)) xwv33",fontsize=16,color="burlywood",shape="box"];4157[label="xwv33/Pos xwv330",fontsize=10,color="white",style="solid",shape="box"];791 -> 4157[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4157 -> 1069[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4158[label="xwv33/Neg xwv330",fontsize=10,color="white",style="solid",shape="box"];791 -> 4158[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4158 -> 1070[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 792[label="primEqInt (Neg Zero) xwv33",fontsize=16,color="burlywood",shape="box"];4159[label="xwv33/Pos xwv330",fontsize=10,color="white",style="solid",shape="box"];792 -> 4159[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4159 -> 1071[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4160[label="xwv33/Neg xwv330",fontsize=10,color="white",style="solid",shape="box"];792 -> 4160[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4160 -> 1072[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 793[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4161[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];793 -> 4161[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4161 -> 1073[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4162[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];793 -> 4162[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4162 -> 1074[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4163[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];793 -> 4163[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4163 -> 1075[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4164[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];793 -> 4164[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4164 -> 1076[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4165[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];793 -> 4165[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4165 -> 1077[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4166[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];793 -> 4166[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4166 -> 1078[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4167[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];793 -> 4167[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4167 -> 1079[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4168[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];793 -> 4168[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4168 -> 1080[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4169[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];793 -> 4169[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4169 -> 1081[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4170[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];793 -> 4170[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4170 -> 1082[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4171[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];793 -> 4171[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4171 -> 1083[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4172[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];793 -> 4172[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4172 -> 1084[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4173[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];793 -> 4173[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4173 -> 1085[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4174[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];793 -> 4174[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4174 -> 1086[label="",style="solid", color="blue", weight=3]; 37.19/18.87 794[label="False",fontsize=16,color="green",shape="box"];795[label="False",fontsize=16,color="green",shape="box"];796[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4175[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];796 -> 4175[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4175 -> 1087[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4176[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];796 -> 4176[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4176 -> 1088[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4177[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];796 -> 4177[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4177 -> 1089[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4178[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];796 -> 4178[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4178 -> 1090[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4179[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];796 -> 4179[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4179 -> 1091[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4180[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];796 -> 4180[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4180 -> 1092[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4181[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];796 -> 4181[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4181 -> 1093[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4182[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];796 -> 4182[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4182 -> 1094[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4183[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];796 -> 4183[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4183 -> 1095[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4184[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];796 -> 4184[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4184 -> 1096[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4185[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];796 -> 4185[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4185 -> 1097[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4186[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];796 -> 4186[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4186 -> 1098[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4187[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];796 -> 4187[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4187 -> 1099[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4188[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];796 -> 4188[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4188 -> 1100[label="",style="solid", color="blue", weight=3]; 37.19/18.87 797[label="primEqChar (Char xwv280) (Char xwv330)",fontsize=16,color="black",shape="box"];797 -> 1101[label="",style="solid", color="black", weight=3]; 37.19/18.87 798 -> 1201[label="",style="dashed", color="red", weight=0]; 37.19/18.87 798[label="xwv280 == xwv330 && xwv281 == xwv331",fontsize=16,color="magenta"];798 -> 1210[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 798 -> 1211[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 799[label="primEqFloat (Float xwv280 xwv281) (Float xwv330 xwv331)",fontsize=16,color="black",shape="box"];799 -> 1112[label="",style="solid", color="black", weight=3]; 37.19/18.87 800 -> 1201[label="",style="dashed", color="red", weight=0]; 37.19/18.87 800[label="xwv280 == xwv330 && xwv281 == xwv331",fontsize=16,color="magenta"];800 -> 1212[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 800 -> 1213[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 801[label="True",fontsize=16,color="green",shape="box"];802 -> 1201[label="",style="dashed", color="red", weight=0]; 37.19/18.87 802[label="xwv280 == xwv330 && xwv281 == xwv331 && xwv282 == xwv332",fontsize=16,color="magenta"];802 -> 1214[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 802 -> 1215[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 803 -> 500[label="",style="dashed", color="red", weight=0]; 37.19/18.87 803[label="primEqInt xwv280 xwv330",fontsize=16,color="magenta"];803 -> 1124[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 803 -> 1125[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 804 -> 1201[label="",style="dashed", color="red", weight=0]; 37.19/18.87 804[label="xwv280 == xwv330 && xwv281 == xwv331",fontsize=16,color="magenta"];804 -> 1216[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 804 -> 1217[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 805[label="False",fontsize=16,color="green",shape="box"];806[label="False",fontsize=16,color="green",shape="box"];807[label="True",fontsize=16,color="green",shape="box"];808[label="FiniteMap.glueBal4 FiniteMap.EmptyFM xwv52",fontsize=16,color="black",shape="box"];808 -> 1126[label="",style="solid", color="black", weight=3]; 37.19/18.87 809[label="FiniteMap.glueBal (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];809 -> 1127[label="",style="solid", color="black", weight=3]; 37.19/18.87 810[label="FiniteMap.glueBal (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="black",shape="box"];810 -> 1128[label="",style="solid", color="black", weight=3]; 37.19/18.87 814[label="FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35",fontsize=16,color="black",shape="triangle"];814 -> 1133[label="",style="solid", color="black", weight=3]; 37.19/18.87 1576 -> 1133[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1576[label="FiniteMap.sizeFM xwv16",fontsize=16,color="magenta"];1576 -> 1584[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1577[label="primPlusInt (Pos xwv1620) xwv137",fontsize=16,color="burlywood",shape="box"];4189[label="xwv137/Pos xwv1370",fontsize=10,color="white",style="solid",shape="box"];1577 -> 4189[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4189 -> 1585[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4190[label="xwv137/Neg xwv1370",fontsize=10,color="white",style="solid",shape="box"];1577 -> 4190[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4190 -> 1586[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 1578[label="primPlusInt (Neg xwv1620) xwv137",fontsize=16,color="burlywood",shape="box"];4191[label="xwv137/Pos xwv1370",fontsize=10,color="white",style="solid",shape="box"];1578 -> 4191[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4191 -> 1587[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4192[label="xwv137/Neg xwv1370",fontsize=10,color="white",style="solid",shape="box"];1578 -> 4192[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4192 -> 1588[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 813 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 813[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35",fontsize=16,color="magenta"];813 -> 1131[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 813 -> 1132[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 815[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 False",fontsize=16,color="black",shape="box"];815 -> 1134[label="",style="solid", color="black", weight=3]; 37.19/18.87 816[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 True",fontsize=16,color="black",shape="box"];816 -> 1135[label="",style="solid", color="black", weight=3]; 37.19/18.87 817[label="FiniteMap.Branch xwv13 xwv14 (FiniteMap.mkBranchUnbox xwv16 xwv13 xwv35 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv13 xwv35 + FiniteMap.mkBranchRight_size xwv16 xwv13 xwv35)) xwv16 xwv35",fontsize=16,color="green",shape="box"];817 -> 1136[label="",style="dashed", color="green", weight=3]; 37.19/18.87 818[label="xwv4000",fontsize=16,color="green",shape="box"];819[label="xwv3000",fontsize=16,color="green",shape="box"];820[label="LT",fontsize=16,color="green",shape="box"];821[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];821 -> 1137[label="",style="solid", color="black", weight=3]; 37.19/18.87 1220 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1220[label="xwv400 == xwv300",fontsize=16,color="magenta"];1220 -> 1450[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1220 -> 1451[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1221 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1221[label="xwv400 == xwv300",fontsize=16,color="magenta"];1221 -> 1452[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1221 -> 1453[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1222 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1222[label="xwv400 == xwv300",fontsize=16,color="magenta"];1222 -> 1454[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1222 -> 1455[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1223 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1223[label="xwv400 == xwv300",fontsize=16,color="magenta"];1223 -> 1456[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1223 -> 1457[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1224 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1224[label="xwv400 == xwv300",fontsize=16,color="magenta"];1224 -> 1458[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1224 -> 1459[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1225 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1225[label="xwv400 == xwv300",fontsize=16,color="magenta"];1225 -> 1460[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1225 -> 1461[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1226 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1226[label="xwv400 == xwv300",fontsize=16,color="magenta"];1226 -> 1462[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1226 -> 1463[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1227 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1227[label="xwv400 == xwv300",fontsize=16,color="magenta"];1227 -> 1464[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1227 -> 1465[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1228 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1228[label="xwv400 == xwv300",fontsize=16,color="magenta"];1228 -> 1466[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1228 -> 1467[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1229 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1229[label="xwv400 == xwv300",fontsize=16,color="magenta"];1229 -> 1468[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1229 -> 1469[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1230 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1230[label="xwv400 == xwv300",fontsize=16,color="magenta"];1230 -> 1470[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1230 -> 1471[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1231 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1231[label="xwv400 == xwv300",fontsize=16,color="magenta"];1231 -> 1472[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1231 -> 1473[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1232 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1232[label="xwv400 == xwv300",fontsize=16,color="magenta"];1232 -> 1474[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1232 -> 1475[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1233 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1233[label="xwv400 == xwv300",fontsize=16,color="magenta"];1233 -> 1476[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1233 -> 1477[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1234 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1234[label="xwv401 == xwv301",fontsize=16,color="magenta"];1234 -> 1478[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1234 -> 1479[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1235 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1235[label="xwv401 == xwv301",fontsize=16,color="magenta"];1235 -> 1480[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1235 -> 1481[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1236 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1236[label="xwv401 == xwv301",fontsize=16,color="magenta"];1236 -> 1482[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1236 -> 1483[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1237 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1237[label="xwv401 == xwv301",fontsize=16,color="magenta"];1237 -> 1484[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1237 -> 1485[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1238 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1238[label="xwv401 == xwv301",fontsize=16,color="magenta"];1238 -> 1486[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1238 -> 1487[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1239 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1239[label="xwv401 == xwv301",fontsize=16,color="magenta"];1239 -> 1488[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1239 -> 1489[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1240 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1240[label="xwv401 == xwv301",fontsize=16,color="magenta"];1240 -> 1490[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1240 -> 1491[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1241 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1241[label="xwv401 == xwv301",fontsize=16,color="magenta"];1241 -> 1492[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1241 -> 1493[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1242 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1242[label="xwv401 == xwv301",fontsize=16,color="magenta"];1242 -> 1494[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1242 -> 1495[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1243 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1243[label="xwv401 == xwv301",fontsize=16,color="magenta"];1243 -> 1496[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1243 -> 1497[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1244 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1244[label="xwv401 == xwv301",fontsize=16,color="magenta"];1244 -> 1498[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1244 -> 1499[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1245 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1245[label="xwv401 == xwv301",fontsize=16,color="magenta"];1245 -> 1500[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1245 -> 1501[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1246 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1246[label="xwv401 == xwv301",fontsize=16,color="magenta"];1246 -> 1502[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1246 -> 1503[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1247 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1247[label="xwv401 == xwv301",fontsize=16,color="magenta"];1247 -> 1504[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1247 -> 1505[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1248[label="False && xwv135",fontsize=16,color="black",shape="box"];1248 -> 1506[label="",style="solid", color="black", weight=3]; 37.19/18.87 1249[label="True && xwv135",fontsize=16,color="black",shape="box"];1249 -> 1507[label="",style="solid", color="black", weight=3]; 37.19/18.87 1250[label="compare1 (xwv125,xwv126) (xwv127,xwv128) ((xwv125,xwv126) <= (xwv127,xwv128))",fontsize=16,color="black",shape="box"];1250 -> 1508[label="",style="solid", color="black", weight=3]; 37.19/18.87 1251[label="EQ",fontsize=16,color="green",shape="box"];852[label="LT",fontsize=16,color="green",shape="box"];853[label="compare0 (Just xwv400) Nothing otherwise",fontsize=16,color="black",shape="box"];853 -> 1165[label="",style="solid", color="black", weight=3]; 37.19/18.87 854[label="xwv400",fontsize=16,color="green",shape="box"];855[label="xwv300",fontsize=16,color="green",shape="box"];856[label="xwv400",fontsize=16,color="green",shape="box"];857[label="xwv300",fontsize=16,color="green",shape="box"];858[label="xwv400",fontsize=16,color="green",shape="box"];859[label="xwv300",fontsize=16,color="green",shape="box"];860[label="xwv400",fontsize=16,color="green",shape="box"];861[label="xwv300",fontsize=16,color="green",shape="box"];862[label="xwv400",fontsize=16,color="green",shape="box"];863[label="xwv300",fontsize=16,color="green",shape="box"];864[label="xwv400",fontsize=16,color="green",shape="box"];865[label="xwv300",fontsize=16,color="green",shape="box"];866[label="xwv400",fontsize=16,color="green",shape="box"];867[label="xwv300",fontsize=16,color="green",shape="box"];868[label="xwv400",fontsize=16,color="green",shape="box"];869[label="xwv300",fontsize=16,color="green",shape="box"];870[label="xwv400",fontsize=16,color="green",shape="box"];871[label="xwv300",fontsize=16,color="green",shape="box"];872[label="xwv400",fontsize=16,color="green",shape="box"];873[label="xwv300",fontsize=16,color="green",shape="box"];874[label="xwv400",fontsize=16,color="green",shape="box"];875[label="xwv300",fontsize=16,color="green",shape="box"];876[label="xwv400",fontsize=16,color="green",shape="box"];877[label="xwv300",fontsize=16,color="green",shape="box"];878[label="xwv400",fontsize=16,color="green",shape="box"];879[label="xwv300",fontsize=16,color="green",shape="box"];880[label="xwv400",fontsize=16,color="green",shape="box"];881[label="xwv300",fontsize=16,color="green",shape="box"];882 -> 1600[label="",style="dashed", color="red", weight=0]; 37.19/18.87 882[label="compare1 (Just xwv72) (Just xwv73) (Just xwv72 <= Just xwv73)",fontsize=16,color="magenta"];882 -> 1601[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 882 -> 1602[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 882 -> 1603[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 883[label="EQ",fontsize=16,color="green",shape="box"];884[label="xwv300",fontsize=16,color="green",shape="box"];885[label="Pos xwv4010",fontsize=16,color="green",shape="box"];886[label="Pos xwv3010",fontsize=16,color="green",shape="box"];887[label="xwv400",fontsize=16,color="green",shape="box"];888[label="xwv300",fontsize=16,color="green",shape="box"];889[label="Neg xwv4010",fontsize=16,color="green",shape="box"];890[label="Pos xwv3010",fontsize=16,color="green",shape="box"];891[label="xwv400",fontsize=16,color="green",shape="box"];892[label="xwv300",fontsize=16,color="green",shape="box"];893[label="Pos xwv4010",fontsize=16,color="green",shape="box"];894[label="Neg xwv3010",fontsize=16,color="green",shape="box"];895[label="xwv400",fontsize=16,color="green",shape="box"];896[label="xwv300",fontsize=16,color="green",shape="box"];897[label="Neg xwv4010",fontsize=16,color="green",shape="box"];898[label="Neg xwv3010",fontsize=16,color="green",shape="box"];899[label="xwv400",fontsize=16,color="green",shape="box"];900[label="xwv300",fontsize=16,color="green",shape="box"];901[label="Pos xwv4010",fontsize=16,color="green",shape="box"];902[label="Pos xwv3010",fontsize=16,color="green",shape="box"];903[label="xwv400",fontsize=16,color="green",shape="box"];904[label="xwv300",fontsize=16,color="green",shape="box"];905[label="Neg xwv4010",fontsize=16,color="green",shape="box"];906[label="Pos xwv3010",fontsize=16,color="green",shape="box"];907[label="xwv400",fontsize=16,color="green",shape="box"];908[label="xwv300",fontsize=16,color="green",shape="box"];909[label="Pos xwv4010",fontsize=16,color="green",shape="box"];910[label="Neg xwv3010",fontsize=16,color="green",shape="box"];911[label="xwv400",fontsize=16,color="green",shape="box"];912[label="xwv300",fontsize=16,color="green",shape="box"];913[label="Neg xwv4010",fontsize=16,color="green",shape="box"];914[label="Neg xwv3010",fontsize=16,color="green",shape="box"];915[label="xwv400",fontsize=16,color="green",shape="box"];916[label="xwv300",fontsize=16,color="green",shape="box"];917[label="xwv400",fontsize=16,color="green",shape="box"];918[label="xwv300",fontsize=16,color="green",shape="box"];919[label="xwv400",fontsize=16,color="green",shape="box"];920[label="xwv300",fontsize=16,color="green",shape="box"];921[label="xwv400",fontsize=16,color="green",shape="box"];922[label="xwv300",fontsize=16,color="green",shape="box"];923[label="xwv400",fontsize=16,color="green",shape="box"];924[label="xwv300",fontsize=16,color="green",shape="box"];925[label="xwv400",fontsize=16,color="green",shape="box"];926[label="xwv300",fontsize=16,color="green",shape="box"];927[label="xwv400",fontsize=16,color="green",shape="box"];928[label="xwv300",fontsize=16,color="green",shape="box"];929[label="xwv400",fontsize=16,color="green",shape="box"];930[label="xwv300",fontsize=16,color="green",shape="box"];931[label="xwv400",fontsize=16,color="green",shape="box"];932[label="xwv300",fontsize=16,color="green",shape="box"];933[label="xwv400",fontsize=16,color="green",shape="box"];934[label="xwv300",fontsize=16,color="green",shape="box"];935[label="xwv400",fontsize=16,color="green",shape="box"];936[label="xwv300",fontsize=16,color="green",shape="box"];937[label="xwv400",fontsize=16,color="green",shape="box"];938[label="xwv300",fontsize=16,color="green",shape="box"];939[label="xwv400",fontsize=16,color="green",shape="box"];940[label="xwv300",fontsize=16,color="green",shape="box"];941[label="xwv400",fontsize=16,color="green",shape="box"];942[label="xwv300",fontsize=16,color="green",shape="box"];943[label="xwv400",fontsize=16,color="green",shape="box"];944[label="LT",fontsize=16,color="green",shape="box"];945[label="xwv78",fontsize=16,color="green",shape="box"];946[label="GT",fontsize=16,color="green",shape="box"];947[label="LT",fontsize=16,color="green",shape="box"];948[label="LT",fontsize=16,color="green",shape="box"];949[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];949 -> 1167[label="",style="solid", color="black", weight=3]; 37.19/18.87 950[label="LT",fontsize=16,color="green",shape="box"];951[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];951 -> 1168[label="",style="solid", color="black", weight=3]; 37.19/18.87 952[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];952 -> 1169[label="",style="solid", color="black", weight=3]; 37.19/18.87 1252 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1252[label="xwv400 == xwv300",fontsize=16,color="magenta"];1252 -> 1509[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1252 -> 1510[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1253 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1253[label="xwv400 == xwv300",fontsize=16,color="magenta"];1253 -> 1511[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1253 -> 1512[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1254 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1254[label="xwv400 == xwv300",fontsize=16,color="magenta"];1254 -> 1513[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1254 -> 1514[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1255 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1255[label="xwv400 == xwv300",fontsize=16,color="magenta"];1255 -> 1515[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1255 -> 1516[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1256 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1256[label="xwv400 == xwv300",fontsize=16,color="magenta"];1256 -> 1517[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1256 -> 1518[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1257 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1257[label="xwv400 == xwv300",fontsize=16,color="magenta"];1257 -> 1519[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1257 -> 1520[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1258 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1258[label="xwv400 == xwv300",fontsize=16,color="magenta"];1258 -> 1521[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1258 -> 1522[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1259 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1259[label="xwv400 == xwv300",fontsize=16,color="magenta"];1259 -> 1523[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1259 -> 1524[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1260 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1260[label="xwv400 == xwv300",fontsize=16,color="magenta"];1260 -> 1525[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1260 -> 1526[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1261 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1261[label="xwv400 == xwv300",fontsize=16,color="magenta"];1261 -> 1527[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1261 -> 1528[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1262 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1262[label="xwv400 == xwv300",fontsize=16,color="magenta"];1262 -> 1529[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1262 -> 1530[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1263 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1263[label="xwv400 == xwv300",fontsize=16,color="magenta"];1263 -> 1531[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1263 -> 1532[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1264 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1264[label="xwv400 == xwv300",fontsize=16,color="magenta"];1264 -> 1533[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1264 -> 1534[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1265 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1265[label="xwv400 == xwv300",fontsize=16,color="magenta"];1265 -> 1535[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1265 -> 1536[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1266[label="xwv401 == xwv301",fontsize=16,color="blue",shape="box"];4193[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1266 -> 4193[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4193 -> 1537[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4194[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1266 -> 4194[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4194 -> 1538[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4195[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1266 -> 4195[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4195 -> 1539[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4196[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1266 -> 4196[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4196 -> 1540[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4197[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1266 -> 4197[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4197 -> 1541[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4198[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1266 -> 4198[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4198 -> 1542[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4199[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1266 -> 4199[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4199 -> 1543[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4200[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1266 -> 4200[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4200 -> 1544[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4201[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1266 -> 4201[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4201 -> 1545[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4202[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1266 -> 4202[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4202 -> 1546[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4203[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1266 -> 4203[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4203 -> 1547[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4204[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1266 -> 4204[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4204 -> 1548[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4205[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1266 -> 4205[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4205 -> 1549[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4206[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1266 -> 4206[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4206 -> 1550[label="",style="solid", color="blue", weight=3]; 37.19/18.87 1267[label="xwv402 == xwv302",fontsize=16,color="blue",shape="box"];4207[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 4207[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4207 -> 1551[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4208[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 4208[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4208 -> 1552[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4209[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 4209[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4209 -> 1553[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4210[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 4210[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4210 -> 1554[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4211[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 4211[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4211 -> 1555[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4212[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 4212[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4212 -> 1556[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4213[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 4213[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4213 -> 1557[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4214[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 4214[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4214 -> 1558[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4215[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 4215[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4215 -> 1559[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4216[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 4216[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4216 -> 1560[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4217[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 4217[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4217 -> 1561[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4218[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 4218[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4218 -> 1562[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4219[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 4219[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4219 -> 1563[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4220[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 4220[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4220 -> 1564[label="",style="solid", color="blue", weight=3]; 37.19/18.87 1268[label="compare1 (xwv88,xwv89,xwv90) (xwv91,xwv92,xwv93) ((xwv88,xwv89,xwv90) <= (xwv91,xwv92,xwv93))",fontsize=16,color="black",shape="box"];1268 -> 1565[label="",style="solid", color="black", weight=3]; 37.19/18.87 1269[label="EQ",fontsize=16,color="green",shape="box"];983[label="xwv400",fontsize=16,color="green",shape="box"];984[label="xwv300",fontsize=16,color="green",shape="box"];985[label="xwv400",fontsize=16,color="green",shape="box"];986[label="xwv300",fontsize=16,color="green",shape="box"];987[label="xwv400",fontsize=16,color="green",shape="box"];988[label="xwv300",fontsize=16,color="green",shape="box"];989[label="xwv400",fontsize=16,color="green",shape="box"];990[label="xwv300",fontsize=16,color="green",shape="box"];991[label="xwv400",fontsize=16,color="green",shape="box"];992[label="xwv300",fontsize=16,color="green",shape="box"];993[label="xwv400",fontsize=16,color="green",shape="box"];994[label="xwv300",fontsize=16,color="green",shape="box"];995[label="xwv400",fontsize=16,color="green",shape="box"];996[label="xwv300",fontsize=16,color="green",shape="box"];997[label="xwv400",fontsize=16,color="green",shape="box"];998[label="xwv300",fontsize=16,color="green",shape="box"];999[label="xwv400",fontsize=16,color="green",shape="box"];1000[label="xwv300",fontsize=16,color="green",shape="box"];1001[label="xwv400",fontsize=16,color="green",shape="box"];1002[label="xwv300",fontsize=16,color="green",shape="box"];1003[label="xwv400",fontsize=16,color="green",shape="box"];1004[label="xwv300",fontsize=16,color="green",shape="box"];1005[label="xwv400",fontsize=16,color="green",shape="box"];1006[label="xwv300",fontsize=16,color="green",shape="box"];1007[label="xwv400",fontsize=16,color="green",shape="box"];1008[label="xwv300",fontsize=16,color="green",shape="box"];1009[label="xwv400",fontsize=16,color="green",shape="box"];1010[label="xwv300",fontsize=16,color="green",shape="box"];1011 -> 1671[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1011[label="compare1 (Left xwv99) (Left xwv100) (Left xwv99 <= Left xwv100)",fontsize=16,color="magenta"];1011 -> 1672[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1011 -> 1673[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1011 -> 1674[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1012[label="EQ",fontsize=16,color="green",shape="box"];1013[label="LT",fontsize=16,color="green",shape="box"];1014[label="compare0 (Right xwv400) (Left xwv300) otherwise",fontsize=16,color="black",shape="box"];1014 -> 1271[label="",style="solid", color="black", weight=3]; 37.19/18.87 1015[label="xwv400",fontsize=16,color="green",shape="box"];1016[label="xwv300",fontsize=16,color="green",shape="box"];1017[label="xwv400",fontsize=16,color="green",shape="box"];1018[label="xwv300",fontsize=16,color="green",shape="box"];1019[label="xwv400",fontsize=16,color="green",shape="box"];1020[label="xwv300",fontsize=16,color="green",shape="box"];1021[label="xwv400",fontsize=16,color="green",shape="box"];1022[label="xwv300",fontsize=16,color="green",shape="box"];1023[label="xwv400",fontsize=16,color="green",shape="box"];1024[label="xwv300",fontsize=16,color="green",shape="box"];1025[label="xwv400",fontsize=16,color="green",shape="box"];1026[label="xwv300",fontsize=16,color="green",shape="box"];1027[label="xwv400",fontsize=16,color="green",shape="box"];1028[label="xwv300",fontsize=16,color="green",shape="box"];1029[label="xwv400",fontsize=16,color="green",shape="box"];1030[label="xwv300",fontsize=16,color="green",shape="box"];1031[label="xwv400",fontsize=16,color="green",shape="box"];1032[label="xwv300",fontsize=16,color="green",shape="box"];1033[label="xwv400",fontsize=16,color="green",shape="box"];1034[label="xwv300",fontsize=16,color="green",shape="box"];1035[label="xwv400",fontsize=16,color="green",shape="box"];1036[label="xwv300",fontsize=16,color="green",shape="box"];1037[label="xwv400",fontsize=16,color="green",shape="box"];1038[label="xwv300",fontsize=16,color="green",shape="box"];1039[label="xwv400",fontsize=16,color="green",shape="box"];1040[label="xwv300",fontsize=16,color="green",shape="box"];1041[label="xwv400",fontsize=16,color="green",shape="box"];1042[label="xwv300",fontsize=16,color="green",shape="box"];1043 -> 1682[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1043[label="compare1 (Right xwv106) (Right xwv107) (Right xwv106 <= Right xwv107)",fontsize=16,color="magenta"];1043 -> 1683[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1043 -> 1684[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1043 -> 1685[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1044[label="EQ",fontsize=16,color="green",shape="box"];1045[label="primMulInt (Pos xwv3000) (Pos xwv4010)",fontsize=16,color="black",shape="box"];1045 -> 1273[label="",style="solid", color="black", weight=3]; 37.19/18.87 1046[label="primMulInt (Pos xwv3000) (Neg xwv4010)",fontsize=16,color="black",shape="box"];1046 -> 1274[label="",style="solid", color="black", weight=3]; 37.19/18.87 1047[label="primMulInt (Neg xwv3000) (Pos xwv4010)",fontsize=16,color="black",shape="box"];1047 -> 1275[label="",style="solid", color="black", weight=3]; 37.19/18.87 1048[label="primMulInt (Neg xwv3000) (Neg xwv4010)",fontsize=16,color="black",shape="box"];1048 -> 1276[label="",style="solid", color="black", weight=3]; 37.19/18.87 1049[label="Integer (primMulInt xwv3000 xwv4010)",fontsize=16,color="green",shape="box"];1049 -> 1277[label="",style="dashed", color="green", weight=3]; 37.19/18.87 1050 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1050[label="xwv280 == xwv330",fontsize=16,color="magenta"];1050 -> 1278[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1050 -> 1279[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1051 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1051[label="xwv280 == xwv330",fontsize=16,color="magenta"];1051 -> 1280[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1051 -> 1281[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1052 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1052[label="xwv280 == xwv330",fontsize=16,color="magenta"];1052 -> 1282[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1052 -> 1283[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1053 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1053[label="xwv280 == xwv330",fontsize=16,color="magenta"];1053 -> 1284[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1053 -> 1285[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1054 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1054[label="xwv280 == xwv330",fontsize=16,color="magenta"];1054 -> 1286[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1054 -> 1287[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1055 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1055[label="xwv280 == xwv330",fontsize=16,color="magenta"];1055 -> 1288[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1055 -> 1289[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1056 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1056[label="xwv280 == xwv330",fontsize=16,color="magenta"];1056 -> 1290[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1056 -> 1291[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1057 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1057[label="xwv280 == xwv330",fontsize=16,color="magenta"];1057 -> 1292[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1057 -> 1293[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1058 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1058[label="xwv280 == xwv330",fontsize=16,color="magenta"];1058 -> 1294[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1058 -> 1295[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1059 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1059[label="xwv280 == xwv330",fontsize=16,color="magenta"];1059 -> 1296[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1059 -> 1297[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1060 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1060[label="xwv280 == xwv330",fontsize=16,color="magenta"];1060 -> 1298[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1060 -> 1299[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1061 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1061[label="xwv280 == xwv330",fontsize=16,color="magenta"];1061 -> 1300[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1061 -> 1301[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1062 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1062[label="xwv280 == xwv330",fontsize=16,color="magenta"];1062 -> 1302[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1062 -> 1303[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1063 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1063[label="xwv280 == xwv330",fontsize=16,color="magenta"];1063 -> 1304[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1063 -> 1305[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1064 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1064[label="xwv280 * xwv331 == xwv281 * xwv330",fontsize=16,color="magenta"];1064 -> 1306[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1064 -> 1307[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1065[label="primEqInt (Pos (Succ xwv2800)) (Pos xwv330)",fontsize=16,color="burlywood",shape="box"];4221[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1065 -> 4221[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4221 -> 1308[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4222[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1065 -> 4222[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4222 -> 1309[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 1066[label="primEqInt (Pos (Succ xwv2800)) (Neg xwv330)",fontsize=16,color="black",shape="box"];1066 -> 1310[label="",style="solid", color="black", weight=3]; 37.19/18.87 1067[label="primEqInt (Pos Zero) (Pos xwv330)",fontsize=16,color="burlywood",shape="box"];4223[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1067 -> 4223[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4223 -> 1311[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4224[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1067 -> 4224[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4224 -> 1312[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 1068[label="primEqInt (Pos Zero) (Neg xwv330)",fontsize=16,color="burlywood",shape="box"];4225[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1068 -> 4225[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4225 -> 1313[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4226[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1068 -> 4226[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4226 -> 1314[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 1069[label="primEqInt (Neg (Succ xwv2800)) (Pos xwv330)",fontsize=16,color="black",shape="box"];1069 -> 1315[label="",style="solid", color="black", weight=3]; 37.19/18.87 1070[label="primEqInt (Neg (Succ xwv2800)) (Neg xwv330)",fontsize=16,color="burlywood",shape="box"];4227[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1070 -> 4227[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4227 -> 1316[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4228[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1070 -> 4228[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4228 -> 1317[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 1071[label="primEqInt (Neg Zero) (Pos xwv330)",fontsize=16,color="burlywood",shape="box"];4229[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1071 -> 4229[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4229 -> 1318[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4230[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1071 -> 4230[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4230 -> 1319[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 1072[label="primEqInt (Neg Zero) (Neg xwv330)",fontsize=16,color="burlywood",shape="box"];4231[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1072 -> 4231[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4231 -> 1320[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4232[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1072 -> 4232[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4232 -> 1321[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 1073 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1073[label="xwv280 == xwv330",fontsize=16,color="magenta"];1073 -> 1322[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1073 -> 1323[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1074 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1074[label="xwv280 == xwv330",fontsize=16,color="magenta"];1074 -> 1324[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1074 -> 1325[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1075 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1075[label="xwv280 == xwv330",fontsize=16,color="magenta"];1075 -> 1326[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1075 -> 1327[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1076 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1076[label="xwv280 == xwv330",fontsize=16,color="magenta"];1076 -> 1328[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1076 -> 1329[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1077 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1077[label="xwv280 == xwv330",fontsize=16,color="magenta"];1077 -> 1330[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1077 -> 1331[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1078 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1078[label="xwv280 == xwv330",fontsize=16,color="magenta"];1078 -> 1332[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1078 -> 1333[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1079 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1079[label="xwv280 == xwv330",fontsize=16,color="magenta"];1079 -> 1334[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1079 -> 1335[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1080 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1080[label="xwv280 == xwv330",fontsize=16,color="magenta"];1080 -> 1336[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1080 -> 1337[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1081 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1081[label="xwv280 == xwv330",fontsize=16,color="magenta"];1081 -> 1338[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1081 -> 1339[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1082 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1082[label="xwv280 == xwv330",fontsize=16,color="magenta"];1082 -> 1340[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1082 -> 1341[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1083 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1083[label="xwv280 == xwv330",fontsize=16,color="magenta"];1083 -> 1342[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1083 -> 1343[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1084 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1084[label="xwv280 == xwv330",fontsize=16,color="magenta"];1084 -> 1344[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1084 -> 1345[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1085 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1085[label="xwv280 == xwv330",fontsize=16,color="magenta"];1085 -> 1346[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1085 -> 1347[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1086 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1086[label="xwv280 == xwv330",fontsize=16,color="magenta"];1086 -> 1348[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1086 -> 1349[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1087 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1087[label="xwv280 == xwv330",fontsize=16,color="magenta"];1087 -> 1350[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1087 -> 1351[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1088 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1088[label="xwv280 == xwv330",fontsize=16,color="magenta"];1088 -> 1352[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1088 -> 1353[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1089 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1089[label="xwv280 == xwv330",fontsize=16,color="magenta"];1089 -> 1354[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1089 -> 1355[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1090 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1090[label="xwv280 == xwv330",fontsize=16,color="magenta"];1090 -> 1356[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1090 -> 1357[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1091 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1091[label="xwv280 == xwv330",fontsize=16,color="magenta"];1091 -> 1358[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1091 -> 1359[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1092 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1092[label="xwv280 == xwv330",fontsize=16,color="magenta"];1092 -> 1360[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1092 -> 1361[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1093 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1093[label="xwv280 == xwv330",fontsize=16,color="magenta"];1093 -> 1362[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1093 -> 1363[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1094 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1094[label="xwv280 == xwv330",fontsize=16,color="magenta"];1094 -> 1364[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1094 -> 1365[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1095 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1095[label="xwv280 == xwv330",fontsize=16,color="magenta"];1095 -> 1366[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1095 -> 1367[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1096 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1096[label="xwv280 == xwv330",fontsize=16,color="magenta"];1096 -> 1368[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1096 -> 1369[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1097 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1097[label="xwv280 == xwv330",fontsize=16,color="magenta"];1097 -> 1370[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1097 -> 1371[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1098 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1098[label="xwv280 == xwv330",fontsize=16,color="magenta"];1098 -> 1372[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1098 -> 1373[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1099 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1099[label="xwv280 == xwv330",fontsize=16,color="magenta"];1099 -> 1374[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1099 -> 1375[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1100 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1100[label="xwv280 == xwv330",fontsize=16,color="magenta"];1100 -> 1376[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1100 -> 1377[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1101[label="primEqNat xwv280 xwv330",fontsize=16,color="burlywood",shape="triangle"];4233[label="xwv280/Succ xwv2800",fontsize=10,color="white",style="solid",shape="box"];1101 -> 4233[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4233 -> 1378[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4234[label="xwv280/Zero",fontsize=10,color="white",style="solid",shape="box"];1101 -> 4234[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4234 -> 1379[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 1210[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4235[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1210 -> 4235[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4235 -> 1380[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4236[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1210 -> 4236[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4236 -> 1381[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4237[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1210 -> 4237[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4237 -> 1382[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4238[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1210 -> 4238[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4238 -> 1383[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4239[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1210 -> 4239[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4239 -> 1384[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4240[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1210 -> 4240[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4240 -> 1385[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4241[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1210 -> 4241[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4241 -> 1386[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4242[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1210 -> 4242[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4242 -> 1387[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4243[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1210 -> 4243[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4243 -> 1388[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4244[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1210 -> 4244[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4244 -> 1389[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4245[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1210 -> 4245[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4245 -> 1390[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4246[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1210 -> 4246[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4246 -> 1391[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4247[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1210 -> 4247[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4247 -> 1392[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4248[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1210 -> 4248[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4248 -> 1393[label="",style="solid", color="blue", weight=3]; 37.19/18.87 1211[label="xwv281 == xwv331",fontsize=16,color="blue",shape="box"];4249[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 4249[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4249 -> 1394[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4250[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 4250[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4250 -> 1395[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4251[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 4251[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4251 -> 1396[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4252[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 4252[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4252 -> 1397[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4253[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 4253[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4253 -> 1398[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4254[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 4254[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4254 -> 1399[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4255[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 4255[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4255 -> 1400[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4256[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 4256[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4256 -> 1401[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4257[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 4257[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4257 -> 1402[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4258[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 4258[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4258 -> 1403[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4259[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 4259[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4259 -> 1404[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4260[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 4260[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4260 -> 1405[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4261[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 4261[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4261 -> 1406[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4262[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1211 -> 4262[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4262 -> 1407[label="",style="solid", color="blue", weight=3]; 37.19/18.87 1112 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1112[label="xwv280 * xwv331 == xwv281 * xwv330",fontsize=16,color="magenta"];1112 -> 1408[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1112 -> 1409[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1212[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4263[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 4263[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4263 -> 1410[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4264[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 4264[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4264 -> 1411[label="",style="solid", color="blue", weight=3]; 37.19/18.87 1213[label="xwv281 == xwv331",fontsize=16,color="blue",shape="box"];4265[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1213 -> 4265[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4265 -> 1412[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4266[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1213 -> 4266[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4266 -> 1413[label="",style="solid", color="blue", weight=3]; 37.19/18.87 1214[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4267[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 4267[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4267 -> 1414[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4268[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 4268[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4268 -> 1415[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4269[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 4269[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4269 -> 1416[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4270[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 4270[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4270 -> 1417[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4271[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 4271[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4271 -> 1418[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4272[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 4272[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4272 -> 1419[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4273[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 4273[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4273 -> 1420[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4274[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 4274[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4274 -> 1421[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4275[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 4275[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4275 -> 1422[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4276[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 4276[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4276 -> 1423[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4277[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 4277[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4277 -> 1424[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4278[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 4278[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4278 -> 1425[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4279[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 4279[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4279 -> 1426[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4280[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 4280[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4280 -> 1427[label="",style="solid", color="blue", weight=3]; 37.19/18.87 1215 -> 1201[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1215[label="xwv281 == xwv331 && xwv282 == xwv332",fontsize=16,color="magenta"];1215 -> 1428[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1215 -> 1429[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1124[label="xwv280",fontsize=16,color="green",shape="box"];1125[label="xwv330",fontsize=16,color="green",shape="box"];1216[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4281[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1216 -> 4281[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4281 -> 1430[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4282[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1216 -> 4282[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4282 -> 1431[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4283[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1216 -> 4283[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4283 -> 1432[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4284[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1216 -> 4284[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4284 -> 1433[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4285[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1216 -> 4285[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4285 -> 1434[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4286[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1216 -> 4286[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4286 -> 1435[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4287[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1216 -> 4287[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4287 -> 1436[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4288[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1216 -> 4288[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4288 -> 1437[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4289[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1216 -> 4289[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4289 -> 1438[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4290[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1216 -> 4290[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4290 -> 1439[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4291[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1216 -> 4291[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4291 -> 1440[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4292[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1216 -> 4292[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4292 -> 1441[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4293[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1216 -> 4293[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4293 -> 1442[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4294[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1216 -> 4294[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4294 -> 1443[label="",style="solid", color="blue", weight=3]; 37.19/18.87 1217 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1217[label="xwv281 == xwv331",fontsize=16,color="magenta"];1217 -> 1444[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1217 -> 1445[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1126[label="xwv52",fontsize=16,color="green",shape="box"];1127[label="FiniteMap.glueBal3 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1127 -> 1446[label="",style="solid", color="black", weight=3]; 37.19/18.87 1128[label="FiniteMap.glueBal2 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="black",shape="box"];1128 -> 1447[label="",style="solid", color="black", weight=3]; 37.19/18.87 1133[label="FiniteMap.sizeFM xwv35",fontsize=16,color="burlywood",shape="triangle"];4295[label="xwv35/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1133 -> 4295[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4295 -> 1580[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4296[label="xwv35/FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354",fontsize=10,color="white",style="solid",shape="box"];1133 -> 4296[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4296 -> 1581[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 1584[label="xwv16",fontsize=16,color="green",shape="box"];1585[label="primPlusInt (Pos xwv1620) (Pos xwv1370)",fontsize=16,color="black",shape="box"];1585 -> 1595[label="",style="solid", color="black", weight=3]; 37.19/18.87 1586[label="primPlusInt (Pos xwv1620) (Neg xwv1370)",fontsize=16,color="black",shape="box"];1586 -> 1596[label="",style="solid", color="black", weight=3]; 37.19/18.87 1587[label="primPlusInt (Neg xwv1620) (Pos xwv1370)",fontsize=16,color="black",shape="box"];1587 -> 1597[label="",style="solid", color="black", weight=3]; 37.19/18.87 1588[label="primPlusInt (Neg xwv1620) (Neg xwv1370)",fontsize=16,color="black",shape="box"];1588 -> 1598[label="",style="solid", color="black", weight=3]; 37.19/18.87 1131 -> 1568[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1131[label="FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35",fontsize=16,color="magenta"];1132[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1132 -> 1579[label="",style="solid", color="black", weight=3]; 37.19/18.87 1134 -> 1582[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1134[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 (FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35)",fontsize=16,color="magenta"];1134 -> 1583[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1135[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv16 xwv13 xwv14 xwv35 xwv16 xwv35 xwv35",fontsize=16,color="burlywood",shape="box"];4297[label="xwv35/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1135 -> 4297[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4297 -> 1589[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4298[label="xwv35/FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354",fontsize=10,color="white",style="solid",shape="box"];1135 -> 4298[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4298 -> 1590[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 1136[label="FiniteMap.mkBranchUnbox xwv16 xwv13 xwv35 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv13 xwv35 + FiniteMap.mkBranchRight_size xwv16 xwv13 xwv35)",fontsize=16,color="black",shape="box"];1136 -> 1591[label="",style="solid", color="black", weight=3]; 37.19/18.87 1137[label="compare0 True False True",fontsize=16,color="black",shape="box"];1137 -> 1592[label="",style="solid", color="black", weight=3]; 37.19/18.87 1450[label="xwv400",fontsize=16,color="green",shape="box"];1451[label="xwv300",fontsize=16,color="green",shape="box"];1452[label="xwv400",fontsize=16,color="green",shape="box"];1453[label="xwv300",fontsize=16,color="green",shape="box"];1454[label="xwv400",fontsize=16,color="green",shape="box"];1455[label="xwv300",fontsize=16,color="green",shape="box"];1456[label="xwv400",fontsize=16,color="green",shape="box"];1457[label="xwv300",fontsize=16,color="green",shape="box"];1458[label="xwv400",fontsize=16,color="green",shape="box"];1459[label="xwv300",fontsize=16,color="green",shape="box"];1460[label="xwv400",fontsize=16,color="green",shape="box"];1461[label="xwv300",fontsize=16,color="green",shape="box"];1462[label="xwv400",fontsize=16,color="green",shape="box"];1463[label="xwv300",fontsize=16,color="green",shape="box"];1464[label="xwv400",fontsize=16,color="green",shape="box"];1465[label="xwv300",fontsize=16,color="green",shape="box"];1466[label="xwv400",fontsize=16,color="green",shape="box"];1467[label="xwv300",fontsize=16,color="green",shape="box"];1468[label="xwv400",fontsize=16,color="green",shape="box"];1469[label="xwv300",fontsize=16,color="green",shape="box"];1470[label="xwv400",fontsize=16,color="green",shape="box"];1471[label="xwv300",fontsize=16,color="green",shape="box"];1472[label="xwv400",fontsize=16,color="green",shape="box"];1473[label="xwv300",fontsize=16,color="green",shape="box"];1474[label="xwv400",fontsize=16,color="green",shape="box"];1475[label="xwv300",fontsize=16,color="green",shape="box"];1476[label="xwv400",fontsize=16,color="green",shape="box"];1477[label="xwv300",fontsize=16,color="green",shape="box"];1478[label="xwv401",fontsize=16,color="green",shape="box"];1479[label="xwv301",fontsize=16,color="green",shape="box"];1480[label="xwv401",fontsize=16,color="green",shape="box"];1481[label="xwv301",fontsize=16,color="green",shape="box"];1482[label="xwv401",fontsize=16,color="green",shape="box"];1483[label="xwv301",fontsize=16,color="green",shape="box"];1484[label="xwv401",fontsize=16,color="green",shape="box"];1485[label="xwv301",fontsize=16,color="green",shape="box"];1486[label="xwv401",fontsize=16,color="green",shape="box"];1487[label="xwv301",fontsize=16,color="green",shape="box"];1488[label="xwv401",fontsize=16,color="green",shape="box"];1489[label="xwv301",fontsize=16,color="green",shape="box"];1490[label="xwv401",fontsize=16,color="green",shape="box"];1491[label="xwv301",fontsize=16,color="green",shape="box"];1492[label="xwv401",fontsize=16,color="green",shape="box"];1493[label="xwv301",fontsize=16,color="green",shape="box"];1494[label="xwv401",fontsize=16,color="green",shape="box"];1495[label="xwv301",fontsize=16,color="green",shape="box"];1496[label="xwv401",fontsize=16,color="green",shape="box"];1497[label="xwv301",fontsize=16,color="green",shape="box"];1498[label="xwv401",fontsize=16,color="green",shape="box"];1499[label="xwv301",fontsize=16,color="green",shape="box"];1500[label="xwv401",fontsize=16,color="green",shape="box"];1501[label="xwv301",fontsize=16,color="green",shape="box"];1502[label="xwv401",fontsize=16,color="green",shape="box"];1503[label="xwv301",fontsize=16,color="green",shape="box"];1504[label="xwv401",fontsize=16,color="green",shape="box"];1505[label="xwv301",fontsize=16,color="green",shape="box"];1506[label="False",fontsize=16,color="green",shape="box"];1507[label="xwv135",fontsize=16,color="green",shape="box"];1508 -> 1889[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1508[label="compare1 (xwv125,xwv126) (xwv127,xwv128) (xwv125 < xwv127 || xwv125 == xwv127 && xwv126 <= xwv128)",fontsize=16,color="magenta"];1508 -> 1890[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1508 -> 1891[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1508 -> 1892[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1508 -> 1893[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1508 -> 1894[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1508 -> 1895[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1165[label="compare0 (Just xwv400) Nothing True",fontsize=16,color="black",shape="box"];1165 -> 1599[label="",style="solid", color="black", weight=3]; 37.19/18.87 1601[label="xwv73",fontsize=16,color="green",shape="box"];1602[label="xwv72",fontsize=16,color="green",shape="box"];1603[label="Just xwv72 <= Just xwv73",fontsize=16,color="black",shape="box"];1603 -> 1607[label="",style="solid", color="black", weight=3]; 37.19/18.87 1600[label="compare1 (Just xwv148) (Just xwv149) xwv150",fontsize=16,color="burlywood",shape="triangle"];4299[label="xwv150/False",fontsize=10,color="white",style="solid",shape="box"];1600 -> 4299[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4299 -> 1608[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4300[label="xwv150/True",fontsize=10,color="white",style="solid",shape="box"];1600 -> 4300[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4300 -> 1609[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 1167[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];1167 -> 1610[label="",style="solid", color="black", weight=3]; 37.19/18.87 1168[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];1168 -> 1611[label="",style="solid", color="black", weight=3]; 37.19/18.87 1169[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];1169 -> 1612[label="",style="solid", color="black", weight=3]; 37.19/18.87 1509[label="xwv400",fontsize=16,color="green",shape="box"];1510[label="xwv300",fontsize=16,color="green",shape="box"];1511[label="xwv400",fontsize=16,color="green",shape="box"];1512[label="xwv300",fontsize=16,color="green",shape="box"];1513[label="xwv400",fontsize=16,color="green",shape="box"];1514[label="xwv300",fontsize=16,color="green",shape="box"];1515[label="xwv400",fontsize=16,color="green",shape="box"];1516[label="xwv300",fontsize=16,color="green",shape="box"];1517[label="xwv400",fontsize=16,color="green",shape="box"];1518[label="xwv300",fontsize=16,color="green",shape="box"];1519[label="xwv400",fontsize=16,color="green",shape="box"];1520[label="xwv300",fontsize=16,color="green",shape="box"];1521[label="xwv400",fontsize=16,color="green",shape="box"];1522[label="xwv300",fontsize=16,color="green",shape="box"];1523[label="xwv400",fontsize=16,color="green",shape="box"];1524[label="xwv300",fontsize=16,color="green",shape="box"];1525[label="xwv400",fontsize=16,color="green",shape="box"];1526[label="xwv300",fontsize=16,color="green",shape="box"];1527[label="xwv400",fontsize=16,color="green",shape="box"];1528[label="xwv300",fontsize=16,color="green",shape="box"];1529[label="xwv400",fontsize=16,color="green",shape="box"];1530[label="xwv300",fontsize=16,color="green",shape="box"];1531[label="xwv400",fontsize=16,color="green",shape="box"];1532[label="xwv300",fontsize=16,color="green",shape="box"];1533[label="xwv400",fontsize=16,color="green",shape="box"];1534[label="xwv300",fontsize=16,color="green",shape="box"];1535[label="xwv400",fontsize=16,color="green",shape="box"];1536[label="xwv300",fontsize=16,color="green",shape="box"];1537 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1537[label="xwv401 == xwv301",fontsize=16,color="magenta"];1537 -> 1613[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1537 -> 1614[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1538 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1538[label="xwv401 == xwv301",fontsize=16,color="magenta"];1538 -> 1615[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1538 -> 1616[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1539 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1539[label="xwv401 == xwv301",fontsize=16,color="magenta"];1539 -> 1617[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1539 -> 1618[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1540 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1540[label="xwv401 == xwv301",fontsize=16,color="magenta"];1540 -> 1619[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1540 -> 1620[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1541 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1541[label="xwv401 == xwv301",fontsize=16,color="magenta"];1541 -> 1621[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1541 -> 1622[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1542 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1542[label="xwv401 == xwv301",fontsize=16,color="magenta"];1542 -> 1623[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1542 -> 1624[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1543 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1543[label="xwv401 == xwv301",fontsize=16,color="magenta"];1543 -> 1625[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1543 -> 1626[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1544 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1544[label="xwv401 == xwv301",fontsize=16,color="magenta"];1544 -> 1627[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1544 -> 1628[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1545 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1545[label="xwv401 == xwv301",fontsize=16,color="magenta"];1545 -> 1629[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1545 -> 1630[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1546 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1546[label="xwv401 == xwv301",fontsize=16,color="magenta"];1546 -> 1631[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1546 -> 1632[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1547 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1547[label="xwv401 == xwv301",fontsize=16,color="magenta"];1547 -> 1633[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1547 -> 1634[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1548 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1548[label="xwv401 == xwv301",fontsize=16,color="magenta"];1548 -> 1635[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1548 -> 1636[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1549 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1549[label="xwv401 == xwv301",fontsize=16,color="magenta"];1549 -> 1637[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1549 -> 1638[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1550 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1550[label="xwv401 == xwv301",fontsize=16,color="magenta"];1550 -> 1639[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1550 -> 1640[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1551 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1551[label="xwv402 == xwv302",fontsize=16,color="magenta"];1551 -> 1641[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1551 -> 1642[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1552 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1552[label="xwv402 == xwv302",fontsize=16,color="magenta"];1552 -> 1643[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1552 -> 1644[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1553 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1553[label="xwv402 == xwv302",fontsize=16,color="magenta"];1553 -> 1645[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1553 -> 1646[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1554 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1554[label="xwv402 == xwv302",fontsize=16,color="magenta"];1554 -> 1647[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1554 -> 1648[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1555 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1555[label="xwv402 == xwv302",fontsize=16,color="magenta"];1555 -> 1649[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1555 -> 1650[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1556 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1556[label="xwv402 == xwv302",fontsize=16,color="magenta"];1556 -> 1651[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1556 -> 1652[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1557 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1557[label="xwv402 == xwv302",fontsize=16,color="magenta"];1557 -> 1653[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1557 -> 1654[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1558 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1558[label="xwv402 == xwv302",fontsize=16,color="magenta"];1558 -> 1655[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1558 -> 1656[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1559 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1559[label="xwv402 == xwv302",fontsize=16,color="magenta"];1559 -> 1657[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1559 -> 1658[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1560 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1560[label="xwv402 == xwv302",fontsize=16,color="magenta"];1560 -> 1659[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1560 -> 1660[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1561 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1561[label="xwv402 == xwv302",fontsize=16,color="magenta"];1561 -> 1661[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1561 -> 1662[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1562 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1562[label="xwv402 == xwv302",fontsize=16,color="magenta"];1562 -> 1663[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1562 -> 1664[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1563 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1563[label="xwv402 == xwv302",fontsize=16,color="magenta"];1563 -> 1665[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1563 -> 1666[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1564 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1564[label="xwv402 == xwv302",fontsize=16,color="magenta"];1564 -> 1667[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1564 -> 1668[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1565 -> 1938[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1565[label="compare1 (xwv88,xwv89,xwv90) (xwv91,xwv92,xwv93) (xwv88 < xwv91 || xwv88 == xwv91 && (xwv89 < xwv92 || xwv89 == xwv92 && xwv90 <= xwv93))",fontsize=16,color="magenta"];1565 -> 1939[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1565 -> 1940[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1565 -> 1941[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1565 -> 1942[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1565 -> 1943[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1565 -> 1944[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1565 -> 1945[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1565 -> 1946[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1672[label="xwv100",fontsize=16,color="green",shape="box"];1673[label="Left xwv99 <= Left xwv100",fontsize=16,color="black",shape="box"];1673 -> 1678[label="",style="solid", color="black", weight=3]; 37.19/18.87 1674[label="xwv99",fontsize=16,color="green",shape="box"];1671[label="compare1 (Left xwv157) (Left xwv158) xwv159",fontsize=16,color="burlywood",shape="triangle"];4301[label="xwv159/False",fontsize=10,color="white",style="solid",shape="box"];1671 -> 4301[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4301 -> 1679[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4302[label="xwv159/True",fontsize=10,color="white",style="solid",shape="box"];1671 -> 4302[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4302 -> 1680[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 1271[label="compare0 (Right xwv400) (Left xwv300) True",fontsize=16,color="black",shape="box"];1271 -> 1681[label="",style="solid", color="black", weight=3]; 37.19/18.87 1683[label="xwv107",fontsize=16,color="green",shape="box"];1684[label="Right xwv106 <= Right xwv107",fontsize=16,color="black",shape="box"];1684 -> 1689[label="",style="solid", color="black", weight=3]; 37.19/18.87 1685[label="xwv106",fontsize=16,color="green",shape="box"];1682[label="compare1 (Right xwv164) (Right xwv165) xwv166",fontsize=16,color="burlywood",shape="triangle"];4303[label="xwv166/False",fontsize=10,color="white",style="solid",shape="box"];1682 -> 4303[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4303 -> 1690[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4304[label="xwv166/True",fontsize=10,color="white",style="solid",shape="box"];1682 -> 4304[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4304 -> 1691[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 1273[label="Pos (primMulNat xwv3000 xwv4010)",fontsize=16,color="green",shape="box"];1273 -> 1692[label="",style="dashed", color="green", weight=3]; 37.19/18.87 1274[label="Neg (primMulNat xwv3000 xwv4010)",fontsize=16,color="green",shape="box"];1274 -> 1693[label="",style="dashed", color="green", weight=3]; 37.19/18.87 1275[label="Neg (primMulNat xwv3000 xwv4010)",fontsize=16,color="green",shape="box"];1275 -> 1694[label="",style="dashed", color="green", weight=3]; 37.19/18.87 1276[label="Pos (primMulNat xwv3000 xwv4010)",fontsize=16,color="green",shape="box"];1276 -> 1695[label="",style="dashed", color="green", weight=3]; 37.19/18.87 1277 -> 588[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1277[label="primMulInt xwv3000 xwv4010",fontsize=16,color="magenta"];1277 -> 1696[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1277 -> 1697[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1278[label="xwv280",fontsize=16,color="green",shape="box"];1279[label="xwv330",fontsize=16,color="green",shape="box"];1280[label="xwv280",fontsize=16,color="green",shape="box"];1281[label="xwv330",fontsize=16,color="green",shape="box"];1282[label="xwv280",fontsize=16,color="green",shape="box"];1283[label="xwv330",fontsize=16,color="green",shape="box"];1284[label="xwv280",fontsize=16,color="green",shape="box"];1285[label="xwv330",fontsize=16,color="green",shape="box"];1286[label="xwv280",fontsize=16,color="green",shape="box"];1287[label="xwv330",fontsize=16,color="green",shape="box"];1288[label="xwv280",fontsize=16,color="green",shape="box"];1289[label="xwv330",fontsize=16,color="green",shape="box"];1290[label="xwv280",fontsize=16,color="green",shape="box"];1291[label="xwv330",fontsize=16,color="green",shape="box"];1292[label="xwv280",fontsize=16,color="green",shape="box"];1293[label="xwv330",fontsize=16,color="green",shape="box"];1294[label="xwv280",fontsize=16,color="green",shape="box"];1295[label="xwv330",fontsize=16,color="green",shape="box"];1296[label="xwv280",fontsize=16,color="green",shape="box"];1297[label="xwv330",fontsize=16,color="green",shape="box"];1298[label="xwv280",fontsize=16,color="green",shape="box"];1299[label="xwv330",fontsize=16,color="green",shape="box"];1300[label="xwv280",fontsize=16,color="green",shape="box"];1301[label="xwv330",fontsize=16,color="green",shape="box"];1302[label="xwv280",fontsize=16,color="green",shape="box"];1303[label="xwv330",fontsize=16,color="green",shape="box"];1304[label="xwv280",fontsize=16,color="green",shape="box"];1305[label="xwv330",fontsize=16,color="green",shape="box"];1306 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1306[label="xwv280 * xwv331",fontsize=16,color="magenta"];1306 -> 1698[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1306 -> 1699[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1307 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1307[label="xwv281 * xwv330",fontsize=16,color="magenta"];1307 -> 1700[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1307 -> 1701[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1308[label="primEqInt (Pos (Succ xwv2800)) (Pos (Succ xwv3300))",fontsize=16,color="black",shape="box"];1308 -> 1702[label="",style="solid", color="black", weight=3]; 37.19/18.87 1309[label="primEqInt (Pos (Succ xwv2800)) (Pos Zero)",fontsize=16,color="black",shape="box"];1309 -> 1703[label="",style="solid", color="black", weight=3]; 37.19/18.87 1310[label="False",fontsize=16,color="green",shape="box"];1311[label="primEqInt (Pos Zero) (Pos (Succ xwv3300))",fontsize=16,color="black",shape="box"];1311 -> 1704[label="",style="solid", color="black", weight=3]; 37.19/18.87 1312[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1312 -> 1705[label="",style="solid", color="black", weight=3]; 37.19/18.87 1313[label="primEqInt (Pos Zero) (Neg (Succ xwv3300))",fontsize=16,color="black",shape="box"];1313 -> 1706[label="",style="solid", color="black", weight=3]; 37.19/18.87 1314[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1314 -> 1707[label="",style="solid", color="black", weight=3]; 37.19/18.87 1315[label="False",fontsize=16,color="green",shape="box"];1316[label="primEqInt (Neg (Succ xwv2800)) (Neg (Succ xwv3300))",fontsize=16,color="black",shape="box"];1316 -> 1708[label="",style="solid", color="black", weight=3]; 37.19/18.87 1317[label="primEqInt (Neg (Succ xwv2800)) (Neg Zero)",fontsize=16,color="black",shape="box"];1317 -> 1709[label="",style="solid", color="black", weight=3]; 37.19/18.87 1318[label="primEqInt (Neg Zero) (Pos (Succ xwv3300))",fontsize=16,color="black",shape="box"];1318 -> 1710[label="",style="solid", color="black", weight=3]; 37.19/18.87 1319[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1319 -> 1711[label="",style="solid", color="black", weight=3]; 37.19/18.87 1320[label="primEqInt (Neg Zero) (Neg (Succ xwv3300))",fontsize=16,color="black",shape="box"];1320 -> 1712[label="",style="solid", color="black", weight=3]; 37.19/18.87 1321[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1321 -> 1713[label="",style="solid", color="black", weight=3]; 37.19/18.87 1322[label="xwv280",fontsize=16,color="green",shape="box"];1323[label="xwv330",fontsize=16,color="green",shape="box"];1324[label="xwv280",fontsize=16,color="green",shape="box"];1325[label="xwv330",fontsize=16,color="green",shape="box"];1326[label="xwv280",fontsize=16,color="green",shape="box"];1327[label="xwv330",fontsize=16,color="green",shape="box"];1328[label="xwv280",fontsize=16,color="green",shape="box"];1329[label="xwv330",fontsize=16,color="green",shape="box"];1330[label="xwv280",fontsize=16,color="green",shape="box"];1331[label="xwv330",fontsize=16,color="green",shape="box"];1332[label="xwv280",fontsize=16,color="green",shape="box"];1333[label="xwv330",fontsize=16,color="green",shape="box"];1334[label="xwv280",fontsize=16,color="green",shape="box"];1335[label="xwv330",fontsize=16,color="green",shape="box"];1336[label="xwv280",fontsize=16,color="green",shape="box"];1337[label="xwv330",fontsize=16,color="green",shape="box"];1338[label="xwv280",fontsize=16,color="green",shape="box"];1339[label="xwv330",fontsize=16,color="green",shape="box"];1340[label="xwv280",fontsize=16,color="green",shape="box"];1341[label="xwv330",fontsize=16,color="green",shape="box"];1342[label="xwv280",fontsize=16,color="green",shape="box"];1343[label="xwv330",fontsize=16,color="green",shape="box"];1344[label="xwv280",fontsize=16,color="green",shape="box"];1345[label="xwv330",fontsize=16,color="green",shape="box"];1346[label="xwv280",fontsize=16,color="green",shape="box"];1347[label="xwv330",fontsize=16,color="green",shape="box"];1348[label="xwv280",fontsize=16,color="green",shape="box"];1349[label="xwv330",fontsize=16,color="green",shape="box"];1350[label="xwv280",fontsize=16,color="green",shape="box"];1351[label="xwv330",fontsize=16,color="green",shape="box"];1352[label="xwv280",fontsize=16,color="green",shape="box"];1353[label="xwv330",fontsize=16,color="green",shape="box"];1354[label="xwv280",fontsize=16,color="green",shape="box"];1355[label="xwv330",fontsize=16,color="green",shape="box"];1356[label="xwv280",fontsize=16,color="green",shape="box"];1357[label="xwv330",fontsize=16,color="green",shape="box"];1358[label="xwv280",fontsize=16,color="green",shape="box"];1359[label="xwv330",fontsize=16,color="green",shape="box"];1360[label="xwv280",fontsize=16,color="green",shape="box"];1361[label="xwv330",fontsize=16,color="green",shape="box"];1362[label="xwv280",fontsize=16,color="green",shape="box"];1363[label="xwv330",fontsize=16,color="green",shape="box"];1364[label="xwv280",fontsize=16,color="green",shape="box"];1365[label="xwv330",fontsize=16,color="green",shape="box"];1366[label="xwv280",fontsize=16,color="green",shape="box"];1367[label="xwv330",fontsize=16,color="green",shape="box"];1368[label="xwv280",fontsize=16,color="green",shape="box"];1369[label="xwv330",fontsize=16,color="green",shape="box"];1370[label="xwv280",fontsize=16,color="green",shape="box"];1371[label="xwv330",fontsize=16,color="green",shape="box"];1372[label="xwv280",fontsize=16,color="green",shape="box"];1373[label="xwv330",fontsize=16,color="green",shape="box"];1374[label="xwv280",fontsize=16,color="green",shape="box"];1375[label="xwv330",fontsize=16,color="green",shape="box"];1376[label="xwv280",fontsize=16,color="green",shape="box"];1377[label="xwv330",fontsize=16,color="green",shape="box"];1378[label="primEqNat (Succ xwv2800) xwv330",fontsize=16,color="burlywood",shape="box"];4305[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1378 -> 4305[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4305 -> 1714[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4306[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1378 -> 4306[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4306 -> 1715[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 1379[label="primEqNat Zero xwv330",fontsize=16,color="burlywood",shape="box"];4307[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1379 -> 4307[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4307 -> 1716[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 4308[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1379 -> 4308[label="",style="solid", color="burlywood", weight=9]; 37.19/18.87 4308 -> 1717[label="",style="solid", color="burlywood", weight=3]; 37.19/18.87 1380 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1380[label="xwv280 == xwv330",fontsize=16,color="magenta"];1380 -> 1718[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1380 -> 1719[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1381 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1381[label="xwv280 == xwv330",fontsize=16,color="magenta"];1381 -> 1720[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1381 -> 1721[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1382 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1382[label="xwv280 == xwv330",fontsize=16,color="magenta"];1382 -> 1722[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1382 -> 1723[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1383 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1383[label="xwv280 == xwv330",fontsize=16,color="magenta"];1383 -> 1724[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1383 -> 1725[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1384 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1384[label="xwv280 == xwv330",fontsize=16,color="magenta"];1384 -> 1726[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1384 -> 1727[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1385 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1385[label="xwv280 == xwv330",fontsize=16,color="magenta"];1385 -> 1728[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1385 -> 1729[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1386 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1386[label="xwv280 == xwv330",fontsize=16,color="magenta"];1386 -> 1730[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1386 -> 1731[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1387 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1387[label="xwv280 == xwv330",fontsize=16,color="magenta"];1387 -> 1732[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1387 -> 1733[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1388 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1388[label="xwv280 == xwv330",fontsize=16,color="magenta"];1388 -> 1734[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1388 -> 1735[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1389 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1389[label="xwv280 == xwv330",fontsize=16,color="magenta"];1389 -> 1736[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1389 -> 1737[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1390 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1390[label="xwv280 == xwv330",fontsize=16,color="magenta"];1390 -> 1738[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1390 -> 1739[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1391 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1391[label="xwv280 == xwv330",fontsize=16,color="magenta"];1391 -> 1740[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1391 -> 1741[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1392 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1392[label="xwv280 == xwv330",fontsize=16,color="magenta"];1392 -> 1742[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1392 -> 1743[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1393 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1393[label="xwv280 == xwv330",fontsize=16,color="magenta"];1393 -> 1744[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1393 -> 1745[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1394 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1394[label="xwv281 == xwv331",fontsize=16,color="magenta"];1394 -> 1746[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1394 -> 1747[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1395 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1395[label="xwv281 == xwv331",fontsize=16,color="magenta"];1395 -> 1748[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1395 -> 1749[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1396 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1396[label="xwv281 == xwv331",fontsize=16,color="magenta"];1396 -> 1750[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1396 -> 1751[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1397 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1397[label="xwv281 == xwv331",fontsize=16,color="magenta"];1397 -> 1752[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1397 -> 1753[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1398 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1398[label="xwv281 == xwv331",fontsize=16,color="magenta"];1398 -> 1754[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1398 -> 1755[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1399 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1399[label="xwv281 == xwv331",fontsize=16,color="magenta"];1399 -> 1756[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1399 -> 1757[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1400 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1400[label="xwv281 == xwv331",fontsize=16,color="magenta"];1400 -> 1758[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1400 -> 1759[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1401 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1401[label="xwv281 == xwv331",fontsize=16,color="magenta"];1401 -> 1760[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1401 -> 1761[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1402 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1402[label="xwv281 == xwv331",fontsize=16,color="magenta"];1402 -> 1762[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1402 -> 1763[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1403 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1403[label="xwv281 == xwv331",fontsize=16,color="magenta"];1403 -> 1764[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1403 -> 1765[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1404 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1404[label="xwv281 == xwv331",fontsize=16,color="magenta"];1404 -> 1766[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1404 -> 1767[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1405 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1405[label="xwv281 == xwv331",fontsize=16,color="magenta"];1405 -> 1768[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1405 -> 1769[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1406 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1406[label="xwv281 == xwv331",fontsize=16,color="magenta"];1406 -> 1770[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1406 -> 1771[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1407 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1407[label="xwv281 == xwv331",fontsize=16,color="magenta"];1407 -> 1772[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1407 -> 1773[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1408 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1408[label="xwv280 * xwv331",fontsize=16,color="magenta"];1408 -> 1774[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1408 -> 1775[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1409 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1409[label="xwv281 * xwv330",fontsize=16,color="magenta"];1409 -> 1776[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1409 -> 1777[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1410 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1410[label="xwv280 == xwv330",fontsize=16,color="magenta"];1410 -> 1778[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1410 -> 1779[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1411 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1411[label="xwv280 == xwv330",fontsize=16,color="magenta"];1411 -> 1780[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1411 -> 1781[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1412 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1412[label="xwv281 == xwv331",fontsize=16,color="magenta"];1412 -> 1782[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1412 -> 1783[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1413 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1413[label="xwv281 == xwv331",fontsize=16,color="magenta"];1413 -> 1784[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1413 -> 1785[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1414 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1414[label="xwv280 == xwv330",fontsize=16,color="magenta"];1414 -> 1786[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1414 -> 1787[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1415 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1415[label="xwv280 == xwv330",fontsize=16,color="magenta"];1415 -> 1788[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1415 -> 1789[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1416 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1416[label="xwv280 == xwv330",fontsize=16,color="magenta"];1416 -> 1790[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1416 -> 1791[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1417 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1417[label="xwv280 == xwv330",fontsize=16,color="magenta"];1417 -> 1792[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1417 -> 1793[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1418 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1418[label="xwv280 == xwv330",fontsize=16,color="magenta"];1418 -> 1794[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1418 -> 1795[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1419 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1419[label="xwv280 == xwv330",fontsize=16,color="magenta"];1419 -> 1796[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1419 -> 1797[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1420 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1420[label="xwv280 == xwv330",fontsize=16,color="magenta"];1420 -> 1798[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1420 -> 1799[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1421 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1421[label="xwv280 == xwv330",fontsize=16,color="magenta"];1421 -> 1800[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1421 -> 1801[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1422 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1422[label="xwv280 == xwv330",fontsize=16,color="magenta"];1422 -> 1802[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1422 -> 1803[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1423 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1423[label="xwv280 == xwv330",fontsize=16,color="magenta"];1423 -> 1804[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1423 -> 1805[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1424 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1424[label="xwv280 == xwv330",fontsize=16,color="magenta"];1424 -> 1806[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1424 -> 1807[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1425 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1425[label="xwv280 == xwv330",fontsize=16,color="magenta"];1425 -> 1808[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1425 -> 1809[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1426 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1426[label="xwv280 == xwv330",fontsize=16,color="magenta"];1426 -> 1810[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1426 -> 1811[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1427 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.87 1427[label="xwv280 == xwv330",fontsize=16,color="magenta"];1427 -> 1812[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1427 -> 1813[label="",style="dashed", color="magenta", weight=3]; 37.19/18.87 1428[label="xwv281 == xwv331",fontsize=16,color="blue",shape="box"];4309[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 4309[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4309 -> 1814[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4310[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 4310[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4310 -> 1815[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4311[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 4311[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4311 -> 1816[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4312[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 4312[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4312 -> 1817[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4313[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 4313[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4313 -> 1818[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4314[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 4314[label="",style="solid", color="blue", weight=9]; 37.19/18.87 4314 -> 1819[label="",style="solid", color="blue", weight=3]; 37.19/18.87 4315[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 4315[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4315 -> 1820[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4316[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 4316[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4316 -> 1821[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4317[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 4317[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4317 -> 1822[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4318[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 4318[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4318 -> 1823[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4319[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 4319[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4319 -> 1824[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4320[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 4320[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4320 -> 1825[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4321[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 4321[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4321 -> 1826[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4322[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 4322[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4322 -> 1827[label="",style="solid", color="blue", weight=3]; 37.19/18.88 1429[label="xwv282 == xwv332",fontsize=16,color="blue",shape="box"];4323[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 4323[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4323 -> 1828[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4324[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 4324[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4324 -> 1829[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4325[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 4325[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4325 -> 1830[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4326[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 4326[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4326 -> 1831[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4327[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 4327[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4327 -> 1832[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4328[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 4328[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4328 -> 1833[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4329[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 4329[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4329 -> 1834[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4330[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 4330[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4330 -> 1835[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4331[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 4331[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4331 -> 1836[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4332[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 4332[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4332 -> 1837[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4333[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 4333[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4333 -> 1838[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4334[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 4334[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4334 -> 1839[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4335[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 4335[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4335 -> 1840[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4336[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1429 -> 4336[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4336 -> 1841[label="",style="solid", color="blue", weight=3]; 37.19/18.88 1430 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1430[label="xwv280 == xwv330",fontsize=16,color="magenta"];1430 -> 1842[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1430 -> 1843[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1431 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1431[label="xwv280 == xwv330",fontsize=16,color="magenta"];1431 -> 1844[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1431 -> 1845[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1432 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1432[label="xwv280 == xwv330",fontsize=16,color="magenta"];1432 -> 1846[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1432 -> 1847[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1433 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1433[label="xwv280 == xwv330",fontsize=16,color="magenta"];1433 -> 1848[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1433 -> 1849[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1434 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1434[label="xwv280 == xwv330",fontsize=16,color="magenta"];1434 -> 1850[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1434 -> 1851[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1435 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1435[label="xwv280 == xwv330",fontsize=16,color="magenta"];1435 -> 1852[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1435 -> 1853[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1436 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1436[label="xwv280 == xwv330",fontsize=16,color="magenta"];1436 -> 1854[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1436 -> 1855[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1437 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1437[label="xwv280 == xwv330",fontsize=16,color="magenta"];1437 -> 1856[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1437 -> 1857[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1438 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1438[label="xwv280 == xwv330",fontsize=16,color="magenta"];1438 -> 1858[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1438 -> 1859[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1439 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1439[label="xwv280 == xwv330",fontsize=16,color="magenta"];1439 -> 1860[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1439 -> 1861[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1440 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1440[label="xwv280 == xwv330",fontsize=16,color="magenta"];1440 -> 1862[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1440 -> 1863[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1441 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1441[label="xwv280 == xwv330",fontsize=16,color="magenta"];1441 -> 1864[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1441 -> 1865[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1442 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1442[label="xwv280 == xwv330",fontsize=16,color="magenta"];1442 -> 1866[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1442 -> 1867[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1443 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1443[label="xwv280 == xwv330",fontsize=16,color="magenta"];1443 -> 1868[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1443 -> 1869[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1444[label="xwv281",fontsize=16,color="green",shape="box"];1445[label="xwv331",fontsize=16,color="green",shape="box"];1446[label="FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514",fontsize=16,color="green",shape="box"];1447 -> 1870[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1447[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.sizeFM (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) > FiniteMap.sizeFM (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="magenta"];1447 -> 1871[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1580[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1580 -> 1872[label="",style="solid", color="black", weight=3]; 37.19/18.88 1581[label="FiniteMap.sizeFM (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="black",shape="box"];1581 -> 1873[label="",style="solid", color="black", weight=3]; 37.19/18.88 1595[label="Pos (primPlusNat xwv1620 xwv1370)",fontsize=16,color="green",shape="box"];1595 -> 1874[label="",style="dashed", color="green", weight=3]; 37.19/18.88 1596[label="primMinusNat xwv1620 xwv1370",fontsize=16,color="burlywood",shape="triangle"];4337[label="xwv1620/Succ xwv16200",fontsize=10,color="white",style="solid",shape="box"];1596 -> 4337[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4337 -> 1875[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4338[label="xwv1620/Zero",fontsize=10,color="white",style="solid",shape="box"];1596 -> 4338[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4338 -> 1876[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 1597 -> 1596[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1597[label="primMinusNat xwv1370 xwv1620",fontsize=16,color="magenta"];1597 -> 1877[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1597 -> 1878[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1598[label="Neg (primPlusNat xwv1620 xwv1370)",fontsize=16,color="green",shape="box"];1598 -> 1879[label="",style="dashed", color="green", weight=3]; 37.19/18.88 1579[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1583 -> 27[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1583[label="FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35",fontsize=16,color="magenta"];1583 -> 1880[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1583 -> 1881[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1582[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 xwv138",fontsize=16,color="burlywood",shape="triangle"];4339[label="xwv138/False",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4339[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4339 -> 1882[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4340[label="xwv138/True",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4340[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4340 -> 1883[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 1589[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv16 xwv13 xwv14 FiniteMap.EmptyFM xwv16 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1589 -> 1884[label="",style="solid", color="black", weight=3]; 37.19/18.88 1590[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="black",shape="box"];1590 -> 1885[label="",style="solid", color="black", weight=3]; 37.19/18.88 1591[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv13 xwv35 + FiniteMap.mkBranchRight_size xwv16 xwv13 xwv35",fontsize=16,color="black",shape="box"];1591 -> 1886[label="",style="solid", color="black", weight=3]; 37.19/18.88 1592[label="GT",fontsize=16,color="green",shape="box"];1890[label="xwv125",fontsize=16,color="green",shape="box"];1891[label="xwv126",fontsize=16,color="green",shape="box"];1892[label="xwv127",fontsize=16,color="green",shape="box"];1893 -> 1201[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1893[label="xwv125 == xwv127 && xwv126 <= xwv128",fontsize=16,color="magenta"];1893 -> 1902[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1893 -> 1903[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1894[label="xwv125 < xwv127",fontsize=16,color="blue",shape="box"];4341[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4341[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4341 -> 1904[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4342[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4342[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4342 -> 1905[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4343[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4343[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4343 -> 1906[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4344[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4344[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4344 -> 1907[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4345[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4345[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4345 -> 1908[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4346[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4346[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4346 -> 1909[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4347[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4347[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4347 -> 1910[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4348[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4348[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4348 -> 1911[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4349[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4349[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4349 -> 1912[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4350[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4350[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4350 -> 1913[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4351[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4351[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4351 -> 1914[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4352[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4352[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4352 -> 1915[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4353[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4353[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4353 -> 1916[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4354[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4354[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4354 -> 1917[label="",style="solid", color="blue", weight=3]; 37.19/18.88 1895[label="xwv128",fontsize=16,color="green",shape="box"];1889[label="compare1 (xwv177,xwv178) (xwv179,xwv180) (xwv181 || xwv182)",fontsize=16,color="burlywood",shape="triangle"];4355[label="xwv181/False",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4355[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4355 -> 1918[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4356[label="xwv181/True",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4356[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4356 -> 1919[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 1599[label="GT",fontsize=16,color="green",shape="box"];1607[label="xwv72 <= xwv73",fontsize=16,color="blue",shape="box"];4357[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 4357[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4357 -> 1920[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4358[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 4358[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4358 -> 1921[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4359[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 4359[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4359 -> 1922[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4360[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 4360[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4360 -> 1923[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4361[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 4361[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4361 -> 1924[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4362[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 4362[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4362 -> 1925[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4363[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 4363[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4363 -> 1926[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4364[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 4364[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4364 -> 1927[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4365[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 4365[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4365 -> 1928[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4366[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 4366[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4366 -> 1929[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4367[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 4367[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4367 -> 1930[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4368[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 4368[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4368 -> 1931[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4369[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 4369[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4369 -> 1932[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4370[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1607 -> 4370[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4370 -> 1933[label="",style="solid", color="blue", weight=3]; 37.19/18.88 1608[label="compare1 (Just xwv148) (Just xwv149) False",fontsize=16,color="black",shape="box"];1608 -> 1934[label="",style="solid", color="black", weight=3]; 37.19/18.88 1609[label="compare1 (Just xwv148) (Just xwv149) True",fontsize=16,color="black",shape="box"];1609 -> 1935[label="",style="solid", color="black", weight=3]; 37.19/18.88 1610[label="GT",fontsize=16,color="green",shape="box"];1611[label="GT",fontsize=16,color="green",shape="box"];1612[label="GT",fontsize=16,color="green",shape="box"];1613[label="xwv401",fontsize=16,color="green",shape="box"];1614[label="xwv301",fontsize=16,color="green",shape="box"];1615[label="xwv401",fontsize=16,color="green",shape="box"];1616[label="xwv301",fontsize=16,color="green",shape="box"];1617[label="xwv401",fontsize=16,color="green",shape="box"];1618[label="xwv301",fontsize=16,color="green",shape="box"];1619[label="xwv401",fontsize=16,color="green",shape="box"];1620[label="xwv301",fontsize=16,color="green",shape="box"];1621[label="xwv401",fontsize=16,color="green",shape="box"];1622[label="xwv301",fontsize=16,color="green",shape="box"];1623[label="xwv401",fontsize=16,color="green",shape="box"];1624[label="xwv301",fontsize=16,color="green",shape="box"];1625[label="xwv401",fontsize=16,color="green",shape="box"];1626[label="xwv301",fontsize=16,color="green",shape="box"];1627[label="xwv401",fontsize=16,color="green",shape="box"];1628[label="xwv301",fontsize=16,color="green",shape="box"];1629[label="xwv401",fontsize=16,color="green",shape="box"];1630[label="xwv301",fontsize=16,color="green",shape="box"];1631[label="xwv401",fontsize=16,color="green",shape="box"];1632[label="xwv301",fontsize=16,color="green",shape="box"];1633[label="xwv401",fontsize=16,color="green",shape="box"];1634[label="xwv301",fontsize=16,color="green",shape="box"];1635[label="xwv401",fontsize=16,color="green",shape="box"];1636[label="xwv301",fontsize=16,color="green",shape="box"];1637[label="xwv401",fontsize=16,color="green",shape="box"];1638[label="xwv301",fontsize=16,color="green",shape="box"];1639[label="xwv401",fontsize=16,color="green",shape="box"];1640[label="xwv301",fontsize=16,color="green",shape="box"];1641[label="xwv402",fontsize=16,color="green",shape="box"];1642[label="xwv302",fontsize=16,color="green",shape="box"];1643[label="xwv402",fontsize=16,color="green",shape="box"];1644[label="xwv302",fontsize=16,color="green",shape="box"];1645[label="xwv402",fontsize=16,color="green",shape="box"];1646[label="xwv302",fontsize=16,color="green",shape="box"];1647[label="xwv402",fontsize=16,color="green",shape="box"];1648[label="xwv302",fontsize=16,color="green",shape="box"];1649[label="xwv402",fontsize=16,color="green",shape="box"];1650[label="xwv302",fontsize=16,color="green",shape="box"];1651[label="xwv402",fontsize=16,color="green",shape="box"];1652[label="xwv302",fontsize=16,color="green",shape="box"];1653[label="xwv402",fontsize=16,color="green",shape="box"];1654[label="xwv302",fontsize=16,color="green",shape="box"];1655[label="xwv402",fontsize=16,color="green",shape="box"];1656[label="xwv302",fontsize=16,color="green",shape="box"];1657[label="xwv402",fontsize=16,color="green",shape="box"];1658[label="xwv302",fontsize=16,color="green",shape="box"];1659[label="xwv402",fontsize=16,color="green",shape="box"];1660[label="xwv302",fontsize=16,color="green",shape="box"];1661[label="xwv402",fontsize=16,color="green",shape="box"];1662[label="xwv302",fontsize=16,color="green",shape="box"];1663[label="xwv402",fontsize=16,color="green",shape="box"];1664[label="xwv302",fontsize=16,color="green",shape="box"];1665[label="xwv402",fontsize=16,color="green",shape="box"];1666[label="xwv302",fontsize=16,color="green",shape="box"];1667[label="xwv402",fontsize=16,color="green",shape="box"];1668[label="xwv302",fontsize=16,color="green",shape="box"];1939[label="xwv90",fontsize=16,color="green",shape="box"];1940[label="xwv88 < xwv91",fontsize=16,color="blue",shape="box"];4371[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1940 -> 4371[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4371 -> 1955[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4372[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1940 -> 4372[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4372 -> 1956[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4373[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1940 -> 4373[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4373 -> 1957[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4374[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1940 -> 4374[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4374 -> 1958[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4375[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1940 -> 4375[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4375 -> 1959[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4376[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1940 -> 4376[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4376 -> 1960[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4377[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1940 -> 4377[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4377 -> 1961[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4378[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1940 -> 4378[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4378 -> 1962[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4379[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1940 -> 4379[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4379 -> 1963[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4380[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1940 -> 4380[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4380 -> 1964[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4381[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1940 -> 4381[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4381 -> 1965[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4382[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1940 -> 4382[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4382 -> 1966[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4383[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1940 -> 4383[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4383 -> 1967[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4384[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1940 -> 4384[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4384 -> 1968[label="",style="solid", color="blue", weight=3]; 37.19/18.88 1941[label="xwv92",fontsize=16,color="green",shape="box"];1942 -> 1201[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1942[label="xwv88 == xwv91 && (xwv89 < xwv92 || xwv89 == xwv92 && xwv90 <= xwv93)",fontsize=16,color="magenta"];1942 -> 1969[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1942 -> 1970[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1943[label="xwv91",fontsize=16,color="green",shape="box"];1944[label="xwv93",fontsize=16,color="green",shape="box"];1945[label="xwv88",fontsize=16,color="green",shape="box"];1946[label="xwv89",fontsize=16,color="green",shape="box"];1938[label="compare1 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) (xwv198 || xwv199)",fontsize=16,color="burlywood",shape="triangle"];4385[label="xwv198/False",fontsize=10,color="white",style="solid",shape="box"];1938 -> 4385[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4385 -> 1971[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4386[label="xwv198/True",fontsize=10,color="white",style="solid",shape="box"];1938 -> 4386[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4386 -> 1972[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 1678[label="xwv99 <= xwv100",fontsize=16,color="blue",shape="box"];4387[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4387[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4387 -> 1973[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4388[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4388[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4388 -> 1974[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4389[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4389[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4389 -> 1975[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4390[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4390[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4390 -> 1976[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4391[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4391[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4391 -> 1977[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4392[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4392[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4392 -> 1978[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4393[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4393[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4393 -> 1979[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4394[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4394[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4394 -> 1980[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4395[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4395[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4395 -> 1981[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4396[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4396[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4396 -> 1982[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4397[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4397[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4397 -> 1983[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4398[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4398[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4398 -> 1984[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4399[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4399[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4399 -> 1985[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4400[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4400[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4400 -> 1986[label="",style="solid", color="blue", weight=3]; 37.19/18.88 1679[label="compare1 (Left xwv157) (Left xwv158) False",fontsize=16,color="black",shape="box"];1679 -> 1987[label="",style="solid", color="black", weight=3]; 37.19/18.88 1680[label="compare1 (Left xwv157) (Left xwv158) True",fontsize=16,color="black",shape="box"];1680 -> 1988[label="",style="solid", color="black", weight=3]; 37.19/18.88 1681[label="GT",fontsize=16,color="green",shape="box"];1689[label="xwv106 <= xwv107",fontsize=16,color="blue",shape="box"];4401[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4401[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4401 -> 1989[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4402[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4402[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4402 -> 1990[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4403[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4403[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4403 -> 1991[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4404[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4404[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4404 -> 1992[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4405[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4405[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4405 -> 1993[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4406[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4406[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4406 -> 1994[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4407[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4407[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4407 -> 1995[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4408[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4408[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4408 -> 1996[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4409[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4409[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4409 -> 1997[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4410[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4410[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4410 -> 1998[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4411[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4411[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4411 -> 1999[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4412[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4412[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4412 -> 2000[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4413[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4413[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4413 -> 2001[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4414[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4414[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4414 -> 2002[label="",style="solid", color="blue", weight=3]; 37.19/18.88 1690[label="compare1 (Right xwv164) (Right xwv165) False",fontsize=16,color="black",shape="box"];1690 -> 2003[label="",style="solid", color="black", weight=3]; 37.19/18.88 1691[label="compare1 (Right xwv164) (Right xwv165) True",fontsize=16,color="black",shape="box"];1691 -> 2004[label="",style="solid", color="black", weight=3]; 37.19/18.88 1692[label="primMulNat xwv3000 xwv4010",fontsize=16,color="burlywood",shape="triangle"];4415[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];1692 -> 4415[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4415 -> 2005[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4416[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1692 -> 4416[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4416 -> 2006[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 1693 -> 1692[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1693[label="primMulNat xwv3000 xwv4010",fontsize=16,color="magenta"];1693 -> 2007[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1694 -> 1692[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1694[label="primMulNat xwv3000 xwv4010",fontsize=16,color="magenta"];1694 -> 2008[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1695 -> 1692[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1695[label="primMulNat xwv3000 xwv4010",fontsize=16,color="magenta"];1695 -> 2009[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1695 -> 2010[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1696[label="xwv4010",fontsize=16,color="green",shape="box"];1697[label="xwv3000",fontsize=16,color="green",shape="box"];1698[label="xwv331",fontsize=16,color="green",shape="box"];1699[label="xwv280",fontsize=16,color="green",shape="box"];1700[label="xwv330",fontsize=16,color="green",shape="box"];1701[label="xwv281",fontsize=16,color="green",shape="box"];1702 -> 1101[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1702[label="primEqNat xwv2800 xwv3300",fontsize=16,color="magenta"];1702 -> 2011[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1702 -> 2012[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1703[label="False",fontsize=16,color="green",shape="box"];1704[label="False",fontsize=16,color="green",shape="box"];1705[label="True",fontsize=16,color="green",shape="box"];1706[label="False",fontsize=16,color="green",shape="box"];1707[label="True",fontsize=16,color="green",shape="box"];1708 -> 1101[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1708[label="primEqNat xwv2800 xwv3300",fontsize=16,color="magenta"];1708 -> 2013[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1708 -> 2014[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1709[label="False",fontsize=16,color="green",shape="box"];1710[label="False",fontsize=16,color="green",shape="box"];1711[label="True",fontsize=16,color="green",shape="box"];1712[label="False",fontsize=16,color="green",shape="box"];1713[label="True",fontsize=16,color="green",shape="box"];1714[label="primEqNat (Succ xwv2800) (Succ xwv3300)",fontsize=16,color="black",shape="box"];1714 -> 2015[label="",style="solid", color="black", weight=3]; 37.19/18.88 1715[label="primEqNat (Succ xwv2800) Zero",fontsize=16,color="black",shape="box"];1715 -> 2016[label="",style="solid", color="black", weight=3]; 37.19/18.88 1716[label="primEqNat Zero (Succ xwv3300)",fontsize=16,color="black",shape="box"];1716 -> 2017[label="",style="solid", color="black", weight=3]; 37.19/18.88 1717[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1717 -> 2018[label="",style="solid", color="black", weight=3]; 37.19/18.88 1718[label="xwv280",fontsize=16,color="green",shape="box"];1719[label="xwv330",fontsize=16,color="green",shape="box"];1720[label="xwv280",fontsize=16,color="green",shape="box"];1721[label="xwv330",fontsize=16,color="green",shape="box"];1722[label="xwv280",fontsize=16,color="green",shape="box"];1723[label="xwv330",fontsize=16,color="green",shape="box"];1724[label="xwv280",fontsize=16,color="green",shape="box"];1725[label="xwv330",fontsize=16,color="green",shape="box"];1726[label="xwv280",fontsize=16,color="green",shape="box"];1727[label="xwv330",fontsize=16,color="green",shape="box"];1728[label="xwv280",fontsize=16,color="green",shape="box"];1729[label="xwv330",fontsize=16,color="green",shape="box"];1730[label="xwv280",fontsize=16,color="green",shape="box"];1731[label="xwv330",fontsize=16,color="green",shape="box"];1732[label="xwv280",fontsize=16,color="green",shape="box"];1733[label="xwv330",fontsize=16,color="green",shape="box"];1734[label="xwv280",fontsize=16,color="green",shape="box"];1735[label="xwv330",fontsize=16,color="green",shape="box"];1736[label="xwv280",fontsize=16,color="green",shape="box"];1737[label="xwv330",fontsize=16,color="green",shape="box"];1738[label="xwv280",fontsize=16,color="green",shape="box"];1739[label="xwv330",fontsize=16,color="green",shape="box"];1740[label="xwv280",fontsize=16,color="green",shape="box"];1741[label="xwv330",fontsize=16,color="green",shape="box"];1742[label="xwv280",fontsize=16,color="green",shape="box"];1743[label="xwv330",fontsize=16,color="green",shape="box"];1744[label="xwv280",fontsize=16,color="green",shape="box"];1745[label="xwv330",fontsize=16,color="green",shape="box"];1746[label="xwv281",fontsize=16,color="green",shape="box"];1747[label="xwv331",fontsize=16,color="green",shape="box"];1748[label="xwv281",fontsize=16,color="green",shape="box"];1749[label="xwv331",fontsize=16,color="green",shape="box"];1750[label="xwv281",fontsize=16,color="green",shape="box"];1751[label="xwv331",fontsize=16,color="green",shape="box"];1752[label="xwv281",fontsize=16,color="green",shape="box"];1753[label="xwv331",fontsize=16,color="green",shape="box"];1754[label="xwv281",fontsize=16,color="green",shape="box"];1755[label="xwv331",fontsize=16,color="green",shape="box"];1756[label="xwv281",fontsize=16,color="green",shape="box"];1757[label="xwv331",fontsize=16,color="green",shape="box"];1758[label="xwv281",fontsize=16,color="green",shape="box"];1759[label="xwv331",fontsize=16,color="green",shape="box"];1760[label="xwv281",fontsize=16,color="green",shape="box"];1761[label="xwv331",fontsize=16,color="green",shape="box"];1762[label="xwv281",fontsize=16,color="green",shape="box"];1763[label="xwv331",fontsize=16,color="green",shape="box"];1764[label="xwv281",fontsize=16,color="green",shape="box"];1765[label="xwv331",fontsize=16,color="green",shape="box"];1766[label="xwv281",fontsize=16,color="green",shape="box"];1767[label="xwv331",fontsize=16,color="green",shape="box"];1768[label="xwv281",fontsize=16,color="green",shape="box"];1769[label="xwv331",fontsize=16,color="green",shape="box"];1770[label="xwv281",fontsize=16,color="green",shape="box"];1771[label="xwv331",fontsize=16,color="green",shape="box"];1772[label="xwv281",fontsize=16,color="green",shape="box"];1773[label="xwv331",fontsize=16,color="green",shape="box"];1774[label="xwv331",fontsize=16,color="green",shape="box"];1775[label="xwv280",fontsize=16,color="green",shape="box"];1776[label="xwv330",fontsize=16,color="green",shape="box"];1777[label="xwv281",fontsize=16,color="green",shape="box"];1778[label="xwv280",fontsize=16,color="green",shape="box"];1779[label="xwv330",fontsize=16,color="green",shape="box"];1780[label="xwv280",fontsize=16,color="green",shape="box"];1781[label="xwv330",fontsize=16,color="green",shape="box"];1782[label="xwv281",fontsize=16,color="green",shape="box"];1783[label="xwv331",fontsize=16,color="green",shape="box"];1784[label="xwv281",fontsize=16,color="green",shape="box"];1785[label="xwv331",fontsize=16,color="green",shape="box"];1786[label="xwv280",fontsize=16,color="green",shape="box"];1787[label="xwv330",fontsize=16,color="green",shape="box"];1788[label="xwv280",fontsize=16,color="green",shape="box"];1789[label="xwv330",fontsize=16,color="green",shape="box"];1790[label="xwv280",fontsize=16,color="green",shape="box"];1791[label="xwv330",fontsize=16,color="green",shape="box"];1792[label="xwv280",fontsize=16,color="green",shape="box"];1793[label="xwv330",fontsize=16,color="green",shape="box"];1794[label="xwv280",fontsize=16,color="green",shape="box"];1795[label="xwv330",fontsize=16,color="green",shape="box"];1796[label="xwv280",fontsize=16,color="green",shape="box"];1797[label="xwv330",fontsize=16,color="green",shape="box"];1798[label="xwv280",fontsize=16,color="green",shape="box"];1799[label="xwv330",fontsize=16,color="green",shape="box"];1800[label="xwv280",fontsize=16,color="green",shape="box"];1801[label="xwv330",fontsize=16,color="green",shape="box"];1802[label="xwv280",fontsize=16,color="green",shape="box"];1803[label="xwv330",fontsize=16,color="green",shape="box"];1804[label="xwv280",fontsize=16,color="green",shape="box"];1805[label="xwv330",fontsize=16,color="green",shape="box"];1806[label="xwv280",fontsize=16,color="green",shape="box"];1807[label="xwv330",fontsize=16,color="green",shape="box"];1808[label="xwv280",fontsize=16,color="green",shape="box"];1809[label="xwv330",fontsize=16,color="green",shape="box"];1810[label="xwv280",fontsize=16,color="green",shape="box"];1811[label="xwv330",fontsize=16,color="green",shape="box"];1812[label="xwv280",fontsize=16,color="green",shape="box"];1813[label="xwv330",fontsize=16,color="green",shape="box"];1814 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1814[label="xwv281 == xwv331",fontsize=16,color="magenta"];1814 -> 2019[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1814 -> 2020[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1815 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1815[label="xwv281 == xwv331",fontsize=16,color="magenta"];1815 -> 2021[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1815 -> 2022[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1816 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1816[label="xwv281 == xwv331",fontsize=16,color="magenta"];1816 -> 2023[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1816 -> 2024[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1817 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1817[label="xwv281 == xwv331",fontsize=16,color="magenta"];1817 -> 2025[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1817 -> 2026[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1818 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1818[label="xwv281 == xwv331",fontsize=16,color="magenta"];1818 -> 2027[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1818 -> 2028[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1819 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1819[label="xwv281 == xwv331",fontsize=16,color="magenta"];1819 -> 2029[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1819 -> 2030[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1820 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1820[label="xwv281 == xwv331",fontsize=16,color="magenta"];1820 -> 2031[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1820 -> 2032[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1821 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1821[label="xwv281 == xwv331",fontsize=16,color="magenta"];1821 -> 2033[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1821 -> 2034[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1822 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1822[label="xwv281 == xwv331",fontsize=16,color="magenta"];1822 -> 2035[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1822 -> 2036[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1823 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1823[label="xwv281 == xwv331",fontsize=16,color="magenta"];1823 -> 2037[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1823 -> 2038[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1824 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1824[label="xwv281 == xwv331",fontsize=16,color="magenta"];1824 -> 2039[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1824 -> 2040[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1825 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1825[label="xwv281 == xwv331",fontsize=16,color="magenta"];1825 -> 2041[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1825 -> 2042[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1826 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1826[label="xwv281 == xwv331",fontsize=16,color="magenta"];1826 -> 2043[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1826 -> 2044[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1827 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1827[label="xwv281 == xwv331",fontsize=16,color="magenta"];1827 -> 2045[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1827 -> 2046[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1828 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1828[label="xwv282 == xwv332",fontsize=16,color="magenta"];1828 -> 2047[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1828 -> 2048[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1829 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1829[label="xwv282 == xwv332",fontsize=16,color="magenta"];1829 -> 2049[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1829 -> 2050[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1830 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1830[label="xwv282 == xwv332",fontsize=16,color="magenta"];1830 -> 2051[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1830 -> 2052[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1831 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1831[label="xwv282 == xwv332",fontsize=16,color="magenta"];1831 -> 2053[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1831 -> 2054[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1832 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1832[label="xwv282 == xwv332",fontsize=16,color="magenta"];1832 -> 2055[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1832 -> 2056[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1833 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1833[label="xwv282 == xwv332",fontsize=16,color="magenta"];1833 -> 2057[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1833 -> 2058[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1834 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1834[label="xwv282 == xwv332",fontsize=16,color="magenta"];1834 -> 2059[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1834 -> 2060[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1835 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1835[label="xwv282 == xwv332",fontsize=16,color="magenta"];1835 -> 2061[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1835 -> 2062[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1836 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1836[label="xwv282 == xwv332",fontsize=16,color="magenta"];1836 -> 2063[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1836 -> 2064[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1837 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1837[label="xwv282 == xwv332",fontsize=16,color="magenta"];1837 -> 2065[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1837 -> 2066[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1838 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1838[label="xwv282 == xwv332",fontsize=16,color="magenta"];1838 -> 2067[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1838 -> 2068[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1839 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1839[label="xwv282 == xwv332",fontsize=16,color="magenta"];1839 -> 2069[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1839 -> 2070[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1840 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1840[label="xwv282 == xwv332",fontsize=16,color="magenta"];1840 -> 2071[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1840 -> 2072[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1841 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1841[label="xwv282 == xwv332",fontsize=16,color="magenta"];1841 -> 2073[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1841 -> 2074[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1842[label="xwv280",fontsize=16,color="green",shape="box"];1843[label="xwv330",fontsize=16,color="green",shape="box"];1844[label="xwv280",fontsize=16,color="green",shape="box"];1845[label="xwv330",fontsize=16,color="green",shape="box"];1846[label="xwv280",fontsize=16,color="green",shape="box"];1847[label="xwv330",fontsize=16,color="green",shape="box"];1848[label="xwv280",fontsize=16,color="green",shape="box"];1849[label="xwv330",fontsize=16,color="green",shape="box"];1850[label="xwv280",fontsize=16,color="green",shape="box"];1851[label="xwv330",fontsize=16,color="green",shape="box"];1852[label="xwv280",fontsize=16,color="green",shape="box"];1853[label="xwv330",fontsize=16,color="green",shape="box"];1854[label="xwv280",fontsize=16,color="green",shape="box"];1855[label="xwv330",fontsize=16,color="green",shape="box"];1856[label="xwv280",fontsize=16,color="green",shape="box"];1857[label="xwv330",fontsize=16,color="green",shape="box"];1858[label="xwv280",fontsize=16,color="green",shape="box"];1859[label="xwv330",fontsize=16,color="green",shape="box"];1860[label="xwv280",fontsize=16,color="green",shape="box"];1861[label="xwv330",fontsize=16,color="green",shape="box"];1862[label="xwv280",fontsize=16,color="green",shape="box"];1863[label="xwv330",fontsize=16,color="green",shape="box"];1864[label="xwv280",fontsize=16,color="green",shape="box"];1865[label="xwv330",fontsize=16,color="green",shape="box"];1866[label="xwv280",fontsize=16,color="green",shape="box"];1867[label="xwv330",fontsize=16,color="green",shape="box"];1868[label="xwv280",fontsize=16,color="green",shape="box"];1869[label="xwv330",fontsize=16,color="green",shape="box"];1871 -> 27[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1871[label="FiniteMap.sizeFM (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) > FiniteMap.sizeFM (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="magenta"];1871 -> 2075[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1871 -> 2076[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1870[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) xwv167",fontsize=16,color="burlywood",shape="triangle"];4417[label="xwv167/False",fontsize=10,color="white",style="solid",shape="box"];1870 -> 4417[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4417 -> 2077[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4418[label="xwv167/True",fontsize=10,color="white",style="solid",shape="box"];1870 -> 4418[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4418 -> 2078[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 1872[label="Pos Zero",fontsize=16,color="green",shape="box"];1873[label="xwv352",fontsize=16,color="green",shape="box"];1874[label="primPlusNat xwv1620 xwv1370",fontsize=16,color="burlywood",shape="triangle"];4419[label="xwv1620/Succ xwv16200",fontsize=10,color="white",style="solid",shape="box"];1874 -> 4419[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4419 -> 2079[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4420[label="xwv1620/Zero",fontsize=10,color="white",style="solid",shape="box"];1874 -> 4420[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4420 -> 2080[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 1875[label="primMinusNat (Succ xwv16200) xwv1370",fontsize=16,color="burlywood",shape="box"];4421[label="xwv1370/Succ xwv13700",fontsize=10,color="white",style="solid",shape="box"];1875 -> 4421[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4421 -> 2081[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4422[label="xwv1370/Zero",fontsize=10,color="white",style="solid",shape="box"];1875 -> 4422[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4422 -> 2082[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 1876[label="primMinusNat Zero xwv1370",fontsize=16,color="burlywood",shape="box"];4423[label="xwv1370/Succ xwv13700",fontsize=10,color="white",style="solid",shape="box"];1876 -> 4423[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4423 -> 2083[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4424[label="xwv1370/Zero",fontsize=10,color="white",style="solid",shape="box"];1876 -> 4424[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4424 -> 2084[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 1877[label="xwv1370",fontsize=16,color="green",shape="box"];1878[label="xwv1620",fontsize=16,color="green",shape="box"];1879 -> 1874[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1879[label="primPlusNat xwv1620 xwv1370",fontsize=16,color="magenta"];1879 -> 2085[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1879 -> 2086[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1880 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1880[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35",fontsize=16,color="magenta"];1880 -> 2087[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1880 -> 2088[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1881 -> 1568[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1881[label="FiniteMap.mkBalBranch6Size_l xwv16 xwv13 xwv14 xwv35",fontsize=16,color="magenta"];1882[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 False",fontsize=16,color="black",shape="box"];1882 -> 2089[label="",style="solid", color="black", weight=3]; 37.19/18.88 1883[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 True",fontsize=16,color="black",shape="box"];1883 -> 2090[label="",style="solid", color="black", weight=3]; 37.19/18.88 1884[label="error []",fontsize=16,color="red",shape="box"];1885[label="FiniteMap.mkBalBranch6MkBalBranch02 xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="black",shape="box"];1885 -> 2091[label="",style="solid", color="black", weight=3]; 37.19/18.88 1886 -> 1566[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1886[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv13 xwv35) (FiniteMap.mkBranchRight_size xwv16 xwv13 xwv35)",fontsize=16,color="magenta"];1886 -> 2092[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1886 -> 2093[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1902[label="xwv125 == xwv127",fontsize=16,color="blue",shape="box"];4425[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1902 -> 4425[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4425 -> 2094[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4426[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1902 -> 4426[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4426 -> 2095[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4427[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1902 -> 4427[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4427 -> 2096[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4428[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1902 -> 4428[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4428 -> 2097[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4429[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1902 -> 4429[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4429 -> 2098[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4430[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1902 -> 4430[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4430 -> 2099[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4431[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1902 -> 4431[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4431 -> 2100[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4432[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1902 -> 4432[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4432 -> 2101[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4433[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1902 -> 4433[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4433 -> 2102[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4434[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1902 -> 4434[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4434 -> 2103[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4435[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1902 -> 4435[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4435 -> 2104[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4436[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1902 -> 4436[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4436 -> 2105[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4437[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1902 -> 4437[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4437 -> 2106[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4438[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1902 -> 4438[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4438 -> 2107[label="",style="solid", color="blue", weight=3]; 37.19/18.88 1903[label="xwv126 <= xwv128",fontsize=16,color="blue",shape="box"];4439[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4439[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4439 -> 2108[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4440[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4440[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4440 -> 2109[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4441[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4441[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4441 -> 2110[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4442[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4442[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4442 -> 2111[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4443[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4443[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4443 -> 2112[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4444[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4444[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4444 -> 2113[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4445[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4445[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4445 -> 2114[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4446[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4446[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4446 -> 2115[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4447[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4447[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4447 -> 2116[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4448[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4448[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4448 -> 2117[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4449[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4449[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4449 -> 2118[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4450[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4450[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4450 -> 2119[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4451[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4451[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4451 -> 2120[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4452[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4452[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4452 -> 2121[label="",style="solid", color="blue", weight=3]; 37.19/18.88 1904 -> 102[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1904[label="xwv125 < xwv127",fontsize=16,color="magenta"];1904 -> 2122[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1904 -> 2123[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1905 -> 103[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1905[label="xwv125 < xwv127",fontsize=16,color="magenta"];1905 -> 2124[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1905 -> 2125[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1906 -> 104[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1906[label="xwv125 < xwv127",fontsize=16,color="magenta"];1906 -> 2126[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1906 -> 2127[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1907 -> 105[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1907[label="xwv125 < xwv127",fontsize=16,color="magenta"];1907 -> 2128[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1907 -> 2129[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1908 -> 106[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1908[label="xwv125 < xwv127",fontsize=16,color="magenta"];1908 -> 2130[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1908 -> 2131[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1909 -> 107[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1909[label="xwv125 < xwv127",fontsize=16,color="magenta"];1909 -> 2132[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1909 -> 2133[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1910 -> 108[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1910[label="xwv125 < xwv127",fontsize=16,color="magenta"];1910 -> 2134[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1910 -> 2135[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1911 -> 109[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1911[label="xwv125 < xwv127",fontsize=16,color="magenta"];1911 -> 2136[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1911 -> 2137[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1912 -> 110[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1912[label="xwv125 < xwv127",fontsize=16,color="magenta"];1912 -> 2138[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1912 -> 2139[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1913 -> 111[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1913[label="xwv125 < xwv127",fontsize=16,color="magenta"];1913 -> 2140[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1913 -> 2141[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1914 -> 112[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1914[label="xwv125 < xwv127",fontsize=16,color="magenta"];1914 -> 2142[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1914 -> 2143[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1915 -> 113[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1915[label="xwv125 < xwv127",fontsize=16,color="magenta"];1915 -> 2144[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1915 -> 2145[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1916 -> 114[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1916[label="xwv125 < xwv127",fontsize=16,color="magenta"];1916 -> 2146[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1916 -> 2147[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1917 -> 115[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1917[label="xwv125 < xwv127",fontsize=16,color="magenta"];1917 -> 2148[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1917 -> 2149[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1918[label="compare1 (xwv177,xwv178) (xwv179,xwv180) (False || xwv182)",fontsize=16,color="black",shape="box"];1918 -> 2150[label="",style="solid", color="black", weight=3]; 37.19/18.88 1919[label="compare1 (xwv177,xwv178) (xwv179,xwv180) (True || xwv182)",fontsize=16,color="black",shape="box"];1919 -> 2151[label="",style="solid", color="black", weight=3]; 37.19/18.88 1920[label="xwv72 <= xwv73",fontsize=16,color="black",shape="triangle"];1920 -> 2152[label="",style="solid", color="black", weight=3]; 37.19/18.88 1921[label="xwv72 <= xwv73",fontsize=16,color="black",shape="triangle"];1921 -> 2153[label="",style="solid", color="black", weight=3]; 37.19/18.88 1922[label="xwv72 <= xwv73",fontsize=16,color="burlywood",shape="triangle"];4453[label="xwv72/False",fontsize=10,color="white",style="solid",shape="box"];1922 -> 4453[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4453 -> 2154[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4454[label="xwv72/True",fontsize=10,color="white",style="solid",shape="box"];1922 -> 4454[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4454 -> 2155[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 1923[label="xwv72 <= xwv73",fontsize=16,color="burlywood",shape="triangle"];4455[label="xwv72/(xwv720,xwv721)",fontsize=10,color="white",style="solid",shape="box"];1923 -> 4455[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4455 -> 2156[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 1924[label="xwv72 <= xwv73",fontsize=16,color="burlywood",shape="triangle"];4456[label="xwv72/Nothing",fontsize=10,color="white",style="solid",shape="box"];1924 -> 4456[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4456 -> 2157[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4457[label="xwv72/Just xwv720",fontsize=10,color="white",style="solid",shape="box"];1924 -> 4457[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4457 -> 2158[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 1925[label="xwv72 <= xwv73",fontsize=16,color="black",shape="triangle"];1925 -> 2159[label="",style="solid", color="black", weight=3]; 37.19/18.88 1926[label="xwv72 <= xwv73",fontsize=16,color="black",shape="triangle"];1926 -> 2160[label="",style="solid", color="black", weight=3]; 37.19/18.88 1927[label="xwv72 <= xwv73",fontsize=16,color="black",shape="triangle"];1927 -> 2161[label="",style="solid", color="black", weight=3]; 37.19/18.88 1928[label="xwv72 <= xwv73",fontsize=16,color="black",shape="triangle"];1928 -> 2162[label="",style="solid", color="black", weight=3]; 37.19/18.88 1929[label="xwv72 <= xwv73",fontsize=16,color="burlywood",shape="triangle"];4458[label="xwv72/LT",fontsize=10,color="white",style="solid",shape="box"];1929 -> 4458[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4458 -> 2163[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4459[label="xwv72/EQ",fontsize=10,color="white",style="solid",shape="box"];1929 -> 4459[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4459 -> 2164[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4460[label="xwv72/GT",fontsize=10,color="white",style="solid",shape="box"];1929 -> 4460[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4460 -> 2165[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 1930[label="xwv72 <= xwv73",fontsize=16,color="burlywood",shape="triangle"];4461[label="xwv72/(xwv720,xwv721,xwv722)",fontsize=10,color="white",style="solid",shape="box"];1930 -> 4461[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4461 -> 2166[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 1931[label="xwv72 <= xwv73",fontsize=16,color="burlywood",shape="triangle"];4462[label="xwv72/Left xwv720",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4462[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4462 -> 2167[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4463[label="xwv72/Right xwv720",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4463[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4463 -> 2168[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 1932[label="xwv72 <= xwv73",fontsize=16,color="black",shape="triangle"];1932 -> 2169[label="",style="solid", color="black", weight=3]; 37.19/18.88 1933[label="xwv72 <= xwv73",fontsize=16,color="black",shape="triangle"];1933 -> 2170[label="",style="solid", color="black", weight=3]; 37.19/18.88 1934[label="compare0 (Just xwv148) (Just xwv149) otherwise",fontsize=16,color="black",shape="box"];1934 -> 2171[label="",style="solid", color="black", weight=3]; 37.19/18.88 1935[label="LT",fontsize=16,color="green",shape="box"];1955 -> 102[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1955[label="xwv88 < xwv91",fontsize=16,color="magenta"];1955 -> 2172[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1955 -> 2173[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1956 -> 103[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1956[label="xwv88 < xwv91",fontsize=16,color="magenta"];1956 -> 2174[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1956 -> 2175[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1957 -> 104[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1957[label="xwv88 < xwv91",fontsize=16,color="magenta"];1957 -> 2176[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1957 -> 2177[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1958 -> 105[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1958[label="xwv88 < xwv91",fontsize=16,color="magenta"];1958 -> 2178[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1958 -> 2179[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1959 -> 106[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1959[label="xwv88 < xwv91",fontsize=16,color="magenta"];1959 -> 2180[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1959 -> 2181[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1960 -> 107[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1960[label="xwv88 < xwv91",fontsize=16,color="magenta"];1960 -> 2182[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1960 -> 2183[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1961 -> 108[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1961[label="xwv88 < xwv91",fontsize=16,color="magenta"];1961 -> 2184[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1961 -> 2185[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1962 -> 109[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1962[label="xwv88 < xwv91",fontsize=16,color="magenta"];1962 -> 2186[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1962 -> 2187[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1963 -> 110[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1963[label="xwv88 < xwv91",fontsize=16,color="magenta"];1963 -> 2188[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1963 -> 2189[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1964 -> 111[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1964[label="xwv88 < xwv91",fontsize=16,color="magenta"];1964 -> 2190[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1964 -> 2191[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1965 -> 112[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1965[label="xwv88 < xwv91",fontsize=16,color="magenta"];1965 -> 2192[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1965 -> 2193[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1966 -> 113[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1966[label="xwv88 < xwv91",fontsize=16,color="magenta"];1966 -> 2194[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1966 -> 2195[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1967 -> 114[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1967[label="xwv88 < xwv91",fontsize=16,color="magenta"];1967 -> 2196[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1967 -> 2197[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1968 -> 115[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1968[label="xwv88 < xwv91",fontsize=16,color="magenta"];1968 -> 2198[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1968 -> 2199[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1969[label="xwv88 == xwv91",fontsize=16,color="blue",shape="box"];4464[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4464[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4464 -> 2200[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4465[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4465[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4465 -> 2201[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4466[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4466[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4466 -> 2202[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4467[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4467[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4467 -> 2203[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4468[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4468[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4468 -> 2204[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4469[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4469[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4469 -> 2205[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4470[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4470[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4470 -> 2206[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4471[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4471[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4471 -> 2207[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4472[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4472[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4472 -> 2208[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4473[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4473[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4473 -> 2209[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4474[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4474[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4474 -> 2210[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4475[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4475[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4475 -> 2211[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4476[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4476[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4476 -> 2212[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4477[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4477[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4477 -> 2213[label="",style="solid", color="blue", weight=3]; 37.19/18.88 1970 -> 2423[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1970[label="xwv89 < xwv92 || xwv89 == xwv92 && xwv90 <= xwv93",fontsize=16,color="magenta"];1970 -> 2424[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1970 -> 2425[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1971[label="compare1 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) (False || xwv199)",fontsize=16,color="black",shape="box"];1971 -> 2216[label="",style="solid", color="black", weight=3]; 37.19/18.88 1972[label="compare1 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) (True || xwv199)",fontsize=16,color="black",shape="box"];1972 -> 2217[label="",style="solid", color="black", weight=3]; 37.19/18.88 1973 -> 1920[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1973[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1973 -> 2218[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1973 -> 2219[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1974 -> 1921[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1974[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1974 -> 2220[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1974 -> 2221[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1975 -> 1922[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1975[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1975 -> 2222[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1975 -> 2223[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1976 -> 1923[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1976[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1976 -> 2224[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1976 -> 2225[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1977 -> 1924[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1977[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1977 -> 2226[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1977 -> 2227[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1978 -> 1925[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1978[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1978 -> 2228[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1978 -> 2229[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1979 -> 1926[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1979[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1979 -> 2230[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1979 -> 2231[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1980 -> 1927[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1980[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1980 -> 2232[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1980 -> 2233[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1981 -> 1928[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1981[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1981 -> 2234[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1981 -> 2235[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1982 -> 1929[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1982[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1982 -> 2236[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1982 -> 2237[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1983 -> 1930[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1983[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1983 -> 2238[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1983 -> 2239[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1984 -> 1931[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1984[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1984 -> 2240[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1984 -> 2241[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1985 -> 1932[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1985[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1985 -> 2242[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1985 -> 2243[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1986 -> 1933[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1986[label="xwv99 <= xwv100",fontsize=16,color="magenta"];1986 -> 2244[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1986 -> 2245[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1987[label="compare0 (Left xwv157) (Left xwv158) otherwise",fontsize=16,color="black",shape="box"];1987 -> 2246[label="",style="solid", color="black", weight=3]; 37.19/18.88 1988[label="LT",fontsize=16,color="green",shape="box"];1989 -> 1920[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1989[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1989 -> 2247[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1989 -> 2248[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1990 -> 1921[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1990[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1990 -> 2249[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1990 -> 2250[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1991 -> 1922[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1991[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1991 -> 2251[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1991 -> 2252[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1992 -> 1923[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1992[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1992 -> 2253[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1992 -> 2254[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1993 -> 1924[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1993[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1993 -> 2255[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1993 -> 2256[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1994 -> 1925[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1994[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1994 -> 2257[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1994 -> 2258[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1995 -> 1926[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1995[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1995 -> 2259[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1995 -> 2260[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1996 -> 1927[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1996[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1996 -> 2261[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1996 -> 2262[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1997 -> 1928[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1997[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1997 -> 2263[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1997 -> 2264[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1998 -> 1929[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1998[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1998 -> 2265[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1998 -> 2266[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1999 -> 1930[label="",style="dashed", color="red", weight=0]; 37.19/18.88 1999[label="xwv106 <= xwv107",fontsize=16,color="magenta"];1999 -> 2267[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 1999 -> 2268[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2000 -> 1931[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2000[label="xwv106 <= xwv107",fontsize=16,color="magenta"];2000 -> 2269[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2000 -> 2270[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2001 -> 1932[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2001[label="xwv106 <= xwv107",fontsize=16,color="magenta"];2001 -> 2271[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2001 -> 2272[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2002 -> 1933[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2002[label="xwv106 <= xwv107",fontsize=16,color="magenta"];2002 -> 2273[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2002 -> 2274[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2003[label="compare0 (Right xwv164) (Right xwv165) otherwise",fontsize=16,color="black",shape="box"];2003 -> 2275[label="",style="solid", color="black", weight=3]; 37.19/18.88 2004[label="LT",fontsize=16,color="green",shape="box"];2005[label="primMulNat (Succ xwv30000) xwv4010",fontsize=16,color="burlywood",shape="box"];4478[label="xwv4010/Succ xwv40100",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4478[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4478 -> 2276[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4479[label="xwv4010/Zero",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4479[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4479 -> 2277[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2006[label="primMulNat Zero xwv4010",fontsize=16,color="burlywood",shape="box"];4480[label="xwv4010/Succ xwv40100",fontsize=10,color="white",style="solid",shape="box"];2006 -> 4480[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4480 -> 2278[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4481[label="xwv4010/Zero",fontsize=10,color="white",style="solid",shape="box"];2006 -> 4481[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4481 -> 2279[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2007[label="xwv4010",fontsize=16,color="green",shape="box"];2008[label="xwv3000",fontsize=16,color="green",shape="box"];2009[label="xwv4010",fontsize=16,color="green",shape="box"];2010[label="xwv3000",fontsize=16,color="green",shape="box"];2011[label="xwv2800",fontsize=16,color="green",shape="box"];2012[label="xwv3300",fontsize=16,color="green",shape="box"];2013[label="xwv2800",fontsize=16,color="green",shape="box"];2014[label="xwv3300",fontsize=16,color="green",shape="box"];2015 -> 1101[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2015[label="primEqNat xwv2800 xwv3300",fontsize=16,color="magenta"];2015 -> 2280[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2015 -> 2281[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2016[label="False",fontsize=16,color="green",shape="box"];2017[label="False",fontsize=16,color="green",shape="box"];2018[label="True",fontsize=16,color="green",shape="box"];2019[label="xwv281",fontsize=16,color="green",shape="box"];2020[label="xwv331",fontsize=16,color="green",shape="box"];2021[label="xwv281",fontsize=16,color="green",shape="box"];2022[label="xwv331",fontsize=16,color="green",shape="box"];2023[label="xwv281",fontsize=16,color="green",shape="box"];2024[label="xwv331",fontsize=16,color="green",shape="box"];2025[label="xwv281",fontsize=16,color="green",shape="box"];2026[label="xwv331",fontsize=16,color="green",shape="box"];2027[label="xwv281",fontsize=16,color="green",shape="box"];2028[label="xwv331",fontsize=16,color="green",shape="box"];2029[label="xwv281",fontsize=16,color="green",shape="box"];2030[label="xwv331",fontsize=16,color="green",shape="box"];2031[label="xwv281",fontsize=16,color="green",shape="box"];2032[label="xwv331",fontsize=16,color="green",shape="box"];2033[label="xwv281",fontsize=16,color="green",shape="box"];2034[label="xwv331",fontsize=16,color="green",shape="box"];2035[label="xwv281",fontsize=16,color="green",shape="box"];2036[label="xwv331",fontsize=16,color="green",shape="box"];2037[label="xwv281",fontsize=16,color="green",shape="box"];2038[label="xwv331",fontsize=16,color="green",shape="box"];2039[label="xwv281",fontsize=16,color="green",shape="box"];2040[label="xwv331",fontsize=16,color="green",shape="box"];2041[label="xwv281",fontsize=16,color="green",shape="box"];2042[label="xwv331",fontsize=16,color="green",shape="box"];2043[label="xwv281",fontsize=16,color="green",shape="box"];2044[label="xwv331",fontsize=16,color="green",shape="box"];2045[label="xwv281",fontsize=16,color="green",shape="box"];2046[label="xwv331",fontsize=16,color="green",shape="box"];2047[label="xwv282",fontsize=16,color="green",shape="box"];2048[label="xwv332",fontsize=16,color="green",shape="box"];2049[label="xwv282",fontsize=16,color="green",shape="box"];2050[label="xwv332",fontsize=16,color="green",shape="box"];2051[label="xwv282",fontsize=16,color="green",shape="box"];2052[label="xwv332",fontsize=16,color="green",shape="box"];2053[label="xwv282",fontsize=16,color="green",shape="box"];2054[label="xwv332",fontsize=16,color="green",shape="box"];2055[label="xwv282",fontsize=16,color="green",shape="box"];2056[label="xwv332",fontsize=16,color="green",shape="box"];2057[label="xwv282",fontsize=16,color="green",shape="box"];2058[label="xwv332",fontsize=16,color="green",shape="box"];2059[label="xwv282",fontsize=16,color="green",shape="box"];2060[label="xwv332",fontsize=16,color="green",shape="box"];2061[label="xwv282",fontsize=16,color="green",shape="box"];2062[label="xwv332",fontsize=16,color="green",shape="box"];2063[label="xwv282",fontsize=16,color="green",shape="box"];2064[label="xwv332",fontsize=16,color="green",shape="box"];2065[label="xwv282",fontsize=16,color="green",shape="box"];2066[label="xwv332",fontsize=16,color="green",shape="box"];2067[label="xwv282",fontsize=16,color="green",shape="box"];2068[label="xwv332",fontsize=16,color="green",shape="box"];2069[label="xwv282",fontsize=16,color="green",shape="box"];2070[label="xwv332",fontsize=16,color="green",shape="box"];2071[label="xwv282",fontsize=16,color="green",shape="box"];2072[label="xwv332",fontsize=16,color="green",shape="box"];2073[label="xwv282",fontsize=16,color="green",shape="box"];2074[label="xwv332",fontsize=16,color="green",shape="box"];2075 -> 1133[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2075[label="FiniteMap.sizeFM (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="magenta"];2075 -> 2282[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2076 -> 1133[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2076[label="FiniteMap.sizeFM (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="magenta"];2076 -> 2283[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2077[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) False",fontsize=16,color="black",shape="box"];2077 -> 2284[label="",style="solid", color="black", weight=3]; 37.19/18.88 2078[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) True",fontsize=16,color="black",shape="box"];2078 -> 2285[label="",style="solid", color="black", weight=3]; 37.19/18.88 2079[label="primPlusNat (Succ xwv16200) xwv1370",fontsize=16,color="burlywood",shape="box"];4482[label="xwv1370/Succ xwv13700",fontsize=10,color="white",style="solid",shape="box"];2079 -> 4482[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4482 -> 2286[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4483[label="xwv1370/Zero",fontsize=10,color="white",style="solid",shape="box"];2079 -> 4483[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4483 -> 2287[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2080[label="primPlusNat Zero xwv1370",fontsize=16,color="burlywood",shape="box"];4484[label="xwv1370/Succ xwv13700",fontsize=10,color="white",style="solid",shape="box"];2080 -> 4484[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4484 -> 2288[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4485[label="xwv1370/Zero",fontsize=10,color="white",style="solid",shape="box"];2080 -> 4485[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4485 -> 2289[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2081[label="primMinusNat (Succ xwv16200) (Succ xwv13700)",fontsize=16,color="black",shape="box"];2081 -> 2290[label="",style="solid", color="black", weight=3]; 37.19/18.88 2082[label="primMinusNat (Succ xwv16200) Zero",fontsize=16,color="black",shape="box"];2082 -> 2291[label="",style="solid", color="black", weight=3]; 37.19/18.88 2083[label="primMinusNat Zero (Succ xwv13700)",fontsize=16,color="black",shape="box"];2083 -> 2292[label="",style="solid", color="black", weight=3]; 37.19/18.88 2084[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2084 -> 2293[label="",style="solid", color="black", weight=3]; 37.19/18.88 2085[label="xwv1620",fontsize=16,color="green",shape="box"];2086[label="xwv1370",fontsize=16,color="green",shape="box"];2087 -> 814[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2087[label="FiniteMap.mkBalBranch6Size_r xwv16 xwv13 xwv14 xwv35",fontsize=16,color="magenta"];2088 -> 1132[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2088[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2089[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 otherwise",fontsize=16,color="black",shape="box"];2089 -> 2294[label="",style="solid", color="black", weight=3]; 37.19/18.88 2090[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv16 xwv13 xwv14 xwv35 xwv16 xwv35 xwv16",fontsize=16,color="burlywood",shape="box"];4486[label="xwv16/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4486[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4486 -> 2295[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4487[label="xwv16/FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4487[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4487 -> 2296[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2091 -> 2297[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2091[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 (FiniteMap.sizeFM xwv353 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv354)",fontsize=16,color="magenta"];2091 -> 2298[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2092[label="FiniteMap.mkBranchRight_size xwv16 xwv13 xwv35",fontsize=16,color="black",shape="box"];2092 -> 2299[label="",style="solid", color="black", weight=3]; 37.19/18.88 2093[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv13 xwv35",fontsize=16,color="black",shape="box"];2093 -> 2300[label="",style="solid", color="black", weight=3]; 37.19/18.88 2094 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2094[label="xwv125 == xwv127",fontsize=16,color="magenta"];2094 -> 2301[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2094 -> 2302[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2095 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2095[label="xwv125 == xwv127",fontsize=16,color="magenta"];2095 -> 2303[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2095 -> 2304[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2096 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2096[label="xwv125 == xwv127",fontsize=16,color="magenta"];2096 -> 2305[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2096 -> 2306[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2097 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2097[label="xwv125 == xwv127",fontsize=16,color="magenta"];2097 -> 2307[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2097 -> 2308[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2098 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2098[label="xwv125 == xwv127",fontsize=16,color="magenta"];2098 -> 2309[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2098 -> 2310[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2099 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2099[label="xwv125 == xwv127",fontsize=16,color="magenta"];2099 -> 2311[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2099 -> 2312[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2100 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2100[label="xwv125 == xwv127",fontsize=16,color="magenta"];2100 -> 2313[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2100 -> 2314[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2101 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2101[label="xwv125 == xwv127",fontsize=16,color="magenta"];2101 -> 2315[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2101 -> 2316[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2102 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2102[label="xwv125 == xwv127",fontsize=16,color="magenta"];2102 -> 2317[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2102 -> 2318[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2103 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2103[label="xwv125 == xwv127",fontsize=16,color="magenta"];2103 -> 2319[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2103 -> 2320[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2104 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2104[label="xwv125 == xwv127",fontsize=16,color="magenta"];2104 -> 2321[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2104 -> 2322[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2105 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2105[label="xwv125 == xwv127",fontsize=16,color="magenta"];2105 -> 2323[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2105 -> 2324[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2106 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2106[label="xwv125 == xwv127",fontsize=16,color="magenta"];2106 -> 2325[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2106 -> 2326[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2107 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2107[label="xwv125 == xwv127",fontsize=16,color="magenta"];2107 -> 2327[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2107 -> 2328[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2108 -> 1920[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2108[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2108 -> 2329[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2108 -> 2330[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2109 -> 1921[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2109[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2109 -> 2331[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2109 -> 2332[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2110 -> 1922[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2110[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2110 -> 2333[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2110 -> 2334[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2111 -> 1923[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2111[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2111 -> 2335[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2111 -> 2336[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2112 -> 1924[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2112[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2112 -> 2337[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2112 -> 2338[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2113 -> 1925[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2113[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2113 -> 2339[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2113 -> 2340[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2114 -> 1926[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2114[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2114 -> 2341[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2114 -> 2342[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2115 -> 1927[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2115[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2115 -> 2343[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2115 -> 2344[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2116 -> 1928[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2116[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2116 -> 2345[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2116 -> 2346[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2117 -> 1929[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2117[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2117 -> 2347[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2117 -> 2348[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2118 -> 1930[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2118[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2118 -> 2349[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2118 -> 2350[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2119 -> 1931[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2119[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2119 -> 2351[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2119 -> 2352[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2120 -> 1932[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2120[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2120 -> 2353[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2120 -> 2354[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2121 -> 1933[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2121[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2121 -> 2355[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2121 -> 2356[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2122[label="xwv127",fontsize=16,color="green",shape="box"];2123[label="xwv125",fontsize=16,color="green",shape="box"];2124[label="xwv127",fontsize=16,color="green",shape="box"];2125[label="xwv125",fontsize=16,color="green",shape="box"];2126[label="xwv127",fontsize=16,color="green",shape="box"];2127[label="xwv125",fontsize=16,color="green",shape="box"];2128[label="xwv127",fontsize=16,color="green",shape="box"];2129[label="xwv125",fontsize=16,color="green",shape="box"];2130[label="xwv127",fontsize=16,color="green",shape="box"];2131[label="xwv125",fontsize=16,color="green",shape="box"];2132[label="xwv127",fontsize=16,color="green",shape="box"];2133[label="xwv125",fontsize=16,color="green",shape="box"];2134[label="xwv127",fontsize=16,color="green",shape="box"];2135[label="xwv125",fontsize=16,color="green",shape="box"];2136[label="xwv127",fontsize=16,color="green",shape="box"];2137[label="xwv125",fontsize=16,color="green",shape="box"];2138[label="xwv127",fontsize=16,color="green",shape="box"];2139[label="xwv125",fontsize=16,color="green",shape="box"];2140[label="xwv127",fontsize=16,color="green",shape="box"];2141[label="xwv125",fontsize=16,color="green",shape="box"];2142[label="xwv127",fontsize=16,color="green",shape="box"];2143[label="xwv125",fontsize=16,color="green",shape="box"];2144[label="xwv127",fontsize=16,color="green",shape="box"];2145[label="xwv125",fontsize=16,color="green",shape="box"];2146[label="xwv127",fontsize=16,color="green",shape="box"];2147[label="xwv125",fontsize=16,color="green",shape="box"];2148[label="xwv127",fontsize=16,color="green",shape="box"];2149[label="xwv125",fontsize=16,color="green",shape="box"];2150[label="compare1 (xwv177,xwv178) (xwv179,xwv180) xwv182",fontsize=16,color="burlywood",shape="triangle"];4488[label="xwv182/False",fontsize=10,color="white",style="solid",shape="box"];2150 -> 4488[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4488 -> 2357[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4489[label="xwv182/True",fontsize=10,color="white",style="solid",shape="box"];2150 -> 4489[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4489 -> 2358[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2151 -> 2150[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2151[label="compare1 (xwv177,xwv178) (xwv179,xwv180) True",fontsize=16,color="magenta"];2151 -> 2359[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2152 -> 2360[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2152[label="compare xwv72 xwv73 /= GT",fontsize=16,color="magenta"];2152 -> 2361[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2153 -> 2360[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2153[label="compare xwv72 xwv73 /= GT",fontsize=16,color="magenta"];2153 -> 2362[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2154[label="False <= xwv73",fontsize=16,color="burlywood",shape="box"];4490[label="xwv73/False",fontsize=10,color="white",style="solid",shape="box"];2154 -> 4490[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4490 -> 2369[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4491[label="xwv73/True",fontsize=10,color="white",style="solid",shape="box"];2154 -> 4491[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4491 -> 2370[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2155[label="True <= xwv73",fontsize=16,color="burlywood",shape="box"];4492[label="xwv73/False",fontsize=10,color="white",style="solid",shape="box"];2155 -> 4492[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4492 -> 2371[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4493[label="xwv73/True",fontsize=10,color="white",style="solid",shape="box"];2155 -> 4493[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4493 -> 2372[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2156[label="(xwv720,xwv721) <= xwv73",fontsize=16,color="burlywood",shape="box"];4494[label="xwv73/(xwv730,xwv731)",fontsize=10,color="white",style="solid",shape="box"];2156 -> 4494[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4494 -> 2373[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2157[label="Nothing <= xwv73",fontsize=16,color="burlywood",shape="box"];4495[label="xwv73/Nothing",fontsize=10,color="white",style="solid",shape="box"];2157 -> 4495[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4495 -> 2374[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4496[label="xwv73/Just xwv730",fontsize=10,color="white",style="solid",shape="box"];2157 -> 4496[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4496 -> 2375[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2158[label="Just xwv720 <= xwv73",fontsize=16,color="burlywood",shape="box"];4497[label="xwv73/Nothing",fontsize=10,color="white",style="solid",shape="box"];2158 -> 4497[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4497 -> 2376[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4498[label="xwv73/Just xwv730",fontsize=10,color="white",style="solid",shape="box"];2158 -> 4498[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4498 -> 2377[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2159 -> 2360[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2159[label="compare xwv72 xwv73 /= GT",fontsize=16,color="magenta"];2159 -> 2363[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2160 -> 2360[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2160[label="compare xwv72 xwv73 /= GT",fontsize=16,color="magenta"];2160 -> 2364[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2161 -> 2360[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2161[label="compare xwv72 xwv73 /= GT",fontsize=16,color="magenta"];2161 -> 2365[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2162 -> 2360[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2162[label="compare xwv72 xwv73 /= GT",fontsize=16,color="magenta"];2162 -> 2366[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2163[label="LT <= xwv73",fontsize=16,color="burlywood",shape="box"];4499[label="xwv73/LT",fontsize=10,color="white",style="solid",shape="box"];2163 -> 4499[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4499 -> 2378[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4500[label="xwv73/EQ",fontsize=10,color="white",style="solid",shape="box"];2163 -> 4500[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4500 -> 2379[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4501[label="xwv73/GT",fontsize=10,color="white",style="solid",shape="box"];2163 -> 4501[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4501 -> 2380[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2164[label="EQ <= xwv73",fontsize=16,color="burlywood",shape="box"];4502[label="xwv73/LT",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4502[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4502 -> 2381[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4503[label="xwv73/EQ",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4503[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4503 -> 2382[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4504[label="xwv73/GT",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4504[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4504 -> 2383[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2165[label="GT <= xwv73",fontsize=16,color="burlywood",shape="box"];4505[label="xwv73/LT",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4505[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4505 -> 2384[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4506[label="xwv73/EQ",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4506[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4506 -> 2385[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4507[label="xwv73/GT",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4507[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4507 -> 2386[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2166[label="(xwv720,xwv721,xwv722) <= xwv73",fontsize=16,color="burlywood",shape="box"];4508[label="xwv73/(xwv730,xwv731,xwv732)",fontsize=10,color="white",style="solid",shape="box"];2166 -> 4508[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4508 -> 2387[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2167[label="Left xwv720 <= xwv73",fontsize=16,color="burlywood",shape="box"];4509[label="xwv73/Left xwv730",fontsize=10,color="white",style="solid",shape="box"];2167 -> 4509[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4509 -> 2388[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4510[label="xwv73/Right xwv730",fontsize=10,color="white",style="solid",shape="box"];2167 -> 4510[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4510 -> 2389[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2168[label="Right xwv720 <= xwv73",fontsize=16,color="burlywood",shape="box"];4511[label="xwv73/Left xwv730",fontsize=10,color="white",style="solid",shape="box"];2168 -> 4511[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4511 -> 2390[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4512[label="xwv73/Right xwv730",fontsize=10,color="white",style="solid",shape="box"];2168 -> 4512[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4512 -> 2391[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2169 -> 2360[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2169[label="compare xwv72 xwv73 /= GT",fontsize=16,color="magenta"];2169 -> 2367[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2170 -> 2360[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2170[label="compare xwv72 xwv73 /= GT",fontsize=16,color="magenta"];2170 -> 2368[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2171[label="compare0 (Just xwv148) (Just xwv149) True",fontsize=16,color="black",shape="box"];2171 -> 2392[label="",style="solid", color="black", weight=3]; 37.19/18.88 2172[label="xwv91",fontsize=16,color="green",shape="box"];2173[label="xwv88",fontsize=16,color="green",shape="box"];2174[label="xwv91",fontsize=16,color="green",shape="box"];2175[label="xwv88",fontsize=16,color="green",shape="box"];2176[label="xwv91",fontsize=16,color="green",shape="box"];2177[label="xwv88",fontsize=16,color="green",shape="box"];2178[label="xwv91",fontsize=16,color="green",shape="box"];2179[label="xwv88",fontsize=16,color="green",shape="box"];2180[label="xwv91",fontsize=16,color="green",shape="box"];2181[label="xwv88",fontsize=16,color="green",shape="box"];2182[label="xwv91",fontsize=16,color="green",shape="box"];2183[label="xwv88",fontsize=16,color="green",shape="box"];2184[label="xwv91",fontsize=16,color="green",shape="box"];2185[label="xwv88",fontsize=16,color="green",shape="box"];2186[label="xwv91",fontsize=16,color="green",shape="box"];2187[label="xwv88",fontsize=16,color="green",shape="box"];2188[label="xwv91",fontsize=16,color="green",shape="box"];2189[label="xwv88",fontsize=16,color="green",shape="box"];2190[label="xwv91",fontsize=16,color="green",shape="box"];2191[label="xwv88",fontsize=16,color="green",shape="box"];2192[label="xwv91",fontsize=16,color="green",shape="box"];2193[label="xwv88",fontsize=16,color="green",shape="box"];2194[label="xwv91",fontsize=16,color="green",shape="box"];2195[label="xwv88",fontsize=16,color="green",shape="box"];2196[label="xwv91",fontsize=16,color="green",shape="box"];2197[label="xwv88",fontsize=16,color="green",shape="box"];2198[label="xwv91",fontsize=16,color="green",shape="box"];2199[label="xwv88",fontsize=16,color="green",shape="box"];2200 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2200[label="xwv88 == xwv91",fontsize=16,color="magenta"];2200 -> 2393[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2200 -> 2394[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2201 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2201[label="xwv88 == xwv91",fontsize=16,color="magenta"];2201 -> 2395[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2201 -> 2396[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2202 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2202[label="xwv88 == xwv91",fontsize=16,color="magenta"];2202 -> 2397[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2202 -> 2398[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2203 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2203[label="xwv88 == xwv91",fontsize=16,color="magenta"];2203 -> 2399[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2203 -> 2400[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2204 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2204[label="xwv88 == xwv91",fontsize=16,color="magenta"];2204 -> 2401[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2204 -> 2402[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2205 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2205[label="xwv88 == xwv91",fontsize=16,color="magenta"];2205 -> 2403[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2205 -> 2404[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2206 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2206[label="xwv88 == xwv91",fontsize=16,color="magenta"];2206 -> 2405[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2206 -> 2406[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2207 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2207[label="xwv88 == xwv91",fontsize=16,color="magenta"];2207 -> 2407[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2207 -> 2408[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2208 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2208[label="xwv88 == xwv91",fontsize=16,color="magenta"];2208 -> 2409[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2208 -> 2410[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2209 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2209[label="xwv88 == xwv91",fontsize=16,color="magenta"];2209 -> 2411[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2209 -> 2412[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2210 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2210[label="xwv88 == xwv91",fontsize=16,color="magenta"];2210 -> 2413[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2210 -> 2414[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2211 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2211[label="xwv88 == xwv91",fontsize=16,color="magenta"];2211 -> 2415[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2211 -> 2416[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2212 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2212[label="xwv88 == xwv91",fontsize=16,color="magenta"];2212 -> 2417[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2212 -> 2418[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2213 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2213[label="xwv88 == xwv91",fontsize=16,color="magenta"];2213 -> 2419[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2213 -> 2420[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2424[label="xwv89 < xwv92",fontsize=16,color="blue",shape="box"];4513[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4513[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4513 -> 2428[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4514[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4514[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4514 -> 2429[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4515[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4515[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4515 -> 2430[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4516[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4516[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4516 -> 2431[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4517[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4517[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4517 -> 2432[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4518[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4518[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4518 -> 2433[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4519[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4519[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4519 -> 2434[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4520[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4520[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4520 -> 2435[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4521[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4521[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4521 -> 2436[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4522[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4522[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4522 -> 2437[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4523[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4523[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4523 -> 2438[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4524[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4524[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4524 -> 2439[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4525[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4525[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4525 -> 2440[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4526[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4526[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4526 -> 2441[label="",style="solid", color="blue", weight=3]; 37.19/18.88 2425 -> 1201[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2425[label="xwv89 == xwv92 && xwv90 <= xwv93",fontsize=16,color="magenta"];2425 -> 2442[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2425 -> 2443[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2423[label="xwv209 || xwv210",fontsize=16,color="burlywood",shape="triangle"];4527[label="xwv209/False",fontsize=10,color="white",style="solid",shape="box"];2423 -> 4527[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4527 -> 2444[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4528[label="xwv209/True",fontsize=10,color="white",style="solid",shape="box"];2423 -> 4528[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4528 -> 2445[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2216[label="compare1 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) xwv199",fontsize=16,color="burlywood",shape="triangle"];4529[label="xwv199/False",fontsize=10,color="white",style="solid",shape="box"];2216 -> 4529[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4529 -> 2446[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4530[label="xwv199/True",fontsize=10,color="white",style="solid",shape="box"];2216 -> 4530[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4530 -> 2447[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2217 -> 2216[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2217[label="compare1 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) True",fontsize=16,color="magenta"];2217 -> 2448[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2218[label="xwv99",fontsize=16,color="green",shape="box"];2219[label="xwv100",fontsize=16,color="green",shape="box"];2220[label="xwv99",fontsize=16,color="green",shape="box"];2221[label="xwv100",fontsize=16,color="green",shape="box"];2222[label="xwv99",fontsize=16,color="green",shape="box"];2223[label="xwv100",fontsize=16,color="green",shape="box"];2224[label="xwv99",fontsize=16,color="green",shape="box"];2225[label="xwv100",fontsize=16,color="green",shape="box"];2226[label="xwv99",fontsize=16,color="green",shape="box"];2227[label="xwv100",fontsize=16,color="green",shape="box"];2228[label="xwv99",fontsize=16,color="green",shape="box"];2229[label="xwv100",fontsize=16,color="green",shape="box"];2230[label="xwv99",fontsize=16,color="green",shape="box"];2231[label="xwv100",fontsize=16,color="green",shape="box"];2232[label="xwv99",fontsize=16,color="green",shape="box"];2233[label="xwv100",fontsize=16,color="green",shape="box"];2234[label="xwv99",fontsize=16,color="green",shape="box"];2235[label="xwv100",fontsize=16,color="green",shape="box"];2236[label="xwv99",fontsize=16,color="green",shape="box"];2237[label="xwv100",fontsize=16,color="green",shape="box"];2238[label="xwv99",fontsize=16,color="green",shape="box"];2239[label="xwv100",fontsize=16,color="green",shape="box"];2240[label="xwv99",fontsize=16,color="green",shape="box"];2241[label="xwv100",fontsize=16,color="green",shape="box"];2242[label="xwv99",fontsize=16,color="green",shape="box"];2243[label="xwv100",fontsize=16,color="green",shape="box"];2244[label="xwv99",fontsize=16,color="green",shape="box"];2245[label="xwv100",fontsize=16,color="green",shape="box"];2246[label="compare0 (Left xwv157) (Left xwv158) True",fontsize=16,color="black",shape="box"];2246 -> 2449[label="",style="solid", color="black", weight=3]; 37.19/18.88 2247[label="xwv106",fontsize=16,color="green",shape="box"];2248[label="xwv107",fontsize=16,color="green",shape="box"];2249[label="xwv106",fontsize=16,color="green",shape="box"];2250[label="xwv107",fontsize=16,color="green",shape="box"];2251[label="xwv106",fontsize=16,color="green",shape="box"];2252[label="xwv107",fontsize=16,color="green",shape="box"];2253[label="xwv106",fontsize=16,color="green",shape="box"];2254[label="xwv107",fontsize=16,color="green",shape="box"];2255[label="xwv106",fontsize=16,color="green",shape="box"];2256[label="xwv107",fontsize=16,color="green",shape="box"];2257[label="xwv106",fontsize=16,color="green",shape="box"];2258[label="xwv107",fontsize=16,color="green",shape="box"];2259[label="xwv106",fontsize=16,color="green",shape="box"];2260[label="xwv107",fontsize=16,color="green",shape="box"];2261[label="xwv106",fontsize=16,color="green",shape="box"];2262[label="xwv107",fontsize=16,color="green",shape="box"];2263[label="xwv106",fontsize=16,color="green",shape="box"];2264[label="xwv107",fontsize=16,color="green",shape="box"];2265[label="xwv106",fontsize=16,color="green",shape="box"];2266[label="xwv107",fontsize=16,color="green",shape="box"];2267[label="xwv106",fontsize=16,color="green",shape="box"];2268[label="xwv107",fontsize=16,color="green",shape="box"];2269[label="xwv106",fontsize=16,color="green",shape="box"];2270[label="xwv107",fontsize=16,color="green",shape="box"];2271[label="xwv106",fontsize=16,color="green",shape="box"];2272[label="xwv107",fontsize=16,color="green",shape="box"];2273[label="xwv106",fontsize=16,color="green",shape="box"];2274[label="xwv107",fontsize=16,color="green",shape="box"];2275[label="compare0 (Right xwv164) (Right xwv165) True",fontsize=16,color="black",shape="box"];2275 -> 2450[label="",style="solid", color="black", weight=3]; 37.19/18.88 2276[label="primMulNat (Succ xwv30000) (Succ xwv40100)",fontsize=16,color="black",shape="box"];2276 -> 2451[label="",style="solid", color="black", weight=3]; 37.19/18.88 2277[label="primMulNat (Succ xwv30000) Zero",fontsize=16,color="black",shape="box"];2277 -> 2452[label="",style="solid", color="black", weight=3]; 37.19/18.88 2278[label="primMulNat Zero (Succ xwv40100)",fontsize=16,color="black",shape="box"];2278 -> 2453[label="",style="solid", color="black", weight=3]; 37.19/18.88 2279[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2279 -> 2454[label="",style="solid", color="black", weight=3]; 37.19/18.88 2280[label="xwv2800",fontsize=16,color="green",shape="box"];2281[label="xwv3300",fontsize=16,color="green",shape="box"];2282[label="FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514",fontsize=16,color="green",shape="box"];2283[label="FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524",fontsize=16,color="green",shape="box"];2284[label="FiniteMap.glueBal2GlueBal0 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) otherwise",fontsize=16,color="black",shape="box"];2284 -> 2455[label="",style="solid", color="black", weight=3]; 37.19/18.88 2285 -> 82[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2285[label="FiniteMap.mkBalBranch (FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)) (FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.deleteMin (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="magenta"];2285 -> 2456[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2285 -> 2457[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2285 -> 2458[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2285 -> 2459[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2286[label="primPlusNat (Succ xwv16200) (Succ xwv13700)",fontsize=16,color="black",shape="box"];2286 -> 2460[label="",style="solid", color="black", weight=3]; 37.19/18.88 2287[label="primPlusNat (Succ xwv16200) Zero",fontsize=16,color="black",shape="box"];2287 -> 2461[label="",style="solid", color="black", weight=3]; 37.19/18.88 2288[label="primPlusNat Zero (Succ xwv13700)",fontsize=16,color="black",shape="box"];2288 -> 2462[label="",style="solid", color="black", weight=3]; 37.19/18.88 2289[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2289 -> 2463[label="",style="solid", color="black", weight=3]; 37.19/18.88 2290 -> 1596[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2290[label="primMinusNat xwv16200 xwv13700",fontsize=16,color="magenta"];2290 -> 2464[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2290 -> 2465[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2291[label="Pos (Succ xwv16200)",fontsize=16,color="green",shape="box"];2292[label="Neg (Succ xwv13700)",fontsize=16,color="green",shape="box"];2293[label="Pos Zero",fontsize=16,color="green",shape="box"];2294[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv16 xwv13 xwv14 xwv35 xwv13 xwv14 xwv16 xwv35 True",fontsize=16,color="black",shape="box"];2294 -> 2466[label="",style="solid", color="black", weight=3]; 37.19/18.88 2295[label="FiniteMap.mkBalBranch6MkBalBranch1 FiniteMap.EmptyFM xwv13 xwv14 xwv35 FiniteMap.EmptyFM xwv35 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2295 -> 2467[label="",style="solid", color="black", weight=3]; 37.19/18.88 2296[label="FiniteMap.mkBalBranch6MkBalBranch1 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)",fontsize=16,color="black",shape="box"];2296 -> 2468[label="",style="solid", color="black", weight=3]; 37.19/18.88 2298 -> 102[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2298[label="FiniteMap.sizeFM xwv353 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv354",fontsize=16,color="magenta"];2298 -> 2469[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2298 -> 2470[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2297[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 xwv201",fontsize=16,color="burlywood",shape="triangle"];4531[label="xwv201/False",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4531[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4531 -> 2471[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4532[label="xwv201/True",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4532[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4532 -> 2472[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2299 -> 1133[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2299[label="FiniteMap.sizeFM xwv35",fontsize=16,color="magenta"];2300 -> 1566[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2300[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xwv16 xwv13 xwv35)",fontsize=16,color="magenta"];2300 -> 2473[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2300 -> 2474[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2301[label="xwv125",fontsize=16,color="green",shape="box"];2302[label="xwv127",fontsize=16,color="green",shape="box"];2303[label="xwv125",fontsize=16,color="green",shape="box"];2304[label="xwv127",fontsize=16,color="green",shape="box"];2305[label="xwv125",fontsize=16,color="green",shape="box"];2306[label="xwv127",fontsize=16,color="green",shape="box"];2307[label="xwv125",fontsize=16,color="green",shape="box"];2308[label="xwv127",fontsize=16,color="green",shape="box"];2309[label="xwv125",fontsize=16,color="green",shape="box"];2310[label="xwv127",fontsize=16,color="green",shape="box"];2311[label="xwv125",fontsize=16,color="green",shape="box"];2312[label="xwv127",fontsize=16,color="green",shape="box"];2313[label="xwv125",fontsize=16,color="green",shape="box"];2314[label="xwv127",fontsize=16,color="green",shape="box"];2315[label="xwv125",fontsize=16,color="green",shape="box"];2316[label="xwv127",fontsize=16,color="green",shape="box"];2317[label="xwv125",fontsize=16,color="green",shape="box"];2318[label="xwv127",fontsize=16,color="green",shape="box"];2319[label="xwv125",fontsize=16,color="green",shape="box"];2320[label="xwv127",fontsize=16,color="green",shape="box"];2321[label="xwv125",fontsize=16,color="green",shape="box"];2322[label="xwv127",fontsize=16,color="green",shape="box"];2323[label="xwv125",fontsize=16,color="green",shape="box"];2324[label="xwv127",fontsize=16,color="green",shape="box"];2325[label="xwv125",fontsize=16,color="green",shape="box"];2326[label="xwv127",fontsize=16,color="green",shape="box"];2327[label="xwv125",fontsize=16,color="green",shape="box"];2328[label="xwv127",fontsize=16,color="green",shape="box"];2329[label="xwv126",fontsize=16,color="green",shape="box"];2330[label="xwv128",fontsize=16,color="green",shape="box"];2331[label="xwv126",fontsize=16,color="green",shape="box"];2332[label="xwv128",fontsize=16,color="green",shape="box"];2333[label="xwv126",fontsize=16,color="green",shape="box"];2334[label="xwv128",fontsize=16,color="green",shape="box"];2335[label="xwv126",fontsize=16,color="green",shape="box"];2336[label="xwv128",fontsize=16,color="green",shape="box"];2337[label="xwv126",fontsize=16,color="green",shape="box"];2338[label="xwv128",fontsize=16,color="green",shape="box"];2339[label="xwv126",fontsize=16,color="green",shape="box"];2340[label="xwv128",fontsize=16,color="green",shape="box"];2341[label="xwv126",fontsize=16,color="green",shape="box"];2342[label="xwv128",fontsize=16,color="green",shape="box"];2343[label="xwv126",fontsize=16,color="green",shape="box"];2344[label="xwv128",fontsize=16,color="green",shape="box"];2345[label="xwv126",fontsize=16,color="green",shape="box"];2346[label="xwv128",fontsize=16,color="green",shape="box"];2347[label="xwv126",fontsize=16,color="green",shape="box"];2348[label="xwv128",fontsize=16,color="green",shape="box"];2349[label="xwv126",fontsize=16,color="green",shape="box"];2350[label="xwv128",fontsize=16,color="green",shape="box"];2351[label="xwv126",fontsize=16,color="green",shape="box"];2352[label="xwv128",fontsize=16,color="green",shape="box"];2353[label="xwv126",fontsize=16,color="green",shape="box"];2354[label="xwv128",fontsize=16,color="green",shape="box"];2355[label="xwv126",fontsize=16,color="green",shape="box"];2356[label="xwv128",fontsize=16,color="green",shape="box"];2357[label="compare1 (xwv177,xwv178) (xwv179,xwv180) False",fontsize=16,color="black",shape="box"];2357 -> 2475[label="",style="solid", color="black", weight=3]; 37.19/18.88 2358[label="compare1 (xwv177,xwv178) (xwv179,xwv180) True",fontsize=16,color="black",shape="box"];2358 -> 2476[label="",style="solid", color="black", weight=3]; 37.19/18.88 2359[label="True",fontsize=16,color="green",shape="box"];2361 -> 208[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2361[label="compare xwv72 xwv73",fontsize=16,color="magenta"];2361 -> 2477[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2361 -> 2478[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2360[label="xwv205 /= GT",fontsize=16,color="black",shape="triangle"];2360 -> 2479[label="",style="solid", color="black", weight=3]; 37.19/18.88 2362 -> 209[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2362[label="compare xwv72 xwv73",fontsize=16,color="magenta"];2362 -> 2480[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2362 -> 2481[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2369[label="False <= False",fontsize=16,color="black",shape="box"];2369 -> 2482[label="",style="solid", color="black", weight=3]; 37.19/18.88 2370[label="False <= True",fontsize=16,color="black",shape="box"];2370 -> 2483[label="",style="solid", color="black", weight=3]; 37.19/18.88 2371[label="True <= False",fontsize=16,color="black",shape="box"];2371 -> 2484[label="",style="solid", color="black", weight=3]; 37.19/18.88 2372[label="True <= True",fontsize=16,color="black",shape="box"];2372 -> 2485[label="",style="solid", color="black", weight=3]; 37.19/18.88 2373[label="(xwv720,xwv721) <= (xwv730,xwv731)",fontsize=16,color="black",shape="box"];2373 -> 2486[label="",style="solid", color="black", weight=3]; 37.19/18.88 2374[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2374 -> 2487[label="",style="solid", color="black", weight=3]; 37.19/18.88 2375[label="Nothing <= Just xwv730",fontsize=16,color="black",shape="box"];2375 -> 2488[label="",style="solid", color="black", weight=3]; 37.19/18.88 2376[label="Just xwv720 <= Nothing",fontsize=16,color="black",shape="box"];2376 -> 2489[label="",style="solid", color="black", weight=3]; 37.19/18.88 2377[label="Just xwv720 <= Just xwv730",fontsize=16,color="black",shape="box"];2377 -> 2490[label="",style="solid", color="black", weight=3]; 37.19/18.88 2363 -> 213[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2363[label="compare xwv72 xwv73",fontsize=16,color="magenta"];2363 -> 2491[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2363 -> 2492[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2364 -> 214[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2364[label="compare xwv72 xwv73",fontsize=16,color="magenta"];2364 -> 2493[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2364 -> 2494[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2365 -> 215[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2365[label="compare xwv72 xwv73",fontsize=16,color="magenta"];2365 -> 2495[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2365 -> 2496[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2366 -> 216[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2366[label="compare xwv72 xwv73",fontsize=16,color="magenta"];2366 -> 2497[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2366 -> 2498[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2378[label="LT <= LT",fontsize=16,color="black",shape="box"];2378 -> 2499[label="",style="solid", color="black", weight=3]; 37.19/18.88 2379[label="LT <= EQ",fontsize=16,color="black",shape="box"];2379 -> 2500[label="",style="solid", color="black", weight=3]; 37.19/18.88 2380[label="LT <= GT",fontsize=16,color="black",shape="box"];2380 -> 2501[label="",style="solid", color="black", weight=3]; 37.19/18.88 2381[label="EQ <= LT",fontsize=16,color="black",shape="box"];2381 -> 2502[label="",style="solid", color="black", weight=3]; 37.19/18.88 2382[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2382 -> 2503[label="",style="solid", color="black", weight=3]; 37.19/18.88 2383[label="EQ <= GT",fontsize=16,color="black",shape="box"];2383 -> 2504[label="",style="solid", color="black", weight=3]; 37.19/18.88 2384[label="GT <= LT",fontsize=16,color="black",shape="box"];2384 -> 2505[label="",style="solid", color="black", weight=3]; 37.19/18.88 2385[label="GT <= EQ",fontsize=16,color="black",shape="box"];2385 -> 2506[label="",style="solid", color="black", weight=3]; 37.19/18.88 2386[label="GT <= GT",fontsize=16,color="black",shape="box"];2386 -> 2507[label="",style="solid", color="black", weight=3]; 37.19/18.88 2387[label="(xwv720,xwv721,xwv722) <= (xwv730,xwv731,xwv732)",fontsize=16,color="black",shape="box"];2387 -> 2508[label="",style="solid", color="black", weight=3]; 37.19/18.88 2388[label="Left xwv720 <= Left xwv730",fontsize=16,color="black",shape="box"];2388 -> 2509[label="",style="solid", color="black", weight=3]; 37.19/18.88 2389[label="Left xwv720 <= Right xwv730",fontsize=16,color="black",shape="box"];2389 -> 2510[label="",style="solid", color="black", weight=3]; 37.19/18.88 2390[label="Right xwv720 <= Left xwv730",fontsize=16,color="black",shape="box"];2390 -> 2511[label="",style="solid", color="black", weight=3]; 37.19/18.88 2391[label="Right xwv720 <= Right xwv730",fontsize=16,color="black",shape="box"];2391 -> 2512[label="",style="solid", color="black", weight=3]; 37.19/18.88 2367 -> 220[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2367[label="compare xwv72 xwv73",fontsize=16,color="magenta"];2367 -> 2513[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2367 -> 2514[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2368 -> 221[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2368[label="compare xwv72 xwv73",fontsize=16,color="magenta"];2368 -> 2515[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2368 -> 2516[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2392[label="GT",fontsize=16,color="green",shape="box"];2393[label="xwv88",fontsize=16,color="green",shape="box"];2394[label="xwv91",fontsize=16,color="green",shape="box"];2395[label="xwv88",fontsize=16,color="green",shape="box"];2396[label="xwv91",fontsize=16,color="green",shape="box"];2397[label="xwv88",fontsize=16,color="green",shape="box"];2398[label="xwv91",fontsize=16,color="green",shape="box"];2399[label="xwv88",fontsize=16,color="green",shape="box"];2400[label="xwv91",fontsize=16,color="green",shape="box"];2401[label="xwv88",fontsize=16,color="green",shape="box"];2402[label="xwv91",fontsize=16,color="green",shape="box"];2403[label="xwv88",fontsize=16,color="green",shape="box"];2404[label="xwv91",fontsize=16,color="green",shape="box"];2405[label="xwv88",fontsize=16,color="green",shape="box"];2406[label="xwv91",fontsize=16,color="green",shape="box"];2407[label="xwv88",fontsize=16,color="green",shape="box"];2408[label="xwv91",fontsize=16,color="green",shape="box"];2409[label="xwv88",fontsize=16,color="green",shape="box"];2410[label="xwv91",fontsize=16,color="green",shape="box"];2411[label="xwv88",fontsize=16,color="green",shape="box"];2412[label="xwv91",fontsize=16,color="green",shape="box"];2413[label="xwv88",fontsize=16,color="green",shape="box"];2414[label="xwv91",fontsize=16,color="green",shape="box"];2415[label="xwv88",fontsize=16,color="green",shape="box"];2416[label="xwv91",fontsize=16,color="green",shape="box"];2417[label="xwv88",fontsize=16,color="green",shape="box"];2418[label="xwv91",fontsize=16,color="green",shape="box"];2419[label="xwv88",fontsize=16,color="green",shape="box"];2420[label="xwv91",fontsize=16,color="green",shape="box"];2428 -> 102[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2428[label="xwv89 < xwv92",fontsize=16,color="magenta"];2428 -> 2517[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2428 -> 2518[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2429 -> 103[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2429[label="xwv89 < xwv92",fontsize=16,color="magenta"];2429 -> 2519[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2429 -> 2520[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2430 -> 104[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2430[label="xwv89 < xwv92",fontsize=16,color="magenta"];2430 -> 2521[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2430 -> 2522[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2431 -> 105[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2431[label="xwv89 < xwv92",fontsize=16,color="magenta"];2431 -> 2523[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2431 -> 2524[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2432 -> 106[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2432[label="xwv89 < xwv92",fontsize=16,color="magenta"];2432 -> 2525[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2432 -> 2526[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2433 -> 107[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2433[label="xwv89 < xwv92",fontsize=16,color="magenta"];2433 -> 2527[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2433 -> 2528[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2434 -> 108[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2434[label="xwv89 < xwv92",fontsize=16,color="magenta"];2434 -> 2529[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2434 -> 2530[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2435 -> 109[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2435[label="xwv89 < xwv92",fontsize=16,color="magenta"];2435 -> 2531[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2435 -> 2532[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2436 -> 110[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2436[label="xwv89 < xwv92",fontsize=16,color="magenta"];2436 -> 2533[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2436 -> 2534[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2437 -> 111[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2437[label="xwv89 < xwv92",fontsize=16,color="magenta"];2437 -> 2535[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2437 -> 2536[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2438 -> 112[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2438[label="xwv89 < xwv92",fontsize=16,color="magenta"];2438 -> 2537[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2438 -> 2538[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2439 -> 113[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2439[label="xwv89 < xwv92",fontsize=16,color="magenta"];2439 -> 2539[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2439 -> 2540[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2440 -> 114[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2440[label="xwv89 < xwv92",fontsize=16,color="magenta"];2440 -> 2541[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2440 -> 2542[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2441 -> 115[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2441[label="xwv89 < xwv92",fontsize=16,color="magenta"];2441 -> 2543[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2441 -> 2544[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2442[label="xwv89 == xwv92",fontsize=16,color="blue",shape="box"];4533[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4533[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4533 -> 2545[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4534[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4534[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4534 -> 2546[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4535[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4535[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4535 -> 2547[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4536[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4536[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4536 -> 2548[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4537[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4537[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4537 -> 2549[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4538[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4538[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4538 -> 2550[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4539[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4539[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4539 -> 2551[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4540[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4540[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4540 -> 2552[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4541[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4541[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4541 -> 2553[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4542[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4542[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4542 -> 2554[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4543[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4543[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4543 -> 2555[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4544[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4544[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4544 -> 2556[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4545[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4545[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4545 -> 2557[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4546[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4546[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4546 -> 2558[label="",style="solid", color="blue", weight=3]; 37.19/18.88 2443[label="xwv90 <= xwv93",fontsize=16,color="blue",shape="box"];4547[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4547[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4547 -> 2559[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4548[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4548[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4548 -> 2560[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4549[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4549[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4549 -> 2561[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4550[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4550[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4550 -> 2562[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4551[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4551[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4551 -> 2563[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4552[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4552[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4552 -> 2564[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4553[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4553[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4553 -> 2565[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4554[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4554[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4554 -> 2566[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4555[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4555[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4555 -> 2567[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4556[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4556[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4556 -> 2568[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4557[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4557[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4557 -> 2569[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4558[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4558[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4558 -> 2570[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4559[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4559[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4559 -> 2571[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4560[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2443 -> 4560[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4560 -> 2572[label="",style="solid", color="blue", weight=3]; 37.19/18.88 2444[label="False || xwv210",fontsize=16,color="black",shape="box"];2444 -> 2573[label="",style="solid", color="black", weight=3]; 37.19/18.88 2445[label="True || xwv210",fontsize=16,color="black",shape="box"];2445 -> 2574[label="",style="solid", color="black", weight=3]; 37.19/18.88 2446[label="compare1 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) False",fontsize=16,color="black",shape="box"];2446 -> 2575[label="",style="solid", color="black", weight=3]; 37.19/18.88 2447[label="compare1 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) True",fontsize=16,color="black",shape="box"];2447 -> 2576[label="",style="solid", color="black", weight=3]; 37.19/18.88 2448[label="True",fontsize=16,color="green",shape="box"];2449[label="GT",fontsize=16,color="green",shape="box"];2450[label="GT",fontsize=16,color="green",shape="box"];2451 -> 1874[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2451[label="primPlusNat (primMulNat xwv30000 (Succ xwv40100)) (Succ xwv40100)",fontsize=16,color="magenta"];2451 -> 2577[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2451 -> 2578[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2452[label="Zero",fontsize=16,color="green",shape="box"];2453[label="Zero",fontsize=16,color="green",shape="box"];2454[label="Zero",fontsize=16,color="green",shape="box"];2455[label="FiniteMap.glueBal2GlueBal0 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) True",fontsize=16,color="black",shape="box"];2455 -> 2579[label="",style="solid", color="black", weight=3]; 37.19/18.88 2456[label="FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="black",shape="box"];2456 -> 2580[label="",style="solid", color="black", weight=3]; 37.19/18.88 2457[label="FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="black",shape="box"];2457 -> 2581[label="",style="solid", color="black", weight=3]; 37.19/18.88 2458[label="FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514",fontsize=16,color="green",shape="box"];2459[label="FiniteMap.deleteMin (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="burlywood",shape="triangle"];4561[label="xwv523/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2459 -> 4561[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4561 -> 2582[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4562[label="xwv523/FiniteMap.Branch xwv5230 xwv5231 xwv5232 xwv5233 xwv5234",fontsize=10,color="white",style="solid",shape="box"];2459 -> 4562[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4562 -> 2583[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2460[label="Succ (Succ (primPlusNat xwv16200 xwv13700))",fontsize=16,color="green",shape="box"];2460 -> 2584[label="",style="dashed", color="green", weight=3]; 37.19/18.88 2461[label="Succ xwv16200",fontsize=16,color="green",shape="box"];2462[label="Succ xwv13700",fontsize=16,color="green",shape="box"];2463[label="Zero",fontsize=16,color="green",shape="box"];2464[label="xwv16200",fontsize=16,color="green",shape="box"];2465[label="xwv13700",fontsize=16,color="green",shape="box"];2466[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="box"];2466 -> 2585[label="",style="solid", color="black", weight=3]; 37.19/18.88 2467[label="error []",fontsize=16,color="red",shape="box"];2468[label="FiniteMap.mkBalBranch6MkBalBranch12 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)",fontsize=16,color="black",shape="box"];2468 -> 2586[label="",style="solid", color="black", weight=3]; 37.19/18.88 2469 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2469[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv354",fontsize=16,color="magenta"];2469 -> 2587[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2469 -> 2588[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2470 -> 1133[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2470[label="FiniteMap.sizeFM xwv353",fontsize=16,color="magenta"];2470 -> 2589[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2471[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 False",fontsize=16,color="black",shape="box"];2471 -> 2590[label="",style="solid", color="black", weight=3]; 37.19/18.88 2472[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 True",fontsize=16,color="black",shape="box"];2472 -> 2591[label="",style="solid", color="black", weight=3]; 37.19/18.88 2473[label="FiniteMap.mkBranchLeft_size xwv16 xwv13 xwv35",fontsize=16,color="black",shape="box"];2473 -> 2592[label="",style="solid", color="black", weight=3]; 37.19/18.88 2474[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];2475[label="compare0 (xwv177,xwv178) (xwv179,xwv180) otherwise",fontsize=16,color="black",shape="box"];2475 -> 2593[label="",style="solid", color="black", weight=3]; 37.19/18.88 2476[label="LT",fontsize=16,color="green",shape="box"];2477[label="xwv73",fontsize=16,color="green",shape="box"];2478[label="xwv72",fontsize=16,color="green",shape="box"];2479 -> 2594[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2479[label="not (xwv205 == GT)",fontsize=16,color="magenta"];2479 -> 2595[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2480[label="xwv73",fontsize=16,color="green",shape="box"];2481[label="xwv72",fontsize=16,color="green",shape="box"];2482[label="True",fontsize=16,color="green",shape="box"];2483[label="True",fontsize=16,color="green",shape="box"];2484[label="False",fontsize=16,color="green",shape="box"];2485[label="True",fontsize=16,color="green",shape="box"];2486 -> 2423[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2486[label="xwv720 < xwv730 || xwv720 == xwv730 && xwv721 <= xwv731",fontsize=16,color="magenta"];2486 -> 2596[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2486 -> 2597[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2487[label="True",fontsize=16,color="green",shape="box"];2488[label="True",fontsize=16,color="green",shape="box"];2489[label="False",fontsize=16,color="green",shape="box"];2490[label="xwv720 <= xwv730",fontsize=16,color="blue",shape="box"];4563[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2490 -> 4563[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4563 -> 2598[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4564[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2490 -> 4564[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4564 -> 2599[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4565[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2490 -> 4565[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4565 -> 2600[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4566[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2490 -> 4566[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4566 -> 2601[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4567[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2490 -> 4567[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4567 -> 2602[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4568[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2490 -> 4568[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4568 -> 2603[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4569[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2490 -> 4569[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4569 -> 2604[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4570[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2490 -> 4570[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4570 -> 2605[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4571[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2490 -> 4571[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4571 -> 2606[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4572[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2490 -> 4572[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4572 -> 2607[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4573[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2490 -> 4573[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4573 -> 2608[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4574[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2490 -> 4574[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4574 -> 2609[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4575[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2490 -> 4575[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4575 -> 2610[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4576[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2490 -> 4576[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4576 -> 2611[label="",style="solid", color="blue", weight=3]; 37.19/18.88 2491[label="xwv73",fontsize=16,color="green",shape="box"];2492[label="xwv72",fontsize=16,color="green",shape="box"];2493[label="xwv73",fontsize=16,color="green",shape="box"];2494[label="xwv72",fontsize=16,color="green",shape="box"];2495[label="xwv73",fontsize=16,color="green",shape="box"];2496[label="xwv72",fontsize=16,color="green",shape="box"];2497[label="xwv73",fontsize=16,color="green",shape="box"];2498[label="xwv72",fontsize=16,color="green",shape="box"];2499[label="True",fontsize=16,color="green",shape="box"];2500[label="True",fontsize=16,color="green",shape="box"];2501[label="True",fontsize=16,color="green",shape="box"];2502[label="False",fontsize=16,color="green",shape="box"];2503[label="True",fontsize=16,color="green",shape="box"];2504[label="True",fontsize=16,color="green",shape="box"];2505[label="False",fontsize=16,color="green",shape="box"];2506[label="False",fontsize=16,color="green",shape="box"];2507[label="True",fontsize=16,color="green",shape="box"];2508 -> 2423[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2508[label="xwv720 < xwv730 || xwv720 == xwv730 && (xwv721 < xwv731 || xwv721 == xwv731 && xwv722 <= xwv732)",fontsize=16,color="magenta"];2508 -> 2612[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2508 -> 2613[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2509[label="xwv720 <= xwv730",fontsize=16,color="blue",shape="box"];4577[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4577[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4577 -> 2614[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4578[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4578[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4578 -> 2615[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4579[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4579[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4579 -> 2616[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4580[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4580[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4580 -> 2617[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4581[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4581[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4581 -> 2618[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4582[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4582[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4582 -> 2619[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4583[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4583[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4583 -> 2620[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4584[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4584[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4584 -> 2621[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4585[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4585[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4585 -> 2622[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4586[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4586[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4586 -> 2623[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4587[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4587[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4587 -> 2624[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4588[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4588[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4588 -> 2625[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4589[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4589[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4589 -> 2626[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4590[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4590[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4590 -> 2627[label="",style="solid", color="blue", weight=3]; 37.19/18.88 2510[label="True",fontsize=16,color="green",shape="box"];2511[label="False",fontsize=16,color="green",shape="box"];2512[label="xwv720 <= xwv730",fontsize=16,color="blue",shape="box"];4591[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 4591[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4591 -> 2628[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4592[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 4592[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4592 -> 2629[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4593[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 4593[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4593 -> 2630[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4594[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 4594[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4594 -> 2631[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4595[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 4595[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4595 -> 2632[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4596[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 4596[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4596 -> 2633[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4597[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 4597[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4597 -> 2634[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4598[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 4598[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4598 -> 2635[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4599[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 4599[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4599 -> 2636[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4600[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 4600[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4600 -> 2637[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4601[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 4601[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4601 -> 2638[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4602[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 4602[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4602 -> 2639[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4603[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 4603[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4603 -> 2640[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4604[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 4604[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4604 -> 2641[label="",style="solid", color="blue", weight=3]; 37.19/18.88 2513[label="xwv73",fontsize=16,color="green",shape="box"];2514[label="xwv72",fontsize=16,color="green",shape="box"];2515[label="xwv73",fontsize=16,color="green",shape="box"];2516[label="xwv72",fontsize=16,color="green",shape="box"];2517[label="xwv92",fontsize=16,color="green",shape="box"];2518[label="xwv89",fontsize=16,color="green",shape="box"];2519[label="xwv92",fontsize=16,color="green",shape="box"];2520[label="xwv89",fontsize=16,color="green",shape="box"];2521[label="xwv92",fontsize=16,color="green",shape="box"];2522[label="xwv89",fontsize=16,color="green",shape="box"];2523[label="xwv92",fontsize=16,color="green",shape="box"];2524[label="xwv89",fontsize=16,color="green",shape="box"];2525[label="xwv92",fontsize=16,color="green",shape="box"];2526[label="xwv89",fontsize=16,color="green",shape="box"];2527[label="xwv92",fontsize=16,color="green",shape="box"];2528[label="xwv89",fontsize=16,color="green",shape="box"];2529[label="xwv92",fontsize=16,color="green",shape="box"];2530[label="xwv89",fontsize=16,color="green",shape="box"];2531[label="xwv92",fontsize=16,color="green",shape="box"];2532[label="xwv89",fontsize=16,color="green",shape="box"];2533[label="xwv92",fontsize=16,color="green",shape="box"];2534[label="xwv89",fontsize=16,color="green",shape="box"];2535[label="xwv92",fontsize=16,color="green",shape="box"];2536[label="xwv89",fontsize=16,color="green",shape="box"];2537[label="xwv92",fontsize=16,color="green",shape="box"];2538[label="xwv89",fontsize=16,color="green",shape="box"];2539[label="xwv92",fontsize=16,color="green",shape="box"];2540[label="xwv89",fontsize=16,color="green",shape="box"];2541[label="xwv92",fontsize=16,color="green",shape="box"];2542[label="xwv89",fontsize=16,color="green",shape="box"];2543[label="xwv92",fontsize=16,color="green",shape="box"];2544[label="xwv89",fontsize=16,color="green",shape="box"];2545 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2545[label="xwv89 == xwv92",fontsize=16,color="magenta"];2545 -> 2642[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2545 -> 2643[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2546 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2546[label="xwv89 == xwv92",fontsize=16,color="magenta"];2546 -> 2644[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2546 -> 2645[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2547 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2547[label="xwv89 == xwv92",fontsize=16,color="magenta"];2547 -> 2646[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2547 -> 2647[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2548 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2548[label="xwv89 == xwv92",fontsize=16,color="magenta"];2548 -> 2648[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2548 -> 2649[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2549 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2549[label="xwv89 == xwv92",fontsize=16,color="magenta"];2549 -> 2650[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2549 -> 2651[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2550 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2550[label="xwv89 == xwv92",fontsize=16,color="magenta"];2550 -> 2652[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2550 -> 2653[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2551 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2551[label="xwv89 == xwv92",fontsize=16,color="magenta"];2551 -> 2654[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2551 -> 2655[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2552 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2552[label="xwv89 == xwv92",fontsize=16,color="magenta"];2552 -> 2656[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2552 -> 2657[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2553 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2553[label="xwv89 == xwv92",fontsize=16,color="magenta"];2553 -> 2658[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2553 -> 2659[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2554 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2554[label="xwv89 == xwv92",fontsize=16,color="magenta"];2554 -> 2660[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2554 -> 2661[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2555 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2555[label="xwv89 == xwv92",fontsize=16,color="magenta"];2555 -> 2662[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2555 -> 2663[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2556 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2556[label="xwv89 == xwv92",fontsize=16,color="magenta"];2556 -> 2664[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2556 -> 2665[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2557 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2557[label="xwv89 == xwv92",fontsize=16,color="magenta"];2557 -> 2666[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2557 -> 2667[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2558 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2558[label="xwv89 == xwv92",fontsize=16,color="magenta"];2558 -> 2668[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2558 -> 2669[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2559 -> 1920[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2559[label="xwv90 <= xwv93",fontsize=16,color="magenta"];2559 -> 2670[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2559 -> 2671[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2560 -> 1921[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2560[label="xwv90 <= xwv93",fontsize=16,color="magenta"];2560 -> 2672[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2560 -> 2673[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2561 -> 1922[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2561[label="xwv90 <= xwv93",fontsize=16,color="magenta"];2561 -> 2674[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2561 -> 2675[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2562 -> 1923[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2562[label="xwv90 <= xwv93",fontsize=16,color="magenta"];2562 -> 2676[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2562 -> 2677[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2563 -> 1924[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2563[label="xwv90 <= xwv93",fontsize=16,color="magenta"];2563 -> 2678[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2563 -> 2679[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2564 -> 1925[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2564[label="xwv90 <= xwv93",fontsize=16,color="magenta"];2564 -> 2680[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2564 -> 2681[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2565 -> 1926[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2565[label="xwv90 <= xwv93",fontsize=16,color="magenta"];2565 -> 2682[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2565 -> 2683[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2566 -> 1927[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2566[label="xwv90 <= xwv93",fontsize=16,color="magenta"];2566 -> 2684[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2566 -> 2685[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2567 -> 1928[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2567[label="xwv90 <= xwv93",fontsize=16,color="magenta"];2567 -> 2686[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2567 -> 2687[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2568 -> 1929[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2568[label="xwv90 <= xwv93",fontsize=16,color="magenta"];2568 -> 2688[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2568 -> 2689[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2569 -> 1930[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2569[label="xwv90 <= xwv93",fontsize=16,color="magenta"];2569 -> 2690[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2569 -> 2691[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2570 -> 1931[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2570[label="xwv90 <= xwv93",fontsize=16,color="magenta"];2570 -> 2692[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2570 -> 2693[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2571 -> 1932[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2571[label="xwv90 <= xwv93",fontsize=16,color="magenta"];2571 -> 2694[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2571 -> 2695[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2572 -> 1933[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2572[label="xwv90 <= xwv93",fontsize=16,color="magenta"];2572 -> 2696[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2572 -> 2697[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2573[label="xwv210",fontsize=16,color="green",shape="box"];2574[label="True",fontsize=16,color="green",shape="box"];2575[label="compare0 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) otherwise",fontsize=16,color="black",shape="box"];2575 -> 2698[label="",style="solid", color="black", weight=3]; 37.19/18.88 2576[label="LT",fontsize=16,color="green",shape="box"];2577 -> 1692[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2577[label="primMulNat xwv30000 (Succ xwv40100)",fontsize=16,color="magenta"];2577 -> 2699[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2577 -> 2700[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2578[label="Succ xwv40100",fontsize=16,color="green",shape="box"];2579 -> 82[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2579[label="FiniteMap.mkBalBranch (FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)) (FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)) (FiniteMap.deleteMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="magenta"];2579 -> 2701[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2579 -> 2702[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2579 -> 2703[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2579 -> 2704[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2580[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.glueBal2Vv3 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="black",shape="box"];2580 -> 2705[label="",style="solid", color="black", weight=3]; 37.19/18.88 2581[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.glueBal2Vv3 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="black",shape="box"];2581 -> 2706[label="",style="solid", color="black", weight=3]; 37.19/18.88 2582[label="FiniteMap.deleteMin (FiniteMap.Branch xwv520 xwv521 xwv522 FiniteMap.EmptyFM xwv524)",fontsize=16,color="black",shape="box"];2582 -> 2707[label="",style="solid", color="black", weight=3]; 37.19/18.88 2583[label="FiniteMap.deleteMin (FiniteMap.Branch xwv520 xwv521 xwv522 (FiniteMap.Branch xwv5230 xwv5231 xwv5232 xwv5233 xwv5234) xwv524)",fontsize=16,color="black",shape="box"];2583 -> 2708[label="",style="solid", color="black", weight=3]; 37.19/18.88 2584 -> 1874[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2584[label="primPlusNat xwv16200 xwv13700",fontsize=16,color="magenta"];2584 -> 2709[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2584 -> 2710[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2585 -> 634[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2585[label="FiniteMap.mkBranchResult xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];2586 -> 2711[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2586[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 (FiniteMap.sizeFM xwv164 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv163)",fontsize=16,color="magenta"];2586 -> 2712[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2587 -> 1133[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2587[label="FiniteMap.sizeFM xwv354",fontsize=16,color="magenta"];2587 -> 2713[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2588[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2589[label="xwv353",fontsize=16,color="green",shape="box"];2590[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 otherwise",fontsize=16,color="black",shape="box"];2590 -> 2714[label="",style="solid", color="black", weight=3]; 37.19/18.88 2591[label="FiniteMap.mkBalBranch6Single_L xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="black",shape="box"];2591 -> 2715[label="",style="solid", color="black", weight=3]; 37.19/18.88 2592 -> 1133[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2592[label="FiniteMap.sizeFM xwv16",fontsize=16,color="magenta"];2592 -> 2716[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2593[label="compare0 (xwv177,xwv178) (xwv179,xwv180) True",fontsize=16,color="black",shape="box"];2593 -> 2717[label="",style="solid", color="black", weight=3]; 37.19/18.88 2595 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2595[label="xwv205 == GT",fontsize=16,color="magenta"];2595 -> 2718[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2595 -> 2719[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2594[label="not xwv211",fontsize=16,color="burlywood",shape="triangle"];4605[label="xwv211/False",fontsize=10,color="white",style="solid",shape="box"];2594 -> 4605[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4605 -> 2720[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4606[label="xwv211/True",fontsize=10,color="white",style="solid",shape="box"];2594 -> 4606[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4606 -> 2721[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2596[label="xwv720 < xwv730",fontsize=16,color="blue",shape="box"];4607[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4607[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4607 -> 2722[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4608[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4608[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4608 -> 2723[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4609[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4609[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4609 -> 2724[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4610[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4610[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4610 -> 2725[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4611[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4611[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4611 -> 2726[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4612[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4612[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4612 -> 2727[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4613[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4613[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4613 -> 2728[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4614[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4614[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4614 -> 2729[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4615[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4615[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4615 -> 2730[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4616[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4616[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4616 -> 2731[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4617[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4617[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4617 -> 2732[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4618[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4618[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4618 -> 2733[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4619[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4619[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4619 -> 2734[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4620[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4620[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4620 -> 2735[label="",style="solid", color="blue", weight=3]; 37.19/18.88 2597 -> 1201[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2597[label="xwv720 == xwv730 && xwv721 <= xwv731",fontsize=16,color="magenta"];2597 -> 2736[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2597 -> 2737[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2598 -> 1920[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2598[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2598 -> 2738[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2598 -> 2739[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2599 -> 1921[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2599[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2599 -> 2740[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2599 -> 2741[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2600 -> 1922[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2600[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2600 -> 2742[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2600 -> 2743[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2601 -> 1923[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2601[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2601 -> 2744[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2601 -> 2745[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2602 -> 1924[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2602[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2602 -> 2746[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2602 -> 2747[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2603 -> 1925[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2603[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2603 -> 2748[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2603 -> 2749[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2604 -> 1926[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2604[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2604 -> 2750[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2604 -> 2751[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2605 -> 1927[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2605[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2605 -> 2752[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2605 -> 2753[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2606 -> 1928[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2606[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2606 -> 2754[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2606 -> 2755[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2607 -> 1929[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2607[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2607 -> 2756[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2607 -> 2757[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2608 -> 1930[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2608[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2608 -> 2758[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2608 -> 2759[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2609 -> 1931[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2609[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2609 -> 2760[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2609 -> 2761[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2610 -> 1932[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2610[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2610 -> 2762[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2610 -> 2763[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2611 -> 1933[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2611[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2611 -> 2764[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2611 -> 2765[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2612[label="xwv720 < xwv730",fontsize=16,color="blue",shape="box"];4621[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4621[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4621 -> 2766[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4622[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4622[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4622 -> 2767[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4623[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4623[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4623 -> 2768[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4624[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4624[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4624 -> 2769[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4625[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4625[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4625 -> 2770[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4626[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4626[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4626 -> 2771[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4627[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4627[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4627 -> 2772[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4628[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4628[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4628 -> 2773[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4629[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4629[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4629 -> 2774[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4630[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4630[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4630 -> 2775[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4631[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4631[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4631 -> 2776[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4632[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4632[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4632 -> 2777[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4633[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4633[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4633 -> 2778[label="",style="solid", color="blue", weight=3]; 37.19/18.88 4634[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4634[label="",style="solid", color="blue", weight=9]; 37.19/18.88 4634 -> 2779[label="",style="solid", color="blue", weight=3]; 37.19/18.88 2613 -> 1201[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2613[label="xwv720 == xwv730 && (xwv721 < xwv731 || xwv721 == xwv731 && xwv722 <= xwv732)",fontsize=16,color="magenta"];2613 -> 2780[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2613 -> 2781[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2614 -> 1920[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2614[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2614 -> 2782[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2614 -> 2783[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2615 -> 1921[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2615[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2615 -> 2784[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2615 -> 2785[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2616 -> 1922[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2616[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2616 -> 2786[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2616 -> 2787[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2617 -> 1923[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2617[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2617 -> 2788[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2617 -> 2789[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2618 -> 1924[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2618[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2618 -> 2790[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2618 -> 2791[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2619 -> 1925[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2619[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2619 -> 2792[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2619 -> 2793[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2620 -> 1926[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2620[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2620 -> 2794[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2620 -> 2795[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2621 -> 1927[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2621[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2621 -> 2796[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2621 -> 2797[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2622 -> 1928[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2622[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2622 -> 2798[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2622 -> 2799[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2623 -> 1929[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2623[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2623 -> 2800[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2623 -> 2801[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2624 -> 1930[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2624[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2624 -> 2802[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2624 -> 2803[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2625 -> 1931[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2625[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2625 -> 2804[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2625 -> 2805[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2626 -> 1932[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2626[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2626 -> 2806[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2626 -> 2807[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2627 -> 1933[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2627[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2627 -> 2808[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2627 -> 2809[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2628 -> 1920[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2628[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2628 -> 2810[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2628 -> 2811[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2629 -> 1921[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2629[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2629 -> 2812[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2629 -> 2813[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2630 -> 1922[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2630[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2630 -> 2814[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2630 -> 2815[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2631 -> 1923[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2631[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2631 -> 2816[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2631 -> 2817[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2632 -> 1924[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2632[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2632 -> 2818[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2632 -> 2819[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2633 -> 1925[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2633[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2633 -> 2820[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2633 -> 2821[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2634 -> 1926[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2634[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2634 -> 2822[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2634 -> 2823[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2635 -> 1927[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2635[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2635 -> 2824[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2635 -> 2825[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2636 -> 1928[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2636[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2636 -> 2826[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2636 -> 2827[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2637 -> 1929[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2637[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2637 -> 2828[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2637 -> 2829[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2638 -> 1930[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2638[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2638 -> 2830[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2638 -> 2831[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2639 -> 1931[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2639[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2639 -> 2832[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2639 -> 2833[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2640 -> 1932[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2640[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2640 -> 2834[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2640 -> 2835[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2641 -> 1933[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2641[label="xwv720 <= xwv730",fontsize=16,color="magenta"];2641 -> 2836[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2641 -> 2837[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2642[label="xwv89",fontsize=16,color="green",shape="box"];2643[label="xwv92",fontsize=16,color="green",shape="box"];2644[label="xwv89",fontsize=16,color="green",shape="box"];2645[label="xwv92",fontsize=16,color="green",shape="box"];2646[label="xwv89",fontsize=16,color="green",shape="box"];2647[label="xwv92",fontsize=16,color="green",shape="box"];2648[label="xwv89",fontsize=16,color="green",shape="box"];2649[label="xwv92",fontsize=16,color="green",shape="box"];2650[label="xwv89",fontsize=16,color="green",shape="box"];2651[label="xwv92",fontsize=16,color="green",shape="box"];2652[label="xwv89",fontsize=16,color="green",shape="box"];2653[label="xwv92",fontsize=16,color="green",shape="box"];2654[label="xwv89",fontsize=16,color="green",shape="box"];2655[label="xwv92",fontsize=16,color="green",shape="box"];2656[label="xwv89",fontsize=16,color="green",shape="box"];2657[label="xwv92",fontsize=16,color="green",shape="box"];2658[label="xwv89",fontsize=16,color="green",shape="box"];2659[label="xwv92",fontsize=16,color="green",shape="box"];2660[label="xwv89",fontsize=16,color="green",shape="box"];2661[label="xwv92",fontsize=16,color="green",shape="box"];2662[label="xwv89",fontsize=16,color="green",shape="box"];2663[label="xwv92",fontsize=16,color="green",shape="box"];2664[label="xwv89",fontsize=16,color="green",shape="box"];2665[label="xwv92",fontsize=16,color="green",shape="box"];2666[label="xwv89",fontsize=16,color="green",shape="box"];2667[label="xwv92",fontsize=16,color="green",shape="box"];2668[label="xwv89",fontsize=16,color="green",shape="box"];2669[label="xwv92",fontsize=16,color="green",shape="box"];2670[label="xwv90",fontsize=16,color="green",shape="box"];2671[label="xwv93",fontsize=16,color="green",shape="box"];2672[label="xwv90",fontsize=16,color="green",shape="box"];2673[label="xwv93",fontsize=16,color="green",shape="box"];2674[label="xwv90",fontsize=16,color="green",shape="box"];2675[label="xwv93",fontsize=16,color="green",shape="box"];2676[label="xwv90",fontsize=16,color="green",shape="box"];2677[label="xwv93",fontsize=16,color="green",shape="box"];2678[label="xwv90",fontsize=16,color="green",shape="box"];2679[label="xwv93",fontsize=16,color="green",shape="box"];2680[label="xwv90",fontsize=16,color="green",shape="box"];2681[label="xwv93",fontsize=16,color="green",shape="box"];2682[label="xwv90",fontsize=16,color="green",shape="box"];2683[label="xwv93",fontsize=16,color="green",shape="box"];2684[label="xwv90",fontsize=16,color="green",shape="box"];2685[label="xwv93",fontsize=16,color="green",shape="box"];2686[label="xwv90",fontsize=16,color="green",shape="box"];2687[label="xwv93",fontsize=16,color="green",shape="box"];2688[label="xwv90",fontsize=16,color="green",shape="box"];2689[label="xwv93",fontsize=16,color="green",shape="box"];2690[label="xwv90",fontsize=16,color="green",shape="box"];2691[label="xwv93",fontsize=16,color="green",shape="box"];2692[label="xwv90",fontsize=16,color="green",shape="box"];2693[label="xwv93",fontsize=16,color="green",shape="box"];2694[label="xwv90",fontsize=16,color="green",shape="box"];2695[label="xwv93",fontsize=16,color="green",shape="box"];2696[label="xwv90",fontsize=16,color="green",shape="box"];2697[label="xwv93",fontsize=16,color="green",shape="box"];2698[label="compare0 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) True",fontsize=16,color="black",shape="box"];2698 -> 2838[label="",style="solid", color="black", weight=3]; 37.19/18.88 2699[label="Succ xwv40100",fontsize=16,color="green",shape="box"];2700[label="xwv30000",fontsize=16,color="green",shape="box"];2701[label="FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="black",shape="box"];2701 -> 2839[label="",style="solid", color="black", weight=3]; 37.19/18.88 2702[label="FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="black",shape="box"];2702 -> 2840[label="",style="solid", color="black", weight=3]; 37.19/18.88 2703[label="FiniteMap.deleteMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="burlywood",shape="triangle"];4635[label="xwv514/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2703 -> 4635[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4635 -> 2841[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4636[label="xwv514/FiniteMap.Branch xwv5140 xwv5141 xwv5142 xwv5143 xwv5144",fontsize=10,color="white",style="solid",shape="box"];2703 -> 4636[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4636 -> 2842[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2704[label="FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524",fontsize=16,color="green",shape="box"];2705 -> 3385[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2705[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.findMin (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="magenta"];2705 -> 3386[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2705 -> 3387[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2705 -> 3388[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2705 -> 3389[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2705 -> 3390[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2705 -> 3391[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2705 -> 3392[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2705 -> 3393[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2705 -> 3394[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2705 -> 3395[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2705 -> 3396[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2705 -> 3397[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2705 -> 3398[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2705 -> 3399[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2705 -> 3400[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2706 -> 3479[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2706[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.findMin (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="magenta"];2706 -> 3480[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2706 -> 3481[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2706 -> 3482[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2706 -> 3483[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2706 -> 3484[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2706 -> 3485[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2706 -> 3486[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2706 -> 3487[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2706 -> 3488[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2706 -> 3489[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2706 -> 3490[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2706 -> 3491[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2706 -> 3492[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2706 -> 3493[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2706 -> 3494[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2707[label="xwv524",fontsize=16,color="green",shape="box"];2708 -> 82[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2708[label="FiniteMap.mkBalBranch xwv520 xwv521 (FiniteMap.deleteMin (FiniteMap.Branch xwv5230 xwv5231 xwv5232 xwv5233 xwv5234)) xwv524",fontsize=16,color="magenta"];2708 -> 2847[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2708 -> 2848[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2708 -> 2849[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2708 -> 2850[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2709[label="xwv16200",fontsize=16,color="green",shape="box"];2710[label="xwv13700",fontsize=16,color="green",shape="box"];2712 -> 102[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2712[label="FiniteMap.sizeFM xwv164 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv163",fontsize=16,color="magenta"];2712 -> 2851[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2712 -> 2852[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2711[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 xwv212",fontsize=16,color="burlywood",shape="triangle"];4637[label="xwv212/False",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4637[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4637 -> 2853[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 4638[label="xwv212/True",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4638[label="",style="solid", color="burlywood", weight=9]; 37.19/18.88 4638 -> 2854[label="",style="solid", color="burlywood", weight=3]; 37.19/18.88 2713[label="xwv354",fontsize=16,color="green",shape="box"];2714[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 True",fontsize=16,color="black",shape="box"];2714 -> 2855[label="",style="solid", color="black", weight=3]; 37.19/18.88 2715[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xwv350 xwv351 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv13 xwv14 xwv16 xwv353) xwv354",fontsize=16,color="black",shape="box"];2715 -> 2856[label="",style="solid", color="black", weight=3]; 37.19/18.88 2716[label="xwv16",fontsize=16,color="green",shape="box"];2717[label="GT",fontsize=16,color="green",shape="box"];2718[label="xwv205",fontsize=16,color="green",shape="box"];2719[label="GT",fontsize=16,color="green",shape="box"];2720[label="not False",fontsize=16,color="black",shape="box"];2720 -> 2857[label="",style="solid", color="black", weight=3]; 37.19/18.88 2721[label="not True",fontsize=16,color="black",shape="box"];2721 -> 2858[label="",style="solid", color="black", weight=3]; 37.19/18.88 2722 -> 102[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2722[label="xwv720 < xwv730",fontsize=16,color="magenta"];2722 -> 2859[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2722 -> 2860[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2723 -> 103[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2723[label="xwv720 < xwv730",fontsize=16,color="magenta"];2723 -> 2861[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2723 -> 2862[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2724 -> 104[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2724[label="xwv720 < xwv730",fontsize=16,color="magenta"];2724 -> 2863[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2724 -> 2864[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2725 -> 105[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2725[label="xwv720 < xwv730",fontsize=16,color="magenta"];2725 -> 2865[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2725 -> 2866[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2726 -> 106[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2726[label="xwv720 < xwv730",fontsize=16,color="magenta"];2726 -> 2867[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2726 -> 2868[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2727 -> 107[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2727[label="xwv720 < xwv730",fontsize=16,color="magenta"];2727 -> 2869[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2727 -> 2870[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2728 -> 108[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2728[label="xwv720 < xwv730",fontsize=16,color="magenta"];2728 -> 2871[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2728 -> 2872[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2729 -> 109[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2729[label="xwv720 < xwv730",fontsize=16,color="magenta"];2729 -> 2873[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2729 -> 2874[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2730 -> 110[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2730[label="xwv720 < xwv730",fontsize=16,color="magenta"];2730 -> 2875[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2730 -> 2876[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2731 -> 111[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2731[label="xwv720 < xwv730",fontsize=16,color="magenta"];2731 -> 2877[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2731 -> 2878[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2732 -> 112[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2732[label="xwv720 < xwv730",fontsize=16,color="magenta"];2732 -> 2879[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2732 -> 2880[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2733 -> 113[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2733[label="xwv720 < xwv730",fontsize=16,color="magenta"];2733 -> 2881[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2733 -> 2882[label="",style="dashed", color="magenta", weight=3]; 37.19/18.88 2734 -> 114[label="",style="dashed", color="red", weight=0]; 37.19/18.88 2734[label="xwv720 < xwv730",fontsize=16,color="magenta"];2734 -> 2883[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2734 -> 2884[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2735 -> 115[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2735[label="xwv720 < xwv730",fontsize=16,color="magenta"];2735 -> 2885[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2735 -> 2886[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2736[label="xwv720 == xwv730",fontsize=16,color="blue",shape="box"];4639[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4639[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4639 -> 2887[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4640[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4640[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4640 -> 2888[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4641[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4641[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4641 -> 2889[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4642[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4642[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4642 -> 2890[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4643[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4643[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4643 -> 2891[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4644[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4644[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4644 -> 2892[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4645[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4645[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4645 -> 2893[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4646[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4646[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4646 -> 2894[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4647[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4647[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4647 -> 2895[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4648[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4648[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4648 -> 2896[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4649[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4649[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4649 -> 2897[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4650[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4650[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4650 -> 2898[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4651[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4651[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4651 -> 2899[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4652[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4652[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4652 -> 2900[label="",style="solid", color="blue", weight=3]; 37.19/18.89 2737[label="xwv721 <= xwv731",fontsize=16,color="blue",shape="box"];4653[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 4653[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4653 -> 2901[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4654[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 4654[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4654 -> 2902[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4655[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 4655[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4655 -> 2903[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4656[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 4656[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4656 -> 2904[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4657[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 4657[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4657 -> 2905[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4658[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 4658[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4658 -> 2906[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4659[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 4659[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4659 -> 2907[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4660[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 4660[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4660 -> 2908[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4661[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 4661[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4661 -> 2909[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4662[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 4662[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4662 -> 2910[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4663[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 4663[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4663 -> 2911[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4664[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 4664[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4664 -> 2912[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4665[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 4665[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4665 -> 2913[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4666[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2737 -> 4666[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4666 -> 2914[label="",style="solid", color="blue", weight=3]; 37.19/18.89 2738[label="xwv720",fontsize=16,color="green",shape="box"];2739[label="xwv730",fontsize=16,color="green",shape="box"];2740[label="xwv720",fontsize=16,color="green",shape="box"];2741[label="xwv730",fontsize=16,color="green",shape="box"];2742[label="xwv720",fontsize=16,color="green",shape="box"];2743[label="xwv730",fontsize=16,color="green",shape="box"];2744[label="xwv720",fontsize=16,color="green",shape="box"];2745[label="xwv730",fontsize=16,color="green",shape="box"];2746[label="xwv720",fontsize=16,color="green",shape="box"];2747[label="xwv730",fontsize=16,color="green",shape="box"];2748[label="xwv720",fontsize=16,color="green",shape="box"];2749[label="xwv730",fontsize=16,color="green",shape="box"];2750[label="xwv720",fontsize=16,color="green",shape="box"];2751[label="xwv730",fontsize=16,color="green",shape="box"];2752[label="xwv720",fontsize=16,color="green",shape="box"];2753[label="xwv730",fontsize=16,color="green",shape="box"];2754[label="xwv720",fontsize=16,color="green",shape="box"];2755[label="xwv730",fontsize=16,color="green",shape="box"];2756[label="xwv720",fontsize=16,color="green",shape="box"];2757[label="xwv730",fontsize=16,color="green",shape="box"];2758[label="xwv720",fontsize=16,color="green",shape="box"];2759[label="xwv730",fontsize=16,color="green",shape="box"];2760[label="xwv720",fontsize=16,color="green",shape="box"];2761[label="xwv730",fontsize=16,color="green",shape="box"];2762[label="xwv720",fontsize=16,color="green",shape="box"];2763[label="xwv730",fontsize=16,color="green",shape="box"];2764[label="xwv720",fontsize=16,color="green",shape="box"];2765[label="xwv730",fontsize=16,color="green",shape="box"];2766 -> 102[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2766[label="xwv720 < xwv730",fontsize=16,color="magenta"];2766 -> 2915[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2766 -> 2916[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2767 -> 103[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2767[label="xwv720 < xwv730",fontsize=16,color="magenta"];2767 -> 2917[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2767 -> 2918[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2768 -> 104[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2768[label="xwv720 < xwv730",fontsize=16,color="magenta"];2768 -> 2919[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2768 -> 2920[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2769 -> 105[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2769[label="xwv720 < xwv730",fontsize=16,color="magenta"];2769 -> 2921[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2769 -> 2922[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2770 -> 106[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2770[label="xwv720 < xwv730",fontsize=16,color="magenta"];2770 -> 2923[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2770 -> 2924[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2771 -> 107[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2771[label="xwv720 < xwv730",fontsize=16,color="magenta"];2771 -> 2925[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2771 -> 2926[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2772 -> 108[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2772[label="xwv720 < xwv730",fontsize=16,color="magenta"];2772 -> 2927[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2772 -> 2928[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2773 -> 109[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2773[label="xwv720 < xwv730",fontsize=16,color="magenta"];2773 -> 2929[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2773 -> 2930[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2774 -> 110[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2774[label="xwv720 < xwv730",fontsize=16,color="magenta"];2774 -> 2931[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2774 -> 2932[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2775 -> 111[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2775[label="xwv720 < xwv730",fontsize=16,color="magenta"];2775 -> 2933[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2775 -> 2934[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2776 -> 112[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2776[label="xwv720 < xwv730",fontsize=16,color="magenta"];2776 -> 2935[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2776 -> 2936[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2777 -> 113[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2777[label="xwv720 < xwv730",fontsize=16,color="magenta"];2777 -> 2937[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2777 -> 2938[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2778 -> 114[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2778[label="xwv720 < xwv730",fontsize=16,color="magenta"];2778 -> 2939[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2778 -> 2940[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2779 -> 115[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2779[label="xwv720 < xwv730",fontsize=16,color="magenta"];2779 -> 2941[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2779 -> 2942[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2780[label="xwv720 == xwv730",fontsize=16,color="blue",shape="box"];4667[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4667[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4667 -> 2943[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4668[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4668[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4668 -> 2944[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4669[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4669[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4669 -> 2945[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4670[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4670[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4670 -> 2946[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4671[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4671[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4671 -> 2947[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4672[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4672[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4672 -> 2948[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4673[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4673[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4673 -> 2949[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4674[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4674[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4674 -> 2950[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4675[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4675[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4675 -> 2951[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4676[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4676[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4676 -> 2952[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4677[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4677[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4677 -> 2953[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4678[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4678[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4678 -> 2954[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4679[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4679[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4679 -> 2955[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4680[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4680[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4680 -> 2956[label="",style="solid", color="blue", weight=3]; 37.19/18.89 2781 -> 2423[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2781[label="xwv721 < xwv731 || xwv721 == xwv731 && xwv722 <= xwv732",fontsize=16,color="magenta"];2781 -> 2957[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2781 -> 2958[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2782[label="xwv720",fontsize=16,color="green",shape="box"];2783[label="xwv730",fontsize=16,color="green",shape="box"];2784[label="xwv720",fontsize=16,color="green",shape="box"];2785[label="xwv730",fontsize=16,color="green",shape="box"];2786[label="xwv720",fontsize=16,color="green",shape="box"];2787[label="xwv730",fontsize=16,color="green",shape="box"];2788[label="xwv720",fontsize=16,color="green",shape="box"];2789[label="xwv730",fontsize=16,color="green",shape="box"];2790[label="xwv720",fontsize=16,color="green",shape="box"];2791[label="xwv730",fontsize=16,color="green",shape="box"];2792[label="xwv720",fontsize=16,color="green",shape="box"];2793[label="xwv730",fontsize=16,color="green",shape="box"];2794[label="xwv720",fontsize=16,color="green",shape="box"];2795[label="xwv730",fontsize=16,color="green",shape="box"];2796[label="xwv720",fontsize=16,color="green",shape="box"];2797[label="xwv730",fontsize=16,color="green",shape="box"];2798[label="xwv720",fontsize=16,color="green",shape="box"];2799[label="xwv730",fontsize=16,color="green",shape="box"];2800[label="xwv720",fontsize=16,color="green",shape="box"];2801[label="xwv730",fontsize=16,color="green",shape="box"];2802[label="xwv720",fontsize=16,color="green",shape="box"];2803[label="xwv730",fontsize=16,color="green",shape="box"];2804[label="xwv720",fontsize=16,color="green",shape="box"];2805[label="xwv730",fontsize=16,color="green",shape="box"];2806[label="xwv720",fontsize=16,color="green",shape="box"];2807[label="xwv730",fontsize=16,color="green",shape="box"];2808[label="xwv720",fontsize=16,color="green",shape="box"];2809[label="xwv730",fontsize=16,color="green",shape="box"];2810[label="xwv720",fontsize=16,color="green",shape="box"];2811[label="xwv730",fontsize=16,color="green",shape="box"];2812[label="xwv720",fontsize=16,color="green",shape="box"];2813[label="xwv730",fontsize=16,color="green",shape="box"];2814[label="xwv720",fontsize=16,color="green",shape="box"];2815[label="xwv730",fontsize=16,color="green",shape="box"];2816[label="xwv720",fontsize=16,color="green",shape="box"];2817[label="xwv730",fontsize=16,color="green",shape="box"];2818[label="xwv720",fontsize=16,color="green",shape="box"];2819[label="xwv730",fontsize=16,color="green",shape="box"];2820[label="xwv720",fontsize=16,color="green",shape="box"];2821[label="xwv730",fontsize=16,color="green",shape="box"];2822[label="xwv720",fontsize=16,color="green",shape="box"];2823[label="xwv730",fontsize=16,color="green",shape="box"];2824[label="xwv720",fontsize=16,color="green",shape="box"];2825[label="xwv730",fontsize=16,color="green",shape="box"];2826[label="xwv720",fontsize=16,color="green",shape="box"];2827[label="xwv730",fontsize=16,color="green",shape="box"];2828[label="xwv720",fontsize=16,color="green",shape="box"];2829[label="xwv730",fontsize=16,color="green",shape="box"];2830[label="xwv720",fontsize=16,color="green",shape="box"];2831[label="xwv730",fontsize=16,color="green",shape="box"];2832[label="xwv720",fontsize=16,color="green",shape="box"];2833[label="xwv730",fontsize=16,color="green",shape="box"];2834[label="xwv720",fontsize=16,color="green",shape="box"];2835[label="xwv730",fontsize=16,color="green",shape="box"];2836[label="xwv720",fontsize=16,color="green",shape="box"];2837[label="xwv730",fontsize=16,color="green",shape="box"];2838[label="GT",fontsize=16,color="green",shape="box"];2839[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.glueBal2Vv2 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="black",shape="box"];2839 -> 2959[label="",style="solid", color="black", weight=3]; 37.19/18.89 2840[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.glueBal2Vv2 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="black",shape="box"];2840 -> 2960[label="",style="solid", color="black", weight=3]; 37.19/18.89 2841[label="FiniteMap.deleteMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 FiniteMap.EmptyFM)",fontsize=16,color="black",shape="box"];2841 -> 2961[label="",style="solid", color="black", weight=3]; 37.19/18.89 2842[label="FiniteMap.deleteMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 (FiniteMap.Branch xwv5140 xwv5141 xwv5142 xwv5143 xwv5144))",fontsize=16,color="black",shape="box"];2842 -> 2962[label="",style="solid", color="black", weight=3]; 37.19/18.89 3386[label="xwv520",fontsize=16,color="green",shape="box"];3387[label="xwv520",fontsize=16,color="green",shape="box"];3388[label="xwv523",fontsize=16,color="green",shape="box"];3389[label="xwv514",fontsize=16,color="green",shape="box"];3390[label="xwv510",fontsize=16,color="green",shape="box"];3391[label="xwv524",fontsize=16,color="green",shape="box"];3392[label="xwv524",fontsize=16,color="green",shape="box"];3393[label="xwv522",fontsize=16,color="green",shape="box"];3394[label="xwv512",fontsize=16,color="green",shape="box"];3395[label="xwv511",fontsize=16,color="green",shape="box"];3396[label="xwv521",fontsize=16,color="green",shape="box"];3397[label="xwv513",fontsize=16,color="green",shape="box"];3398[label="xwv521",fontsize=16,color="green",shape="box"];3399[label="xwv523",fontsize=16,color="green",shape="box"];3400[label="xwv522",fontsize=16,color="green",shape="box"];3385[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv248 xwv249 xwv250 xwv251 xwv252) (FiniteMap.Branch xwv253 xwv254 xwv255 xwv256 xwv257) (FiniteMap.findMin (FiniteMap.Branch xwv258 xwv259 xwv260 xwv261 xwv262))",fontsize=16,color="burlywood",shape="triangle"];4681[label="xwv261/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3385 -> 4681[label="",style="solid", color="burlywood", weight=9]; 37.19/18.89 4681 -> 3476[label="",style="solid", color="burlywood", weight=3]; 37.19/18.89 4682[label="xwv261/FiniteMap.Branch xwv2610 xwv2611 xwv2612 xwv2613 xwv2614",fontsize=10,color="white",style="solid",shape="box"];3385 -> 4682[label="",style="solid", color="burlywood", weight=9]; 37.19/18.89 4682 -> 3477[label="",style="solid", color="burlywood", weight=3]; 37.19/18.89 3480[label="xwv520",fontsize=16,color="green",shape="box"];3481[label="xwv511",fontsize=16,color="green",shape="box"];3482[label="xwv514",fontsize=16,color="green",shape="box"];3483[label="xwv520",fontsize=16,color="green",shape="box"];3484[label="xwv512",fontsize=16,color="green",shape="box"];3485[label="xwv521",fontsize=16,color="green",shape="box"];3486[label="xwv523",fontsize=16,color="green",shape="box"];3487[label="xwv522",fontsize=16,color="green",shape="box"];3488[label="xwv523",fontsize=16,color="green",shape="box"];3489[label="xwv524",fontsize=16,color="green",shape="box"];3490[label="xwv524",fontsize=16,color="green",shape="box"];3491[label="xwv522",fontsize=16,color="green",shape="box"];3492[label="xwv510",fontsize=16,color="green",shape="box"];3493[label="xwv513",fontsize=16,color="green",shape="box"];3494[label="xwv521",fontsize=16,color="green",shape="box"];3479[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv264 xwv265 xwv266 xwv267 xwv268) (FiniteMap.Branch xwv269 xwv270 xwv271 xwv272 xwv273) (FiniteMap.findMin (FiniteMap.Branch xwv274 xwv275 xwv276 xwv277 xwv278))",fontsize=16,color="burlywood",shape="triangle"];4683[label="xwv277/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3479 -> 4683[label="",style="solid", color="burlywood", weight=9]; 37.19/18.89 4683 -> 3570[label="",style="solid", color="burlywood", weight=3]; 37.19/18.89 4684[label="xwv277/FiniteMap.Branch xwv2770 xwv2771 xwv2772 xwv2773 xwv2774",fontsize=10,color="white",style="solid",shape="box"];3479 -> 4684[label="",style="solid", color="burlywood", weight=9]; 37.19/18.89 4684 -> 3571[label="",style="solid", color="burlywood", weight=3]; 37.19/18.89 2847[label="xwv521",fontsize=16,color="green",shape="box"];2848[label="xwv520",fontsize=16,color="green",shape="box"];2849 -> 2459[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2849[label="FiniteMap.deleteMin (FiniteMap.Branch xwv5230 xwv5231 xwv5232 xwv5233 xwv5234)",fontsize=16,color="magenta"];2849 -> 2967[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2849 -> 2968[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2849 -> 2969[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2849 -> 2970[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2849 -> 2971[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2850[label="xwv524",fontsize=16,color="green",shape="box"];2851 -> 485[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2851[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv163",fontsize=16,color="magenta"];2851 -> 2972[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2851 -> 2973[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2852 -> 1133[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2852[label="FiniteMap.sizeFM xwv164",fontsize=16,color="magenta"];2852 -> 2974[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2853[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 False",fontsize=16,color="black",shape="box"];2853 -> 2975[label="",style="solid", color="black", weight=3]; 37.19/18.89 2854[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 True",fontsize=16,color="black",shape="box"];2854 -> 2976[label="",style="solid", color="black", weight=3]; 37.19/18.89 2855[label="FiniteMap.mkBalBranch6Double_L xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="burlywood",shape="box"];4685[label="xwv353/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2855 -> 4685[label="",style="solid", color="burlywood", weight=9]; 37.19/18.89 4685 -> 2977[label="",style="solid", color="burlywood", weight=3]; 37.19/18.89 4686[label="xwv353/FiniteMap.Branch xwv3530 xwv3531 xwv3532 xwv3533 xwv3534",fontsize=10,color="white",style="solid",shape="box"];2855 -> 4686[label="",style="solid", color="burlywood", weight=9]; 37.19/18.89 4686 -> 2978[label="",style="solid", color="burlywood", weight=3]; 37.19/18.89 2856 -> 634[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2856[label="FiniteMap.mkBranchResult xwv350 xwv351 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv13 xwv14 xwv16 xwv353) xwv354",fontsize=16,color="magenta"];2856 -> 2979[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2856 -> 2980[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2856 -> 2981[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2856 -> 2982[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2857[label="True",fontsize=16,color="green",shape="box"];2858[label="False",fontsize=16,color="green",shape="box"];2859[label="xwv730",fontsize=16,color="green",shape="box"];2860[label="xwv720",fontsize=16,color="green",shape="box"];2861[label="xwv730",fontsize=16,color="green",shape="box"];2862[label="xwv720",fontsize=16,color="green",shape="box"];2863[label="xwv730",fontsize=16,color="green",shape="box"];2864[label="xwv720",fontsize=16,color="green",shape="box"];2865[label="xwv730",fontsize=16,color="green",shape="box"];2866[label="xwv720",fontsize=16,color="green",shape="box"];2867[label="xwv730",fontsize=16,color="green",shape="box"];2868[label="xwv720",fontsize=16,color="green",shape="box"];2869[label="xwv730",fontsize=16,color="green",shape="box"];2870[label="xwv720",fontsize=16,color="green",shape="box"];2871[label="xwv730",fontsize=16,color="green",shape="box"];2872[label="xwv720",fontsize=16,color="green",shape="box"];2873[label="xwv730",fontsize=16,color="green",shape="box"];2874[label="xwv720",fontsize=16,color="green",shape="box"];2875[label="xwv730",fontsize=16,color="green",shape="box"];2876[label="xwv720",fontsize=16,color="green",shape="box"];2877[label="xwv730",fontsize=16,color="green",shape="box"];2878[label="xwv720",fontsize=16,color="green",shape="box"];2879[label="xwv730",fontsize=16,color="green",shape="box"];2880[label="xwv720",fontsize=16,color="green",shape="box"];2881[label="xwv730",fontsize=16,color="green",shape="box"];2882[label="xwv720",fontsize=16,color="green",shape="box"];2883[label="xwv730",fontsize=16,color="green",shape="box"];2884[label="xwv720",fontsize=16,color="green",shape="box"];2885[label="xwv730",fontsize=16,color="green",shape="box"];2886[label="xwv720",fontsize=16,color="green",shape="box"];2887 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2887[label="xwv720 == xwv730",fontsize=16,color="magenta"];2887 -> 2983[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2887 -> 2984[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2888 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2888[label="xwv720 == xwv730",fontsize=16,color="magenta"];2888 -> 2985[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2888 -> 2986[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2889 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2889[label="xwv720 == xwv730",fontsize=16,color="magenta"];2889 -> 2987[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2889 -> 2988[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2890 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2890[label="xwv720 == xwv730",fontsize=16,color="magenta"];2890 -> 2989[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2890 -> 2990[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2891 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2891[label="xwv720 == xwv730",fontsize=16,color="magenta"];2891 -> 2991[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2891 -> 2992[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2892 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2892[label="xwv720 == xwv730",fontsize=16,color="magenta"];2892 -> 2993[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2892 -> 2994[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2893 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2893[label="xwv720 == xwv730",fontsize=16,color="magenta"];2893 -> 2995[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2893 -> 2996[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2894 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2894[label="xwv720 == xwv730",fontsize=16,color="magenta"];2894 -> 2997[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2894 -> 2998[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2895 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2895[label="xwv720 == xwv730",fontsize=16,color="magenta"];2895 -> 2999[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2895 -> 3000[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2896 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2896[label="xwv720 == xwv730",fontsize=16,color="magenta"];2896 -> 3001[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2896 -> 3002[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2897 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2897[label="xwv720 == xwv730",fontsize=16,color="magenta"];2897 -> 3003[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2897 -> 3004[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2898 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2898[label="xwv720 == xwv730",fontsize=16,color="magenta"];2898 -> 3005[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2898 -> 3006[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2899 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2899[label="xwv720 == xwv730",fontsize=16,color="magenta"];2899 -> 3007[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2899 -> 3008[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2900 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2900[label="xwv720 == xwv730",fontsize=16,color="magenta"];2900 -> 3009[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2900 -> 3010[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2901 -> 1920[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2901[label="xwv721 <= xwv731",fontsize=16,color="magenta"];2901 -> 3011[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2901 -> 3012[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2902 -> 1921[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2902[label="xwv721 <= xwv731",fontsize=16,color="magenta"];2902 -> 3013[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2902 -> 3014[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2903 -> 1922[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2903[label="xwv721 <= xwv731",fontsize=16,color="magenta"];2903 -> 3015[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2903 -> 3016[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2904 -> 1923[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2904[label="xwv721 <= xwv731",fontsize=16,color="magenta"];2904 -> 3017[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2904 -> 3018[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2905 -> 1924[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2905[label="xwv721 <= xwv731",fontsize=16,color="magenta"];2905 -> 3019[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2905 -> 3020[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2906 -> 1925[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2906[label="xwv721 <= xwv731",fontsize=16,color="magenta"];2906 -> 3021[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2906 -> 3022[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2907 -> 1926[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2907[label="xwv721 <= xwv731",fontsize=16,color="magenta"];2907 -> 3023[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2907 -> 3024[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2908 -> 1927[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2908[label="xwv721 <= xwv731",fontsize=16,color="magenta"];2908 -> 3025[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2908 -> 3026[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2909 -> 1928[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2909[label="xwv721 <= xwv731",fontsize=16,color="magenta"];2909 -> 3027[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2909 -> 3028[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2910 -> 1929[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2910[label="xwv721 <= xwv731",fontsize=16,color="magenta"];2910 -> 3029[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2910 -> 3030[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2911 -> 1930[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2911[label="xwv721 <= xwv731",fontsize=16,color="magenta"];2911 -> 3031[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2911 -> 3032[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2912 -> 1931[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2912[label="xwv721 <= xwv731",fontsize=16,color="magenta"];2912 -> 3033[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2912 -> 3034[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2913 -> 1932[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2913[label="xwv721 <= xwv731",fontsize=16,color="magenta"];2913 -> 3035[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2913 -> 3036[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2914 -> 1933[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2914[label="xwv721 <= xwv731",fontsize=16,color="magenta"];2914 -> 3037[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2914 -> 3038[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2915[label="xwv730",fontsize=16,color="green",shape="box"];2916[label="xwv720",fontsize=16,color="green",shape="box"];2917[label="xwv730",fontsize=16,color="green",shape="box"];2918[label="xwv720",fontsize=16,color="green",shape="box"];2919[label="xwv730",fontsize=16,color="green",shape="box"];2920[label="xwv720",fontsize=16,color="green",shape="box"];2921[label="xwv730",fontsize=16,color="green",shape="box"];2922[label="xwv720",fontsize=16,color="green",shape="box"];2923[label="xwv730",fontsize=16,color="green",shape="box"];2924[label="xwv720",fontsize=16,color="green",shape="box"];2925[label="xwv730",fontsize=16,color="green",shape="box"];2926[label="xwv720",fontsize=16,color="green",shape="box"];2927[label="xwv730",fontsize=16,color="green",shape="box"];2928[label="xwv720",fontsize=16,color="green",shape="box"];2929[label="xwv730",fontsize=16,color="green",shape="box"];2930[label="xwv720",fontsize=16,color="green",shape="box"];2931[label="xwv730",fontsize=16,color="green",shape="box"];2932[label="xwv720",fontsize=16,color="green",shape="box"];2933[label="xwv730",fontsize=16,color="green",shape="box"];2934[label="xwv720",fontsize=16,color="green",shape="box"];2935[label="xwv730",fontsize=16,color="green",shape="box"];2936[label="xwv720",fontsize=16,color="green",shape="box"];2937[label="xwv730",fontsize=16,color="green",shape="box"];2938[label="xwv720",fontsize=16,color="green",shape="box"];2939[label="xwv730",fontsize=16,color="green",shape="box"];2940[label="xwv720",fontsize=16,color="green",shape="box"];2941[label="xwv730",fontsize=16,color="green",shape="box"];2942[label="xwv720",fontsize=16,color="green",shape="box"];2943 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2943[label="xwv720 == xwv730",fontsize=16,color="magenta"];2943 -> 3039[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2943 -> 3040[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2944 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2944[label="xwv720 == xwv730",fontsize=16,color="magenta"];2944 -> 3041[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2944 -> 3042[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2945 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2945[label="xwv720 == xwv730",fontsize=16,color="magenta"];2945 -> 3043[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2945 -> 3044[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2946 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2946[label="xwv720 == xwv730",fontsize=16,color="magenta"];2946 -> 3045[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2946 -> 3046[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2947 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2947[label="xwv720 == xwv730",fontsize=16,color="magenta"];2947 -> 3047[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2947 -> 3048[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2948 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2948[label="xwv720 == xwv730",fontsize=16,color="magenta"];2948 -> 3049[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2948 -> 3050[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2949 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2949[label="xwv720 == xwv730",fontsize=16,color="magenta"];2949 -> 3051[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2949 -> 3052[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2950 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2950[label="xwv720 == xwv730",fontsize=16,color="magenta"];2950 -> 3053[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2950 -> 3054[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2951 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2951[label="xwv720 == xwv730",fontsize=16,color="magenta"];2951 -> 3055[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2951 -> 3056[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2952 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2952[label="xwv720 == xwv730",fontsize=16,color="magenta"];2952 -> 3057[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2952 -> 3058[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2953 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2953[label="xwv720 == xwv730",fontsize=16,color="magenta"];2953 -> 3059[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2953 -> 3060[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2954 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2954[label="xwv720 == xwv730",fontsize=16,color="magenta"];2954 -> 3061[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2954 -> 3062[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2955 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2955[label="xwv720 == xwv730",fontsize=16,color="magenta"];2955 -> 3063[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2955 -> 3064[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2956 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2956[label="xwv720 == xwv730",fontsize=16,color="magenta"];2956 -> 3065[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2956 -> 3066[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2957[label="xwv721 < xwv731",fontsize=16,color="blue",shape="box"];4687[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4687[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4687 -> 3067[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4688[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4688[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4688 -> 3068[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4689[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4689[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4689 -> 3069[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4690[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4690[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4690 -> 3070[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4691[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4691[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4691 -> 3071[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4692[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4692[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4692 -> 3072[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4693[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4693[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4693 -> 3073[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4694[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4694[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4694 -> 3074[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4695[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4695[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4695 -> 3075[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4696[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4696[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4696 -> 3076[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4697[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4697[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4697 -> 3077[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4698[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4698[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4698 -> 3078[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4699[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4699[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4699 -> 3079[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4700[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4700[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4700 -> 3080[label="",style="solid", color="blue", weight=3]; 37.19/18.89 2958 -> 1201[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2958[label="xwv721 == xwv731 && xwv722 <= xwv732",fontsize=16,color="magenta"];2958 -> 3081[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2958 -> 3082[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2959 -> 3587[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2959[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.findMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="magenta"];2959 -> 3588[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2959 -> 3589[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2959 -> 3590[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2959 -> 3591[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2959 -> 3592[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2959 -> 3593[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2959 -> 3594[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2959 -> 3595[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2959 -> 3596[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2959 -> 3597[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2959 -> 3598[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2959 -> 3599[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2959 -> 3600[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2959 -> 3601[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2959 -> 3602[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2960 -> 3687[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2960[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.findMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="magenta"];2960 -> 3688[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2960 -> 3689[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2960 -> 3690[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2960 -> 3691[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2960 -> 3692[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2960 -> 3693[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2960 -> 3694[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2960 -> 3695[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2960 -> 3696[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2960 -> 3697[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2960 -> 3698[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2960 -> 3699[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2960 -> 3700[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2960 -> 3701[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2960 -> 3702[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2961[label="xwv513",fontsize=16,color="green",shape="box"];2962 -> 82[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2962[label="FiniteMap.mkBalBranch xwv510 xwv511 xwv513 (FiniteMap.deleteMax (FiniteMap.Branch xwv5140 xwv5141 xwv5142 xwv5143 xwv5144))",fontsize=16,color="magenta"];2962 -> 3087[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2962 -> 3088[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2962 -> 3089[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2962 -> 3090[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3476[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv248 xwv249 xwv250 xwv251 xwv252) (FiniteMap.Branch xwv253 xwv254 xwv255 xwv256 xwv257) (FiniteMap.findMin (FiniteMap.Branch xwv258 xwv259 xwv260 FiniteMap.EmptyFM xwv262))",fontsize=16,color="black",shape="box"];3476 -> 3572[label="",style="solid", color="black", weight=3]; 37.19/18.89 3477[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv248 xwv249 xwv250 xwv251 xwv252) (FiniteMap.Branch xwv253 xwv254 xwv255 xwv256 xwv257) (FiniteMap.findMin (FiniteMap.Branch xwv258 xwv259 xwv260 (FiniteMap.Branch xwv2610 xwv2611 xwv2612 xwv2613 xwv2614) xwv262))",fontsize=16,color="black",shape="box"];3477 -> 3573[label="",style="solid", color="black", weight=3]; 37.19/18.89 3570[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv264 xwv265 xwv266 xwv267 xwv268) (FiniteMap.Branch xwv269 xwv270 xwv271 xwv272 xwv273) (FiniteMap.findMin (FiniteMap.Branch xwv274 xwv275 xwv276 FiniteMap.EmptyFM xwv278))",fontsize=16,color="black",shape="box"];3570 -> 3578[label="",style="solid", color="black", weight=3]; 37.19/18.89 3571[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv264 xwv265 xwv266 xwv267 xwv268) (FiniteMap.Branch xwv269 xwv270 xwv271 xwv272 xwv273) (FiniteMap.findMin (FiniteMap.Branch xwv274 xwv275 xwv276 (FiniteMap.Branch xwv2770 xwv2771 xwv2772 xwv2773 xwv2774) xwv278))",fontsize=16,color="black",shape="box"];3571 -> 3579[label="",style="solid", color="black", weight=3]; 37.19/18.89 2967[label="xwv5233",fontsize=16,color="green",shape="box"];2968[label="xwv5232",fontsize=16,color="green",shape="box"];2969[label="xwv5231",fontsize=16,color="green",shape="box"];2970[label="xwv5234",fontsize=16,color="green",shape="box"];2971[label="xwv5230",fontsize=16,color="green",shape="box"];2972 -> 1133[label="",style="dashed", color="red", weight=0]; 37.19/18.89 2972[label="FiniteMap.sizeFM xwv163",fontsize=16,color="magenta"];2972 -> 3097[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 2973[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2974[label="xwv164",fontsize=16,color="green",shape="box"];2975[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 otherwise",fontsize=16,color="black",shape="box"];2975 -> 3098[label="",style="solid", color="black", weight=3]; 37.19/18.89 2976[label="FiniteMap.mkBalBranch6Single_R (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35",fontsize=16,color="black",shape="box"];2976 -> 3099[label="",style="solid", color="black", weight=3]; 37.19/18.89 2977[label="FiniteMap.mkBalBranch6Double_L xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 FiniteMap.EmptyFM xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 FiniteMap.EmptyFM xwv354)",fontsize=16,color="black",shape="box"];2977 -> 3100[label="",style="solid", color="black", weight=3]; 37.19/18.89 2978[label="FiniteMap.mkBalBranch6Double_L xwv16 xwv13 xwv14 (FiniteMap.Branch xwv350 xwv351 xwv352 (FiniteMap.Branch xwv3530 xwv3531 xwv3532 xwv3533 xwv3534) xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 (FiniteMap.Branch xwv3530 xwv3531 xwv3532 xwv3533 xwv3534) xwv354)",fontsize=16,color="black",shape="box"];2978 -> 3101[label="",style="solid", color="black", weight=3]; 37.19/18.89 2979[label="xwv351",fontsize=16,color="green",shape="box"];2980[label="xwv350",fontsize=16,color="green",shape="box"];2981[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv13 xwv14 xwv16 xwv353",fontsize=16,color="black",shape="box"];2981 -> 3102[label="",style="solid", color="black", weight=3]; 37.19/18.89 2982[label="xwv354",fontsize=16,color="green",shape="box"];2983[label="xwv720",fontsize=16,color="green",shape="box"];2984[label="xwv730",fontsize=16,color="green",shape="box"];2985[label="xwv720",fontsize=16,color="green",shape="box"];2986[label="xwv730",fontsize=16,color="green",shape="box"];2987[label="xwv720",fontsize=16,color="green",shape="box"];2988[label="xwv730",fontsize=16,color="green",shape="box"];2989[label="xwv720",fontsize=16,color="green",shape="box"];2990[label="xwv730",fontsize=16,color="green",shape="box"];2991[label="xwv720",fontsize=16,color="green",shape="box"];2992[label="xwv730",fontsize=16,color="green",shape="box"];2993[label="xwv720",fontsize=16,color="green",shape="box"];2994[label="xwv730",fontsize=16,color="green",shape="box"];2995[label="xwv720",fontsize=16,color="green",shape="box"];2996[label="xwv730",fontsize=16,color="green",shape="box"];2997[label="xwv720",fontsize=16,color="green",shape="box"];2998[label="xwv730",fontsize=16,color="green",shape="box"];2999[label="xwv720",fontsize=16,color="green",shape="box"];3000[label="xwv730",fontsize=16,color="green",shape="box"];3001[label="xwv720",fontsize=16,color="green",shape="box"];3002[label="xwv730",fontsize=16,color="green",shape="box"];3003[label="xwv720",fontsize=16,color="green",shape="box"];3004[label="xwv730",fontsize=16,color="green",shape="box"];3005[label="xwv720",fontsize=16,color="green",shape="box"];3006[label="xwv730",fontsize=16,color="green",shape="box"];3007[label="xwv720",fontsize=16,color="green",shape="box"];3008[label="xwv730",fontsize=16,color="green",shape="box"];3009[label="xwv720",fontsize=16,color="green",shape="box"];3010[label="xwv730",fontsize=16,color="green",shape="box"];3011[label="xwv721",fontsize=16,color="green",shape="box"];3012[label="xwv731",fontsize=16,color="green",shape="box"];3013[label="xwv721",fontsize=16,color="green",shape="box"];3014[label="xwv731",fontsize=16,color="green",shape="box"];3015[label="xwv721",fontsize=16,color="green",shape="box"];3016[label="xwv731",fontsize=16,color="green",shape="box"];3017[label="xwv721",fontsize=16,color="green",shape="box"];3018[label="xwv731",fontsize=16,color="green",shape="box"];3019[label="xwv721",fontsize=16,color="green",shape="box"];3020[label="xwv731",fontsize=16,color="green",shape="box"];3021[label="xwv721",fontsize=16,color="green",shape="box"];3022[label="xwv731",fontsize=16,color="green",shape="box"];3023[label="xwv721",fontsize=16,color="green",shape="box"];3024[label="xwv731",fontsize=16,color="green",shape="box"];3025[label="xwv721",fontsize=16,color="green",shape="box"];3026[label="xwv731",fontsize=16,color="green",shape="box"];3027[label="xwv721",fontsize=16,color="green",shape="box"];3028[label="xwv731",fontsize=16,color="green",shape="box"];3029[label="xwv721",fontsize=16,color="green",shape="box"];3030[label="xwv731",fontsize=16,color="green",shape="box"];3031[label="xwv721",fontsize=16,color="green",shape="box"];3032[label="xwv731",fontsize=16,color="green",shape="box"];3033[label="xwv721",fontsize=16,color="green",shape="box"];3034[label="xwv731",fontsize=16,color="green",shape="box"];3035[label="xwv721",fontsize=16,color="green",shape="box"];3036[label="xwv731",fontsize=16,color="green",shape="box"];3037[label="xwv721",fontsize=16,color="green",shape="box"];3038[label="xwv731",fontsize=16,color="green",shape="box"];3039[label="xwv720",fontsize=16,color="green",shape="box"];3040[label="xwv730",fontsize=16,color="green",shape="box"];3041[label="xwv720",fontsize=16,color="green",shape="box"];3042[label="xwv730",fontsize=16,color="green",shape="box"];3043[label="xwv720",fontsize=16,color="green",shape="box"];3044[label="xwv730",fontsize=16,color="green",shape="box"];3045[label="xwv720",fontsize=16,color="green",shape="box"];3046[label="xwv730",fontsize=16,color="green",shape="box"];3047[label="xwv720",fontsize=16,color="green",shape="box"];3048[label="xwv730",fontsize=16,color="green",shape="box"];3049[label="xwv720",fontsize=16,color="green",shape="box"];3050[label="xwv730",fontsize=16,color="green",shape="box"];3051[label="xwv720",fontsize=16,color="green",shape="box"];3052[label="xwv730",fontsize=16,color="green",shape="box"];3053[label="xwv720",fontsize=16,color="green",shape="box"];3054[label="xwv730",fontsize=16,color="green",shape="box"];3055[label="xwv720",fontsize=16,color="green",shape="box"];3056[label="xwv730",fontsize=16,color="green",shape="box"];3057[label="xwv720",fontsize=16,color="green",shape="box"];3058[label="xwv730",fontsize=16,color="green",shape="box"];3059[label="xwv720",fontsize=16,color="green",shape="box"];3060[label="xwv730",fontsize=16,color="green",shape="box"];3061[label="xwv720",fontsize=16,color="green",shape="box"];3062[label="xwv730",fontsize=16,color="green",shape="box"];3063[label="xwv720",fontsize=16,color="green",shape="box"];3064[label="xwv730",fontsize=16,color="green",shape="box"];3065[label="xwv720",fontsize=16,color="green",shape="box"];3066[label="xwv730",fontsize=16,color="green",shape="box"];3067 -> 102[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3067[label="xwv721 < xwv731",fontsize=16,color="magenta"];3067 -> 3103[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3067 -> 3104[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3068 -> 103[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3068[label="xwv721 < xwv731",fontsize=16,color="magenta"];3068 -> 3105[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3068 -> 3106[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3069 -> 104[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3069[label="xwv721 < xwv731",fontsize=16,color="magenta"];3069 -> 3107[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3069 -> 3108[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3070 -> 105[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3070[label="xwv721 < xwv731",fontsize=16,color="magenta"];3070 -> 3109[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3070 -> 3110[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3071 -> 106[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3071[label="xwv721 < xwv731",fontsize=16,color="magenta"];3071 -> 3111[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3071 -> 3112[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3072 -> 107[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3072[label="xwv721 < xwv731",fontsize=16,color="magenta"];3072 -> 3113[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3072 -> 3114[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3073 -> 108[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3073[label="xwv721 < xwv731",fontsize=16,color="magenta"];3073 -> 3115[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3073 -> 3116[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3074 -> 109[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3074[label="xwv721 < xwv731",fontsize=16,color="magenta"];3074 -> 3117[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3074 -> 3118[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3075 -> 110[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3075[label="xwv721 < xwv731",fontsize=16,color="magenta"];3075 -> 3119[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3075 -> 3120[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3076 -> 111[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3076[label="xwv721 < xwv731",fontsize=16,color="magenta"];3076 -> 3121[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3076 -> 3122[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3077 -> 112[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3077[label="xwv721 < xwv731",fontsize=16,color="magenta"];3077 -> 3123[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3077 -> 3124[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3078 -> 113[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3078[label="xwv721 < xwv731",fontsize=16,color="magenta"];3078 -> 3125[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3078 -> 3126[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3079 -> 114[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3079[label="xwv721 < xwv731",fontsize=16,color="magenta"];3079 -> 3127[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3079 -> 3128[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3080 -> 115[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3080[label="xwv721 < xwv731",fontsize=16,color="magenta"];3080 -> 3129[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3080 -> 3130[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3081[label="xwv721 == xwv731",fontsize=16,color="blue",shape="box"];4701[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4701[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4701 -> 3131[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4702[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4702[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4702 -> 3132[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4703[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4703[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4703 -> 3133[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4704[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4704[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4704 -> 3134[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4705[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4705[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4705 -> 3135[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4706[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4706[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4706 -> 3136[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4707[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4707[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4707 -> 3137[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4708[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4708[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4708 -> 3138[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4709[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4709[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4709 -> 3139[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4710[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4710[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4710 -> 3140[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4711[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4711[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4711 -> 3141[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4712[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4712[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4712 -> 3142[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4713[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4713[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4713 -> 3143[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4714[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4714[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4714 -> 3144[label="",style="solid", color="blue", weight=3]; 37.19/18.89 3082[label="xwv722 <= xwv732",fontsize=16,color="blue",shape="box"];4715[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4715[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4715 -> 3145[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4716[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4716[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4716 -> 3146[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4717[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4717[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4717 -> 3147[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4718[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4718[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4718 -> 3148[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4719[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4719[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4719 -> 3149[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4720[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4720[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4720 -> 3150[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4721[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4721[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4721 -> 3151[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4722[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4722[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4722 -> 3152[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4723[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4723[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4723 -> 3153[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4724[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4724[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4724 -> 3154[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4725[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4725[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4725 -> 3155[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4726[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4726[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4726 -> 3156[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4727[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4727[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4727 -> 3157[label="",style="solid", color="blue", weight=3]; 37.19/18.89 4728[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4728[label="",style="solid", color="blue", weight=9]; 37.19/18.89 4728 -> 3158[label="",style="solid", color="blue", weight=3]; 37.19/18.89 3588[label="xwv521",fontsize=16,color="green",shape="box"];3589[label="xwv513",fontsize=16,color="green",shape="box"];3590[label="xwv514",fontsize=16,color="green",shape="box"];3591[label="xwv514",fontsize=16,color="green",shape="box"];3592[label="xwv512",fontsize=16,color="green",shape="box"];3593[label="xwv523",fontsize=16,color="green",shape="box"];3594[label="xwv524",fontsize=16,color="green",shape="box"];3595[label="xwv513",fontsize=16,color="green",shape="box"];3596[label="xwv511",fontsize=16,color="green",shape="box"];3597[label="xwv512",fontsize=16,color="green",shape="box"];3598[label="xwv510",fontsize=16,color="green",shape="box"];3599[label="xwv522",fontsize=16,color="green",shape="box"];3600[label="xwv510",fontsize=16,color="green",shape="box"];3601[label="xwv520",fontsize=16,color="green",shape="box"];3602[label="xwv511",fontsize=16,color="green",shape="box"];3587[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.Branch xwv285 xwv286 xwv287 xwv288 xwv289) (FiniteMap.findMax (FiniteMap.Branch xwv290 xwv291 xwv292 xwv293 xwv294))",fontsize=16,color="burlywood",shape="triangle"];4729[label="xwv294/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3587 -> 4729[label="",style="solid", color="burlywood", weight=9]; 37.19/18.89 4729 -> 3678[label="",style="solid", color="burlywood", weight=3]; 37.19/18.89 4730[label="xwv294/FiniteMap.Branch xwv2940 xwv2941 xwv2942 xwv2943 xwv2944",fontsize=10,color="white",style="solid",shape="box"];3587 -> 4730[label="",style="solid", color="burlywood", weight=9]; 37.19/18.89 4730 -> 3679[label="",style="solid", color="burlywood", weight=3]; 37.19/18.89 3688[label="xwv510",fontsize=16,color="green",shape="box"];3689[label="xwv511",fontsize=16,color="green",shape="box"];3690[label="xwv520",fontsize=16,color="green",shape="box"];3691[label="xwv514",fontsize=16,color="green",shape="box"];3692[label="xwv523",fontsize=16,color="green",shape="box"];3693[label="xwv512",fontsize=16,color="green",shape="box"];3694[label="xwv514",fontsize=16,color="green",shape="box"];3695[label="xwv521",fontsize=16,color="green",shape="box"];3696[label="xwv513",fontsize=16,color="green",shape="box"];3697[label="xwv513",fontsize=16,color="green",shape="box"];3698[label="xwv512",fontsize=16,color="green",shape="box"];3699[label="xwv511",fontsize=16,color="green",shape="box"];3700[label="xwv524",fontsize=16,color="green",shape="box"];3701[label="xwv510",fontsize=16,color="green",shape="box"];3702[label="xwv522",fontsize=16,color="green",shape="box"];3687[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.Branch xwv301 xwv302 xwv303 xwv304 xwv305) (FiniteMap.findMax (FiniteMap.Branch xwv306 xwv307 xwv308 xwv309 xwv310))",fontsize=16,color="burlywood",shape="triangle"];4731[label="xwv310/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3687 -> 4731[label="",style="solid", color="burlywood", weight=9]; 37.19/18.89 4731 -> 3778[label="",style="solid", color="burlywood", weight=3]; 37.19/18.89 4732[label="xwv310/FiniteMap.Branch xwv3100 xwv3101 xwv3102 xwv3103 xwv3104",fontsize=10,color="white",style="solid",shape="box"];3687 -> 4732[label="",style="solid", color="burlywood", weight=9]; 37.19/18.89 4732 -> 3779[label="",style="solid", color="burlywood", weight=3]; 37.19/18.89 3087[label="xwv511",fontsize=16,color="green",shape="box"];3088[label="xwv510",fontsize=16,color="green",shape="box"];3089[label="xwv513",fontsize=16,color="green",shape="box"];3090 -> 2703[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3090[label="FiniteMap.deleteMax (FiniteMap.Branch xwv5140 xwv5141 xwv5142 xwv5143 xwv5144)",fontsize=16,color="magenta"];3090 -> 3163[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3090 -> 3164[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3090 -> 3165[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3090 -> 3166[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3090 -> 3167[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3572[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv248 xwv249 xwv250 xwv251 xwv252) (FiniteMap.Branch xwv253 xwv254 xwv255 xwv256 xwv257) (xwv258,xwv259)",fontsize=16,color="black",shape="box"];3572 -> 3580[label="",style="solid", color="black", weight=3]; 37.19/18.89 3573 -> 3385[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3573[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv248 xwv249 xwv250 xwv251 xwv252) (FiniteMap.Branch xwv253 xwv254 xwv255 xwv256 xwv257) (FiniteMap.findMin (FiniteMap.Branch xwv2610 xwv2611 xwv2612 xwv2613 xwv2614))",fontsize=16,color="magenta"];3573 -> 3581[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3573 -> 3582[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3573 -> 3583[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3573 -> 3584[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3573 -> 3585[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3578[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv264 xwv265 xwv266 xwv267 xwv268) (FiniteMap.Branch xwv269 xwv270 xwv271 xwv272 xwv273) (xwv274,xwv275)",fontsize=16,color="black",shape="box"];3578 -> 3680[label="",style="solid", color="black", weight=3]; 37.19/18.89 3579 -> 3479[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3579[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv264 xwv265 xwv266 xwv267 xwv268) (FiniteMap.Branch xwv269 xwv270 xwv271 xwv272 xwv273) (FiniteMap.findMin (FiniteMap.Branch xwv2770 xwv2771 xwv2772 xwv2773 xwv2774))",fontsize=16,color="magenta"];3579 -> 3681[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3579 -> 3682[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3579 -> 3683[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3579 -> 3684[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3579 -> 3685[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3097[label="xwv163",fontsize=16,color="green",shape="box"];3098[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 True",fontsize=16,color="black",shape="box"];3098 -> 3172[label="",style="solid", color="black", weight=3]; 37.19/18.89 3099 -> 3265[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3099[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xwv160 xwv161 xwv163 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xwv13 xwv14 xwv164 xwv35)",fontsize=16,color="magenta"];3099 -> 3266[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3099 -> 3267[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3099 -> 3268[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3099 -> 3269[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3099 -> 3270[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3099 -> 3271[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3099 -> 3272[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3099 -> 3273[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3099 -> 3274[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3100[label="error []",fontsize=16,color="red",shape="box"];3101 -> 3265[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3101[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xwv3530 xwv3531 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv13 xwv14 xwv16 xwv3533) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xwv350 xwv351 xwv3534 xwv354)",fontsize=16,color="magenta"];3101 -> 3275[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3101 -> 3276[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3101 -> 3277[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3101 -> 3278[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3101 -> 3279[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3101 -> 3280[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3101 -> 3281[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3101 -> 3282[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3101 -> 3283[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3102 -> 634[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3102[label="FiniteMap.mkBranchResult xwv13 xwv14 xwv16 xwv353",fontsize=16,color="magenta"];3102 -> 3194[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3103[label="xwv731",fontsize=16,color="green",shape="box"];3104[label="xwv721",fontsize=16,color="green",shape="box"];3105[label="xwv731",fontsize=16,color="green",shape="box"];3106[label="xwv721",fontsize=16,color="green",shape="box"];3107[label="xwv731",fontsize=16,color="green",shape="box"];3108[label="xwv721",fontsize=16,color="green",shape="box"];3109[label="xwv731",fontsize=16,color="green",shape="box"];3110[label="xwv721",fontsize=16,color="green",shape="box"];3111[label="xwv731",fontsize=16,color="green",shape="box"];3112[label="xwv721",fontsize=16,color="green",shape="box"];3113[label="xwv731",fontsize=16,color="green",shape="box"];3114[label="xwv721",fontsize=16,color="green",shape="box"];3115[label="xwv731",fontsize=16,color="green",shape="box"];3116[label="xwv721",fontsize=16,color="green",shape="box"];3117[label="xwv731",fontsize=16,color="green",shape="box"];3118[label="xwv721",fontsize=16,color="green",shape="box"];3119[label="xwv731",fontsize=16,color="green",shape="box"];3120[label="xwv721",fontsize=16,color="green",shape="box"];3121[label="xwv731",fontsize=16,color="green",shape="box"];3122[label="xwv721",fontsize=16,color="green",shape="box"];3123[label="xwv731",fontsize=16,color="green",shape="box"];3124[label="xwv721",fontsize=16,color="green",shape="box"];3125[label="xwv731",fontsize=16,color="green",shape="box"];3126[label="xwv721",fontsize=16,color="green",shape="box"];3127[label="xwv731",fontsize=16,color="green",shape="box"];3128[label="xwv721",fontsize=16,color="green",shape="box"];3129[label="xwv731",fontsize=16,color="green",shape="box"];3130[label="xwv721",fontsize=16,color="green",shape="box"];3131 -> 419[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3131[label="xwv721 == xwv731",fontsize=16,color="magenta"];3131 -> 3195[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3131 -> 3196[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3132 -> 421[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3132[label="xwv721 == xwv731",fontsize=16,color="magenta"];3132 -> 3197[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3132 -> 3198[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3133 -> 415[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3133[label="xwv721 == xwv731",fontsize=16,color="magenta"];3133 -> 3199[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3133 -> 3200[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3134 -> 422[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3134[label="xwv721 == xwv731",fontsize=16,color="magenta"];3134 -> 3201[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3134 -> 3202[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3135 -> 417[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3135[label="xwv721 == xwv731",fontsize=16,color="magenta"];3135 -> 3203[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3135 -> 3204[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3136 -> 418[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3136[label="xwv721 == xwv731",fontsize=16,color="magenta"];3136 -> 3205[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3136 -> 3206[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3137 -> 423[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3137[label="xwv721 == xwv731",fontsize=16,color="magenta"];3137 -> 3207[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3137 -> 3208[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3138 -> 425[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3138[label="xwv721 == xwv731",fontsize=16,color="magenta"];3138 -> 3209[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3138 -> 3210[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3139 -> 428[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3139[label="xwv721 == xwv731",fontsize=16,color="magenta"];3139 -> 3211[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3139 -> 3212[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3140 -> 416[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3140[label="xwv721 == xwv731",fontsize=16,color="magenta"];3140 -> 3213[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3140 -> 3214[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3141 -> 426[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3141[label="xwv721 == xwv731",fontsize=16,color="magenta"];3141 -> 3215[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3141 -> 3216[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3142 -> 420[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3142[label="xwv721 == xwv731",fontsize=16,color="magenta"];3142 -> 3217[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3142 -> 3218[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3143 -> 427[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3143[label="xwv721 == xwv731",fontsize=16,color="magenta"];3143 -> 3219[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3143 -> 3220[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3144 -> 424[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3144[label="xwv721 == xwv731",fontsize=16,color="magenta"];3144 -> 3221[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3144 -> 3222[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3145 -> 1920[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3145[label="xwv722 <= xwv732",fontsize=16,color="magenta"];3145 -> 3223[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3145 -> 3224[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3146 -> 1921[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3146[label="xwv722 <= xwv732",fontsize=16,color="magenta"];3146 -> 3225[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3146 -> 3226[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3147 -> 1922[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3147[label="xwv722 <= xwv732",fontsize=16,color="magenta"];3147 -> 3227[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3147 -> 3228[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3148 -> 1923[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3148[label="xwv722 <= xwv732",fontsize=16,color="magenta"];3148 -> 3229[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3148 -> 3230[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3149 -> 1924[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3149[label="xwv722 <= xwv732",fontsize=16,color="magenta"];3149 -> 3231[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3149 -> 3232[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3150 -> 1925[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3150[label="xwv722 <= xwv732",fontsize=16,color="magenta"];3150 -> 3233[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3150 -> 3234[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3151 -> 1926[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3151[label="xwv722 <= xwv732",fontsize=16,color="magenta"];3151 -> 3235[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3151 -> 3236[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3152 -> 1927[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3152[label="xwv722 <= xwv732",fontsize=16,color="magenta"];3152 -> 3237[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3152 -> 3238[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3153 -> 1928[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3153[label="xwv722 <= xwv732",fontsize=16,color="magenta"];3153 -> 3239[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3153 -> 3240[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3154 -> 1929[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3154[label="xwv722 <= xwv732",fontsize=16,color="magenta"];3154 -> 3241[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3154 -> 3242[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3155 -> 1930[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3155[label="xwv722 <= xwv732",fontsize=16,color="magenta"];3155 -> 3243[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3155 -> 3244[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3156 -> 1931[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3156[label="xwv722 <= xwv732",fontsize=16,color="magenta"];3156 -> 3245[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3156 -> 3246[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3157 -> 1932[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3157[label="xwv722 <= xwv732",fontsize=16,color="magenta"];3157 -> 3247[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3157 -> 3248[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3158 -> 1933[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3158[label="xwv722 <= xwv732",fontsize=16,color="magenta"];3158 -> 3249[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3158 -> 3250[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3678[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.Branch xwv285 xwv286 xwv287 xwv288 xwv289) (FiniteMap.findMax (FiniteMap.Branch xwv290 xwv291 xwv292 xwv293 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];3678 -> 3780[label="",style="solid", color="black", weight=3]; 37.19/18.89 3679[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.Branch xwv285 xwv286 xwv287 xwv288 xwv289) (FiniteMap.findMax (FiniteMap.Branch xwv290 xwv291 xwv292 xwv293 (FiniteMap.Branch xwv2940 xwv2941 xwv2942 xwv2943 xwv2944)))",fontsize=16,color="black",shape="box"];3679 -> 3781[label="",style="solid", color="black", weight=3]; 37.19/18.89 3778[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.Branch xwv301 xwv302 xwv303 xwv304 xwv305) (FiniteMap.findMax (FiniteMap.Branch xwv306 xwv307 xwv308 xwv309 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];3778 -> 3782[label="",style="solid", color="black", weight=3]; 37.19/18.89 3779[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.Branch xwv301 xwv302 xwv303 xwv304 xwv305) (FiniteMap.findMax (FiniteMap.Branch xwv306 xwv307 xwv308 xwv309 (FiniteMap.Branch xwv3100 xwv3101 xwv3102 xwv3103 xwv3104)))",fontsize=16,color="black",shape="box"];3779 -> 3783[label="",style="solid", color="black", weight=3]; 37.19/18.89 3163[label="xwv5141",fontsize=16,color="green",shape="box"];3164[label="xwv5143",fontsize=16,color="green",shape="box"];3165[label="xwv5140",fontsize=16,color="green",shape="box"];3166[label="xwv5142",fontsize=16,color="green",shape="box"];3167[label="xwv5144",fontsize=16,color="green",shape="box"];3580[label="xwv259",fontsize=16,color="green",shape="box"];3581[label="xwv2610",fontsize=16,color="green",shape="box"];3582[label="xwv2614",fontsize=16,color="green",shape="box"];3583[label="xwv2611",fontsize=16,color="green",shape="box"];3584[label="xwv2613",fontsize=16,color="green",shape="box"];3585[label="xwv2612",fontsize=16,color="green",shape="box"];3680[label="xwv274",fontsize=16,color="green",shape="box"];3681[label="xwv2770",fontsize=16,color="green",shape="box"];3682[label="xwv2773",fontsize=16,color="green",shape="box"];3683[label="xwv2774",fontsize=16,color="green",shape="box"];3684[label="xwv2772",fontsize=16,color="green",shape="box"];3685[label="xwv2771",fontsize=16,color="green",shape="box"];3172[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35",fontsize=16,color="burlywood",shape="box"];4733[label="xwv164/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3172 -> 4733[label="",style="solid", color="burlywood", weight=9]; 37.19/18.89 4733 -> 3263[label="",style="solid", color="burlywood", weight=3]; 37.19/18.89 4734[label="xwv164/FiniteMap.Branch xwv1640 xwv1641 xwv1642 xwv1643 xwv1644",fontsize=10,color="white",style="solid",shape="box"];3172 -> 4734[label="",style="solid", color="burlywood", weight=9]; 37.19/18.89 4734 -> 3264[label="",style="solid", color="burlywood", weight=3]; 37.19/18.89 3266[label="xwv35",fontsize=16,color="green",shape="box"];3267[label="xwv14",fontsize=16,color="green",shape="box"];3268[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3269[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3270[label="xwv13",fontsize=16,color="green",shape="box"];3271[label="xwv164",fontsize=16,color="green",shape="box"];3272[label="xwv160",fontsize=16,color="green",shape="box"];3273[label="xwv161",fontsize=16,color="green",shape="box"];3274[label="xwv163",fontsize=16,color="green",shape="box"];3265[label="FiniteMap.mkBranch (Pos (Succ xwv238)) xwv239 xwv240 xwv241 (FiniteMap.mkBranch (Pos (Succ xwv242)) xwv243 xwv244 xwv245 xwv246)",fontsize=16,color="black",shape="triangle"];3265 -> 3302[label="",style="solid", color="black", weight=3]; 37.19/18.89 3275[label="xwv354",fontsize=16,color="green",shape="box"];3276[label="xwv351",fontsize=16,color="green",shape="box"];3277[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3278[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3279[label="xwv350",fontsize=16,color="green",shape="box"];3280[label="xwv3534",fontsize=16,color="green",shape="box"];3281[label="xwv3530",fontsize=16,color="green",shape="box"];3282[label="xwv3531",fontsize=16,color="green",shape="box"];3283[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv13 xwv14 xwv16 xwv3533",fontsize=16,color="black",shape="box"];3283 -> 3303[label="",style="solid", color="black", weight=3]; 37.19/18.89 3194[label="xwv353",fontsize=16,color="green",shape="box"];3195[label="xwv721",fontsize=16,color="green",shape="box"];3196[label="xwv731",fontsize=16,color="green",shape="box"];3197[label="xwv721",fontsize=16,color="green",shape="box"];3198[label="xwv731",fontsize=16,color="green",shape="box"];3199[label="xwv721",fontsize=16,color="green",shape="box"];3200[label="xwv731",fontsize=16,color="green",shape="box"];3201[label="xwv721",fontsize=16,color="green",shape="box"];3202[label="xwv731",fontsize=16,color="green",shape="box"];3203[label="xwv721",fontsize=16,color="green",shape="box"];3204[label="xwv731",fontsize=16,color="green",shape="box"];3205[label="xwv721",fontsize=16,color="green",shape="box"];3206[label="xwv731",fontsize=16,color="green",shape="box"];3207[label="xwv721",fontsize=16,color="green",shape="box"];3208[label="xwv731",fontsize=16,color="green",shape="box"];3209[label="xwv721",fontsize=16,color="green",shape="box"];3210[label="xwv731",fontsize=16,color="green",shape="box"];3211[label="xwv721",fontsize=16,color="green",shape="box"];3212[label="xwv731",fontsize=16,color="green",shape="box"];3213[label="xwv721",fontsize=16,color="green",shape="box"];3214[label="xwv731",fontsize=16,color="green",shape="box"];3215[label="xwv721",fontsize=16,color="green",shape="box"];3216[label="xwv731",fontsize=16,color="green",shape="box"];3217[label="xwv721",fontsize=16,color="green",shape="box"];3218[label="xwv731",fontsize=16,color="green",shape="box"];3219[label="xwv721",fontsize=16,color="green",shape="box"];3220[label="xwv731",fontsize=16,color="green",shape="box"];3221[label="xwv721",fontsize=16,color="green",shape="box"];3222[label="xwv731",fontsize=16,color="green",shape="box"];3223[label="xwv722",fontsize=16,color="green",shape="box"];3224[label="xwv732",fontsize=16,color="green",shape="box"];3225[label="xwv722",fontsize=16,color="green",shape="box"];3226[label="xwv732",fontsize=16,color="green",shape="box"];3227[label="xwv722",fontsize=16,color="green",shape="box"];3228[label="xwv732",fontsize=16,color="green",shape="box"];3229[label="xwv722",fontsize=16,color="green",shape="box"];3230[label="xwv732",fontsize=16,color="green",shape="box"];3231[label="xwv722",fontsize=16,color="green",shape="box"];3232[label="xwv732",fontsize=16,color="green",shape="box"];3233[label="xwv722",fontsize=16,color="green",shape="box"];3234[label="xwv732",fontsize=16,color="green",shape="box"];3235[label="xwv722",fontsize=16,color="green",shape="box"];3236[label="xwv732",fontsize=16,color="green",shape="box"];3237[label="xwv722",fontsize=16,color="green",shape="box"];3238[label="xwv732",fontsize=16,color="green",shape="box"];3239[label="xwv722",fontsize=16,color="green",shape="box"];3240[label="xwv732",fontsize=16,color="green",shape="box"];3241[label="xwv722",fontsize=16,color="green",shape="box"];3242[label="xwv732",fontsize=16,color="green",shape="box"];3243[label="xwv722",fontsize=16,color="green",shape="box"];3244[label="xwv732",fontsize=16,color="green",shape="box"];3245[label="xwv722",fontsize=16,color="green",shape="box"];3246[label="xwv732",fontsize=16,color="green",shape="box"];3247[label="xwv722",fontsize=16,color="green",shape="box"];3248[label="xwv732",fontsize=16,color="green",shape="box"];3249[label="xwv722",fontsize=16,color="green",shape="box"];3250[label="xwv732",fontsize=16,color="green",shape="box"];3780[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.Branch xwv285 xwv286 xwv287 xwv288 xwv289) (xwv290,xwv291)",fontsize=16,color="black",shape="box"];3780 -> 3784[label="",style="solid", color="black", weight=3]; 37.19/18.89 3781 -> 3587[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3781[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.Branch xwv285 xwv286 xwv287 xwv288 xwv289) (FiniteMap.findMax (FiniteMap.Branch xwv2940 xwv2941 xwv2942 xwv2943 xwv2944))",fontsize=16,color="magenta"];3781 -> 3785[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3781 -> 3786[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3781 -> 3787[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3781 -> 3788[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3781 -> 3789[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3782[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.Branch xwv301 xwv302 xwv303 xwv304 xwv305) (xwv306,xwv307)",fontsize=16,color="black",shape="box"];3782 -> 3790[label="",style="solid", color="black", weight=3]; 37.19/18.89 3783 -> 3687[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3783[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.Branch xwv301 xwv302 xwv303 xwv304 xwv305) (FiniteMap.findMax (FiniteMap.Branch xwv3100 xwv3101 xwv3102 xwv3103 xwv3104))",fontsize=16,color="magenta"];3783 -> 3791[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3783 -> 3792[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3783 -> 3793[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3783 -> 3794[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3783 -> 3795[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3263[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 FiniteMap.EmptyFM) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 FiniteMap.EmptyFM) xwv35",fontsize=16,color="black",shape="box"];3263 -> 3312[label="",style="solid", color="black", weight=3]; 37.19/18.89 3264[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 (FiniteMap.Branch xwv1640 xwv1641 xwv1642 xwv1643 xwv1644)) xwv13 xwv14 xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 (FiniteMap.Branch xwv1640 xwv1641 xwv1642 xwv1643 xwv1644)) xwv35",fontsize=16,color="black",shape="box"];3264 -> 3313[label="",style="solid", color="black", weight=3]; 37.19/18.89 3302 -> 634[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3302[label="FiniteMap.mkBranchResult xwv239 xwv240 xwv241 (FiniteMap.mkBranch (Pos (Succ xwv242)) xwv243 xwv244 xwv245 xwv246)",fontsize=16,color="magenta"];3302 -> 3314[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3302 -> 3315[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3302 -> 3316[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3302 -> 3317[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3303 -> 634[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3303[label="FiniteMap.mkBranchResult xwv13 xwv14 xwv16 xwv3533",fontsize=16,color="magenta"];3303 -> 3318[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3784[label="xwv291",fontsize=16,color="green",shape="box"];3785[label="xwv2943",fontsize=16,color="green",shape="box"];3786[label="xwv2944",fontsize=16,color="green",shape="box"];3787[label="xwv2941",fontsize=16,color="green",shape="box"];3788[label="xwv2942",fontsize=16,color="green",shape="box"];3789[label="xwv2940",fontsize=16,color="green",shape="box"];3790[label="xwv306",fontsize=16,color="green",shape="box"];3791[label="xwv3104",fontsize=16,color="green",shape="box"];3792[label="xwv3103",fontsize=16,color="green",shape="box"];3793[label="xwv3102",fontsize=16,color="green",shape="box"];3794[label="xwv3101",fontsize=16,color="green",shape="box"];3795[label="xwv3100",fontsize=16,color="green",shape="box"];3312[label="error []",fontsize=16,color="red",shape="box"];3313 -> 3265[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3313[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xwv1640 xwv1641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv160 xwv161 xwv163 xwv1643) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xwv13 xwv14 xwv1644 xwv35)",fontsize=16,color="magenta"];3313 -> 3331[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3313 -> 3332[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3313 -> 3333[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3313 -> 3334[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3313 -> 3335[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3313 -> 3336[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3313 -> 3337[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3313 -> 3338[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3313 -> 3339[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3314[label="xwv240",fontsize=16,color="green",shape="box"];3315[label="xwv239",fontsize=16,color="green",shape="box"];3316[label="xwv241",fontsize=16,color="green",shape="box"];3317[label="FiniteMap.mkBranch (Pos (Succ xwv242)) xwv243 xwv244 xwv245 xwv246",fontsize=16,color="black",shape="triangle"];3317 -> 3340[label="",style="solid", color="black", weight=3]; 37.19/18.89 3318[label="xwv3533",fontsize=16,color="green",shape="box"];3331[label="xwv35",fontsize=16,color="green",shape="box"];3332[label="xwv14",fontsize=16,color="green",shape="box"];3333[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3334[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3335[label="xwv13",fontsize=16,color="green",shape="box"];3336[label="xwv1644",fontsize=16,color="green",shape="box"];3337[label="xwv1640",fontsize=16,color="green",shape="box"];3338[label="xwv1641",fontsize=16,color="green",shape="box"];3339 -> 3317[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3339[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv160 xwv161 xwv163 xwv1643",fontsize=16,color="magenta"];3339 -> 3349[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3339 -> 3350[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3339 -> 3351[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3339 -> 3352[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3339 -> 3353[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3340 -> 634[label="",style="dashed", color="red", weight=0]; 37.19/18.89 3340[label="FiniteMap.mkBranchResult xwv243 xwv244 xwv245 xwv246",fontsize=16,color="magenta"];3340 -> 3354[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3340 -> 3355[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3340 -> 3356[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3340 -> 3357[label="",style="dashed", color="magenta", weight=3]; 37.19/18.89 3349[label="xwv1643",fontsize=16,color="green",shape="box"];3350[label="xwv161",fontsize=16,color="green",shape="box"];3351[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3352[label="xwv160",fontsize=16,color="green",shape="box"];3353[label="xwv163",fontsize=16,color="green",shape="box"];3354[label="xwv244",fontsize=16,color="green",shape="box"];3355[label="xwv243",fontsize=16,color="green",shape="box"];3356[label="xwv245",fontsize=16,color="green",shape="box"];3357[label="xwv246",fontsize=16,color="green",shape="box"];} 37.19/18.89 37.19/18.89 ---------------------------------------- 37.19/18.89 37.19/18.89 (16) 37.19/18.89 Complex Obligation (AND) 37.19/18.89 37.19/18.89 ---------------------------------------- 37.19/18.89 37.19/18.89 (17) 37.19/18.89 Obligation: 37.19/18.89 Q DP problem: 37.19/18.89 The TRS P consists of the following rules: 37.19/18.89 37.19/18.89 new_primCmpNat(Succ(xwv4000), Succ(xwv3000)) -> new_primCmpNat(xwv4000, xwv3000) 37.19/18.89 37.19/18.89 R is empty. 37.19/18.89 Q is empty. 37.19/18.89 We have to consider all minimal (P,Q,R)-chains. 37.19/18.89 ---------------------------------------- 37.19/18.89 37.19/18.89 (18) QDPSizeChangeProof (EQUIVALENT) 37.19/18.89 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 37.19/18.89 37.19/18.89 From the DPs we obtained the following set of size-change graphs: 37.19/18.89 *new_primCmpNat(Succ(xwv4000), Succ(xwv3000)) -> new_primCmpNat(xwv4000, xwv3000) 37.19/18.89 The graph contains the following edges 1 > 1, 2 > 2 37.19/18.89 37.19/18.89 37.19/18.89 ---------------------------------------- 37.19/18.89 37.19/18.89 (19) 37.19/18.89 YES 37.19/18.89 37.19/18.89 ---------------------------------------- 37.19/18.89 37.19/18.89 (20) 37.19/18.89 Obligation: 37.19/18.89 Q DP problem: 37.19/18.89 The TRS P consists of the following rules: 37.19/18.89 37.19/18.89 new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, h, ba) -> new_delFromFM1(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_lt24(xwv18, xwv13, h), h, ba) 37.19/18.89 new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, h, ba) -> new_delFromFM(xwv17, xwv18, h, ba) 37.19/18.89 new_delFromFM1(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, bb, bc) -> new_delFromFM(xwv31, xwv33, bb, bc) 37.19/18.89 new_delFromFM(Branch(xwv30, xwv31, xwv32, xwv33, xwv34), xwv40, bd, be) -> new_delFromFM2(xwv30, xwv31, xwv32, xwv33, xwv34, xwv40, new_gt(xwv40, xwv30, bd), bd, be) 37.19/18.89 37.19/18.89 The TRS R consists of the following rules: 37.19/18.89 37.19/18.89 new_lt20(xwv720, xwv730, ty_Double) -> new_lt12(xwv720, xwv730) 37.19/18.89 new_esEs27(xwv88, xwv91, ty_Double) -> new_esEs15(xwv88, xwv91) 37.19/18.89 new_esEs30(xwv280, xwv330, app(app(ty_@2, cdf), cdg)) -> new_esEs19(xwv280, xwv330, cdf, cdg) 37.19/18.89 new_esEs39(xwv280, xwv330, ty_Bool) -> new_esEs13(xwv280, xwv330) 37.19/18.89 new_ltEs24(xwv72, xwv73, ty_Float) -> new_ltEs12(xwv72, xwv73) 37.19/18.89 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 37.19/18.89 new_ltEs21(xwv126, xwv128, ty_Bool) -> new_ltEs8(xwv126, xwv128) 37.19/18.89 new_esEs7(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 37.19/18.89 new_primPlusNat0(Zero, Zero) -> Zero 37.19/18.89 new_ltEs22(xwv722, xwv732, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_ltEs15(xwv722, xwv732, ddb, ddc, ddd) 37.19/18.89 new_pePe(True, xwv210) -> True 37.19/18.89 new_ltEs5(xwv90, xwv93, app(app(ty_@2, gc), gd)) -> new_ltEs9(xwv90, xwv93, gc, gd) 37.19/18.89 new_esEs10(xwv400, xwv300, ty_@0) -> new_esEs22(xwv400, xwv300) 37.19/18.89 new_esEs10(xwv400, xwv300, app(app(app(ty_@3, fbf), fbg), fbh)) -> new_esEs23(xwv400, xwv300, fbf, fbg, fbh) 37.19/18.89 new_esEs32(xwv282, xwv332, ty_Integer) -> new_esEs24(xwv282, xwv332) 37.19/18.89 new_ltEs24(xwv72, xwv73, ty_Ordering) -> new_ltEs14(xwv72, xwv73) 37.19/18.89 new_esEs27(xwv88, xwv91, ty_Float) -> new_esEs20(xwv88, xwv91) 37.19/18.89 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 37.19/18.89 new_compare110(xwv148, xwv149, False, eeh) -> GT 37.19/18.89 new_esEs40(xwv281, xwv331, ty_Char) -> new_esEs18(xwv281, xwv331) 37.19/18.89 new_esEs28(xwv89, xwv92, ty_Ordering) -> new_esEs14(xwv89, xwv92) 37.19/18.89 new_lt6(xwv89, xwv92, ty_Char) -> new_lt8(xwv89, xwv92) 37.19/18.89 new_lt22(xwv720, xwv730, app(app(app(ty_@3, daf), dag), dah)) -> new_lt17(xwv720, xwv730, daf, dag, dah) 37.19/18.89 new_compare28(LT, LT) -> EQ 37.19/18.89 new_esEs28(xwv89, xwv92, ty_Char) -> new_esEs18(xwv89, xwv92) 37.19/18.89 new_lt21(xwv125, xwv127, app(ty_Maybe, caf)) -> new_lt11(xwv125, xwv127, caf) 37.19/18.89 new_esEs5(xwv401, xwv301, app(ty_Ratio, ehf)) -> new_esEs21(xwv401, xwv301, ehf) 37.19/18.89 new_esEs12(Just(xwv280), Just(xwv330), app(ty_Maybe, bg)) -> new_esEs12(xwv280, xwv330, bg) 37.19/18.89 new_esEs7(xwv400, xwv300, ty_Ordering) -> new_esEs14(xwv400, xwv300) 37.19/18.89 new_esEs32(xwv282, xwv332, app(ty_[], cgh)) -> new_esEs25(xwv282, xwv332, cgh) 37.19/18.89 new_esEs35(xwv721, xwv731, ty_@0) -> new_esEs22(xwv721, xwv731) 37.19/18.89 new_esEs35(xwv721, xwv731, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs23(xwv721, xwv731, dbh, dca, dcb) 37.19/18.89 new_lt6(xwv89, xwv92, ty_Bool) -> new_lt9(xwv89, xwv92) 37.19/18.89 new_ltEs19(xwv99, xwv100, ty_Double) -> new_ltEs11(xwv99, xwv100) 37.19/18.89 new_esEs12(Nothing, Just(xwv330), bf) -> False 37.19/18.89 new_esEs12(Just(xwv280), Nothing, bf) -> False 37.19/18.89 new_ltEs16(Left(xwv720), Left(xwv730), ty_Float, bdg) -> new_ltEs12(xwv720, xwv730) 37.19/18.89 new_ltEs20(xwv721, xwv731, ty_@0) -> new_ltEs4(xwv721, xwv731) 37.19/18.89 new_esEs6(xwv400, xwv300, ty_Float) -> new_esEs20(xwv400, xwv300) 37.19/18.89 new_esEs17(Left(xwv280), Left(xwv330), ty_@0, ddh) -> new_esEs22(xwv280, xwv330) 37.19/18.89 new_esEs12(Nothing, Nothing, bf) -> True 37.19/18.89 new_ltEs19(xwv99, xwv100, app(app(ty_Either, baf), bag)) -> new_ltEs16(xwv99, xwv100, baf, bag) 37.19/18.89 new_compare8(:%(xwv400, xwv401), :%(xwv300, xwv301), ty_Int) -> new_compare14(new_sr(xwv400, xwv301), new_sr(xwv300, xwv401)) 37.19/18.89 new_esEs17(Left(xwv280), Left(xwv330), app(app(app(ty_@3, deg), deh), dfa), ddh) -> new_esEs23(xwv280, xwv330, deg, deh, dfa) 37.19/18.89 new_primEqNat0(Succ(xwv2800), Succ(xwv3300)) -> new_primEqNat0(xwv2800, xwv3300) 37.19/18.89 new_ltEs22(xwv722, xwv732, app(ty_Maybe, dch)) -> new_ltEs10(xwv722, xwv732, dch) 37.19/18.89 new_esEs33(xwv125, xwv127, app(ty_Maybe, caf)) -> new_esEs12(xwv125, xwv127, caf) 37.19/18.89 new_ltEs21(xwv126, xwv128, ty_Char) -> new_ltEs7(xwv126, xwv128) 37.19/18.89 new_not(True) -> False 37.19/18.89 new_esEs9(xwv402, xwv302, ty_Integer) -> new_esEs24(xwv402, xwv302) 37.19/18.89 new_primCompAux00(xwv78, LT) -> LT 37.19/18.89 new_esEs27(xwv88, xwv91, app(ty_[], ea)) -> new_esEs25(xwv88, xwv91, ea) 37.19/18.89 new_esEs5(xwv401, xwv301, app(ty_Maybe, eha)) -> new_esEs12(xwv401, xwv301, eha) 37.19/18.89 new_ltEs20(xwv721, xwv731, ty_Integer) -> new_ltEs17(xwv721, xwv731) 37.19/18.89 new_ltEs10(Just(xwv720), Just(xwv730), ty_Bool) -> new_ltEs8(xwv720, xwv730) 37.19/18.89 new_ltEs16(Right(xwv720), Right(xwv730), bfb, app(app(ty_Either, bgb), bgc)) -> new_ltEs16(xwv720, xwv730, bgb, bgc) 37.19/18.89 new_ltEs19(xwv99, xwv100, ty_Bool) -> new_ltEs8(xwv99, xwv100) 37.19/18.89 new_esEs34(xwv720, xwv730, ty_Bool) -> new_esEs13(xwv720, xwv730) 37.19/18.89 new_lt6(xwv89, xwv92, app(ty_Ratio, gb)) -> new_lt4(xwv89, xwv92, gb) 37.19/18.89 new_lt22(xwv720, xwv730, app(ty_Ratio, dbc)) -> new_lt4(xwv720, xwv730, dbc) 37.19/18.89 new_esEs8(xwv401, xwv301, app(app(ty_Either, ebb), ebc)) -> new_esEs17(xwv401, xwv301, ebb, ebc) 37.19/18.89 new_esEs17(Right(xwv280), Right(xwv330), dfc, ty_Float) -> new_esEs20(xwv280, xwv330) 37.19/18.89 new_primEqNat0(Succ(xwv2800), Zero) -> False 37.19/18.89 new_primEqNat0(Zero, Succ(xwv3300)) -> False 37.19/18.89 new_esEs11(xwv400, xwv300, app(app(ty_Either, fcc), fcd)) -> new_esEs17(xwv400, xwv300, fcc, fcd) 37.19/18.89 new_esEs18(Char(xwv280), Char(xwv330)) -> new_primEqNat0(xwv280, xwv330) 37.19/18.89 new_esEs38(xwv280, xwv330, ty_Char) -> new_esEs18(xwv280, xwv330) 37.19/18.89 new_ltEs20(xwv721, xwv731, ty_Int) -> new_ltEs6(xwv721, xwv731) 37.19/18.89 new_esEs40(xwv281, xwv331, ty_Ordering) -> new_esEs14(xwv281, xwv331) 37.19/18.89 new_esEs9(xwv402, xwv302, app(ty_[], edd)) -> new_esEs25(xwv402, xwv302, edd) 37.19/18.89 new_esEs29(xwv720, xwv730, ty_Bool) -> new_esEs13(xwv720, xwv730) 37.19/18.89 new_esEs30(xwv280, xwv330, ty_Ordering) -> new_esEs14(xwv280, xwv330) 37.19/18.89 new_compare8(:%(xwv400, xwv401), :%(xwv300, xwv301), ty_Integer) -> new_compare15(new_sr0(xwv400, xwv301), new_sr0(xwv300, xwv401)) 37.19/18.89 new_lt20(xwv720, xwv730, ty_Integer) -> new_lt19(xwv720, xwv730) 37.19/18.89 new_lt23(xwv721, xwv731, ty_Float) -> new_lt13(xwv721, xwv731) 37.19/18.89 new_esEs31(xwv281, xwv331, app(ty_Ratio, cfb)) -> new_esEs21(xwv281, xwv331, cfb) 37.19/18.89 new_ltEs14(EQ, EQ) -> True 37.19/18.89 new_ltEs10(Nothing, Just(xwv730), ede) -> True 37.19/18.89 new_esEs4(xwv400, xwv300, ty_@0) -> new_esEs22(xwv400, xwv300) 37.19/18.89 new_esEs11(xwv400, xwv300, app(ty_Maybe, fcb)) -> new_esEs12(xwv400, xwv300, fcb) 37.19/18.89 new_esEs4(xwv400, xwv300, app(app(app(ty_@3, ege), egf), egg)) -> new_esEs23(xwv400, xwv300, ege, egf, egg) 37.19/18.89 new_ltEs10(Just(xwv720), Just(xwv730), ty_Double) -> new_ltEs11(xwv720, xwv730) 37.19/18.89 new_esEs9(xwv402, xwv302, app(app(app(ty_@3, eda), edb), edc)) -> new_esEs23(xwv402, xwv302, eda, edb, edc) 37.19/18.89 new_ltEs21(xwv126, xwv128, ty_Double) -> new_ltEs11(xwv126, xwv128) 37.19/18.89 new_esEs9(xwv402, xwv302, ty_@0) -> new_esEs22(xwv402, xwv302) 37.19/18.89 new_primCmpInt(Pos(Succ(xwv4000)), Neg(xwv300)) -> GT 37.19/18.89 new_lt6(xwv89, xwv92, ty_Ordering) -> new_lt16(xwv89, xwv92) 37.19/18.89 new_gt(xwv40, xwv30, app(app(ty_Either, faf), fag)) -> new_esEs41(new_compare17(xwv40, xwv30, faf, fag)) 37.19/18.89 new_esEs33(xwv125, xwv127, ty_Int) -> new_esEs16(xwv125, xwv127) 37.19/18.89 new_lt14(xwv18, xwv13) -> new_esEs26(new_compare7(xwv18, xwv13)) 37.19/18.89 new_esEs12(Just(xwv280), Just(xwv330), ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.89 new_esEs7(xwv400, xwv300, app(app(ty_@2, eab), eac)) -> new_esEs19(xwv400, xwv300, eab, eac) 37.19/18.89 new_compare31(xwv400, xwv300, ty_Bool) -> new_compare29(xwv400, xwv300) 37.19/18.89 new_primCompAux0(xwv400, xwv300, xwv56, fdd) -> new_primCompAux00(xwv56, new_compare31(xwv400, xwv300, fdd)) 37.19/18.89 new_lt5(xwv88, xwv91, ty_Int) -> new_lt7(xwv88, xwv91) 37.19/18.89 new_ltEs10(Just(xwv720), Just(xwv730), ty_Char) -> new_ltEs7(xwv720, xwv730) 37.19/18.89 new_primCmpNat0(Zero, Succ(xwv3000)) -> LT 37.19/18.89 new_lt20(xwv720, xwv730, app(ty_[], bbf)) -> new_lt15(xwv720, xwv730, bbf) 37.19/18.89 new_esEs40(xwv281, xwv331, app(app(app(ty_@3, gca), gcb), gcc)) -> new_esEs23(xwv281, xwv331, gca, gcb, gcc) 37.19/18.89 new_esEs40(xwv281, xwv331, ty_@0) -> new_esEs22(xwv281, xwv331) 37.19/18.89 new_ltEs19(xwv99, xwv100, ty_Char) -> new_ltEs7(xwv99, xwv100) 37.19/18.89 new_compare13(xwv177, xwv178, xwv179, xwv180, False, bge, bgf) -> GT 37.19/18.89 new_esEs33(xwv125, xwv127, app(ty_Ratio, cbe)) -> new_esEs21(xwv125, xwv127, cbe) 37.19/18.89 new_esEs17(Right(xwv280), Right(xwv330), dfc, ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.89 new_lt5(xwv88, xwv91, app(ty_Maybe, dh)) -> new_lt11(xwv88, xwv91, dh) 37.19/18.89 new_ltEs10(Just(xwv720), Just(xwv730), app(ty_Ratio, eeg)) -> new_ltEs18(xwv720, xwv730, eeg) 37.19/18.89 new_esEs39(xwv280, xwv330, app(app(ty_Either, gab), gac)) -> new_esEs17(xwv280, xwv330, gab, gac) 37.19/18.89 new_esEs33(xwv125, xwv127, ty_Char) -> new_esEs18(xwv125, xwv127) 37.19/18.89 new_lt22(xwv720, xwv730, app(ty_[], dae)) -> new_lt15(xwv720, xwv730, dae) 37.19/18.89 new_ltEs16(Left(xwv720), Left(xwv730), app(ty_Ratio, bfa), bdg) -> new_ltEs18(xwv720, xwv730, bfa) 37.19/18.89 new_esEs11(xwv400, xwv300, ty_Int) -> new_esEs16(xwv400, xwv300) 37.19/18.89 new_esEs8(xwv401, xwv301, app(ty_Ratio, ebf)) -> new_esEs21(xwv401, xwv301, ebf) 37.19/18.89 new_esEs7(xwv400, xwv300, app(app(app(ty_@3, eae), eaf), eag)) -> new_esEs23(xwv400, xwv300, eae, eaf, eag) 37.19/18.89 new_esEs32(xwv282, xwv332, ty_@0) -> new_esEs22(xwv282, xwv332) 37.19/18.89 new_esEs10(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 37.19/18.89 new_esEs34(xwv720, xwv730, ty_Float) -> new_esEs20(xwv720, xwv730) 37.19/18.89 new_ltEs5(xwv90, xwv93, app(ty_[], gf)) -> new_ltEs13(xwv90, xwv93, gf) 37.19/18.89 new_ltEs19(xwv99, xwv100, ty_Ordering) -> new_ltEs14(xwv99, xwv100) 37.19/18.89 new_lt21(xwv125, xwv127, ty_Int) -> new_lt7(xwv125, xwv127) 37.19/18.89 new_compare31(xwv400, xwv300, ty_Char) -> new_compare6(xwv400, xwv300) 37.19/18.89 new_esEs10(xwv400, xwv300, ty_Integer) -> new_esEs24(xwv400, xwv300) 37.19/18.89 new_esEs29(xwv720, xwv730, app(app(ty_Either, bcb), bcc)) -> new_esEs17(xwv720, xwv730, bcb, bcc) 37.19/18.89 new_ltEs14(EQ, GT) -> True 37.19/18.89 new_esEs38(xwv280, xwv330, ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.89 new_esEs32(xwv282, xwv332, ty_Double) -> new_esEs15(xwv282, xwv332) 37.19/18.89 new_ltEs23(xwv106, xwv107, ty_Integer) -> new_ltEs17(xwv106, xwv107) 37.19/18.89 new_ltEs5(xwv90, xwv93, ty_Ordering) -> new_ltEs14(xwv90, xwv93) 37.19/18.89 new_esEs28(xwv89, xwv92, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs23(xwv89, xwv92, fd, ff, fg) 37.19/18.89 new_primEqInt(Neg(Succ(xwv2800)), Neg(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) 37.19/18.89 new_ltEs16(Left(xwv720), Left(xwv730), app(app(ty_@2, bdh), bea), bdg) -> new_ltEs9(xwv720, xwv730, bdh, bea) 37.19/18.89 new_esEs30(xwv280, xwv330, ty_@0) -> new_esEs22(xwv280, xwv330) 37.19/18.89 new_primCmpInt(Neg(Zero), Pos(Succ(xwv3000))) -> LT 37.19/18.89 new_primMulInt(Pos(xwv3000), Pos(xwv4010)) -> Pos(new_primMulNat0(xwv3000, xwv4010)) 37.19/18.89 new_ltEs8(True, False) -> False 37.19/18.89 new_ltEs14(LT, GT) -> True 37.19/18.89 new_ltEs14(GT, GT) -> True 37.19/18.89 new_ltEs22(xwv722, xwv732, ty_Int) -> new_ltEs6(xwv722, xwv732) 37.19/18.89 new_esEs9(xwv402, xwv302, ty_Float) -> new_esEs20(xwv402, xwv302) 37.19/18.89 new_esEs14(LT, GT) -> False 37.19/18.89 new_esEs14(GT, LT) -> False 37.19/18.89 new_esEs17(Right(xwv280), Right(xwv330), dfc, app(app(ty_@2, dfg), dfh)) -> new_esEs19(xwv280, xwv330, dfg, dfh) 37.19/18.89 new_esEs38(xwv280, xwv330, app(ty_Maybe, fge)) -> new_esEs12(xwv280, xwv330, fge) 37.19/18.89 new_primMulNat0(Succ(xwv30000), Zero) -> Zero 37.19/18.89 new_primMulNat0(Zero, Succ(xwv40100)) -> Zero 37.19/18.89 new_ltEs8(False, False) -> True 37.19/18.89 new_esEs32(xwv282, xwv332, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs23(xwv282, xwv332, cge, cgf, cgg) 37.19/18.89 new_esEs5(xwv401, xwv301, app(app(ty_Either, ehb), ehc)) -> new_esEs17(xwv401, xwv301, ehb, ehc) 37.19/18.89 new_esEs6(xwv400, xwv300, ty_Integer) -> new_esEs24(xwv400, xwv300) 37.19/18.89 new_compare26(xwv72, xwv73, True, gcf) -> EQ 37.19/18.89 new_ltEs19(xwv99, xwv100, ty_Float) -> new_ltEs12(xwv99, xwv100) 37.19/18.89 new_esEs12(Just(xwv280), Just(xwv330), ty_Ordering) -> new_esEs14(xwv280, xwv330) 37.19/18.89 new_ltEs22(xwv722, xwv732, app(app(ty_@2, dcf), dcg)) -> new_ltEs9(xwv722, xwv732, dcf, dcg) 37.19/18.89 new_primPlusNat0(Succ(xwv16200), Zero) -> Succ(xwv16200) 37.19/18.89 new_primPlusNat0(Zero, Succ(xwv13700)) -> Succ(xwv13700) 37.19/18.89 new_lt17(xwv18, xwv13, dgh, dha, dhb) -> new_esEs26(new_compare30(xwv18, xwv13, dgh, dha, dhb)) 37.19/18.89 new_esEs35(xwv721, xwv731, app(app(ty_@2, dbd), dbe)) -> new_esEs19(xwv721, xwv731, dbd, dbe) 37.19/18.89 new_lt23(xwv721, xwv731, ty_Int) -> new_lt7(xwv721, xwv731) 37.19/18.89 new_compare19(Float(xwv400, Pos(xwv4010)), Float(xwv300, Pos(xwv3010))) -> new_compare14(new_sr(xwv400, Pos(xwv3010)), new_sr(Pos(xwv4010), xwv300)) 37.19/18.89 new_ltEs5(xwv90, xwv93, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs15(xwv90, xwv93, gg, gh, ha) 37.19/18.89 new_compare1([], [], fdd) -> EQ 37.19/18.89 new_lt22(xwv720, xwv730, app(app(ty_@2, dab), dac)) -> new_lt10(xwv720, xwv730, dab, dac) 37.19/18.89 new_compare29(False, False) -> EQ 37.19/18.89 new_esEs10(xwv400, xwv300, app(app(ty_@2, fbc), fbd)) -> new_esEs19(xwv400, xwv300, fbc, fbd) 37.19/18.89 new_lt6(xwv89, xwv92, app(app(ty_@2, eh), fa)) -> new_lt10(xwv89, xwv92, eh, fa) 37.19/18.89 new_esEs6(xwv400, xwv300, app(ty_[], caa)) -> new_esEs25(xwv400, xwv300, caa) 37.19/18.89 new_esEs33(xwv125, xwv127, app(app(ty_@2, cad), cae)) -> new_esEs19(xwv125, xwv127, cad, cae) 37.19/18.89 new_esEs9(xwv402, xwv302, app(app(ty_@2, ecf), ecg)) -> new_esEs19(xwv402, xwv302, ecf, ecg) 37.19/18.89 new_compare9(Just(xwv400), Just(xwv300), bgg) -> new_compare26(xwv400, xwv300, new_esEs6(xwv400, xwv300, bgg), bgg) 37.19/18.89 new_esEs30(xwv280, xwv330, ty_Char) -> new_esEs18(xwv280, xwv330) 37.19/18.89 new_esEs13(True, True) -> True 37.19/18.89 new_ltEs16(Right(xwv720), Right(xwv730), bfb, ty_Char) -> new_ltEs7(xwv720, xwv730) 37.19/18.89 new_ltEs20(xwv721, xwv731, app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs15(xwv721, xwv731, bda, bdb, bdc) 37.19/18.89 new_ltEs16(Right(xwv720), Right(xwv730), bfb, ty_Bool) -> new_ltEs8(xwv720, xwv730) 37.19/18.89 new_esEs29(xwv720, xwv730, ty_Double) -> new_esEs15(xwv720, xwv730) 37.19/18.89 new_esEs38(xwv280, xwv330, ty_Ordering) -> new_esEs14(xwv280, xwv330) 37.19/18.89 new_esEs30(xwv280, xwv330, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs23(xwv280, xwv330, cea, ceb, cec) 37.19/18.89 new_lt24(xwv18, xwv13, ty_Ordering) -> new_lt16(xwv18, xwv13) 37.19/18.89 new_esEs17(Right(xwv280), Right(xwv330), dfc, ty_Double) -> new_esEs15(xwv280, xwv330) 37.19/18.89 new_lt4(xwv18, xwv13, db) -> new_esEs26(new_compare8(xwv18, xwv13, db)) 37.19/18.89 new_compare17(Left(xwv400), Right(xwv300), faf, fag) -> LT 37.19/18.89 new_esEs31(xwv281, xwv331, app(app(ty_Either, cef), ceg)) -> new_esEs17(xwv281, xwv331, cef, ceg) 37.19/18.89 new_esEs6(xwv400, xwv300, ty_Double) -> new_esEs15(xwv400, xwv300) 37.19/18.89 new_ltEs21(xwv126, xwv128, app(app(ty_Either, cce), ccf)) -> new_ltEs16(xwv126, xwv128, cce, ccf) 37.19/18.89 new_esEs11(xwv400, xwv300, app(ty_Ratio, fcg)) -> new_esEs21(xwv400, xwv300, fcg) 37.19/18.89 new_esEs7(xwv400, xwv300, ty_@0) -> new_esEs22(xwv400, xwv300) 37.19/18.89 new_lt23(xwv721, xwv731, ty_Double) -> new_lt12(xwv721, xwv731) 37.19/18.89 new_ltEs21(xwv126, xwv128, ty_Float) -> new_ltEs12(xwv126, xwv128) 37.19/18.89 new_compare24(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, dc, dd, de) -> new_compare10(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, new_lt5(xwv88, xwv91, dc), new_asAs(new_esEs27(xwv88, xwv91, dc), new_pePe(new_lt6(xwv89, xwv92, dd), new_asAs(new_esEs28(xwv89, xwv92, dd), new_ltEs5(xwv90, xwv93, de)))), dc, dd, de) 37.19/18.89 new_ltEs8(False, True) -> True 37.19/18.89 new_compare29(True, False) -> GT 37.19/18.89 new_esEs32(xwv282, xwv332, ty_Float) -> new_esEs20(xwv282, xwv332) 37.19/18.89 new_esEs36(xwv280, xwv330, ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.89 new_ltEs16(Right(xwv720), Right(xwv730), bfb, ty_Double) -> new_ltEs11(xwv720, xwv730) 37.19/18.89 new_esEs33(xwv125, xwv127, ty_@0) -> new_esEs22(xwv125, xwv127) 37.19/18.89 new_esEs17(Left(xwv280), Left(xwv330), app(ty_Ratio, def), ddh) -> new_esEs21(xwv280, xwv330, def) 37.19/18.89 new_esEs6(xwv400, xwv300, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs23(xwv400, xwv300, bhf, bhg, bhh) 37.19/18.89 new_ltEs23(xwv106, xwv107, ty_Double) -> new_ltEs11(xwv106, xwv107) 37.19/18.89 new_esEs6(xwv400, xwv300, ty_@0) -> new_esEs22(xwv400, xwv300) 37.19/18.89 new_esEs33(xwv125, xwv127, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs23(xwv125, xwv127, cah, cba, cbb) 37.19/18.89 new_esEs17(Right(xwv280), Right(xwv330), dfc, app(ty_Ratio, dga)) -> new_esEs21(xwv280, xwv330, dga) 37.19/18.89 new_compare10(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, False, xwv199, efa, efb, efc) -> new_compare111(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, xwv199, efa, efb, efc) 37.19/18.89 new_esEs8(xwv401, xwv301, ty_Double) -> new_esEs15(xwv401, xwv301) 37.19/18.89 new_esEs11(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 37.19/18.89 new_lt23(xwv721, xwv731, app(app(ty_Either, dcc), dcd)) -> new_lt18(xwv721, xwv731, dcc, dcd) 37.19/18.89 new_esEs35(xwv721, xwv731, ty_Float) -> new_esEs20(xwv721, xwv731) 37.19/18.89 new_esEs29(xwv720, xwv730, ty_Int) -> new_esEs16(xwv720, xwv730) 37.19/18.89 new_lt21(xwv125, xwv127, ty_Float) -> new_lt13(xwv125, xwv127) 37.19/18.89 new_compare15(Integer(xwv400), Integer(xwv300)) -> new_primCmpInt(xwv400, xwv300) 37.19/18.89 new_esEs35(xwv721, xwv731, ty_Int) -> new_esEs16(xwv721, xwv731) 37.19/18.89 new_ltEs10(Just(xwv720), Just(xwv730), app(app(ty_@2, edf), edg)) -> new_ltEs9(xwv720, xwv730, edf, edg) 37.19/18.89 new_lt6(xwv89, xwv92, ty_@0) -> new_lt14(xwv89, xwv92) 37.19/18.89 new_ltEs16(Right(xwv720), Right(xwv730), bfb, ty_Float) -> new_ltEs12(xwv720, xwv730) 37.19/18.89 new_gt(xwv40, xwv30, ty_Bool) -> new_esEs41(new_compare29(xwv40, xwv30)) 37.19/18.89 new_esEs29(xwv720, xwv730, app(ty_Maybe, bbe)) -> new_esEs12(xwv720, xwv730, bbe) 37.19/18.89 new_esEs10(xwv400, xwv300, ty_Float) -> new_esEs20(xwv400, xwv300) 37.19/18.89 new_esEs40(xwv281, xwv331, ty_Integer) -> new_esEs24(xwv281, xwv331) 37.19/18.89 new_esEs35(xwv721, xwv731, app(ty_Maybe, dbf)) -> new_esEs12(xwv721, xwv731, dbf) 37.19/18.89 new_esEs13(False, False) -> True 37.19/18.89 new_compare31(xwv400, xwv300, ty_Integer) -> new_compare15(xwv400, xwv300) 37.19/18.89 new_esEs38(xwv280, xwv330, app(app(ty_Either, fgf), fgg)) -> new_esEs17(xwv280, xwv330, fgf, fgg) 37.19/18.89 new_lt7(xwv18, xwv13) -> new_esEs26(new_compare14(xwv18, xwv13)) 37.19/18.89 new_ltEs16(Right(xwv720), Right(xwv730), bfb, app(app(ty_@2, bfc), bfd)) -> new_ltEs9(xwv720, xwv730, bfc, bfd) 37.19/18.89 new_esEs14(EQ, GT) -> False 37.19/18.89 new_esEs14(GT, EQ) -> False 37.19/18.89 new_esEs5(xwv401, xwv301, ty_Char) -> new_esEs18(xwv401, xwv301) 37.19/18.89 new_esEs17(Left(xwv280), Left(xwv330), app(app(ty_@2, ded), dee), ddh) -> new_esEs19(xwv280, xwv330, ded, dee) 37.19/18.89 new_esEs32(xwv282, xwv332, app(app(ty_@2, cgb), cgc)) -> new_esEs19(xwv282, xwv332, cgb, cgc) 37.19/18.89 new_esEs32(xwv282, xwv332, ty_Char) -> new_esEs18(xwv282, xwv332) 37.19/18.89 new_esEs30(xwv280, xwv330, app(ty_Maybe, cdc)) -> new_esEs12(xwv280, xwv330, cdc) 37.19/18.89 new_esEs17(Right(xwv280), Right(xwv330), dfc, ty_@0) -> new_esEs22(xwv280, xwv330) 37.19/18.89 new_esEs11(xwv400, xwv300, ty_Ordering) -> new_esEs14(xwv400, xwv300) 37.19/18.89 new_esEs39(xwv280, xwv330, ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.89 new_esEs29(xwv720, xwv730, app(ty_[], bbf)) -> new_esEs25(xwv720, xwv730, bbf) 37.19/18.89 new_ltEs16(Right(xwv720), Left(xwv730), bfb, bdg) -> False 37.19/18.89 new_ltEs16(Right(xwv720), Right(xwv730), bfb, ty_Integer) -> new_ltEs17(xwv720, xwv730) 37.19/18.89 new_esEs30(xwv280, xwv330, app(ty_Ratio, cdh)) -> new_esEs21(xwv280, xwv330, cdh) 37.19/18.89 new_compare31(xwv400, xwv300, ty_@0) -> new_compare7(xwv400, xwv300) 37.19/18.89 new_lt21(xwv125, xwv127, ty_Char) -> new_lt8(xwv125, xwv127) 37.19/18.89 new_lt22(xwv720, xwv730, ty_Ordering) -> new_lt16(xwv720, xwv730) 37.19/18.89 new_ltEs8(True, True) -> True 37.19/18.89 new_lt24(xwv18, xwv13, app(app(app(ty_@3, dgh), dha), dhb)) -> new_lt17(xwv18, xwv13, dgh, dha, dhb) 37.19/18.89 new_primCmpInt(Pos(Succ(xwv4000)), Pos(xwv300)) -> new_primCmpNat0(Succ(xwv4000), xwv300) 37.19/18.89 new_esEs38(xwv280, xwv330, ty_@0) -> new_esEs22(xwv280, xwv330) 37.19/18.89 new_esEs30(xwv280, xwv330, app(ty_[], ced)) -> new_esEs25(xwv280, xwv330, ced) 37.19/18.89 new_lt23(xwv721, xwv731, ty_@0) -> new_lt14(xwv721, xwv731) 37.19/18.89 new_lt11(xwv18, xwv13, dgf) -> new_esEs26(new_compare9(xwv18, xwv13, dgf)) 37.19/18.89 new_esEs10(xwv400, xwv300, app(ty_Maybe, fah)) -> new_esEs12(xwv400, xwv300, fah) 37.19/18.89 new_ltEs5(xwv90, xwv93, ty_Double) -> new_ltEs11(xwv90, xwv93) 37.19/18.89 new_primCompAux00(xwv78, EQ) -> xwv78 37.19/18.89 new_esEs17(Right(xwv280), Right(xwv330), dfc, app(ty_[], dge)) -> new_esEs25(xwv280, xwv330, dge) 37.19/18.89 new_esEs27(xwv88, xwv91, ty_Bool) -> new_esEs13(xwv88, xwv91) 37.19/18.89 new_lt21(xwv125, xwv127, ty_Bool) -> new_lt9(xwv125, xwv127) 37.19/18.89 new_esEs39(xwv280, xwv330, ty_Float) -> new_esEs20(xwv280, xwv330) 37.19/18.89 new_lt21(xwv125, xwv127, ty_Ordering) -> new_lt16(xwv125, xwv127) 37.19/18.89 new_esEs12(Just(xwv280), Just(xwv330), ty_Bool) -> new_esEs13(xwv280, xwv330) 37.19/18.89 new_compare31(xwv400, xwv300, app(ty_[], fdh)) -> new_compare1(xwv400, xwv300, fdh) 37.19/18.89 new_primMulNat0(Succ(xwv30000), Succ(xwv40100)) -> new_primPlusNat0(new_primMulNat0(xwv30000, Succ(xwv40100)), Succ(xwv40100)) 37.19/18.89 new_esEs11(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 37.19/18.89 new_ltEs5(xwv90, xwv93, app(app(ty_Either, hb), hc)) -> new_ltEs16(xwv90, xwv93, hb, hc) 37.19/18.89 new_compare17(Right(xwv400), Left(xwv300), faf, fag) -> GT 37.19/18.89 new_ltEs24(xwv72, xwv73, app(ty_[], dhc)) -> new_ltEs13(xwv72, xwv73, dhc) 37.19/18.89 new_lt5(xwv88, xwv91, ty_Integer) -> new_lt19(xwv88, xwv91) 37.19/18.89 new_esEs4(xwv400, xwv300, ty_Float) -> new_esEs20(xwv400, xwv300) 37.19/18.89 new_esEs17(Left(xwv280), Left(xwv330), ty_Float, ddh) -> new_esEs20(xwv280, xwv330) 37.19/18.89 new_esEs33(xwv125, xwv127, app(app(ty_Either, cbc), cbd)) -> new_esEs17(xwv125, xwv127, cbc, cbd) 37.19/18.89 new_compare1(:(xwv400, xwv401), :(xwv300, xwv301), fdd) -> new_primCompAux0(xwv400, xwv300, new_compare1(xwv401, xwv301, fdd), fdd) 37.19/18.89 new_gt(xwv40, xwv30, app(app(ty_@2, efe), eff)) -> new_esEs41(new_compare16(xwv40, xwv30, efe, eff)) 37.19/18.89 new_gt(xwv40, xwv30, app(ty_[], fdd)) -> new_esEs41(new_compare1(xwv40, xwv30, fdd)) 37.19/18.89 new_esEs17(Left(xwv280), Left(xwv330), app(ty_Maybe, dea), ddh) -> new_esEs12(xwv280, xwv330, dea) 37.19/18.89 new_esEs17(Left(xwv280), Left(xwv330), app(ty_[], dfb), ddh) -> new_esEs25(xwv280, xwv330, dfb) 37.19/18.89 new_ltEs5(xwv90, xwv93, ty_Float) -> new_ltEs12(xwv90, xwv93) 37.19/18.89 new_esEs35(xwv721, xwv731, ty_Integer) -> new_esEs24(xwv721, xwv731) 37.19/18.89 new_lt5(xwv88, xwv91, ty_Ordering) -> new_lt16(xwv88, xwv91) 37.19/18.89 new_compare18(Double(xwv400, Pos(xwv4010)), Double(xwv300, Pos(xwv3010))) -> new_compare14(new_sr(xwv400, Pos(xwv3010)), new_sr(Pos(xwv4010), xwv300)) 37.19/18.89 new_esEs38(xwv280, xwv330, app(app(app(ty_@3, fhc), fhd), fhe)) -> new_esEs23(xwv280, xwv330, fhc, fhd, fhe) 37.19/18.89 new_compare29(False, True) -> LT 37.19/18.89 new_esEs40(xwv281, xwv331, app(app(ty_Either, gbd), gbe)) -> new_esEs17(xwv281, xwv331, gbd, gbe) 37.19/18.89 new_esEs34(xwv720, xwv730, app(app(ty_Either, dba), dbb)) -> new_esEs17(xwv720, xwv730, dba, dbb) 37.19/18.89 new_esEs25(:(xwv280, xwv281), [], fgd) -> False 37.19/18.89 new_esEs25([], :(xwv330, xwv331), fgd) -> False 37.19/18.89 new_ltEs5(xwv90, xwv93, ty_Integer) -> new_ltEs17(xwv90, xwv93) 37.19/18.89 new_lt24(xwv18, xwv13, app(app(ty_@2, chc), chd)) -> new_lt10(xwv18, xwv13, chc, chd) 37.19/18.89 new_esEs10(xwv400, xwv300, ty_Int) -> new_esEs16(xwv400, xwv300) 37.19/18.89 new_esEs34(xwv720, xwv730, app(ty_Maybe, dad)) -> new_esEs12(xwv720, xwv730, dad) 37.19/18.89 new_lt20(xwv720, xwv730, ty_Char) -> new_lt8(xwv720, xwv730) 37.19/18.89 new_esEs34(xwv720, xwv730, ty_Integer) -> new_esEs24(xwv720, xwv730) 37.19/18.89 new_compare24(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, True, dc, dd, de) -> EQ 37.19/18.89 new_esEs13(False, True) -> False 37.19/18.89 new_esEs13(True, False) -> False 37.19/18.89 new_esEs17(Left(xwv280), Left(xwv330), ty_Ordering, ddh) -> new_esEs14(xwv280, xwv330) 37.19/18.89 new_esEs17(Left(xwv280), Right(xwv330), dfc, ddh) -> False 37.19/18.89 new_esEs17(Right(xwv280), Left(xwv330), dfc, ddh) -> False 37.19/18.89 new_ltEs24(xwv72, xwv73, app(app(ty_@2, bba), bbb)) -> new_ltEs9(xwv72, xwv73, bba, bbb) 37.19/18.89 new_compare9(Nothing, Just(xwv300), bgg) -> LT 37.19/18.89 new_lt22(xwv720, xwv730, ty_@0) -> new_lt14(xwv720, xwv730) 37.19/18.89 new_esEs35(xwv721, xwv731, ty_Ordering) -> new_esEs14(xwv721, xwv731) 37.19/18.89 new_esEs34(xwv720, xwv730, ty_@0) -> new_esEs22(xwv720, xwv730) 37.19/18.89 new_esEs4(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 37.19/18.89 new_esEs28(xwv89, xwv92, app(ty_[], fc)) -> new_esEs25(xwv89, xwv92, fc) 37.19/18.89 new_lt20(xwv720, xwv730, ty_Bool) -> new_lt9(xwv720, xwv730) 37.19/18.89 new_lt20(xwv720, xwv730, ty_Int) -> new_lt7(xwv720, xwv730) 37.19/18.89 new_fsEs(xwv205) -> new_not(new_esEs14(xwv205, GT)) 37.19/18.89 new_ltEs16(Left(xwv720), Left(xwv730), app(app(app(ty_@3, bed), bee), bef), bdg) -> new_ltEs15(xwv720, xwv730, bed, bee, bef) 37.19/18.89 new_esEs41(GT) -> True 37.19/18.89 new_esEs28(xwv89, xwv92, app(ty_Maybe, fb)) -> new_esEs12(xwv89, xwv92, fb) 37.19/18.89 new_compare14(xwv40, xwv30) -> new_primCmpInt(xwv40, xwv30) 37.19/18.89 new_lt24(xwv18, xwv13, app(app(ty_Either, che), chf)) -> new_lt18(xwv18, xwv13, che, chf) 37.19/18.89 new_lt5(xwv88, xwv91, ty_Char) -> new_lt8(xwv88, xwv91) 37.19/18.89 new_esEs29(xwv720, xwv730, ty_Ordering) -> new_esEs14(xwv720, xwv730) 37.19/18.89 new_compare18(Double(xwv400, Pos(xwv4010)), Double(xwv300, Neg(xwv3010))) -> new_compare14(new_sr(xwv400, Pos(xwv3010)), new_sr(Neg(xwv4010), xwv300)) 37.19/18.89 new_compare18(Double(xwv400, Neg(xwv4010)), Double(xwv300, Pos(xwv3010))) -> new_compare14(new_sr(xwv400, Neg(xwv3010)), new_sr(Pos(xwv4010), xwv300)) 37.19/18.89 new_lt22(xwv720, xwv730, ty_Char) -> new_lt8(xwv720, xwv730) 37.19/18.89 new_esEs27(xwv88, xwv91, app(ty_Ratio, eg)) -> new_esEs21(xwv88, xwv91, eg) 37.19/18.89 new_compare9(Just(xwv400), Nothing, bgg) -> GT 37.19/18.89 new_compare31(xwv400, xwv300, app(app(ty_Either, fed), fee)) -> new_compare17(xwv400, xwv300, fed, fee) 37.19/18.89 new_lt5(xwv88, xwv91, ty_Float) -> new_lt13(xwv88, xwv91) 37.19/18.89 new_esEs25([], [], fgd) -> True 37.19/18.89 new_ltEs20(xwv721, xwv731, app(ty_[], bch)) -> new_ltEs13(xwv721, xwv731, bch) 37.19/18.89 new_esEs31(xwv281, xwv331, ty_Bool) -> new_esEs13(xwv281, xwv331) 37.19/18.89 new_ltEs24(xwv72, xwv73, ty_Double) -> new_ltEs11(xwv72, xwv73) 37.19/18.89 new_esEs34(xwv720, xwv730, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs23(xwv720, xwv730, daf, dag, dah) 37.19/18.89 new_compare28(GT, EQ) -> GT 37.19/18.89 new_compare1([], :(xwv300, xwv301), fdd) -> LT 37.19/18.89 new_esEs17(Left(xwv280), Left(xwv330), ty_Integer, ddh) -> new_esEs24(xwv280, xwv330) 37.19/18.89 new_esEs40(xwv281, xwv331, ty_Float) -> new_esEs20(xwv281, xwv331) 37.19/18.89 new_lt20(xwv720, xwv730, ty_Float) -> new_lt13(xwv720, xwv730) 37.19/18.89 new_esEs28(xwv89, xwv92, ty_Int) -> new_esEs16(xwv89, xwv92) 37.19/18.89 new_esEs4(xwv400, xwv300, ty_Integer) -> new_esEs24(xwv400, xwv300) 37.19/18.89 new_compare31(xwv400, xwv300, app(app(app(ty_@3, fea), feb), fec)) -> new_compare30(xwv400, xwv300, fea, feb, fec) 37.19/18.89 new_esEs11(xwv400, xwv300, app(app(app(ty_@3, fch), fda), fdb)) -> new_esEs23(xwv400, xwv300, fch, fda, fdb) 37.19/18.89 new_lt22(xwv720, xwv730, app(app(ty_Either, dba), dbb)) -> new_lt18(xwv720, xwv730, dba, dbb) 37.19/18.89 new_esEs9(xwv402, xwv302, ty_Double) -> new_esEs15(xwv402, xwv302) 37.19/18.89 new_esEs12(Just(xwv280), Just(xwv330), app(ty_Ratio, cd)) -> new_esEs21(xwv280, xwv330, cd) 37.19/18.89 new_primPlusNat0(Succ(xwv16200), Succ(xwv13700)) -> Succ(Succ(new_primPlusNat0(xwv16200, xwv13700))) 37.19/18.89 new_lt21(xwv125, xwv127, app(app(app(ty_@3, cah), cba), cbb)) -> new_lt17(xwv125, xwv127, cah, cba, cbb) 37.19/18.89 new_ltEs10(Just(xwv720), Nothing, ede) -> False 37.19/18.89 new_ltEs10(Nothing, Nothing, ede) -> True 37.19/18.89 new_esEs10(xwv400, xwv300, ty_Ordering) -> new_esEs14(xwv400, xwv300) 37.19/18.89 new_esEs38(xwv280, xwv330, ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.89 new_esEs29(xwv720, xwv730, app(ty_Ratio, bcd)) -> new_esEs21(xwv720, xwv730, bcd) 37.19/18.89 new_lt24(xwv18, xwv13, ty_Char) -> new_lt8(xwv18, xwv13) 37.19/18.89 new_lt5(xwv88, xwv91, app(app(ty_Either, ee), ef)) -> new_lt18(xwv88, xwv91, ee, ef) 37.19/18.89 new_compare11(xwv157, xwv158, True, cha, chb) -> LT 37.19/18.89 new_ltEs15(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), chg, chh, daa) -> new_pePe(new_lt22(xwv720, xwv730, chg), new_asAs(new_esEs34(xwv720, xwv730, chg), new_pePe(new_lt23(xwv721, xwv731, chh), new_asAs(new_esEs35(xwv721, xwv731, chh), new_ltEs22(xwv722, xwv732, daa))))) 37.19/18.89 new_esEs35(xwv721, xwv731, app(app(ty_Either, dcc), dcd)) -> new_esEs17(xwv721, xwv731, dcc, dcd) 37.19/18.89 new_lt23(xwv721, xwv731, ty_Integer) -> new_lt19(xwv721, xwv731) 37.19/18.89 new_lt20(xwv720, xwv730, app(app(ty_Either, bcb), bcc)) -> new_lt18(xwv720, xwv730, bcb, bcc) 37.19/18.89 new_esEs33(xwv125, xwv127, ty_Bool) -> new_esEs13(xwv125, xwv127) 37.19/18.89 new_esEs35(xwv721, xwv731, ty_Char) -> new_esEs18(xwv721, xwv731) 37.19/18.89 new_lt24(xwv18, xwv13, ty_Bool) -> new_lt9(xwv18, xwv13) 37.19/18.89 new_ltEs22(xwv722, xwv732, ty_Double) -> new_ltEs11(xwv722, xwv732) 37.19/18.89 new_ltEs17(xwv72, xwv73) -> new_fsEs(new_compare15(xwv72, xwv73)) 37.19/18.89 new_lt6(xwv89, xwv92, app(app(app(ty_@3, fd), ff), fg)) -> new_lt17(xwv89, xwv92, fd, ff, fg) 37.19/18.89 new_esEs14(LT, LT) -> True 37.19/18.89 new_esEs32(xwv282, xwv332, ty_Int) -> new_esEs16(xwv282, xwv332) 37.19/18.89 new_esEs10(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 37.19/18.89 new_esEs23(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), cch, cda, cdb) -> new_asAs(new_esEs30(xwv280, xwv330, cch), new_asAs(new_esEs31(xwv281, xwv331, cda), new_esEs32(xwv282, xwv332, cdb))) 37.19/18.89 new_lt22(xwv720, xwv730, ty_Float) -> new_lt13(xwv720, xwv730) 37.19/18.89 new_compare31(xwv400, xwv300, ty_Ordering) -> new_compare28(xwv400, xwv300) 37.19/18.89 new_lt5(xwv88, xwv91, ty_@0) -> new_lt14(xwv88, xwv91) 37.19/18.89 new_esEs17(Left(xwv280), Left(xwv330), ty_Char, ddh) -> new_esEs18(xwv280, xwv330) 37.19/18.89 new_esEs31(xwv281, xwv331, ty_Int) -> new_esEs16(xwv281, xwv331) 37.19/18.89 new_esEs12(Just(xwv280), Just(xwv330), app(app(ty_@2, cb), cc)) -> new_esEs19(xwv280, xwv330, cb, cc) 37.19/18.89 new_ltEs16(Left(xwv720), Left(xwv730), ty_Char, bdg) -> new_ltEs7(xwv720, xwv730) 37.19/18.89 new_esEs28(xwv89, xwv92, app(app(ty_@2, eh), fa)) -> new_esEs19(xwv89, xwv92, eh, fa) 37.19/18.89 new_lt19(xwv18, xwv13) -> new_esEs26(new_compare15(xwv18, xwv13)) 37.19/18.89 new_esEs32(xwv282, xwv332, app(ty_Maybe, cfg)) -> new_esEs12(xwv282, xwv332, cfg) 37.19/18.89 new_esEs36(xwv280, xwv330, ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.89 new_lt21(xwv125, xwv127, ty_Integer) -> new_lt19(xwv125, xwv127) 37.19/18.89 new_gt(xwv40, xwv30, app(ty_Ratio, fgc)) -> new_esEs41(new_compare8(xwv40, xwv30, fgc)) 37.19/18.89 new_esEs31(xwv281, xwv331, ty_Ordering) -> new_esEs14(xwv281, xwv331) 37.19/18.89 new_lt20(xwv720, xwv730, ty_@0) -> new_lt14(xwv720, xwv730) 37.19/18.89 new_primCmpNat0(Succ(xwv4000), Succ(xwv3000)) -> new_primCmpNat0(xwv4000, xwv3000) 37.19/18.89 new_lt6(xwv89, xwv92, ty_Integer) -> new_lt19(xwv89, xwv92) 37.19/18.89 new_esEs30(xwv280, xwv330, ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.89 new_esEs31(xwv281, xwv331, app(ty_Maybe, cee)) -> new_esEs12(xwv281, xwv331, cee) 37.19/18.89 new_lt22(xwv720, xwv730, ty_Bool) -> new_lt9(xwv720, xwv730) 37.19/18.89 new_ltEs23(xwv106, xwv107, app(ty_[], ffd)) -> new_ltEs13(xwv106, xwv107, ffd) 37.19/18.89 new_esEs38(xwv280, xwv330, ty_Float) -> new_esEs20(xwv280, xwv330) 37.19/18.89 new_esEs33(xwv125, xwv127, ty_Ordering) -> new_esEs14(xwv125, xwv127) 37.19/18.89 new_compare31(xwv400, xwv300, app(ty_Maybe, fdg)) -> new_compare9(xwv400, xwv300, fdg) 37.19/18.89 new_esEs27(xwv88, xwv91, app(app(ty_@2, df), dg)) -> new_esEs19(xwv88, xwv91, df, dg) 37.19/18.89 new_lt21(xwv125, xwv127, app(app(ty_Either, cbc), cbd)) -> new_lt18(xwv125, xwv127, cbc, cbd) 37.19/18.89 new_esEs32(xwv282, xwv332, ty_Bool) -> new_esEs13(xwv282, xwv332) 37.19/18.89 new_lt23(xwv721, xwv731, ty_Bool) -> new_lt9(xwv721, xwv731) 37.19/18.89 new_ltEs16(Right(xwv720), Right(xwv730), bfb, app(ty_[], bff)) -> new_ltEs13(xwv720, xwv730, bff) 37.19/18.89 new_lt5(xwv88, xwv91, app(app(app(ty_@3, eb), ec), ed)) -> new_lt17(xwv88, xwv91, eb, ec, ed) 37.19/18.89 new_compare110(xwv148, xwv149, True, eeh) -> LT 37.19/18.89 new_ltEs16(Left(xwv720), Left(xwv730), ty_Ordering, bdg) -> new_ltEs14(xwv720, xwv730) 37.19/18.89 new_ltEs22(xwv722, xwv732, app(ty_[], dda)) -> new_ltEs13(xwv722, xwv732, dda) 37.19/18.89 new_ltEs14(LT, LT) -> True 37.19/18.89 new_lt20(xwv720, xwv730, app(app(app(ty_@3, bbg), bbh), bca)) -> new_lt17(xwv720, xwv730, bbg, bbh, bca) 37.19/18.89 new_gt(xwv40, xwv30, ty_Ordering) -> new_esEs41(new_compare28(xwv40, xwv30)) 37.19/18.89 new_compare27(xwv125, xwv126, xwv127, xwv128, False, cab, cac) -> new_compare12(xwv125, xwv126, xwv127, xwv128, new_lt21(xwv125, xwv127, cab), new_asAs(new_esEs33(xwv125, xwv127, cab), new_ltEs21(xwv126, xwv128, cac)), cab, cac) 37.19/18.89 new_ltEs16(Left(xwv720), Left(xwv730), ty_Bool, bdg) -> new_ltEs8(xwv720, xwv730) 37.19/18.89 new_esEs37(xwv281, xwv331, ty_Integer) -> new_esEs24(xwv281, xwv331) 37.19/18.89 new_esEs28(xwv89, xwv92, app(ty_Ratio, gb)) -> new_esEs21(xwv89, xwv92, gb) 37.19/18.89 new_esEs32(xwv282, xwv332, ty_Ordering) -> new_esEs14(xwv282, xwv332) 37.19/18.89 new_lt6(xwv89, xwv92, app(app(ty_Either, fh), ga)) -> new_lt18(xwv89, xwv92, fh, ga) 37.19/18.89 new_compare210(xwv106, xwv107, False, feg, feh) -> new_compare112(xwv106, xwv107, new_ltEs23(xwv106, xwv107, feh), feg, feh) 37.19/18.89 new_lt22(xwv720, xwv730, ty_Integer) -> new_lt19(xwv720, xwv730) 37.19/18.89 new_esEs14(GT, GT) -> True 37.19/18.89 new_primCmpInt(Neg(Succ(xwv4000)), Pos(xwv300)) -> LT 37.19/18.89 new_lt21(xwv125, xwv127, app(ty_[], cag)) -> new_lt15(xwv125, xwv127, cag) 37.19/18.89 new_esEs34(xwv720, xwv730, ty_Char) -> new_esEs18(xwv720, xwv730) 37.19/18.89 new_esEs5(xwv401, xwv301, ty_Integer) -> new_esEs24(xwv401, xwv301) 37.19/18.89 new_esEs30(xwv280, xwv330, ty_Bool) -> new_esEs13(xwv280, xwv330) 37.19/18.89 new_compare31(xwv400, xwv300, ty_Double) -> new_compare18(xwv400, xwv300) 37.19/18.89 new_esEs39(xwv280, xwv330, app(app(ty_@2, gad), gae)) -> new_esEs19(xwv280, xwv330, gad, gae) 37.19/18.89 new_ltEs16(Left(xwv720), Left(xwv730), ty_@0, bdg) -> new_ltEs4(xwv720, xwv730) 37.19/18.89 new_compare31(xwv400, xwv300, app(ty_Ratio, fef)) -> new_compare8(xwv400, xwv300, fef) 37.19/18.89 new_lt23(xwv721, xwv731, ty_Char) -> new_lt8(xwv721, xwv731) 37.19/18.89 new_esEs37(xwv281, xwv331, ty_Int) -> new_esEs16(xwv281, xwv331) 37.19/18.89 new_primCmpInt(Pos(Zero), Neg(Succ(xwv3000))) -> GT 37.19/18.89 new_lt18(xwv18, xwv13, che, chf) -> new_esEs26(new_compare17(xwv18, xwv13, che, chf)) 37.19/18.89 new_esEs32(xwv282, xwv332, app(ty_Ratio, cgd)) -> new_esEs21(xwv282, xwv332, cgd) 37.19/18.89 new_compare17(Left(xwv400), Left(xwv300), faf, fag) -> new_compare25(xwv400, xwv300, new_esEs10(xwv400, xwv300, faf), faf, fag) 37.19/18.89 new_compare29(True, True) -> EQ 37.19/18.89 new_gt(xwv40, xwv30, app(ty_Maybe, bgg)) -> new_esEs41(new_compare9(xwv40, xwv30, bgg)) 37.19/18.89 new_ltEs9(@2(xwv720, xwv721), @2(xwv730, xwv731), bba, bbb) -> new_pePe(new_lt20(xwv720, xwv730, bba), new_asAs(new_esEs29(xwv720, xwv730, bba), new_ltEs20(xwv721, xwv731, bbb))) 37.19/18.89 new_primCmpInt(Neg(Succ(xwv4000)), Neg(xwv300)) -> new_primCmpNat0(xwv300, Succ(xwv4000)) 37.19/18.89 new_esEs14(EQ, EQ) -> True 37.19/18.89 new_lt6(xwv89, xwv92, ty_Float) -> new_lt13(xwv89, xwv92) 37.19/18.89 new_esEs12(Just(xwv280), Just(xwv330), ty_Double) -> new_esEs15(xwv280, xwv330) 37.19/18.89 new_lt24(xwv18, xwv13, ty_Integer) -> new_lt19(xwv18, xwv13) 37.19/18.89 new_esEs9(xwv402, xwv302, app(ty_Ratio, ech)) -> new_esEs21(xwv402, xwv302, ech) 37.19/18.89 new_esEs5(xwv401, xwv301, app(ty_[], fab)) -> new_esEs25(xwv401, xwv301, fab) 37.19/18.89 new_esEs34(xwv720, xwv730, ty_Ordering) -> new_esEs14(xwv720, xwv730) 37.19/18.89 new_esEs27(xwv88, xwv91, app(ty_Maybe, dh)) -> new_esEs12(xwv88, xwv91, dh) 37.19/18.89 new_ltEs4(xwv72, xwv73) -> new_fsEs(new_compare7(xwv72, xwv73)) 37.19/18.89 new_esEs41(EQ) -> False 37.19/18.89 new_esEs8(xwv401, xwv301, app(app(app(ty_@3, ebg), ebh), eca)) -> new_esEs23(xwv401, xwv301, ebg, ebh, eca) 37.19/18.89 new_esEs8(xwv401, xwv301, ty_@0) -> new_esEs22(xwv401, xwv301) 37.19/18.89 new_esEs33(xwv125, xwv127, ty_Float) -> new_esEs20(xwv125, xwv127) 37.19/18.89 new_compare28(EQ, GT) -> LT 37.19/18.89 new_primEqInt(Pos(Succ(xwv2800)), Pos(Zero)) -> False 37.19/18.89 new_primEqInt(Pos(Zero), Pos(Succ(xwv3300))) -> False 37.19/18.89 new_lt12(xwv18, xwv13) -> new_esEs26(new_compare18(xwv18, xwv13)) 37.19/18.89 new_esEs26(LT) -> True 37.19/18.89 new_compare210(xwv106, xwv107, True, feg, feh) -> EQ 37.19/18.89 new_lt23(xwv721, xwv731, app(ty_Ratio, dce)) -> new_lt4(xwv721, xwv731, dce) 37.19/18.89 new_ltEs16(Left(xwv720), Left(xwv730), ty_Integer, bdg) -> new_ltEs17(xwv720, xwv730) 37.19/18.89 new_lt23(xwv721, xwv731, app(app(ty_@2, dbd), dbe)) -> new_lt10(xwv721, xwv731, dbd, dbe) 37.19/18.89 new_esEs29(xwv720, xwv730, app(app(ty_@2, bbc), bbd)) -> new_esEs19(xwv720, xwv730, bbc, bbd) 37.19/18.89 new_compare1(:(xwv400, xwv401), [], fdd) -> GT 37.19/18.89 new_esEs29(xwv720, xwv730, ty_@0) -> new_esEs22(xwv720, xwv730) 37.19/18.89 new_lt24(xwv18, xwv13, ty_Double) -> new_lt12(xwv18, xwv13) 37.19/18.89 new_gt(xwv40, xwv30, ty_Float) -> new_esEs41(new_compare19(xwv40, xwv30)) 37.19/18.89 new_ltEs16(Left(xwv720), Left(xwv730), app(app(ty_Either, beg), beh), bdg) -> new_ltEs16(xwv720, xwv730, beg, beh) 37.19/18.89 new_ltEs21(xwv126, xwv128, app(ty_[], cca)) -> new_ltEs13(xwv126, xwv128, cca) 37.19/18.89 new_esEs12(Just(xwv280), Just(xwv330), ty_Float) -> new_esEs20(xwv280, xwv330) 37.19/18.89 new_lt5(xwv88, xwv91, app(ty_Ratio, eg)) -> new_lt4(xwv88, xwv91, eg) 37.19/18.89 new_lt5(xwv88, xwv91, app(app(ty_@2, df), dg)) -> new_lt10(xwv88, xwv91, df, dg) 37.19/18.89 new_ltEs20(xwv721, xwv731, ty_Ordering) -> new_ltEs14(xwv721, xwv731) 37.19/18.89 new_esEs39(xwv280, xwv330, ty_Char) -> new_esEs18(xwv280, xwv330) 37.19/18.89 new_primCmpNat0(Zero, Zero) -> EQ 37.19/18.89 new_esEs10(xwv400, xwv300, app(app(ty_Either, fba), fbb)) -> new_esEs17(xwv400, xwv300, fba, fbb) 37.19/18.89 new_esEs17(Right(xwv280), Right(xwv330), dfc, ty_Ordering) -> new_esEs14(xwv280, xwv330) 37.19/18.89 new_esEs8(xwv401, xwv301, app(app(ty_@2, ebd), ebe)) -> new_esEs19(xwv401, xwv301, ebd, ebe) 37.19/18.89 new_lt6(xwv89, xwv92, ty_Int) -> new_lt7(xwv89, xwv92) 37.19/18.89 new_esEs28(xwv89, xwv92, ty_Bool) -> new_esEs13(xwv89, xwv92) 37.19/18.89 new_ltEs10(Just(xwv720), Just(xwv730), ty_@0) -> new_ltEs4(xwv720, xwv730) 37.19/18.89 new_lt20(xwv720, xwv730, ty_Ordering) -> new_lt16(xwv720, xwv730) 37.19/18.89 new_ltEs16(Left(xwv720), Right(xwv730), bfb, bdg) -> True 37.19/18.89 new_esEs6(xwv400, xwv300, ty_Ordering) -> new_esEs14(xwv400, xwv300) 37.19/18.89 new_esEs33(xwv125, xwv127, app(ty_[], cag)) -> new_esEs25(xwv125, xwv127, cag) 37.19/18.89 new_esEs11(xwv400, xwv300, ty_Integer) -> new_esEs24(xwv400, xwv300) 37.19/18.89 new_esEs39(xwv280, xwv330, app(app(app(ty_@3, gag), gah), gba)) -> new_esEs23(xwv280, xwv330, gag, gah, gba) 37.19/18.89 new_lt5(xwv88, xwv91, ty_Bool) -> new_lt9(xwv88, xwv91) 37.19/18.89 new_ltEs20(xwv721, xwv731, ty_Double) -> new_ltEs11(xwv721, xwv731) 37.19/18.89 new_ltEs19(xwv99, xwv100, ty_Int) -> new_ltEs6(xwv99, xwv100) 37.19/18.89 new_esEs12(Just(xwv280), Just(xwv330), app(ty_[], da)) -> new_esEs25(xwv280, xwv330, da) 37.19/18.89 new_lt21(xwv125, xwv127, ty_@0) -> new_lt14(xwv125, xwv127) 37.19/18.89 new_ltEs23(xwv106, xwv107, app(app(ty_@2, ffa), ffb)) -> new_ltEs9(xwv106, xwv107, ffa, ffb) 37.19/18.89 new_esEs35(xwv721, xwv731, ty_Bool) -> new_esEs13(xwv721, xwv731) 37.19/18.89 new_ltEs19(xwv99, xwv100, ty_@0) -> new_ltEs4(xwv99, xwv100) 37.19/18.89 new_primCompAux00(xwv78, GT) -> GT 37.19/18.89 new_lt24(xwv18, xwv13, ty_Float) -> new_lt13(xwv18, xwv13) 37.19/18.89 new_ltEs21(xwv126, xwv128, ty_Int) -> new_ltEs6(xwv126, xwv128) 37.19/18.89 new_ltEs10(Just(xwv720), Just(xwv730), ty_Int) -> new_ltEs6(xwv720, xwv730) 37.19/18.89 new_compare28(LT, GT) -> LT 37.19/18.89 new_compare12(xwv177, xwv178, xwv179, xwv180, True, xwv182, bge, bgf) -> new_compare13(xwv177, xwv178, xwv179, xwv180, True, bge, bgf) 37.19/18.89 new_esEs4(xwv400, xwv300, app(app(ty_Either, efh), ega)) -> new_esEs17(xwv400, xwv300, efh, ega) 37.19/18.89 new_esEs27(xwv88, xwv91, ty_Int) -> new_esEs16(xwv88, xwv91) 37.19/18.89 new_ltEs24(xwv72, xwv73, ty_@0) -> new_ltEs4(xwv72, xwv73) 37.19/18.89 new_ltEs14(EQ, LT) -> False 37.19/18.89 new_ltEs10(Just(xwv720), Just(xwv730), app(ty_[], eea)) -> new_ltEs13(xwv720, xwv730, eea) 37.19/18.89 new_esEs40(xwv281, xwv331, ty_Bool) -> new_esEs13(xwv281, xwv331) 37.19/18.89 new_esEs33(xwv125, xwv127, ty_Double) -> new_esEs15(xwv125, xwv127) 37.19/18.89 new_esEs39(xwv280, xwv330, ty_@0) -> new_esEs22(xwv280, xwv330) 37.19/18.89 new_ltEs24(xwv72, xwv73, ty_Integer) -> new_ltEs17(xwv72, xwv73) 37.19/18.89 new_compare25(xwv99, xwv100, False, he, hf) -> new_compare11(xwv99, xwv100, new_ltEs19(xwv99, xwv100, he), he, hf) 37.19/18.89 new_esEs15(Double(xwv280, xwv281), Double(xwv330, xwv331)) -> new_esEs16(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) 37.19/18.89 new_esEs31(xwv281, xwv331, app(app(ty_@2, ceh), cfa)) -> new_esEs19(xwv281, xwv331, ceh, cfa) 37.19/18.89 new_esEs38(xwv280, xwv330, ty_Double) -> new_esEs15(xwv280, xwv330) 37.19/18.89 new_lt5(xwv88, xwv91, app(ty_[], ea)) -> new_lt15(xwv88, xwv91, ea) 37.19/18.89 new_ltEs20(xwv721, xwv731, ty_Bool) -> new_ltEs8(xwv721, xwv731) 37.19/18.89 new_esEs11(xwv400, xwv300, app(ty_[], fdc)) -> new_esEs25(xwv400, xwv300, fdc) 37.19/18.89 new_esEs9(xwv402, xwv302, app(app(ty_Either, ecd), ece)) -> new_esEs17(xwv402, xwv302, ecd, ece) 37.19/18.89 new_ltEs5(xwv90, xwv93, app(ty_Ratio, hd)) -> new_ltEs18(xwv90, xwv93, hd) 37.19/18.89 new_esEs17(Right(xwv280), Right(xwv330), dfc, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs23(xwv280, xwv330, dgb, dgc, dgd) 37.19/18.89 new_esEs11(xwv400, xwv300, ty_@0) -> new_esEs22(xwv400, xwv300) 37.19/18.89 new_ltEs19(xwv99, xwv100, app(ty_[], bab)) -> new_ltEs13(xwv99, xwv100, bab) 37.19/18.89 new_esEs5(xwv401, xwv301, ty_Float) -> new_esEs20(xwv401, xwv301) 37.19/18.89 new_esEs9(xwv402, xwv302, ty_Int) -> new_esEs16(xwv402, xwv302) 37.19/18.89 new_esEs10(xwv400, xwv300, app(ty_Ratio, fbe)) -> new_esEs21(xwv400, xwv300, fbe) 37.19/18.89 new_primCmpNat0(Succ(xwv4000), Zero) -> GT 37.19/18.89 new_ltEs22(xwv722, xwv732, app(app(ty_Either, dde), ddf)) -> new_ltEs16(xwv722, xwv732, dde, ddf) 37.19/18.89 new_esEs31(xwv281, xwv331, ty_Integer) -> new_esEs24(xwv281, xwv331) 37.19/18.89 new_lt22(xwv720, xwv730, app(ty_Maybe, dad)) -> new_lt11(xwv720, xwv730, dad) 37.19/18.89 new_pePe(False, xwv210) -> xwv210 37.19/18.89 new_ltEs10(Just(xwv720), Just(xwv730), app(ty_Maybe, edh)) -> new_ltEs10(xwv720, xwv730, edh) 37.19/18.89 new_esEs17(Left(xwv280), Left(xwv330), ty_Bool, ddh) -> new_esEs13(xwv280, xwv330) 37.19/18.89 new_esEs11(xwv400, xwv300, ty_Float) -> new_esEs20(xwv400, xwv300) 37.19/18.89 new_esEs8(xwv401, xwv301, ty_Char) -> new_esEs18(xwv401, xwv301) 37.19/18.89 new_compare25(xwv99, xwv100, True, he, hf) -> EQ 37.19/18.89 new_ltEs16(Left(xwv720), Left(xwv730), app(ty_Maybe, beb), bdg) -> new_ltEs10(xwv720, xwv730, beb) 37.19/18.89 new_lt23(xwv721, xwv731, app(app(app(ty_@3, dbh), dca), dcb)) -> new_lt17(xwv721, xwv731, dbh, dca, dcb) 37.19/18.89 new_compare112(xwv164, xwv165, True, fac, fad) -> LT 37.19/18.89 new_esEs38(xwv280, xwv330, ty_Bool) -> new_esEs13(xwv280, xwv330) 37.19/18.89 new_lt24(xwv18, xwv13, ty_@0) -> new_lt14(xwv18, xwv13) 37.19/18.89 new_compare16(@2(xwv400, xwv401), @2(xwv300, xwv301), efe, eff) -> new_compare27(xwv400, xwv401, xwv300, xwv301, new_asAs(new_esEs4(xwv400, xwv300, efe), new_esEs5(xwv401, xwv301, eff)), efe, eff) 37.19/18.89 new_esEs5(xwv401, xwv301, ty_@0) -> new_esEs22(xwv401, xwv301) 37.19/18.89 new_esEs4(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 37.19/18.89 new_esEs6(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 37.19/18.89 new_esEs30(xwv280, xwv330, app(app(ty_Either, cdd), cde)) -> new_esEs17(xwv280, xwv330, cdd, cde) 37.19/18.89 new_ltEs19(xwv99, xwv100, ty_Integer) -> new_ltEs17(xwv99, xwv100) 37.19/18.89 new_compare31(xwv400, xwv300, ty_Float) -> new_compare19(xwv400, xwv300) 37.19/18.89 new_ltEs24(xwv72, xwv73, ty_Int) -> new_ltEs6(xwv72, xwv73) 37.19/18.89 new_lt21(xwv125, xwv127, ty_Double) -> new_lt12(xwv125, xwv127) 37.19/18.89 new_esEs35(xwv721, xwv731, app(ty_Ratio, dce)) -> new_esEs21(xwv721, xwv731, dce) 37.19/18.89 new_compare11(xwv157, xwv158, False, cha, chb) -> GT 37.19/18.89 new_primEqInt(Pos(Zero), Neg(Succ(xwv3300))) -> False 37.19/18.89 new_primEqInt(Neg(Zero), Pos(Succ(xwv3300))) -> False 37.19/18.89 new_gt(xwv40, xwv30, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_esEs41(new_compare30(xwv40, xwv30, dhd, dhe, dhf)) 37.19/18.89 new_ltEs23(xwv106, xwv107, ty_Float) -> new_ltEs12(xwv106, xwv107) 37.19/18.89 new_ltEs5(xwv90, xwv93, ty_Char) -> new_ltEs7(xwv90, xwv93) 37.19/18.89 new_esEs34(xwv720, xwv730, ty_Int) -> new_esEs16(xwv720, xwv730) 37.19/18.89 new_esEs7(xwv400, xwv300, ty_Float) -> new_esEs20(xwv400, xwv300) 37.19/18.89 new_ltEs20(xwv721, xwv731, app(app(ty_Either, bdd), bde)) -> new_ltEs16(xwv721, xwv731, bdd, bde) 37.19/18.89 new_esEs5(xwv401, xwv301, ty_Double) -> new_esEs15(xwv401, xwv301) 37.19/18.89 new_ltEs14(GT, EQ) -> False 37.19/18.89 new_esEs29(xwv720, xwv730, ty_Char) -> new_esEs18(xwv720, xwv730) 37.19/18.89 new_lt6(xwv89, xwv92, ty_Double) -> new_lt12(xwv89, xwv92) 37.19/18.89 new_esEs39(xwv280, xwv330, ty_Ordering) -> new_esEs14(xwv280, xwv330) 37.19/18.89 new_ltEs5(xwv90, xwv93, ty_Bool) -> new_ltEs8(xwv90, xwv93) 37.19/18.89 new_esEs17(Left(xwv280), Left(xwv330), ty_Int, ddh) -> new_esEs16(xwv280, xwv330) 37.19/18.89 new_esEs27(xwv88, xwv91, ty_Ordering) -> new_esEs14(xwv88, xwv91) 37.19/18.89 new_esEs5(xwv401, xwv301, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs23(xwv401, xwv301, ehg, ehh, faa) 37.19/18.89 new_ltEs21(xwv126, xwv128, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_ltEs15(xwv126, xwv128, ccb, ccc, ccd) 37.19/18.89 new_esEs28(xwv89, xwv92, ty_Double) -> new_esEs15(xwv89, xwv92) 37.19/18.89 new_compare18(Double(xwv400, Neg(xwv4010)), Double(xwv300, Neg(xwv3010))) -> new_compare14(new_sr(xwv400, Neg(xwv3010)), new_sr(Neg(xwv4010), xwv300)) 37.19/18.89 new_lt24(xwv18, xwv13, app(ty_[], dgg)) -> new_lt15(xwv18, xwv13, dgg) 37.19/18.89 new_lt24(xwv18, xwv13, ty_Int) -> new_lt7(xwv18, xwv13) 37.19/18.89 new_esEs40(xwv281, xwv331, ty_Double) -> new_esEs15(xwv281, xwv331) 37.19/18.89 new_esEs33(xwv125, xwv127, ty_Integer) -> new_esEs24(xwv125, xwv127) 37.19/18.89 new_esEs32(xwv282, xwv332, app(app(ty_Either, cfh), cga)) -> new_esEs17(xwv282, xwv332, cfh, cga) 37.19/18.89 new_esEs7(xwv400, xwv300, ty_Double) -> new_esEs15(xwv400, xwv300) 37.19/18.89 new_ltEs16(Right(xwv720), Right(xwv730), bfb, app(app(app(ty_@3, bfg), bfh), bga)) -> new_ltEs15(xwv720, xwv730, bfg, bfh, bga) 37.19/18.89 new_esEs16(xwv28, xwv33) -> new_primEqInt(xwv28, xwv33) 37.19/18.89 new_esEs11(xwv400, xwv300, app(app(ty_@2, fce), fcf)) -> new_esEs19(xwv400, xwv300, fce, fcf) 37.19/18.89 new_esEs7(xwv400, xwv300, app(app(ty_Either, dhh), eaa)) -> new_esEs17(xwv400, xwv300, dhh, eaa) 37.19/18.89 new_esEs20(Float(xwv280, xwv281), Float(xwv330, xwv331)) -> new_esEs16(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) 37.19/18.89 new_esEs8(xwv401, xwv301, app(ty_[], ecb)) -> new_esEs25(xwv401, xwv301, ecb) 37.19/18.89 new_esEs6(xwv400, xwv300, app(app(ty_Either, bha), bhb)) -> new_esEs17(xwv400, xwv300, bha, bhb) 37.19/18.89 new_ltEs20(xwv721, xwv731, ty_Float) -> new_ltEs12(xwv721, xwv731) 37.19/18.89 new_esEs31(xwv281, xwv331, ty_Float) -> new_esEs20(xwv281, xwv331) 37.19/18.89 new_esEs8(xwv401, xwv301, ty_Integer) -> new_esEs24(xwv401, xwv301) 37.19/18.89 new_lt22(xwv720, xwv730, ty_Int) -> new_lt7(xwv720, xwv730) 37.19/18.89 new_esEs29(xwv720, xwv730, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs23(xwv720, xwv730, bbg, bbh, bca) 37.19/18.89 new_esEs17(Right(xwv280), Right(xwv330), dfc, ty_Char) -> new_esEs18(xwv280, xwv330) 37.19/18.89 new_ltEs21(xwv126, xwv128, ty_Integer) -> new_ltEs17(xwv126, xwv128) 37.19/18.89 new_lt21(xwv125, xwv127, app(app(ty_@2, cad), cae)) -> new_lt10(xwv125, xwv127, cad, cae) 37.19/18.89 new_lt20(xwv720, xwv730, app(ty_Maybe, bbe)) -> new_lt11(xwv720, xwv730, bbe) 37.19/18.89 new_esEs7(xwv400, xwv300, ty_Integer) -> new_esEs24(xwv400, xwv300) 37.19/18.89 new_esEs31(xwv281, xwv331, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_esEs23(xwv281, xwv331, cfc, cfd, cfe) 37.19/18.89 new_lt23(xwv721, xwv731, app(ty_[], dbg)) -> new_lt15(xwv721, xwv731, dbg) 37.19/18.89 new_lt23(xwv721, xwv731, ty_Ordering) -> new_lt16(xwv721, xwv731) 37.19/18.89 new_ltEs6(xwv72, xwv73) -> new_fsEs(new_compare14(xwv72, xwv73)) 37.19/18.89 new_ltEs16(Left(xwv720), Left(xwv730), ty_Int, bdg) -> new_ltEs6(xwv720, xwv730) 37.19/18.89 new_esEs31(xwv281, xwv331, ty_@0) -> new_esEs22(xwv281, xwv331) 37.19/18.89 new_compare111(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, True, efa, efb, efc) -> LT 37.19/18.89 new_primMulInt(Neg(xwv3000), Neg(xwv4010)) -> Pos(new_primMulNat0(xwv3000, xwv4010)) 37.19/18.89 new_primCmpInt(Pos(Zero), Pos(Succ(xwv3000))) -> new_primCmpNat0(Zero, Succ(xwv3000)) 37.19/18.89 new_ltEs22(xwv722, xwv732, ty_Integer) -> new_ltEs17(xwv722, xwv732) 37.19/18.89 new_esEs31(xwv281, xwv331, app(ty_[], cff)) -> new_esEs25(xwv281, xwv331, cff) 37.19/18.89 new_ltEs16(Left(xwv720), Left(xwv730), app(ty_[], bec), bdg) -> new_ltEs13(xwv720, xwv730, bec) 37.19/18.89 new_compare19(Float(xwv400, Neg(xwv4010)), Float(xwv300, Neg(xwv3010))) -> new_compare14(new_sr(xwv400, Neg(xwv3010)), new_sr(Neg(xwv4010), xwv300)) 37.19/18.89 new_ltEs19(xwv99, xwv100, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs15(xwv99, xwv100, bac, bad, bae) 37.19/18.89 new_esEs31(xwv281, xwv331, ty_Char) -> new_esEs18(xwv281, xwv331) 37.19/18.89 new_esEs19(@2(xwv280, xwv281), @2(xwv330, xwv331), fhg, fhh) -> new_asAs(new_esEs39(xwv280, xwv330, fhg), new_esEs40(xwv281, xwv331, fhh)) 37.19/18.89 new_ltEs16(Right(xwv720), Right(xwv730), bfb, ty_Ordering) -> new_ltEs14(xwv720, xwv730) 37.19/18.89 new_esEs34(xwv720, xwv730, app(ty_Ratio, dbc)) -> new_esEs21(xwv720, xwv730, dbc) 37.19/18.89 new_esEs30(xwv280, xwv330, ty_Double) -> new_esEs15(xwv280, xwv330) 37.19/18.89 new_esEs34(xwv720, xwv730, app(app(ty_@2, dab), dac)) -> new_esEs19(xwv720, xwv730, dab, dac) 37.19/18.89 new_esEs7(xwv400, xwv300, app(ty_[], eah)) -> new_esEs25(xwv400, xwv300, eah) 37.19/18.89 new_ltEs21(xwv126, xwv128, app(app(ty_@2, cbf), cbg)) -> new_ltEs9(xwv126, xwv128, cbf, cbg) 37.19/18.89 new_ltEs14(GT, LT) -> False 37.19/18.89 new_gt0(xwv40, xwv30) -> new_esEs41(new_compare14(xwv40, xwv30)) 37.19/18.89 new_ltEs12(xwv72, xwv73) -> new_fsEs(new_compare19(xwv72, xwv73)) 37.19/18.89 new_gt(xwv40, xwv30, ty_Double) -> new_esEs41(new_compare18(xwv40, xwv30)) 37.19/18.89 new_lt6(xwv89, xwv92, app(ty_Maybe, fb)) -> new_lt11(xwv89, xwv92, fb) 37.19/18.89 new_primMulInt(Pos(xwv3000), Neg(xwv4010)) -> Neg(new_primMulNat0(xwv3000, xwv4010)) 37.19/18.89 new_primMulInt(Neg(xwv3000), Pos(xwv4010)) -> Neg(new_primMulNat0(xwv3000, xwv4010)) 37.19/18.89 new_ltEs23(xwv106, xwv107, ty_Int) -> new_ltEs6(xwv106, xwv107) 37.19/18.89 new_esEs40(xwv281, xwv331, app(ty_Ratio, gbh)) -> new_esEs21(xwv281, xwv331, gbh) 37.19/18.89 new_ltEs13(xwv72, xwv73, dhc) -> new_fsEs(new_compare1(xwv72, xwv73, dhc)) 37.19/18.89 new_esEs8(xwv401, xwv301, ty_Int) -> new_esEs16(xwv401, xwv301) 37.19/18.89 new_esEs39(xwv280, xwv330, app(ty_[], gbb)) -> new_esEs25(xwv280, xwv330, gbb) 37.19/18.89 new_ltEs22(xwv722, xwv732, ty_@0) -> new_ltEs4(xwv722, xwv732) 37.19/18.89 new_esEs8(xwv401, xwv301, ty_Float) -> new_esEs20(xwv401, xwv301) 37.19/18.89 new_esEs27(xwv88, xwv91, ty_@0) -> new_esEs22(xwv88, xwv91) 37.19/18.89 new_ltEs18(xwv72, xwv73, fae) -> new_fsEs(new_compare8(xwv72, xwv73, fae)) 37.19/18.89 new_esEs30(xwv280, xwv330, ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.89 new_sr0(Integer(xwv3000), Integer(xwv4010)) -> Integer(new_primMulInt(xwv3000, xwv4010)) 37.19/18.89 new_esEs35(xwv721, xwv731, ty_Double) -> new_esEs15(xwv721, xwv731) 37.19/18.89 new_ltEs24(xwv72, xwv73, app(ty_Maybe, ede)) -> new_ltEs10(xwv72, xwv73, ede) 37.19/18.89 new_ltEs23(xwv106, xwv107, app(app(ty_Either, ffh), fga)) -> new_ltEs16(xwv106, xwv107, ffh, fga) 37.19/18.89 new_ltEs24(xwv72, xwv73, app(app(app(ty_@3, chg), chh), daa)) -> new_ltEs15(xwv72, xwv73, chg, chh, daa) 37.19/18.89 new_lt9(xwv18, xwv13) -> new_esEs26(new_compare29(xwv18, xwv13)) 37.19/18.89 new_compare31(xwv400, xwv300, app(app(ty_@2, fde), fdf)) -> new_compare16(xwv400, xwv300, fde, fdf) 37.19/18.89 new_ltEs24(xwv72, xwv73, ty_Char) -> new_ltEs7(xwv72, xwv73) 37.19/18.89 new_lt6(xwv89, xwv92, app(ty_[], fc)) -> new_lt15(xwv89, xwv92, fc) 37.19/18.89 new_lt22(xwv720, xwv730, ty_Double) -> new_lt12(xwv720, xwv730) 37.19/18.89 new_esEs8(xwv401, xwv301, app(ty_Maybe, eba)) -> new_esEs12(xwv401, xwv301, eba) 37.19/18.89 new_asAs(True, xwv135) -> xwv135 37.19/18.89 new_ltEs16(Right(xwv720), Right(xwv730), bfb, ty_@0) -> new_ltEs4(xwv720, xwv730) 37.19/18.89 new_esEs22(@0, @0) -> True 37.19/18.89 new_lt20(xwv720, xwv730, app(ty_Ratio, bcd)) -> new_lt4(xwv720, xwv730, bcd) 37.19/18.89 new_esEs5(xwv401, xwv301, app(app(ty_@2, ehd), ehe)) -> new_esEs19(xwv401, xwv301, ehd, ehe) 37.19/18.89 new_lt20(xwv720, xwv730, app(app(ty_@2, bbc), bbd)) -> new_lt10(xwv720, xwv730, bbc, bbd) 37.19/18.89 new_esEs31(xwv281, xwv331, ty_Double) -> new_esEs15(xwv281, xwv331) 37.19/18.89 new_lt15(xwv18, xwv13, dgg) -> new_esEs26(new_compare1(xwv18, xwv13, dgg)) 37.19/18.89 new_ltEs20(xwv721, xwv731, app(app(ty_@2, bce), bcf)) -> new_ltEs9(xwv721, xwv731, bce, bcf) 37.19/18.89 new_ltEs22(xwv722, xwv732, ty_Ordering) -> new_ltEs14(xwv722, xwv732) 37.19/18.89 new_esEs4(xwv400, xwv300, ty_Double) -> new_esEs15(xwv400, xwv300) 37.19/18.89 new_ltEs22(xwv722, xwv732, ty_Float) -> new_ltEs12(xwv722, xwv732) 37.19/18.89 new_compare26(xwv72, xwv73, False, gcf) -> new_compare110(xwv72, xwv73, new_ltEs24(xwv72, xwv73, gcf), gcf) 37.19/18.89 new_ltEs19(xwv99, xwv100, app(app(ty_@2, hg), hh)) -> new_ltEs9(xwv99, xwv100, hg, hh) 37.19/18.89 new_esEs9(xwv402, xwv302, ty_Ordering) -> new_esEs14(xwv402, xwv302) 37.19/18.89 new_ltEs5(xwv90, xwv93, ty_Int) -> new_ltEs6(xwv90, xwv93) 37.19/18.89 new_sr(xwv300, xwv401) -> new_primMulInt(xwv300, xwv401) 37.19/18.89 new_esEs38(xwv280, xwv330, app(ty_Ratio, fhb)) -> new_esEs21(xwv280, xwv330, fhb) 37.19/18.89 new_esEs29(xwv720, xwv730, ty_Integer) -> new_esEs24(xwv720, xwv730) 37.19/18.89 new_lt8(xwv18, xwv13) -> new_esEs26(new_compare6(xwv18, xwv13)) 37.19/18.89 new_primMulNat0(Zero, Zero) -> Zero 37.19/18.89 new_esEs4(xwv400, xwv300, ty_Int) -> new_esEs16(xwv400, xwv300) 37.19/18.89 new_esEs39(xwv280, xwv330, ty_Double) -> new_esEs15(xwv280, xwv330) 37.19/18.89 new_compare28(EQ, LT) -> GT 37.19/18.89 new_gt(xwv40, xwv30, ty_Integer) -> new_esEs41(new_compare15(xwv40, xwv30)) 37.19/18.89 new_esEs10(xwv400, xwv300, app(ty_[], fca)) -> new_esEs25(xwv400, xwv300, fca) 37.19/18.89 new_gt(xwv40, xwv30, ty_Char) -> new_esEs41(new_compare6(xwv40, xwv30)) 37.19/18.89 new_esEs27(xwv88, xwv91, app(app(ty_Either, ee), ef)) -> new_esEs17(xwv88, xwv91, ee, ef) 37.19/18.89 new_esEs35(xwv721, xwv731, app(ty_[], dbg)) -> new_esEs25(xwv721, xwv731, dbg) 37.19/18.89 new_esEs4(xwv400, xwv300, ty_Ordering) -> new_esEs14(xwv400, xwv300) 37.19/18.89 new_compare10(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, True, xwv199, efa, efb, efc) -> new_compare111(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, True, efa, efb, efc) 37.19/18.89 new_ltEs21(xwv126, xwv128, ty_Ordering) -> new_ltEs14(xwv126, xwv128) 37.19/18.89 new_esEs4(xwv400, xwv300, app(ty_Maybe, efg)) -> new_esEs12(xwv400, xwv300, efg) 37.19/18.89 new_esEs28(xwv89, xwv92, ty_Integer) -> new_esEs24(xwv89, xwv92) 37.19/18.89 new_esEs6(xwv400, xwv300, app(app(ty_@2, bhc), bhd)) -> new_esEs19(xwv400, xwv300, bhc, bhd) 37.19/18.89 new_esEs40(xwv281, xwv331, ty_Int) -> new_esEs16(xwv281, xwv331) 37.19/18.89 new_esEs28(xwv89, xwv92, app(app(ty_Either, fh), ga)) -> new_esEs17(xwv89, xwv92, fh, ga) 37.19/18.89 new_lt21(xwv125, xwv127, app(ty_Ratio, cbe)) -> new_lt4(xwv125, xwv127, cbe) 37.19/18.89 new_esEs30(xwv280, xwv330, ty_Float) -> new_esEs20(xwv280, xwv330) 37.19/18.89 new_compare28(EQ, EQ) -> EQ 37.19/18.89 new_compare111(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, False, efa, efb, efc) -> GT 37.19/18.89 new_esEs39(xwv280, xwv330, app(ty_Maybe, gaa)) -> new_esEs12(xwv280, xwv330, gaa) 37.19/18.89 new_ltEs23(xwv106, xwv107, app(ty_Maybe, ffc)) -> new_ltEs10(xwv106, xwv107, ffc) 37.19/18.89 new_esEs5(xwv401, xwv301, ty_Bool) -> new_esEs13(xwv401, xwv301) 37.19/18.89 new_esEs28(xwv89, xwv92, ty_@0) -> new_esEs22(xwv89, xwv92) 37.19/18.89 new_ltEs24(xwv72, xwv73, app(ty_Ratio, fae)) -> new_ltEs18(xwv72, xwv73, fae) 37.19/18.89 new_compare27(xwv125, xwv126, xwv127, xwv128, True, cab, cac) -> EQ 37.19/18.89 new_ltEs20(xwv721, xwv731, ty_Char) -> new_ltEs7(xwv721, xwv731) 37.19/18.89 new_primEqInt(Neg(Succ(xwv2800)), Neg(Zero)) -> False 37.19/18.89 new_primEqInt(Neg(Zero), Neg(Succ(xwv3300))) -> False 37.19/18.89 new_esEs12(Just(xwv280), Just(xwv330), app(app(app(ty_@3, ce), cf), cg)) -> new_esEs23(xwv280, xwv330, ce, cf, cg) 37.19/18.89 new_esEs12(Just(xwv280), Just(xwv330), ty_@0) -> new_esEs22(xwv280, xwv330) 37.19/18.89 new_esEs17(Right(xwv280), Right(xwv330), dfc, app(ty_Maybe, dfd)) -> new_esEs12(xwv280, xwv330, dfd) 37.19/18.89 new_esEs21(:%(xwv280, xwv281), :%(xwv330, xwv331), efd) -> new_asAs(new_esEs36(xwv280, xwv330, efd), new_esEs37(xwv281, xwv331, efd)) 37.19/18.89 new_primEqInt(Pos(Succ(xwv2800)), Pos(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) 37.19/18.89 new_esEs29(xwv720, xwv730, ty_Float) -> new_esEs20(xwv720, xwv730) 37.19/18.89 new_esEs39(xwv280, xwv330, ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.89 new_esEs27(xwv88, xwv91, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs23(xwv88, xwv91, eb, ec, ed) 37.19/18.89 new_esEs12(Just(xwv280), Just(xwv330), app(app(ty_Either, bh), ca)) -> new_esEs17(xwv280, xwv330, bh, ca) 37.19/18.89 new_esEs40(xwv281, xwv331, app(ty_Maybe, gbc)) -> new_esEs12(xwv281, xwv331, gbc) 37.19/18.89 new_esEs4(xwv400, xwv300, app(ty_[], egh)) -> new_esEs25(xwv400, xwv300, egh) 37.19/18.89 new_ltEs5(xwv90, xwv93, ty_@0) -> new_ltEs4(xwv90, xwv93) 37.19/18.89 new_primEqInt(Pos(Succ(xwv2800)), Neg(xwv330)) -> False 37.19/18.89 new_primEqInt(Neg(Succ(xwv2800)), Pos(xwv330)) -> False 37.19/18.89 new_lt23(xwv721, xwv731, app(ty_Maybe, dbf)) -> new_lt11(xwv721, xwv731, dbf) 37.19/18.89 new_lt5(xwv88, xwv91, ty_Double) -> new_lt12(xwv88, xwv91) 37.19/18.89 new_gt(xwv40, xwv30, ty_Int) -> new_gt0(xwv40, xwv30) 37.19/18.89 new_esEs9(xwv402, xwv302, ty_Char) -> new_esEs18(xwv402, xwv302) 37.19/18.89 new_esEs10(xwv400, xwv300, ty_Double) -> new_esEs15(xwv400, xwv300) 37.19/18.89 new_primCmpInt(Neg(Zero), Neg(Succ(xwv3000))) -> new_primCmpNat0(Succ(xwv3000), Zero) 37.19/18.89 new_esEs12(Just(xwv280), Just(xwv330), ty_Char) -> new_esEs18(xwv280, xwv330) 37.19/18.89 new_esEs7(xwv400, xwv300, app(ty_Ratio, ead)) -> new_esEs21(xwv400, xwv300, ead) 37.19/18.89 new_esEs5(xwv401, xwv301, ty_Ordering) -> new_esEs14(xwv401, xwv301) 37.19/18.89 new_esEs34(xwv720, xwv730, app(ty_[], dae)) -> new_esEs25(xwv720, xwv730, dae) 37.19/18.89 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 37.19/18.89 new_lt16(xwv18, xwv13) -> new_esEs26(new_compare28(xwv18, xwv13)) 37.19/18.89 new_esEs40(xwv281, xwv331, app(ty_[], gce)) -> new_esEs25(xwv281, xwv331, gce) 37.19/18.89 new_esEs27(xwv88, xwv91, ty_Char) -> new_esEs18(xwv88, xwv91) 37.19/18.89 new_ltEs16(Right(xwv720), Right(xwv730), bfb, ty_Int) -> new_ltEs6(xwv720, xwv730) 37.19/18.89 new_esEs34(xwv720, xwv730, ty_Double) -> new_esEs15(xwv720, xwv730) 37.19/18.89 new_lt13(xwv18, xwv13) -> new_esEs26(new_compare19(xwv18, xwv13)) 37.19/18.89 new_ltEs19(xwv99, xwv100, app(ty_Ratio, bah)) -> new_ltEs18(xwv99, xwv100, bah) 37.19/18.89 new_ltEs16(Right(xwv720), Right(xwv730), bfb, app(ty_Ratio, bgd)) -> new_ltEs18(xwv720, xwv730, bgd) 37.19/18.89 new_ltEs16(Right(xwv720), Right(xwv730), bfb, app(ty_Maybe, bfe)) -> new_ltEs10(xwv720, xwv730, bfe) 37.19/18.89 new_ltEs19(xwv99, xwv100, app(ty_Maybe, baa)) -> new_ltEs10(xwv99, xwv100, baa) 37.19/18.89 new_esEs11(xwv400, xwv300, ty_Double) -> new_esEs15(xwv400, xwv300) 37.19/18.89 new_lt10(xwv18, xwv13, chc, chd) -> new_esEs26(new_compare16(xwv18, xwv13, chc, chd)) 37.19/18.89 new_ltEs10(Just(xwv720), Just(xwv730), ty_Integer) -> new_ltEs17(xwv720, xwv730) 37.19/18.89 new_compare112(xwv164, xwv165, False, fac, fad) -> GT 37.19/18.89 new_esEs6(xwv400, xwv300, app(ty_Ratio, bhe)) -> new_esEs21(xwv400, xwv300, bhe) 37.19/18.89 new_compare13(xwv177, xwv178, xwv179, xwv180, True, bge, bgf) -> LT 37.19/18.89 new_ltEs7(xwv72, xwv73) -> new_fsEs(new_compare6(xwv72, xwv73)) 37.19/18.89 new_ltEs10(Just(xwv720), Just(xwv730), ty_Ordering) -> new_ltEs14(xwv720, xwv730) 37.19/18.89 new_ltEs22(xwv722, xwv732, ty_Bool) -> new_ltEs8(xwv722, xwv732) 37.19/18.89 new_not(False) -> True 37.19/18.89 new_compare31(xwv400, xwv300, ty_Int) -> new_compare14(xwv400, xwv300) 37.19/18.89 new_esEs9(xwv402, xwv302, app(ty_Maybe, ecc)) -> new_esEs12(xwv402, xwv302, ecc) 37.19/18.89 new_ltEs23(xwv106, xwv107, app(app(app(ty_@3, ffe), fff), ffg)) -> new_ltEs15(xwv106, xwv107, ffe, fff, ffg) 37.19/18.89 new_lt24(xwv18, xwv13, app(ty_Maybe, dgf)) -> new_lt11(xwv18, xwv13, dgf) 37.19/18.89 new_ltEs24(xwv72, xwv73, app(app(ty_Either, bfb), bdg)) -> new_ltEs16(xwv72, xwv73, bfb, bdg) 37.19/18.89 new_ltEs16(Left(xwv720), Left(xwv730), ty_Double, bdg) -> new_ltEs11(xwv720, xwv730) 37.19/18.89 new_compare19(Float(xwv400, Pos(xwv4010)), Float(xwv300, Neg(xwv3010))) -> new_compare14(new_sr(xwv400, Pos(xwv3010)), new_sr(Neg(xwv4010), xwv300)) 37.19/18.89 new_compare19(Float(xwv400, Neg(xwv4010)), Float(xwv300, Pos(xwv3010))) -> new_compare14(new_sr(xwv400, Neg(xwv3010)), new_sr(Pos(xwv4010), xwv300)) 37.19/18.89 new_esEs7(xwv400, xwv300, ty_Int) -> new_esEs16(xwv400, xwv300) 37.19/18.89 new_esEs28(xwv89, xwv92, ty_Float) -> new_esEs20(xwv89, xwv92) 37.19/18.89 new_ltEs21(xwv126, xwv128, ty_@0) -> new_ltEs4(xwv126, xwv128) 37.19/18.89 new_esEs41(LT) -> False 37.19/18.89 new_compare28(GT, GT) -> EQ 37.19/18.89 new_ltEs20(xwv721, xwv731, app(ty_Ratio, bdf)) -> new_ltEs18(xwv721, xwv731, bdf) 37.19/18.89 new_esEs26(EQ) -> False 37.19/18.89 new_esEs9(xwv402, xwv302, ty_Bool) -> new_esEs13(xwv402, xwv302) 37.19/18.89 new_ltEs5(xwv90, xwv93, app(ty_Maybe, ge)) -> new_ltEs10(xwv90, xwv93, ge) 37.19/18.89 new_ltEs10(Just(xwv720), Just(xwv730), ty_Float) -> new_ltEs12(xwv720, xwv730) 37.19/18.89 new_esEs12(Just(xwv280), Just(xwv330), ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.89 new_esEs17(Left(xwv280), Left(xwv330), app(app(ty_Either, deb), dec), ddh) -> new_esEs17(xwv280, xwv330, deb, dec) 37.19/18.89 new_ltEs23(xwv106, xwv107, app(ty_Ratio, fgb)) -> new_ltEs18(xwv106, xwv107, fgb) 37.19/18.89 new_esEs38(xwv280, xwv330, app(app(ty_@2, fgh), fha)) -> new_esEs19(xwv280, xwv330, fgh, fha) 37.19/18.89 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 37.19/18.89 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 37.19/18.89 new_esEs6(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 37.19/18.89 new_ltEs24(xwv72, xwv73, ty_Bool) -> new_ltEs8(xwv72, xwv73) 37.19/18.89 new_ltEs14(LT, EQ) -> True 37.19/18.89 new_esEs24(Integer(xwv280), Integer(xwv330)) -> new_primEqInt(xwv280, xwv330) 37.19/18.89 new_ltEs23(xwv106, xwv107, ty_@0) -> new_ltEs4(xwv106, xwv107) 37.19/18.89 new_ltEs11(xwv72, xwv73) -> new_fsEs(new_compare18(xwv72, xwv73)) 37.19/18.89 new_esEs27(xwv88, xwv91, ty_Integer) -> new_esEs24(xwv88, xwv91) 37.19/18.89 new_esEs5(xwv401, xwv301, ty_Int) -> new_esEs16(xwv401, xwv301) 37.19/18.89 new_esEs38(xwv280, xwv330, app(ty_[], fhf)) -> new_esEs25(xwv280, xwv330, fhf) 37.19/18.89 new_compare30(@3(xwv400, xwv401, xwv402), @3(xwv300, xwv301, xwv302), dhd, dhe, dhf) -> new_compare24(xwv400, xwv401, xwv402, xwv300, xwv301, xwv302, new_asAs(new_esEs7(xwv400, xwv300, dhd), new_asAs(new_esEs8(xwv401, xwv301, dhe), new_esEs9(xwv402, xwv302, dhf))), dhd, dhe, dhf) 37.19/18.89 new_esEs17(Right(xwv280), Right(xwv330), dfc, ty_Bool) -> new_esEs13(xwv280, xwv330) 37.19/18.89 new_esEs14(LT, EQ) -> False 37.19/18.89 new_esEs14(EQ, LT) -> False 37.19/18.89 new_esEs26(GT) -> False 37.19/18.89 new_ltEs22(xwv722, xwv732, ty_Char) -> new_ltEs7(xwv722, xwv732) 37.19/18.89 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 37.19/18.89 new_ltEs22(xwv722, xwv732, app(ty_Ratio, ddg)) -> new_ltEs18(xwv722, xwv732, ddg) 37.19/18.89 new_ltEs21(xwv126, xwv128, app(ty_Maybe, cbh)) -> new_ltEs10(xwv126, xwv128, cbh) 37.19/18.89 new_compare12(xwv177, xwv178, xwv179, xwv180, False, xwv182, bge, bgf) -> new_compare13(xwv177, xwv178, xwv179, xwv180, xwv182, bge, bgf) 37.19/18.89 new_compare28(GT, LT) -> GT 37.19/18.89 new_esEs25(:(xwv280, xwv281), :(xwv330, xwv331), fgd) -> new_asAs(new_esEs38(xwv280, xwv330, fgd), new_esEs25(xwv281, xwv331, fgd)) 37.19/18.89 new_esEs6(xwv400, xwv300, app(ty_Maybe, bgh)) -> new_esEs12(xwv400, xwv300, bgh) 37.19/18.89 new_esEs7(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 37.19/18.89 new_esEs17(Left(xwv280), Left(xwv330), ty_Double, ddh) -> new_esEs15(xwv280, xwv330) 37.19/18.89 new_esEs17(Right(xwv280), Right(xwv330), dfc, ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.89 new_ltEs10(Just(xwv720), Just(xwv730), app(app(app(ty_@3, eeb), eec), eed)) -> new_ltEs15(xwv720, xwv730, eeb, eec, eed) 37.19/18.89 new_ltEs10(Just(xwv720), Just(xwv730), app(app(ty_Either, eee), eef)) -> new_ltEs16(xwv720, xwv730, eee, eef) 37.19/18.89 new_ltEs20(xwv721, xwv731, app(ty_Maybe, bcg)) -> new_ltEs10(xwv721, xwv731, bcg) 37.19/18.89 new_esEs39(xwv280, xwv330, app(ty_Ratio, gaf)) -> new_esEs21(xwv280, xwv330, gaf) 37.19/18.89 new_ltEs23(xwv106, xwv107, ty_Char) -> new_ltEs7(xwv106, xwv107) 37.19/18.89 new_compare6(Char(xwv400), Char(xwv300)) -> new_primCmpNat0(xwv400, xwv300) 37.19/18.89 new_ltEs21(xwv126, xwv128, app(ty_Ratio, ccg)) -> new_ltEs18(xwv126, xwv128, ccg) 37.19/18.89 new_esEs17(Right(xwv280), Right(xwv330), dfc, app(app(ty_Either, dfe), dff)) -> new_esEs17(xwv280, xwv330, dfe, dff) 37.19/18.89 new_esEs8(xwv401, xwv301, ty_Bool) -> new_esEs13(xwv401, xwv301) 37.19/18.89 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 37.19/18.89 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 37.19/18.89 new_gt(xwv40, xwv30, ty_@0) -> new_esEs41(new_compare7(xwv40, xwv30)) 37.19/18.89 new_ltEs23(xwv106, xwv107, ty_Bool) -> new_ltEs8(xwv106, xwv107) 37.19/18.89 new_compare17(Right(xwv400), Right(xwv300), faf, fag) -> new_compare210(xwv400, xwv300, new_esEs11(xwv400, xwv300, fag), faf, fag) 37.19/18.89 new_primEqNat0(Zero, Zero) -> True 37.19/18.89 new_compare28(LT, EQ) -> LT 37.19/18.89 new_esEs6(xwv400, xwv300, ty_Int) -> new_esEs16(xwv400, xwv300) 37.19/18.89 new_esEs4(xwv400, xwv300, app(ty_Ratio, egd)) -> new_esEs21(xwv400, xwv300, egd) 37.19/18.89 new_compare9(Nothing, Nothing, bgg) -> EQ 37.19/18.89 new_asAs(False, xwv135) -> False 37.19/18.89 new_compare7(@0, @0) -> EQ 37.19/18.89 new_lt24(xwv18, xwv13, app(ty_Ratio, db)) -> new_lt4(xwv18, xwv13, db) 37.19/18.89 new_esEs8(xwv401, xwv301, ty_Ordering) -> new_esEs14(xwv401, xwv301) 37.19/18.89 new_esEs4(xwv400, xwv300, app(app(ty_@2, egb), egc)) -> new_esEs19(xwv400, xwv300, egb, egc) 37.19/18.89 new_esEs40(xwv281, xwv331, app(app(ty_@2, gbf), gbg)) -> new_esEs19(xwv281, xwv331, gbf, gbg) 37.19/18.89 new_esEs7(xwv400, xwv300, app(ty_Maybe, dhg)) -> new_esEs12(xwv400, xwv300, dhg) 37.19/18.89 new_ltEs23(xwv106, xwv107, ty_Ordering) -> new_ltEs14(xwv106, xwv107) 37.19/18.89 37.19/18.89 The set Q consists of the following terms: 37.19/18.89 37.19/18.89 new_ltEs23(x0, x1, ty_Integer) 37.19/18.89 new_esEs14(EQ, EQ) 37.19/18.89 new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 37.19/18.89 new_lt10(x0, x1, x2, x3) 37.19/18.89 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 37.19/18.89 new_esEs17(Left(x0), Left(x1), ty_Int, x2) 37.19/18.89 new_lt23(x0, x1, ty_Char) 37.19/18.89 new_esEs8(x0, x1, ty_Integer) 37.19/18.89 new_compare28(EQ, LT) 37.19/18.89 new_compare28(LT, EQ) 37.19/18.89 new_lt5(x0, x1, ty_Float) 37.19/18.89 new_compare110(x0, x1, False, x2) 37.19/18.89 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.89 new_lt21(x0, x1, ty_Bool) 37.19/18.89 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.89 new_esEs29(x0, x1, ty_Int) 37.19/18.89 new_esEs31(x0, x1, ty_Char) 37.19/18.89 new_ltEs5(x0, x1, ty_Double) 37.19/18.89 new_lt24(x0, x1, ty_Float) 37.19/18.89 new_esEs33(x0, x1, ty_Ordering) 37.19/18.89 new_lt19(x0, x1) 37.19/18.89 new_lt22(x0, x1, ty_Int) 37.19/18.89 new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 37.19/18.89 new_lt22(x0, x1, app(ty_Ratio, x2)) 37.19/18.89 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.89 new_compare17(Left(x0), Left(x1), x2, x3) 37.19/18.89 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_lt20(x0, x1, ty_Char) 37.19/18.89 new_compare31(x0, x1, app(ty_Ratio, x2)) 37.19/18.89 new_compare12(x0, x1, x2, x3, True, x4, x5, x6) 37.19/18.89 new_primMulInt(Neg(x0), Neg(x1)) 37.19/18.89 new_lt20(x0, x1, ty_Ordering) 37.19/18.89 new_primEqInt(Pos(Zero), Pos(Zero)) 37.19/18.89 new_primCmpNat0(Succ(x0), Succ(x1)) 37.19/18.89 new_esEs39(x0, x1, ty_Integer) 37.19/18.89 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 37.19/18.89 new_esEs32(x0, x1, app(ty_Maybe, x2)) 37.19/18.89 new_esEs38(x0, x1, app(ty_Maybe, x2)) 37.19/18.89 new_ltEs10(Nothing, Just(x0), x1) 37.19/18.89 new_primMulInt(Pos(x0), Pos(x1)) 37.19/18.89 new_compare31(x0, x1, ty_Bool) 37.19/18.89 new_esEs27(x0, x1, ty_Int) 37.19/18.89 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 37.19/18.89 new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.19/18.89 new_ltEs23(x0, x1, ty_@0) 37.19/18.89 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.89 new_esEs39(x0, x1, ty_Float) 37.19/18.89 new_primEqInt(Neg(Zero), Neg(Zero)) 37.19/18.89 new_ltEs22(x0, x1, ty_Bool) 37.19/18.89 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 37.19/18.89 new_lt5(x0, x1, app(ty_Maybe, x2)) 37.19/18.89 new_esEs27(x0, x1, ty_@0) 37.19/18.89 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_esEs7(x0, x1, app(ty_Maybe, x2)) 37.19/18.89 new_esEs25(:(x0, x1), :(x2, x3), x4) 37.19/18.89 new_lt24(x0, x1, ty_Integer) 37.19/18.89 new_esEs28(x0, x1, ty_Char) 37.19/18.89 new_compare112(x0, x1, False, x2, x3) 37.19/18.89 new_compare31(x0, x1, app(ty_Maybe, x2)) 37.19/18.89 new_lt23(x0, x1, ty_Double) 37.19/18.89 new_esEs32(x0, x1, ty_Bool) 37.19/18.89 new_compare17(Left(x0), Right(x1), x2, x3) 37.19/18.89 new_compare17(Right(x0), Left(x1), x2, x3) 37.19/18.89 new_esEs5(x0, x1, ty_Ordering) 37.19/18.89 new_esEs39(x0, x1, ty_Bool) 37.19/18.89 new_lt22(x0, x1, app(ty_Maybe, x2)) 37.19/18.89 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.89 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_ltEs21(x0, x1, ty_Int) 37.19/18.89 new_esEs17(Right(x0), Right(x1), x2, ty_Float) 37.19/18.89 new_primPlusNat0(Succ(x0), Zero) 37.19/18.89 new_esEs39(x0, x1, ty_@0) 37.19/18.89 new_ltEs23(x0, x1, ty_Float) 37.19/18.89 new_compare31(x0, x1, ty_@0) 37.19/18.89 new_esEs17(Left(x0), Left(x1), ty_Bool, x2) 37.19/18.89 new_lt7(x0, x1) 37.19/18.89 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_ltEs16(Right(x0), Right(x1), x2, ty_Char) 37.19/18.89 new_compare29(False, False) 37.19/18.89 new_primEqInt(Pos(Zero), Neg(Zero)) 37.19/18.89 new_primEqInt(Neg(Zero), Pos(Zero)) 37.19/18.89 new_esEs30(x0, x1, ty_Int) 37.19/18.89 new_compare31(x0, x1, ty_Float) 37.19/18.89 new_ltEs5(x0, x1, ty_Ordering) 37.19/18.89 new_lt24(x0, x1, ty_Bool) 37.19/18.89 new_esEs32(x0, x1, ty_Int) 37.19/18.89 new_esEs11(x0, x1, app(ty_Maybe, x2)) 37.19/18.89 new_compare26(x0, x1, True, x2) 37.19/18.89 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.89 new_esEs10(x0, x1, ty_Double) 37.19/18.89 new_esEs27(x0, x1, app(ty_[], x2)) 37.19/18.89 new_ltEs16(Right(x0), Right(x1), x2, ty_Double) 37.19/18.89 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.89 new_lt5(x0, x1, app(ty_[], x2)) 37.19/18.89 new_esEs7(x0, x1, ty_Char) 37.19/18.89 new_ltEs22(x0, x1, ty_Integer) 37.19/18.89 new_esEs32(x0, x1, ty_@0) 37.19/18.89 new_primCompAux00(x0, GT) 37.19/18.89 new_lt21(x0, x1, ty_Int) 37.19/18.89 new_esEs30(x0, x1, ty_@0) 37.19/18.89 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_compare28(EQ, EQ) 37.19/18.89 new_esEs29(x0, x1, ty_@0) 37.19/18.89 new_esEs21(:%(x0, x1), :%(x2, x3), x4) 37.19/18.89 new_lt21(x0, x1, ty_@0) 37.19/18.89 new_esEs12(Just(x0), Just(x1), ty_Integer) 37.19/18.89 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 37.19/18.89 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.89 new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 37.19/18.89 new_esEs31(x0, x1, ty_Ordering) 37.19/18.89 new_esEs7(x0, x1, ty_Ordering) 37.19/18.89 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.89 new_ltEs19(x0, x1, ty_Ordering) 37.19/18.89 new_compare31(x0, x1, ty_Int) 37.19/18.89 new_compare9(Just(x0), Nothing, x1) 37.19/18.89 new_esEs17(Left(x0), Left(x1), ty_Integer, x2) 37.19/18.89 new_esEs6(x0, x1, ty_Ordering) 37.19/18.89 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.89 new_lt21(x0, x1, ty_Float) 37.19/18.89 new_pePe(True, x0) 37.19/18.89 new_esEs29(x0, x1, ty_Integer) 37.19/18.89 new_esEs4(x0, x1, ty_Int) 37.19/18.89 new_esEs35(x0, x1, app(ty_Ratio, x2)) 37.19/18.89 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.89 new_esEs8(x0, x1, ty_Int) 37.19/18.89 new_esEs5(x0, x1, app(ty_Maybe, x2)) 37.19/18.89 new_esEs6(x0, x1, ty_Float) 37.19/18.89 new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) 37.19/18.89 new_esEs34(x0, x1, ty_Float) 37.19/18.89 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.89 new_lt5(x0, x1, ty_@0) 37.19/18.89 new_esEs34(x0, x1, ty_Double) 37.19/18.89 new_ltEs21(x0, x1, ty_@0) 37.19/18.89 new_ltEs24(x0, x1, ty_Ordering) 37.19/18.89 new_esEs12(Just(x0), Just(x1), ty_Bool) 37.19/18.89 new_ltEs24(x0, x1, ty_Double) 37.19/18.89 new_esEs14(LT, EQ) 37.19/18.89 new_esEs14(EQ, LT) 37.19/18.89 new_esEs27(x0, x1, app(ty_Maybe, x2)) 37.19/18.89 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 37.19/18.89 new_esEs31(x0, x1, app(ty_Ratio, x2)) 37.19/18.89 new_esEs29(x0, x1, app(ty_Ratio, x2)) 37.19/18.89 new_esEs27(x0, x1, ty_Integer) 37.19/18.89 new_esEs17(Right(x0), Right(x1), x2, ty_@0) 37.19/18.89 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 37.19/18.89 new_esEs12(Nothing, Just(x0), x1) 37.19/18.89 new_esEs6(x0, x1, ty_Char) 37.19/18.89 new_esEs27(x0, x1, ty_Float) 37.19/18.89 new_esEs29(x0, x1, ty_Bool) 37.19/18.89 new_lt24(x0, x1, ty_@0) 37.19/18.89 new_esEs9(x0, x1, app(ty_Maybe, x2)) 37.19/18.89 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.89 new_esEs10(x0, x1, ty_Float) 37.19/18.89 new_lt22(x0, x1, ty_Bool) 37.19/18.89 new_ltEs19(x0, x1, ty_Char) 37.19/18.89 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_ltEs10(Just(x0), Just(x1), ty_Int) 37.19/18.89 new_esEs38(x0, x1, ty_Int) 37.19/18.89 new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 37.19/18.89 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 37.19/18.89 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.89 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_gt(x0, x1, ty_@0) 37.19/18.89 new_esEs12(Just(x0), Just(x1), ty_Int) 37.19/18.89 new_compare11(x0, x1, False, x2, x3) 37.19/18.89 new_esEs10(x0, x1, app(ty_Maybe, x2)) 37.19/18.89 new_esEs30(x0, x1, app(ty_Maybe, x2)) 37.19/18.89 new_esEs13(False, True) 37.19/18.89 new_esEs13(True, False) 37.19/18.89 new_gt(x0, x1, ty_Double) 37.19/18.89 new_lt24(x0, x1, app(ty_[], x2)) 37.19/18.89 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 37.19/18.89 new_esEs40(x0, x1, app(ty_[], x2)) 37.19/18.89 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.89 new_ltEs22(x0, x1, ty_@0) 37.19/18.89 new_esEs17(Left(x0), Left(x1), ty_@0, x2) 37.19/18.89 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.89 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 37.19/18.89 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_esEs5(x0, x1, ty_Double) 37.19/18.89 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 37.19/18.89 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 37.19/18.89 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_esEs8(x0, x1, ty_Float) 37.19/18.89 new_esEs8(x0, x1, ty_Bool) 37.19/18.89 new_esEs38(x0, x1, ty_Bool) 37.19/18.89 new_ltEs8(True, False) 37.19/18.89 new_ltEs8(False, True) 37.19/18.89 new_esEs31(x0, x1, ty_Double) 37.19/18.89 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.89 new_ltEs16(Left(x0), Left(x1), ty_Float, x2) 37.19/18.89 new_lt14(x0, x1) 37.19/18.89 new_esEs14(LT, LT) 37.19/18.89 new_esEs38(x0, x1, ty_Integer) 37.19/18.89 new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) 37.19/18.89 new_lt20(x0, x1, ty_Double) 37.19/18.89 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 37.19/18.89 new_esEs32(x0, x1, ty_Integer) 37.19/18.89 new_esEs11(x0, x1, ty_Char) 37.19/18.89 new_ltEs6(x0, x1) 37.19/18.89 new_lt5(x0, x1, app(ty_Ratio, x2)) 37.19/18.89 new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 37.19/18.89 new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) 37.19/18.89 new_esEs27(x0, x1, ty_Bool) 37.19/18.89 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.89 new_lt4(x0, x1, x2) 37.19/18.89 new_primCmpNat0(Succ(x0), Zero) 37.19/18.89 new_compare31(x0, x1, ty_Integer) 37.19/18.89 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.89 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_esEs33(x0, x1, ty_Double) 37.19/18.89 new_asAs(False, x0) 37.19/18.89 new_esEs12(Just(x0), Just(x1), ty_Float) 37.19/18.89 new_esEs35(x0, x1, ty_@0) 37.19/18.89 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_lt22(x0, x1, ty_Float) 37.19/18.89 new_ltEs20(x0, x1, ty_Double) 37.19/18.89 new_primMulInt(Pos(x0), Neg(x1)) 37.19/18.89 new_primMulInt(Neg(x0), Pos(x1)) 37.19/18.89 new_ltEs16(Left(x0), Left(x1), ty_Char, x2) 37.19/18.89 new_lt6(x0, x1, ty_Int) 37.19/18.89 new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 37.19/18.89 new_compare15(Integer(x0), Integer(x1)) 37.19/18.89 new_esEs18(Char(x0), Char(x1)) 37.19/18.89 new_asAs(True, x0) 37.19/18.89 new_ltEs10(Just(x0), Just(x1), ty_Bool) 37.19/18.89 new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 37.19/18.89 new_esEs40(x0, x1, ty_@0) 37.19/18.89 new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 37.19/18.89 new_esEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 37.19/18.89 new_lt24(x0, x1, ty_Double) 37.19/18.89 new_lt23(x0, x1, app(ty_[], x2)) 37.19/18.89 new_esEs33(x0, x1, ty_Float) 37.19/18.89 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.89 new_compare25(x0, x1, False, x2, x3) 37.19/18.89 new_compare7(@0, @0) 37.19/18.89 new_esEs4(x0, x1, ty_Integer) 37.19/18.89 new_esEs5(x0, x1, app(ty_[], x2)) 37.19/18.89 new_esEs4(x0, x1, ty_Bool) 37.19/18.89 new_esEs5(x0, x1, ty_Integer) 37.19/18.89 new_primMulNat0(Succ(x0), Zero) 37.19/18.89 new_compare1(:(x0, x1), :(x2, x3), x4) 37.19/18.89 new_esEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 37.19/18.89 new_lt22(x0, x1, app(ty_[], x2)) 37.19/18.89 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.89 new_esEs10(x0, x1, ty_@0) 37.19/18.89 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.89 new_esEs6(x0, x1, ty_Integer) 37.19/18.89 new_esEs38(x0, x1, app(ty_[], x2)) 37.19/18.89 new_esEs6(x0, x1, ty_@0) 37.19/18.89 new_compare30(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.19/18.89 new_esEs12(Just(x0), Just(x1), ty_Double) 37.19/18.89 new_ltEs10(Nothing, Nothing, x0) 37.19/18.89 new_lt5(x0, x1, ty_Int) 37.19/18.89 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_primEqNat0(Succ(x0), Succ(x1)) 37.19/18.89 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_lt6(x0, x1, ty_Char) 37.19/18.89 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.89 new_esEs40(x0, x1, ty_Bool) 37.19/18.89 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.89 new_lt6(x0, x1, ty_Double) 37.19/18.89 new_lt24(x0, x1, ty_Int) 37.19/18.89 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.89 new_esEs4(x0, x1, app(ty_[], x2)) 37.19/18.89 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.89 new_primPlusNat0(Zero, Zero) 37.19/18.89 new_esEs10(x0, x1, ty_Integer) 37.19/18.89 new_lt5(x0, x1, ty_Char) 37.19/18.89 new_esEs30(x0, x1, app(ty_[], x2)) 37.19/18.89 new_not(True) 37.19/18.89 new_fsEs(x0) 37.19/18.89 new_esEs33(x0, x1, ty_Integer) 37.19/18.89 new_esEs40(x0, x1, ty_Char) 37.19/18.89 new_esEs40(x0, x1, ty_Int) 37.19/18.89 new_lt24(x0, x1, ty_Char) 37.19/18.89 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_compare210(x0, x1, True, x2, x3) 37.19/18.89 new_esEs37(x0, x1, ty_Integer) 37.19/18.89 new_compare210(x0, x1, False, x2, x3) 37.19/18.89 new_esEs39(x0, x1, ty_Int) 37.19/18.89 new_esEs8(x0, x1, ty_Ordering) 37.19/18.89 new_lt6(x0, x1, app(ty_Maybe, x2)) 37.19/18.89 new_esEs12(Nothing, Nothing, x0) 37.19/18.89 new_lt15(x0, x1, x2) 37.19/18.89 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) 37.19/18.89 new_esEs24(Integer(x0), Integer(x1)) 37.19/18.89 new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 37.19/18.89 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.89 new_esEs4(x0, x1, ty_@0) 37.19/18.89 new_esEs4(x0, x1, ty_Char) 37.19/18.89 new_compare28(GT, EQ) 37.19/18.89 new_compare28(EQ, GT) 37.19/18.89 new_lt24(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.89 new_esEs9(x0, x1, ty_Double) 37.19/18.89 new_lt20(x0, x1, app(ty_[], x2)) 37.19/18.89 new_ltEs16(Right(x0), Right(x1), x2, ty_@0) 37.19/18.89 new_lt16(x0, x1) 37.19/18.89 new_primCompAux00(x0, LT) 37.19/18.89 new_esEs12(Just(x0), Just(x1), ty_Ordering) 37.19/18.89 new_esEs10(x0, x1, ty_Char) 37.19/18.89 new_ltEs21(x0, x1, ty_Float) 37.19/18.89 new_esEs39(x0, x1, ty_Char) 37.19/18.89 new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 37.19/18.89 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.89 new_esEs7(x0, x1, app(ty_[], x2)) 37.19/18.89 new_esEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 37.19/18.89 new_gt(x0, x1, ty_Ordering) 37.19/18.89 new_esEs39(x0, x1, ty_Double) 37.19/18.89 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.89 new_esEs10(x0, x1, ty_Bool) 37.19/18.89 new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) 37.19/18.89 new_compare27(x0, x1, x2, x3, True, x4, x5) 37.19/18.89 new_esEs11(x0, x1, ty_Ordering) 37.19/18.89 new_lt21(x0, x1, app(ty_Maybe, x2)) 37.19/18.89 new_esEs7(x0, x1, ty_Double) 37.19/18.89 new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 37.19/18.89 new_esEs28(x0, x1, ty_Double) 37.19/18.89 new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 37.19/18.89 new_ltEs22(x0, x1, ty_Char) 37.19/18.89 new_compare9(Just(x0), Just(x1), x2) 37.19/18.89 new_lt5(x0, x1, ty_Bool) 37.19/18.89 new_ltEs10(Just(x0), Just(x1), ty_Double) 37.19/18.89 new_compare1([], :(x0, x1), x2) 37.19/18.89 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.89 new_esEs35(x0, x1, app(ty_[], x2)) 37.19/18.89 new_esEs5(x0, x1, ty_Char) 37.19/18.89 new_esEs7(x0, x1, ty_Float) 37.19/18.89 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 37.19/18.89 new_ltEs21(x0, x1, app(ty_[], x2)) 37.19/18.90 new_ltEs14(GT, GT) 37.19/18.90 new_esEs33(x0, x1, ty_Bool) 37.19/18.90 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 37.19/18.90 new_esEs11(x0, x1, ty_Double) 37.19/18.90 new_ltEs20(x0, x1, ty_Ordering) 37.19/18.90 new_esEs35(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_compare31(x0, x1, ty_Double) 37.19/18.90 new_ltEs23(x0, x1, ty_Ordering) 37.19/18.90 new_lt6(x0, x1, ty_Bool) 37.19/18.90 new_primEqNat0(Zero, Succ(x0)) 37.19/18.90 new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 37.19/18.90 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 37.19/18.90 new_ltEs5(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs38(x0, x1, ty_@0) 37.19/18.90 new_gt(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs15(Double(x0, x1), Double(x2, x3)) 37.19/18.90 new_ltEs21(x0, x1, ty_Bool) 37.19/18.90 new_esEs28(x0, x1, ty_Ordering) 37.19/18.90 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_compare25(x0, x1, True, x2, x3) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, ty_Char) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, ty_Int) 37.19/18.90 new_esEs14(LT, GT) 37.19/18.90 new_esEs14(GT, LT) 37.19/18.90 new_ltEs18(x0, x1, x2) 37.19/18.90 new_ltEs16(Left(x0), Left(x1), ty_@0, x2) 37.19/18.90 new_primEqNat0(Zero, Zero) 37.19/18.90 new_esEs13(False, False) 37.19/18.90 new_esEs5(x0, x1, ty_Float) 37.19/18.90 new_esEs5(x0, x1, ty_Bool) 37.19/18.90 new_ltEs22(x0, x1, ty_Float) 37.19/18.90 new_lt6(x0, x1, app(ty_[], x2)) 37.19/18.90 new_compare112(x0, x1, True, x2, x3) 37.19/18.90 new_esEs8(x0, x1, app(ty_[], x2)) 37.19/18.90 new_ltEs21(x0, x1, ty_Integer) 37.19/18.90 new_not(False) 37.19/18.90 new_lt23(x0, x1, ty_Ordering) 37.19/18.90 new_esEs11(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_compare11(x0, x1, True, x2, x3) 37.19/18.90 new_esEs36(x0, x1, ty_Integer) 37.19/18.90 new_lt21(x0, x1, ty_Integer) 37.19/18.90 new_esEs25([], :(x0, x1), x2) 37.19/18.90 new_esEs33(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs9(x0, x1, ty_Ordering) 37.19/18.90 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_primMulNat0(Zero, Succ(x0)) 37.19/18.90 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs17(Left(x0), Left(x1), ty_Float, x2) 37.19/18.90 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_ltEs8(True, True) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, ty_Bool) 37.19/18.90 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) 37.19/18.90 new_esEs27(x0, x1, ty_Double) 37.19/18.90 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 37.19/18.90 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs5(x0, x1, ty_Int) 37.19/18.90 new_esEs37(x0, x1, ty_Int) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, ty_Integer) 37.19/18.90 new_lt6(x0, x1, ty_Float) 37.19/18.90 new_gt0(x0, x1) 37.19/18.90 new_ltEs22(x0, x1, ty_Int) 37.19/18.90 new_lt24(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_lt23(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_esEs25([], [], x0) 37.19/18.90 new_compare29(True, True) 37.19/18.90 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs40(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs41(LT) 37.19/18.90 new_lt5(x0, x1, ty_Integer) 37.19/18.90 new_compare9(Nothing, Just(x0), x1) 37.19/18.90 new_esEs33(x0, x1, ty_Int) 37.19/18.90 new_compare13(x0, x1, x2, x3, False, x4, x5) 37.19/18.90 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 37.19/18.90 new_esEs30(x0, x1, ty_Ordering) 37.19/18.90 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_ltEs14(EQ, LT) 37.19/18.90 new_ltEs14(LT, EQ) 37.19/18.90 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_gt(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs9(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs20(Float(x0, x1), Float(x2, x3)) 37.19/18.90 new_esEs34(x0, x1, ty_Ordering) 37.19/18.90 new_esEs33(x0, x1, ty_Char) 37.19/18.90 new_esEs8(x0, x1, ty_Double) 37.19/18.90 new_esEs4(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_ltEs17(x0, x1) 37.19/18.90 new_esEs40(x0, x1, ty_Integer) 37.19/18.90 new_esEs26(LT) 37.19/18.90 new_esEs31(x0, x1, ty_Int) 37.19/18.90 new_esEs28(x0, x1, ty_@0) 37.19/18.90 new_esEs30(x0, x1, ty_Double) 37.19/18.90 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs7(x0, x1, ty_Bool) 37.19/18.90 new_lt20(x0, x1, ty_Int) 37.19/18.90 new_esEs11(x0, x1, ty_Bool) 37.19/18.90 new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_lt22(x0, x1, ty_Ordering) 37.19/18.90 new_pePe(False, x0) 37.19/18.90 new_ltEs23(x0, x1, app(ty_[], x2)) 37.19/18.90 new_ltEs19(x0, x1, ty_@0) 37.19/18.90 new_ltEs4(x0, x1) 37.19/18.90 new_esEs29(x0, x1, ty_Char) 37.19/18.90 new_ltEs19(x0, x1, ty_Bool) 37.19/18.90 new_ltEs21(x0, x1, ty_Ordering) 37.19/18.90 new_esEs27(x0, x1, ty_Char) 37.19/18.90 new_esEs7(x0, x1, ty_@0) 37.19/18.90 new_esEs32(x0, x1, ty_Char) 37.19/18.90 new_esEs4(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_lt23(x0, x1, ty_Int) 37.19/18.90 new_esEs7(x0, x1, ty_Integer) 37.19/18.90 new_ltEs12(x0, x1) 37.19/18.90 new_esEs6(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 37.19/18.90 new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) 37.19/18.90 new_esEs12(Just(x0), Nothing, x1) 37.19/18.90 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_lt21(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_compare28(GT, GT) 37.19/18.90 new_lt22(x0, x1, ty_Char) 37.19/18.90 new_esEs38(x0, x1, ty_Double) 37.19/18.90 new_lt22(x0, x1, ty_Double) 37.19/18.90 new_esEs17(Left(x0), Left(x1), ty_Double, x2) 37.19/18.90 new_ltEs14(LT, LT) 37.19/18.90 new_esEs10(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.19/18.90 new_lt9(x0, x1) 37.19/18.90 new_esEs28(x0, x1, ty_Integer) 37.19/18.90 new_ltEs21(x0, x1, ty_Double) 37.19/18.90 new_esEs17(Left(x0), Left(x1), ty_Char, x2) 37.19/18.90 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_lt23(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_lt6(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_ltEs10(Just(x0), Nothing, x1) 37.19/18.90 new_esEs33(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 37.19/18.90 new_esEs5(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs30(x0, x1, ty_Char) 37.19/18.90 new_lt21(x0, x1, ty_Char) 37.19/18.90 new_ltEs21(x0, x1, ty_Char) 37.19/18.90 new_esEs36(x0, x1, ty_Int) 37.19/18.90 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_ltEs8(False, False) 37.19/18.90 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_esEs9(x0, x1, ty_Bool) 37.19/18.90 new_esEs32(x0, x1, ty_Double) 37.19/18.90 new_esEs29(x0, x1, ty_Double) 37.19/18.90 new_esEs31(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_lt23(x0, x1, ty_@0) 37.19/18.90 new_esEs9(x0, x1, ty_Float) 37.19/18.90 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs8(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_compare14(x0, x1) 37.19/18.90 new_compare1(:(x0, x1), [], x2) 37.19/18.90 new_esEs9(x0, x1, ty_@0) 37.19/18.90 new_esEs12(Just(x0), Just(x1), app(ty_[], x2)) 37.19/18.90 new_esEs26(EQ) 37.19/18.90 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs4(x0, x1, ty_Double) 37.19/18.90 new_esEs11(x0, x1, ty_Integer) 37.19/18.90 new_esEs10(x0, x1, app(ty_[], x2)) 37.19/18.90 new_lt24(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs7(x0, x1, ty_Int) 37.19/18.90 new_esEs22(@0, @0) 37.19/18.90 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 37.19/18.90 new_esEs35(x0, x1, ty_Ordering) 37.19/18.90 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs28(x0, x1, ty_Bool) 37.19/18.90 new_compare16(@2(x0, x1), @2(x2, x3), x4, x5) 37.19/18.90 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_ltEs16(Right(x0), Right(x1), x2, ty_Int) 37.19/18.90 new_gt(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_lt13(x0, x1) 37.19/18.90 new_esEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 37.19/18.90 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs40(x0, x1, ty_Float) 37.19/18.90 new_compare9(Nothing, Nothing, x0) 37.19/18.90 new_lt24(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_lt21(x0, x1, ty_Double) 37.19/18.90 new_esEs41(GT) 37.19/18.90 new_esEs33(x0, x1, ty_@0) 37.19/18.90 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 37.19/18.90 new_esEs28(x0, x1, ty_Float) 37.19/18.90 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) 37.19/18.90 new_lt6(x0, x1, ty_Integer) 37.19/18.90 new_esEs29(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs34(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs40(x0, x1, ty_Double) 37.19/18.90 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 37.19/18.90 new_primCompAux0(x0, x1, x2, x3) 37.19/18.90 new_primCmpNat0(Zero, Succ(x0)) 37.19/18.90 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 37.19/18.90 new_ltEs16(Right(x0), Left(x1), x2, x3) 37.19/18.90 new_ltEs16(Left(x0), Right(x1), x2, x3) 37.19/18.90 new_compare31(x0, x1, ty_Ordering) 37.19/18.90 new_ltEs19(x0, x1, ty_Float) 37.19/18.90 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs11(x0, x1, ty_Float) 37.19/18.90 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs39(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), ty_Float) 37.19/18.90 new_compare110(x0, x1, True, x2) 37.19/18.90 new_primCompAux00(x0, EQ) 37.19/18.90 new_esEs10(x0, x1, ty_Int) 37.19/18.90 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 37.19/18.90 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 37.19/18.90 new_compare26(x0, x1, False, x2) 37.19/18.90 new_ltEs14(LT, GT) 37.19/18.90 new_ltEs14(GT, LT) 37.19/18.90 new_esEs28(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_compare29(True, False) 37.19/18.90 new_compare29(False, True) 37.19/18.90 new_compare31(x0, x1, ty_Char) 37.19/18.90 new_esEs4(x0, x1, ty_Float) 37.19/18.90 new_gt(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs34(x0, x1, app(ty_[], x2)) 37.19/18.90 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_ltEs19(x0, x1, ty_Int) 37.19/18.90 new_compare13(x0, x1, x2, x3, True, x4, x5) 37.19/18.90 new_esEs28(x0, x1, ty_Int) 37.19/18.90 new_esEs38(x0, x1, ty_Char) 37.19/18.90 new_esEs14(GT, GT) 37.19/18.90 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), ty_Ordering) 37.19/18.90 new_primMulNat0(Succ(x0), Succ(x1)) 37.19/18.90 new_esEs6(x0, x1, ty_Int) 37.19/18.90 new_lt20(x0, x1, ty_@0) 37.19/18.90 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs7(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_compare27(x0, x1, x2, x3, False, x4, x5) 37.19/18.90 new_esEs27(x0, x1, ty_Ordering) 37.19/18.90 new_lt20(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_primEqNat0(Succ(x0), Zero) 37.19/18.90 new_esEs32(x0, x1, ty_Ordering) 37.19/18.90 new_primCmpInt(Neg(Zero), Neg(Zero)) 37.19/18.90 new_esEs39(x0, x1, ty_Ordering) 37.19/18.90 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), ty_Char) 37.19/18.90 new_ltEs14(EQ, GT) 37.19/18.90 new_ltEs22(x0, x1, ty_Double) 37.19/18.90 new_ltEs14(GT, EQ) 37.19/18.90 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_compare28(LT, GT) 37.19/18.90 new_compare28(GT, LT) 37.19/18.90 new_primPlusNat0(Zero, Succ(x0)) 37.19/18.90 new_compare1([], [], x0) 37.19/18.90 new_esEs38(x0, x1, ty_Ordering) 37.19/18.90 new_primCmpInt(Pos(Zero), Neg(Zero)) 37.19/18.90 new_primCmpInt(Neg(Zero), Pos(Zero)) 37.19/18.90 new_lt8(x0, x1) 37.19/18.90 new_esEs5(x0, x1, ty_@0) 37.19/18.90 new_esEs38(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_lt17(x0, x1, x2, x3, x4) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), ty_Integer) 37.19/18.90 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_esEs31(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs12(Just(x0), Just(x1), ty_Char) 37.19/18.90 new_ltEs23(x0, x1, ty_Double) 37.19/18.90 new_lt6(x0, x1, ty_@0) 37.19/18.90 new_esEs39(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_ltEs20(x0, x1, ty_@0) 37.19/18.90 new_ltEs24(x0, x1, ty_@0) 37.19/18.90 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) 37.19/18.90 new_esEs35(x0, x1, ty_Double) 37.19/18.90 new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 37.19/18.90 new_lt18(x0, x1, x2, x3) 37.19/18.90 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_compare12(x0, x1, x2, x3, False, x4, x5, x6) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 37.19/18.90 new_sr0(Integer(x0), Integer(x1)) 37.19/18.90 new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 37.19/18.90 new_ltEs19(x0, x1, ty_Integer) 37.19/18.90 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs33(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_esEs28(x0, x1, app(ty_[], x2)) 37.19/18.90 new_ltEs13(x0, x1, x2) 37.19/18.90 new_esEs11(x0, x1, ty_Int) 37.19/18.90 new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 37.19/18.90 new_esEs32(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_ltEs16(Left(x0), Left(x1), ty_Int, x2) 37.19/18.90 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_ltEs5(x0, x1, ty_@0) 37.19/18.90 new_esEs29(x0, x1, ty_Ordering) 37.19/18.90 new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 37.19/18.90 new_esEs25(:(x0, x1), [], x2) 37.19/18.90 new_esEs31(x0, x1, ty_@0) 37.19/18.90 new_esEs8(x0, x1, ty_Char) 37.19/18.90 new_compare6(Char(x0), Char(x1)) 37.19/18.90 new_gt(x0, x1, ty_Char) 37.19/18.90 new_esEs17(Left(x0), Right(x1), x2, x3) 37.19/18.90 new_esEs17(Right(x0), Left(x1), x2, x3) 37.19/18.90 new_esEs6(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs30(x0, x1, ty_Float) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), ty_@0) 37.19/18.90 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_esEs6(x0, x1, ty_Bool) 37.19/18.90 new_ltEs20(x0, x1, ty_Integer) 37.19/18.90 new_esEs35(x0, x1, ty_Integer) 37.19/18.90 new_primMulNat0(Zero, Zero) 37.19/18.90 new_esEs34(x0, x1, ty_Integer) 37.19/18.90 new_ltEs14(EQ, EQ) 37.19/18.90 new_lt5(x0, x1, ty_Ordering) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 37.19/18.90 new_sr(x0, x1) 37.19/18.90 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs32(x0, x1, app(ty_[], x2)) 37.19/18.90 new_lt24(x0, x1, ty_Ordering) 37.19/18.90 new_lt6(x0, x1, ty_Ordering) 37.19/18.90 new_lt20(x0, x1, ty_Float) 37.19/18.90 new_ltEs24(x0, x1, ty_Bool) 37.19/18.90 new_esEs40(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_esEs34(x0, x1, ty_Bool) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, ty_Double) 37.19/18.90 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_esEs6(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_lt5(x0, x1, ty_Double) 37.19/18.90 new_esEs30(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_ltEs5(x0, x1, ty_Integer) 37.19/18.90 new_lt23(x0, x1, ty_Float) 37.19/18.90 new_esEs32(x0, x1, ty_Float) 37.19/18.90 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 37.19/18.90 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 37.19/18.90 new_lt21(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_ltEs22(x0, x1, ty_Ordering) 37.19/18.90 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs26(GT) 37.19/18.90 new_ltEs20(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs16(x0, x1) 37.19/18.90 new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) 37.19/18.90 new_esEs14(EQ, GT) 37.19/18.90 new_esEs14(GT, EQ) 37.19/18.90 new_compare31(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs13(True, True) 37.19/18.90 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_esEs38(x0, x1, ty_Float) 37.19/18.90 new_ltEs16(Right(x0), Right(x1), x2, ty_Float) 37.19/18.90 new_esEs9(x0, x1, ty_Char) 37.19/18.90 new_esEs34(x0, x1, ty_@0) 37.19/18.90 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 37.19/18.90 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 37.19/18.90 new_ltEs7(x0, x1) 37.19/18.90 new_lt11(x0, x1, x2) 37.19/18.90 new_esEs34(x0, x1, ty_Char) 37.19/18.90 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 37.19/18.90 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 37.19/18.90 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) 37.19/18.90 new_compare17(Right(x0), Right(x1), x2, x3) 37.19/18.90 new_esEs29(x0, x1, ty_Float) 37.19/18.90 new_ltEs24(x0, x1, ty_Integer) 37.19/18.90 new_esEs9(x0, x1, ty_Int) 37.19/18.90 new_esEs34(x0, x1, ty_Int) 37.19/18.90 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_ltEs22(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 37.19/18.90 new_primCmpInt(Pos(Zero), Pos(Zero)) 37.19/18.90 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 37.19/18.90 new_lt22(x0, x1, ty_Integer) 37.19/18.90 new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 37.19/18.90 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 37.19/18.90 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 37.19/18.90 new_ltEs24(x0, x1, ty_Int) 37.19/18.90 new_esEs8(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs31(x0, x1, ty_Integer) 37.19/18.90 new_ltEs20(x0, x1, ty_Int) 37.19/18.90 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_lt20(x0, x1, ty_Integer) 37.19/18.90 new_esEs30(x0, x1, ty_Bool) 37.19/18.90 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 37.19/18.90 new_compare28(LT, LT) 37.19/18.90 new_esEs4(x0, x1, ty_Ordering) 37.19/18.90 new_esEs10(x0, x1, ty_Ordering) 37.19/18.90 new_esEs6(x0, x1, ty_Double) 37.19/18.90 new_ltEs23(x0, x1, ty_Char) 37.19/18.90 new_gt(x0, x1, ty_Integer) 37.19/18.90 new_esEs39(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 37.19/18.90 new_esEs35(x0, x1, ty_Char) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) 37.19/18.90 new_esEs31(x0, x1, ty_Bool) 37.19/18.90 new_ltEs5(x0, x1, ty_Bool) 37.19/18.90 new_ltEs24(x0, x1, ty_Char) 37.19/18.90 new_ltEs20(x0, x1, ty_Float) 37.19/18.90 new_esEs9(x0, x1, app(ty_[], x2)) 37.19/18.90 new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) 37.19/18.90 new_ltEs24(x0, x1, app(ty_[], x2)) 37.19/18.90 new_ltEs19(x0, x1, ty_Double) 37.19/18.90 new_ltEs23(x0, x1, ty_Int) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs41(EQ) 37.19/18.90 new_esEs28(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_lt23(x0, x1, ty_Bool) 37.19/18.90 new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 37.19/18.90 new_gt(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs35(x0, x1, ty_Bool) 37.19/18.90 new_esEs27(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) 37.19/18.90 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_ltEs16(Left(x0), Left(x1), ty_Double, x2) 37.19/18.90 new_gt(x0, x1, ty_Bool) 37.19/18.90 new_ltEs5(x0, x1, ty_Int) 37.19/18.90 new_esEs35(x0, x1, ty_Float) 37.19/18.90 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_ltEs5(x0, x1, ty_Char) 37.19/18.90 new_lt12(x0, x1) 37.19/18.90 new_esEs9(x0, x1, ty_Integer) 37.19/18.90 new_gt(x0, x1, ty_Float) 37.19/18.90 new_esEs30(x0, x1, ty_Integer) 37.19/18.90 new_esEs8(x0, x1, ty_@0) 37.19/18.90 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 37.19/18.90 new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) 37.19/18.90 new_lt20(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_ltEs24(x0, x1, ty_Float) 37.19/18.90 new_esEs11(x0, x1, ty_@0) 37.19/18.90 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_lt20(x0, x1, ty_Bool) 37.19/18.90 new_esEs40(x0, x1, ty_Ordering) 37.19/18.90 new_ltEs5(x0, x1, ty_Float) 37.19/18.90 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_ltEs20(x0, x1, ty_Bool) 37.19/18.90 new_ltEs19(x0, x1, app(ty_[], x2)) 37.19/18.90 new_ltEs23(x0, x1, ty_Bool) 37.19/18.90 new_ltEs11(x0, x1) 37.19/18.90 new_esEs35(x0, x1, ty_Int) 37.19/18.90 new_esEs31(x0, x1, ty_Float) 37.19/18.90 new_esEs11(x0, x1, app(ty_[], x2)) 37.19/18.90 new_lt22(x0, x1, ty_@0) 37.19/18.90 new_lt21(x0, x1, ty_Ordering) 37.19/18.90 new_esEs34(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_esEs12(Just(x0), Just(x1), ty_@0) 37.19/18.90 new_gt(x0, x1, ty_Int) 37.19/18.90 new_primPlusNat0(Succ(x0), Succ(x1)) 37.19/18.90 new_esEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 37.19/18.90 new_lt23(x0, x1, ty_Integer) 37.19/18.90 new_primCmpNat0(Zero, Zero) 37.19/18.90 new_esEs29(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_ltEs20(x0, x1, ty_Char) 37.19/18.90 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 37.19/18.90 We have to consider all minimal (P,Q,R)-chains. 37.19/18.90 ---------------------------------------- 37.19/18.90 37.19/18.90 (21) QDPSizeChangeProof (EQUIVALENT) 37.19/18.90 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. 37.19/18.90 37.19/18.90 From the DPs we obtained the following set of size-change graphs: 37.19/18.90 *new_delFromFM1(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, bb, bc) -> new_delFromFM(xwv31, xwv33, bb, bc) 37.19/18.90 The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 37.19/18.90 37.19/18.90 37.19/18.90 *new_delFromFM(Branch(xwv30, xwv31, xwv32, xwv33, xwv34), xwv40, bd, be) -> new_delFromFM2(xwv30, xwv31, xwv32, xwv33, xwv34, xwv40, new_gt(xwv40, xwv30, bd), bd, be) 37.19/18.90 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 8, 4 >= 9 37.19/18.90 37.19/18.90 37.19/18.90 *new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, h, ba) -> new_delFromFM1(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_lt24(xwv18, xwv13, h), h, ba) 37.19/18.90 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 37.19/18.90 37.19/18.90 37.19/18.90 *new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, h, ba) -> new_delFromFM(xwv17, xwv18, h, ba) 37.19/18.90 The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 37.19/18.90 37.19/18.90 37.19/18.90 ---------------------------------------- 37.19/18.90 37.19/18.90 (22) 37.19/18.90 YES 37.19/18.90 37.19/18.90 ---------------------------------------- 37.19/18.90 37.19/18.90 (23) 37.19/18.90 Obligation: 37.19/18.90 Q DP problem: 37.19/18.90 The TRS P consists of the following rules: 37.19/18.90 37.19/18.90 new_primCompAux(xwv400, xwv300, xwv56, app(ty_[], bad)) -> new_compare0(xwv400, xwv300, bad) 37.19/18.90 new_compare20(xwv72, xwv73, False, app(ty_[], hg)) -> new_compare0(xwv72, xwv73, hg) 37.19/18.90 new_compare22(xwv99, xwv100, False, app(ty_[], cfc), cfa) -> new_ltEs1(xwv99, xwv100, cfc) 37.19/18.90 new_compare23(xwv106, xwv107, False, cga, app(ty_[], cge)) -> new_ltEs1(xwv106, xwv107, cge) 37.19/18.90 new_ltEs3(Right(xwv720), Right(xwv730), bgc, app(ty_[], bgg)) -> new_ltEs1(xwv720, xwv730, bgg) 37.19/18.90 new_compare23(xwv106, xwv107, False, cga, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_ltEs2(xwv106, xwv107, cgf, cgg, cgh) 37.19/18.90 new_compare4(@3(xwv400, xwv401, xwv402), @3(xwv300, xwv301, xwv302), cab, cac, cad) -> new_compare21(xwv400, xwv401, xwv402, xwv300, xwv301, xwv302, new_asAs(new_esEs7(xwv400, xwv300, cab), new_asAs(new_esEs8(xwv401, xwv301, cac), new_esEs9(xwv402, xwv302, cad))), cab, cac, cad) 37.19/18.90 new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, app(ty_[], cbb), cag, cah) -> new_lt1(xwv88, xwv91, cbb) 37.19/18.90 new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, app(app(ty_Either, bcd), bce)), bbe), bbf)) -> new_lt3(xwv720, xwv730, bcd, bce) 37.19/18.90 new_compare22(xwv99, xwv100, False, app(app(app(ty_@3, cfd), cfe), cff), cfa) -> new_ltEs2(xwv99, xwv100, cfd, cfe, cff) 37.19/18.90 new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, bbe, app(ty_Maybe, beb)) -> new_ltEs0(xwv722, xwv732, beb) 37.19/18.90 new_compare20(Just(xwv720), Just(xwv730), False, app(ty_Maybe, app(ty_Maybe, gh))) -> new_ltEs0(xwv720, xwv730, gh) 37.19/18.90 new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), app(ty_[], bbh), bbe, bbf) -> new_lt1(xwv720, xwv730, bbh) 37.19/18.90 new_compare20(Left(xwv720), Left(xwv730), False, app(app(ty_Either, app(app(ty_Either, bga), bgb)), bfc)) -> new_ltEs3(xwv720, xwv730, bga, bgb) 37.19/18.90 new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, cag, app(ty_Maybe, cdd)) -> new_ltEs0(xwv90, xwv93, cdd) 37.19/18.90 new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), cb, app(app(ty_Either, dc), dd)) -> new_ltEs3(xwv721, xwv731, dc, dd) 37.19/18.90 new_compare2(xwv125, xwv126, xwv127, xwv128, False, app(app(ty_@2, fc), fd), ff) -> new_lt(xwv125, xwv127, fc, fd) 37.19/18.90 new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), app(app(ty_@2, bbc), bbd), bbe, bbf) -> new_lt(xwv720, xwv730, bbc, bbd) 37.19/18.90 new_compare(@2(xwv400, xwv401), @2(xwv300, xwv301), dg, dh) -> new_compare2(xwv400, xwv401, xwv300, xwv301, new_asAs(new_esEs4(xwv400, xwv300, dg), new_esEs5(xwv401, xwv301, dh)), dg, dh) 37.19/18.90 new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), cb, app(ty_Maybe, ce)) -> new_ltEs0(xwv721, xwv731, ce) 37.19/18.90 new_lt0(xwv18, xwv13, bhe) -> new_compare3(xwv18, xwv13, bhe) 37.19/18.90 new_ltEs3(Left(xwv720), Left(xwv730), app(ty_[], bfe), bfc) -> new_ltEs1(xwv720, xwv730, bfe) 37.19/18.90 new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), app(ty_[], bdb)), bbf)) -> new_lt1(xwv721, xwv731, bdb) 37.19/18.90 new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, app(app(app(ty_@3, cbc), cbd), cbe), cag, cah) -> new_lt2(xwv88, xwv91, cbc, cbd, cbe) 37.19/18.90 new_compare2(xwv125, xwv126, xwv127, xwv128, False, app(app(ty_Either, gd), ge), ff) -> new_lt3(xwv125, xwv127, gd, ge) 37.19/18.90 new_compare5(Left(xwv400), Left(xwv300), cee, cef) -> new_compare22(xwv400, xwv300, new_esEs10(xwv400, xwv300, cee), cee, cef) 37.19/18.90 new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs2(xwv721, xwv731, cg, da, db) 37.19/18.90 new_compare20(Right(xwv720), Right(xwv730), False, app(app(ty_Either, bgc), app(app(ty_@2, bgd), bge))) -> new_ltEs(xwv720, xwv730, bgd, bge) 37.19/18.90 new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), app(app(app(ty_@3, be), bf), bg), bb) -> new_lt2(xwv720, xwv730, be, bf, bg) 37.19/18.90 new_ltEs0(Just(xwv720), Just(xwv730), app(ty_[], ha)) -> new_ltEs1(xwv720, xwv730, ha) 37.19/18.90 new_compare20(Right(xwv720), Right(xwv730), False, app(app(ty_Either, bgc), app(app(app(ty_@3, bgh), bha), bhb))) -> new_ltEs2(xwv720, xwv730, bgh, bha, bhb) 37.19/18.90 new_lt3(xwv18, xwv13, cec, ced) -> new_compare5(xwv18, xwv13, cec, ced) 37.19/18.90 new_compare20(Left(xwv720), Left(xwv730), False, app(app(ty_Either, app(ty_Maybe, bfd)), bfc)) -> new_ltEs0(xwv720, xwv730, bfd) 37.19/18.90 new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, app(app(ty_@2, h), ba)), bb)) -> new_lt(xwv720, xwv730, h, ba) 37.19/18.90 new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, cb), app(app(app(ty_@3, cg), da), db))) -> new_ltEs2(xwv721, xwv731, cg, da, db) 37.19/18.90 new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, app(ty_Maybe, bda), bbf) -> new_lt0(xwv721, xwv731, bda) 37.19/18.90 new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, app(ty_Maybe, cba), cag, cah) -> new_lt0(xwv88, xwv91, cba) 37.19/18.90 new_ltEs0(Just(xwv720), Just(xwv730), app(ty_Maybe, gh)) -> new_ltEs0(xwv720, xwv730, gh) 37.19/18.90 new_compare20(Just(xwv720), Just(xwv730), False, app(ty_Maybe, app(app(ty_Either, he), hf))) -> new_ltEs3(xwv720, xwv730, he, hf) 37.19/18.90 new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), app(ty_Maybe, bbg), bbe, bbf) -> new_lt0(xwv720, xwv730, bbg) 37.19/18.90 new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, app(app(ty_@2, cca), ccb), cah) -> new_lt(xwv89, xwv92, cca, ccb) 37.19/18.90 new_ltEs3(Right(xwv720), Right(xwv730), bgc, app(app(ty_@2, bgd), bge)) -> new_ltEs(xwv720, xwv730, bgd, bge) 37.19/18.90 new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, cag, app(app(ty_@2, cdb), cdc)) -> new_ltEs(xwv90, xwv93, cdb, cdc) 37.19/18.90 new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), bbe), app(app(ty_Either, beg), beh))) -> new_ltEs3(xwv722, xwv732, beg, beh) 37.19/18.90 new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(xwv721, xwv731, cc, cd) 37.19/18.90 new_primCompAux(xwv400, xwv300, xwv56, app(app(ty_Either, bah), bba)) -> new_compare5(xwv400, xwv300, bah, bba) 37.19/18.90 new_ltEs3(Left(xwv720), Left(xwv730), app(app(app(ty_@3, bff), bfg), bfh), bfc) -> new_ltEs2(xwv720, xwv730, bff, bfg, bfh) 37.19/18.90 new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, app(app(ty_@2, cae), caf), cag, cah) -> new_lt(xwv88, xwv91, cae, caf) 37.19/18.90 new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, bbe, app(app(ty_Either, beg), beh)) -> new_ltEs3(xwv722, xwv732, beg, beh) 37.19/18.90 new_compare23(xwv106, xwv107, False, cga, app(app(ty_@2, cgb), cgc)) -> new_ltEs(xwv106, xwv107, cgb, cgc) 37.19/18.90 new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), bbe), app(ty_[], bec))) -> new_ltEs1(xwv722, xwv732, bec) 37.19/18.90 new_compare0(:(xwv400, xwv401), :(xwv300, xwv301), hh) -> new_compare0(xwv401, xwv301, hh) 37.19/18.90 new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, cb), app(ty_[], cf))) -> new_ltEs1(xwv721, xwv731, cf) 37.19/18.90 new_compare20(Left(xwv720), Left(xwv730), False, app(app(ty_Either, app(ty_[], bfe)), bfc)) -> new_ltEs1(xwv720, xwv730, bfe) 37.19/18.90 new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), app(app(app(ty_@3, bca), bcb), bcc), bbe, bbf) -> new_lt2(xwv720, xwv730, bca, bcb, bcc) 37.19/18.90 new_compare20(Just(xwv720), Just(xwv730), False, app(ty_Maybe, app(ty_[], ha))) -> new_ltEs1(xwv720, xwv730, ha) 37.19/18.90 new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), bbe), app(ty_Maybe, beb))) -> new_ltEs0(xwv722, xwv732, beb) 37.19/18.90 new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, bbe, app(ty_[], bec)) -> new_ltEs1(xwv722, xwv732, bec) 37.19/18.90 new_ltEs3(Left(xwv720), Left(xwv730), app(app(ty_@2, bfa), bfb), bfc) -> new_ltEs(xwv720, xwv730, bfa, bfb) 37.19/18.90 new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, cag, app(ty_[], cde)) -> new_ltEs1(xwv90, xwv93, cde) 37.19/18.90 new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, app(ty_Maybe, bbg)), bbe), bbf)) -> new_lt0(xwv720, xwv730, bbg) 37.19/18.90 new_compare20(Left(xwv720), Left(xwv730), False, app(app(ty_Either, app(app(ty_@2, bfa), bfb)), bfc)) -> new_ltEs(xwv720, xwv730, bfa, bfb) 37.19/18.90 new_ltEs3(Left(xwv720), Left(xwv730), app(app(ty_Either, bga), bgb), bfc) -> new_ltEs3(xwv720, xwv730, bga, bgb) 37.19/18.90 new_ltEs0(Just(xwv720), Just(xwv730), app(app(ty_@2, gf), gg)) -> new_ltEs(xwv720, xwv730, gf, gg) 37.19/18.90 new_ltEs0(Just(xwv720), Just(xwv730), app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs2(xwv720, xwv730, hb, hc, hd) 37.19/18.90 new_primCompAux(xwv400, xwv300, xwv56, app(ty_Maybe, bac)) -> new_compare3(xwv400, xwv300, bac) 37.19/18.90 new_compare20(Right(xwv720), Right(xwv730), False, app(app(ty_Either, bgc), app(ty_Maybe, bgf))) -> new_ltEs0(xwv720, xwv730, bgf) 37.19/18.90 new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), bbe), app(app(ty_@2, bdh), bea))) -> new_ltEs(xwv722, xwv732, bdh, bea) 37.19/18.90 new_ltEs0(Just(xwv720), Just(xwv730), app(app(ty_Either, he), hf)) -> new_ltEs3(xwv720, xwv730, he, hf) 37.19/18.90 new_compare20(Right(xwv720), Right(xwv730), False, app(app(ty_Either, bgc), app(ty_[], bgg))) -> new_ltEs1(xwv720, xwv730, bgg) 37.19/18.90 new_lt1(xwv18, xwv13, bhf) -> new_compare0(xwv18, xwv13, bhf) 37.19/18.90 new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, app(app(ty_Either, cbf), cbg), cag, cah) -> new_lt3(xwv88, xwv91, cbf, cbg) 37.19/18.90 new_compare23(xwv106, xwv107, False, cga, app(ty_Maybe, cgd)) -> new_ltEs0(xwv106, xwv107, cgd) 37.19/18.90 new_compare3(Just(xwv400), Just(xwv300), bbb) -> new_compare20(xwv400, xwv300, new_esEs6(xwv400, xwv300, bbb), bbb) 37.19/18.90 new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), app(app(ty_Either, bcd), bce), bbe, bbf) -> new_lt3(xwv720, xwv730, bcd, bce) 37.19/18.90 new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), app(app(ty_@2, h), ba), bb) -> new_lt(xwv720, xwv730, h, ba) 37.19/18.90 new_primCompAux(xwv400, xwv300, xwv56, app(app(app(ty_@3, bae), baf), bag)) -> new_compare4(xwv400, xwv300, bae, baf, bag) 37.19/18.90 new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, app(app(app(ty_@3, bca), bcb), bcc)), bbe), bbf)) -> new_lt2(xwv720, xwv730, bca, bcb, bcc) 37.19/18.90 new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, app(ty_[], bdb), bbf) -> new_lt1(xwv721, xwv731, bdb) 37.19/18.90 new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, app(ty_[], ccd), cah) -> new_lt1(xwv89, xwv92, ccd) 37.19/18.90 new_ltEs1(xwv72, xwv73, hg) -> new_compare0(xwv72, xwv73, hg) 37.19/18.90 new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, app(ty_[], bd)), bb)) -> new_lt1(xwv720, xwv730, bd) 37.19/18.90 new_compare22(xwv99, xwv100, False, app(ty_Maybe, cfb), cfa) -> new_ltEs0(xwv99, xwv100, cfb) 37.19/18.90 new_compare20(Left(xwv720), Left(xwv730), False, app(app(ty_Either, app(app(app(ty_@3, bff), bfg), bfh)), bfc)) -> new_ltEs2(xwv720, xwv730, bff, bfg, bfh) 37.19/18.90 new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), app(app(ty_Either, bdf), bdg)), bbf)) -> new_lt3(xwv721, xwv731, bdf, bdg) 37.19/18.90 new_primCompAux(xwv400, xwv300, xwv56, app(app(ty_@2, baa), bab)) -> new_compare(xwv400, xwv300, baa, bab) 37.19/18.90 new_compare2(xwv125, xwv126, xwv127, xwv128, False, ea, app(app(ty_@2, eb), ec)) -> new_ltEs(xwv126, xwv128, eb, ec) 37.19/18.90 new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, cag, app(app(ty_Either, cea), ceb)) -> new_ltEs3(xwv90, xwv93, cea, ceb) 37.19/18.90 new_compare20(Right(xwv720), Right(xwv730), False, app(app(ty_Either, bgc), app(app(ty_Either, bhc), bhd))) -> new_ltEs3(xwv720, xwv730, bhc, bhd) 37.19/18.90 new_compare22(xwv99, xwv100, False, app(app(ty_Either, cfg), cfh), cfa) -> new_ltEs3(xwv99, xwv100, cfg, cfh) 37.19/18.90 new_compare0(:(xwv400, xwv401), :(xwv300, xwv301), hh) -> new_primCompAux(xwv400, xwv300, new_compare1(xwv401, xwv301, hh), hh) 37.19/18.90 new_ltEs3(Right(xwv720), Right(xwv730), bgc, app(app(ty_Either, bhc), bhd)) -> new_ltEs3(xwv720, xwv730, bhc, bhd) 37.19/18.90 new_compare23(xwv106, xwv107, False, cga, app(app(ty_Either, cha), chb)) -> new_ltEs3(xwv106, xwv107, cha, chb) 37.19/18.90 new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), cb, app(ty_[], cf)) -> new_ltEs1(xwv721, xwv731, cf) 37.19/18.90 new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, cb), app(ty_Maybe, ce))) -> new_ltEs0(xwv721, xwv731, ce) 37.19/18.90 new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, app(app(app(ty_@3, cce), ccf), ccg), cah) -> new_lt2(xwv89, xwv92, cce, ccf, ccg) 37.19/18.90 new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), app(ty_[], bd), bb) -> new_lt1(xwv720, xwv730, bd) 37.19/18.90 new_compare2(xwv125, xwv126, xwv127, xwv128, False, app(app(app(ty_@3, ga), gb), gc), ff) -> new_lt2(xwv125, xwv127, ga, gb, gc) 37.19/18.90 new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), app(ty_Maybe, bda)), bbf)) -> new_lt0(xwv721, xwv731, bda) 37.19/18.90 new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), app(app(ty_Either, bh), ca), bb) -> new_lt3(xwv720, xwv730, bh, ca) 37.19/18.90 new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), app(ty_Maybe, bc), bb) -> new_lt0(xwv720, xwv730, bc) 37.19/18.90 new_compare20(Just(xwv720), Just(xwv730), False, app(ty_Maybe, app(app(ty_@2, gf), gg))) -> new_ltEs(xwv720, xwv730, gf, gg) 37.19/18.90 new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, cag, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_ltEs2(xwv90, xwv93, cdf, cdg, cdh) 37.19/18.90 new_compare2(xwv125, xwv126, xwv127, xwv128, False, ea, app(app(app(ty_@3, ef), eg), eh)) -> new_ltEs2(xwv126, xwv128, ef, eg, eh) 37.19/18.90 new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), bbe), app(app(app(ty_@3, bed), bee), bef))) -> new_ltEs2(xwv722, xwv732, bed, bee, bef) 37.19/18.90 new_lt2(xwv18, xwv13, bhg, bhh, caa) -> new_compare4(xwv18, xwv13, bhg, bhh, caa) 37.19/18.90 new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, cb), app(app(ty_@2, cc), cd))) -> new_ltEs(xwv721, xwv731, cc, cd) 37.19/18.90 new_compare20(Just(xwv720), Just(xwv730), False, app(ty_Maybe, app(app(app(ty_@3, hb), hc), hd))) -> new_ltEs2(xwv720, xwv730, hb, hc, hd) 37.19/18.90 new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, bbe, app(app(app(ty_@3, bed), bee), bef)) -> new_ltEs2(xwv722, xwv732, bed, bee, bef) 37.19/18.90 new_ltEs3(Left(xwv720), Left(xwv730), app(ty_Maybe, bfd), bfc) -> new_ltEs0(xwv720, xwv730, bfd) 37.19/18.90 new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, app(app(ty_Either, cch), cda), cah) -> new_lt3(xwv89, xwv92, cch, cda) 37.19/18.90 new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, app(app(ty_@2, bbc), bbd)), bbe), bbf)) -> new_lt(xwv720, xwv730, bbc, bbd) 37.19/18.90 new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, app(ty_Maybe, ccc), cah) -> new_lt0(xwv89, xwv92, ccc) 37.19/18.90 new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, bbe, app(app(ty_@2, bdh), bea)) -> new_ltEs(xwv722, xwv732, bdh, bea) 37.19/18.90 new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, app(ty_Maybe, bc)), bb)) -> new_lt0(xwv720, xwv730, bc) 37.19/18.90 new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, app(app(ty_@2, bcg), bch), bbf) -> new_lt(xwv721, xwv731, bcg, bch) 37.19/18.90 new_compare2(xwv125, xwv126, xwv127, xwv128, False, app(ty_Maybe, fg), ff) -> new_lt0(xwv125, xwv127, fg) 37.19/18.90 new_lt(xwv18, xwv13, de, df) -> new_compare(xwv18, xwv13, de, df) 37.19/18.90 new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, cb), app(app(ty_Either, dc), dd))) -> new_ltEs3(xwv721, xwv731, dc, dd) 37.19/18.90 new_compare5(Right(xwv400), Right(xwv300), cee, cef) -> new_compare23(xwv400, xwv300, new_esEs11(xwv400, xwv300, cef), cee, cef) 37.19/18.90 new_ltEs3(Right(xwv720), Right(xwv730), bgc, app(ty_Maybe, bgf)) -> new_ltEs0(xwv720, xwv730, bgf) 37.19/18.90 new_compare2(xwv125, xwv126, xwv127, xwv128, False, app(ty_[], fh), ff) -> new_lt1(xwv125, xwv127, fh) 37.19/18.90 new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), app(app(app(ty_@3, bdc), bdd), bde)), bbf)) -> new_lt2(xwv721, xwv731, bdc, bdd, bde) 37.19/18.90 new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, app(app(ty_Either, bh), ca)), bb)) -> new_lt3(xwv720, xwv730, bh, ca) 37.19/18.90 new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, app(app(app(ty_@3, bdc), bdd), bde), bbf) -> new_lt2(xwv721, xwv731, bdc, bdd, bde) 37.19/18.90 new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), app(app(ty_@2, bcg), bch)), bbf)) -> new_lt(xwv721, xwv731, bcg, bch) 37.19/18.90 new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, app(app(ty_Either, bdf), bdg), bbf) -> new_lt3(xwv721, xwv731, bdf, bdg) 37.19/18.90 new_compare2(xwv125, xwv126, xwv127, xwv128, False, ea, app(ty_Maybe, ed)) -> new_ltEs0(xwv126, xwv128, ed) 37.19/18.90 new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, app(ty_[], bbh)), bbe), bbf)) -> new_lt1(xwv720, xwv730, bbh) 37.19/18.90 new_compare2(xwv125, xwv126, xwv127, xwv128, False, ea, app(app(ty_Either, fa), fb)) -> new_ltEs3(xwv126, xwv128, fa, fb) 37.19/18.90 new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, app(app(app(ty_@3, be), bf), bg)), bb)) -> new_lt2(xwv720, xwv730, be, bf, bg) 37.19/18.90 new_ltEs3(Right(xwv720), Right(xwv730), bgc, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs2(xwv720, xwv730, bgh, bha, bhb) 37.19/18.90 new_compare2(xwv125, xwv126, xwv127, xwv128, False, ea, app(ty_[], ee)) -> new_ltEs1(xwv126, xwv128, ee) 37.19/18.90 new_compare22(xwv99, xwv100, False, app(app(ty_@2, ceg), ceh), cfa) -> new_ltEs(xwv99, xwv100, ceg, ceh) 37.19/18.90 37.19/18.90 The TRS R consists of the following rules: 37.19/18.90 37.19/18.90 new_lt20(xwv720, xwv730, ty_Double) -> new_lt12(xwv720, xwv730) 37.19/18.90 new_esEs27(xwv88, xwv91, ty_Double) -> new_esEs15(xwv88, xwv91) 37.19/18.90 new_esEs30(xwv280, xwv330, app(app(ty_@2, deb), dec)) -> new_esEs19(xwv280, xwv330, deb, dec) 37.19/18.90 new_esEs39(xwv280, xwv330, ty_Bool) -> new_esEs13(xwv280, xwv330) 37.19/18.90 new_ltEs24(xwv72, xwv73, ty_Float) -> new_ltEs12(xwv72, xwv73) 37.19/18.90 new_esEs14(GT, GT) -> True 37.19/18.90 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 37.19/18.90 new_primCmpInt(Neg(Succ(xwv4000)), Pos(xwv300)) -> LT 37.19/18.90 new_ltEs21(xwv126, xwv128, ty_Bool) -> new_ltEs8(xwv126, xwv128) 37.19/18.90 new_esEs7(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 37.19/18.90 new_primPlusNat0(Zero, Zero) -> Zero 37.19/18.90 new_lt21(xwv125, xwv127, app(ty_[], fh)) -> new_lt15(xwv125, xwv127, fh) 37.19/18.90 new_ltEs22(xwv722, xwv732, app(app(app(ty_@3, bed), bee), bef)) -> new_ltEs15(xwv722, xwv732, bed, bee, bef) 37.19/18.90 new_pePe(True, xwv210) -> True 37.19/18.90 new_ltEs5(xwv90, xwv93, app(app(ty_@2, cdb), cdc)) -> new_ltEs9(xwv90, xwv93, cdb, cdc) 37.19/18.90 new_esEs34(xwv720, xwv730, ty_Char) -> new_esEs18(xwv720, xwv730) 37.19/18.90 new_esEs10(xwv400, xwv300, ty_@0) -> new_esEs22(xwv400, xwv300) 37.19/18.90 new_esEs5(xwv401, xwv301, ty_Integer) -> new_esEs24(xwv401, xwv301) 37.19/18.90 new_esEs10(xwv400, xwv300, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs23(xwv400, xwv300, fdc, fdd, fde) 37.19/18.90 new_esEs32(xwv282, xwv332, ty_Integer) -> new_esEs24(xwv282, xwv332) 37.19/18.90 new_esEs30(xwv280, xwv330, ty_Bool) -> new_esEs13(xwv280, xwv330) 37.19/18.90 new_compare31(xwv400, xwv300, ty_Double) -> new_compare18(xwv400, xwv300) 37.19/18.90 new_ltEs24(xwv72, xwv73, ty_Ordering) -> new_ltEs14(xwv72, xwv73) 37.19/18.90 new_esEs39(xwv280, xwv330, app(app(ty_@2, fhe), fhf)) -> new_esEs19(xwv280, xwv330, fhe, fhf) 37.19/18.90 new_ltEs16(Left(xwv720), Left(xwv730), ty_@0, bfc) -> new_ltEs4(xwv720, xwv730) 37.19/18.90 new_esEs27(xwv88, xwv91, ty_Float) -> new_esEs20(xwv88, xwv91) 37.19/18.90 new_compare31(xwv400, xwv300, app(ty_Ratio, ffb)) -> new_compare8(xwv400, xwv300, ffb) 37.19/18.90 new_lt23(xwv721, xwv731, ty_Char) -> new_lt8(xwv721, xwv731) 37.19/18.90 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 37.19/18.90 new_compare110(xwv148, xwv149, False, fad) -> GT 37.19/18.90 new_esEs37(xwv281, xwv331, ty_Int) -> new_esEs16(xwv281, xwv331) 37.19/18.90 new_esEs40(xwv281, xwv331, ty_Char) -> new_esEs18(xwv281, xwv331) 37.19/18.90 new_primCmpInt(Pos(Zero), Neg(Succ(xwv3000))) -> GT 37.19/18.90 new_esEs28(xwv89, xwv92, ty_Ordering) -> new_esEs14(xwv89, xwv92) 37.19/18.90 new_lt18(xwv18, xwv13, cec, ced) -> new_esEs26(new_compare17(xwv18, xwv13, cec, ced)) 37.19/18.90 new_lt6(xwv89, xwv92, ty_Char) -> new_lt8(xwv89, xwv92) 37.19/18.90 new_lt22(xwv720, xwv730, app(app(app(ty_@3, bca), bcb), bcc)) -> new_lt17(xwv720, xwv730, bca, bcb, bcc) 37.19/18.90 new_compare28(LT, LT) -> EQ 37.19/18.90 new_esEs32(xwv282, xwv332, app(ty_Ratio, dgh)) -> new_esEs21(xwv282, xwv332, dgh) 37.19/18.90 new_compare17(Left(xwv400), Left(xwv300), cee, cef) -> new_compare25(xwv400, xwv300, new_esEs10(xwv400, xwv300, cee), cee, cef) 37.19/18.90 new_esEs28(xwv89, xwv92, ty_Char) -> new_esEs18(xwv89, xwv92) 37.19/18.90 new_compare29(True, True) -> EQ 37.19/18.90 new_lt21(xwv125, xwv127, app(ty_Maybe, fg)) -> new_lt11(xwv125, xwv127, fg) 37.19/18.90 new_ltEs9(@2(xwv720, xwv721), @2(xwv730, xwv731), cb, bb) -> new_pePe(new_lt20(xwv720, xwv730, cb), new_asAs(new_esEs29(xwv720, xwv730, cb), new_ltEs20(xwv721, xwv731, bb))) 37.19/18.90 new_primCmpInt(Neg(Succ(xwv4000)), Neg(xwv300)) -> new_primCmpNat0(xwv300, Succ(xwv4000)) 37.19/18.90 new_esEs14(EQ, EQ) -> True 37.19/18.90 new_esEs5(xwv401, xwv301, app(ty_Ratio, fbf)) -> new_esEs21(xwv401, xwv301, fbf) 37.19/18.90 new_esEs12(Just(xwv280), Just(xwv330), app(ty_Maybe, chd)) -> new_esEs12(xwv280, xwv330, chd) 37.19/18.90 new_lt6(xwv89, xwv92, ty_Float) -> new_lt13(xwv89, xwv92) 37.19/18.90 new_esEs12(Just(xwv280), Just(xwv330), ty_Double) -> new_esEs15(xwv280, xwv330) 37.19/18.90 new_esEs7(xwv400, xwv300, ty_Ordering) -> new_esEs14(xwv400, xwv300) 37.19/18.90 new_esEs9(xwv402, xwv302, app(ty_Ratio, ehe)) -> new_esEs21(xwv402, xwv302, ehe) 37.19/18.90 new_esEs5(xwv401, xwv301, app(ty_[], fcb)) -> new_esEs25(xwv401, xwv301, fcb) 37.19/18.90 new_esEs34(xwv720, xwv730, ty_Ordering) -> new_esEs14(xwv720, xwv730) 37.19/18.90 new_esEs32(xwv282, xwv332, app(ty_[], dhd)) -> new_esEs25(xwv282, xwv332, dhd) 37.19/18.90 new_esEs35(xwv721, xwv731, ty_@0) -> new_esEs22(xwv721, xwv731) 37.19/18.90 new_esEs27(xwv88, xwv91, app(ty_Maybe, cba)) -> new_esEs12(xwv88, xwv91, cba) 37.19/18.90 new_esEs35(xwv721, xwv731, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs23(xwv721, xwv731, bdc, bdd, bde) 37.19/18.90 new_ltEs4(xwv72, xwv73) -> new_fsEs(new_compare7(xwv72, xwv73)) 37.19/18.90 new_lt6(xwv89, xwv92, ty_Bool) -> new_lt9(xwv89, xwv92) 37.19/18.90 new_esEs8(xwv401, xwv301, app(app(app(ty_@3, egd), ege), egf)) -> new_esEs23(xwv401, xwv301, egd, ege, egf) 37.19/18.90 new_ltEs19(xwv99, xwv100, ty_Double) -> new_ltEs11(xwv99, xwv100) 37.19/18.90 new_esEs8(xwv401, xwv301, ty_@0) -> new_esEs22(xwv401, xwv301) 37.19/18.90 new_esEs33(xwv125, xwv127, ty_Float) -> new_esEs20(xwv125, xwv127) 37.19/18.90 new_compare28(EQ, GT) -> LT 37.19/18.90 new_primEqInt(Pos(Succ(xwv2800)), Pos(Zero)) -> False 37.19/18.90 new_primEqInt(Pos(Zero), Pos(Succ(xwv3300))) -> False 37.19/18.90 new_lt12(xwv18, xwv13) -> new_esEs26(new_compare18(xwv18, xwv13)) 37.19/18.90 new_esEs26(LT) -> True 37.19/18.90 new_esEs12(Nothing, Just(xwv330), chc) -> False 37.19/18.90 new_esEs12(Just(xwv280), Nothing, chc) -> False 37.19/18.90 new_ltEs16(Left(xwv720), Left(xwv730), ty_Float, bfc) -> new_ltEs12(xwv720, xwv730) 37.19/18.90 new_compare210(xwv106, xwv107, True, cga, ffc) -> EQ 37.19/18.90 new_ltEs20(xwv721, xwv731, ty_@0) -> new_ltEs4(xwv721, xwv731) 37.19/18.90 new_esEs6(xwv400, xwv300, ty_Float) -> new_esEs20(xwv400, xwv300) 37.19/18.90 new_lt23(xwv721, xwv731, app(ty_Ratio, ebd)) -> new_lt4(xwv721, xwv731, ebd) 37.19/18.90 new_esEs17(Left(xwv280), Left(xwv330), ty_@0, ebf) -> new_esEs22(xwv280, xwv330) 37.19/18.90 new_esEs12(Nothing, Nothing, chc) -> True 37.19/18.90 new_ltEs16(Left(xwv720), Left(xwv730), ty_Integer, bfc) -> new_ltEs17(xwv720, xwv730) 37.19/18.90 new_lt23(xwv721, xwv731, app(app(ty_@2, bcg), bch)) -> new_lt10(xwv721, xwv731, bcg, bch) 37.19/18.90 new_ltEs19(xwv99, xwv100, app(app(ty_Either, cfg), cfh)) -> new_ltEs16(xwv99, xwv100, cfg, cfh) 37.19/18.90 new_esEs29(xwv720, xwv730, app(app(ty_@2, h), ba)) -> new_esEs19(xwv720, xwv730, h, ba) 37.19/18.90 new_compare8(:%(xwv400, xwv401), :%(xwv300, xwv301), ty_Int) -> new_compare14(new_sr(xwv400, xwv301), new_sr(xwv300, xwv401)) 37.19/18.90 new_compare1(:(xwv400, xwv401), [], hh) -> GT 37.19/18.90 new_esEs17(Left(xwv280), Left(xwv330), app(app(app(ty_@3, ece), ecf), ecg), ebf) -> new_esEs23(xwv280, xwv330, ece, ecf, ecg) 37.19/18.90 new_primEqNat0(Succ(xwv2800), Succ(xwv3300)) -> new_primEqNat0(xwv2800, xwv3300) 37.19/18.90 new_esEs29(xwv720, xwv730, ty_@0) -> new_esEs22(xwv720, xwv730) 37.19/18.90 new_ltEs22(xwv722, xwv732, app(ty_Maybe, beb)) -> new_ltEs10(xwv722, xwv732, beb) 37.19/18.90 new_esEs33(xwv125, xwv127, app(ty_Maybe, fg)) -> new_esEs12(xwv125, xwv127, fg) 37.19/18.90 new_ltEs21(xwv126, xwv128, ty_Char) -> new_ltEs7(xwv126, xwv128) 37.19/18.90 new_ltEs16(Left(xwv720), Left(xwv730), app(app(ty_Either, bga), bgb), bfc) -> new_ltEs16(xwv720, xwv730, bga, bgb) 37.19/18.90 new_ltEs21(xwv126, xwv128, app(ty_[], ee)) -> new_ltEs13(xwv126, xwv128, ee) 37.19/18.90 new_esEs12(Just(xwv280), Just(xwv330), ty_Float) -> new_esEs20(xwv280, xwv330) 37.19/18.90 new_not(True) -> False 37.19/18.90 new_lt5(xwv88, xwv91, app(ty_Ratio, dag)) -> new_lt4(xwv88, xwv91, dag) 37.19/18.90 new_lt5(xwv88, xwv91, app(app(ty_@2, cae), caf)) -> new_lt10(xwv88, xwv91, cae, caf) 37.19/18.90 new_ltEs20(xwv721, xwv731, ty_Ordering) -> new_ltEs14(xwv721, xwv731) 37.19/18.90 new_esEs9(xwv402, xwv302, ty_Integer) -> new_esEs24(xwv402, xwv302) 37.19/18.90 new_primCompAux00(xwv78, LT) -> LT 37.19/18.90 new_esEs39(xwv280, xwv330, ty_Char) -> new_esEs18(xwv280, xwv330) 37.19/18.90 new_primCmpNat0(Zero, Zero) -> EQ 37.19/18.90 new_esEs27(xwv88, xwv91, app(ty_[], cbb)) -> new_esEs25(xwv88, xwv91, cbb) 37.19/18.90 new_esEs10(xwv400, xwv300, app(app(ty_Either, fcf), fcg)) -> new_esEs17(xwv400, xwv300, fcf, fcg) 37.19/18.90 new_esEs5(xwv401, xwv301, app(ty_Maybe, fba)) -> new_esEs12(xwv401, xwv301, fba) 37.19/18.90 new_ltEs20(xwv721, xwv731, ty_Integer) -> new_ltEs17(xwv721, xwv731) 37.19/18.90 new_esEs17(Right(xwv280), Right(xwv330), eda, ty_Ordering) -> new_esEs14(xwv280, xwv330) 37.19/18.90 new_ltEs10(Just(xwv720), Just(xwv730), ty_Bool) -> new_ltEs8(xwv720, xwv730) 37.19/18.90 new_esEs8(xwv401, xwv301, app(app(ty_@2, ega), egb)) -> new_esEs19(xwv401, xwv301, ega, egb) 37.19/18.90 new_lt6(xwv89, xwv92, ty_Int) -> new_lt7(xwv89, xwv92) 37.19/18.90 new_ltEs16(Right(xwv720), Right(xwv730), bgc, app(app(ty_Either, bhc), bhd)) -> new_ltEs16(xwv720, xwv730, bhc, bhd) 37.19/18.90 new_ltEs19(xwv99, xwv100, ty_Bool) -> new_ltEs8(xwv99, xwv100) 37.19/18.90 new_esEs28(xwv89, xwv92, ty_Bool) -> new_esEs13(xwv89, xwv92) 37.19/18.90 new_esEs34(xwv720, xwv730, ty_Bool) -> new_esEs13(xwv720, xwv730) 37.19/18.90 new_lt6(xwv89, xwv92, app(ty_Ratio, dah)) -> new_lt4(xwv89, xwv92, dah) 37.19/18.90 new_lt22(xwv720, xwv730, app(ty_Ratio, ebc)) -> new_lt4(xwv720, xwv730, ebc) 37.19/18.90 new_ltEs10(Just(xwv720), Just(xwv730), ty_@0) -> new_ltEs4(xwv720, xwv730) 37.19/18.90 new_lt20(xwv720, xwv730, ty_Ordering) -> new_lt16(xwv720, xwv730) 37.19/18.90 new_ltEs16(Left(xwv720), Right(xwv730), bgc, bfc) -> True 37.19/18.90 new_esEs8(xwv401, xwv301, app(app(ty_Either, efg), efh)) -> new_esEs17(xwv401, xwv301, efg, efh) 37.19/18.90 new_esEs6(xwv400, xwv300, ty_Ordering) -> new_esEs14(xwv400, xwv300) 37.19/18.90 new_esEs33(xwv125, xwv127, app(ty_[], fh)) -> new_esEs25(xwv125, xwv127, fh) 37.19/18.90 new_esEs17(Right(xwv280), Right(xwv330), eda, ty_Float) -> new_esEs20(xwv280, xwv330) 37.19/18.90 new_esEs11(xwv400, xwv300, ty_Integer) -> new_esEs24(xwv400, xwv300) 37.19/18.90 new_esEs39(xwv280, xwv330, app(app(app(ty_@3, fhh), gaa), gab)) -> new_esEs23(xwv280, xwv330, fhh, gaa, gab) 37.19/18.90 new_lt5(xwv88, xwv91, ty_Bool) -> new_lt9(xwv88, xwv91) 37.19/18.90 new_primEqNat0(Succ(xwv2800), Zero) -> False 37.19/18.90 new_primEqNat0(Zero, Succ(xwv3300)) -> False 37.19/18.90 new_esEs11(xwv400, xwv300, app(app(ty_Either, fea), feb)) -> new_esEs17(xwv400, xwv300, fea, feb) 37.19/18.90 new_ltEs20(xwv721, xwv731, ty_Double) -> new_ltEs11(xwv721, xwv731) 37.19/18.90 new_esEs18(Char(xwv280), Char(xwv330)) -> new_primEqNat0(xwv280, xwv330) 37.19/18.90 new_esEs38(xwv280, xwv330, ty_Char) -> new_esEs18(xwv280, xwv330) 37.19/18.90 new_ltEs20(xwv721, xwv731, ty_Int) -> new_ltEs6(xwv721, xwv731) 37.19/18.90 new_esEs40(xwv281, xwv331, ty_Ordering) -> new_esEs14(xwv281, xwv331) 37.19/18.90 new_ltEs19(xwv99, xwv100, ty_Int) -> new_ltEs6(xwv99, xwv100) 37.19/18.90 new_esEs12(Just(xwv280), Just(xwv330), app(ty_[], dae)) -> new_esEs25(xwv280, xwv330, dae) 37.19/18.90 new_lt21(xwv125, xwv127, ty_@0) -> new_lt14(xwv125, xwv127) 37.19/18.90 new_esEs9(xwv402, xwv302, app(ty_[], faa)) -> new_esEs25(xwv402, xwv302, faa) 37.19/18.90 new_esEs29(xwv720, xwv730, ty_Bool) -> new_esEs13(xwv720, xwv730) 37.19/18.90 new_esEs30(xwv280, xwv330, ty_Ordering) -> new_esEs14(xwv280, xwv330) 37.19/18.90 new_compare8(:%(xwv400, xwv401), :%(xwv300, xwv301), ty_Integer) -> new_compare15(new_sr0(xwv400, xwv301), new_sr0(xwv300, xwv401)) 37.19/18.90 new_ltEs23(xwv106, xwv107, app(app(ty_@2, cgb), cgc)) -> new_ltEs9(xwv106, xwv107, cgb, cgc) 37.19/18.90 new_lt20(xwv720, xwv730, ty_Integer) -> new_lt19(xwv720, xwv730) 37.19/18.90 new_esEs35(xwv721, xwv731, ty_Bool) -> new_esEs13(xwv721, xwv731) 37.19/18.90 new_ltEs19(xwv99, xwv100, ty_@0) -> new_ltEs4(xwv99, xwv100) 37.19/18.90 new_primCompAux00(xwv78, GT) -> GT 37.19/18.90 new_lt23(xwv721, xwv731, ty_Float) -> new_lt13(xwv721, xwv731) 37.19/18.90 new_esEs31(xwv281, xwv331, app(ty_Ratio, dff)) -> new_esEs21(xwv281, xwv331, dff) 37.19/18.90 new_ltEs14(EQ, EQ) -> True 37.19/18.90 new_esEs4(xwv400, xwv300, ty_@0) -> new_esEs22(xwv400, xwv300) 37.19/18.90 new_ltEs10(Nothing, Just(xwv730), fab) -> True 37.19/18.90 new_esEs11(xwv400, xwv300, app(ty_Maybe, fdh)) -> new_esEs12(xwv400, xwv300, fdh) 37.19/18.90 new_esEs4(xwv400, xwv300, app(app(app(ty_@3, eae), eaf), eag)) -> new_esEs23(xwv400, xwv300, eae, eaf, eag) 37.19/18.90 new_ltEs10(Just(xwv720), Just(xwv730), ty_Double) -> new_ltEs11(xwv720, xwv730) 37.19/18.90 new_ltEs21(xwv126, xwv128, ty_Int) -> new_ltEs6(xwv126, xwv128) 37.19/18.90 new_esEs9(xwv402, xwv302, app(app(app(ty_@3, ehf), ehg), ehh)) -> new_esEs23(xwv402, xwv302, ehf, ehg, ehh) 37.19/18.90 new_ltEs10(Just(xwv720), Just(xwv730), ty_Int) -> new_ltEs6(xwv720, xwv730) 37.19/18.90 new_ltEs21(xwv126, xwv128, ty_Double) -> new_ltEs11(xwv126, xwv128) 37.19/18.90 new_compare28(LT, GT) -> LT 37.19/18.90 new_esEs9(xwv402, xwv302, ty_@0) -> new_esEs22(xwv402, xwv302) 37.19/18.90 new_compare12(xwv177, xwv178, xwv179, xwv180, True, xwv182, dbh, dca) -> new_compare13(xwv177, xwv178, xwv179, xwv180, True, dbh, dca) 37.19/18.90 new_esEs4(xwv400, xwv300, app(app(ty_Either, dhh), eaa)) -> new_esEs17(xwv400, xwv300, dhh, eaa) 37.19/18.90 new_esEs27(xwv88, xwv91, ty_Int) -> new_esEs16(xwv88, xwv91) 37.19/18.90 new_primCmpInt(Pos(Succ(xwv4000)), Neg(xwv300)) -> GT 37.19/18.90 new_lt6(xwv89, xwv92, ty_Ordering) -> new_lt16(xwv89, xwv92) 37.19/18.90 new_ltEs24(xwv72, xwv73, ty_@0) -> new_ltEs4(xwv72, xwv73) 37.19/18.90 new_ltEs14(EQ, LT) -> False 37.19/18.90 new_ltEs10(Just(xwv720), Just(xwv730), app(ty_[], ha)) -> new_ltEs13(xwv720, xwv730, ha) 37.19/18.90 new_esEs33(xwv125, xwv127, ty_Int) -> new_esEs16(xwv125, xwv127) 37.19/18.90 new_esEs40(xwv281, xwv331, ty_Bool) -> new_esEs13(xwv281, xwv331) 37.19/18.90 new_lt14(xwv18, xwv13) -> new_esEs26(new_compare7(xwv18, xwv13)) 37.19/18.90 new_esEs33(xwv125, xwv127, ty_Double) -> new_esEs15(xwv125, xwv127) 37.19/18.90 new_esEs39(xwv280, xwv330, ty_@0) -> new_esEs22(xwv280, xwv330) 37.19/18.90 new_esEs12(Just(xwv280), Just(xwv330), ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.90 new_ltEs24(xwv72, xwv73, ty_Integer) -> new_ltEs17(xwv72, xwv73) 37.19/18.90 new_compare25(xwv99, xwv100, False, dbb, cfa) -> new_compare11(xwv99, xwv100, new_ltEs19(xwv99, xwv100, dbb), dbb, cfa) 37.19/18.90 new_esEs15(Double(xwv280, xwv281), Double(xwv330, xwv331)) -> new_esEs16(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) 37.19/18.90 new_esEs7(xwv400, xwv300, app(app(ty_@2, eeg), eeh)) -> new_esEs19(xwv400, xwv300, eeg, eeh) 37.19/18.90 new_compare31(xwv400, xwv300, ty_Bool) -> new_compare29(xwv400, xwv300) 37.19/18.90 new_esEs31(xwv281, xwv331, app(app(ty_@2, dfd), dfe)) -> new_esEs19(xwv281, xwv331, dfd, dfe) 37.19/18.90 new_primCompAux0(xwv400, xwv300, xwv56, hh) -> new_primCompAux00(xwv56, new_compare31(xwv400, xwv300, hh)) 37.19/18.90 new_esEs38(xwv280, xwv330, ty_Double) -> new_esEs15(xwv280, xwv330) 37.19/18.90 new_lt5(xwv88, xwv91, ty_Int) -> new_lt7(xwv88, xwv91) 37.19/18.90 new_ltEs10(Just(xwv720), Just(xwv730), ty_Char) -> new_ltEs7(xwv720, xwv730) 37.19/18.90 new_lt5(xwv88, xwv91, app(ty_[], cbb)) -> new_lt15(xwv88, xwv91, cbb) 37.19/18.90 new_primCmpNat0(Zero, Succ(xwv3000)) -> LT 37.19/18.90 new_lt20(xwv720, xwv730, app(ty_[], bd)) -> new_lt15(xwv720, xwv730, bd) 37.19/18.90 new_ltEs20(xwv721, xwv731, ty_Bool) -> new_ltEs8(xwv721, xwv731) 37.19/18.90 new_esEs11(xwv400, xwv300, app(ty_[], ffa)) -> new_esEs25(xwv400, xwv300, ffa) 37.19/18.90 new_esEs9(xwv402, xwv302, app(app(ty_Either, eha), ehb)) -> new_esEs17(xwv402, xwv302, eha, ehb) 37.19/18.90 new_ltEs5(xwv90, xwv93, app(ty_Ratio, dba)) -> new_ltEs18(xwv90, xwv93, dba) 37.19/18.90 new_esEs17(Right(xwv280), Right(xwv330), eda, app(app(app(ty_@3, edh), eea), eeb)) -> new_esEs23(xwv280, xwv330, edh, eea, eeb) 37.19/18.90 new_esEs11(xwv400, xwv300, ty_@0) -> new_esEs22(xwv400, xwv300) 37.19/18.90 new_ltEs19(xwv99, xwv100, app(ty_[], cfc)) -> new_ltEs13(xwv99, xwv100, cfc) 37.19/18.90 new_esEs5(xwv401, xwv301, ty_Float) -> new_esEs20(xwv401, xwv301) 37.19/18.90 new_esEs9(xwv402, xwv302, ty_Int) -> new_esEs16(xwv402, xwv302) 37.19/18.90 new_esEs40(xwv281, xwv331, app(app(app(ty_@3, gbb), gbc), gbd)) -> new_esEs23(xwv281, xwv331, gbb, gbc, gbd) 37.19/18.90 new_esEs10(xwv400, xwv300, app(ty_Ratio, fdb)) -> new_esEs21(xwv400, xwv300, fdb) 37.19/18.90 new_primCmpNat0(Succ(xwv4000), Zero) -> GT 37.19/18.90 new_esEs40(xwv281, xwv331, ty_@0) -> new_esEs22(xwv281, xwv331) 37.19/18.90 new_ltEs19(xwv99, xwv100, ty_Char) -> new_ltEs7(xwv99, xwv100) 37.19/18.90 new_ltEs22(xwv722, xwv732, app(app(ty_Either, beg), beh)) -> new_ltEs16(xwv722, xwv732, beg, beh) 37.19/18.90 new_esEs31(xwv281, xwv331, ty_Integer) -> new_esEs24(xwv281, xwv331) 37.19/18.90 new_lt22(xwv720, xwv730, app(ty_Maybe, bbg)) -> new_lt11(xwv720, xwv730, bbg) 37.19/18.90 new_compare13(xwv177, xwv178, xwv179, xwv180, False, dbh, dca) -> GT 37.19/18.90 new_pePe(False, xwv210) -> xwv210 37.19/18.90 new_ltEs10(Just(xwv720), Just(xwv730), app(ty_Maybe, gh)) -> new_ltEs10(xwv720, xwv730, gh) 37.19/18.90 new_esEs33(xwv125, xwv127, app(ty_Ratio, dhe)) -> new_esEs21(xwv125, xwv127, dhe) 37.19/18.90 new_esEs17(Left(xwv280), Left(xwv330), ty_Bool, ebf) -> new_esEs13(xwv280, xwv330) 37.19/18.90 new_esEs17(Right(xwv280), Right(xwv330), eda, ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.90 new_esEs11(xwv400, xwv300, ty_Float) -> new_esEs20(xwv400, xwv300) 37.19/18.90 new_lt5(xwv88, xwv91, app(ty_Maybe, cba)) -> new_lt11(xwv88, xwv91, cba) 37.19/18.90 new_esEs8(xwv401, xwv301, ty_Char) -> new_esEs18(xwv401, xwv301) 37.19/18.90 new_ltEs10(Just(xwv720), Just(xwv730), app(ty_Ratio, fac)) -> new_ltEs18(xwv720, xwv730, fac) 37.19/18.90 new_compare25(xwv99, xwv100, True, dbb, cfa) -> EQ 37.19/18.90 new_ltEs16(Left(xwv720), Left(xwv730), app(ty_Maybe, bfd), bfc) -> new_ltEs10(xwv720, xwv730, bfd) 37.19/18.90 new_esEs39(xwv280, xwv330, app(app(ty_Either, fhc), fhd)) -> new_esEs17(xwv280, xwv330, fhc, fhd) 37.19/18.90 new_lt23(xwv721, xwv731, app(app(app(ty_@3, bdc), bdd), bde)) -> new_lt17(xwv721, xwv731, bdc, bdd, bde) 37.19/18.90 new_compare112(xwv164, xwv165, True, fcc, fcd) -> LT 37.19/18.90 new_esEs38(xwv280, xwv330, ty_Bool) -> new_esEs13(xwv280, xwv330) 37.19/18.90 new_compare16(@2(xwv400, xwv401), @2(xwv300, xwv301), dg, dh) -> new_compare27(xwv400, xwv401, xwv300, xwv301, new_asAs(new_esEs4(xwv400, xwv300, dg), new_esEs5(xwv401, xwv301, dh)), dg, dh) 37.19/18.90 new_esEs5(xwv401, xwv301, ty_@0) -> new_esEs22(xwv401, xwv301) 37.19/18.90 new_esEs33(xwv125, xwv127, ty_Char) -> new_esEs18(xwv125, xwv127) 37.19/18.90 new_esEs4(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 37.19/18.90 new_lt22(xwv720, xwv730, app(ty_[], bbh)) -> new_lt15(xwv720, xwv730, bbh) 37.19/18.90 new_ltEs16(Left(xwv720), Left(xwv730), app(ty_Ratio, dbf), bfc) -> new_ltEs18(xwv720, xwv730, dbf) 37.19/18.90 new_esEs6(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 37.19/18.90 new_esEs30(xwv280, xwv330, app(app(ty_Either, ddh), dea)) -> new_esEs17(xwv280, xwv330, ddh, dea) 37.19/18.90 new_ltEs19(xwv99, xwv100, ty_Integer) -> new_ltEs17(xwv99, xwv100) 37.19/18.90 new_compare31(xwv400, xwv300, ty_Float) -> new_compare19(xwv400, xwv300) 37.19/18.90 new_esEs11(xwv400, xwv300, ty_Int) -> new_esEs16(xwv400, xwv300) 37.19/18.90 new_ltEs24(xwv72, xwv73, ty_Int) -> new_ltEs6(xwv72, xwv73) 37.19/18.90 new_esEs8(xwv401, xwv301, app(ty_Ratio, egc)) -> new_esEs21(xwv401, xwv301, egc) 37.19/18.90 new_esEs7(xwv400, xwv300, app(app(app(ty_@3, efb), efc), efd)) -> new_esEs23(xwv400, xwv300, efb, efc, efd) 37.19/18.90 new_lt21(xwv125, xwv127, ty_Double) -> new_lt12(xwv125, xwv127) 37.19/18.90 new_esEs35(xwv721, xwv731, app(ty_Ratio, ebd)) -> new_esEs21(xwv721, xwv731, ebd) 37.19/18.90 new_esEs32(xwv282, xwv332, ty_@0) -> new_esEs22(xwv282, xwv332) 37.19/18.90 new_compare11(xwv157, xwv158, False, eba, ebb) -> GT 37.19/18.90 new_esEs10(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 37.19/18.90 new_primEqInt(Pos(Zero), Neg(Succ(xwv3300))) -> False 37.19/18.90 new_primEqInt(Neg(Zero), Pos(Succ(xwv3300))) -> False 37.19/18.90 new_esEs34(xwv720, xwv730, ty_Float) -> new_esEs20(xwv720, xwv730) 37.19/18.90 new_ltEs5(xwv90, xwv93, app(ty_[], cde)) -> new_ltEs13(xwv90, xwv93, cde) 37.19/18.90 new_ltEs19(xwv99, xwv100, ty_Ordering) -> new_ltEs14(xwv99, xwv100) 37.19/18.90 new_ltEs23(xwv106, xwv107, ty_Float) -> new_ltEs12(xwv106, xwv107) 37.19/18.90 new_ltEs5(xwv90, xwv93, ty_Char) -> new_ltEs7(xwv90, xwv93) 37.19/18.90 new_esEs34(xwv720, xwv730, ty_Int) -> new_esEs16(xwv720, xwv730) 37.19/18.90 new_esEs7(xwv400, xwv300, ty_Float) -> new_esEs20(xwv400, xwv300) 37.19/18.90 new_lt21(xwv125, xwv127, ty_Int) -> new_lt7(xwv125, xwv127) 37.19/18.90 new_compare31(xwv400, xwv300, ty_Char) -> new_compare6(xwv400, xwv300) 37.19/18.90 new_ltEs20(xwv721, xwv731, app(app(ty_Either, dc), dd)) -> new_ltEs16(xwv721, xwv731, dc, dd) 37.19/18.90 new_esEs10(xwv400, xwv300, ty_Integer) -> new_esEs24(xwv400, xwv300) 37.19/18.90 new_esEs29(xwv720, xwv730, app(app(ty_Either, bh), ca)) -> new_esEs17(xwv720, xwv730, bh, ca) 37.19/18.90 new_ltEs14(EQ, GT) -> True 37.19/18.90 new_esEs5(xwv401, xwv301, ty_Double) -> new_esEs15(xwv401, xwv301) 37.19/18.90 new_ltEs14(GT, EQ) -> False 37.19/18.90 new_esEs38(xwv280, xwv330, ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.90 new_esEs32(xwv282, xwv332, ty_Double) -> new_esEs15(xwv282, xwv332) 37.19/18.90 new_ltEs23(xwv106, xwv107, ty_Integer) -> new_ltEs17(xwv106, xwv107) 37.19/18.90 new_ltEs5(xwv90, xwv93, ty_Ordering) -> new_ltEs14(xwv90, xwv93) 37.19/18.90 new_esEs29(xwv720, xwv730, ty_Char) -> new_esEs18(xwv720, xwv730) 37.19/18.90 new_lt6(xwv89, xwv92, ty_Double) -> new_lt12(xwv89, xwv92) 37.19/18.90 new_esEs28(xwv89, xwv92, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs23(xwv89, xwv92, cce, ccf, ccg) 37.19/18.90 new_primEqInt(Neg(Succ(xwv2800)), Neg(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) 37.19/18.90 new_esEs39(xwv280, xwv330, ty_Ordering) -> new_esEs14(xwv280, xwv330) 37.19/18.90 new_ltEs16(Left(xwv720), Left(xwv730), app(app(ty_@2, bfa), bfb), bfc) -> new_ltEs9(xwv720, xwv730, bfa, bfb) 37.19/18.90 new_esEs30(xwv280, xwv330, ty_@0) -> new_esEs22(xwv280, xwv330) 37.19/18.90 new_primCmpInt(Neg(Zero), Pos(Succ(xwv3000))) -> LT 37.19/18.90 new_ltEs5(xwv90, xwv93, ty_Bool) -> new_ltEs8(xwv90, xwv93) 37.19/18.90 new_esEs17(Left(xwv280), Left(xwv330), ty_Int, ebf) -> new_esEs16(xwv280, xwv330) 37.19/18.90 new_primMulInt(Pos(xwv3000), Pos(xwv4010)) -> Pos(new_primMulNat0(xwv3000, xwv4010)) 37.19/18.90 new_esEs27(xwv88, xwv91, ty_Ordering) -> new_esEs14(xwv88, xwv91) 37.19/18.90 new_ltEs8(True, False) -> False 37.19/18.90 new_ltEs14(LT, GT) -> True 37.19/18.90 new_ltEs14(GT, GT) -> True 37.19/18.90 new_ltEs22(xwv722, xwv732, ty_Int) -> new_ltEs6(xwv722, xwv732) 37.19/18.90 new_esEs9(xwv402, xwv302, ty_Float) -> new_esEs20(xwv402, xwv302) 37.19/18.90 new_esEs5(xwv401, xwv301, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs23(xwv401, xwv301, fbg, fbh, fca) 37.19/18.90 new_ltEs21(xwv126, xwv128, app(app(app(ty_@3, ef), eg), eh)) -> new_ltEs15(xwv126, xwv128, ef, eg, eh) 37.19/18.90 new_esEs28(xwv89, xwv92, ty_Double) -> new_esEs15(xwv89, xwv92) 37.19/18.90 new_compare18(Double(xwv400, Neg(xwv4010)), Double(xwv300, Neg(xwv3010))) -> new_compare14(new_sr(xwv400, Neg(xwv3010)), new_sr(Neg(xwv4010), xwv300)) 37.19/18.90 new_esEs14(LT, GT) -> False 37.19/18.90 new_esEs14(GT, LT) -> False 37.19/18.90 new_esEs17(Right(xwv280), Right(xwv330), eda, app(app(ty_@2, ede), edf)) -> new_esEs19(xwv280, xwv330, ede, edf) 37.19/18.90 new_esEs38(xwv280, xwv330, app(ty_Maybe, fff)) -> new_esEs12(xwv280, xwv330, fff) 37.19/18.90 new_primMulNat0(Succ(xwv30000), Zero) -> Zero 37.19/18.90 new_primMulNat0(Zero, Succ(xwv40100)) -> Zero 37.19/18.90 new_ltEs8(False, False) -> True 37.19/18.90 new_esEs32(xwv282, xwv332, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs23(xwv282, xwv332, dha, dhb, dhc) 37.19/18.90 new_esEs40(xwv281, xwv331, ty_Double) -> new_esEs15(xwv281, xwv331) 37.19/18.90 new_esEs33(xwv125, xwv127, ty_Integer) -> new_esEs24(xwv125, xwv127) 37.19/18.90 new_esEs32(xwv282, xwv332, app(app(ty_Either, dgd), dge)) -> new_esEs17(xwv282, xwv332, dgd, dge) 37.19/18.90 new_esEs5(xwv401, xwv301, app(app(ty_Either, fbb), fbc)) -> new_esEs17(xwv401, xwv301, fbb, fbc) 37.19/18.90 new_esEs6(xwv400, xwv300, ty_Integer) -> new_esEs24(xwv400, xwv300) 37.19/18.90 new_esEs7(xwv400, xwv300, ty_Double) -> new_esEs15(xwv400, xwv300) 37.19/18.90 new_compare26(xwv72, xwv73, True, gbf) -> EQ 37.19/18.90 new_ltEs19(xwv99, xwv100, ty_Float) -> new_ltEs12(xwv99, xwv100) 37.19/18.90 new_esEs12(Just(xwv280), Just(xwv330), ty_Ordering) -> new_esEs14(xwv280, xwv330) 37.19/18.90 new_ltEs16(Right(xwv720), Right(xwv730), bgc, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs15(xwv720, xwv730, bgh, bha, bhb) 37.19/18.90 new_ltEs22(xwv722, xwv732, app(app(ty_@2, bdh), bea)) -> new_ltEs9(xwv722, xwv732, bdh, bea) 37.19/18.90 new_esEs16(xwv28, xwv33) -> new_primEqInt(xwv28, xwv33) 37.19/18.90 new_esEs11(xwv400, xwv300, app(app(ty_@2, fec), fed)) -> new_esEs19(xwv400, xwv300, fec, fed) 37.19/18.90 new_esEs7(xwv400, xwv300, app(app(ty_Either, eee), eef)) -> new_esEs17(xwv400, xwv300, eee, eef) 37.19/18.90 new_primPlusNat0(Succ(xwv16200), Zero) -> Succ(xwv16200) 37.19/18.90 new_primPlusNat0(Zero, Succ(xwv13700)) -> Succ(xwv13700) 37.19/18.90 new_lt17(xwv18, xwv13, bhg, bhh, caa) -> new_esEs26(new_compare30(xwv18, xwv13, bhg, bhh, caa)) 37.19/18.90 new_esEs20(Float(xwv280, xwv281), Float(xwv330, xwv331)) -> new_esEs16(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) 37.19/18.90 new_esEs35(xwv721, xwv731, app(app(ty_@2, bcg), bch)) -> new_esEs19(xwv721, xwv731, bcg, bch) 37.19/18.90 new_lt23(xwv721, xwv731, ty_Int) -> new_lt7(xwv721, xwv731) 37.19/18.90 new_esEs8(xwv401, xwv301, app(ty_[], egg)) -> new_esEs25(xwv401, xwv301, egg) 37.19/18.90 new_compare19(Float(xwv400, Pos(xwv4010)), Float(xwv300, Pos(xwv3010))) -> new_compare14(new_sr(xwv400, Pos(xwv3010)), new_sr(Pos(xwv4010), xwv300)) 37.19/18.90 new_ltEs5(xwv90, xwv93, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_ltEs15(xwv90, xwv93, cdf, cdg, cdh) 37.19/18.90 new_esEs6(xwv400, xwv300, app(app(ty_Either, dcc), dcd)) -> new_esEs17(xwv400, xwv300, dcc, dcd) 37.19/18.90 new_compare1([], [], hh) -> EQ 37.19/18.90 new_lt22(xwv720, xwv730, app(app(ty_@2, bbc), bbd)) -> new_lt10(xwv720, xwv730, bbc, bbd) 37.19/18.90 new_compare29(False, False) -> EQ 37.19/18.90 new_ltEs20(xwv721, xwv731, ty_Float) -> new_ltEs12(xwv721, xwv731) 37.19/18.90 new_esEs31(xwv281, xwv331, ty_Float) -> new_esEs20(xwv281, xwv331) 37.19/18.90 new_esEs8(xwv401, xwv301, ty_Integer) -> new_esEs24(xwv401, xwv301) 37.19/18.90 new_esEs10(xwv400, xwv300, app(app(ty_@2, fch), fda)) -> new_esEs19(xwv400, xwv300, fch, fda) 37.19/18.90 new_lt6(xwv89, xwv92, app(app(ty_@2, cca), ccb)) -> new_lt10(xwv89, xwv92, cca, ccb) 37.19/18.90 new_esEs6(xwv400, xwv300, app(ty_[], ddc)) -> new_esEs25(xwv400, xwv300, ddc) 37.19/18.90 new_esEs33(xwv125, xwv127, app(app(ty_@2, fc), fd)) -> new_esEs19(xwv125, xwv127, fc, fd) 37.19/18.90 new_lt22(xwv720, xwv730, ty_Int) -> new_lt7(xwv720, xwv730) 37.19/18.90 new_esEs29(xwv720, xwv730, app(app(app(ty_@3, be), bf), bg)) -> new_esEs23(xwv720, xwv730, be, bf, bg) 37.19/18.90 new_esEs9(xwv402, xwv302, app(app(ty_@2, ehc), ehd)) -> new_esEs19(xwv402, xwv302, ehc, ehd) 37.19/18.90 new_compare9(Just(xwv400), Just(xwv300), bbb) -> new_compare26(xwv400, xwv300, new_esEs6(xwv400, xwv300, bbb), bbb) 37.19/18.90 new_esEs17(Right(xwv280), Right(xwv330), eda, ty_Char) -> new_esEs18(xwv280, xwv330) 37.19/18.90 new_esEs30(xwv280, xwv330, ty_Char) -> new_esEs18(xwv280, xwv330) 37.19/18.90 new_ltEs21(xwv126, xwv128, ty_Integer) -> new_ltEs17(xwv126, xwv128) 37.19/18.90 new_esEs13(True, True) -> True 37.19/18.90 new_lt21(xwv125, xwv127, app(app(ty_@2, fc), fd)) -> new_lt10(xwv125, xwv127, fc, fd) 37.19/18.90 new_ltEs16(Right(xwv720), Right(xwv730), bgc, ty_Char) -> new_ltEs7(xwv720, xwv730) 37.19/18.90 new_lt20(xwv720, xwv730, app(ty_Maybe, bc)) -> new_lt11(xwv720, xwv730, bc) 37.19/18.90 new_ltEs20(xwv721, xwv731, app(app(app(ty_@3, cg), da), db)) -> new_ltEs15(xwv721, xwv731, cg, da, db) 37.19/18.90 new_ltEs16(Right(xwv720), Right(xwv730), bgc, ty_Bool) -> new_ltEs8(xwv720, xwv730) 37.19/18.90 new_esEs7(xwv400, xwv300, ty_Integer) -> new_esEs24(xwv400, xwv300) 37.19/18.90 new_esEs29(xwv720, xwv730, ty_Double) -> new_esEs15(xwv720, xwv730) 37.19/18.90 new_esEs31(xwv281, xwv331, app(app(app(ty_@3, dfg), dfh), dga)) -> new_esEs23(xwv281, xwv331, dfg, dfh, dga) 37.19/18.90 new_lt23(xwv721, xwv731, app(ty_[], bdb)) -> new_lt15(xwv721, xwv731, bdb) 37.19/18.90 new_lt23(xwv721, xwv731, ty_Ordering) -> new_lt16(xwv721, xwv731) 37.19/18.90 new_ltEs6(xwv72, xwv73) -> new_fsEs(new_compare14(xwv72, xwv73)) 37.19/18.90 new_esEs38(xwv280, xwv330, ty_Ordering) -> new_esEs14(xwv280, xwv330) 37.19/18.90 new_ltEs16(Left(xwv720), Left(xwv730), ty_Int, bfc) -> new_ltEs6(xwv720, xwv730) 37.19/18.90 new_esEs31(xwv281, xwv331, ty_@0) -> new_esEs22(xwv281, xwv331) 37.19/18.90 new_compare111(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, True, fae, faf, fag) -> LT 37.19/18.90 new_esEs30(xwv280, xwv330, app(app(app(ty_@3, dee), def), deg)) -> new_esEs23(xwv280, xwv330, dee, def, deg) 37.19/18.90 new_primMulInt(Neg(xwv3000), Neg(xwv4010)) -> Pos(new_primMulNat0(xwv3000, xwv4010)) 37.19/18.90 new_primCmpInt(Pos(Zero), Pos(Succ(xwv3000))) -> new_primCmpNat0(Zero, Succ(xwv3000)) 37.19/18.90 new_esEs17(Right(xwv280), Right(xwv330), eda, ty_Double) -> new_esEs15(xwv280, xwv330) 37.19/18.90 new_ltEs22(xwv722, xwv732, ty_Integer) -> new_ltEs17(xwv722, xwv732) 37.19/18.90 new_lt4(xwv18, xwv13, daf) -> new_esEs26(new_compare8(xwv18, xwv13, daf)) 37.19/18.90 new_esEs31(xwv281, xwv331, app(ty_[], dgb)) -> new_esEs25(xwv281, xwv331, dgb) 37.19/18.90 new_compare17(Left(xwv400), Right(xwv300), cee, cef) -> LT 37.19/18.90 new_esEs31(xwv281, xwv331, app(app(ty_Either, dfb), dfc)) -> new_esEs17(xwv281, xwv331, dfb, dfc) 37.19/18.90 new_esEs6(xwv400, xwv300, ty_Double) -> new_esEs15(xwv400, xwv300) 37.19/18.90 new_ltEs21(xwv126, xwv128, app(app(ty_Either, fa), fb)) -> new_ltEs16(xwv126, xwv128, fa, fb) 37.19/18.90 new_ltEs16(Left(xwv720), Left(xwv730), app(ty_[], bfe), bfc) -> new_ltEs13(xwv720, xwv730, bfe) 37.19/18.90 new_esEs11(xwv400, xwv300, app(ty_Ratio, fee)) -> new_esEs21(xwv400, xwv300, fee) 37.19/18.90 new_esEs7(xwv400, xwv300, ty_@0) -> new_esEs22(xwv400, xwv300) 37.19/18.90 new_compare19(Float(xwv400, Neg(xwv4010)), Float(xwv300, Neg(xwv3010))) -> new_compare14(new_sr(xwv400, Neg(xwv3010)), new_sr(Neg(xwv4010), xwv300)) 37.19/18.90 new_ltEs19(xwv99, xwv100, app(app(app(ty_@3, cfd), cfe), cff)) -> new_ltEs15(xwv99, xwv100, cfd, cfe, cff) 37.19/18.90 new_esEs31(xwv281, xwv331, ty_Char) -> new_esEs18(xwv281, xwv331) 37.19/18.90 new_esEs19(@2(xwv280, xwv281), @2(xwv330, xwv331), fgh, fha) -> new_asAs(new_esEs39(xwv280, xwv330, fgh), new_esEs40(xwv281, xwv331, fha)) 37.19/18.90 new_ltEs16(Right(xwv720), Right(xwv730), bgc, ty_Ordering) -> new_ltEs14(xwv720, xwv730) 37.19/18.90 new_lt23(xwv721, xwv731, ty_Double) -> new_lt12(xwv721, xwv731) 37.19/18.90 new_ltEs21(xwv126, xwv128, ty_Float) -> new_ltEs12(xwv126, xwv128) 37.19/18.90 new_esEs34(xwv720, xwv730, app(ty_Ratio, ebc)) -> new_esEs21(xwv720, xwv730, ebc) 37.19/18.90 new_compare24(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, cag, cah) -> new_compare10(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, new_lt5(xwv88, xwv91, cbh), new_asAs(new_esEs27(xwv88, xwv91, cbh), new_pePe(new_lt6(xwv89, xwv92, cag), new_asAs(new_esEs28(xwv89, xwv92, cag), new_ltEs5(xwv90, xwv93, cah)))), cbh, cag, cah) 37.19/18.90 new_esEs30(xwv280, xwv330, ty_Double) -> new_esEs15(xwv280, xwv330) 37.19/18.90 new_ltEs8(False, True) -> True 37.19/18.90 new_esEs34(xwv720, xwv730, app(app(ty_@2, bbc), bbd)) -> new_esEs19(xwv720, xwv730, bbc, bbd) 37.19/18.90 new_compare29(True, False) -> GT 37.19/18.90 new_esEs7(xwv400, xwv300, app(ty_[], efe)) -> new_esEs25(xwv400, xwv300, efe) 37.19/18.90 new_esEs32(xwv282, xwv332, ty_Float) -> new_esEs20(xwv282, xwv332) 37.19/18.90 new_esEs36(xwv280, xwv330, ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.90 new_ltEs16(Right(xwv720), Right(xwv730), bgc, ty_Double) -> new_ltEs11(xwv720, xwv730) 37.19/18.90 new_ltEs21(xwv126, xwv128, app(app(ty_@2, eb), ec)) -> new_ltEs9(xwv126, xwv128, eb, ec) 37.19/18.90 new_ltEs14(GT, LT) -> False 37.19/18.90 new_esEs33(xwv125, xwv127, ty_@0) -> new_esEs22(xwv125, xwv127) 37.19/18.90 new_esEs17(Left(xwv280), Left(xwv330), app(ty_Ratio, ecd), ebf) -> new_esEs21(xwv280, xwv330, ecd) 37.19/18.90 new_esEs6(xwv400, xwv300, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs23(xwv400, xwv300, dch, dda, ddb) 37.19/18.90 new_ltEs23(xwv106, xwv107, ty_Double) -> new_ltEs11(xwv106, xwv107) 37.19/18.90 new_ltEs12(xwv72, xwv73) -> new_fsEs(new_compare19(xwv72, xwv73)) 37.19/18.90 new_esEs6(xwv400, xwv300, ty_@0) -> new_esEs22(xwv400, xwv300) 37.19/18.90 new_lt6(xwv89, xwv92, app(ty_Maybe, ccc)) -> new_lt11(xwv89, xwv92, ccc) 37.19/18.90 new_primMulInt(Pos(xwv3000), Neg(xwv4010)) -> Neg(new_primMulNat0(xwv3000, xwv4010)) 37.19/18.90 new_primMulInt(Neg(xwv3000), Pos(xwv4010)) -> Neg(new_primMulNat0(xwv3000, xwv4010)) 37.19/18.90 new_esEs33(xwv125, xwv127, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs23(xwv125, xwv127, ga, gb, gc) 37.19/18.90 new_ltEs23(xwv106, xwv107, ty_Int) -> new_ltEs6(xwv106, xwv107) 37.19/18.90 new_esEs17(Right(xwv280), Right(xwv330), eda, app(ty_Ratio, edg)) -> new_esEs21(xwv280, xwv330, edg) 37.19/18.90 new_compare10(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, False, xwv199, fae, faf, fag) -> new_compare111(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, xwv199, fae, faf, fag) 37.19/18.90 new_esEs40(xwv281, xwv331, app(ty_Ratio, gba)) -> new_esEs21(xwv281, xwv331, gba) 37.19/18.90 new_esEs8(xwv401, xwv301, ty_Double) -> new_esEs15(xwv401, xwv301) 37.19/18.90 new_esEs11(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 37.19/18.90 new_lt23(xwv721, xwv731, app(app(ty_Either, bdf), bdg)) -> new_lt18(xwv721, xwv731, bdf, bdg) 37.19/18.90 new_esEs35(xwv721, xwv731, ty_Float) -> new_esEs20(xwv721, xwv731) 37.19/18.90 new_ltEs13(xwv72, xwv73, hg) -> new_fsEs(new_compare1(xwv72, xwv73, hg)) 37.19/18.90 new_esEs29(xwv720, xwv730, ty_Int) -> new_esEs16(xwv720, xwv730) 37.19/18.90 new_lt21(xwv125, xwv127, ty_Float) -> new_lt13(xwv125, xwv127) 37.19/18.90 new_compare15(Integer(xwv400), Integer(xwv300)) -> new_primCmpInt(xwv400, xwv300) 37.19/18.90 new_esEs8(xwv401, xwv301, ty_Int) -> new_esEs16(xwv401, xwv301) 37.19/18.90 new_esEs39(xwv280, xwv330, app(ty_[], gac)) -> new_esEs25(xwv280, xwv330, gac) 37.19/18.90 new_esEs35(xwv721, xwv731, ty_Int) -> new_esEs16(xwv721, xwv731) 37.19/18.90 new_ltEs22(xwv722, xwv732, ty_@0) -> new_ltEs4(xwv722, xwv732) 37.19/18.90 new_esEs8(xwv401, xwv301, ty_Float) -> new_esEs20(xwv401, xwv301) 37.19/18.90 new_ltEs10(Just(xwv720), Just(xwv730), app(app(ty_@2, gf), gg)) -> new_ltEs9(xwv720, xwv730, gf, gg) 37.19/18.90 new_esEs27(xwv88, xwv91, ty_@0) -> new_esEs22(xwv88, xwv91) 37.19/18.90 new_lt6(xwv89, xwv92, ty_@0) -> new_lt14(xwv89, xwv92) 37.19/18.90 new_ltEs18(xwv72, xwv73, fdg) -> new_fsEs(new_compare8(xwv72, xwv73, fdg)) 37.19/18.90 new_esEs30(xwv280, xwv330, ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.90 new_sr0(Integer(xwv3000), Integer(xwv4010)) -> Integer(new_primMulInt(xwv3000, xwv4010)) 37.19/18.90 new_esEs35(xwv721, xwv731, ty_Double) -> new_esEs15(xwv721, xwv731) 37.19/18.90 new_ltEs16(Right(xwv720), Right(xwv730), bgc, ty_Float) -> new_ltEs12(xwv720, xwv730) 37.19/18.90 new_ltEs24(xwv72, xwv73, app(ty_Maybe, fab)) -> new_ltEs10(xwv72, xwv73, fab) 37.19/18.90 new_esEs29(xwv720, xwv730, app(ty_Maybe, bc)) -> new_esEs12(xwv720, xwv730, bc) 37.19/18.90 new_esEs10(xwv400, xwv300, ty_Float) -> new_esEs20(xwv400, xwv300) 37.19/18.90 new_ltEs23(xwv106, xwv107, app(app(ty_Either, cha), chb)) -> new_ltEs16(xwv106, xwv107, cha, chb) 37.19/18.90 new_esEs40(xwv281, xwv331, ty_Integer) -> new_esEs24(xwv281, xwv331) 37.19/18.90 new_esEs35(xwv721, xwv731, app(ty_Maybe, bda)) -> new_esEs12(xwv721, xwv731, bda) 37.19/18.90 new_ltEs24(xwv72, xwv73, app(app(app(ty_@3, bcf), bbe), bbf)) -> new_ltEs15(xwv72, xwv73, bcf, bbe, bbf) 37.19/18.90 new_esEs13(False, False) -> True 37.19/18.90 new_compare31(xwv400, xwv300, ty_Integer) -> new_compare15(xwv400, xwv300) 37.19/18.90 new_esEs38(xwv280, xwv330, app(app(ty_Either, ffg), ffh)) -> new_esEs17(xwv280, xwv330, ffg, ffh) 37.19/18.90 new_lt7(xwv18, xwv13) -> new_esEs26(new_compare14(xwv18, xwv13)) 37.19/18.90 new_ltEs16(Right(xwv720), Right(xwv730), bgc, app(app(ty_@2, bgd), bge)) -> new_ltEs9(xwv720, xwv730, bgd, bge) 37.19/18.90 new_lt9(xwv18, xwv13) -> new_esEs26(new_compare29(xwv18, xwv13)) 37.19/18.90 new_esEs14(EQ, GT) -> False 37.19/18.90 new_esEs14(GT, EQ) -> False 37.19/18.90 new_esEs5(xwv401, xwv301, ty_Char) -> new_esEs18(xwv401, xwv301) 37.19/18.90 new_compare31(xwv400, xwv300, app(app(ty_@2, baa), bab)) -> new_compare16(xwv400, xwv300, baa, bab) 37.19/18.90 new_ltEs24(xwv72, xwv73, ty_Char) -> new_ltEs7(xwv72, xwv73) 37.19/18.90 new_esEs17(Left(xwv280), Left(xwv330), app(app(ty_@2, ecb), ecc), ebf) -> new_esEs19(xwv280, xwv330, ecb, ecc) 37.19/18.90 new_esEs32(xwv282, xwv332, app(app(ty_@2, dgf), dgg)) -> new_esEs19(xwv282, xwv332, dgf, dgg) 37.19/18.90 new_lt6(xwv89, xwv92, app(ty_[], ccd)) -> new_lt15(xwv89, xwv92, ccd) 37.19/18.90 new_lt22(xwv720, xwv730, ty_Double) -> new_lt12(xwv720, xwv730) 37.19/18.90 new_esEs32(xwv282, xwv332, ty_Char) -> new_esEs18(xwv282, xwv332) 37.19/18.90 new_esEs8(xwv401, xwv301, app(ty_Maybe, eff)) -> new_esEs12(xwv401, xwv301, eff) 37.19/18.90 new_asAs(True, xwv135) -> xwv135 37.19/18.90 new_esEs30(xwv280, xwv330, app(ty_Maybe, ddg)) -> new_esEs12(xwv280, xwv330, ddg) 37.19/18.90 new_ltEs16(Right(xwv720), Right(xwv730), bgc, ty_@0) -> new_ltEs4(xwv720, xwv730) 37.19/18.90 new_esEs22(@0, @0) -> True 37.19/18.90 new_lt20(xwv720, xwv730, app(ty_Ratio, dbd)) -> new_lt4(xwv720, xwv730, dbd) 37.19/18.90 new_esEs5(xwv401, xwv301, app(app(ty_@2, fbd), fbe)) -> new_esEs19(xwv401, xwv301, fbd, fbe) 37.19/18.90 new_lt20(xwv720, xwv730, app(app(ty_@2, h), ba)) -> new_lt10(xwv720, xwv730, h, ba) 37.19/18.90 new_esEs17(Right(xwv280), Right(xwv330), eda, ty_@0) -> new_esEs22(xwv280, xwv330) 37.19/18.90 new_esEs11(xwv400, xwv300, ty_Ordering) -> new_esEs14(xwv400, xwv300) 37.19/18.90 new_esEs31(xwv281, xwv331, ty_Double) -> new_esEs15(xwv281, xwv331) 37.19/18.90 new_esEs39(xwv280, xwv330, ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.90 new_esEs29(xwv720, xwv730, app(ty_[], bd)) -> new_esEs25(xwv720, xwv730, bd) 37.19/18.90 new_lt15(xwv18, xwv13, bhf) -> new_esEs26(new_compare1(xwv18, xwv13, bhf)) 37.19/18.90 new_ltEs20(xwv721, xwv731, app(app(ty_@2, cc), cd)) -> new_ltEs9(xwv721, xwv731, cc, cd) 37.19/18.90 new_ltEs16(Right(xwv720), Left(xwv730), bgc, bfc) -> False 37.19/18.90 new_esEs4(xwv400, xwv300, ty_Double) -> new_esEs15(xwv400, xwv300) 37.19/18.90 new_ltEs22(xwv722, xwv732, ty_Ordering) -> new_ltEs14(xwv722, xwv732) 37.19/18.90 new_ltEs22(xwv722, xwv732, ty_Float) -> new_ltEs12(xwv722, xwv732) 37.19/18.90 new_ltEs16(Right(xwv720), Right(xwv730), bgc, ty_Integer) -> new_ltEs17(xwv720, xwv730) 37.19/18.90 new_esEs30(xwv280, xwv330, app(ty_Ratio, ded)) -> new_esEs21(xwv280, xwv330, ded) 37.19/18.90 new_compare31(xwv400, xwv300, ty_@0) -> new_compare7(xwv400, xwv300) 37.19/18.90 new_lt21(xwv125, xwv127, ty_Char) -> new_lt8(xwv125, xwv127) 37.19/18.90 new_compare26(xwv72, xwv73, False, gbf) -> new_compare110(xwv72, xwv73, new_ltEs24(xwv72, xwv73, gbf), gbf) 37.19/18.90 new_lt22(xwv720, xwv730, ty_Ordering) -> new_lt16(xwv720, xwv730) 37.19/18.90 new_ltEs19(xwv99, xwv100, app(app(ty_@2, ceg), ceh)) -> new_ltEs9(xwv99, xwv100, ceg, ceh) 37.19/18.90 new_ltEs8(True, True) -> True 37.19/18.90 new_primCmpInt(Pos(Succ(xwv4000)), Pos(xwv300)) -> new_primCmpNat0(Succ(xwv4000), xwv300) 37.19/18.90 new_esEs38(xwv280, xwv330, ty_@0) -> new_esEs22(xwv280, xwv330) 37.19/18.90 new_esEs30(xwv280, xwv330, app(ty_[], deh)) -> new_esEs25(xwv280, xwv330, deh) 37.19/18.90 new_esEs9(xwv402, xwv302, ty_Ordering) -> new_esEs14(xwv402, xwv302) 37.19/18.90 new_lt23(xwv721, xwv731, ty_@0) -> new_lt14(xwv721, xwv731) 37.19/18.90 new_esEs10(xwv400, xwv300, app(ty_Maybe, fce)) -> new_esEs12(xwv400, xwv300, fce) 37.19/18.90 new_lt11(xwv18, xwv13, bhe) -> new_esEs26(new_compare9(xwv18, xwv13, bhe)) 37.19/18.90 new_ltEs5(xwv90, xwv93, ty_Double) -> new_ltEs11(xwv90, xwv93) 37.19/18.90 new_primCompAux00(xwv78, EQ) -> xwv78 37.19/18.90 new_ltEs5(xwv90, xwv93, ty_Int) -> new_ltEs6(xwv90, xwv93) 37.19/18.90 new_sr(xwv300, xwv401) -> new_primMulInt(xwv300, xwv401) 37.19/18.90 new_esEs17(Right(xwv280), Right(xwv330), eda, app(ty_[], eec)) -> new_esEs25(xwv280, xwv330, eec) 37.19/18.90 new_esEs38(xwv280, xwv330, app(ty_Ratio, fgc)) -> new_esEs21(xwv280, xwv330, fgc) 37.19/18.90 new_esEs29(xwv720, xwv730, ty_Integer) -> new_esEs24(xwv720, xwv730) 37.19/18.90 new_esEs27(xwv88, xwv91, ty_Bool) -> new_esEs13(xwv88, xwv91) 37.19/18.90 new_lt21(xwv125, xwv127, ty_Bool) -> new_lt9(xwv125, xwv127) 37.19/18.90 new_lt8(xwv18, xwv13) -> new_esEs26(new_compare6(xwv18, xwv13)) 37.19/18.90 new_primMulNat0(Zero, Zero) -> Zero 37.19/18.90 new_esEs39(xwv280, xwv330, ty_Float) -> new_esEs20(xwv280, xwv330) 37.19/18.90 new_esEs4(xwv400, xwv300, ty_Int) -> new_esEs16(xwv400, xwv300) 37.19/18.90 new_esEs39(xwv280, xwv330, ty_Double) -> new_esEs15(xwv280, xwv330) 37.19/18.90 new_lt21(xwv125, xwv127, ty_Ordering) -> new_lt16(xwv125, xwv127) 37.19/18.90 new_compare28(EQ, LT) -> GT 37.19/18.90 new_esEs10(xwv400, xwv300, app(ty_[], fdf)) -> new_esEs25(xwv400, xwv300, fdf) 37.19/18.90 new_esEs12(Just(xwv280), Just(xwv330), ty_Bool) -> new_esEs13(xwv280, xwv330) 37.19/18.90 new_compare31(xwv400, xwv300, app(ty_[], bad)) -> new_compare1(xwv400, xwv300, bad) 37.19/18.90 new_esEs27(xwv88, xwv91, app(app(ty_Either, cbf), cbg)) -> new_esEs17(xwv88, xwv91, cbf, cbg) 37.19/18.90 new_primMulNat0(Succ(xwv30000), Succ(xwv40100)) -> new_primPlusNat0(new_primMulNat0(xwv30000, Succ(xwv40100)), Succ(xwv40100)) 37.19/18.90 new_esEs11(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 37.19/18.90 new_esEs35(xwv721, xwv731, app(ty_[], bdb)) -> new_esEs25(xwv721, xwv731, bdb) 37.19/18.90 new_ltEs5(xwv90, xwv93, app(app(ty_Either, cea), ceb)) -> new_ltEs16(xwv90, xwv93, cea, ceb) 37.19/18.90 new_compare17(Right(xwv400), Left(xwv300), cee, cef) -> GT 37.19/18.90 new_ltEs24(xwv72, xwv73, app(ty_[], hg)) -> new_ltEs13(xwv72, xwv73, hg) 37.19/18.90 new_lt5(xwv88, xwv91, ty_Integer) -> new_lt19(xwv88, xwv91) 37.19/18.90 new_esEs4(xwv400, xwv300, ty_Float) -> new_esEs20(xwv400, xwv300) 37.19/18.90 new_esEs4(xwv400, xwv300, ty_Ordering) -> new_esEs14(xwv400, xwv300) 37.19/18.90 new_esEs17(Left(xwv280), Left(xwv330), ty_Float, ebf) -> new_esEs20(xwv280, xwv330) 37.19/18.90 new_esEs33(xwv125, xwv127, app(app(ty_Either, gd), ge)) -> new_esEs17(xwv125, xwv127, gd, ge) 37.19/18.90 new_compare1(:(xwv400, xwv401), :(xwv300, xwv301), hh) -> new_primCompAux0(xwv400, xwv300, new_compare1(xwv401, xwv301, hh), hh) 37.19/18.90 new_esEs17(Left(xwv280), Left(xwv330), app(ty_Maybe, ebg), ebf) -> new_esEs12(xwv280, xwv330, ebg) 37.19/18.90 new_compare10(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, True, xwv199, fae, faf, fag) -> new_compare111(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, True, fae, faf, fag) 37.19/18.90 new_ltEs21(xwv126, xwv128, ty_Ordering) -> new_ltEs14(xwv126, xwv128) 37.19/18.90 new_esEs4(xwv400, xwv300, app(ty_Maybe, dhg)) -> new_esEs12(xwv400, xwv300, dhg) 37.19/18.90 new_esEs28(xwv89, xwv92, ty_Integer) -> new_esEs24(xwv89, xwv92) 37.19/18.90 new_esEs17(Left(xwv280), Left(xwv330), app(ty_[], ech), ebf) -> new_esEs25(xwv280, xwv330, ech) 37.19/18.90 new_ltEs5(xwv90, xwv93, ty_Float) -> new_ltEs12(xwv90, xwv93) 37.19/18.90 new_esEs35(xwv721, xwv731, ty_Integer) -> new_esEs24(xwv721, xwv731) 37.19/18.90 new_lt5(xwv88, xwv91, ty_Ordering) -> new_lt16(xwv88, xwv91) 37.19/18.90 new_esEs6(xwv400, xwv300, app(app(ty_@2, dce), dcf)) -> new_esEs19(xwv400, xwv300, dce, dcf) 37.19/18.90 new_esEs40(xwv281, xwv331, ty_Int) -> new_esEs16(xwv281, xwv331) 37.19/18.90 new_compare18(Double(xwv400, Pos(xwv4010)), Double(xwv300, Pos(xwv3010))) -> new_compare14(new_sr(xwv400, Pos(xwv3010)), new_sr(Pos(xwv4010), xwv300)) 37.19/18.90 new_esEs38(xwv280, xwv330, app(app(app(ty_@3, fgd), fge), fgf)) -> new_esEs23(xwv280, xwv330, fgd, fge, fgf) 37.19/18.90 new_compare29(False, True) -> LT 37.19/18.90 new_esEs28(xwv89, xwv92, app(app(ty_Either, cch), cda)) -> new_esEs17(xwv89, xwv92, cch, cda) 37.19/18.90 new_lt21(xwv125, xwv127, app(ty_Ratio, dhe)) -> new_lt4(xwv125, xwv127, dhe) 37.19/18.90 new_esEs40(xwv281, xwv331, app(app(ty_Either, gae), gaf)) -> new_esEs17(xwv281, xwv331, gae, gaf) 37.19/18.90 new_esEs30(xwv280, xwv330, ty_Float) -> new_esEs20(xwv280, xwv330) 37.19/18.90 new_esEs34(xwv720, xwv730, app(app(ty_Either, bcd), bce)) -> new_esEs17(xwv720, xwv730, bcd, bce) 37.19/18.90 new_esEs25(:(xwv280, xwv281), [], ffe) -> False 37.19/18.90 new_esEs25([], :(xwv330, xwv331), ffe) -> False 37.19/18.90 new_ltEs5(xwv90, xwv93, ty_Integer) -> new_ltEs17(xwv90, xwv93) 37.19/18.90 new_compare28(EQ, EQ) -> EQ 37.19/18.90 new_esEs10(xwv400, xwv300, ty_Int) -> new_esEs16(xwv400, xwv300) 37.19/18.90 new_compare111(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, False, fae, faf, fag) -> GT 37.19/18.90 new_esEs39(xwv280, xwv330, app(ty_Maybe, fhb)) -> new_esEs12(xwv280, xwv330, fhb) 37.19/18.90 new_ltEs23(xwv106, xwv107, app(ty_Maybe, cgd)) -> new_ltEs10(xwv106, xwv107, cgd) 37.19/18.90 new_esEs34(xwv720, xwv730, app(ty_Maybe, bbg)) -> new_esEs12(xwv720, xwv730, bbg) 37.19/18.90 new_esEs5(xwv401, xwv301, ty_Bool) -> new_esEs13(xwv401, xwv301) 37.19/18.90 new_lt20(xwv720, xwv730, ty_Char) -> new_lt8(xwv720, xwv730) 37.19/18.90 new_esEs34(xwv720, xwv730, ty_Integer) -> new_esEs24(xwv720, xwv730) 37.19/18.90 new_esEs28(xwv89, xwv92, ty_@0) -> new_esEs22(xwv89, xwv92) 37.19/18.90 new_ltEs24(xwv72, xwv73, app(ty_Ratio, fdg)) -> new_ltEs18(xwv72, xwv73, fdg) 37.19/18.90 new_compare27(xwv125, xwv126, xwv127, xwv128, True, ea, ff) -> EQ 37.19/18.90 new_ltEs20(xwv721, xwv731, ty_Char) -> new_ltEs7(xwv721, xwv731) 37.19/18.90 new_primEqInt(Neg(Succ(xwv2800)), Neg(Zero)) -> False 37.19/18.90 new_primEqInt(Neg(Zero), Neg(Succ(xwv3300))) -> False 37.19/18.90 new_esEs12(Just(xwv280), Just(xwv330), app(app(app(ty_@3, dab), dac), dad)) -> new_esEs23(xwv280, xwv330, dab, dac, dad) 37.19/18.90 new_esEs12(Just(xwv280), Just(xwv330), ty_@0) -> new_esEs22(xwv280, xwv330) 37.19/18.90 new_esEs17(Right(xwv280), Right(xwv330), eda, app(ty_Maybe, edb)) -> new_esEs12(xwv280, xwv330, edb) 37.19/18.90 new_esEs21(:%(xwv280, xwv281), :%(xwv330, xwv331), fah) -> new_asAs(new_esEs36(xwv280, xwv330, fah), new_esEs37(xwv281, xwv331, fah)) 37.19/18.90 new_compare24(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, True, cbh, cag, cah) -> EQ 37.19/18.90 new_primEqInt(Pos(Succ(xwv2800)), Pos(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) 37.19/18.90 new_esEs29(xwv720, xwv730, ty_Float) -> new_esEs20(xwv720, xwv730) 37.19/18.90 new_esEs13(False, True) -> False 37.19/18.90 new_esEs13(True, False) -> False 37.19/18.90 new_esEs39(xwv280, xwv330, ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.90 new_esEs17(Left(xwv280), Left(xwv330), ty_Ordering, ebf) -> new_esEs14(xwv280, xwv330) 37.19/18.90 new_esEs17(Left(xwv280), Right(xwv330), eda, ebf) -> False 37.19/18.90 new_esEs17(Right(xwv280), Left(xwv330), eda, ebf) -> False 37.19/18.90 new_ltEs24(xwv72, xwv73, app(app(ty_@2, cb), bb)) -> new_ltEs9(xwv72, xwv73, cb, bb) 37.19/18.90 new_compare9(Nothing, Just(xwv300), bbb) -> LT 37.19/18.90 new_lt22(xwv720, xwv730, ty_@0) -> new_lt14(xwv720, xwv730) 37.19/18.90 new_esEs27(xwv88, xwv91, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_esEs23(xwv88, xwv91, cbc, cbd, cbe) 37.19/18.90 new_esEs35(xwv721, xwv731, ty_Ordering) -> new_esEs14(xwv721, xwv731) 37.19/18.90 new_esEs12(Just(xwv280), Just(xwv330), app(app(ty_Either, che), chf)) -> new_esEs17(xwv280, xwv330, che, chf) 37.19/18.90 new_esEs34(xwv720, xwv730, ty_@0) -> new_esEs22(xwv720, xwv730) 37.19/18.90 new_esEs4(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 37.19/18.90 new_esEs28(xwv89, xwv92, app(ty_[], ccd)) -> new_esEs25(xwv89, xwv92, ccd) 37.19/18.90 new_lt20(xwv720, xwv730, ty_Bool) -> new_lt9(xwv720, xwv730) 37.19/18.90 new_esEs40(xwv281, xwv331, app(ty_Maybe, gad)) -> new_esEs12(xwv281, xwv331, gad) 37.19/18.90 new_lt20(xwv720, xwv730, ty_Int) -> new_lt7(xwv720, xwv730) 37.19/18.90 new_esEs4(xwv400, xwv300, app(ty_[], eah)) -> new_esEs25(xwv400, xwv300, eah) 37.19/18.90 new_ltEs5(xwv90, xwv93, ty_@0) -> new_ltEs4(xwv90, xwv93) 37.19/18.90 new_fsEs(xwv205) -> new_not(new_esEs14(xwv205, GT)) 37.19/18.90 new_primEqInt(Pos(Succ(xwv2800)), Neg(xwv330)) -> False 37.19/18.90 new_primEqInt(Neg(Succ(xwv2800)), Pos(xwv330)) -> False 37.19/18.90 new_ltEs16(Left(xwv720), Left(xwv730), app(app(app(ty_@3, bff), bfg), bfh), bfc) -> new_ltEs15(xwv720, xwv730, bff, bfg, bfh) 37.19/18.90 new_lt23(xwv721, xwv731, app(ty_Maybe, bda)) -> new_lt11(xwv721, xwv731, bda) 37.19/18.90 new_lt5(xwv88, xwv91, ty_Double) -> new_lt12(xwv88, xwv91) 37.19/18.90 new_esEs28(xwv89, xwv92, app(ty_Maybe, ccc)) -> new_esEs12(xwv89, xwv92, ccc) 37.19/18.90 new_esEs9(xwv402, xwv302, ty_Char) -> new_esEs18(xwv402, xwv302) 37.19/18.90 new_esEs10(xwv400, xwv300, ty_Double) -> new_esEs15(xwv400, xwv300) 37.19/18.90 new_primCmpInt(Neg(Zero), Neg(Succ(xwv3000))) -> new_primCmpNat0(Succ(xwv3000), Zero) 37.19/18.90 new_compare14(xwv40, xwv30) -> new_primCmpInt(xwv40, xwv30) 37.19/18.90 new_esEs12(Just(xwv280), Just(xwv330), ty_Char) -> new_esEs18(xwv280, xwv330) 37.19/18.90 new_esEs7(xwv400, xwv300, app(ty_Ratio, efa)) -> new_esEs21(xwv400, xwv300, efa) 37.19/18.90 new_esEs5(xwv401, xwv301, ty_Ordering) -> new_esEs14(xwv401, xwv301) 37.19/18.90 new_esEs34(xwv720, xwv730, app(ty_[], bbh)) -> new_esEs25(xwv720, xwv730, bbh) 37.19/18.90 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 37.19/18.90 new_lt16(xwv18, xwv13) -> new_esEs26(new_compare28(xwv18, xwv13)) 37.19/18.90 new_esEs40(xwv281, xwv331, app(ty_[], gbe)) -> new_esEs25(xwv281, xwv331, gbe) 37.19/18.90 new_esEs27(xwv88, xwv91, ty_Char) -> new_esEs18(xwv88, xwv91) 37.19/18.90 new_ltEs16(Right(xwv720), Right(xwv730), bgc, ty_Int) -> new_ltEs6(xwv720, xwv730) 37.19/18.90 new_esEs34(xwv720, xwv730, ty_Double) -> new_esEs15(xwv720, xwv730) 37.19/18.90 new_lt5(xwv88, xwv91, ty_Char) -> new_lt8(xwv88, xwv91) 37.19/18.90 new_esEs29(xwv720, xwv730, ty_Ordering) -> new_esEs14(xwv720, xwv730) 37.19/18.90 new_lt13(xwv18, xwv13) -> new_esEs26(new_compare19(xwv18, xwv13)) 37.19/18.90 new_compare18(Double(xwv400, Pos(xwv4010)), Double(xwv300, Neg(xwv3010))) -> new_compare14(new_sr(xwv400, Pos(xwv3010)), new_sr(Neg(xwv4010), xwv300)) 37.19/18.90 new_compare18(Double(xwv400, Neg(xwv4010)), Double(xwv300, Pos(xwv3010))) -> new_compare14(new_sr(xwv400, Neg(xwv3010)), new_sr(Pos(xwv4010), xwv300)) 37.19/18.90 new_ltEs19(xwv99, xwv100, app(ty_Ratio, dbc)) -> new_ltEs18(xwv99, xwv100, dbc) 37.19/18.90 new_ltEs16(Right(xwv720), Right(xwv730), bgc, app(ty_Ratio, dbg)) -> new_ltEs18(xwv720, xwv730, dbg) 37.19/18.90 new_lt22(xwv720, xwv730, ty_Char) -> new_lt8(xwv720, xwv730) 37.19/18.90 new_ltEs16(Right(xwv720), Right(xwv730), bgc, app(ty_Maybe, bgf)) -> new_ltEs10(xwv720, xwv730, bgf) 37.19/18.90 new_ltEs19(xwv99, xwv100, app(ty_Maybe, cfb)) -> new_ltEs10(xwv99, xwv100, cfb) 37.19/18.90 new_esEs11(xwv400, xwv300, ty_Double) -> new_esEs15(xwv400, xwv300) 37.19/18.90 new_esEs27(xwv88, xwv91, app(ty_Ratio, dag)) -> new_esEs21(xwv88, xwv91, dag) 37.19/18.90 new_lt10(xwv18, xwv13, de, df) -> new_esEs26(new_compare16(xwv18, xwv13, de, df)) 37.19/18.90 new_ltEs10(Just(xwv720), Just(xwv730), ty_Integer) -> new_ltEs17(xwv720, xwv730) 37.19/18.90 new_compare112(xwv164, xwv165, False, fcc, fcd) -> GT 37.19/18.90 new_esEs6(xwv400, xwv300, app(ty_Ratio, dcg)) -> new_esEs21(xwv400, xwv300, dcg) 37.19/18.90 new_compare9(Just(xwv400), Nothing, bbb) -> GT 37.19/18.90 new_compare31(xwv400, xwv300, app(app(ty_Either, bah), bba)) -> new_compare17(xwv400, xwv300, bah, bba) 37.19/18.90 new_compare13(xwv177, xwv178, xwv179, xwv180, True, dbh, dca) -> LT 37.19/18.90 new_lt5(xwv88, xwv91, ty_Float) -> new_lt13(xwv88, xwv91) 37.19/18.90 new_ltEs7(xwv72, xwv73) -> new_fsEs(new_compare6(xwv72, xwv73)) 37.19/18.90 new_esEs25([], [], ffe) -> True 37.19/18.90 new_ltEs20(xwv721, xwv731, app(ty_[], cf)) -> new_ltEs13(xwv721, xwv731, cf) 37.19/18.90 new_ltEs10(Just(xwv720), Just(xwv730), ty_Ordering) -> new_ltEs14(xwv720, xwv730) 37.19/18.90 new_ltEs22(xwv722, xwv732, ty_Bool) -> new_ltEs8(xwv722, xwv732) 37.19/18.90 new_not(False) -> True 37.19/18.90 new_esEs31(xwv281, xwv331, ty_Bool) -> new_esEs13(xwv281, xwv331) 37.19/18.90 new_ltEs24(xwv72, xwv73, ty_Double) -> new_ltEs11(xwv72, xwv73) 37.19/18.90 new_compare31(xwv400, xwv300, ty_Int) -> new_compare14(xwv400, xwv300) 37.19/18.90 new_esEs34(xwv720, xwv730, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs23(xwv720, xwv730, bca, bcb, bcc) 37.19/18.90 new_esEs9(xwv402, xwv302, app(ty_Maybe, egh)) -> new_esEs12(xwv402, xwv302, egh) 37.19/18.90 new_ltEs23(xwv106, xwv107, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_ltEs15(xwv106, xwv107, cgf, cgg, cgh) 37.19/18.90 new_compare28(GT, EQ) -> GT 37.19/18.90 new_compare1([], :(xwv300, xwv301), hh) -> LT 37.19/18.90 new_ltEs24(xwv72, xwv73, app(app(ty_Either, bgc), bfc)) -> new_ltEs16(xwv72, xwv73, bgc, bfc) 37.19/18.90 new_esEs17(Left(xwv280), Left(xwv330), ty_Integer, ebf) -> new_esEs24(xwv280, xwv330) 37.19/18.90 new_esEs40(xwv281, xwv331, ty_Float) -> new_esEs20(xwv281, xwv331) 37.19/18.90 new_lt20(xwv720, xwv730, ty_Float) -> new_lt13(xwv720, xwv730) 37.19/18.90 new_ltEs16(Left(xwv720), Left(xwv730), ty_Double, bfc) -> new_ltEs11(xwv720, xwv730) 37.19/18.90 new_esEs28(xwv89, xwv92, ty_Int) -> new_esEs16(xwv89, xwv92) 37.19/18.90 new_esEs4(xwv400, xwv300, ty_Integer) -> new_esEs24(xwv400, xwv300) 37.19/18.90 new_compare31(xwv400, xwv300, app(app(app(ty_@3, bae), baf), bag)) -> new_compare30(xwv400, xwv300, bae, baf, bag) 37.19/18.90 new_esEs11(xwv400, xwv300, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs23(xwv400, xwv300, fef, feg, feh) 37.19/18.90 new_lt22(xwv720, xwv730, app(app(ty_Either, bcd), bce)) -> new_lt18(xwv720, xwv730, bcd, bce) 37.19/18.90 new_compare19(Float(xwv400, Pos(xwv4010)), Float(xwv300, Neg(xwv3010))) -> new_compare14(new_sr(xwv400, Pos(xwv3010)), new_sr(Neg(xwv4010), xwv300)) 37.19/18.90 new_compare19(Float(xwv400, Neg(xwv4010)), Float(xwv300, Pos(xwv3010))) -> new_compare14(new_sr(xwv400, Neg(xwv3010)), new_sr(Pos(xwv4010), xwv300)) 37.19/18.90 new_esEs9(xwv402, xwv302, ty_Double) -> new_esEs15(xwv402, xwv302) 37.19/18.90 new_esEs12(Just(xwv280), Just(xwv330), app(ty_Ratio, daa)) -> new_esEs21(xwv280, xwv330, daa) 37.19/18.90 new_esEs7(xwv400, xwv300, ty_Int) -> new_esEs16(xwv400, xwv300) 37.19/18.90 new_primPlusNat0(Succ(xwv16200), Succ(xwv13700)) -> Succ(Succ(new_primPlusNat0(xwv16200, xwv13700))) 37.19/18.90 new_esEs28(xwv89, xwv92, ty_Float) -> new_esEs20(xwv89, xwv92) 37.19/18.90 new_ltEs21(xwv126, xwv128, ty_@0) -> new_ltEs4(xwv126, xwv128) 37.19/18.90 new_lt21(xwv125, xwv127, app(app(app(ty_@3, ga), gb), gc)) -> new_lt17(xwv125, xwv127, ga, gb, gc) 37.19/18.90 new_ltEs10(Just(xwv720), Nothing, fab) -> False 37.19/18.90 new_ltEs10(Nothing, Nothing, fab) -> True 37.19/18.90 new_esEs10(xwv400, xwv300, ty_Ordering) -> new_esEs14(xwv400, xwv300) 37.19/18.90 new_esEs38(xwv280, xwv330, ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.90 new_esEs29(xwv720, xwv730, app(ty_Ratio, dbd)) -> new_esEs21(xwv720, xwv730, dbd) 37.19/18.90 new_compare28(GT, GT) -> EQ 37.19/18.90 new_lt5(xwv88, xwv91, app(app(ty_Either, cbf), cbg)) -> new_lt18(xwv88, xwv91, cbf, cbg) 37.19/18.90 new_ltEs20(xwv721, xwv731, app(ty_Ratio, dbe)) -> new_ltEs18(xwv721, xwv731, dbe) 37.19/18.90 new_esEs26(EQ) -> False 37.19/18.90 new_compare11(xwv157, xwv158, True, eba, ebb) -> LT 37.19/18.90 new_ltEs15(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, bbe, bbf) -> new_pePe(new_lt22(xwv720, xwv730, bcf), new_asAs(new_esEs34(xwv720, xwv730, bcf), new_pePe(new_lt23(xwv721, xwv731, bbe), new_asAs(new_esEs35(xwv721, xwv731, bbe), new_ltEs22(xwv722, xwv732, bbf))))) 37.19/18.90 new_esEs9(xwv402, xwv302, ty_Bool) -> new_esEs13(xwv402, xwv302) 37.19/18.90 new_ltEs5(xwv90, xwv93, app(ty_Maybe, cdd)) -> new_ltEs10(xwv90, xwv93, cdd) 37.19/18.90 new_esEs35(xwv721, xwv731, app(app(ty_Either, bdf), bdg)) -> new_esEs17(xwv721, xwv731, bdf, bdg) 37.19/18.90 new_lt23(xwv721, xwv731, ty_Integer) -> new_lt19(xwv721, xwv731) 37.19/18.90 new_ltEs10(Just(xwv720), Just(xwv730), ty_Float) -> new_ltEs12(xwv720, xwv730) 37.19/18.90 new_lt20(xwv720, xwv730, app(app(ty_Either, bh), ca)) -> new_lt18(xwv720, xwv730, bh, ca) 37.19/18.90 new_esEs12(Just(xwv280), Just(xwv330), ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.90 new_esEs17(Left(xwv280), Left(xwv330), app(app(ty_Either, ebh), eca), ebf) -> new_esEs17(xwv280, xwv330, ebh, eca) 37.19/18.90 new_ltEs23(xwv106, xwv107, app(ty_Ratio, ffd)) -> new_ltEs18(xwv106, xwv107, ffd) 37.19/18.90 new_esEs38(xwv280, xwv330, app(app(ty_@2, fga), fgb)) -> new_esEs19(xwv280, xwv330, fga, fgb) 37.19/18.90 new_esEs33(xwv125, xwv127, ty_Bool) -> new_esEs13(xwv125, xwv127) 37.19/18.90 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 37.19/18.90 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 37.19/18.90 new_esEs35(xwv721, xwv731, ty_Char) -> new_esEs18(xwv721, xwv731) 37.19/18.90 new_esEs6(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 37.19/18.90 new_ltEs22(xwv722, xwv732, ty_Double) -> new_ltEs11(xwv722, xwv732) 37.19/18.90 new_ltEs24(xwv72, xwv73, ty_Bool) -> new_ltEs8(xwv72, xwv73) 37.19/18.90 new_ltEs14(LT, EQ) -> True 37.19/18.90 new_esEs24(Integer(xwv280), Integer(xwv330)) -> new_primEqInt(xwv280, xwv330) 37.19/18.90 new_ltEs23(xwv106, xwv107, ty_@0) -> new_ltEs4(xwv106, xwv107) 37.19/18.90 new_ltEs11(xwv72, xwv73) -> new_fsEs(new_compare18(xwv72, xwv73)) 37.19/18.90 new_ltEs17(xwv72, xwv73) -> new_fsEs(new_compare15(xwv72, xwv73)) 37.19/18.90 new_lt6(xwv89, xwv92, app(app(app(ty_@3, cce), ccf), ccg)) -> new_lt17(xwv89, xwv92, cce, ccf, ccg) 37.19/18.90 new_esEs27(xwv88, xwv91, ty_Integer) -> new_esEs24(xwv88, xwv91) 37.19/18.90 new_esEs5(xwv401, xwv301, ty_Int) -> new_esEs16(xwv401, xwv301) 37.19/18.90 new_esEs14(LT, LT) -> True 37.19/18.90 new_esEs32(xwv282, xwv332, ty_Int) -> new_esEs16(xwv282, xwv332) 37.19/18.90 new_esEs38(xwv280, xwv330, app(ty_[], fgg)) -> new_esEs25(xwv280, xwv330, fgg) 37.19/18.90 new_compare30(@3(xwv400, xwv401, xwv402), @3(xwv300, xwv301, xwv302), cab, cac, cad) -> new_compare24(xwv400, xwv401, xwv402, xwv300, xwv301, xwv302, new_asAs(new_esEs7(xwv400, xwv300, cab), new_asAs(new_esEs8(xwv401, xwv301, cac), new_esEs9(xwv402, xwv302, cad))), cab, cac, cad) 37.19/18.90 new_esEs17(Right(xwv280), Right(xwv330), eda, ty_Bool) -> new_esEs13(xwv280, xwv330) 37.19/18.90 new_esEs10(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 37.19/18.90 new_esEs23(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), ddd, dde, ddf) -> new_asAs(new_esEs30(xwv280, xwv330, ddd), new_asAs(new_esEs31(xwv281, xwv331, dde), new_esEs32(xwv282, xwv332, ddf))) 37.19/18.90 new_lt22(xwv720, xwv730, ty_Float) -> new_lt13(xwv720, xwv730) 37.19/18.90 new_compare31(xwv400, xwv300, ty_Ordering) -> new_compare28(xwv400, xwv300) 37.19/18.90 new_lt5(xwv88, xwv91, ty_@0) -> new_lt14(xwv88, xwv91) 37.19/18.90 new_esEs14(LT, EQ) -> False 37.19/18.90 new_esEs14(EQ, LT) -> False 37.19/18.90 new_esEs26(GT) -> False 37.19/18.90 new_esEs17(Left(xwv280), Left(xwv330), ty_Char, ebf) -> new_esEs18(xwv280, xwv330) 37.19/18.90 new_esEs31(xwv281, xwv331, ty_Int) -> new_esEs16(xwv281, xwv331) 37.19/18.90 new_esEs12(Just(xwv280), Just(xwv330), app(app(ty_@2, chg), chh)) -> new_esEs19(xwv280, xwv330, chg, chh) 37.19/18.90 new_ltEs16(Left(xwv720), Left(xwv730), ty_Char, bfc) -> new_ltEs7(xwv720, xwv730) 37.19/18.90 new_ltEs22(xwv722, xwv732, ty_Char) -> new_ltEs7(xwv722, xwv732) 37.19/18.90 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 37.19/18.90 new_ltEs22(xwv722, xwv732, app(ty_Ratio, ebe)) -> new_ltEs18(xwv722, xwv732, ebe) 37.19/18.90 new_esEs28(xwv89, xwv92, app(app(ty_@2, cca), ccb)) -> new_esEs19(xwv89, xwv92, cca, ccb) 37.19/18.90 new_lt19(xwv18, xwv13) -> new_esEs26(new_compare15(xwv18, xwv13)) 37.19/18.90 new_esEs32(xwv282, xwv332, app(ty_Maybe, dgc)) -> new_esEs12(xwv282, xwv332, dgc) 37.19/18.90 new_esEs36(xwv280, xwv330, ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.90 new_ltEs21(xwv126, xwv128, app(ty_Maybe, ed)) -> new_ltEs10(xwv126, xwv128, ed) 37.19/18.90 new_compare12(xwv177, xwv178, xwv179, xwv180, False, xwv182, dbh, dca) -> new_compare13(xwv177, xwv178, xwv179, xwv180, xwv182, dbh, dca) 37.19/18.90 new_lt21(xwv125, xwv127, ty_Integer) -> new_lt19(xwv125, xwv127) 37.19/18.90 new_compare28(GT, LT) -> GT 37.19/18.90 new_esEs25(:(xwv280, xwv281), :(xwv330, xwv331), ffe) -> new_asAs(new_esEs38(xwv280, xwv330, ffe), new_esEs25(xwv281, xwv331, ffe)) 37.19/18.90 new_esEs6(xwv400, xwv300, app(ty_Maybe, dcb)) -> new_esEs12(xwv400, xwv300, dcb) 37.19/18.90 new_esEs7(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 37.19/18.90 new_esEs31(xwv281, xwv331, ty_Ordering) -> new_esEs14(xwv281, xwv331) 37.19/18.90 new_lt20(xwv720, xwv730, ty_@0) -> new_lt14(xwv720, xwv730) 37.19/18.90 new_primCmpNat0(Succ(xwv4000), Succ(xwv3000)) -> new_primCmpNat0(xwv4000, xwv3000) 37.19/18.90 new_esEs17(Left(xwv280), Left(xwv330), ty_Double, ebf) -> new_esEs15(xwv280, xwv330) 37.19/18.90 new_esEs17(Right(xwv280), Right(xwv330), eda, ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.90 new_lt6(xwv89, xwv92, ty_Integer) -> new_lt19(xwv89, xwv92) 37.19/18.90 new_ltEs10(Just(xwv720), Just(xwv730), app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs15(xwv720, xwv730, hb, hc, hd) 37.19/18.90 new_esEs30(xwv280, xwv330, ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.90 new_esEs31(xwv281, xwv331, app(ty_Maybe, dfa)) -> new_esEs12(xwv281, xwv331, dfa) 37.19/18.90 new_ltEs10(Just(xwv720), Just(xwv730), app(app(ty_Either, he), hf)) -> new_ltEs16(xwv720, xwv730, he, hf) 37.19/18.90 new_lt22(xwv720, xwv730, ty_Bool) -> new_lt9(xwv720, xwv730) 37.19/18.90 new_ltEs23(xwv106, xwv107, app(ty_[], cge)) -> new_ltEs13(xwv106, xwv107, cge) 37.19/18.90 new_esEs38(xwv280, xwv330, ty_Float) -> new_esEs20(xwv280, xwv330) 37.19/18.90 new_ltEs20(xwv721, xwv731, app(ty_Maybe, ce)) -> new_ltEs10(xwv721, xwv731, ce) 37.19/18.90 new_esEs33(xwv125, xwv127, ty_Ordering) -> new_esEs14(xwv125, xwv127) 37.19/18.90 new_esEs39(xwv280, xwv330, app(ty_Ratio, fhg)) -> new_esEs21(xwv280, xwv330, fhg) 37.19/18.90 new_compare31(xwv400, xwv300, app(ty_Maybe, bac)) -> new_compare9(xwv400, xwv300, bac) 37.19/18.90 new_ltEs23(xwv106, xwv107, ty_Char) -> new_ltEs7(xwv106, xwv107) 37.19/18.90 new_compare6(Char(xwv400), Char(xwv300)) -> new_primCmpNat0(xwv400, xwv300) 37.19/18.90 new_esEs27(xwv88, xwv91, app(app(ty_@2, cae), caf)) -> new_esEs19(xwv88, xwv91, cae, caf) 37.19/18.90 new_ltEs21(xwv126, xwv128, app(ty_Ratio, dhf)) -> new_ltEs18(xwv126, xwv128, dhf) 37.19/18.90 new_esEs17(Right(xwv280), Right(xwv330), eda, app(app(ty_Either, edc), edd)) -> new_esEs17(xwv280, xwv330, edc, edd) 37.19/18.90 new_esEs8(xwv401, xwv301, ty_Bool) -> new_esEs13(xwv401, xwv301) 37.19/18.90 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 37.19/18.90 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 37.19/18.90 new_ltEs23(xwv106, xwv107, ty_Bool) -> new_ltEs8(xwv106, xwv107) 37.19/18.90 new_compare17(Right(xwv400), Right(xwv300), cee, cef) -> new_compare210(xwv400, xwv300, new_esEs11(xwv400, xwv300, cef), cee, cef) 37.19/18.90 new_lt21(xwv125, xwv127, app(app(ty_Either, gd), ge)) -> new_lt18(xwv125, xwv127, gd, ge) 37.19/18.90 new_primEqNat0(Zero, Zero) -> True 37.19/18.90 new_esEs32(xwv282, xwv332, ty_Bool) -> new_esEs13(xwv282, xwv332) 37.19/18.90 new_compare28(LT, EQ) -> LT 37.19/18.90 new_lt23(xwv721, xwv731, ty_Bool) -> new_lt9(xwv721, xwv731) 37.19/18.90 new_ltEs16(Right(xwv720), Right(xwv730), bgc, app(ty_[], bgg)) -> new_ltEs13(xwv720, xwv730, bgg) 37.19/18.90 new_lt5(xwv88, xwv91, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_lt17(xwv88, xwv91, cbc, cbd, cbe) 37.19/18.90 new_compare110(xwv148, xwv149, True, fad) -> LT 37.19/18.90 new_esEs6(xwv400, xwv300, ty_Int) -> new_esEs16(xwv400, xwv300) 37.19/18.90 new_ltEs16(Left(xwv720), Left(xwv730), ty_Ordering, bfc) -> new_ltEs14(xwv720, xwv730) 37.19/18.90 new_esEs4(xwv400, xwv300, app(ty_Ratio, ead)) -> new_esEs21(xwv400, xwv300, ead) 37.19/18.90 new_compare9(Nothing, Nothing, bbb) -> EQ 37.19/18.90 new_asAs(False, xwv135) -> False 37.19/18.90 new_ltEs22(xwv722, xwv732, app(ty_[], bec)) -> new_ltEs13(xwv722, xwv732, bec) 37.19/18.90 new_ltEs14(LT, LT) -> True 37.19/18.90 new_compare7(@0, @0) -> EQ 37.19/18.90 new_lt20(xwv720, xwv730, app(app(app(ty_@3, be), bf), bg)) -> new_lt17(xwv720, xwv730, be, bf, bg) 37.19/18.90 new_esEs8(xwv401, xwv301, ty_Ordering) -> new_esEs14(xwv401, xwv301) 37.19/18.90 new_esEs4(xwv400, xwv300, app(app(ty_@2, eab), eac)) -> new_esEs19(xwv400, xwv300, eab, eac) 37.19/18.90 new_compare27(xwv125, xwv126, xwv127, xwv128, False, ea, ff) -> new_compare12(xwv125, xwv126, xwv127, xwv128, new_lt21(xwv125, xwv127, ea), new_asAs(new_esEs33(xwv125, xwv127, ea), new_ltEs21(xwv126, xwv128, ff)), ea, ff) 37.19/18.90 new_ltEs16(Left(xwv720), Left(xwv730), ty_Bool, bfc) -> new_ltEs8(xwv720, xwv730) 37.19/18.90 new_esEs37(xwv281, xwv331, ty_Integer) -> new_esEs24(xwv281, xwv331) 37.19/18.90 new_esEs40(xwv281, xwv331, app(app(ty_@2, gag), gah)) -> new_esEs19(xwv281, xwv331, gag, gah) 37.19/18.90 new_esEs28(xwv89, xwv92, app(ty_Ratio, dah)) -> new_esEs21(xwv89, xwv92, dah) 37.19/18.90 new_esEs7(xwv400, xwv300, app(ty_Maybe, eed)) -> new_esEs12(xwv400, xwv300, eed) 37.19/18.90 new_ltEs23(xwv106, xwv107, ty_Ordering) -> new_ltEs14(xwv106, xwv107) 37.19/18.90 new_esEs32(xwv282, xwv332, ty_Ordering) -> new_esEs14(xwv282, xwv332) 37.19/18.90 new_lt6(xwv89, xwv92, app(app(ty_Either, cch), cda)) -> new_lt18(xwv89, xwv92, cch, cda) 37.19/18.90 new_compare210(xwv106, xwv107, False, cga, ffc) -> new_compare112(xwv106, xwv107, new_ltEs23(xwv106, xwv107, ffc), cga, ffc) 37.19/18.90 new_lt22(xwv720, xwv730, ty_Integer) -> new_lt19(xwv720, xwv730) 37.19/18.90 37.19/18.90 The set Q consists of the following terms: 37.19/18.90 37.19/18.90 new_ltEs23(x0, x1, ty_Integer) 37.19/18.90 new_esEs26(LT) 37.19/18.90 new_compare110(x0, x1, False, x2) 37.19/18.90 new_esEs31(x0, x1, ty_Int) 37.19/18.90 new_esEs14(EQ, EQ) 37.19/18.90 new_esEs28(x0, x1, ty_@0) 37.19/18.90 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs30(x0, x1, ty_Double) 37.19/18.90 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 37.19/18.90 new_esEs30(x0, x1, app(ty_[], x2)) 37.19/18.90 new_compare1(:(x0, x1), :(x2, x3), x4) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) 37.19/18.90 new_esEs7(x0, x1, ty_Bool) 37.19/18.90 new_lt23(x0, x1, ty_Char) 37.19/18.90 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_esEs8(x0, x1, ty_Integer) 37.19/18.90 new_lt20(x0, x1, ty_Int) 37.19/18.90 new_compare28(EQ, LT) 37.19/18.90 new_compare28(LT, EQ) 37.19/18.90 new_lt5(x0, x1, ty_Float) 37.19/18.90 new_lt21(x0, x1, ty_Bool) 37.19/18.90 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs11(x0, x1, ty_Bool) 37.19/18.90 new_esEs29(x0, x1, ty_Int) 37.19/18.90 new_lt22(x0, x1, ty_Ordering) 37.19/18.90 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, ty_Char) 37.19/18.90 new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) 37.19/18.90 new_compare26(x0, x1, True, x2) 37.19/18.90 new_pePe(False, x0) 37.19/18.90 new_esEs31(x0, x1, ty_Char) 37.19/18.90 new_ltEs5(x0, x1, ty_Double) 37.19/18.90 new_esEs33(x0, x1, ty_Ordering) 37.19/18.90 new_ltEs19(x0, x1, ty_@0) 37.19/18.90 new_ltEs4(x0, x1) 37.19/18.90 new_esEs29(x0, x1, ty_Char) 37.19/18.90 new_lt19(x0, x1) 37.19/18.90 new_ltEs19(x0, x1, ty_Bool) 37.19/18.90 new_ltEs21(x0, x1, ty_Ordering) 37.19/18.90 new_esEs27(x0, x1, ty_Char) 37.19/18.90 new_lt22(x0, x1, ty_Int) 37.19/18.90 new_esEs7(x0, x1, ty_@0) 37.19/18.90 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs32(x0, x1, ty_Char) 37.19/18.90 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_lt20(x0, x1, ty_Char) 37.19/18.90 new_lt23(x0, x1, ty_Int) 37.19/18.90 new_primMulInt(Neg(x0), Neg(x1)) 37.19/18.90 new_esEs12(Just(x0), Nothing, x1) 37.19/18.90 new_esEs7(x0, x1, ty_Integer) 37.19/18.90 new_lt20(x0, x1, ty_Ordering) 37.19/18.90 new_esEs35(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_ltEs12(x0, x1) 37.19/18.90 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_primEqInt(Pos(Zero), Pos(Zero)) 37.19/18.90 new_primCmpNat0(Succ(x0), Succ(x1)) 37.19/18.90 new_esEs39(x0, x1, ty_Integer) 37.19/18.90 new_esEs38(x0, x1, app(ty_[], x2)) 37.19/18.90 new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 37.19/18.90 new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 37.19/18.90 new_esEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_compare28(GT, GT) 37.19/18.90 new_primMulInt(Pos(x0), Pos(x1)) 37.19/18.90 new_lt22(x0, x1, ty_Char) 37.19/18.90 new_esEs38(x0, x1, ty_Double) 37.19/18.90 new_compare31(x0, x1, ty_Bool) 37.19/18.90 new_compare17(Left(x0), Right(x1), x2, x3) 37.19/18.90 new_ltEs16(Right(x0), Right(x1), x2, ty_@0) 37.19/18.90 new_compare17(Right(x0), Left(x1), x2, x3) 37.19/18.90 new_lt22(x0, x1, ty_Double) 37.19/18.90 new_esEs27(x0, x1, ty_Int) 37.19/18.90 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 37.19/18.90 new_ltEs22(x0, x1, app(ty_[], x2)) 37.19/18.90 new_ltEs14(LT, LT) 37.19/18.90 new_lt9(x0, x1) 37.19/18.90 new_esEs28(x0, x1, ty_Integer) 37.19/18.90 new_esEs6(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 37.19/18.90 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_ltEs21(x0, x1, ty_Double) 37.19/18.90 new_ltEs23(x0, x1, ty_@0) 37.19/18.90 new_esEs39(x0, x1, ty_Float) 37.19/18.90 new_primEqInt(Neg(Zero), Neg(Zero)) 37.19/18.90 new_ltEs22(x0, x1, ty_Bool) 37.19/18.90 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 37.19/18.90 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_esEs27(x0, x1, ty_@0) 37.19/18.90 new_esEs12(Just(x0), Just(x1), app(ty_[], x2)) 37.19/18.90 new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) 37.19/18.90 new_esEs33(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs28(x0, x1, ty_Char) 37.19/18.90 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 37.19/18.90 new_compare1([], [], x0) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, ty_Bool) 37.19/18.90 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_lt23(x0, x1, ty_Double) 37.19/18.90 new_esEs30(x0, x1, ty_Char) 37.19/18.90 new_esEs31(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_lt21(x0, x1, ty_Char) 37.19/18.90 new_esEs32(x0, x1, ty_Bool) 37.19/18.90 new_ltEs21(x0, x1, ty_Char) 37.19/18.90 new_esEs36(x0, x1, ty_Int) 37.19/18.90 new_esEs5(x0, x1, ty_Ordering) 37.19/18.90 new_esEs40(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_ltEs8(False, False) 37.19/18.90 new_esEs39(x0, x1, ty_Bool) 37.19/18.90 new_compare9(Just(x0), Just(x1), x2) 37.19/18.90 new_lt6(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs9(x0, x1, ty_Bool) 37.19/18.90 new_ltEs21(x0, x1, ty_Int) 37.19/18.90 new_esEs32(x0, x1, ty_Double) 37.19/18.90 new_primPlusNat0(Succ(x0), Zero) 37.19/18.90 new_esEs29(x0, x1, ty_Double) 37.19/18.90 new_lt23(x0, x1, ty_@0) 37.19/18.90 new_esEs39(x0, x1, ty_@0) 37.19/18.90 new_ltEs23(x0, x1, ty_Float) 37.19/18.90 new_esEs9(x0, x1, ty_Float) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 37.19/18.90 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_compare31(x0, x1, ty_@0) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, ty_Double) 37.19/18.90 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_lt7(x0, x1) 37.19/18.90 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 37.19/18.90 new_compare14(x0, x1) 37.19/18.90 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_ltEs16(Right(x0), Right(x1), x2, ty_Char) 37.19/18.90 new_esEs34(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_esEs9(x0, x1, ty_@0) 37.19/18.90 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs10(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_compare29(False, False) 37.19/18.90 new_primEqInt(Pos(Zero), Neg(Zero)) 37.19/18.90 new_primEqInt(Neg(Zero), Pos(Zero)) 37.19/18.90 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs26(EQ) 37.19/18.90 new_esEs30(x0, x1, ty_Int) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, ty_Int) 37.19/18.90 new_compare31(x0, x1, ty_Float) 37.19/18.90 new_esEs4(x0, x1, ty_Double) 37.19/18.90 new_ltEs5(x0, x1, ty_Ordering) 37.19/18.90 new_esEs11(x0, x1, ty_Integer) 37.19/18.90 new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 37.19/18.90 new_esEs32(x0, x1, ty_Int) 37.19/18.90 new_esEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 37.19/18.90 new_esEs39(x0, x1, app(ty_[], x2)) 37.19/18.90 new_compare31(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs7(x0, x1, ty_Int) 37.19/18.90 new_ltEs5(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs22(@0, @0) 37.19/18.90 new_esEs10(x0, x1, ty_Double) 37.19/18.90 new_esEs8(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_esEs5(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, ty_@0) 37.19/18.90 new_ltEs24(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs35(x0, x1, ty_Ordering) 37.19/18.90 new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.19/18.90 new_esEs7(x0, x1, ty_Char) 37.19/18.90 new_ltEs22(x0, x1, ty_Integer) 37.19/18.90 new_esEs32(x0, x1, ty_@0) 37.19/18.90 new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) 37.19/18.90 new_primCompAux00(x0, GT) 37.19/18.90 new_esEs17(Left(x0), Right(x1), x2, x3) 37.19/18.90 new_esEs17(Right(x0), Left(x1), x2, x3) 37.19/18.90 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_esEs28(x0, x1, ty_Bool) 37.19/18.90 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_lt21(x0, x1, ty_Int) 37.19/18.90 new_esEs30(x0, x1, ty_@0) 37.19/18.90 new_compare28(EQ, EQ) 37.19/18.90 new_esEs29(x0, x1, ty_@0) 37.19/18.90 new_compare210(x0, x1, False, x2, x3) 37.19/18.90 new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) 37.19/18.90 new_lt21(x0, x1, ty_@0) 37.19/18.90 new_esEs12(Just(x0), Just(x1), ty_Integer) 37.19/18.90 new_lt13(x0, x1) 37.19/18.90 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs40(x0, x1, ty_Float) 37.19/18.90 new_esEs31(x0, x1, ty_Ordering) 37.19/18.90 new_esEs7(x0, x1, ty_Ordering) 37.19/18.90 new_lt21(x0, x1, ty_Double) 37.19/18.90 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_lt11(x0, x1, x2) 37.19/18.90 new_primCompAux0(x0, x1, x2, x3) 37.19/18.90 new_ltEs19(x0, x1, ty_Ordering) 37.19/18.90 new_compare31(x0, x1, ty_Int) 37.19/18.90 new_compare110(x0, x1, True, x2) 37.19/18.90 new_esEs6(x0, x1, ty_Ordering) 37.19/18.90 new_esEs33(x0, x1, ty_@0) 37.19/18.90 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 37.19/18.90 new_esEs28(x0, x1, ty_Float) 37.19/18.90 new_ltEs10(Just(x0), Nothing, x1) 37.19/18.90 new_esEs8(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_lt21(x0, x1, ty_Float) 37.19/18.90 new_pePe(True, x0) 37.19/18.90 new_esEs29(x0, x1, ty_Integer) 37.19/18.90 new_lt6(x0, x1, ty_Integer) 37.19/18.90 new_esEs9(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs4(x0, x1, ty_Int) 37.19/18.90 new_esEs11(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs40(x0, x1, ty_Double) 37.19/18.90 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 37.19/18.90 new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) 37.19/18.90 new_esEs8(x0, x1, ty_Int) 37.19/18.90 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 37.19/18.90 new_primCmpNat0(Zero, Succ(x0)) 37.19/18.90 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs6(x0, x1, ty_Float) 37.19/18.90 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 37.19/18.90 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_compare31(x0, x1, ty_Ordering) 37.19/18.90 new_esEs27(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs34(x0, x1, ty_Float) 37.19/18.90 new_ltEs19(x0, x1, ty_Float) 37.19/18.90 new_esEs27(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs11(x0, x1, ty_Float) 37.19/18.90 new_lt5(x0, x1, ty_@0) 37.19/18.90 new_esEs34(x0, x1, ty_Double) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), ty_Float) 37.19/18.90 new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 37.19/18.90 new_ltEs21(x0, x1, ty_@0) 37.19/18.90 new_ltEs24(x0, x1, ty_Ordering) 37.19/18.90 new_primCompAux00(x0, EQ) 37.19/18.90 new_esEs39(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs10(x0, x1, ty_Int) 37.19/18.90 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 37.19/18.90 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 37.19/18.90 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_ltEs14(LT, GT) 37.19/18.90 new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 37.19/18.90 new_ltEs14(GT, LT) 37.19/18.90 new_esEs12(Just(x0), Just(x1), ty_Bool) 37.19/18.90 new_compare112(x0, x1, False, x2, x3) 37.19/18.90 new_ltEs24(x0, x1, ty_Double) 37.19/18.90 new_esEs14(LT, EQ) 37.19/18.90 new_esEs14(EQ, LT) 37.19/18.90 new_esEs40(x0, x1, app(ty_[], x2)) 37.19/18.90 new_compare29(True, False) 37.19/18.90 new_compare29(False, True) 37.19/18.90 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 37.19/18.90 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_compare31(x0, x1, ty_Char) 37.19/18.90 new_compare12(x0, x1, x2, x3, True, x4, x5, x6) 37.19/18.90 new_esEs4(x0, x1, ty_Float) 37.19/18.90 new_compare25(x0, x1, True, x2, x3) 37.19/18.90 new_esEs27(x0, x1, ty_Integer) 37.19/18.90 new_compare9(Nothing, Just(x0), x1) 37.19/18.90 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 37.19/18.90 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_esEs6(x0, x1, ty_Char) 37.19/18.90 new_ltEs19(x0, x1, ty_Int) 37.19/18.90 new_esEs27(x0, x1, ty_Float) 37.19/18.90 new_esEs28(x0, x1, ty_Int) 37.19/18.90 new_esEs38(x0, x1, ty_Char) 37.19/18.90 new_esEs40(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_esEs14(GT, GT) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), ty_Ordering) 37.19/18.90 new_primMulNat0(Succ(x0), Succ(x1)) 37.19/18.90 new_esEs6(x0, x1, ty_Int) 37.19/18.90 new_lt20(x0, x1, ty_@0) 37.19/18.90 new_esEs29(x0, x1, ty_Bool) 37.19/18.90 new_esEs10(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_compare16(@2(x0, x1), @2(x2, x3), x4, x5) 37.19/18.90 new_compare210(x0, x1, True, x2, x3) 37.19/18.90 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_lt23(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs27(x0, x1, ty_Ordering) 37.19/18.90 new_esEs10(x0, x1, ty_Float) 37.19/18.90 new_lt22(x0, x1, ty_Bool) 37.19/18.90 new_ltEs19(x0, x1, ty_Char) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), ty_Int) 37.19/18.90 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs38(x0, x1, ty_Int) 37.19/18.90 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 37.19/18.90 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 37.19/18.90 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_primEqNat0(Succ(x0), Zero) 37.19/18.90 new_esEs10(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs32(x0, x1, ty_Ordering) 37.19/18.90 new_primCmpInt(Neg(Zero), Neg(Zero)) 37.19/18.90 new_esEs39(x0, x1, ty_Ordering) 37.19/18.90 new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), ty_Char) 37.19/18.90 new_ltEs14(EQ, GT) 37.19/18.90 new_ltEs14(GT, EQ) 37.19/18.90 new_ltEs22(x0, x1, ty_Double) 37.19/18.90 new_esEs12(Just(x0), Just(x1), ty_Int) 37.19/18.90 new_esEs25([], :(x0, x1), x2) 37.19/18.90 new_esEs13(False, True) 37.19/18.90 new_esEs13(True, False) 37.19/18.90 new_compare28(LT, GT) 37.19/18.90 new_compare28(GT, LT) 37.19/18.90 new_primPlusNat0(Zero, Succ(x0)) 37.19/18.90 new_esEs31(x0, x1, app(ty_[], x2)) 37.19/18.90 new_ltEs22(x0, x1, ty_@0) 37.19/18.90 new_esEs38(x0, x1, ty_Ordering) 37.19/18.90 new_primCmpInt(Pos(Zero), Neg(Zero)) 37.19/18.90 new_primCmpInt(Neg(Zero), Pos(Zero)) 37.19/18.90 new_lt8(x0, x1) 37.19/18.90 new_esEs5(x0, x1, ty_@0) 37.19/18.90 new_esEs5(x0, x1, ty_Double) 37.19/18.90 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_ltEs16(Left(x0), Left(x1), ty_@0, x2) 37.19/18.90 new_esEs11(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 37.19/18.90 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 37.19/18.90 new_ltEs16(Left(x0), Left(x1), ty_Double, x2) 37.19/18.90 new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), ty_Integer) 37.19/18.90 new_esEs8(x0, x1, ty_Float) 37.19/18.90 new_esEs12(Just(x0), Just(x1), ty_Char) 37.19/18.90 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_compare11(x0, x1, True, x2, x3) 37.19/18.90 new_lt21(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs25([], [], x0) 37.19/18.90 new_esEs8(x0, x1, ty_Bool) 37.19/18.90 new_ltEs23(x0, x1, ty_Double) 37.19/18.90 new_lt6(x0, x1, ty_@0) 37.19/18.90 new_esEs38(x0, x1, ty_Bool) 37.19/18.90 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_lt6(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs17(Left(x0), Left(x1), ty_Double, x2) 37.19/18.90 new_ltEs20(x0, x1, ty_@0) 37.19/18.90 new_ltEs24(x0, x1, ty_@0) 37.19/18.90 new_ltEs8(True, False) 37.19/18.90 new_ltEs8(False, True) 37.19/18.90 new_ltEs13(x0, x1, x2) 37.19/18.90 new_esEs31(x0, x1, ty_Double) 37.19/18.90 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_lt14(x0, x1) 37.19/18.90 new_esEs14(LT, LT) 37.19/18.90 new_esEs38(x0, x1, ty_Integer) 37.19/18.90 new_lt20(x0, x1, ty_Double) 37.19/18.90 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.19/18.90 new_esEs35(x0, x1, ty_Double) 37.19/18.90 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 37.19/18.90 new_esEs32(x0, x1, ty_Integer) 37.19/18.90 new_sr0(Integer(x0), Integer(x1)) 37.19/18.90 new_ltEs19(x0, x1, ty_Integer) 37.19/18.90 new_esEs11(x0, x1, ty_Char) 37.19/18.90 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) 37.19/18.90 new_ltEs6(x0, x1) 37.19/18.90 new_esEs7(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_lt20(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs8(x0, x1, app(ty_[], x2)) 37.19/18.90 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs11(x0, x1, ty_Int) 37.19/18.90 new_esEs35(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_esEs17(Left(x0), Left(x1), ty_@0, x2) 37.19/18.90 new_esEs27(x0, x1, ty_Bool) 37.19/18.90 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_primCmpNat0(Succ(x0), Zero) 37.19/18.90 new_ltEs5(x0, x1, ty_@0) 37.19/18.90 new_compare31(x0, x1, ty_Integer) 37.19/18.90 new_ltEs20(x0, x1, app(ty_[], x2)) 37.19/18.90 new_lt5(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_esEs33(x0, x1, ty_Double) 37.19/18.90 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_esEs29(x0, x1, ty_Ordering) 37.19/18.90 new_asAs(False, x0) 37.19/18.90 new_esEs12(Just(x0), Just(x1), ty_Float) 37.19/18.90 new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 37.19/18.90 new_esEs35(x0, x1, ty_@0) 37.19/18.90 new_esEs31(x0, x1, ty_@0) 37.19/18.90 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_lt22(x0, x1, ty_Float) 37.19/18.90 new_ltEs20(x0, x1, ty_Double) 37.19/18.90 new_esEs8(x0, x1, ty_Char) 37.19/18.90 new_primMulInt(Pos(x0), Neg(x1)) 37.19/18.90 new_primMulInt(Neg(x0), Pos(x1)) 37.19/18.90 new_compare6(Char(x0), Char(x1)) 37.19/18.90 new_esEs6(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs29(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_lt6(x0, x1, ty_Int) 37.19/18.90 new_esEs38(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs32(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs4(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_compare15(Integer(x0), Integer(x1)) 37.19/18.90 new_esEs30(x0, x1, ty_Float) 37.19/18.90 new_esEs17(Left(x0), Left(x1), ty_Integer, x2) 37.19/18.90 new_lt15(x0, x1, x2) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), ty_@0) 37.19/18.90 new_esEs18(Char(x0), Char(x1)) 37.19/18.90 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_asAs(True, x0) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), ty_Bool) 37.19/18.90 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs6(x0, x1, ty_Bool) 37.19/18.90 new_esEs40(x0, x1, ty_@0) 37.19/18.90 new_ltEs16(Left(x0), Left(x1), ty_Char, x2) 37.19/18.90 new_ltEs20(x0, x1, ty_Integer) 37.19/18.90 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_lt22(x0, x1, app(ty_[], x2)) 37.19/18.90 new_ltEs16(Left(x0), Left(x1), ty_Int, x2) 37.19/18.90 new_esEs35(x0, x1, ty_Integer) 37.19/18.90 new_esEs5(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_primMulNat0(Zero, Zero) 37.19/18.90 new_esEs31(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs33(x0, x1, ty_Float) 37.19/18.90 new_esEs34(x0, x1, ty_Integer) 37.19/18.90 new_compare7(@0, @0) 37.19/18.90 new_esEs4(x0, x1, ty_Integer) 37.19/18.90 new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 37.19/18.90 new_esEs12(Nothing, Just(x0), x1) 37.19/18.90 new_compare27(x0, x1, x2, x3, False, x4, x5) 37.19/18.90 new_ltEs14(EQ, EQ) 37.19/18.90 new_esEs4(x0, x1, ty_Bool) 37.19/18.90 new_lt20(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs5(x0, x1, ty_Integer) 37.19/18.90 new_lt5(x0, x1, ty_Ordering) 37.19/18.90 new_ltEs23(x0, x1, app(ty_[], x2)) 37.19/18.90 new_sr(x0, x1) 37.19/18.90 new_primMulNat0(Succ(x0), Zero) 37.19/18.90 new_compare30(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.19/18.90 new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 37.19/18.90 new_esEs17(Left(x0), Left(x1), ty_Bool, x2) 37.19/18.90 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 37.19/18.90 new_esEs10(x0, x1, ty_@0) 37.19/18.90 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 37.19/18.90 new_esEs6(x0, x1, ty_Integer) 37.19/18.90 new_esEs34(x0, x1, app(ty_Ratio, x2)) 37.19/18.90 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_lt6(x0, x1, ty_Ordering) 37.19/18.90 new_esEs6(x0, x1, ty_@0) 37.19/18.90 new_lt20(x0, x1, ty_Float) 37.19/18.90 new_ltEs24(x0, x1, ty_Bool) 37.19/18.90 new_esEs12(Just(x0), Just(x1), ty_Double) 37.19/18.90 new_esEs38(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_lt5(x0, x1, ty_Int) 37.19/18.90 new_ltEs19(x0, x1, app(ty_[], x2)) 37.19/18.90 new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) 37.19/18.90 new_esEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 37.19/18.90 new_primEqNat0(Succ(x0), Succ(x1)) 37.19/18.90 new_esEs34(x0, x1, ty_Bool) 37.19/18.90 new_esEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 37.19/18.90 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs30(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_compare31(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_lt6(x0, x1, ty_Char) 37.19/18.90 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.90 new_compare1(:(x0, x1), [], x2) 37.19/18.90 new_esEs40(x0, x1, ty_Bool) 37.19/18.90 new_lt6(x0, x1, ty_Double) 37.19/18.90 new_lt4(x0, x1, x2) 37.19/18.90 new_lt10(x0, x1, x2, x3) 37.19/18.90 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.90 new_primPlusNat0(Zero, Zero) 37.19/18.90 new_esEs10(x0, x1, ty_Integer) 37.19/18.90 new_lt5(x0, x1, ty_Double) 37.19/18.90 new_lt5(x0, x1, ty_Char) 37.19/18.90 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 37.19/18.90 new_compare9(Just(x0), Nothing, x1) 37.19/18.90 new_ltEs5(x0, x1, ty_Integer) 37.19/18.90 new_lt23(x0, x1, ty_Float) 37.19/18.90 new_not(True) 37.19/18.90 new_fsEs(x0) 37.19/18.90 new_lt6(x0, x1, app(ty_Maybe, x2)) 37.19/18.90 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.90 new_esEs32(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs6(x0, x1, app(ty_[], x2)) 37.19/18.90 new_esEs32(x0, x1, ty_Float) 37.19/18.90 new_esEs17(Right(x0), Right(x1), x2, ty_Float) 37.19/18.90 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 37.19/18.90 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 37.19/18.90 new_esEs33(x0, x1, ty_Integer) 37.19/18.90 new_ltEs22(x0, x1, ty_Ordering) 37.19/18.90 new_esEs40(x0, x1, ty_Char) 37.19/18.90 new_esEs26(GT) 37.19/18.90 new_esEs40(x0, x1, ty_Int) 37.19/18.90 new_esEs16(x0, x1) 37.19/18.90 new_esEs14(EQ, GT) 37.19/18.90 new_esEs14(GT, EQ) 37.19/18.91 new_esEs37(x0, x1, ty_Integer) 37.19/18.91 new_esEs13(True, True) 37.19/18.91 new_esEs39(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_esEs39(x0, x1, ty_Int) 37.19/18.91 new_esEs8(x0, x1, ty_Ordering) 37.19/18.91 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs29(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_compare31(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_esEs21(:%(x0, x1), :%(x2, x3), x4) 37.19/18.91 new_esEs24(Integer(x0), Integer(x1)) 37.19/18.91 new_esEs38(x0, x1, ty_Float) 37.19/18.91 new_ltEs21(x0, x1, app(ty_[], x2)) 37.19/18.91 new_esEs30(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_esEs9(x0, x1, ty_Char) 37.19/18.91 new_esEs34(x0, x1, ty_@0) 37.19/18.91 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 37.19/18.91 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 37.19/18.91 new_esEs4(x0, x1, ty_@0) 37.19/18.91 new_esEs4(x0, x1, ty_Char) 37.19/18.91 new_compare28(EQ, GT) 37.19/18.91 new_ltEs7(x0, x1) 37.19/18.91 new_compare28(GT, EQ) 37.19/18.91 new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) 37.19/18.91 new_esEs28(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_esEs34(x0, x1, ty_Char) 37.19/18.91 new_esEs9(x0, x1, ty_Double) 37.19/18.91 new_compare13(x0, x1, x2, x3, False, x4, x5) 37.19/18.91 new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) 37.19/18.91 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 37.19/18.91 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 37.19/18.91 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_lt22(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 37.19/18.91 new_lt16(x0, x1) 37.19/18.91 new_primCompAux00(x0, LT) 37.19/18.91 new_esEs12(Just(x0), Just(x1), ty_Ordering) 37.19/18.91 new_esEs11(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_esEs10(x0, x1, ty_Char) 37.19/18.91 new_ltEs16(Right(x0), Right(x1), x2, ty_Double) 37.19/18.91 new_ltEs21(x0, x1, ty_Float) 37.19/18.91 new_esEs29(x0, x1, ty_Float) 37.19/18.91 new_esEs7(x0, x1, app(ty_[], x2)) 37.19/18.91 new_esEs39(x0, x1, ty_Char) 37.19/18.91 new_esEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 37.19/18.91 new_lt18(x0, x1, x2, x3) 37.19/18.91 new_ltEs24(x0, x1, ty_Integer) 37.19/18.91 new_esEs9(x0, x1, ty_Int) 37.19/18.91 new_esEs39(x0, x1, ty_Double) 37.19/18.91 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_lt23(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_esEs34(x0, x1, ty_Int) 37.19/18.91 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs10(x0, x1, ty_Bool) 37.19/18.91 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_esEs11(x0, x1, ty_Ordering) 37.19/18.91 new_compare12(x0, x1, x2, x3, False, x4, x5, x6) 37.19/18.91 new_primCmpInt(Pos(Zero), Pos(Zero)) 37.19/18.91 new_esEs7(x0, x1, ty_Double) 37.19/18.91 new_esEs33(x0, x1, app(ty_[], x2)) 37.19/18.91 new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 37.19/18.91 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 37.19/18.91 new_lt22(x0, x1, ty_Integer) 37.19/18.91 new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) 37.19/18.91 new_esEs4(x0, x1, app(ty_[], x2)) 37.19/18.91 new_esEs17(Left(x0), Left(x1), ty_Int, x2) 37.19/18.91 new_esEs28(x0, x1, ty_Double) 37.19/18.91 new_ltEs22(x0, x1, ty_Char) 37.19/18.91 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 37.19/18.91 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 37.19/18.91 new_lt5(x0, x1, ty_Bool) 37.19/18.91 new_ltEs10(Just(x0), Just(x1), ty_Double) 37.19/18.91 new_ltEs24(x0, x1, ty_Int) 37.19/18.91 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_esEs28(x0, x1, app(ty_[], x2)) 37.19/18.91 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_compare17(Left(x0), Left(x1), x2, x3) 37.19/18.91 new_esEs31(x0, x1, ty_Integer) 37.19/18.91 new_esEs7(x0, x1, ty_Float) 37.19/18.91 new_esEs5(x0, x1, ty_Char) 37.19/18.91 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 37.19/18.91 new_ltEs20(x0, x1, ty_Int) 37.19/18.91 new_compare26(x0, x1, False, x2) 37.19/18.91 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_lt20(x0, x1, ty_Integer) 37.19/18.91 new_ltEs14(GT, GT) 37.19/18.91 new_esEs30(x0, x1, ty_Bool) 37.19/18.91 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 37.19/18.91 new_esEs33(x0, x1, ty_Bool) 37.19/18.91 new_compare28(LT, LT) 37.19/18.91 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 37.19/18.91 new_esEs4(x0, x1, ty_Ordering) 37.19/18.91 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_esEs10(x0, x1, ty_Ordering) 37.19/18.91 new_esEs17(Left(x0), Left(x1), ty_Char, x2) 37.19/18.91 new_esEs6(x0, x1, ty_Double) 37.19/18.91 new_ltEs23(x0, x1, ty_Char) 37.19/18.91 new_esEs12(Nothing, Nothing, x0) 37.19/18.91 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_esEs11(x0, x1, ty_Double) 37.19/18.91 new_ltEs16(Right(x0), Right(x1), x2, ty_Int) 37.19/18.91 new_compare1([], :(x0, x1), x2) 37.19/18.91 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 37.19/18.91 new_esEs35(x0, x1, ty_Char) 37.19/18.91 new_ltEs20(x0, x1, ty_Ordering) 37.19/18.91 new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 37.19/18.91 new_lt23(x0, x1, app(ty_[], x2)) 37.19/18.91 new_compare31(x0, x1, ty_Double) 37.19/18.91 new_ltEs23(x0, x1, ty_Ordering) 37.19/18.91 new_lt6(x0, x1, ty_Bool) 37.19/18.91 new_primEqNat0(Zero, Succ(x0)) 37.19/18.91 new_esEs31(x0, x1, ty_Bool) 37.19/18.91 new_ltEs5(x0, x1, ty_Bool) 37.19/18.91 new_compare9(Nothing, Nothing, x0) 37.19/18.91 new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 37.19/18.91 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_ltEs24(x0, x1, ty_Char) 37.19/18.91 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 37.19/18.91 new_esEs38(x0, x1, ty_@0) 37.19/18.91 new_esEs7(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_esEs15(Double(x0, x1), Double(x2, x3)) 37.19/18.91 new_compare27(x0, x1, x2, x3, True, x4, x5) 37.19/18.91 new_ltEs18(x0, x1, x2) 37.19/18.91 new_esEs33(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_ltEs21(x0, x1, ty_Bool) 37.19/18.91 new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 37.19/18.91 new_ltEs20(x0, x1, ty_Float) 37.19/18.91 new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 37.19/18.91 new_compare11(x0, x1, False, x2, x3) 37.19/18.91 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_esEs28(x0, x1, ty_Ordering) 37.19/18.91 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_compare17(Right(x0), Right(x1), x2, x3) 37.19/18.91 new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) 37.19/18.91 new_esEs28(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_ltEs19(x0, x1, ty_Double) 37.19/18.91 new_ltEs23(x0, x1, ty_Int) 37.19/18.91 new_ltEs16(Right(x0), Right(x1), x2, ty_Float) 37.19/18.91 new_esEs25(:(x0, x1), :(x2, x3), x4) 37.19/18.91 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_esEs14(LT, GT) 37.19/18.91 new_esEs14(GT, LT) 37.19/18.91 new_esEs4(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_esEs34(x0, x1, app(ty_[], x2)) 37.19/18.91 new_ltEs10(Nothing, Just(x0), x1) 37.19/18.91 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_primEqNat0(Zero, Zero) 37.19/18.91 new_esEs13(False, False) 37.19/18.91 new_esEs5(x0, x1, ty_Float) 37.19/18.91 new_lt20(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_esEs5(x0, x1, ty_Bool) 37.19/18.91 new_lt23(x0, x1, ty_Bool) 37.19/18.91 new_ltEs22(x0, x1, ty_Float) 37.19/18.91 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_lt5(x0, x1, app(ty_[], x2)) 37.19/18.91 new_ltEs21(x0, x1, ty_Integer) 37.19/18.91 new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 37.19/18.91 new_not(False) 37.19/18.91 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_lt5(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_lt23(x0, x1, ty_Ordering) 37.19/18.91 new_esEs35(x0, x1, ty_Bool) 37.19/18.91 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_ltEs5(x0, x1, ty_Int) 37.19/18.91 new_esEs35(x0, x1, ty_Float) 37.19/18.91 new_esEs29(x0, x1, app(ty_[], x2)) 37.19/18.91 new_ltEs5(x0, x1, ty_Char) 37.19/18.91 new_esEs36(x0, x1, ty_Integer) 37.19/18.91 new_lt21(x0, x1, ty_Integer) 37.19/18.91 new_lt12(x0, x1) 37.19/18.91 new_esEs9(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_esEs9(x0, x1, ty_Ordering) 37.19/18.91 new_esEs9(x0, x1, ty_Integer) 37.19/18.91 new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 37.19/18.91 new_primMulNat0(Zero, Succ(x0)) 37.19/18.91 new_ltEs10(Nothing, Nothing, x0) 37.19/18.91 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs30(x0, x1, ty_Integer) 37.19/18.91 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs27(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_esEs35(x0, x1, app(ty_[], x2)) 37.19/18.91 new_ltEs8(True, True) 37.19/18.91 new_lt21(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs8(x0, x1, ty_@0) 37.19/18.91 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_compare25(x0, x1, False, x2, x3) 37.19/18.91 new_esEs27(x0, x1, ty_Double) 37.19/18.91 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 37.19/18.91 new_ltEs16(Left(x0), Right(x1), x2, x3) 37.19/18.91 new_lt22(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 37.19/18.91 new_ltEs16(Right(x0), Left(x1), x2, x3) 37.19/18.91 new_compare13(x0, x1, x2, x3, True, x4, x5) 37.19/18.91 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs5(x0, x1, ty_Int) 37.19/18.91 new_esEs37(x0, x1, ty_Int) 37.19/18.91 new_lt21(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_ltEs24(x0, x1, ty_Float) 37.19/18.91 new_lt6(x0, x1, ty_Float) 37.19/18.91 new_esEs11(x0, x1, ty_@0) 37.19/18.91 new_esEs17(Left(x0), Left(x1), ty_Float, x2) 37.19/18.91 new_compare112(x0, x1, True, x2, x3) 37.19/18.91 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_ltEs22(x0, x1, ty_Int) 37.19/18.91 new_lt20(x0, x1, ty_Bool) 37.19/18.91 new_esEs40(x0, x1, ty_Ordering) 37.19/18.91 new_ltEs5(x0, x1, ty_Float) 37.19/18.91 new_compare29(True, True) 37.19/18.91 new_esEs5(x0, x1, app(ty_[], x2)) 37.19/18.91 new_ltEs20(x0, x1, ty_Bool) 37.19/18.91 new_ltEs23(x0, x1, ty_Bool) 37.19/18.91 new_ltEs11(x0, x1) 37.19/18.91 new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 37.19/18.91 new_esEs17(Right(x0), Right(x1), x2, ty_Integer) 37.19/18.91 new_esEs35(x0, x1, ty_Int) 37.19/18.91 new_esEs31(x0, x1, ty_Float) 37.19/18.91 new_lt5(x0, x1, ty_Integer) 37.19/18.91 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_lt22(x0, x1, ty_@0) 37.19/18.91 new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 37.19/18.91 new_lt17(x0, x1, x2, x3, x4) 37.19/18.91 new_lt21(x0, x1, ty_Ordering) 37.19/18.91 new_esEs12(Just(x0), Just(x1), ty_@0) 37.19/18.91 new_esEs33(x0, x1, ty_Int) 37.19/18.91 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs30(x0, x1, ty_Ordering) 37.19/18.91 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs32(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_esEs9(x0, x1, app(ty_[], x2)) 37.19/18.91 new_ltEs14(EQ, LT) 37.19/18.91 new_ltEs14(LT, EQ) 37.19/18.91 new_primPlusNat0(Succ(x0), Succ(x1)) 37.19/18.91 new_esEs20(Float(x0, x1), Float(x2, x3)) 37.19/18.91 new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs34(x0, x1, ty_Ordering) 37.19/18.91 new_lt23(x0, x1, ty_Integer) 37.19/18.91 new_primCmpNat0(Zero, Zero) 37.19/18.91 new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) 37.19/18.91 new_esEs33(x0, x1, ty_Char) 37.19/18.91 new_esEs8(x0, x1, ty_Double) 37.19/18.91 new_ltEs20(x0, x1, ty_Char) 37.19/18.91 new_ltEs17(x0, x1) 37.19/18.91 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_esEs40(x0, x1, ty_Integer) 37.19/18.91 new_esEs25(:(x0, x1), [], x2) 37.19/18.91 new_ltEs16(Left(x0), Left(x1), ty_Float, x2) 37.19/18.91 37.19/18.91 We have to consider all minimal (P,Q,R)-chains. 37.19/18.91 ---------------------------------------- 37.19/18.91 37.19/18.91 (24) QDPSizeChangeProof (EQUIVALENT) 37.19/18.91 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. 37.19/18.91 37.19/18.91 From the DPs we obtained the following set of size-change graphs: 37.19/18.91 *new_compare0(:(xwv400, xwv401), :(xwv300, xwv301), hh) -> new_primCompAux(xwv400, xwv300, new_compare1(xwv401, xwv301, hh), hh) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare0(:(xwv400, xwv401), :(xwv300, xwv301), hh) -> new_compare0(xwv401, xwv301, hh) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare3(Just(xwv400), Just(xwv300), bbb) -> new_compare20(xwv400, xwv300, new_esEs6(xwv400, xwv300, bbb), bbb) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs1(xwv72, xwv73, hg) -> new_compare0(xwv72, xwv73, hg) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare5(Left(xwv400), Left(xwv300), cee, cef) -> new_compare22(xwv400, xwv300, new_esEs10(xwv400, xwv300, cee), cee, cef) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare5(Right(xwv400), Right(xwv300), cee, cef) -> new_compare23(xwv400, xwv300, new_esEs11(xwv400, xwv300, cef), cee, cef) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, bbe, app(app(ty_Either, beg), beh)) -> new_ltEs3(xwv722, xwv732, beg, beh) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, cag, app(app(ty_Either, cea), ceb)) -> new_ltEs3(xwv90, xwv93, cea, ceb) 37.19/18.91 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_lt1(xwv18, xwv13, bhf) -> new_compare0(xwv18, xwv13, bhf) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare4(@3(xwv400, xwv401, xwv402), @3(xwv300, xwv301, xwv302), cab, cac, cad) -> new_compare21(xwv400, xwv401, xwv402, xwv300, xwv301, xwv302, new_asAs(new_esEs7(xwv400, xwv300, cab), new_asAs(new_esEs8(xwv401, xwv301, cac), new_esEs9(xwv402, xwv302, cad))), cab, cac, cad) 37.19/18.91 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 37.19/18.91 37.19/18.91 37.19/18.91 *new_lt3(xwv18, xwv13, cec, ced) -> new_compare5(xwv18, xwv13, cec, ced) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs0(Just(xwv720), Just(xwv730), app(app(ty_Either, he), hf)) -> new_ltEs3(xwv720, xwv730, he, hf) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, bbe, app(app(app(ty_@3, bed), bee), bef)) -> new_ltEs2(xwv722, xwv732, bed, bee, bef) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, cag, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_ltEs2(xwv90, xwv93, cdf, cdg, cdh) 37.19/18.91 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs0(Just(xwv720), Just(xwv730), app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs2(xwv720, xwv730, hb, hc, hd) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, bbe, app(app(ty_@2, bdh), bea)) -> new_ltEs(xwv722, xwv732, bdh, bea) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, cag, app(app(ty_@2, cdb), cdc)) -> new_ltEs(xwv90, xwv93, cdb, cdc) 37.19/18.91 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs0(Just(xwv720), Just(xwv730), app(app(ty_@2, gf), gg)) -> new_ltEs(xwv720, xwv730, gf, gg) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_lt(xwv18, xwv13, de, df) -> new_compare(xwv18, xwv13, de, df) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare(@2(xwv400, xwv401), @2(xwv300, xwv301), dg, dh) -> new_compare2(xwv400, xwv401, xwv300, xwv301, new_asAs(new_esEs4(xwv400, xwv300, dg), new_esEs5(xwv401, xwv301, dh)), dg, dh) 37.19/18.91 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare2(xwv125, xwv126, xwv127, xwv128, False, ea, app(app(ty_Either, fa), fb)) -> new_ltEs3(xwv126, xwv128, fa, fb) 37.19/18.91 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare2(xwv125, xwv126, xwv127, xwv128, False, ea, app(app(app(ty_@3, ef), eg), eh)) -> new_ltEs2(xwv126, xwv128, ef, eg, eh) 37.19/18.91 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare2(xwv125, xwv126, xwv127, xwv128, False, ea, app(app(ty_@2, eb), ec)) -> new_ltEs(xwv126, xwv128, eb, ec) 37.19/18.91 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_primCompAux(xwv400, xwv300, xwv56, app(app(ty_@2, baa), bab)) -> new_compare(xwv400, xwv300, baa, bab) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare2(xwv125, xwv126, xwv127, xwv128, False, app(ty_Maybe, fg), ff) -> new_lt0(xwv125, xwv127, fg) 37.19/18.91 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_lt2(xwv18, xwv13, bhg, bhh, caa) -> new_compare4(xwv18, xwv13, bhg, bhh, caa) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_primCompAux(xwv400, xwv300, xwv56, app(app(app(ty_@3, bae), baf), bag)) -> new_compare4(xwv400, xwv300, bae, baf, bag) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare22(xwv99, xwv100, False, app(app(ty_Either, cfg), cfh), cfa) -> new_ltEs3(xwv99, xwv100, cfg, cfh) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare22(xwv99, xwv100, False, app(app(app(ty_@3, cfd), cfe), cff), cfa) -> new_ltEs2(xwv99, xwv100, cfd, cfe, cff) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare22(xwv99, xwv100, False, app(app(ty_@2, ceg), ceh), cfa) -> new_ltEs(xwv99, xwv100, ceg, ceh) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_primCompAux(xwv400, xwv300, xwv56, app(app(ty_Either, bah), bba)) -> new_compare5(xwv400, xwv300, bah, bba) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), cb, app(app(ty_Either, dc), dd)) -> new_ltEs3(xwv721, xwv731, dc, dd) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs2(xwv721, xwv731, cg, da, db) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(xwv721, xwv731, cc, cd) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), app(ty_Maybe, bc), bb) -> new_lt0(xwv720, xwv730, bc) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, bbe, app(ty_Maybe, beb)) -> new_ltEs0(xwv722, xwv732, beb) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, cag, app(ty_Maybe, cdd)) -> new_ltEs0(xwv90, xwv93, cdd) 37.19/18.91 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs0(Just(xwv720), Just(xwv730), app(ty_Maybe, gh)) -> new_ltEs0(xwv720, xwv730, gh) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs0(Just(xwv720), Just(xwv730), app(ty_[], ha)) -> new_ltEs1(xwv720, xwv730, ha) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare2(xwv125, xwv126, xwv127, xwv128, False, ea, app(ty_Maybe, ed)) -> new_ltEs0(xwv126, xwv128, ed) 37.19/18.91 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare22(xwv99, xwv100, False, app(ty_Maybe, cfb), cfa) -> new_ltEs0(xwv99, xwv100, cfb) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare22(xwv99, xwv100, False, app(ty_[], cfc), cfa) -> new_ltEs1(xwv99, xwv100, cfc) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), cb, app(ty_Maybe, ce)) -> new_ltEs0(xwv721, xwv731, ce) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare2(xwv125, xwv126, xwv127, xwv128, False, app(app(ty_Either, gd), ge), ff) -> new_lt3(xwv125, xwv127, gd, ge) 37.19/18.91 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), app(app(ty_Either, bh), ca), bb) -> new_lt3(xwv720, xwv730, bh, ca) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_lt0(xwv18, xwv13, bhe) -> new_compare3(xwv18, xwv13, bhe) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare2(xwv125, xwv126, xwv127, xwv128, False, app(ty_[], fh), ff) -> new_lt1(xwv125, xwv127, fh) 37.19/18.91 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), app(ty_[], bd), bb) -> new_lt1(xwv720, xwv730, bd) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare23(xwv106, xwv107, False, cga, app(app(ty_Either, cha), chb)) -> new_ltEs3(xwv106, xwv107, cha, chb) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare23(xwv106, xwv107, False, cga, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_ltEs2(xwv106, xwv107, cgf, cgg, cgh) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare23(xwv106, xwv107, False, cga, app(app(ty_@2, cgb), cgc)) -> new_ltEs(xwv106, xwv107, cgb, cgc) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare23(xwv106, xwv107, False, cga, app(ty_Maybe, cgd)) -> new_ltEs0(xwv106, xwv107, cgd) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(xwv72, xwv73, False, app(ty_[], hg)) -> new_compare0(xwv72, xwv73, hg) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_primCompAux(xwv400, xwv300, xwv56, app(ty_[], bad)) -> new_compare0(xwv400, xwv300, bad) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_primCompAux(xwv400, xwv300, xwv56, app(ty_Maybe, bac)) -> new_compare3(xwv400, xwv300, bac) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare23(xwv106, xwv107, False, cga, app(ty_[], cge)) -> new_ltEs1(xwv106, xwv107, cge) 37.19/18.91 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, bbe, app(ty_[], bec)) -> new_ltEs1(xwv722, xwv732, bec) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, cag, app(ty_[], cde)) -> new_ltEs1(xwv90, xwv93, cde) 37.19/18.91 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare2(xwv125, xwv126, xwv127, xwv128, False, ea, app(ty_[], ee)) -> new_ltEs1(xwv126, xwv128, ee) 37.19/18.91 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), cb, app(ty_[], cf)) -> new_ltEs1(xwv721, xwv731, cf) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare2(xwv125, xwv126, xwv127, xwv128, False, app(app(app(ty_@3, ga), gb), gc), ff) -> new_lt2(xwv125, xwv127, ga, gb, gc) 37.19/18.91 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare2(xwv125, xwv126, xwv127, xwv128, False, app(app(ty_@2, fc), fd), ff) -> new_lt(xwv125, xwv127, fc, fd) 37.19/18.91 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), app(app(app(ty_@3, be), bf), bg), bb) -> new_lt2(xwv720, xwv730, be, bf, bg) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs(@2(xwv720, xwv721), @2(xwv730, xwv731), app(app(ty_@2, h), ba), bb) -> new_lt(xwv720, xwv730, h, ba) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs3(Left(xwv720), Left(xwv730), app(app(ty_Either, bga), bgb), bfc) -> new_ltEs3(xwv720, xwv730, bga, bgb) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs3(Right(xwv720), Right(xwv730), bgc, app(app(ty_Either, bhc), bhd)) -> new_ltEs3(xwv720, xwv730, bhc, bhd) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(Left(xwv720), Left(xwv730), False, app(app(ty_Either, app(app(ty_Either, bga), bgb)), bfc)) -> new_ltEs3(xwv720, xwv730, bga, bgb) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(Just(xwv720), Just(xwv730), False, app(ty_Maybe, app(app(ty_Either, he), hf))) -> new_ltEs3(xwv720, xwv730, he, hf) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), bbe), app(app(ty_Either, beg), beh))) -> new_ltEs3(xwv722, xwv732, beg, beh) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(Right(xwv720), Right(xwv730), False, app(app(ty_Either, bgc), app(app(ty_Either, bhc), bhd))) -> new_ltEs3(xwv720, xwv730, bhc, bhd) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, cb), app(app(ty_Either, dc), dd))) -> new_ltEs3(xwv721, xwv731, dc, dd) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, app(ty_Maybe, bda), bbf) -> new_lt0(xwv721, xwv731, bda) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), app(ty_Maybe, bbg), bbe, bbf) -> new_lt0(xwv720, xwv730, bbg) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), app(app(ty_Either, bcd), bce), bbe, bbf) -> new_lt3(xwv720, xwv730, bcd, bce) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, app(app(ty_Either, bdf), bdg), bbf) -> new_lt3(xwv721, xwv731, bdf, bdg) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), app(ty_[], bbh), bbe, bbf) -> new_lt1(xwv720, xwv730, bbh) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, app(ty_[], bdb), bbf) -> new_lt1(xwv721, xwv731, bdb) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), app(app(app(ty_@3, bca), bcb), bcc), bbe, bbf) -> new_lt2(xwv720, xwv730, bca, bcb, bcc) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, app(app(app(ty_@3, bdc), bdd), bde), bbf) -> new_lt2(xwv721, xwv731, bdc, bdd, bde) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), app(app(ty_@2, bbc), bbd), bbe, bbf) -> new_lt(xwv720, xwv730, bbc, bbd) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs2(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), bcf, app(app(ty_@2, bcg), bch), bbf) -> new_lt(xwv721, xwv731, bcg, bch) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, app(ty_Maybe, cba), cag, cah) -> new_lt0(xwv88, xwv91, cba) 37.19/18.91 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, app(ty_Maybe, ccc), cah) -> new_lt0(xwv89, xwv92, ccc) 37.19/18.91 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, app(app(ty_Either, cbf), cbg), cag, cah) -> new_lt3(xwv88, xwv91, cbf, cbg) 37.19/18.91 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, app(app(ty_Either, cch), cda), cah) -> new_lt3(xwv89, xwv92, cch, cda) 37.19/18.91 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, app(ty_[], cbb), cag, cah) -> new_lt1(xwv88, xwv91, cbb) 37.19/18.91 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, app(ty_[], ccd), cah) -> new_lt1(xwv89, xwv92, ccd) 37.19/18.91 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, app(app(app(ty_@3, cbc), cbd), cbe), cag, cah) -> new_lt2(xwv88, xwv91, cbc, cbd, cbe) 37.19/18.91 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, app(app(app(ty_@3, cce), ccf), ccg), cah) -> new_lt2(xwv89, xwv92, cce, ccf, ccg) 37.19/18.91 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cbh, app(app(ty_@2, cca), ccb), cah) -> new_lt(xwv89, xwv92, cca, ccb) 37.19/18.91 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare21(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, app(app(ty_@2, cae), caf), cag, cah) -> new_lt(xwv88, xwv91, cae, caf) 37.19/18.91 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs3(Left(xwv720), Left(xwv730), app(app(app(ty_@3, bff), bfg), bfh), bfc) -> new_ltEs2(xwv720, xwv730, bff, bfg, bfh) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs3(Right(xwv720), Right(xwv730), bgc, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs2(xwv720, xwv730, bgh, bha, bhb) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(Right(xwv720), Right(xwv730), False, app(app(ty_Either, bgc), app(app(app(ty_@3, bgh), bha), bhb))) -> new_ltEs2(xwv720, xwv730, bgh, bha, bhb) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, cb), app(app(app(ty_@3, cg), da), db))) -> new_ltEs2(xwv721, xwv731, cg, da, db) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(Left(xwv720), Left(xwv730), False, app(app(ty_Either, app(app(app(ty_@3, bff), bfg), bfh)), bfc)) -> new_ltEs2(xwv720, xwv730, bff, bfg, bfh) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), bbe), app(app(app(ty_@3, bed), bee), bef))) -> new_ltEs2(xwv722, xwv732, bed, bee, bef) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(Just(xwv720), Just(xwv730), False, app(ty_Maybe, app(app(app(ty_@3, hb), hc), hd))) -> new_ltEs2(xwv720, xwv730, hb, hc, hd) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs3(Right(xwv720), Right(xwv730), bgc, app(app(ty_@2, bgd), bge)) -> new_ltEs(xwv720, xwv730, bgd, bge) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs3(Left(xwv720), Left(xwv730), app(app(ty_@2, bfa), bfb), bfc) -> new_ltEs(xwv720, xwv730, bfa, bfb) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs3(Left(xwv720), Left(xwv730), app(ty_Maybe, bfd), bfc) -> new_ltEs0(xwv720, xwv730, bfd) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs3(Right(xwv720), Right(xwv730), bgc, app(ty_Maybe, bgf)) -> new_ltEs0(xwv720, xwv730, bgf) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs3(Right(xwv720), Right(xwv730), bgc, app(ty_[], bgg)) -> new_ltEs1(xwv720, xwv730, bgg) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_ltEs3(Left(xwv720), Left(xwv730), app(ty_[], bfe), bfc) -> new_ltEs1(xwv720, xwv730, bfe) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(Right(xwv720), Right(xwv730), False, app(app(ty_Either, bgc), app(app(ty_@2, bgd), bge))) -> new_ltEs(xwv720, xwv730, bgd, bge) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(Left(xwv720), Left(xwv730), False, app(app(ty_Either, app(app(ty_@2, bfa), bfb)), bfc)) -> new_ltEs(xwv720, xwv730, bfa, bfb) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), bbe), app(app(ty_@2, bdh), bea))) -> new_ltEs(xwv722, xwv732, bdh, bea) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(Just(xwv720), Just(xwv730), False, app(ty_Maybe, app(app(ty_@2, gf), gg))) -> new_ltEs(xwv720, xwv730, gf, gg) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, cb), app(app(ty_@2, cc), cd))) -> new_ltEs(xwv721, xwv731, cc, cd) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, app(ty_Maybe, bbg)), bbe), bbf)) -> new_lt0(xwv720, xwv730, bbg) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), app(ty_Maybe, bda)), bbf)) -> new_lt0(xwv721, xwv731, bda) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, app(ty_Maybe, bc)), bb)) -> new_lt0(xwv720, xwv730, bc) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(Just(xwv720), Just(xwv730), False, app(ty_Maybe, app(ty_Maybe, gh))) -> new_ltEs0(xwv720, xwv730, gh) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(Left(xwv720), Left(xwv730), False, app(app(ty_Either, app(ty_Maybe, bfd)), bfc)) -> new_ltEs0(xwv720, xwv730, bfd) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), bbe), app(ty_Maybe, beb))) -> new_ltEs0(xwv722, xwv732, beb) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(Right(xwv720), Right(xwv730), False, app(app(ty_Either, bgc), app(ty_Maybe, bgf))) -> new_ltEs0(xwv720, xwv730, bgf) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, cb), app(ty_Maybe, ce))) -> new_ltEs0(xwv721, xwv731, ce) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, app(app(ty_Either, bcd), bce)), bbe), bbf)) -> new_lt3(xwv720, xwv730, bcd, bce) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), app(app(ty_Either, bdf), bdg)), bbf)) -> new_lt3(xwv721, xwv731, bdf, bdg) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, app(app(ty_Either, bh), ca)), bb)) -> new_lt3(xwv720, xwv730, bh, ca) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), app(ty_[], bdb)), bbf)) -> new_lt1(xwv721, xwv731, bdb) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, app(ty_[], bd)), bb)) -> new_lt1(xwv720, xwv730, bd) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, app(ty_[], bbh)), bbe), bbf)) -> new_lt1(xwv720, xwv730, bbh) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), bbe), app(ty_[], bec))) -> new_ltEs1(xwv722, xwv732, bec) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, cb), app(ty_[], cf))) -> new_ltEs1(xwv721, xwv731, cf) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(Left(xwv720), Left(xwv730), False, app(app(ty_Either, app(ty_[], bfe)), bfc)) -> new_ltEs1(xwv720, xwv730, bfe) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(Just(xwv720), Just(xwv730), False, app(ty_Maybe, app(ty_[], ha))) -> new_ltEs1(xwv720, xwv730, ha) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(Right(xwv720), Right(xwv730), False, app(app(ty_Either, bgc), app(ty_[], bgg))) -> new_ltEs1(xwv720, xwv730, bgg) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, app(app(app(ty_@3, bca), bcb), bcc)), bbe), bbf)) -> new_lt2(xwv720, xwv730, bca, bcb, bcc) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), app(app(app(ty_@3, bdc), bdd), bde)), bbf)) -> new_lt2(xwv721, xwv731, bdc, bdd, bde) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, app(app(app(ty_@3, be), bf), bg)), bb)) -> new_lt2(xwv720, xwv730, be, bf, bg) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@2(xwv720, xwv721), @2(xwv730, xwv731), False, app(app(ty_@2, app(app(ty_@2, h), ba)), bb)) -> new_lt(xwv720, xwv730, h, ba) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, app(app(ty_@2, bbc), bbd)), bbe), bbf)) -> new_lt(xwv720, xwv730, bbc, bbd) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 *new_compare20(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), False, app(app(app(ty_@3, bcf), app(app(ty_@2, bcg), bch)), bbf)) -> new_lt(xwv721, xwv731, bcg, bch) 37.19/18.91 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.91 37.19/18.91 37.19/18.91 ---------------------------------------- 37.19/18.91 37.19/18.91 (25) 37.19/18.91 YES 37.19/18.91 37.19/18.91 ---------------------------------------- 37.19/18.91 37.19/18.91 (26) 37.19/18.91 Obligation: 37.19/18.91 Q DP problem: 37.19/18.91 The TRS P consists of the following rules: 37.19/18.91 37.19/18.91 new_foldl(xwv3, :(xwv40, xwv41), h, ba) -> new_foldl(new_delFromFM0(xwv3, xwv40, h, ba), xwv41, h, ba) 37.19/18.91 37.19/18.91 The TRS R consists of the following rules: 37.19/18.91 37.19/18.91 new_lt20(xwv720, xwv730, ty_Double) -> new_lt12(xwv720, xwv730) 37.19/18.91 new_esEs30(xwv280, xwv330, app(app(ty_@2, fb), fc)) -> new_esEs19(xwv280, xwv330, fb, fc) 37.19/18.91 new_esEs27(xwv88, xwv91, ty_Double) -> new_esEs15(xwv88, xwv91) 37.19/18.91 new_esEs39(xwv280, xwv330, ty_Bool) -> new_esEs13(xwv280, xwv330) 37.19/18.91 new_ltEs24(xwv72, xwv73, ty_Float) -> new_ltEs12(xwv72, xwv73) 37.19/18.91 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 37.19/18.91 new_ltEs21(xwv126, xwv128, ty_Bool) -> new_ltEs8(xwv126, xwv128) 37.19/18.91 new_primPlusNat0(Zero, Zero) -> Zero 37.19/18.91 new_esEs7(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 37.19/18.91 new_ltEs22(xwv722, xwv732, app(app(app(ty_@3, efh), ega), egb)) -> new_ltEs15(xwv722, xwv732, efh, ega, egb) 37.19/18.91 new_pePe(True, xwv210) -> True 37.19/18.91 new_ltEs5(xwv90, xwv93, app(app(ty_@2, dbg), dbh)) -> new_ltEs9(xwv90, xwv93, dbg, dbh) 37.19/18.91 new_esEs10(xwv400, xwv300, ty_@0) -> new_esEs22(xwv400, xwv300) 37.19/18.91 new_esEs10(xwv400, xwv300, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs23(xwv400, xwv300, bhb, bhc, bhd) 37.19/18.91 new_esEs32(xwv282, xwv332, ty_Integer) -> new_esEs24(xwv282, xwv332) 37.19/18.91 new_ltEs24(xwv72, xwv73, ty_Ordering) -> new_ltEs14(xwv72, xwv73) 37.19/18.91 new_esEs27(xwv88, xwv91, ty_Float) -> new_esEs20(xwv88, xwv91) 37.19/18.91 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 37.19/18.91 new_compare110(xwv148, xwv149, False, fgd) -> GT 37.19/18.91 new_esEs40(xwv281, xwv331, ty_Char) -> new_esEs18(xwv281, xwv331) 37.19/18.91 new_mkBalBranch6MkBalBranch3(xwv16, xwv13, xwv14, xwv35, False, bed, bee) -> new_mkBranchResult(xwv13, xwv14, xwv16, xwv35, bed, bee) 37.19/18.91 new_esEs28(xwv89, xwv92, ty_Ordering) -> new_esEs14(xwv89, xwv92) 37.19/18.91 new_lt6(xwv89, xwv92, ty_Char) -> new_lt8(xwv89, xwv92) 37.19/18.91 new_lt22(xwv720, xwv730, app(app(app(ty_@3, edd), ede), edf)) -> new_lt17(xwv720, xwv730, edd, ede, edf) 37.19/18.91 new_compare28(LT, LT) -> EQ 37.19/18.91 new_esEs28(xwv89, xwv92, ty_Char) -> new_esEs18(xwv89, xwv92) 37.19/18.91 new_lt21(xwv125, xwv127, app(ty_Maybe, bbb)) -> new_lt11(xwv125, xwv127, bbb) 37.19/18.91 new_deleteMax0(xwv510, xwv511, xwv512, xwv513, Branch(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144), cf, cg) -> new_mkBalBranch(xwv510, xwv511, xwv513, new_deleteMax0(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144, cf, cg), cf, cg) 37.19/18.91 new_esEs5(xwv401, xwv301, app(ty_Ratio, gad)) -> new_esEs21(xwv401, xwv301, gad) 37.19/18.91 new_esEs12(Just(xwv280), Just(xwv330), app(ty_Maybe, bc)) -> new_esEs12(xwv280, xwv330, bc) 37.19/18.91 new_esEs7(xwv400, xwv300, ty_Ordering) -> new_esEs14(xwv400, xwv300) 37.19/18.91 new_esEs32(xwv282, xwv332, app(ty_[], bae)) -> new_esEs25(xwv282, xwv332, bae) 37.19/18.91 new_esEs35(xwv721, xwv731, ty_@0) -> new_esEs22(xwv721, xwv731) 37.19/18.91 new_esEs35(xwv721, xwv731, app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs23(xwv721, xwv731, eef, eeg, eeh) 37.19/18.91 new_lt6(xwv89, xwv92, ty_Bool) -> new_lt9(xwv89, xwv92) 37.19/18.91 new_ltEs19(xwv99, xwv100, ty_Double) -> new_ltEs11(xwv99, xwv100) 37.19/18.91 new_esEs12(Nothing, Just(xwv330), bb) -> False 37.19/18.91 new_esEs12(Just(xwv280), Nothing, bb) -> False 37.19/18.91 new_ltEs16(Left(xwv720), Left(xwv730), ty_Float, dhe) -> new_ltEs12(xwv720, xwv730) 37.19/18.91 new_esEs6(xwv400, xwv300, ty_Float) -> new_esEs20(xwv400, xwv300) 37.19/18.91 new_ltEs20(xwv721, xwv731, ty_@0) -> new_ltEs4(xwv721, xwv731) 37.19/18.91 new_esEs17(Left(xwv280), Left(xwv330), ty_@0, cgd) -> new_esEs22(xwv280, xwv330) 37.19/18.91 new_esEs12(Nothing, Nothing, bb) -> True 37.19/18.91 new_esEs42(xwv28, xwv33, ty_Integer) -> new_esEs24(xwv28, xwv33) 37.19/18.91 new_ltEs19(xwv99, xwv100, app(app(ty_Either, deb), dec)) -> new_ltEs16(xwv99, xwv100, deb, dec) 37.19/18.91 new_compare8(:%(xwv400, xwv401), :%(xwv300, xwv301), ty_Int) -> new_compare14(new_sr(xwv400, xwv301), new_sr(xwv300, xwv401)) 37.19/18.91 new_esEs17(Left(xwv280), Left(xwv330), app(app(app(ty_@3, ehd), ehe), ehf), cgd) -> new_esEs23(xwv280, xwv330, ehd, ehe, ehf) 37.19/18.91 new_primEqNat0(Succ(xwv2800), Succ(xwv3300)) -> new_primEqNat0(xwv2800, xwv3300) 37.19/18.91 new_ltEs22(xwv722, xwv732, app(ty_Maybe, eff)) -> new_ltEs10(xwv722, xwv732, eff) 37.19/18.91 new_esEs33(xwv125, xwv127, app(ty_Maybe, bbb)) -> new_esEs12(xwv125, xwv127, bbb) 37.19/18.91 new_ltEs21(xwv126, xwv128, ty_Char) -> new_ltEs7(xwv126, xwv128) 37.19/18.91 new_not(True) -> False 37.19/18.91 new_esEs9(xwv402, xwv302, ty_Integer) -> new_esEs24(xwv402, xwv302) 37.19/18.91 new_primCompAux00(xwv78, LT) -> LT 37.19/18.91 new_esEs27(xwv88, xwv91, app(ty_[], chf)) -> new_esEs25(xwv88, xwv91, chf) 37.19/18.91 new_esEs5(xwv401, xwv301, app(ty_Maybe, fhg)) -> new_esEs12(xwv401, xwv301, fhg) 37.19/18.91 new_ltEs20(xwv721, xwv731, ty_Integer) -> new_ltEs17(xwv721, xwv731) 37.19/18.91 new_ltEs10(Just(xwv720), Just(xwv730), ty_Bool) -> new_ltEs8(xwv720, xwv730) 37.19/18.91 new_ltEs16(Right(xwv720), Right(xwv730), eah, app(app(ty_Either, ebh), eca)) -> new_ltEs16(xwv720, xwv730, ebh, eca) 37.19/18.91 new_ltEs19(xwv99, xwv100, ty_Bool) -> new_ltEs8(xwv99, xwv100) 37.19/18.91 new_esEs34(xwv720, xwv730, ty_Bool) -> new_esEs13(xwv720, xwv730) 37.19/18.91 new_lt6(xwv89, xwv92, app(ty_Ratio, dbf)) -> new_lt4(xwv89, xwv92, dbf) 37.19/18.91 new_mkBalBranch(xwv13, xwv14, xwv16, xwv35, bed, bee) -> new_mkBalBranch6MkBalBranch5(xwv16, xwv13, xwv14, xwv35, new_lt7(new_primPlusInt(new_mkBalBranch6Size_l(xwv16, xwv13, xwv14, xwv35, bed, bee), new_mkBalBranch6Size_r(xwv16, xwv13, xwv14, xwv35, bed, bee)), Pos(Succ(Succ(Zero)))), bed, bee) 37.19/18.91 new_lt22(xwv720, xwv730, app(ty_Ratio, eea)) -> new_lt4(xwv720, xwv730, eea) 37.19/18.91 new_esEs8(xwv401, xwv301, app(app(ty_Either, fcf), fcg)) -> new_esEs17(xwv401, xwv301, fcf, fcg) 37.19/18.91 new_esEs17(Right(xwv280), Right(xwv330), cgc, ty_Float) -> new_esEs20(xwv280, xwv330) 37.19/18.91 new_primEqNat0(Succ(xwv2800), Zero) -> False 37.19/18.91 new_primEqNat0(Zero, Succ(xwv3300)) -> False 37.19/18.91 new_esEs11(xwv400, xwv300, app(app(ty_Either, bhg), bhh)) -> new_esEs17(xwv400, xwv300, bhg, bhh) 37.19/18.91 new_esEs18(Char(xwv280), Char(xwv330)) -> new_primEqNat0(xwv280, xwv330) 37.19/18.91 new_esEs38(xwv280, xwv330, ty_Char) -> new_esEs18(xwv280, xwv330) 37.19/18.91 new_ltEs20(xwv721, xwv731, ty_Int) -> new_ltEs6(xwv721, xwv731) 37.19/18.91 new_esEs40(xwv281, xwv331, ty_Ordering) -> new_esEs14(xwv281, xwv331) 37.19/18.91 new_esEs9(xwv402, xwv302, app(ty_[], feh)) -> new_esEs25(xwv402, xwv302, feh) 37.19/18.91 new_esEs29(xwv720, xwv730, ty_Bool) -> new_esEs13(xwv720, xwv730) 37.19/18.91 new_esEs30(xwv280, xwv330, ty_Ordering) -> new_esEs14(xwv280, xwv330) 37.19/18.91 new_compare8(:%(xwv400, xwv401), :%(xwv300, xwv301), ty_Integer) -> new_compare15(new_sr0(xwv400, xwv301), new_sr0(xwv300, xwv401)) 37.19/18.91 new_lt20(xwv720, xwv730, ty_Integer) -> new_lt19(xwv720, xwv730) 37.19/18.91 new_lt23(xwv721, xwv731, ty_Float) -> new_lt13(xwv721, xwv731) 37.19/18.91 new_esEs31(xwv281, xwv331, app(ty_Ratio, gg)) -> new_esEs21(xwv281, xwv331, gg) 37.19/18.91 new_ltEs14(EQ, EQ) -> True 37.19/18.91 new_esEs11(xwv400, xwv300, app(ty_Maybe, bhf)) -> new_esEs12(xwv400, xwv300, bhf) 37.19/18.91 new_ltEs10(Nothing, Just(xwv730), ffa) -> True 37.19/18.91 new_esEs4(xwv400, xwv300, ty_@0) -> new_esEs22(xwv400, xwv300) 37.19/18.91 new_esEs4(xwv400, xwv300, app(app(app(ty_@3, fhc), fhd), fhe)) -> new_esEs23(xwv400, xwv300, fhc, fhd, fhe) 37.19/18.91 new_primPlusInt(Pos(xwv1620), Pos(xwv1370)) -> Pos(new_primPlusNat0(xwv1620, xwv1370)) 37.19/18.91 new_ltEs10(Just(xwv720), Just(xwv730), ty_Double) -> new_ltEs11(xwv720, xwv730) 37.19/18.91 new_esEs9(xwv402, xwv302, app(app(app(ty_@3, fee), fef), feg)) -> new_esEs23(xwv402, xwv302, fee, fef, feg) 37.19/18.91 new_ltEs21(xwv126, xwv128, ty_Double) -> new_ltEs11(xwv126, xwv128) 37.19/18.91 new_deleteMin0(xwv520, xwv521, xwv522, EmptyFM, xwv524, cf, cg) -> xwv524 37.19/18.91 new_esEs9(xwv402, xwv302, ty_@0) -> new_esEs22(xwv402, xwv302) 37.19/18.91 new_primCmpInt(Pos(Succ(xwv4000)), Neg(xwv300)) -> GT 37.19/18.91 new_lt6(xwv89, xwv92, ty_Ordering) -> new_lt16(xwv89, xwv92) 37.19/18.91 new_gt(xwv40, xwv30, app(app(ty_Either, bfg), bfh)) -> new_esEs41(new_compare17(xwv40, xwv30, bfg, bfh)) 37.19/18.91 new_mkBalBranch6Size_l(xwv16, xwv13, xwv14, xwv35, bed, bee) -> new_sizeFM(xwv16, bed, bee) 37.19/18.91 new_esEs33(xwv125, xwv127, ty_Int) -> new_esEs16(xwv125, xwv127) 37.19/18.91 new_mkBalBranch6MkBalBranch5(xwv16, xwv13, xwv14, xwv35, True, bed, bee) -> new_mkBranchResult(xwv13, xwv14, xwv16, xwv35, bed, bee) 37.19/18.91 new_lt14(xwv18, xwv13) -> new_esEs26(new_compare7(xwv18, xwv13)) 37.19/18.91 new_esEs12(Just(xwv280), Just(xwv330), ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.91 new_esEs7(xwv400, xwv300, app(app(ty_@2, fbf), fbg)) -> new_esEs19(xwv400, xwv300, fbf, fbg) 37.19/18.91 new_compare31(xwv400, xwv300, ty_Bool) -> new_compare29(xwv400, xwv300) 37.19/18.91 new_primCompAux0(xwv400, xwv300, xwv56, bfc) -> new_primCompAux00(xwv56, new_compare31(xwv400, xwv300, bfc)) 37.19/18.91 new_lt5(xwv88, xwv91, ty_Int) -> new_lt7(xwv88, xwv91) 37.19/18.91 new_ltEs10(Just(xwv720), Just(xwv730), ty_Char) -> new_ltEs7(xwv720, xwv730) 37.19/18.91 new_primCmpNat0(Zero, Succ(xwv3000)) -> LT 37.19/18.91 new_lt20(xwv720, xwv730, app(ty_[], dfb)) -> new_lt15(xwv720, xwv730, dfb) 37.19/18.91 new_sizeFM(EmptyFM, bed, bee) -> Pos(Zero) 37.19/18.91 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 37.19/18.91 new_esEs40(xwv281, xwv331, app(app(app(ty_@3, gdf), gdg), gdh)) -> new_esEs23(xwv281, xwv331, gdf, gdg, gdh) 37.19/18.91 new_esEs40(xwv281, xwv331, ty_@0) -> new_esEs22(xwv281, xwv331) 37.19/18.91 new_esEs42(xwv28, xwv33, ty_Float) -> new_esEs20(xwv28, xwv33) 37.19/18.91 new_ltEs19(xwv99, xwv100, ty_Char) -> new_ltEs7(xwv99, xwv100) 37.19/18.91 new_compare13(xwv177, xwv178, xwv179, xwv180, False, beb, bec) -> GT 37.19/18.91 new_esEs33(xwv125, xwv127, app(ty_Ratio, bca)) -> new_esEs21(xwv125, xwv127, bca) 37.19/18.91 new_esEs17(Right(xwv280), Right(xwv330), cgc, ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.91 new_lt5(xwv88, xwv91, app(ty_Maybe, che)) -> new_lt11(xwv88, xwv91, che) 37.19/18.91 new_ltEs10(Just(xwv720), Just(xwv730), app(ty_Ratio, fgc)) -> new_ltEs18(xwv720, xwv730, fgc) 37.19/18.91 new_esEs39(xwv280, xwv330, app(app(ty_Either, gbf), gbg)) -> new_esEs17(xwv280, xwv330, gbf, gbg) 37.19/18.91 new_esEs33(xwv125, xwv127, ty_Char) -> new_esEs18(xwv125, xwv127) 37.19/18.91 new_lt22(xwv720, xwv730, app(ty_[], edc)) -> new_lt15(xwv720, xwv730, edc) 37.19/18.91 new_ltEs16(Left(xwv720), Left(xwv730), app(ty_Ratio, eag), dhe) -> new_ltEs18(xwv720, xwv730, eag) 37.19/18.91 new_esEs11(xwv400, xwv300, ty_Int) -> new_esEs16(xwv400, xwv300) 37.19/18.91 new_esEs42(xwv28, xwv33, ty_Double) -> new_esEs15(xwv28, xwv33) 37.19/18.91 new_esEs8(xwv401, xwv301, app(ty_Ratio, fdb)) -> new_esEs21(xwv401, xwv301, fdb) 37.19/18.91 new_esEs7(xwv400, xwv300, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs23(xwv400, xwv300, fca, fcb, fcc) 37.19/18.91 new_esEs32(xwv282, xwv332, ty_@0) -> new_esEs22(xwv282, xwv332) 37.19/18.91 new_esEs10(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 37.19/18.91 new_esEs34(xwv720, xwv730, ty_Float) -> new_esEs20(xwv720, xwv730) 37.19/18.91 new_ltEs5(xwv90, xwv93, app(ty_[], dcb)) -> new_ltEs13(xwv90, xwv93, dcb) 37.19/18.91 new_esEs42(xwv28, xwv33, ty_@0) -> new_esEs22(xwv28, xwv33) 37.19/18.91 new_ltEs19(xwv99, xwv100, ty_Ordering) -> new_ltEs14(xwv99, xwv100) 37.19/18.91 new_lt21(xwv125, xwv127, ty_Int) -> new_lt7(xwv125, xwv127) 37.19/18.91 new_compare31(xwv400, xwv300, ty_Char) -> new_compare6(xwv400, xwv300) 37.19/18.91 new_esEs10(xwv400, xwv300, ty_Integer) -> new_esEs24(xwv400, xwv300) 37.19/18.91 new_ltEs14(EQ, GT) -> True 37.19/18.91 new_esEs29(xwv720, xwv730, app(app(ty_Either, dff), dfg)) -> new_esEs17(xwv720, xwv730, dff, dfg) 37.19/18.91 new_mkBalBranch6MkBalBranch01(xwv16, xwv13, xwv14, xwv350, xwv351, xwv352, EmptyFM, xwv354, False, bed, bee) -> error([]) 37.19/18.91 new_esEs38(xwv280, xwv330, ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.91 new_esEs32(xwv282, xwv332, ty_Double) -> new_esEs15(xwv282, xwv332) 37.19/18.91 new_ltEs23(xwv106, xwv107, ty_Integer) -> new_ltEs17(xwv106, xwv107) 37.19/18.91 new_ltEs5(xwv90, xwv93, ty_Ordering) -> new_ltEs14(xwv90, xwv93) 37.19/18.91 new_esEs28(xwv89, xwv92, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs23(xwv89, xwv92, dba, dbb, dbc) 37.19/18.91 new_primEqInt(Neg(Succ(xwv2800)), Neg(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) 37.19/18.91 new_ltEs16(Left(xwv720), Left(xwv730), app(app(ty_@2, dhf), dhg), dhe) -> new_ltEs9(xwv720, xwv730, dhf, dhg) 37.19/18.91 new_esEs30(xwv280, xwv330, ty_@0) -> new_esEs22(xwv280, xwv330) 37.19/18.91 new_primCmpInt(Neg(Zero), Pos(Succ(xwv3000))) -> LT 37.19/18.91 new_primMulInt(Pos(xwv3000), Pos(xwv4010)) -> Pos(new_primMulNat0(xwv3000, xwv4010)) 37.19/18.91 new_ltEs8(True, False) -> False 37.19/18.91 new_ltEs14(LT, GT) -> True 37.19/18.91 new_ltEs14(GT, GT) -> True 37.19/18.91 new_ltEs22(xwv722, xwv732, ty_Int) -> new_ltEs6(xwv722, xwv732) 37.19/18.91 new_esEs9(xwv402, xwv302, ty_Float) -> new_esEs20(xwv402, xwv302) 37.19/18.91 new_esEs14(LT, GT) -> False 37.19/18.91 new_esEs14(GT, LT) -> False 37.19/18.91 new_esEs38(xwv280, xwv330, app(ty_Maybe, ceg)) -> new_esEs12(xwv280, xwv330, ceg) 37.19/18.91 new_esEs17(Right(xwv280), Right(xwv330), cgc, app(app(ty_@2, fac), fad)) -> new_esEs19(xwv280, xwv330, fac, fad) 37.19/18.91 new_primMulNat0(Succ(xwv30000), Zero) -> Zero 37.19/18.91 new_primMulNat0(Zero, Succ(xwv40100)) -> Zero 37.19/18.91 new_ltEs8(False, False) -> True 37.19/18.91 new_esEs32(xwv282, xwv332, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs23(xwv282, xwv332, bab, bac, bad) 37.19/18.91 new_esEs5(xwv401, xwv301, app(app(ty_Either, fhh), gaa)) -> new_esEs17(xwv401, xwv301, fhh, gaa) 37.19/18.91 new_esEs6(xwv400, xwv300, ty_Integer) -> new_esEs24(xwv400, xwv300) 37.19/18.91 new_compare26(xwv72, xwv73, True, geb) -> EQ 37.19/18.91 new_ltEs19(xwv99, xwv100, ty_Float) -> new_ltEs12(xwv99, xwv100) 37.19/18.91 new_esEs12(Just(xwv280), Just(xwv330), ty_Ordering) -> new_esEs14(xwv280, xwv330) 37.19/18.91 new_ltEs22(xwv722, xwv732, app(app(ty_@2, efd), efe)) -> new_ltEs9(xwv722, xwv732, efd, efe) 37.19/18.91 new_primPlusNat0(Succ(xwv16200), Zero) -> Succ(xwv16200) 37.19/18.91 new_primPlusNat0(Zero, Succ(xwv13700)) -> Succ(xwv13700) 37.19/18.91 new_lt17(xwv18, xwv13, cea, ceb, cec) -> new_esEs26(new_compare30(xwv18, xwv13, cea, ceb, cec)) 37.19/18.91 new_esEs35(xwv721, xwv731, app(app(ty_@2, eeb), eec)) -> new_esEs19(xwv721, xwv731, eeb, eec) 37.19/18.91 new_lt23(xwv721, xwv731, ty_Int) -> new_lt7(xwv721, xwv731) 37.19/18.91 new_deleteMin0(xwv520, xwv521, xwv522, Branch(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234), xwv524, cf, cg) -> new_mkBalBranch(xwv520, xwv521, new_deleteMin0(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234, cf, cg), xwv524, cf, cg) 37.19/18.91 new_compare19(Float(xwv400, Pos(xwv4010)), Float(xwv300, Pos(xwv3010))) -> new_compare14(new_sr(xwv400, Pos(xwv3010)), new_sr(Pos(xwv4010), xwv300)) 37.19/18.91 new_ltEs5(xwv90, xwv93, app(app(app(ty_@3, dcc), dcd), dce)) -> new_ltEs15(xwv90, xwv93, dcc, dcd, dce) 37.19/18.91 new_compare1([], [], bfc) -> EQ 37.19/18.91 new_lt22(xwv720, xwv730, app(app(ty_@2, ech), eda)) -> new_lt10(xwv720, xwv730, ech, eda) 37.19/18.91 new_compare29(False, False) -> EQ 37.19/18.91 new_esEs10(xwv400, xwv300, app(app(ty_@2, bgg), bgh)) -> new_esEs19(xwv400, xwv300, bgg, bgh) 37.19/18.91 new_lt6(xwv89, xwv92, app(app(ty_@2, dae), daf)) -> new_lt10(xwv89, xwv92, dae, daf) 37.19/18.91 new_esEs6(xwv400, xwv300, app(ty_[], ec)) -> new_esEs25(xwv400, xwv300, ec) 37.19/18.91 new_glueBal2GlueBal1(xwv520, xwv521, xwv522, xwv523, xwv524, xwv510, xwv511, xwv512, xwv513, xwv514, False, cf, cg) -> new_mkBalBranch(new_glueBal2Mid_key100(xwv520, xwv521, xwv522, xwv523, xwv524, xwv510, xwv511, xwv512, xwv513, xwv514, xwv510, xwv511, xwv512, xwv513, xwv514, cf, cg), new_glueBal2Mid_elt100(xwv520, xwv521, xwv522, xwv523, xwv524, xwv510, xwv511, xwv512, xwv513, xwv514, xwv510, xwv511, xwv512, xwv513, xwv514, cg, cf), new_deleteMax0(xwv510, xwv511, xwv512, xwv513, xwv514, cf, cg), Branch(xwv520, xwv521, xwv522, xwv523, xwv524), cf, cg) 37.19/18.91 new_glueBal2Mid_key200(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv274, xwv275, xwv276, Branch(xwv2770, xwv2771, xwv2772, xwv2773, xwv2774), xwv278, bdh, bea) -> new_glueBal2Mid_key200(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv2770, xwv2771, xwv2772, xwv2773, xwv2774, bdh, bea) 37.19/18.91 new_esEs33(xwv125, xwv127, app(app(ty_@2, bah), bba)) -> new_esEs19(xwv125, xwv127, bah, bba) 37.19/18.91 new_delFromFM0(Branch(xwv30, xwv31, xwv32, xwv33, xwv34), xwv40, h, ba) -> new_delFromFM20(xwv30, xwv31, xwv32, xwv33, xwv34, xwv40, new_gt(xwv40, xwv30, h), h, ba) 37.19/18.91 new_esEs9(xwv402, xwv302, app(app(ty_@2, feb), fec)) -> new_esEs19(xwv402, xwv302, feb, fec) 37.19/18.91 new_compare9(Just(xwv400), Just(xwv300), da) -> new_compare26(xwv400, xwv300, new_esEs6(xwv400, xwv300, da), da) 37.19/18.91 new_esEs30(xwv280, xwv330, ty_Char) -> new_esEs18(xwv280, xwv330) 37.19/18.91 new_esEs13(True, True) -> True 37.19/18.91 new_ltEs16(Right(xwv720), Right(xwv730), eah, ty_Char) -> new_ltEs7(xwv720, xwv730) 37.19/18.91 new_esEs42(xwv28, xwv33, app(ty_[], cef)) -> new_esEs25(xwv28, xwv33, cef) 37.19/18.91 new_ltEs20(xwv721, xwv731, app(app(app(ty_@3, dge), dgf), dgg)) -> new_ltEs15(xwv721, xwv731, dge, dgf, dgg) 37.19/18.91 new_ltEs16(Right(xwv720), Right(xwv730), eah, ty_Bool) -> new_ltEs8(xwv720, xwv730) 37.19/18.91 new_esEs29(xwv720, xwv730, ty_Double) -> new_esEs15(xwv720, xwv730) 37.19/18.91 new_esEs38(xwv280, xwv330, ty_Ordering) -> new_esEs14(xwv280, xwv330) 37.19/18.91 new_esEs30(xwv280, xwv330, app(app(app(ty_@3, ff), fg), fh)) -> new_esEs23(xwv280, xwv330, ff, fg, fh) 37.19/18.91 new_lt24(xwv18, xwv13, ty_Ordering) -> new_lt16(xwv18, xwv13) 37.19/18.91 new_esEs17(Right(xwv280), Right(xwv330), cgc, ty_Double) -> new_esEs15(xwv280, xwv330) 37.19/18.91 new_lt4(xwv18, xwv13, ce) -> new_esEs26(new_compare8(xwv18, xwv13, ce)) 37.19/18.91 new_compare17(Left(xwv400), Right(xwv300), bfg, bfh) -> LT 37.19/18.91 new_esEs31(xwv281, xwv331, app(app(ty_Either, gc), gd)) -> new_esEs17(xwv281, xwv331, gc, gd) 37.19/18.91 new_esEs6(xwv400, xwv300, ty_Double) -> new_esEs15(xwv400, xwv300) 37.19/18.91 new_ltEs21(xwv126, xwv128, app(app(ty_Either, bda), bdb)) -> new_ltEs16(xwv126, xwv128, bda, bdb) 37.19/18.91 new_esEs11(xwv400, xwv300, app(ty_Ratio, cac)) -> new_esEs21(xwv400, xwv300, cac) 37.19/18.91 new_esEs7(xwv400, xwv300, ty_@0) -> new_esEs22(xwv400, xwv300) 37.19/18.91 new_lt23(xwv721, xwv731, ty_Double) -> new_lt12(xwv721, xwv731) 37.19/18.91 new_ltEs21(xwv126, xwv128, ty_Float) -> new_ltEs12(xwv126, xwv128) 37.19/18.91 new_compare24(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, False, cgh, cha, chb) -> new_compare10(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, new_lt5(xwv88, xwv91, cgh), new_asAs(new_esEs27(xwv88, xwv91, cgh), new_pePe(new_lt6(xwv89, xwv92, cha), new_asAs(new_esEs28(xwv89, xwv92, cha), new_ltEs5(xwv90, xwv93, chb)))), cgh, cha, chb) 37.19/18.91 new_ltEs8(False, True) -> True 37.19/18.91 new_mkBalBranch6MkBalBranch11(xwv160, xwv161, xwv162, xwv163, EmptyFM, xwv13, xwv14, xwv35, False, bed, bee) -> error([]) 37.19/18.91 new_compare29(True, False) -> GT 37.19/18.91 new_esEs42(xwv28, xwv33, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs23(xwv28, xwv33, ed, ee, ef) 37.19/18.91 new_esEs32(xwv282, xwv332, ty_Float) -> new_esEs20(xwv282, xwv332) 37.19/18.91 new_esEs36(xwv280, xwv330, ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.91 new_ltEs16(Right(xwv720), Right(xwv730), eah, ty_Double) -> new_ltEs11(xwv720, xwv730) 37.19/18.91 new_esEs33(xwv125, xwv127, ty_@0) -> new_esEs22(xwv125, xwv127) 37.19/18.91 new_esEs17(Left(xwv280), Left(xwv330), app(ty_Ratio, ehc), cgd) -> new_esEs21(xwv280, xwv330, ehc) 37.19/18.91 new_esEs6(xwv400, xwv300, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs23(xwv400, xwv300, dh, ea, eb) 37.19/18.91 new_ltEs23(xwv106, xwv107, ty_Double) -> new_ltEs11(xwv106, xwv107) 37.19/18.91 new_esEs6(xwv400, xwv300, ty_@0) -> new_esEs22(xwv400, xwv300) 37.19/18.91 new_esEs33(xwv125, xwv127, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs23(xwv125, xwv127, bbd, bbe, bbf) 37.19/18.91 new_compare10(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, False, xwv199, bef, beg, beh) -> new_compare111(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, xwv199, bef, beg, beh) 37.19/18.91 new_esEs17(Right(xwv280), Right(xwv330), cgc, app(ty_Ratio, fae)) -> new_esEs21(xwv280, xwv330, fae) 37.19/18.91 new_esEs11(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 37.19/18.91 new_esEs8(xwv401, xwv301, ty_Double) -> new_esEs15(xwv401, xwv301) 37.19/18.91 new_esEs42(xwv28, xwv33, ty_Char) -> new_esEs18(xwv28, xwv33) 37.19/18.91 new_lt23(xwv721, xwv731, app(app(ty_Either, efa), efb)) -> new_lt18(xwv721, xwv731, efa, efb) 37.19/18.91 new_esEs35(xwv721, xwv731, ty_Float) -> new_esEs20(xwv721, xwv731) 37.19/18.91 new_esEs29(xwv720, xwv730, ty_Int) -> new_esEs16(xwv720, xwv730) 37.19/18.91 new_lt21(xwv125, xwv127, ty_Float) -> new_lt13(xwv125, xwv127) 37.19/18.91 new_compare15(Integer(xwv400), Integer(xwv300)) -> new_primCmpInt(xwv400, xwv300) 37.19/18.91 new_esEs35(xwv721, xwv731, ty_Int) -> new_esEs16(xwv721, xwv731) 37.19/18.91 new_ltEs10(Just(xwv720), Just(xwv730), app(app(ty_@2, ffb), ffc)) -> new_ltEs9(xwv720, xwv730, ffb, ffc) 37.19/18.91 new_lt6(xwv89, xwv92, ty_@0) -> new_lt14(xwv89, xwv92) 37.19/18.91 new_primPlusInt(Neg(xwv1620), Neg(xwv1370)) -> Neg(new_primPlusNat0(xwv1620, xwv1370)) 37.19/18.91 new_gt(xwv40, xwv30, ty_Bool) -> new_esEs41(new_compare29(xwv40, xwv30)) 37.19/18.91 new_ltEs16(Right(xwv720), Right(xwv730), eah, ty_Float) -> new_ltEs12(xwv720, xwv730) 37.19/18.91 new_esEs10(xwv400, xwv300, ty_Float) -> new_esEs20(xwv400, xwv300) 37.19/18.91 new_esEs29(xwv720, xwv730, app(ty_Maybe, dfa)) -> new_esEs12(xwv720, xwv730, dfa) 37.19/18.91 new_esEs40(xwv281, xwv331, ty_Integer) -> new_esEs24(xwv281, xwv331) 37.19/18.91 new_esEs35(xwv721, xwv731, app(ty_Maybe, eed)) -> new_esEs12(xwv721, xwv731, eed) 37.19/18.91 new_esEs13(False, False) -> True 37.19/18.91 new_compare31(xwv400, xwv300, ty_Integer) -> new_compare15(xwv400, xwv300) 37.19/18.91 new_esEs38(xwv280, xwv330, app(app(ty_Either, ceh), cfa)) -> new_esEs17(xwv280, xwv330, ceh, cfa) 37.19/18.91 new_lt7(xwv18, xwv13) -> new_esEs26(new_compare14(xwv18, xwv13)) 37.19/18.91 new_ltEs16(Right(xwv720), Right(xwv730), eah, app(app(ty_@2, eba), ebb)) -> new_ltEs9(xwv720, xwv730, eba, ebb) 37.19/18.91 new_esEs14(EQ, GT) -> False 37.19/18.91 new_esEs14(GT, EQ) -> False 37.19/18.91 new_esEs5(xwv401, xwv301, ty_Char) -> new_esEs18(xwv401, xwv301) 37.19/18.91 new_mkBranch(xwv238, xwv239, xwv240, xwv241, xwv242, xwv243, xwv244, xwv245, xwv246, cdg, cdh) -> new_mkBranchResult(xwv239, xwv240, xwv241, new_mkBranch0(xwv242, xwv243, xwv244, xwv245, xwv246, cdg, cdh), cdg, cdh) 37.19/18.91 new_esEs17(Left(xwv280), Left(xwv330), app(app(ty_@2, eha), ehb), cgd) -> new_esEs19(xwv280, xwv330, eha, ehb) 37.19/18.91 new_glueBal2Mid_elt200(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv258, xwv259, xwv260, EmptyFM, xwv262, bdf, bdg) -> xwv259 37.19/18.91 new_esEs32(xwv282, xwv332, app(app(ty_@2, hg), hh)) -> new_esEs19(xwv282, xwv332, hg, hh) 37.19/18.91 new_esEs32(xwv282, xwv332, ty_Char) -> new_esEs18(xwv282, xwv332) 37.19/18.91 new_esEs30(xwv280, xwv330, app(ty_Maybe, eg)) -> new_esEs12(xwv280, xwv330, eg) 37.19/18.91 new_esEs11(xwv400, xwv300, ty_Ordering) -> new_esEs14(xwv400, xwv300) 37.19/18.91 new_esEs17(Right(xwv280), Right(xwv330), cgc, ty_@0) -> new_esEs22(xwv280, xwv330) 37.19/18.91 new_esEs39(xwv280, xwv330, ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.91 new_esEs29(xwv720, xwv730, app(ty_[], dfb)) -> new_esEs25(xwv720, xwv730, dfb) 37.19/18.91 new_ltEs16(Right(xwv720), Left(xwv730), eah, dhe) -> False 37.19/18.91 new_ltEs16(Right(xwv720), Right(xwv730), eah, ty_Integer) -> new_ltEs17(xwv720, xwv730) 37.19/18.91 new_delFromFM20(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, bed, bee) -> new_delFromFM10(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_lt24(xwv18, xwv13, bed), bed, bee) 37.19/18.91 new_esEs30(xwv280, xwv330, app(ty_Ratio, fd)) -> new_esEs21(xwv280, xwv330, fd) 37.19/18.91 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 37.19/18.91 new_compare31(xwv400, xwv300, ty_@0) -> new_compare7(xwv400, xwv300) 37.19/18.91 new_lt21(xwv125, xwv127, ty_Char) -> new_lt8(xwv125, xwv127) 37.19/18.91 new_lt22(xwv720, xwv730, ty_Ordering) -> new_lt16(xwv720, xwv730) 37.19/18.91 new_ltEs8(True, True) -> True 37.19/18.91 new_lt24(xwv18, xwv13, app(app(app(ty_@3, cea), ceb), cec)) -> new_lt17(xwv18, xwv13, cea, ceb, cec) 37.19/18.91 new_primCmpInt(Pos(Succ(xwv4000)), Pos(xwv300)) -> new_primCmpNat0(Succ(xwv4000), xwv300) 37.19/18.91 new_esEs38(xwv280, xwv330, ty_@0) -> new_esEs22(xwv280, xwv330) 37.19/18.91 new_esEs30(xwv280, xwv330, app(ty_[], ga)) -> new_esEs25(xwv280, xwv330, ga) 37.19/18.91 new_lt11(xwv18, xwv13, bgc) -> new_esEs26(new_compare9(xwv18, xwv13, bgc)) 37.19/18.91 new_esEs10(xwv400, xwv300, app(ty_Maybe, bgd)) -> new_esEs12(xwv400, xwv300, bgd) 37.19/18.91 new_lt23(xwv721, xwv731, ty_@0) -> new_lt14(xwv721, xwv731) 37.19/18.91 new_primCompAux00(xwv78, EQ) -> xwv78 37.19/18.91 new_ltEs5(xwv90, xwv93, ty_Double) -> new_ltEs11(xwv90, xwv93) 37.19/18.91 new_mkBalBranch6MkBalBranch4(xwv16, xwv13, xwv14, EmptyFM, True, bed, bee) -> error([]) 37.19/18.91 new_esEs17(Right(xwv280), Right(xwv330), cgc, app(ty_[], fba)) -> new_esEs25(xwv280, xwv330, fba) 37.19/18.91 new_lt21(xwv125, xwv127, ty_Bool) -> new_lt9(xwv125, xwv127) 37.19/18.91 new_esEs27(xwv88, xwv91, ty_Bool) -> new_esEs13(xwv88, xwv91) 37.19/18.91 new_esEs39(xwv280, xwv330, ty_Float) -> new_esEs20(xwv280, xwv330) 37.19/18.91 new_mkBranchResult(xwv13, xwv14, xwv16, xwv35, bed, bee) -> Branch(xwv13, xwv14, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM(xwv16, bed, bee)), new_sizeFM(xwv35, bed, bee)), xwv16, xwv35) 37.19/18.91 new_lt21(xwv125, xwv127, ty_Ordering) -> new_lt16(xwv125, xwv127) 37.19/18.91 new_esEs12(Just(xwv280), Just(xwv330), ty_Bool) -> new_esEs13(xwv280, xwv330) 37.19/18.91 new_compare31(xwv400, xwv300, app(ty_[], cbc)) -> new_compare1(xwv400, xwv300, cbc) 37.19/18.91 new_primMulNat0(Succ(xwv30000), Succ(xwv40100)) -> new_primPlusNat0(new_primMulNat0(xwv30000, Succ(xwv40100)), Succ(xwv40100)) 37.19/18.91 new_esEs11(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 37.19/18.91 new_compare17(Right(xwv400), Left(xwv300), bfg, bfh) -> GT 37.19/18.91 new_ltEs5(xwv90, xwv93, app(app(ty_Either, dcf), dcg)) -> new_ltEs16(xwv90, xwv93, dcf, dcg) 37.19/18.91 new_ltEs24(xwv72, xwv73, app(ty_[], fbb)) -> new_ltEs13(xwv72, xwv73, fbb) 37.19/18.91 new_lt5(xwv88, xwv91, ty_Integer) -> new_lt19(xwv88, xwv91) 37.19/18.91 new_esEs4(xwv400, xwv300, ty_Float) -> new_esEs20(xwv400, xwv300) 37.19/18.91 new_esEs17(Left(xwv280), Left(xwv330), ty_Float, cgd) -> new_esEs20(xwv280, xwv330) 37.19/18.91 new_esEs33(xwv125, xwv127, app(app(ty_Either, bbg), bbh)) -> new_esEs17(xwv125, xwv127, bbg, bbh) 37.19/18.91 new_gt(xwv40, xwv30, app(app(ty_@2, bfa), bfb)) -> new_esEs41(new_compare16(xwv40, xwv30, bfa, bfb)) 37.19/18.91 new_gt(xwv40, xwv30, app(ty_[], bfc)) -> new_esEs41(new_compare1(xwv40, xwv30, bfc)) 37.19/18.91 new_compare1(:(xwv400, xwv401), :(xwv300, xwv301), bfc) -> new_primCompAux0(xwv400, xwv300, new_compare1(xwv401, xwv301, bfc), bfc) 37.19/18.91 new_esEs17(Left(xwv280), Left(xwv330), app(ty_Maybe, egf), cgd) -> new_esEs12(xwv280, xwv330, egf) 37.19/18.91 new_deleteMax0(xwv510, xwv511, xwv512, xwv513, EmptyFM, cf, cg) -> xwv513 37.19/18.91 new_esEs17(Left(xwv280), Left(xwv330), app(ty_[], ehg), cgd) -> new_esEs25(xwv280, xwv330, ehg) 37.19/18.91 new_ltEs5(xwv90, xwv93, ty_Float) -> new_ltEs12(xwv90, xwv93) 37.19/18.91 new_esEs35(xwv721, xwv731, ty_Integer) -> new_esEs24(xwv721, xwv731) 37.19/18.91 new_lt5(xwv88, xwv91, ty_Ordering) -> new_lt16(xwv88, xwv91) 37.19/18.91 new_compare18(Double(xwv400, Pos(xwv4010)), Double(xwv300, Pos(xwv3010))) -> new_compare14(new_sr(xwv400, Pos(xwv3010)), new_sr(Pos(xwv4010), xwv300)) 37.19/18.91 new_esEs38(xwv280, xwv330, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs23(xwv280, xwv330, cfe, cff, cfg) 37.19/18.91 new_compare29(False, True) -> LT 37.19/18.91 new_glueBal2Mid_key100(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv306, xwv307, xwv308, xwv309, EmptyFM, gbc, gbd) -> xwv306 37.19/18.91 new_esEs40(xwv281, xwv331, app(app(ty_Either, gda), gdb)) -> new_esEs17(xwv281, xwv331, gda, gdb) 37.19/18.91 new_esEs34(xwv720, xwv730, app(app(ty_Either, edg), edh)) -> new_esEs17(xwv720, xwv730, edg, edh) 37.19/18.91 new_delFromFM10(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, False, cga, cgb) -> new_delFromFM00(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, new_esEs42(xwv28, xwv33, cga), cga, cgb) 37.19/18.91 new_esEs25(:(xwv280, xwv281), [], cef) -> False 37.19/18.91 new_esEs25([], :(xwv330, xwv331), cef) -> False 37.19/18.91 new_ltEs5(xwv90, xwv93, ty_Integer) -> new_ltEs17(xwv90, xwv93) 37.19/18.91 new_lt24(xwv18, xwv13, app(app(ty_@2, bdd), bde)) -> new_lt10(xwv18, xwv13, bdd, bde) 37.19/18.91 new_esEs10(xwv400, xwv300, ty_Int) -> new_esEs16(xwv400, xwv300) 37.19/18.91 new_esEs34(xwv720, xwv730, app(ty_Maybe, edb)) -> new_esEs12(xwv720, xwv730, edb) 37.19/18.91 new_delFromFM00(xwv48, xwv49, xwv50, xwv51, xwv52, xwv53, False, cf, cg) -> error([]) 37.19/18.91 new_lt20(xwv720, xwv730, ty_Char) -> new_lt8(xwv720, xwv730) 37.19/18.91 new_esEs34(xwv720, xwv730, ty_Integer) -> new_esEs24(xwv720, xwv730) 37.19/18.91 new_mkBalBranch6MkBalBranch3(Branch(xwv160, xwv161, xwv162, xwv163, xwv164), xwv13, xwv14, xwv35, True, bed, bee) -> new_mkBalBranch6MkBalBranch11(xwv160, xwv161, xwv162, xwv163, xwv164, xwv13, xwv14, xwv35, new_lt7(new_sizeFM(xwv164, bed, bee), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xwv163, bed, bee))), bed, bee) 37.19/18.91 new_mkBalBranch6MkBalBranch3(EmptyFM, xwv13, xwv14, xwv35, True, bed, bee) -> error([]) 37.19/18.91 new_compare24(xwv88, xwv89, xwv90, xwv91, xwv92, xwv93, True, cgh, cha, chb) -> EQ 37.19/18.91 new_esEs13(False, True) -> False 37.19/18.91 new_esEs13(True, False) -> False 37.19/18.91 new_esEs17(Left(xwv280), Left(xwv330), ty_Ordering, cgd) -> new_esEs14(xwv280, xwv330) 37.19/18.91 new_esEs17(Left(xwv280), Right(xwv330), cgc, cgd) -> False 37.19/18.91 new_esEs17(Right(xwv280), Left(xwv330), cgc, cgd) -> False 37.19/18.91 new_ltEs24(xwv72, xwv73, app(app(ty_@2, dee), def)) -> new_ltEs9(xwv72, xwv73, dee, def) 37.19/18.91 new_compare9(Nothing, Just(xwv300), da) -> LT 37.19/18.91 new_lt22(xwv720, xwv730, ty_@0) -> new_lt14(xwv720, xwv730) 37.19/18.91 new_esEs35(xwv721, xwv731, ty_Ordering) -> new_esEs14(xwv721, xwv731) 37.19/18.91 new_esEs34(xwv720, xwv730, ty_@0) -> new_esEs22(xwv720, xwv730) 37.19/18.91 new_esEs4(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 37.19/18.91 new_esEs28(xwv89, xwv92, app(ty_[], dah)) -> new_esEs25(xwv89, xwv92, dah) 37.19/18.91 new_lt20(xwv720, xwv730, ty_Bool) -> new_lt9(xwv720, xwv730) 37.19/18.91 new_delFromFM00(xwv48, xwv49, xwv50, Branch(xwv510, xwv511, xwv512, xwv513, xwv514), EmptyFM, xwv53, True, cf, cg) -> Branch(xwv510, xwv511, xwv512, xwv513, xwv514) 37.19/18.91 new_lt20(xwv720, xwv730, ty_Int) -> new_lt7(xwv720, xwv730) 37.19/18.91 new_fsEs(xwv205) -> new_not(new_esEs14(xwv205, GT)) 37.19/18.91 new_ltEs16(Left(xwv720), Left(xwv730), app(app(app(ty_@3, eab), eac), ead), dhe) -> new_ltEs15(xwv720, xwv730, eab, eac, ead) 37.19/18.91 new_esEs41(GT) -> True 37.19/18.91 new_mkBranch0(xwv242, xwv243, xwv244, xwv245, xwv246, cdg, cdh) -> new_mkBranchResult(xwv243, xwv244, xwv245, xwv246, cdg, cdh) 37.19/18.91 new_esEs28(xwv89, xwv92, app(ty_Maybe, dag)) -> new_esEs12(xwv89, xwv92, dag) 37.19/18.91 new_compare14(xwv40, xwv30) -> new_primCmpInt(xwv40, xwv30) 37.19/18.91 new_lt24(xwv18, xwv13, app(app(ty_Either, ced), cee)) -> new_lt18(xwv18, xwv13, ced, cee) 37.19/18.91 new_mkBalBranch6MkBalBranch4(xwv16, xwv13, xwv14, Branch(xwv350, xwv351, xwv352, xwv353, xwv354), True, bed, bee) -> new_mkBalBranch6MkBalBranch01(xwv16, xwv13, xwv14, xwv350, xwv351, xwv352, xwv353, xwv354, new_lt7(new_sizeFM(xwv353, bed, bee), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xwv354, bed, bee))), bed, bee) 37.19/18.91 new_lt5(xwv88, xwv91, ty_Char) -> new_lt8(xwv88, xwv91) 37.19/18.91 new_esEs29(xwv720, xwv730, ty_Ordering) -> new_esEs14(xwv720, xwv730) 37.19/18.91 new_compare18(Double(xwv400, Pos(xwv4010)), Double(xwv300, Neg(xwv3010))) -> new_compare14(new_sr(xwv400, Pos(xwv3010)), new_sr(Neg(xwv4010), xwv300)) 37.19/18.91 new_compare18(Double(xwv400, Neg(xwv4010)), Double(xwv300, Pos(xwv3010))) -> new_compare14(new_sr(xwv400, Neg(xwv3010)), new_sr(Pos(xwv4010), xwv300)) 37.19/18.91 new_lt22(xwv720, xwv730, ty_Char) -> new_lt8(xwv720, xwv730) 37.19/18.91 new_sizeFM(Branch(xwv350, xwv351, xwv352, xwv353, xwv354), bed, bee) -> xwv352 37.19/18.91 new_delFromFM20(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bed, bee) -> new_mkBalBranch(xwv13, xwv14, xwv16, new_delFromFM0(xwv17, xwv18, bed, bee), bed, bee) 37.19/18.91 new_esEs27(xwv88, xwv91, app(ty_Ratio, dad)) -> new_esEs21(xwv88, xwv91, dad) 37.19/18.91 new_compare9(Just(xwv400), Nothing, da) -> GT 37.19/18.91 new_compare31(xwv400, xwv300, app(app(ty_Either, cbg), cbh)) -> new_compare17(xwv400, xwv300, cbg, cbh) 37.19/18.91 new_esEs25([], [], cef) -> True 37.19/18.91 new_lt5(xwv88, xwv91, ty_Float) -> new_lt13(xwv88, xwv91) 37.19/18.91 new_ltEs20(xwv721, xwv731, app(ty_[], dgd)) -> new_ltEs13(xwv721, xwv731, dgd) 37.19/18.91 new_esEs31(xwv281, xwv331, ty_Bool) -> new_esEs13(xwv281, xwv331) 37.19/18.91 new_ltEs24(xwv72, xwv73, ty_Double) -> new_ltEs11(xwv72, xwv73) 37.19/18.91 new_esEs34(xwv720, xwv730, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs23(xwv720, xwv730, edd, ede, edf) 37.19/18.91 new_compare28(GT, EQ) -> GT 37.19/18.91 new_compare1([], :(xwv300, xwv301), bfc) -> LT 37.19/18.91 new_esEs17(Left(xwv280), Left(xwv330), ty_Integer, cgd) -> new_esEs24(xwv280, xwv330) 37.19/18.91 new_esEs40(xwv281, xwv331, ty_Float) -> new_esEs20(xwv281, xwv331) 37.19/18.91 new_lt20(xwv720, xwv730, ty_Float) -> new_lt13(xwv720, xwv730) 37.19/18.91 new_compare31(xwv400, xwv300, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_compare30(xwv400, xwv300, cbd, cbe, cbf) 37.19/18.91 new_esEs28(xwv89, xwv92, ty_Int) -> new_esEs16(xwv89, xwv92) 37.19/18.91 new_esEs4(xwv400, xwv300, ty_Integer) -> new_esEs24(xwv400, xwv300) 37.19/18.91 new_esEs11(xwv400, xwv300, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs23(xwv400, xwv300, cad, cae, caf) 37.19/18.91 new_lt22(xwv720, xwv730, app(app(ty_Either, edg), edh)) -> new_lt18(xwv720, xwv730, edg, edh) 37.19/18.91 new_esEs9(xwv402, xwv302, ty_Double) -> new_esEs15(xwv402, xwv302) 37.19/18.91 new_esEs12(Just(xwv280), Just(xwv330), app(ty_Ratio, bh)) -> new_esEs21(xwv280, xwv330, bh) 37.19/18.91 new_primPlusNat0(Succ(xwv16200), Succ(xwv13700)) -> Succ(Succ(new_primPlusNat0(xwv16200, xwv13700))) 37.19/18.91 new_lt21(xwv125, xwv127, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt17(xwv125, xwv127, bbd, bbe, bbf) 37.19/18.91 new_ltEs10(Just(xwv720), Nothing, ffa) -> False 37.19/18.91 new_esEs10(xwv400, xwv300, ty_Ordering) -> new_esEs14(xwv400, xwv300) 37.19/18.91 new_esEs38(xwv280, xwv330, ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.91 new_ltEs10(Nothing, Nothing, ffa) -> True 37.19/18.91 new_lt24(xwv18, xwv13, ty_Char) -> new_lt8(xwv18, xwv13) 37.19/18.91 new_esEs29(xwv720, xwv730, app(ty_Ratio, dfh)) -> new_esEs21(xwv720, xwv730, dfh) 37.19/18.91 new_lt5(xwv88, xwv91, app(app(ty_Either, dab), dac)) -> new_lt18(xwv88, xwv91, dab, dac) 37.19/18.91 new_compare11(xwv157, xwv158, True, ecc, ecd) -> LT 37.19/18.91 new_ltEs15(@3(xwv720, xwv721, xwv722), @3(xwv730, xwv731, xwv732), ece, ecf, ecg) -> new_pePe(new_lt22(xwv720, xwv730, ece), new_asAs(new_esEs34(xwv720, xwv730, ece), new_pePe(new_lt23(xwv721, xwv731, ecf), new_asAs(new_esEs35(xwv721, xwv731, ecf), new_ltEs22(xwv722, xwv732, ecg))))) 37.19/18.91 new_esEs35(xwv721, xwv731, app(app(ty_Either, efa), efb)) -> new_esEs17(xwv721, xwv731, efa, efb) 37.19/18.91 new_lt23(xwv721, xwv731, ty_Integer) -> new_lt19(xwv721, xwv731) 37.19/18.91 new_lt20(xwv720, xwv730, app(app(ty_Either, dff), dfg)) -> new_lt18(xwv720, xwv730, dff, dfg) 37.19/18.91 new_esEs33(xwv125, xwv127, ty_Bool) -> new_esEs13(xwv125, xwv127) 37.19/18.91 new_esEs35(xwv721, xwv731, ty_Char) -> new_esEs18(xwv721, xwv731) 37.19/18.91 new_lt24(xwv18, xwv13, ty_Bool) -> new_lt9(xwv18, xwv13) 37.19/18.91 new_ltEs22(xwv722, xwv732, ty_Double) -> new_ltEs11(xwv722, xwv732) 37.19/18.91 new_ltEs17(xwv72, xwv73) -> new_fsEs(new_compare15(xwv72, xwv73)) 37.19/18.91 new_lt6(xwv89, xwv92, app(app(app(ty_@3, dba), dbb), dbc)) -> new_lt17(xwv89, xwv92, dba, dbb, dbc) 37.19/18.91 new_esEs14(LT, LT) -> True 37.19/18.91 new_esEs32(xwv282, xwv332, ty_Int) -> new_esEs16(xwv282, xwv332) 37.19/18.91 new_esEs10(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 37.19/18.91 new_esEs23(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), ed, ee, ef) -> new_asAs(new_esEs30(xwv280, xwv330, ed), new_asAs(new_esEs31(xwv281, xwv331, ee), new_esEs32(xwv282, xwv332, ef))) 37.19/18.91 new_compare31(xwv400, xwv300, ty_Ordering) -> new_compare28(xwv400, xwv300) 37.19/18.91 new_lt22(xwv720, xwv730, ty_Float) -> new_lt13(xwv720, xwv730) 37.19/18.91 new_lt5(xwv88, xwv91, ty_@0) -> new_lt14(xwv88, xwv91) 37.19/18.91 new_esEs17(Left(xwv280), Left(xwv330), ty_Char, cgd) -> new_esEs18(xwv280, xwv330) 37.19/18.91 new_esEs31(xwv281, xwv331, ty_Int) -> new_esEs16(xwv281, xwv331) 37.19/18.91 new_esEs12(Just(xwv280), Just(xwv330), app(app(ty_@2, bf), bg)) -> new_esEs19(xwv280, xwv330, bf, bg) 37.19/18.91 new_ltEs16(Left(xwv720), Left(xwv730), ty_Char, dhe) -> new_ltEs7(xwv720, xwv730) 37.19/18.91 new_esEs28(xwv89, xwv92, app(app(ty_@2, dae), daf)) -> new_esEs19(xwv89, xwv92, dae, daf) 37.19/18.91 new_lt19(xwv18, xwv13) -> new_esEs26(new_compare15(xwv18, xwv13)) 37.19/18.91 new_esEs32(xwv282, xwv332, app(ty_Maybe, hd)) -> new_esEs12(xwv282, xwv332, hd) 37.19/18.91 new_esEs36(xwv280, xwv330, ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.91 new_lt21(xwv125, xwv127, ty_Integer) -> new_lt19(xwv125, xwv127) 37.19/18.91 new_gt(xwv40, xwv30, app(ty_Ratio, bga)) -> new_esEs41(new_compare8(xwv40, xwv30, bga)) 37.19/18.91 new_esEs31(xwv281, xwv331, ty_Ordering) -> new_esEs14(xwv281, xwv331) 37.19/18.91 new_lt20(xwv720, xwv730, ty_@0) -> new_lt14(xwv720, xwv730) 37.19/18.91 new_primCmpNat0(Succ(xwv4000), Succ(xwv3000)) -> new_primCmpNat0(xwv4000, xwv3000) 37.19/18.91 new_lt6(xwv89, xwv92, ty_Integer) -> new_lt19(xwv89, xwv92) 37.19/18.91 new_esEs30(xwv280, xwv330, ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.91 new_esEs31(xwv281, xwv331, app(ty_Maybe, gb)) -> new_esEs12(xwv281, xwv331, gb) 37.19/18.91 new_ltEs23(xwv106, xwv107, app(ty_[], ccg)) -> new_ltEs13(xwv106, xwv107, ccg) 37.19/18.91 new_delFromFM10(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, cga, cgb) -> new_mkBalBranch(xwv28, xwv29, new_delFromFM0(xwv31, xwv33, cga, cgb), xwv32, cga, cgb) 37.19/18.91 new_lt22(xwv720, xwv730, ty_Bool) -> new_lt9(xwv720, xwv730) 37.19/18.91 new_esEs38(xwv280, xwv330, ty_Float) -> new_esEs20(xwv280, xwv330) 37.19/18.91 new_esEs33(xwv125, xwv127, ty_Ordering) -> new_esEs14(xwv125, xwv127) 37.19/18.91 new_delFromFM00(xwv48, xwv49, xwv50, Branch(xwv510, xwv511, xwv512, xwv513, xwv514), Branch(xwv520, xwv521, xwv522, xwv523, xwv524), xwv53, True, cf, cg) -> new_glueBal2GlueBal1(xwv520, xwv521, xwv522, xwv523, xwv524, xwv510, xwv511, xwv512, xwv513, xwv514, new_gt0(new_sizeFM(Branch(xwv520, xwv521, xwv522, xwv523, xwv524), cf, cg), new_sizeFM(Branch(xwv510, xwv511, xwv512, xwv513, xwv514), cf, cg)), cf, cg) 37.19/18.91 new_compare31(xwv400, xwv300, app(ty_Maybe, cbb)) -> new_compare9(xwv400, xwv300, cbb) 37.19/18.91 new_primMinusNat0(Zero, Succ(xwv13700)) -> Neg(Succ(xwv13700)) 37.19/18.91 new_esEs27(xwv88, xwv91, app(app(ty_@2, chc), chd)) -> new_esEs19(xwv88, xwv91, chc, chd) 37.19/18.91 new_lt21(xwv125, xwv127, app(app(ty_Either, bbg), bbh)) -> new_lt18(xwv125, xwv127, bbg, bbh) 37.19/18.91 new_esEs32(xwv282, xwv332, ty_Bool) -> new_esEs13(xwv282, xwv332) 37.19/18.91 new_lt23(xwv721, xwv731, ty_Bool) -> new_lt9(xwv721, xwv731) 37.19/18.91 new_ltEs16(Right(xwv720), Right(xwv730), eah, app(ty_[], ebd)) -> new_ltEs13(xwv720, xwv730, ebd) 37.19/18.91 new_lt5(xwv88, xwv91, app(app(app(ty_@3, chg), chh), daa)) -> new_lt17(xwv88, xwv91, chg, chh, daa) 37.19/18.91 new_compare110(xwv148, xwv149, True, fgd) -> LT 37.19/18.91 new_ltEs16(Left(xwv720), Left(xwv730), ty_Ordering, dhe) -> new_ltEs14(xwv720, xwv730) 37.19/18.91 new_ltEs22(xwv722, xwv732, app(ty_[], efg)) -> new_ltEs13(xwv722, xwv732, efg) 37.19/18.91 new_ltEs14(LT, LT) -> True 37.19/18.91 new_lt20(xwv720, xwv730, app(app(app(ty_@3, dfc), dfd), dfe)) -> new_lt17(xwv720, xwv730, dfc, dfd, dfe) 37.19/18.91 new_gt(xwv40, xwv30, ty_Ordering) -> new_esEs41(new_compare28(xwv40, xwv30)) 37.19/18.91 new_compare27(xwv125, xwv126, xwv127, xwv128, False, baf, bag) -> new_compare12(xwv125, xwv126, xwv127, xwv128, new_lt21(xwv125, xwv127, baf), new_asAs(new_esEs33(xwv125, xwv127, baf), new_ltEs21(xwv126, xwv128, bag)), baf, bag) 37.19/18.91 new_ltEs16(Left(xwv720), Left(xwv730), ty_Bool, dhe) -> new_ltEs8(xwv720, xwv730) 37.19/18.91 new_esEs37(xwv281, xwv331, ty_Integer) -> new_esEs24(xwv281, xwv331) 37.19/18.91 new_esEs28(xwv89, xwv92, app(ty_Ratio, dbf)) -> new_esEs21(xwv89, xwv92, dbf) 37.19/18.91 new_esEs32(xwv282, xwv332, ty_Ordering) -> new_esEs14(xwv282, xwv332) 37.19/18.91 new_lt6(xwv89, xwv92, app(app(ty_Either, dbd), dbe)) -> new_lt18(xwv89, xwv92, dbd, dbe) 37.19/18.91 new_compare210(xwv106, xwv107, False, ccb, ccc) -> new_compare112(xwv106, xwv107, new_ltEs23(xwv106, xwv107, ccc), ccb, ccc) 37.19/18.91 new_lt22(xwv720, xwv730, ty_Integer) -> new_lt19(xwv720, xwv730) 37.19/18.91 new_esEs14(GT, GT) -> True 37.19/18.91 new_primCmpInt(Neg(Succ(xwv4000)), Pos(xwv300)) -> LT 37.19/18.91 new_lt21(xwv125, xwv127, app(ty_[], bbc)) -> new_lt15(xwv125, xwv127, bbc) 37.19/18.91 new_esEs34(xwv720, xwv730, ty_Char) -> new_esEs18(xwv720, xwv730) 37.19/18.91 new_esEs5(xwv401, xwv301, ty_Integer) -> new_esEs24(xwv401, xwv301) 37.19/18.91 new_esEs30(xwv280, xwv330, ty_Bool) -> new_esEs13(xwv280, xwv330) 37.19/18.91 new_compare31(xwv400, xwv300, ty_Double) -> new_compare18(xwv400, xwv300) 37.19/18.91 new_esEs39(xwv280, xwv330, app(app(ty_@2, gbh), gca)) -> new_esEs19(xwv280, xwv330, gbh, gca) 37.19/18.91 new_ltEs16(Left(xwv720), Left(xwv730), ty_@0, dhe) -> new_ltEs4(xwv720, xwv730) 37.19/18.91 new_compare31(xwv400, xwv300, app(ty_Ratio, cca)) -> new_compare8(xwv400, xwv300, cca) 37.19/18.91 new_lt23(xwv721, xwv731, ty_Char) -> new_lt8(xwv721, xwv731) 37.19/18.91 new_esEs37(xwv281, xwv331, ty_Int) -> new_esEs16(xwv281, xwv331) 37.19/18.91 new_primCmpInt(Pos(Zero), Neg(Succ(xwv3000))) -> GT 37.19/18.91 new_lt18(xwv18, xwv13, ced, cee) -> new_esEs26(new_compare17(xwv18, xwv13, ced, cee)) 37.19/18.91 new_esEs42(xwv28, xwv33, app(ty_Ratio, cgg)) -> new_esEs21(xwv28, xwv33, cgg) 37.19/18.91 new_esEs32(xwv282, xwv332, app(ty_Ratio, baa)) -> new_esEs21(xwv282, xwv332, baa) 37.19/18.91 new_compare17(Left(xwv400), Left(xwv300), bfg, bfh) -> new_compare25(xwv400, xwv300, new_esEs10(xwv400, xwv300, bfg), bfg, bfh) 37.19/18.91 new_compare29(True, True) -> EQ 37.19/18.91 new_gt(xwv40, xwv30, app(ty_Maybe, da)) -> new_esEs41(new_compare9(xwv40, xwv30, da)) 37.19/18.91 new_primCmpInt(Neg(Succ(xwv4000)), Neg(xwv300)) -> new_primCmpNat0(xwv300, Succ(xwv4000)) 37.19/18.91 new_ltEs9(@2(xwv720, xwv721), @2(xwv730, xwv731), dee, def) -> new_pePe(new_lt20(xwv720, xwv730, dee), new_asAs(new_esEs29(xwv720, xwv730, dee), new_ltEs20(xwv721, xwv731, def))) 37.19/18.91 new_esEs14(EQ, EQ) -> True 37.19/18.91 new_lt6(xwv89, xwv92, ty_Float) -> new_lt13(xwv89, xwv92) 37.19/18.91 new_esEs12(Just(xwv280), Just(xwv330), ty_Double) -> new_esEs15(xwv280, xwv330) 37.19/18.91 new_lt24(xwv18, xwv13, ty_Integer) -> new_lt19(xwv18, xwv13) 37.19/18.91 new_esEs9(xwv402, xwv302, app(ty_Ratio, fed)) -> new_esEs21(xwv402, xwv302, fed) 37.19/18.91 new_esEs5(xwv401, xwv301, app(ty_[], gah)) -> new_esEs25(xwv401, xwv301, gah) 37.19/18.91 new_esEs34(xwv720, xwv730, ty_Ordering) -> new_esEs14(xwv720, xwv730) 37.19/18.91 new_esEs27(xwv88, xwv91, app(ty_Maybe, che)) -> new_esEs12(xwv88, xwv91, che) 37.19/18.91 new_ltEs4(xwv72, xwv73) -> new_fsEs(new_compare7(xwv72, xwv73)) 37.19/18.91 new_esEs41(EQ) -> False 37.19/18.91 new_esEs8(xwv401, xwv301, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs23(xwv401, xwv301, fdc, fdd, fde) 37.19/18.91 new_esEs8(xwv401, xwv301, ty_@0) -> new_esEs22(xwv401, xwv301) 37.19/18.91 new_esEs33(xwv125, xwv127, ty_Float) -> new_esEs20(xwv125, xwv127) 37.19/18.91 new_compare28(EQ, GT) -> LT 37.19/18.91 new_primEqInt(Pos(Succ(xwv2800)), Pos(Zero)) -> False 37.19/18.91 new_primEqInt(Pos(Zero), Pos(Succ(xwv3300))) -> False 37.19/18.91 new_lt12(xwv18, xwv13) -> new_esEs26(new_compare18(xwv18, xwv13)) 37.19/18.91 new_esEs26(LT) -> True 37.19/18.91 new_compare210(xwv106, xwv107, True, ccb, ccc) -> EQ 37.19/18.91 new_lt23(xwv721, xwv731, app(ty_Ratio, efc)) -> new_lt4(xwv721, xwv731, efc) 37.19/18.91 new_ltEs16(Left(xwv720), Left(xwv730), ty_Integer, dhe) -> new_ltEs17(xwv720, xwv730) 37.19/18.91 new_lt23(xwv721, xwv731, app(app(ty_@2, eeb), eec)) -> new_lt10(xwv721, xwv731, eeb, eec) 37.19/18.91 new_esEs29(xwv720, xwv730, app(app(ty_@2, deg), deh)) -> new_esEs19(xwv720, xwv730, deg, deh) 37.19/18.91 new_compare1(:(xwv400, xwv401), [], bfc) -> GT 37.19/18.91 new_lt24(xwv18, xwv13, ty_Double) -> new_lt12(xwv18, xwv13) 37.19/18.91 new_esEs29(xwv720, xwv730, ty_@0) -> new_esEs22(xwv720, xwv730) 37.19/18.91 new_gt(xwv40, xwv30, ty_Float) -> new_esEs41(new_compare19(xwv40, xwv30)) 37.19/18.91 new_ltEs21(xwv126, xwv128, app(ty_[], bce)) -> new_ltEs13(xwv126, xwv128, bce) 37.19/18.91 new_ltEs16(Left(xwv720), Left(xwv730), app(app(ty_Either, eae), eaf), dhe) -> new_ltEs16(xwv720, xwv730, eae, eaf) 37.19/18.91 new_esEs12(Just(xwv280), Just(xwv330), ty_Float) -> new_esEs20(xwv280, xwv330) 37.19/18.91 new_lt5(xwv88, xwv91, app(ty_Ratio, dad)) -> new_lt4(xwv88, xwv91, dad) 37.19/18.91 new_lt5(xwv88, xwv91, app(app(ty_@2, chc), chd)) -> new_lt10(xwv88, xwv91, chc, chd) 37.19/18.91 new_ltEs20(xwv721, xwv731, ty_Ordering) -> new_ltEs14(xwv721, xwv731) 37.19/18.91 new_esEs39(xwv280, xwv330, ty_Char) -> new_esEs18(xwv280, xwv330) 37.19/18.91 new_primCmpNat0(Zero, Zero) -> EQ 37.19/18.91 new_esEs10(xwv400, xwv300, app(app(ty_Either, bge), bgf)) -> new_esEs17(xwv400, xwv300, bge, bgf) 37.19/18.91 new_esEs17(Right(xwv280), Right(xwv330), cgc, ty_Ordering) -> new_esEs14(xwv280, xwv330) 37.19/18.91 new_esEs8(xwv401, xwv301, app(app(ty_@2, fch), fda)) -> new_esEs19(xwv401, xwv301, fch, fda) 37.19/18.91 new_lt6(xwv89, xwv92, ty_Int) -> new_lt7(xwv89, xwv92) 37.19/18.91 new_esEs28(xwv89, xwv92, ty_Bool) -> new_esEs13(xwv89, xwv92) 37.19/18.91 new_ltEs10(Just(xwv720), Just(xwv730), ty_@0) -> new_ltEs4(xwv720, xwv730) 37.19/18.91 new_lt20(xwv720, xwv730, ty_Ordering) -> new_lt16(xwv720, xwv730) 37.19/18.91 new_ltEs16(Left(xwv720), Right(xwv730), eah, dhe) -> True 37.19/18.91 new_esEs6(xwv400, xwv300, ty_Ordering) -> new_esEs14(xwv400, xwv300) 37.19/18.91 new_esEs33(xwv125, xwv127, app(ty_[], bbc)) -> new_esEs25(xwv125, xwv127, bbc) 37.19/18.91 new_esEs11(xwv400, xwv300, ty_Integer) -> new_esEs24(xwv400, xwv300) 37.19/18.91 new_esEs39(xwv280, xwv330, app(app(app(ty_@3, gcc), gce), gcf)) -> new_esEs23(xwv280, xwv330, gcc, gce, gcf) 37.19/18.91 new_lt5(xwv88, xwv91, ty_Bool) -> new_lt9(xwv88, xwv91) 37.19/18.91 new_ltEs20(xwv721, xwv731, ty_Double) -> new_ltEs11(xwv721, xwv731) 37.19/18.91 new_ltEs19(xwv99, xwv100, ty_Int) -> new_ltEs6(xwv99, xwv100) 37.19/18.91 new_esEs12(Just(xwv280), Just(xwv330), app(ty_[], cd)) -> new_esEs25(xwv280, xwv330, cd) 37.19/18.91 new_lt21(xwv125, xwv127, ty_@0) -> new_lt14(xwv125, xwv127) 37.19/18.91 new_ltEs23(xwv106, xwv107, app(app(ty_@2, ccd), cce)) -> new_ltEs9(xwv106, xwv107, ccd, cce) 37.19/18.91 new_esEs35(xwv721, xwv731, ty_Bool) -> new_esEs13(xwv721, xwv731) 37.19/18.91 new_primCompAux00(xwv78, GT) -> GT 37.19/18.91 new_ltEs19(xwv99, xwv100, ty_@0) -> new_ltEs4(xwv99, xwv100) 37.19/18.91 new_primMinusNat0(Succ(xwv16200), Zero) -> Pos(Succ(xwv16200)) 37.19/18.91 new_lt24(xwv18, xwv13, ty_Float) -> new_lt13(xwv18, xwv13) 37.19/18.91 new_ltEs21(xwv126, xwv128, ty_Int) -> new_ltEs6(xwv126, xwv128) 37.19/18.91 new_ltEs10(Just(xwv720), Just(xwv730), ty_Int) -> new_ltEs6(xwv720, xwv730) 37.19/18.91 new_compare28(LT, GT) -> LT 37.19/18.91 new_mkBalBranch6MkBalBranch01(xwv16, xwv13, xwv14, xwv350, xwv351, xwv352, xwv353, xwv354, True, bed, bee) -> new_mkBranchResult(xwv350, xwv351, new_mkBranchResult(xwv13, xwv14, xwv16, xwv353, bed, bee), xwv354, bed, bee) 37.19/18.91 new_compare12(xwv177, xwv178, xwv179, xwv180, True, xwv182, beb, bec) -> new_compare13(xwv177, xwv178, xwv179, xwv180, True, beb, bec) 37.19/18.91 new_esEs4(xwv400, xwv300, app(app(ty_Either, fgf), fgg)) -> new_esEs17(xwv400, xwv300, fgf, fgg) 37.19/18.91 new_esEs27(xwv88, xwv91, ty_Int) -> new_esEs16(xwv88, xwv91) 37.19/18.91 new_ltEs24(xwv72, xwv73, ty_@0) -> new_ltEs4(xwv72, xwv73) 37.19/18.91 new_ltEs14(EQ, LT) -> False 37.19/18.91 new_ltEs10(Just(xwv720), Just(xwv730), app(ty_[], ffe)) -> new_ltEs13(xwv720, xwv730, ffe) 37.19/18.91 new_esEs40(xwv281, xwv331, ty_Bool) -> new_esEs13(xwv281, xwv331) 37.19/18.91 new_esEs33(xwv125, xwv127, ty_Double) -> new_esEs15(xwv125, xwv127) 37.19/18.91 new_esEs39(xwv280, xwv330, ty_@0) -> new_esEs22(xwv280, xwv330) 37.19/18.91 new_ltEs24(xwv72, xwv73, ty_Integer) -> new_ltEs17(xwv72, xwv73) 37.19/18.91 new_esEs15(Double(xwv280, xwv281), Double(xwv330, xwv331)) -> new_esEs16(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) 37.19/18.91 new_compare25(xwv99, xwv100, False, dda, ddb) -> new_compare11(xwv99, xwv100, new_ltEs19(xwv99, xwv100, dda), dda, ddb) 37.19/18.91 new_esEs31(xwv281, xwv331, app(app(ty_@2, ge), gf)) -> new_esEs19(xwv281, xwv331, ge, gf) 37.19/18.91 new_esEs38(xwv280, xwv330, ty_Double) -> new_esEs15(xwv280, xwv330) 37.19/18.91 new_lt5(xwv88, xwv91, app(ty_[], chf)) -> new_lt15(xwv88, xwv91, chf) 37.19/18.91 new_esEs11(xwv400, xwv300, app(ty_[], cag)) -> new_esEs25(xwv400, xwv300, cag) 37.19/18.91 new_ltEs20(xwv721, xwv731, ty_Bool) -> new_ltEs8(xwv721, xwv731) 37.19/18.91 new_esEs9(xwv402, xwv302, app(app(ty_Either, fdh), fea)) -> new_esEs17(xwv402, xwv302, fdh, fea) 37.19/18.91 new_ltEs5(xwv90, xwv93, app(ty_Ratio, dch)) -> new_ltEs18(xwv90, xwv93, dch) 37.19/18.91 new_esEs17(Right(xwv280), Right(xwv330), cgc, app(app(app(ty_@3, faf), fag), fah)) -> new_esEs23(xwv280, xwv330, faf, fag, fah) 37.19/18.91 new_esEs11(xwv400, xwv300, ty_@0) -> new_esEs22(xwv400, xwv300) 37.19/18.91 new_ltEs19(xwv99, xwv100, app(ty_[], ddf)) -> new_ltEs13(xwv99, xwv100, ddf) 37.19/18.91 new_esEs5(xwv401, xwv301, ty_Float) -> new_esEs20(xwv401, xwv301) 37.19/18.91 new_esEs9(xwv402, xwv302, ty_Int) -> new_esEs16(xwv402, xwv302) 37.19/18.91 new_esEs10(xwv400, xwv300, app(ty_Ratio, bha)) -> new_esEs21(xwv400, xwv300, bha) 37.19/18.91 new_primCmpNat0(Succ(xwv4000), Zero) -> GT 37.19/18.91 new_ltEs22(xwv722, xwv732, app(app(ty_Either, egc), egd)) -> new_ltEs16(xwv722, xwv732, egc, egd) 37.19/18.91 new_esEs31(xwv281, xwv331, ty_Integer) -> new_esEs24(xwv281, xwv331) 37.19/18.91 new_pePe(False, xwv210) -> xwv210 37.19/18.91 new_lt22(xwv720, xwv730, app(ty_Maybe, edb)) -> new_lt11(xwv720, xwv730, edb) 37.19/18.91 new_ltEs10(Just(xwv720), Just(xwv730), app(ty_Maybe, ffd)) -> new_ltEs10(xwv720, xwv730, ffd) 37.19/18.91 new_esEs17(Left(xwv280), Left(xwv330), ty_Bool, cgd) -> new_esEs13(xwv280, xwv330) 37.19/18.91 new_esEs11(xwv400, xwv300, ty_Float) -> new_esEs20(xwv400, xwv300) 37.19/18.91 new_mkBalBranch6MkBalBranch4(xwv16, xwv13, xwv14, xwv35, False, bed, bee) -> new_mkBalBranch6MkBalBranch3(xwv16, xwv13, xwv14, xwv35, new_gt0(new_mkBalBranch6Size_l(xwv16, xwv13, xwv14, xwv35, bed, bee), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xwv16, xwv13, xwv14, xwv35, bed, bee))), bed, bee) 37.19/18.91 new_esEs8(xwv401, xwv301, ty_Char) -> new_esEs18(xwv401, xwv301) 37.19/18.91 new_compare25(xwv99, xwv100, True, dda, ddb) -> EQ 37.19/18.91 new_ltEs16(Left(xwv720), Left(xwv730), app(ty_Maybe, dhh), dhe) -> new_ltEs10(xwv720, xwv730, dhh) 37.19/18.91 new_glueBal2GlueBal1(xwv520, xwv521, xwv522, xwv523, xwv524, xwv510, xwv511, xwv512, xwv513, xwv514, True, cf, cg) -> new_mkBalBranch(new_glueBal2Mid_key200(xwv520, xwv521, xwv522, xwv523, xwv524, xwv510, xwv511, xwv512, xwv513, xwv514, xwv520, xwv521, xwv522, xwv523, xwv524, cf, cg), new_glueBal2Mid_elt200(xwv520, xwv521, xwv522, xwv523, xwv524, xwv510, xwv511, xwv512, xwv513, xwv514, xwv520, xwv521, xwv522, xwv523, xwv524, cg, cf), Branch(xwv510, xwv511, xwv512, xwv513, xwv514), new_deleteMin0(xwv520, xwv521, xwv522, xwv523, xwv524, cf, cg), cf, cg) 37.19/18.91 new_lt23(xwv721, xwv731, app(app(app(ty_@3, eef), eeg), eeh)) -> new_lt17(xwv721, xwv731, eef, eeg, eeh) 37.19/18.91 new_compare112(xwv164, xwv165, True, gba, gbb) -> LT 37.19/18.91 new_primMinusNat0(Succ(xwv16200), Succ(xwv13700)) -> new_primMinusNat0(xwv16200, xwv13700) 37.19/18.91 new_esEs38(xwv280, xwv330, ty_Bool) -> new_esEs13(xwv280, xwv330) 37.19/18.91 new_lt24(xwv18, xwv13, ty_@0) -> new_lt14(xwv18, xwv13) 37.19/18.91 new_compare16(@2(xwv400, xwv401), @2(xwv300, xwv301), bfa, bfb) -> new_compare27(xwv400, xwv401, xwv300, xwv301, new_asAs(new_esEs4(xwv400, xwv300, bfa), new_esEs5(xwv401, xwv301, bfb)), bfa, bfb) 37.19/18.91 new_esEs5(xwv401, xwv301, ty_@0) -> new_esEs22(xwv401, xwv301) 37.19/18.91 new_esEs4(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 37.19/18.91 new_esEs6(xwv400, xwv300, ty_Char) -> new_esEs18(xwv400, xwv300) 37.19/18.91 new_esEs30(xwv280, xwv330, app(app(ty_Either, eh), fa)) -> new_esEs17(xwv280, xwv330, eh, fa) 37.19/18.91 new_compare31(xwv400, xwv300, ty_Float) -> new_compare19(xwv400, xwv300) 37.19/18.91 new_ltEs19(xwv99, xwv100, ty_Integer) -> new_ltEs17(xwv99, xwv100) 37.19/18.91 new_ltEs24(xwv72, xwv73, ty_Int) -> new_ltEs6(xwv72, xwv73) 37.19/18.91 new_lt21(xwv125, xwv127, ty_Double) -> new_lt12(xwv125, xwv127) 37.19/18.91 new_esEs35(xwv721, xwv731, app(ty_Ratio, efc)) -> new_esEs21(xwv721, xwv731, efc) 37.19/18.91 new_compare11(xwv157, xwv158, False, ecc, ecd) -> GT 37.19/18.91 new_primEqInt(Pos(Zero), Neg(Succ(xwv3300))) -> False 37.19/18.91 new_primEqInt(Neg(Zero), Pos(Succ(xwv3300))) -> False 37.19/18.91 new_gt(xwv40, xwv30, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs41(new_compare30(xwv40, xwv30, bfd, bfe, bff)) 37.19/18.91 new_ltEs23(xwv106, xwv107, ty_Float) -> new_ltEs12(xwv106, xwv107) 37.19/18.91 new_ltEs5(xwv90, xwv93, ty_Char) -> new_ltEs7(xwv90, xwv93) 37.19/18.91 new_esEs34(xwv720, xwv730, ty_Int) -> new_esEs16(xwv720, xwv730) 37.19/18.91 new_esEs7(xwv400, xwv300, ty_Float) -> new_esEs20(xwv400, xwv300) 37.19/18.91 new_ltEs20(xwv721, xwv731, app(app(ty_Either, dgh), dha)) -> new_ltEs16(xwv721, xwv731, dgh, dha) 37.19/18.91 new_esEs5(xwv401, xwv301, ty_Double) -> new_esEs15(xwv401, xwv301) 37.19/18.91 new_mkBalBranch6Size_r(xwv16, xwv13, xwv14, xwv35, bed, bee) -> new_sizeFM(xwv35, bed, bee) 37.19/18.91 new_ltEs14(GT, EQ) -> False 37.19/18.91 new_esEs29(xwv720, xwv730, ty_Char) -> new_esEs18(xwv720, xwv730) 37.19/18.91 new_lt6(xwv89, xwv92, ty_Double) -> new_lt12(xwv89, xwv92) 37.19/18.91 new_esEs39(xwv280, xwv330, ty_Ordering) -> new_esEs14(xwv280, xwv330) 37.19/18.91 new_ltEs5(xwv90, xwv93, ty_Bool) -> new_ltEs8(xwv90, xwv93) 37.19/18.91 new_esEs17(Left(xwv280), Left(xwv330), ty_Int, cgd) -> new_esEs16(xwv280, xwv330) 37.19/18.91 new_esEs27(xwv88, xwv91, ty_Ordering) -> new_esEs14(xwv88, xwv91) 37.19/18.91 new_esEs5(xwv401, xwv301, app(app(app(ty_@3, gae), gaf), gag)) -> new_esEs23(xwv401, xwv301, gae, gaf, gag) 37.19/18.91 new_ltEs21(xwv126, xwv128, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs15(xwv126, xwv128, bcf, bcg, bch) 37.19/18.91 new_compare18(Double(xwv400, Neg(xwv4010)), Double(xwv300, Neg(xwv3010))) -> new_compare14(new_sr(xwv400, Neg(xwv3010)), new_sr(Neg(xwv4010), xwv300)) 37.19/18.91 new_esEs28(xwv89, xwv92, ty_Double) -> new_esEs15(xwv89, xwv92) 37.19/18.91 new_lt24(xwv18, xwv13, app(ty_[], cdf)) -> new_lt15(xwv18, xwv13, cdf) 37.19/18.91 new_lt24(xwv18, xwv13, ty_Int) -> new_lt7(xwv18, xwv13) 37.19/18.91 new_glueBal2Mid_key100(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv306, xwv307, xwv308, xwv309, Branch(xwv3100, xwv3101, xwv3102, xwv3103, xwv3104), gbc, gbd) -> new_glueBal2Mid_key100(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv3100, xwv3101, xwv3102, xwv3103, xwv3104, gbc, gbd) 37.19/18.91 new_esEs40(xwv281, xwv331, ty_Double) -> new_esEs15(xwv281, xwv331) 37.19/18.91 new_esEs33(xwv125, xwv127, ty_Integer) -> new_esEs24(xwv125, xwv127) 37.19/18.91 new_esEs32(xwv282, xwv332, app(app(ty_Either, he), hf)) -> new_esEs17(xwv282, xwv332, he, hf) 37.19/18.91 new_esEs7(xwv400, xwv300, ty_Double) -> new_esEs15(xwv400, xwv300) 37.19/18.91 new_ltEs16(Right(xwv720), Right(xwv730), eah, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_ltEs15(xwv720, xwv730, ebe, ebf, ebg) 37.19/18.91 new_esEs16(xwv28, xwv33) -> new_primEqInt(xwv28, xwv33) 37.19/18.91 new_esEs11(xwv400, xwv300, app(app(ty_@2, caa), cab)) -> new_esEs19(xwv400, xwv300, caa, cab) 37.19/18.91 new_esEs7(xwv400, xwv300, app(app(ty_Either, fbd), fbe)) -> new_esEs17(xwv400, xwv300, fbd, fbe) 37.19/18.91 new_esEs20(Float(xwv280, xwv281), Float(xwv330, xwv331)) -> new_esEs16(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) 37.19/18.91 new_delFromFM0(EmptyFM, xwv40, h, ba) -> EmptyFM 37.19/18.91 new_esEs8(xwv401, xwv301, app(ty_[], fdf)) -> new_esEs25(xwv401, xwv301, fdf) 37.19/18.91 new_esEs6(xwv400, xwv300, app(app(ty_Either, dc), dd)) -> new_esEs17(xwv400, xwv300, dc, dd) 37.19/18.91 new_esEs31(xwv281, xwv331, ty_Float) -> new_esEs20(xwv281, xwv331) 37.19/18.91 new_ltEs20(xwv721, xwv731, ty_Float) -> new_ltEs12(xwv721, xwv731) 37.19/18.91 new_esEs8(xwv401, xwv301, ty_Integer) -> new_esEs24(xwv401, xwv301) 37.19/18.91 new_lt22(xwv720, xwv730, ty_Int) -> new_lt7(xwv720, xwv730) 37.19/18.91 new_esEs29(xwv720, xwv730, app(app(app(ty_@3, dfc), dfd), dfe)) -> new_esEs23(xwv720, xwv730, dfc, dfd, dfe) 37.19/18.91 new_esEs17(Right(xwv280), Right(xwv330), cgc, ty_Char) -> new_esEs18(xwv280, xwv330) 37.19/18.91 new_ltEs21(xwv126, xwv128, ty_Integer) -> new_ltEs17(xwv126, xwv128) 37.19/18.91 new_lt21(xwv125, xwv127, app(app(ty_@2, bah), bba)) -> new_lt10(xwv125, xwv127, bah, bba) 37.19/18.91 new_mkBalBranch6MkBalBranch11(xwv160, xwv161, xwv162, xwv163, xwv164, xwv13, xwv14, xwv35, True, bed, bee) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xwv160, xwv161, xwv163, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), xwv13, xwv14, xwv164, xwv35, bed, bee) 37.19/18.91 new_lt20(xwv720, xwv730, app(ty_Maybe, dfa)) -> new_lt11(xwv720, xwv730, dfa) 37.19/18.91 new_esEs7(xwv400, xwv300, ty_Integer) -> new_esEs24(xwv400, xwv300) 37.19/18.91 new_delFromFM00(xwv48, xwv49, xwv50, EmptyFM, xwv52, xwv53, True, cf, cg) -> xwv52 37.19/18.91 new_esEs31(xwv281, xwv331, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs23(xwv281, xwv331, gh, ha, hb) 37.19/18.91 new_lt23(xwv721, xwv731, app(ty_[], eee)) -> new_lt15(xwv721, xwv731, eee) 37.19/18.91 new_ltEs6(xwv72, xwv73) -> new_fsEs(new_compare14(xwv72, xwv73)) 37.19/18.91 new_lt23(xwv721, xwv731, ty_Ordering) -> new_lt16(xwv721, xwv731) 37.19/18.91 new_esEs31(xwv281, xwv331, ty_@0) -> new_esEs22(xwv281, xwv331) 37.19/18.91 new_compare111(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, True, bef, beg, beh) -> LT 37.19/18.91 new_ltEs16(Left(xwv720), Left(xwv730), ty_Int, dhe) -> new_ltEs6(xwv720, xwv730) 37.19/18.91 new_primMulInt(Neg(xwv3000), Neg(xwv4010)) -> Pos(new_primMulNat0(xwv3000, xwv4010)) 37.19/18.91 new_primCmpInt(Pos(Zero), Pos(Succ(xwv3000))) -> new_primCmpNat0(Zero, Succ(xwv3000)) 37.19/18.91 new_ltEs22(xwv722, xwv732, ty_Integer) -> new_ltEs17(xwv722, xwv732) 37.19/18.91 new_esEs31(xwv281, xwv331, app(ty_[], hc)) -> new_esEs25(xwv281, xwv331, hc) 37.19/18.91 new_ltEs16(Left(xwv720), Left(xwv730), app(ty_[], eaa), dhe) -> new_ltEs13(xwv720, xwv730, eaa) 37.19/18.91 new_esEs42(xwv28, xwv33, app(app(ty_Either, cgc), cgd)) -> new_esEs17(xwv28, xwv33, cgc, cgd) 37.19/18.91 new_compare19(Float(xwv400, Neg(xwv4010)), Float(xwv300, Neg(xwv3010))) -> new_compare14(new_sr(xwv400, Neg(xwv3010)), new_sr(Neg(xwv4010), xwv300)) 37.19/18.91 new_ltEs19(xwv99, xwv100, app(app(app(ty_@3, ddg), ddh), dea)) -> new_ltEs15(xwv99, xwv100, ddg, ddh, dea) 37.19/18.91 new_esEs31(xwv281, xwv331, ty_Char) -> new_esEs18(xwv281, xwv331) 37.19/18.91 new_esEs19(@2(xwv280, xwv281), @2(xwv330, xwv331), cge, cgf) -> new_asAs(new_esEs39(xwv280, xwv330, cge), new_esEs40(xwv281, xwv331, cgf)) 37.19/18.91 new_mkBalBranch6MkBalBranch11(xwv160, xwv161, xwv162, xwv163, Branch(xwv1640, xwv1641, xwv1642, xwv1643, xwv1644), xwv13, xwv14, xwv35, False, bed, bee) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xwv1640, xwv1641, new_mkBranch0(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xwv160, xwv161, xwv163, xwv1643, bed, bee), Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), xwv13, xwv14, xwv1644, xwv35, bed, bee) 37.19/18.91 new_ltEs16(Right(xwv720), Right(xwv730), eah, ty_Ordering) -> new_ltEs14(xwv720, xwv730) 37.19/18.91 new_esEs34(xwv720, xwv730, app(ty_Ratio, eea)) -> new_esEs21(xwv720, xwv730, eea) 37.19/18.91 new_esEs30(xwv280, xwv330, ty_Double) -> new_esEs15(xwv280, xwv330) 37.19/18.91 new_esEs34(xwv720, xwv730, app(app(ty_@2, ech), eda)) -> new_esEs19(xwv720, xwv730, ech, eda) 37.19/18.91 new_esEs7(xwv400, xwv300, app(ty_[], fcd)) -> new_esEs25(xwv400, xwv300, fcd) 37.19/18.91 new_ltEs21(xwv126, xwv128, app(app(ty_@2, bcb), bcc)) -> new_ltEs9(xwv126, xwv128, bcb, bcc) 37.19/18.91 new_ltEs14(GT, LT) -> False 37.19/18.91 new_gt(xwv40, xwv30, ty_Double) -> new_esEs41(new_compare18(xwv40, xwv30)) 37.19/18.91 new_gt0(xwv40, xwv30) -> new_esEs41(new_compare14(xwv40, xwv30)) 37.19/18.91 new_ltEs12(xwv72, xwv73) -> new_fsEs(new_compare19(xwv72, xwv73)) 37.19/18.91 new_lt6(xwv89, xwv92, app(ty_Maybe, dag)) -> new_lt11(xwv89, xwv92, dag) 37.19/18.91 new_primMulInt(Pos(xwv3000), Neg(xwv4010)) -> Neg(new_primMulNat0(xwv3000, xwv4010)) 37.19/18.91 new_primMulInt(Neg(xwv3000), Pos(xwv4010)) -> Neg(new_primMulNat0(xwv3000, xwv4010)) 37.19/18.91 new_ltEs23(xwv106, xwv107, ty_Int) -> new_ltEs6(xwv106, xwv107) 37.19/18.91 new_esEs40(xwv281, xwv331, app(ty_Ratio, gde)) -> new_esEs21(xwv281, xwv331, gde) 37.19/18.91 new_ltEs13(xwv72, xwv73, fbb) -> new_fsEs(new_compare1(xwv72, xwv73, fbb)) 37.19/18.91 new_esEs8(xwv401, xwv301, ty_Int) -> new_esEs16(xwv401, xwv301) 37.19/18.91 new_esEs39(xwv280, xwv330, app(ty_[], gcg)) -> new_esEs25(xwv280, xwv330, gcg) 37.19/18.91 new_ltEs22(xwv722, xwv732, ty_@0) -> new_ltEs4(xwv722, xwv732) 37.19/18.91 new_esEs8(xwv401, xwv301, ty_Float) -> new_esEs20(xwv401, xwv301) 37.19/18.91 new_esEs27(xwv88, xwv91, ty_@0) -> new_esEs22(xwv88, xwv91) 37.19/18.91 new_ltEs18(xwv72, xwv73, bgb) -> new_fsEs(new_compare8(xwv72, xwv73, bgb)) 37.19/18.91 new_esEs30(xwv280, xwv330, ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.91 new_sr0(Integer(xwv3000), Integer(xwv4010)) -> Integer(new_primMulInt(xwv3000, xwv4010)) 37.19/18.91 new_esEs35(xwv721, xwv731, ty_Double) -> new_esEs15(xwv721, xwv731) 37.19/18.91 new_ltEs24(xwv72, xwv73, app(ty_Maybe, ffa)) -> new_ltEs10(xwv72, xwv73, ffa) 37.19/18.91 new_ltEs23(xwv106, xwv107, app(app(ty_Either, cdc), cdd)) -> new_ltEs16(xwv106, xwv107, cdc, cdd) 37.19/18.91 new_ltEs24(xwv72, xwv73, app(app(app(ty_@3, ece), ecf), ecg)) -> new_ltEs15(xwv72, xwv73, ece, ecf, ecg) 37.19/18.91 new_lt9(xwv18, xwv13) -> new_esEs26(new_compare29(xwv18, xwv13)) 37.19/18.91 new_compare31(xwv400, xwv300, app(app(ty_@2, cah), cba)) -> new_compare16(xwv400, xwv300, cah, cba) 37.19/18.91 new_ltEs24(xwv72, xwv73, ty_Char) -> new_ltEs7(xwv72, xwv73) 37.19/18.91 new_lt6(xwv89, xwv92, app(ty_[], dah)) -> new_lt15(xwv89, xwv92, dah) 37.19/18.91 new_lt22(xwv720, xwv730, ty_Double) -> new_lt12(xwv720, xwv730) 37.19/18.91 new_asAs(True, xwv135) -> xwv135 37.19/18.91 new_esEs8(xwv401, xwv301, app(ty_Maybe, fce)) -> new_esEs12(xwv401, xwv301, fce) 37.19/18.91 new_ltEs16(Right(xwv720), Right(xwv730), eah, ty_@0) -> new_ltEs4(xwv720, xwv730) 37.19/18.91 new_esEs22(@0, @0) -> True 37.19/18.91 new_lt20(xwv720, xwv730, app(ty_Ratio, dfh)) -> new_lt4(xwv720, xwv730, dfh) 37.19/18.91 new_esEs5(xwv401, xwv301, app(app(ty_@2, gab), gac)) -> new_esEs19(xwv401, xwv301, gab, gac) 37.19/18.91 new_lt20(xwv720, xwv730, app(app(ty_@2, deg), deh)) -> new_lt10(xwv720, xwv730, deg, deh) 37.19/18.91 new_esEs31(xwv281, xwv331, ty_Double) -> new_esEs15(xwv281, xwv331) 37.19/18.91 new_lt15(xwv18, xwv13, cdf) -> new_esEs26(new_compare1(xwv18, xwv13, cdf)) 37.19/18.91 new_ltEs20(xwv721, xwv731, app(app(ty_@2, dga), dgb)) -> new_ltEs9(xwv721, xwv731, dga, dgb) 37.19/18.91 new_ltEs22(xwv722, xwv732, ty_Ordering) -> new_ltEs14(xwv722, xwv732) 37.19/18.91 new_esEs4(xwv400, xwv300, ty_Double) -> new_esEs15(xwv400, xwv300) 37.19/18.91 new_ltEs22(xwv722, xwv732, ty_Float) -> new_ltEs12(xwv722, xwv732) 37.19/18.91 new_primPlusInt(Pos(xwv1620), Neg(xwv1370)) -> new_primMinusNat0(xwv1620, xwv1370) 37.19/18.91 new_primPlusInt(Neg(xwv1620), Pos(xwv1370)) -> new_primMinusNat0(xwv1370, xwv1620) 37.19/18.91 new_esEs42(xwv28, xwv33, ty_Ordering) -> new_esEs14(xwv28, xwv33) 37.19/18.91 new_compare26(xwv72, xwv73, False, geb) -> new_compare110(xwv72, xwv73, new_ltEs24(xwv72, xwv73, geb), geb) 37.19/18.91 new_ltEs19(xwv99, xwv100, app(app(ty_@2, ddc), ddd)) -> new_ltEs9(xwv99, xwv100, ddc, ddd) 37.19/18.91 new_esEs9(xwv402, xwv302, ty_Ordering) -> new_esEs14(xwv402, xwv302) 37.19/18.91 new_ltEs5(xwv90, xwv93, ty_Int) -> new_ltEs6(xwv90, xwv93) 37.19/18.91 new_sr(xwv300, xwv401) -> new_primMulInt(xwv300, xwv401) 37.19/18.91 new_esEs38(xwv280, xwv330, app(ty_Ratio, cfd)) -> new_esEs21(xwv280, xwv330, cfd) 37.19/18.91 new_esEs29(xwv720, xwv730, ty_Integer) -> new_esEs24(xwv720, xwv730) 37.19/18.91 new_lt8(xwv18, xwv13) -> new_esEs26(new_compare6(xwv18, xwv13)) 37.19/18.91 new_mkBalBranch6MkBalBranch01(xwv16, xwv13, xwv14, xwv350, xwv351, xwv352, Branch(xwv3530, xwv3531, xwv3532, xwv3533, xwv3534), xwv354, False, bed, bee) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xwv3530, xwv3531, new_mkBranchResult(xwv13, xwv14, xwv16, xwv3533, bed, bee), Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xwv350, xwv351, xwv3534, xwv354, bed, bee) 37.19/18.91 new_primMulNat0(Zero, Zero) -> Zero 37.19/18.91 new_esEs4(xwv400, xwv300, ty_Int) -> new_esEs16(xwv400, xwv300) 37.19/18.91 new_esEs39(xwv280, xwv330, ty_Double) -> new_esEs15(xwv280, xwv330) 37.19/18.91 new_compare28(EQ, LT) -> GT 37.19/18.91 new_gt(xwv40, xwv30, ty_Integer) -> new_esEs41(new_compare15(xwv40, xwv30)) 37.19/18.91 new_gt(xwv40, xwv30, ty_Char) -> new_esEs41(new_compare6(xwv40, xwv30)) 37.19/18.91 new_esEs10(xwv400, xwv300, app(ty_[], bhe)) -> new_esEs25(xwv400, xwv300, bhe) 37.19/18.91 new_esEs27(xwv88, xwv91, app(app(ty_Either, dab), dac)) -> new_esEs17(xwv88, xwv91, dab, dac) 37.19/18.91 new_esEs35(xwv721, xwv731, app(ty_[], eee)) -> new_esEs25(xwv721, xwv731, eee) 37.19/18.91 new_esEs4(xwv400, xwv300, ty_Ordering) -> new_esEs14(xwv400, xwv300) 37.19/18.91 new_compare10(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, True, xwv199, bef, beg, beh) -> new_compare111(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, True, bef, beg, beh) 37.19/18.91 new_ltEs21(xwv126, xwv128, ty_Ordering) -> new_ltEs14(xwv126, xwv128) 37.19/18.91 new_esEs4(xwv400, xwv300, app(ty_Maybe, fge)) -> new_esEs12(xwv400, xwv300, fge) 37.19/18.91 new_esEs28(xwv89, xwv92, ty_Integer) -> new_esEs24(xwv89, xwv92) 37.19/18.91 new_esEs6(xwv400, xwv300, app(app(ty_@2, de), df)) -> new_esEs19(xwv400, xwv300, de, df) 37.19/18.91 new_esEs40(xwv281, xwv331, ty_Int) -> new_esEs16(xwv281, xwv331) 37.19/18.91 new_esEs42(xwv28, xwv33, app(app(ty_@2, cge), cgf)) -> new_esEs19(xwv28, xwv33, cge, cgf) 37.19/18.91 new_lt21(xwv125, xwv127, app(ty_Ratio, bca)) -> new_lt4(xwv125, xwv127, bca) 37.19/18.91 new_esEs28(xwv89, xwv92, app(app(ty_Either, dbd), dbe)) -> new_esEs17(xwv89, xwv92, dbd, dbe) 37.19/18.91 new_esEs30(xwv280, xwv330, ty_Float) -> new_esEs20(xwv280, xwv330) 37.19/18.91 new_compare28(EQ, EQ) -> EQ 37.19/18.91 new_compare111(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, False, bef, beg, beh) -> GT 37.19/18.91 new_esEs39(xwv280, xwv330, app(ty_Maybe, gbe)) -> new_esEs12(xwv280, xwv330, gbe) 37.19/18.91 new_ltEs23(xwv106, xwv107, app(ty_Maybe, ccf)) -> new_ltEs10(xwv106, xwv107, ccf) 37.19/18.91 new_esEs5(xwv401, xwv301, ty_Bool) -> new_esEs13(xwv401, xwv301) 37.19/18.91 new_esEs28(xwv89, xwv92, ty_@0) -> new_esEs22(xwv89, xwv92) 37.19/18.91 new_ltEs24(xwv72, xwv73, app(ty_Ratio, bgb)) -> new_ltEs18(xwv72, xwv73, bgb) 37.19/18.91 new_compare27(xwv125, xwv126, xwv127, xwv128, True, baf, bag) -> EQ 37.19/18.91 new_ltEs20(xwv721, xwv731, ty_Char) -> new_ltEs7(xwv721, xwv731) 37.19/18.91 new_primEqInt(Neg(Succ(xwv2800)), Neg(Zero)) -> False 37.19/18.91 new_primEqInt(Neg(Zero), Neg(Succ(xwv3300))) -> False 37.19/18.91 new_esEs12(Just(xwv280), Just(xwv330), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs23(xwv280, xwv330, ca, cb, cc) 37.19/18.91 new_esEs12(Just(xwv280), Just(xwv330), ty_@0) -> new_esEs22(xwv280, xwv330) 37.19/18.91 new_esEs17(Right(xwv280), Right(xwv330), cgc, app(ty_Maybe, ehh)) -> new_esEs12(xwv280, xwv330, ehh) 37.19/18.91 new_esEs21(:%(xwv280, xwv281), :%(xwv330, xwv331), cgg) -> new_asAs(new_esEs36(xwv280, xwv330, cgg), new_esEs37(xwv281, xwv331, cgg)) 37.19/18.91 new_primEqInt(Pos(Succ(xwv2800)), Pos(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) 37.19/18.91 new_esEs29(xwv720, xwv730, ty_Float) -> new_esEs20(xwv720, xwv730) 37.19/18.91 new_esEs39(xwv280, xwv330, ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.91 new_esEs27(xwv88, xwv91, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs23(xwv88, xwv91, chg, chh, daa) 37.19/18.91 new_esEs12(Just(xwv280), Just(xwv330), app(app(ty_Either, bd), be)) -> new_esEs17(xwv280, xwv330, bd, be) 37.19/18.91 new_esEs40(xwv281, xwv331, app(ty_Maybe, gch)) -> new_esEs12(xwv281, xwv331, gch) 37.19/18.91 new_esEs4(xwv400, xwv300, app(ty_[], fhf)) -> new_esEs25(xwv400, xwv300, fhf) 37.19/18.91 new_ltEs5(xwv90, xwv93, ty_@0) -> new_ltEs4(xwv90, xwv93) 37.19/18.91 new_primEqInt(Pos(Succ(xwv2800)), Neg(xwv330)) -> False 37.19/18.91 new_primEqInt(Neg(Succ(xwv2800)), Pos(xwv330)) -> False 37.19/18.91 new_lt23(xwv721, xwv731, app(ty_Maybe, eed)) -> new_lt11(xwv721, xwv731, eed) 37.19/18.91 new_gt(xwv40, xwv30, ty_Int) -> new_gt0(xwv40, xwv30) 37.19/18.91 new_lt5(xwv88, xwv91, ty_Double) -> new_lt12(xwv88, xwv91) 37.19/18.91 new_esEs10(xwv400, xwv300, ty_Double) -> new_esEs15(xwv400, xwv300) 37.19/18.91 new_esEs9(xwv402, xwv302, ty_Char) -> new_esEs18(xwv402, xwv302) 37.19/18.91 new_primCmpInt(Neg(Zero), Neg(Succ(xwv3000))) -> new_primCmpNat0(Succ(xwv3000), Zero) 37.19/18.91 new_esEs12(Just(xwv280), Just(xwv330), ty_Char) -> new_esEs18(xwv280, xwv330) 37.19/18.91 new_esEs7(xwv400, xwv300, app(ty_Ratio, fbh)) -> new_esEs21(xwv400, xwv300, fbh) 37.19/18.91 new_esEs5(xwv401, xwv301, ty_Ordering) -> new_esEs14(xwv401, xwv301) 37.19/18.91 new_esEs34(xwv720, xwv730, app(ty_[], edc)) -> new_esEs25(xwv720, xwv730, edc) 37.19/18.91 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 37.19/18.91 new_lt16(xwv18, xwv13) -> new_esEs26(new_compare28(xwv18, xwv13)) 37.19/18.91 new_esEs40(xwv281, xwv331, app(ty_[], gea)) -> new_esEs25(xwv281, xwv331, gea) 37.19/18.91 new_esEs27(xwv88, xwv91, ty_Char) -> new_esEs18(xwv88, xwv91) 37.19/18.91 new_ltEs16(Right(xwv720), Right(xwv730), eah, ty_Int) -> new_ltEs6(xwv720, xwv730) 37.19/18.91 new_esEs34(xwv720, xwv730, ty_Double) -> new_esEs15(xwv720, xwv730) 37.19/18.91 new_lt13(xwv18, xwv13) -> new_esEs26(new_compare19(xwv18, xwv13)) 37.19/18.91 new_ltEs19(xwv99, xwv100, app(ty_Ratio, ded)) -> new_ltEs18(xwv99, xwv100, ded) 37.19/18.91 new_ltEs16(Right(xwv720), Right(xwv730), eah, app(ty_Ratio, ecb)) -> new_ltEs18(xwv720, xwv730, ecb) 37.19/18.91 new_ltEs16(Right(xwv720), Right(xwv730), eah, app(ty_Maybe, ebc)) -> new_ltEs10(xwv720, xwv730, ebc) 37.19/18.91 new_ltEs19(xwv99, xwv100, app(ty_Maybe, dde)) -> new_ltEs10(xwv99, xwv100, dde) 37.19/18.91 new_esEs11(xwv400, xwv300, ty_Double) -> new_esEs15(xwv400, xwv300) 37.19/18.91 new_lt10(xwv18, xwv13, bdd, bde) -> new_esEs26(new_compare16(xwv18, xwv13, bdd, bde)) 37.19/18.91 new_ltEs10(Just(xwv720), Just(xwv730), ty_Integer) -> new_ltEs17(xwv720, xwv730) 37.19/18.91 new_compare112(xwv164, xwv165, False, gba, gbb) -> GT 37.19/18.91 new_esEs6(xwv400, xwv300, app(ty_Ratio, dg)) -> new_esEs21(xwv400, xwv300, dg) 37.19/18.91 new_compare13(xwv177, xwv178, xwv179, xwv180, True, beb, bec) -> LT 37.19/18.91 new_ltEs7(xwv72, xwv73) -> new_fsEs(new_compare6(xwv72, xwv73)) 37.19/18.91 new_glueBal2Mid_elt100(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv290, xwv291, xwv292, xwv293, Branch(xwv2940, xwv2941, xwv2942, xwv2943, xwv2944), dhc, dhd) -> new_glueBal2Mid_elt100(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv2940, xwv2941, xwv2942, xwv2943, xwv2944, dhc, dhd) 37.19/18.91 new_ltEs10(Just(xwv720), Just(xwv730), ty_Ordering) -> new_ltEs14(xwv720, xwv730) 37.19/18.91 new_ltEs22(xwv722, xwv732, ty_Bool) -> new_ltEs8(xwv722, xwv732) 37.19/18.91 new_not(False) -> True 37.19/18.91 new_mkBalBranch6MkBalBranch5(xwv16, xwv13, xwv14, xwv35, False, bed, bee) -> new_mkBalBranch6MkBalBranch4(xwv16, xwv13, xwv14, xwv35, new_gt0(new_mkBalBranch6Size_r(xwv16, xwv13, xwv14, xwv35, bed, bee), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xwv16, xwv13, xwv14, xwv35, bed, bee))), bed, bee) 37.19/18.91 new_compare31(xwv400, xwv300, ty_Int) -> new_compare14(xwv400, xwv300) 37.19/18.91 new_ltEs23(xwv106, xwv107, app(app(app(ty_@3, cch), cda), cdb)) -> new_ltEs15(xwv106, xwv107, cch, cda, cdb) 37.19/18.91 new_esEs9(xwv402, xwv302, app(ty_Maybe, fdg)) -> new_esEs12(xwv402, xwv302, fdg) 37.19/18.91 new_lt24(xwv18, xwv13, app(ty_Maybe, bgc)) -> new_lt11(xwv18, xwv13, bgc) 37.19/18.91 new_ltEs24(xwv72, xwv73, app(app(ty_Either, eah), dhe)) -> new_ltEs16(xwv72, xwv73, eah, dhe) 37.19/18.91 new_ltEs16(Left(xwv720), Left(xwv730), ty_Double, dhe) -> new_ltEs11(xwv720, xwv730) 37.19/18.91 new_compare19(Float(xwv400, Pos(xwv4010)), Float(xwv300, Neg(xwv3010))) -> new_compare14(new_sr(xwv400, Pos(xwv3010)), new_sr(Neg(xwv4010), xwv300)) 37.19/18.91 new_compare19(Float(xwv400, Neg(xwv4010)), Float(xwv300, Pos(xwv3010))) -> new_compare14(new_sr(xwv400, Neg(xwv3010)), new_sr(Pos(xwv4010), xwv300)) 37.19/18.91 new_esEs7(xwv400, xwv300, ty_Int) -> new_esEs16(xwv400, xwv300) 37.19/18.91 new_esEs28(xwv89, xwv92, ty_Float) -> new_esEs20(xwv89, xwv92) 37.19/18.91 new_ltEs21(xwv126, xwv128, ty_@0) -> new_ltEs4(xwv126, xwv128) 37.19/18.91 new_esEs41(LT) -> False 37.19/18.91 new_compare28(GT, GT) -> EQ 37.19/18.91 new_ltEs20(xwv721, xwv731, app(ty_Ratio, dhb)) -> new_ltEs18(xwv721, xwv731, dhb) 37.19/18.91 new_esEs26(EQ) -> False 37.19/18.91 new_esEs42(xwv28, xwv33, app(ty_Maybe, bb)) -> new_esEs12(xwv28, xwv33, bb) 37.19/18.91 new_esEs9(xwv402, xwv302, ty_Bool) -> new_esEs13(xwv402, xwv302) 37.19/18.91 new_ltEs5(xwv90, xwv93, app(ty_Maybe, dca)) -> new_ltEs10(xwv90, xwv93, dca) 37.19/18.91 new_ltEs10(Just(xwv720), Just(xwv730), ty_Float) -> new_ltEs12(xwv720, xwv730) 37.19/18.91 new_esEs12(Just(xwv280), Just(xwv330), ty_Integer) -> new_esEs24(xwv280, xwv330) 37.19/18.91 new_ltEs23(xwv106, xwv107, app(ty_Ratio, cde)) -> new_ltEs18(xwv106, xwv107, cde) 37.19/18.91 new_esEs17(Left(xwv280), Left(xwv330), app(app(ty_Either, egg), egh), cgd) -> new_esEs17(xwv280, xwv330, egg, egh) 37.19/18.91 new_esEs38(xwv280, xwv330, app(app(ty_@2, cfb), cfc)) -> new_esEs19(xwv280, xwv330, cfb, cfc) 37.19/18.91 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 37.19/18.91 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 37.19/18.91 new_esEs6(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 37.19/18.91 new_ltEs24(xwv72, xwv73, ty_Bool) -> new_ltEs8(xwv72, xwv73) 37.19/18.91 new_ltEs14(LT, EQ) -> True 37.19/18.91 new_ltEs23(xwv106, xwv107, ty_@0) -> new_ltEs4(xwv106, xwv107) 37.19/18.91 new_ltEs11(xwv72, xwv73) -> new_fsEs(new_compare18(xwv72, xwv73)) 37.19/18.91 new_esEs24(Integer(xwv280), Integer(xwv330)) -> new_primEqInt(xwv280, xwv330) 37.19/18.91 new_esEs27(xwv88, xwv91, ty_Integer) -> new_esEs24(xwv88, xwv91) 37.19/18.91 new_esEs5(xwv401, xwv301, ty_Int) -> new_esEs16(xwv401, xwv301) 37.19/18.91 new_esEs38(xwv280, xwv330, app(ty_[], cfh)) -> new_esEs25(xwv280, xwv330, cfh) 37.19/18.91 new_compare30(@3(xwv400, xwv401, xwv402), @3(xwv300, xwv301, xwv302), bfd, bfe, bff) -> new_compare24(xwv400, xwv401, xwv402, xwv300, xwv301, xwv302, new_asAs(new_esEs7(xwv400, xwv300, bfd), new_asAs(new_esEs8(xwv401, xwv301, bfe), new_esEs9(xwv402, xwv302, bff))), bfd, bfe, bff) 37.19/18.91 new_esEs17(Right(xwv280), Right(xwv330), cgc, ty_Bool) -> new_esEs13(xwv280, xwv330) 37.19/18.91 new_esEs14(LT, EQ) -> False 37.19/18.91 new_esEs14(EQ, LT) -> False 37.19/18.91 new_esEs26(GT) -> False 37.19/18.91 new_ltEs22(xwv722, xwv732, ty_Char) -> new_ltEs7(xwv722, xwv732) 37.19/18.91 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 37.19/18.91 new_ltEs22(xwv722, xwv732, app(ty_Ratio, ege)) -> new_ltEs18(xwv722, xwv732, ege) 37.19/18.91 new_ltEs21(xwv126, xwv128, app(ty_Maybe, bcd)) -> new_ltEs10(xwv126, xwv128, bcd) 37.19/18.91 new_compare28(GT, LT) -> GT 37.19/18.91 new_compare12(xwv177, xwv178, xwv179, xwv180, False, xwv182, beb, bec) -> new_compare13(xwv177, xwv178, xwv179, xwv180, xwv182, beb, bec) 37.19/18.91 new_esEs42(xwv28, xwv33, ty_Bool) -> new_esEs13(xwv28, xwv33) 37.19/18.91 new_esEs25(:(xwv280, xwv281), :(xwv330, xwv331), cef) -> new_asAs(new_esEs38(xwv280, xwv330, cef), new_esEs25(xwv281, xwv331, cef)) 37.19/18.91 new_esEs6(xwv400, xwv300, app(ty_Maybe, db)) -> new_esEs12(xwv400, xwv300, db) 37.19/18.91 new_esEs7(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 37.19/18.91 new_esEs17(Left(xwv280), Left(xwv330), ty_Double, cgd) -> new_esEs15(xwv280, xwv330) 37.19/18.91 new_esEs17(Right(xwv280), Right(xwv330), cgc, ty_Int) -> new_esEs16(xwv280, xwv330) 37.19/18.91 new_glueBal2Mid_elt200(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv258, xwv259, xwv260, Branch(xwv2610, xwv2611, xwv2612, xwv2613, xwv2614), xwv262, bdf, bdg) -> new_glueBal2Mid_elt200(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv2610, xwv2611, xwv2612, xwv2613, xwv2614, bdf, bdg) 37.19/18.91 new_ltEs10(Just(xwv720), Just(xwv730), app(app(app(ty_@3, fff), ffg), ffh)) -> new_ltEs15(xwv720, xwv730, fff, ffg, ffh) 37.19/18.91 new_glueBal2Mid_elt100(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv290, xwv291, xwv292, xwv293, EmptyFM, dhc, dhd) -> xwv291 37.19/18.91 new_ltEs10(Just(xwv720), Just(xwv730), app(app(ty_Either, fga), fgb)) -> new_ltEs16(xwv720, xwv730, fga, fgb) 37.19/18.91 new_ltEs20(xwv721, xwv731, app(ty_Maybe, dgc)) -> new_ltEs10(xwv721, xwv731, dgc) 37.19/18.91 new_esEs39(xwv280, xwv330, app(ty_Ratio, gcb)) -> new_esEs21(xwv280, xwv330, gcb) 37.19/18.91 new_ltEs23(xwv106, xwv107, ty_Char) -> new_ltEs7(xwv106, xwv107) 37.19/18.91 new_compare6(Char(xwv400), Char(xwv300)) -> new_primCmpNat0(xwv400, xwv300) 37.19/18.91 new_ltEs21(xwv126, xwv128, app(ty_Ratio, bdc)) -> new_ltEs18(xwv126, xwv128, bdc) 37.19/18.91 new_esEs17(Right(xwv280), Right(xwv330), cgc, app(app(ty_Either, faa), fab)) -> new_esEs17(xwv280, xwv330, faa, fab) 37.19/18.91 new_esEs8(xwv401, xwv301, ty_Bool) -> new_esEs13(xwv401, xwv301) 37.19/18.91 new_gt(xwv40, xwv30, ty_@0) -> new_esEs41(new_compare7(xwv40, xwv30)) 37.19/18.91 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 37.19/18.91 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 37.19/18.91 new_ltEs23(xwv106, xwv107, ty_Bool) -> new_ltEs8(xwv106, xwv107) 37.19/18.91 new_compare17(Right(xwv400), Right(xwv300), bfg, bfh) -> new_compare210(xwv400, xwv300, new_esEs11(xwv400, xwv300, bfh), bfg, bfh) 37.19/18.91 new_primEqNat0(Zero, Zero) -> True 37.19/18.91 new_glueBal2Mid_key200(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv274, xwv275, xwv276, EmptyFM, xwv278, bdh, bea) -> xwv274 37.19/18.91 new_compare28(LT, EQ) -> LT 37.19/18.91 new_esEs6(xwv400, xwv300, ty_Int) -> new_esEs16(xwv400, xwv300) 37.19/18.91 new_esEs4(xwv400, xwv300, app(ty_Ratio, fhb)) -> new_esEs21(xwv400, xwv300, fhb) 37.19/18.91 new_compare9(Nothing, Nothing, da) -> EQ 37.19/18.91 new_asAs(False, xwv135) -> False 37.19/18.91 new_compare7(@0, @0) -> EQ 37.19/18.91 new_lt24(xwv18, xwv13, app(ty_Ratio, ce)) -> new_lt4(xwv18, xwv13, ce) 37.19/18.91 new_esEs8(xwv401, xwv301, ty_Ordering) -> new_esEs14(xwv401, xwv301) 37.19/18.91 new_esEs4(xwv400, xwv300, app(app(ty_@2, fgh), fha)) -> new_esEs19(xwv400, xwv300, fgh, fha) 37.19/18.91 new_esEs40(xwv281, xwv331, app(app(ty_@2, gdc), gdd)) -> new_esEs19(xwv281, xwv331, gdc, gdd) 37.19/18.91 new_esEs7(xwv400, xwv300, app(ty_Maybe, fbc)) -> new_esEs12(xwv400, xwv300, fbc) 37.19/18.91 new_ltEs23(xwv106, xwv107, ty_Ordering) -> new_ltEs14(xwv106, xwv107) 37.19/18.91 new_esEs42(xwv28, xwv33, ty_Int) -> new_esEs16(xwv28, xwv33) 37.19/18.91 37.19/18.91 The set Q consists of the following terms: 37.19/18.91 37.19/18.91 new_ltEs23(x0, x1, ty_Integer) 37.19/18.91 new_lt23(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_lt18(x0, x1, x2, x3) 37.19/18.91 new_esEs14(EQ, EQ) 37.19/18.91 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_lt23(x0, x1, ty_Char) 37.19/18.91 new_esEs8(x0, x1, ty_Integer) 37.19/18.91 new_compare28(EQ, LT) 37.19/18.91 new_compare28(LT, EQ) 37.19/18.91 new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) 37.19/18.91 new_lt5(x0, x1, ty_Float) 37.19/18.91 new_lt21(x0, x1, ty_Bool) 37.19/18.91 new_esEs29(x0, x1, ty_Int) 37.19/18.91 new_compare12(x0, x1, x2, x3, True, x4, x5, x6) 37.19/18.91 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs31(x0, x1, ty_Char) 37.19/18.91 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_ltEs5(x0, x1, ty_Double) 37.19/18.91 new_lt24(x0, x1, ty_Float) 37.19/18.91 new_esEs33(x0, x1, ty_Ordering) 37.19/18.91 new_lt19(x0, x1) 37.19/18.91 new_ltEs10(Nothing, Nothing, x0) 37.19/18.91 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_lt22(x0, x1, ty_Int) 37.19/18.91 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) 37.19/18.91 new_lt20(x0, x1, ty_Char) 37.19/18.91 new_compare30(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.19/18.91 new_primMulInt(Neg(x0), Neg(x1)) 37.19/18.91 new_lt20(x0, x1, ty_Ordering) 37.19/18.91 new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 37.19/18.91 new_primEqInt(Pos(Zero), Pos(Zero)) 37.19/18.91 new_primCmpNat0(Succ(x0), Succ(x1)) 37.19/18.91 new_lt23(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_esEs39(x0, x1, ty_Integer) 37.19/18.91 new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 37.19/18.91 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_esEs11(x0, x1, app(ty_[], x2)) 37.19/18.91 new_primMulInt(Pos(x0), Pos(x1)) 37.19/18.91 new_compare31(x0, x1, ty_Bool) 37.19/18.91 new_esEs27(x0, x1, ty_Int) 37.19/18.91 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_compare31(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_ltEs23(x0, x1, ty_@0) 37.19/18.91 new_esEs39(x0, x1, ty_Float) 37.19/18.91 new_delFromFM00(x0, x1, x2, Branch(x3, x4, x5, x6, x7), Branch(x8, x9, x10, x11, x12), x13, True, x14, x15) 37.19/18.91 new_primEqInt(Neg(Zero), Neg(Zero)) 37.19/18.91 new_ltEs22(x0, x1, ty_Bool) 37.19/18.91 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 37.19/18.91 new_esEs27(x0, x1, ty_@0) 37.19/18.91 new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) 37.19/18.91 new_lt24(x0, x1, ty_Integer) 37.19/18.91 new_esEs28(x0, x1, ty_Char) 37.19/18.91 new_lt24(x0, x1, app(ty_[], x2)) 37.19/18.91 new_esEs39(x0, x1, app(ty_[], x2)) 37.19/18.91 new_lt23(x0, x1, ty_Double) 37.19/18.91 new_esEs32(x0, x1, ty_Bool) 37.19/18.91 new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 37.19/18.91 new_esEs5(x0, x1, ty_Ordering) 37.19/18.91 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs39(x0, x1, ty_Bool) 37.19/18.91 new_esEs42(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_lt5(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_ltEs21(x0, x1, ty_Int) 37.19/18.91 new_primPlusNat0(Succ(x0), Zero) 37.19/18.91 new_esEs30(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_esEs39(x0, x1, ty_@0) 37.19/18.91 new_ltEs23(x0, x1, ty_Float) 37.19/18.91 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 37.19/18.91 new_compare31(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_compare31(x0, x1, ty_@0) 37.19/18.91 new_compare13(x0, x1, x2, x3, False, x4, x5) 37.19/18.91 new_lt7(x0, x1) 37.19/18.91 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_esEs17(Right(x0), Right(x1), x2, ty_Int) 37.19/18.91 new_compare29(False, False) 37.19/18.91 new_primEqInt(Pos(Zero), Neg(Zero)) 37.19/18.91 new_primEqInt(Neg(Zero), Pos(Zero)) 37.19/18.91 new_gt(x0, x1, app(ty_[], x2)) 37.19/18.91 new_esEs30(x0, x1, ty_Int) 37.19/18.91 new_compare9(Just(x0), Nothing, x1) 37.19/18.91 new_compare31(x0, x1, ty_Float) 37.19/18.91 new_ltEs5(x0, x1, ty_Ordering) 37.19/18.91 new_lt24(x0, x1, ty_Bool) 37.19/18.91 new_esEs32(x0, x1, ty_Int) 37.19/18.91 new_delFromFM0(EmptyFM, x0, x1, x2) 37.19/18.91 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 37.19/18.91 new_esEs10(x0, x1, ty_Double) 37.19/18.91 new_esEs25(:(x0, x1), :(x2, x3), x4) 37.19/18.91 new_deleteMax0(x0, x1, x2, x3, EmptyFM, x4, x5) 37.19/18.91 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_esEs7(x0, x1, ty_Char) 37.19/18.91 new_ltEs22(x0, x1, ty_Integer) 37.19/18.91 new_esEs32(x0, x1, ty_@0) 37.19/18.91 new_primCompAux00(x0, GT) 37.19/18.91 new_compare11(x0, x1, True, x2, x3) 37.19/18.91 new_lt21(x0, x1, ty_Int) 37.19/18.91 new_esEs30(x0, x1, ty_@0) 37.19/18.91 new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 37.19/18.91 new_esEs25([], :(x0, x1), x2) 37.19/18.91 new_esEs10(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_compare28(EQ, EQ) 37.19/18.91 new_esEs29(x0, x1, ty_@0) 37.19/18.91 new_esEs4(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_lt21(x0, x1, ty_@0) 37.19/18.91 new_esEs12(Just(x0), Just(x1), ty_Integer) 37.19/18.91 new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.19/18.91 new_esEs31(x0, x1, ty_Ordering) 37.19/18.91 new_esEs7(x0, x1, ty_Ordering) 37.19/18.91 new_esEs5(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_esEs12(Just(x0), Nothing, x1) 37.19/18.91 new_esEs17(Right(x0), Right(x1), x2, ty_Bool) 37.19/18.91 new_ltEs19(x0, x1, ty_Ordering) 37.19/18.91 new_compare16(@2(x0, x1), @2(x2, x3), x4, x5) 37.19/18.91 new_compare31(x0, x1, ty_Int) 37.19/18.91 new_esEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 37.19/18.91 new_esEs6(x0, x1, ty_Ordering) 37.19/18.91 new_deleteMin0(x0, x1, x2, EmptyFM, x3, x4, x5) 37.19/18.91 new_lt21(x0, x1, ty_Float) 37.19/18.91 new_pePe(True, x0) 37.19/18.91 new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 37.19/18.91 new_esEs29(x0, x1, ty_Integer) 37.19/18.91 new_esEs8(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_esEs4(x0, x1, ty_Int) 37.19/18.91 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) 37.19/18.91 new_esEs8(x0, x1, ty_Int) 37.19/18.91 new_esEs6(x0, x1, ty_Float) 37.19/18.91 new_esEs34(x0, x1, ty_Float) 37.19/18.91 new_esEs38(x0, x1, app(ty_[], x2)) 37.19/18.91 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_lt5(x0, x1, ty_@0) 37.19/18.91 new_esEs34(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_esEs34(x0, x1, ty_Double) 37.19/18.91 new_ltEs21(x0, x1, ty_@0) 37.19/18.91 new_ltEs24(x0, x1, ty_Ordering) 37.19/18.91 new_esEs6(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs12(Just(x0), Just(x1), ty_Bool) 37.19/18.91 new_compare1([], :(x0, x1), x2) 37.19/18.91 new_ltEs24(x0, x1, ty_Double) 37.19/18.91 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_esEs14(LT, EQ) 37.19/18.91 new_esEs14(EQ, LT) 37.19/18.91 new_esEs32(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 37.19/18.91 new_esEs27(x0, x1, ty_Integer) 37.19/18.91 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 37.19/18.91 new_esEs6(x0, x1, ty_Char) 37.19/18.91 new_esEs17(Left(x0), Left(x1), ty_Double, x2) 37.19/18.91 new_esEs27(x0, x1, ty_Float) 37.19/18.91 new_esEs29(x0, x1, ty_Bool) 37.19/18.91 new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 37.19/18.91 new_lt24(x0, x1, ty_@0) 37.19/18.91 new_esEs10(x0, x1, ty_Float) 37.19/18.91 new_lt22(x0, x1, ty_Bool) 37.19/18.91 new_ltEs19(x0, x1, ty_Char) 37.19/18.91 new_glueBal2Mid_key200(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, EmptyFM, x13, x14, x15) 37.19/18.91 new_ltEs10(Just(x0), Just(x1), ty_Int) 37.19/18.91 new_esEs38(x0, x1, ty_Int) 37.19/18.91 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 37.19/18.91 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_gt(x0, x1, ty_@0) 37.19/18.91 new_primMinusNat0(Zero, Succ(x0)) 37.19/18.91 new_lt5(x0, x1, app(ty_[], x2)) 37.19/18.91 new_esEs12(Just(x0), Just(x1), ty_Int) 37.19/18.91 new_esEs13(False, True) 37.19/18.91 new_esEs13(True, False) 37.19/18.91 new_gt(x0, x1, ty_Double) 37.19/18.91 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_ltEs22(x0, x1, ty_@0) 37.19/18.91 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_esEs33(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_esEs5(x0, x1, ty_Double) 37.19/18.91 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 37.19/18.91 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 37.19/18.91 new_esEs42(x0, x1, app(ty_[], x2)) 37.19/18.91 new_esEs8(x0, x1, ty_Float) 37.19/18.91 new_esEs38(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_esEs8(x0, x1, ty_Bool) 37.19/18.91 new_esEs29(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_esEs40(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_esEs38(x0, x1, ty_Bool) 37.19/18.91 new_ltEs8(True, False) 37.19/18.91 new_ltEs8(False, True) 37.19/18.91 new_gt(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_esEs31(x0, x1, ty_Double) 37.19/18.91 new_lt14(x0, x1) 37.19/18.91 new_esEs14(LT, LT) 37.19/18.91 new_esEs38(x0, x1, ty_Integer) 37.19/18.91 new_lt20(x0, x1, ty_Double) 37.19/18.91 new_esEs32(x0, x1, ty_Integer) 37.19/18.91 new_esEs39(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_lt22(x0, x1, app(ty_[], x2)) 37.19/18.91 new_ltEs16(Left(x0), Left(x1), ty_Char, x2) 37.19/18.91 new_esEs11(x0, x1, ty_Char) 37.19/18.91 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_ltEs6(x0, x1) 37.19/18.91 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_esEs27(x0, x1, ty_Bool) 37.19/18.91 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.91 new_esEs11(x0, x1, app(ty_Ratio, x2)) 37.19/18.91 new_primCmpNat0(Succ(x0), Zero) 37.19/18.91 new_compare31(x0, x1, ty_Integer) 37.19/18.91 new_esEs33(x0, x1, ty_Double) 37.19/18.91 new_esEs17(Right(x0), Right(x1), x2, ty_Integer) 37.19/18.91 new_asAs(False, x0) 37.19/18.91 new_esEs12(Just(x0), Just(x1), ty_Float) 37.19/18.91 new_esEs11(x0, x1, app(ty_Maybe, x2)) 37.19/18.91 new_esEs35(x0, x1, ty_@0) 37.19/18.91 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.91 new_mkBranch(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) 37.19/18.91 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.91 new_lt22(x0, x1, ty_Float) 37.19/18.92 new_ltEs20(x0, x1, ty_Double) 37.19/18.92 new_primMulInt(Pos(x0), Neg(x1)) 37.19/18.92 new_primMulInt(Neg(x0), Pos(x1)) 37.19/18.92 new_lt6(x0, x1, ty_Int) 37.19/18.92 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_compare15(Integer(x0), Integer(x1)) 37.19/18.92 new_esEs18(Char(x0), Char(x1)) 37.19/18.92 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_asAs(True, x0) 37.19/18.92 new_ltEs10(Just(x0), Just(x1), ty_Bool) 37.19/18.92 new_esEs42(x0, x1, ty_Char) 37.19/18.92 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_esEs40(x0, x1, ty_@0) 37.19/18.92 new_esEs28(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_lt24(x0, x1, ty_Double) 37.19/18.92 new_esEs33(x0, x1, ty_Float) 37.19/18.92 new_compare7(@0, @0) 37.19/18.92 new_esEs4(x0, x1, ty_Integer) 37.19/18.92 new_esEs4(x0, x1, ty_Bool) 37.19/18.92 new_esEs5(x0, x1, ty_Integer) 37.19/18.92 new_esEs42(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_primMulNat0(Succ(x0), Zero) 37.19/18.92 new_compare110(x0, x1, False, x2) 37.19/18.92 new_esEs28(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_compare25(x0, x1, False, x2, x3) 37.19/18.92 new_esEs10(x0, x1, ty_@0) 37.19/18.92 new_esEs25([], [], x0) 37.19/18.92 new_esEs6(x0, x1, ty_Integer) 37.19/18.92 new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 37.19/18.92 new_esEs6(x0, x1, ty_@0) 37.19/18.92 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) 37.19/18.92 new_lt17(x0, x1, x2, x3, x4) 37.19/18.92 new_esEs12(Just(x0), Just(x1), ty_Double) 37.19/18.92 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_lt5(x0, x1, ty_Int) 37.19/18.92 new_esEs17(Left(x0), Left(x1), ty_@0, x2) 37.19/18.92 new_compare17(Left(x0), Right(x1), x2, x3) 37.19/18.92 new_compare17(Right(x0), Left(x1), x2, x3) 37.19/18.92 new_primEqNat0(Succ(x0), Succ(x1)) 37.19/18.92 new_lt11(x0, x1, x2) 37.19/18.92 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) 37.19/18.92 new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 37.19/18.92 new_lt6(x0, x1, ty_Char) 37.19/18.92 new_esEs40(x0, x1, ty_Bool) 37.19/18.92 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_lt6(x0, x1, ty_Double) 37.19/18.92 new_lt24(x0, x1, ty_Int) 37.19/18.92 new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_primPlusNat0(Zero, Zero) 37.19/18.92 new_esEs10(x0, x1, ty_Integer) 37.19/18.92 new_lt5(x0, x1, ty_Char) 37.19/18.92 new_not(True) 37.19/18.92 new_fsEs(x0) 37.19/18.92 new_esEs33(x0, x1, ty_Integer) 37.19/18.92 new_esEs42(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_esEs40(x0, x1, ty_Char) 37.19/18.92 new_esEs42(x0, x1, ty_Double) 37.19/18.92 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) 37.19/18.92 new_esEs40(x0, x1, ty_Int) 37.19/18.92 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_lt24(x0, x1, ty_Char) 37.19/18.92 new_esEs37(x0, x1, ty_Integer) 37.19/18.92 new_compare1(:(x0, x1), :(x2, x3), x4) 37.19/18.92 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_esEs39(x0, x1, ty_Int) 37.19/18.92 new_esEs8(x0, x1, ty_Ordering) 37.19/18.92 new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 37.19/18.92 new_esEs24(Integer(x0), Integer(x1)) 37.19/18.92 new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 37.19/18.92 new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 37.19/18.92 new_esEs42(x0, x1, ty_Int) 37.19/18.92 new_esEs4(x0, x1, ty_@0) 37.19/18.92 new_esEs4(x0, x1, ty_Char) 37.19/18.92 new_compare28(GT, EQ) 37.19/18.92 new_compare28(EQ, GT) 37.19/18.92 new_esEs9(x0, x1, ty_Double) 37.19/18.92 new_lt16(x0, x1) 37.19/18.92 new_primCompAux00(x0, LT) 37.19/18.92 new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) 37.19/18.92 new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_esEs12(Just(x0), Just(x1), ty_Ordering) 37.19/18.92 new_esEs10(x0, x1, ty_Char) 37.19/18.92 new_ltEs21(x0, x1, ty_Float) 37.19/18.92 new_lt20(x0, x1, app(ty_[], x2)) 37.19/18.92 new_esEs39(x0, x1, ty_Char) 37.19/18.92 new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) 37.19/18.92 new_gt(x0, x1, ty_Ordering) 37.19/18.92 new_primPlusInt(Neg(x0), Neg(x1)) 37.19/18.92 new_glueBal2GlueBal1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, True, x10, x11) 37.19/18.92 new_esEs39(x0, x1, ty_Double) 37.19/18.92 new_lt23(x0, x1, app(ty_[], x2)) 37.19/18.92 new_esEs10(x0, x1, ty_Bool) 37.19/18.92 new_compare9(Nothing, Just(x0), x1) 37.19/18.92 new_esEs11(x0, x1, ty_Ordering) 37.19/18.92 new_esEs7(x0, x1, ty_Double) 37.19/18.92 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_esEs28(x0, x1, ty_Double) 37.19/18.92 new_ltEs22(x0, x1, ty_Char) 37.19/18.92 new_lt5(x0, x1, ty_Bool) 37.19/18.92 new_ltEs10(Just(x0), Just(x1), ty_Double) 37.19/18.92 new_glueBal2Mid_key100(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, EmptyFM, x14, x15) 37.19/18.92 new_ltEs16(Right(x0), Left(x1), x2, x3) 37.19/18.92 new_ltEs16(Left(x0), Right(x1), x2, x3) 37.19/18.92 new_esEs5(x0, x1, ty_Char) 37.19/18.92 new_esEs7(x0, x1, ty_Float) 37.19/18.92 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 37.19/18.92 new_ltEs14(GT, GT) 37.19/18.92 new_esEs17(Right(x0), Right(x1), x2, ty_@0) 37.19/18.92 new_esEs42(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_esEs33(x0, x1, ty_Bool) 37.19/18.92 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 37.19/18.92 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_esEs40(x0, x1, app(ty_[], x2)) 37.19/18.92 new_esEs11(x0, x1, ty_Double) 37.19/18.92 new_esEs35(x0, x1, app(ty_[], x2)) 37.19/18.92 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_ltEs20(x0, x1, ty_Ordering) 37.19/18.92 new_esEs30(x0, x1, app(ty_[], x2)) 37.19/18.92 new_esEs32(x0, x1, app(ty_[], x2)) 37.19/18.92 new_compare31(x0, x1, ty_Double) 37.19/18.92 new_ltEs23(x0, x1, ty_Ordering) 37.19/18.92 new_lt6(x0, x1, ty_Bool) 37.19/18.92 new_primEqNat0(Zero, Succ(x0)) 37.19/18.92 new_esEs17(Left(x0), Right(x1), x2, x3) 37.19/18.92 new_esEs17(Right(x0), Left(x1), x2, x3) 37.19/18.92 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 37.19/18.92 new_esEs6(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_esEs38(x0, x1, ty_@0) 37.19/18.92 new_esEs7(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_esEs15(Double(x0, x1), Double(x2, x3)) 37.19/18.92 new_compare27(x0, x1, x2, x3, True, x4, x5) 37.19/18.92 new_ltEs22(x0, x1, app(ty_[], x2)) 37.19/18.92 new_ltEs21(x0, x1, ty_Bool) 37.19/18.92 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_esEs25(:(x0, x1), [], x2) 37.19/18.92 new_lt6(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_esEs42(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_esEs8(x0, x1, app(ty_[], x2)) 37.19/18.92 new_esEs28(x0, x1, ty_Ordering) 37.19/18.92 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_esEs33(x0, x1, app(ty_[], x2)) 37.19/18.92 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_esEs14(LT, GT) 37.19/18.92 new_esEs14(GT, LT) 37.19/18.92 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_compare1([], [], x0) 37.19/18.92 new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 37.19/18.92 new_primEqNat0(Zero, Zero) 37.19/18.92 new_esEs13(False, False) 37.19/18.92 new_esEs5(x0, x1, ty_Float) 37.19/18.92 new_esEs5(x0, x1, ty_Bool) 37.19/18.92 new_ltEs22(x0, x1, ty_Float) 37.19/18.92 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 37.19/18.92 new_esEs32(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_lt20(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_ltEs21(x0, x1, ty_Integer) 37.19/18.92 new_not(False) 37.19/18.92 new_esEs8(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_lt23(x0, x1, ty_Ordering) 37.19/18.92 new_lt21(x0, x1, app(ty_[], x2)) 37.19/18.92 new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 37.19/18.92 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) 37.19/18.92 new_esEs36(x0, x1, ty_Integer) 37.19/18.92 new_lt21(x0, x1, ty_Integer) 37.19/18.92 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_esEs9(x0, x1, ty_Ordering) 37.19/18.92 new_primMulNat0(Zero, Succ(x0)) 37.19/18.92 new_ltEs8(True, True) 37.19/18.92 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_esEs27(x0, x1, ty_Double) 37.19/18.92 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 37.19/18.92 new_esEs5(x0, x1, ty_Int) 37.19/18.92 new_esEs37(x0, x1, ty_Int) 37.19/18.92 new_ltEs16(Left(x0), Left(x1), ty_Double, x2) 37.19/18.92 new_lt6(x0, x1, ty_Float) 37.19/18.92 new_primCompAux0(x0, x1, x2, x3) 37.19/18.92 new_gt0(x0, x1) 37.19/18.92 new_ltEs22(x0, x1, ty_Int) 37.19/18.92 new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) 37.19/18.92 new_compare29(True, True) 37.19/18.92 new_esEs41(LT) 37.19/18.92 new_lt5(x0, x1, ty_Integer) 37.19/18.92 new_ltEs5(x0, x1, app(ty_[], x2)) 37.19/18.92 new_esEs33(x0, x1, ty_Int) 37.19/18.92 new_esEs30(x0, x1, ty_Ordering) 37.19/18.92 new_ltEs14(EQ, LT) 37.19/18.92 new_ltEs14(LT, EQ) 37.19/18.92 new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 37.19/18.92 new_esEs20(Float(x0, x1), Float(x2, x3)) 37.19/18.92 new_esEs34(x0, x1, ty_Ordering) 37.19/18.92 new_esEs33(x0, x1, ty_Char) 37.19/18.92 new_esEs8(x0, x1, ty_Double) 37.19/18.92 new_ltEs17(x0, x1) 37.19/18.92 new_ltEs13(x0, x1, x2) 37.19/18.92 new_esEs40(x0, x1, ty_Integer) 37.19/18.92 new_esEs4(x0, x1, app(ty_[], x2)) 37.19/18.92 new_esEs31(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_ltEs19(x0, x1, app(ty_[], x2)) 37.19/18.92 new_esEs26(LT) 37.19/18.92 new_esEs31(x0, x1, ty_Int) 37.19/18.92 new_esEs28(x0, x1, ty_@0) 37.19/18.92 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) 37.19/18.92 new_compare9(Nothing, Nothing, x0) 37.19/18.92 new_esEs30(x0, x1, ty_Double) 37.19/18.92 new_primMinusNat0(Succ(x0), Succ(x1)) 37.19/18.92 new_esEs7(x0, x1, ty_Bool) 37.19/18.92 new_esEs28(x0, x1, app(ty_[], x2)) 37.19/18.92 new_lt20(x0, x1, ty_Int) 37.19/18.92 new_esEs17(Right(x0), Right(x1), x2, ty_Double) 37.19/18.92 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_esEs11(x0, x1, ty_Bool) 37.19/18.92 new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) 37.19/18.92 new_compare1(:(x0, x1), [], x2) 37.19/18.92 new_lt22(x0, x1, ty_Ordering) 37.19/18.92 new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) 37.19/18.92 new_pePe(False, x0) 37.19/18.92 new_mkBranch0(x0, x1, x2, x3, x4, x5, x6) 37.19/18.92 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_ltEs19(x0, x1, ty_@0) 37.19/18.92 new_ltEs4(x0, x1) 37.19/18.92 new_esEs29(x0, x1, ty_Char) 37.19/18.92 new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) 37.19/18.92 new_ltEs19(x0, x1, ty_Bool) 37.19/18.92 new_ltEs21(x0, x1, ty_Ordering) 37.19/18.92 new_esEs27(x0, x1, ty_Char) 37.19/18.92 new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 37.19/18.92 new_esEs7(x0, x1, ty_@0) 37.19/18.92 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_esEs32(x0, x1, ty_Char) 37.19/18.92 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 37.19/18.92 new_lt23(x0, x1, ty_Int) 37.19/18.92 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) 37.19/18.92 new_esEs7(x0, x1, ty_Integer) 37.19/18.92 new_ltEs12(x0, x1) 37.19/18.92 new_primMinusNat0(Zero, Zero) 37.19/18.92 new_ltEs18(x0, x1, x2) 37.19/18.92 new_compare28(GT, GT) 37.19/18.92 new_lt22(x0, x1, ty_Char) 37.19/18.92 new_esEs38(x0, x1, ty_Double) 37.19/18.92 new_lt22(x0, x1, ty_Double) 37.19/18.92 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_lt22(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_ltEs14(LT, LT) 37.19/18.92 new_esEs39(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_lt9(x0, x1) 37.19/18.92 new_esEs28(x0, x1, ty_Integer) 37.19/18.92 new_lt10(x0, x1, x2, x3) 37.19/18.92 new_ltEs21(x0, x1, ty_Double) 37.19/18.92 new_esEs4(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_compare26(x0, x1, True, x2) 37.19/18.92 new_esEs10(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_esEs42(x0, x1, ty_Float) 37.19/18.92 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 37.19/18.92 new_sIZE_RATIO 37.19/18.92 new_ltEs23(x0, x1, app(ty_[], x2)) 37.19/18.92 new_esEs30(x0, x1, ty_Char) 37.19/18.92 new_lt21(x0, x1, ty_Char) 37.19/18.92 new_compare13(x0, x1, x2, x3, True, x4, x5) 37.19/18.92 new_ltEs21(x0, x1, ty_Char) 37.19/18.92 new_esEs36(x0, x1, ty_Int) 37.19/18.92 new_esEs17(Right(x0), Right(x1), x2, ty_Char) 37.19/18.92 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_ltEs8(False, False) 37.19/18.92 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_mkBalBranch6MkBalBranch3(Branch(x0, x1, x2, x3, x4), x5, x6, x7, True, x8, x9) 37.19/18.92 new_lt21(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_esEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 37.19/18.92 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_esEs9(x0, x1, ty_Bool) 37.19/18.92 new_esEs32(x0, x1, ty_Double) 37.19/18.92 new_esEs29(x0, x1, ty_Double) 37.19/18.92 new_lt23(x0, x1, ty_@0) 37.19/18.92 new_esEs9(x0, x1, ty_Float) 37.19/18.92 new_compare14(x0, x1) 37.19/18.92 new_mkBalBranch6MkBalBranch3(EmptyFM, x0, x1, x2, True, x3, x4) 37.19/18.92 new_lt20(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_lt24(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_esEs9(x0, x1, ty_@0) 37.19/18.92 new_compare112(x0, x1, True, x2, x3) 37.19/18.92 new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) 37.19/18.92 new_compare25(x0, x1, True, x2, x3) 37.19/18.92 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_esEs26(EQ) 37.19/18.92 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_lt24(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_esEs4(x0, x1, ty_Double) 37.19/18.92 new_esEs11(x0, x1, ty_Integer) 37.19/18.92 new_esEs7(x0, x1, ty_Int) 37.19/18.92 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 37.19/18.92 new_esEs22(@0, @0) 37.19/18.92 new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 37.19/18.92 new_lt21(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_ltEs16(Right(x0), Right(x1), x2, ty_Float) 37.19/18.92 new_esEs35(x0, x1, ty_Ordering) 37.19/18.92 new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 37.19/18.92 new_esEs28(x0, x1, ty_Bool) 37.19/18.92 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_ltEs20(x0, x1, app(ty_[], x2)) 37.19/18.92 new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) 37.19/18.92 new_lt24(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_lt13(x0, x1) 37.19/18.92 new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 37.19/18.92 new_esEs40(x0, x1, ty_Float) 37.19/18.92 new_lt21(x0, x1, ty_Double) 37.19/18.92 new_esEs9(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_esEs41(GT) 37.19/18.92 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_delFromFM0(Branch(x0, x1, x2, x3, x4), x5, x6, x7) 37.19/18.92 new_esEs33(x0, x1, ty_@0) 37.19/18.92 new_ltEs16(Left(x0), Left(x1), ty_Int, x2) 37.19/18.92 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 37.19/18.92 new_esEs28(x0, x1, ty_Float) 37.19/18.92 new_esEs30(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_lt6(x0, x1, ty_Integer) 37.19/18.92 new_esEs40(x0, x1, ty_Double) 37.19/18.92 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 37.19/18.92 new_glueBal2GlueBal1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, False, x10, x11) 37.19/18.92 new_esEs9(x0, x1, app(ty_[], x2)) 37.19/18.92 new_primCmpNat0(Zero, Succ(x0)) 37.19/18.92 new_gt(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 37.19/18.92 new_compare9(Just(x0), Just(x1), x2) 37.19/18.92 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 37.19/18.92 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_compare31(x0, x1, ty_Ordering) 37.19/18.92 new_ltEs19(x0, x1, ty_Float) 37.19/18.92 new_esEs11(x0, x1, ty_Float) 37.19/18.92 new_ltEs16(Right(x0), Right(x1), x2, ty_Double) 37.19/18.92 new_ltEs10(Just(x0), Just(x1), ty_Float) 37.19/18.92 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 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) 37.19/18.92 new_ltEs16(Left(x0), Left(x1), ty_Float, x2) 37.19/18.92 new_esEs12(Just(x0), Just(x1), app(ty_[], x2)) 37.19/18.92 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_primCompAux00(x0, EQ) 37.19/18.92 new_esEs10(x0, x1, ty_Int) 37.19/18.92 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 37.19/18.92 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 37.19/18.92 new_ltEs14(LT, GT) 37.19/18.92 new_ltEs14(GT, LT) 37.19/18.92 new_esEs35(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_deleteMax0(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10) 37.19/18.92 new_compare29(True, False) 37.19/18.92 new_compare29(False, True) 37.19/18.92 new_compare31(x0, x1, ty_Char) 37.19/18.92 new_esEs4(x0, x1, ty_Float) 37.19/18.92 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_compare11(x0, x1, False, x2, x3) 37.19/18.92 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_ltEs19(x0, x1, ty_Int) 37.19/18.92 new_esEs28(x0, x1, ty_Int) 37.19/18.92 new_esEs38(x0, x1, ty_Char) 37.19/18.92 new_esEs14(GT, GT) 37.19/18.92 new_ltEs10(Just(x0), Just(x1), ty_Ordering) 37.19/18.92 new_esEs31(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_primMulNat0(Succ(x0), Succ(x1)) 37.19/18.92 new_esEs6(x0, x1, ty_Int) 37.19/18.92 new_lt20(x0, x1, ty_@0) 37.19/18.92 new_compare17(Right(x0), Right(x1), x2, x3) 37.19/18.92 new_esEs27(x0, x1, ty_Ordering) 37.19/18.92 new_esEs42(x0, x1, ty_Bool) 37.19/18.92 new_compare12(x0, x1, x2, x3, False, x4, x5, x6) 37.19/18.92 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_primEqNat0(Succ(x0), Zero) 37.19/18.92 new_esEs32(x0, x1, ty_Ordering) 37.19/18.92 new_primCmpInt(Neg(Zero), Neg(Zero)) 37.19/18.92 new_esEs39(x0, x1, ty_Ordering) 37.19/18.92 new_esEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_ltEs10(Just(x0), Just(x1), ty_Char) 37.19/18.92 new_ltEs14(EQ, GT) 37.19/18.92 new_ltEs22(x0, x1, ty_Double) 37.19/18.92 new_ltEs14(GT, EQ) 37.19/18.92 new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 37.19/18.92 new_compare28(LT, GT) 37.19/18.92 new_compare28(GT, LT) 37.19/18.92 new_primPlusNat0(Zero, Succ(x0)) 37.19/18.92 new_gt(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_esEs38(x0, x1, ty_Ordering) 37.19/18.92 new_primCmpInt(Pos(Zero), Neg(Zero)) 37.19/18.92 new_primCmpInt(Neg(Zero), Pos(Zero)) 37.19/18.92 new_lt8(x0, x1) 37.19/18.92 new_esEs5(x0, x1, ty_@0) 37.19/18.92 new_esEs42(x0, x1, ty_Ordering) 37.19/18.92 new_ltEs10(Just(x0), Just(x1), ty_Integer) 37.19/18.92 new_lt4(x0, x1, x2) 37.19/18.92 new_esEs12(Just(x0), Just(x1), ty_Char) 37.19/18.92 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_ltEs23(x0, x1, ty_Double) 37.19/18.92 new_lt6(x0, x1, ty_@0) 37.19/18.92 new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 37.19/18.92 new_ltEs20(x0, x1, ty_@0) 37.19/18.92 new_ltEs24(x0, x1, ty_@0) 37.19/18.92 new_esEs5(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_compare27(x0, x1, x2, x3, False, x4, x5) 37.19/18.92 new_esEs35(x0, x1, ty_Double) 37.19/18.92 new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 37.19/18.92 new_sr0(Integer(x0), Integer(x1)) 37.19/18.92 new_ltEs19(x0, x1, ty_Integer) 37.19/18.92 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 37.19/18.92 new_gt(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_esEs5(x0, x1, app(ty_[], x2)) 37.19/18.92 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_esEs12(Nothing, Just(x0), x1) 37.19/18.92 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_esEs11(x0, x1, ty_Int) 37.19/18.92 new_glueBal2Mid_elt100(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, EmptyFM, x14, x15) 37.19/18.92 new_esEs10(x0, x1, app(ty_[], x2)) 37.19/18.92 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_ltEs5(x0, x1, ty_@0) 37.19/18.92 new_esEs27(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_esEs29(x0, x1, ty_Ordering) 37.19/18.92 new_esEs42(x0, x1, ty_Integer) 37.19/18.92 new_esEs31(x0, x1, ty_@0) 37.19/18.92 new_esEs8(x0, x1, ty_Char) 37.19/18.92 new_lt6(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_compare6(Char(x0), Char(x1)) 37.19/18.92 new_esEs17(Right(x0), Right(x1), x2, ty_Float) 37.19/18.92 new_gt(x0, x1, ty_Char) 37.19/18.92 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_delFromFM20(x0, x1, x2, x3, x4, x5, True, x6, x7) 37.19/18.92 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) 37.19/18.92 new_esEs30(x0, x1, ty_Float) 37.19/18.92 new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, True, x3, x4) 37.19/18.92 new_delFromFM10(x0, x1, x2, x3, x4, x5, False, x6, x7) 37.19/18.92 new_ltEs10(Just(x0), Just(x1), ty_@0) 37.19/18.92 new_ltEs16(Right(x0), Right(x1), x2, ty_@0) 37.19/18.92 new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 37.19/18.92 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_compare210(x0, x1, True, x2, x3) 37.19/18.92 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_esEs6(x0, x1, ty_Bool) 37.19/18.92 new_ltEs20(x0, x1, ty_Integer) 37.19/18.92 new_esEs27(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 37.19/18.92 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_esEs35(x0, x1, ty_Integer) 37.19/18.92 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_primMulNat0(Zero, Zero) 37.19/18.92 new_primPlusInt(Pos(x0), Neg(x1)) 37.19/18.92 new_primPlusInt(Neg(x0), Pos(x1)) 37.19/18.92 new_esEs34(x0, x1, ty_Integer) 37.19/18.92 new_deleteMin0(x0, x1, x2, Branch(x3, x4, x5, x6, x7), x8, x9, x10) 37.19/18.92 new_delFromFM00(x0, x1, x2, EmptyFM, x3, x4, True, x5, x6) 37.19/18.92 new_ltEs14(EQ, EQ) 37.19/18.92 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_lt5(x0, x1, ty_Ordering) 37.19/18.92 new_sr(x0, x1) 37.19/18.92 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_esEs12(Nothing, Nothing, x0) 37.19/18.92 new_delFromFM00(x0, x1, x2, x3, x4, x5, False, x6, x7) 37.19/18.92 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_esEs17(Left(x0), Left(x1), ty_Char, x2) 37.19/18.92 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) 37.19/18.92 new_lt24(x0, x1, ty_Ordering) 37.19/18.92 new_primPlusInt(Pos(x0), Pos(x1)) 37.19/18.92 new_lt6(x0, x1, ty_Ordering) 37.19/18.92 new_lt20(x0, x1, ty_Float) 37.19/18.92 new_ltEs24(x0, x1, app(ty_[], x2)) 37.19/18.92 new_ltEs24(x0, x1, ty_Bool) 37.19/18.92 new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) 37.19/18.92 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_esEs34(x0, x1, ty_Bool) 37.19/18.92 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) 37.19/18.92 new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) 37.19/18.92 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10, x11, False, x12, x13) 37.19/18.92 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_esEs17(Left(x0), Left(x1), ty_Int, x2) 37.19/18.92 new_lt5(x0, x1, ty_Double) 37.19/18.92 new_ltEs5(x0, x1, ty_Integer) 37.19/18.92 new_lt23(x0, x1, ty_Float) 37.19/18.92 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_esEs32(x0, x1, ty_Float) 37.19/18.92 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 37.19/18.92 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 37.19/18.92 new_ltEs22(x0, x1, ty_Ordering) 37.19/18.92 new_esEs42(x0, x1, ty_@0) 37.19/18.92 new_esEs29(x0, x1, app(ty_[], x2)) 37.19/18.92 new_esEs26(GT) 37.19/18.92 new_esEs17(Left(x0), Left(x1), ty_Integer, x2) 37.19/18.92 new_lt15(x0, x1, x2) 37.19/18.92 new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) 37.19/18.92 new_ltEs16(Right(x0), Right(x1), x2, ty_Int) 37.19/18.92 new_esEs16(x0, x1) 37.19/18.92 new_esEs14(EQ, GT) 37.19/18.92 new_esEs14(GT, EQ) 37.19/18.92 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 37.19/18.92 new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 37.19/18.92 new_compare17(Left(x0), Left(x1), x2, x3) 37.19/18.92 new_esEs13(True, True) 37.19/18.92 new_primMinusNat0(Succ(x0), Zero) 37.19/18.92 new_esEs17(Left(x0), Left(x1), ty_Bool, x2) 37.19/18.92 new_ltEs16(Right(x0), Right(x1), x2, ty_Char) 37.19/18.92 new_glueBal2Mid_elt200(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, EmptyFM, x13, x14, x15) 37.19/18.92 new_esEs38(x0, x1, ty_Float) 37.19/18.92 new_esEs9(x0, x1, ty_Char) 37.19/18.92 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_esEs34(x0, x1, ty_@0) 37.19/18.92 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 37.19/18.92 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 37.19/18.92 new_ltEs7(x0, x1) 37.19/18.92 new_esEs34(x0, x1, ty_Char) 37.19/18.92 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 37.19/18.92 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 37.19/18.92 new_esEs9(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_esEs7(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) 37.19/18.92 new_esEs29(x0, x1, ty_Float) 37.19/18.92 new_ltEs24(x0, x1, ty_Integer) 37.19/18.92 new_esEs9(x0, x1, ty_Int) 37.19/18.92 new_esEs34(x0, x1, ty_Int) 37.19/18.92 new_esEs35(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_esEs34(x0, x1, app(ty_[], x2)) 37.19/18.92 new_ltEs10(Nothing, Just(x0), x1) 37.19/18.92 new_primCmpInt(Pos(Zero), Pos(Zero)) 37.19/18.92 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 37.19/18.92 new_esEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 37.19/18.92 new_lt22(x0, x1, ty_Integer) 37.19/18.92 new_delFromFM10(x0, x1, x2, x3, x4, x5, True, x6, x7) 37.19/18.92 new_delFromFM20(x0, x1, x2, x3, x4, x5, False, x6, x7) 37.19/18.92 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 37.19/18.92 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 37.19/18.92 new_ltEs24(x0, x1, ty_Int) 37.19/18.92 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_ltEs21(x0, x1, app(ty_[], x2)) 37.19/18.92 new_esEs31(x0, x1, ty_Integer) 37.19/18.92 new_ltEs20(x0, x1, ty_Int) 37.19/18.92 new_esEs38(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_lt20(x0, x1, ty_Integer) 37.19/18.92 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_esEs30(x0, x1, ty_Bool) 37.19/18.92 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 37.19/18.92 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_esEs6(x0, x1, app(ty_[], x2)) 37.19/18.92 new_compare28(LT, LT) 37.19/18.92 new_esEs4(x0, x1, ty_Ordering) 37.19/18.92 new_esEs10(x0, x1, ty_Ordering) 37.19/18.92 new_esEs6(x0, x1, ty_Double) 37.19/18.92 new_compare110(x0, x1, True, x2) 37.19/18.92 new_ltEs23(x0, x1, ty_Char) 37.19/18.92 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) 37.19/18.92 new_gt(x0, x1, ty_Integer) 37.19/18.92 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 37.19/18.92 new_esEs35(x0, x1, ty_Char) 37.19/18.92 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_compare112(x0, x1, False, x2, x3) 37.19/18.92 new_esEs31(x0, x1, ty_Bool) 37.19/18.92 new_ltEs5(x0, x1, ty_Bool) 37.19/18.92 new_ltEs24(x0, x1, ty_Char) 37.19/18.92 new_esEs40(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_esEs34(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_ltEs20(x0, x1, ty_Float) 37.19/18.92 new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 37.19/18.92 new_lt6(x0, x1, app(ty_[], x2)) 37.19/18.92 new_ltEs10(Just(x0), Nothing, x1) 37.19/18.92 new_ltEs19(x0, x1, ty_Double) 37.19/18.92 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_compare210(x0, x1, False, x2, x3) 37.19/18.92 new_ltEs23(x0, x1, ty_Int) 37.19/18.92 new_esEs31(x0, x1, app(ty_[], x2)) 37.19/18.92 new_esEs27(x0, x1, app(ty_[], x2)) 37.19/18.92 new_esEs41(EQ) 37.19/18.92 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_lt23(x0, x1, ty_Bool) 37.19/18.92 new_lt24(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_esEs35(x0, x1, ty_Bool) 37.19/18.92 new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) 37.19/18.92 new_gt(x0, x1, ty_Bool) 37.19/18.92 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, EmptyFM, x4, x5, x6, False, x7, x8) 37.19/18.92 new_ltEs5(x0, x1, ty_Int) 37.19/18.92 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_esEs35(x0, x1, ty_Float) 37.19/18.92 new_ltEs5(x0, x1, ty_Char) 37.19/18.92 new_lt12(x0, x1) 37.19/18.92 new_mkBalBranch(x0, x1, x2, x3, x4, x5) 37.19/18.92 new_esEs9(x0, x1, ty_Integer) 37.19/18.92 new_lt22(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_gt(x0, x1, ty_Float) 37.19/18.92 new_esEs30(x0, x1, ty_Integer) 37.19/18.92 new_esEs21(:%(x0, x1), :%(x2, x3), x4) 37.19/18.92 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_esEs33(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_esEs17(Left(x0), Left(x1), ty_Float, x2) 37.19/18.92 new_delFromFM00(x0, x1, x2, Branch(x3, x4, x5, x6, x7), EmptyFM, x8, True, x9, x10) 37.19/18.92 new_sizeFM(EmptyFM, x0, x1) 37.19/18.92 new_esEs8(x0, x1, ty_@0) 37.19/18.92 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 37.19/18.92 new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 37.19/18.92 new_esEs29(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 37.19/18.92 new_esEs7(x0, x1, app(ty_[], x2)) 37.19/18.92 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_ltEs24(x0, x1, ty_Float) 37.19/18.92 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 37.19/18.92 new_esEs11(x0, x1, ty_@0) 37.19/18.92 new_lt20(x0, x1, ty_Bool) 37.19/18.92 new_esEs40(x0, x1, ty_Ordering) 37.19/18.92 new_ltEs5(x0, x1, ty_Float) 37.19/18.92 new_lt5(x0, x1, app(ty_Maybe, x2)) 37.19/18.92 new_ltEs20(x0, x1, ty_Bool) 37.19/18.92 new_ltEs23(x0, x1, ty_Bool) 37.19/18.92 new_mkBranchResult(x0, x1, x2, x3, x4, x5) 37.19/18.92 new_ltEs11(x0, x1) 37.19/18.92 new_esEs35(x0, x1, ty_Int) 37.19/18.92 new_esEs31(x0, x1, ty_Float) 37.19/18.92 new_lt22(x0, x1, ty_@0) 37.19/18.92 new_ltEs16(Left(x0), Left(x1), ty_@0, x2) 37.19/18.92 new_lt21(x0, x1, ty_Ordering) 37.19/18.92 new_esEs12(Just(x0), Just(x1), ty_@0) 37.19/18.92 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 37.19/18.92 new_gt(x0, x1, ty_Int) 37.19/18.92 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 37.19/18.92 new_compare31(x0, x1, app(ty_[], x2)) 37.19/18.92 new_primPlusNat0(Succ(x0), Succ(x1)) 37.19/18.92 new_esEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 37.19/18.92 new_lt23(x0, x1, ty_Integer) 37.19/18.92 new_compare26(x0, x1, False, x2) 37.19/18.92 new_primCmpNat0(Zero, Zero) 37.19/18.92 new_ltEs20(x0, x1, ty_Char) 37.19/18.92 37.19/18.92 We have to consider all minimal (P,Q,R)-chains. 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (27) QDPSizeChangeProof (EQUIVALENT) 37.19/18.92 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. 37.19/18.92 37.19/18.92 From the DPs we obtained the following set of size-change graphs: 37.19/18.92 *new_foldl(xwv3, :(xwv40, xwv41), h, ba) -> new_foldl(new_delFromFM0(xwv3, xwv40, h, ba), xwv41, h, ba) 37.19/18.92 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 37.19/18.92 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (28) 37.19/18.92 YES 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (29) 37.19/18.92 Obligation: 37.19/18.92 Q DP problem: 37.19/18.92 The TRS P consists of the following rules: 37.19/18.92 37.19/18.92 new_primMulNat(Succ(xwv30000), Succ(xwv40100)) -> new_primMulNat(xwv30000, Succ(xwv40100)) 37.19/18.92 37.19/18.92 R is empty. 37.19/18.92 Q is empty. 37.19/18.92 We have to consider all minimal (P,Q,R)-chains. 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (30) QDPSizeChangeProof (EQUIVALENT) 37.19/18.92 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. 37.19/18.92 37.19/18.92 From the DPs we obtained the following set of size-change graphs: 37.19/18.92 *new_primMulNat(Succ(xwv30000), Succ(xwv40100)) -> new_primMulNat(xwv30000, Succ(xwv40100)) 37.19/18.92 The graph contains the following edges 1 > 1, 2 >= 2 37.19/18.92 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (31) 37.19/18.92 YES 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (32) 37.19/18.92 Obligation: 37.19/18.92 Q DP problem: 37.19/18.92 The TRS P consists of the following rules: 37.19/18.92 37.19/18.92 new_primMinusNat(Succ(xwv16200), Succ(xwv13700)) -> new_primMinusNat(xwv16200, xwv13700) 37.19/18.92 37.19/18.92 R is empty. 37.19/18.92 Q is empty. 37.19/18.92 We have to consider all minimal (P,Q,R)-chains. 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (33) QDPSizeChangeProof (EQUIVALENT) 37.19/18.92 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. 37.19/18.92 37.19/18.92 From the DPs we obtained the following set of size-change graphs: 37.19/18.92 *new_primMinusNat(Succ(xwv16200), Succ(xwv13700)) -> new_primMinusNat(xwv16200, xwv13700) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2 37.19/18.92 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (34) 37.19/18.92 YES 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (35) 37.19/18.92 Obligation: 37.19/18.92 Q DP problem: 37.19/18.92 The TRS P consists of the following rules: 37.19/18.92 37.19/18.92 new_primPlusNat(Succ(xwv16200), Succ(xwv13700)) -> new_primPlusNat(xwv16200, xwv13700) 37.19/18.92 37.19/18.92 R is empty. 37.19/18.92 Q is empty. 37.19/18.92 We have to consider all minimal (P,Q,R)-chains. 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (36) QDPSizeChangeProof (EQUIVALENT) 37.19/18.92 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. 37.19/18.92 37.19/18.92 From the DPs we obtained the following set of size-change graphs: 37.19/18.92 *new_primPlusNat(Succ(xwv16200), Succ(xwv13700)) -> new_primPlusNat(xwv16200, xwv13700) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2 37.19/18.92 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (37) 37.19/18.92 YES 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (38) 37.19/18.92 Obligation: 37.19/18.92 Q DP problem: 37.19/18.92 The TRS P consists of the following rules: 37.19/18.92 37.19/18.92 new_glueBal2Mid_key10(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv306, xwv307, xwv308, xwv309, Branch(xwv3100, xwv3101, xwv3102, xwv3103, xwv3104), h, ba) -> new_glueBal2Mid_key10(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv3100, xwv3101, xwv3102, xwv3103, xwv3104, h, ba) 37.19/18.92 37.19/18.92 R is empty. 37.19/18.92 Q is empty. 37.19/18.92 We have to consider all minimal (P,Q,R)-chains. 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (39) QDPSizeChangeProof (EQUIVALENT) 37.19/18.92 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. 37.19/18.92 37.19/18.92 From the DPs we obtained the following set of size-change graphs: 37.19/18.92 *new_glueBal2Mid_key10(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv306, xwv307, xwv308, xwv309, Branch(xwv3100, xwv3101, xwv3102, xwv3103, xwv3104), h, ba) -> new_glueBal2Mid_key10(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv3100, xwv3101, xwv3102, xwv3103, xwv3104, h, ba) 37.19/18.92 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 37.19/18.92 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (40) 37.19/18.92 YES 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (41) 37.19/18.92 Obligation: 37.19/18.92 Q DP problem: 37.19/18.92 The TRS P consists of the following rules: 37.19/18.92 37.19/18.92 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), ga, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs2(xwv281, xwv331, gg, gh, ha) 37.19/18.92 new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, app(app(ty_@2, bbb), bbc), he) -> new_esEs1(xwv281, xwv331, bbb, bbc) 37.19/18.92 new_esEs0(Left(xwv280), Left(xwv330), app(app(ty_@2, ce), cf), cb) -> new_esEs1(xwv280, xwv330, ce, cf) 37.19/18.92 new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, hd, app(app(ty_@2, bcc), bcd)) -> new_esEs1(xwv282, xwv332, bcc, bcd) 37.19/18.92 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), ga, app(app(ty_Either, gc), gd)) -> new_esEs0(xwv281, xwv331, gc, gd) 37.19/18.92 new_esEs0(Left(xwv280), Left(xwv330), app(ty_Maybe, ca), cb) -> new_esEs(xwv280, xwv330, ca) 37.19/18.92 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(ty_Either, eh), fa), eg) -> new_esEs0(xwv280, xwv330, eh, fa) 37.19/18.92 new_esEs3(:(xwv280, xwv281), :(xwv330, xwv331), app(ty_Maybe, bda)) -> new_esEs(xwv280, xwv330, bda) 37.19/18.92 new_esEs0(Right(xwv280), Right(xwv330), dd, app(ty_[], ee)) -> new_esEs3(xwv280, xwv330, ee) 37.19/18.92 new_esEs(Just(xwv280), Just(xwv330), app(app(ty_@2, bc), bd)) -> new_esEs1(xwv280, xwv330, bc, bd) 37.19/18.92 new_esEs0(Right(xwv280), Right(xwv330), dd, app(app(ty_Either, df), dg)) -> new_esEs0(xwv280, xwv330, df, dg) 37.19/18.92 new_esEs(Just(xwv280), Just(xwv330), app(ty_[], bh)) -> new_esEs3(xwv280, xwv330, bh) 37.19/18.92 new_esEs3(:(xwv280, xwv281), :(xwv330, xwv331), app(ty_[], bea)) -> new_esEs3(xwv280, xwv330, bea) 37.19/18.92 new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, hd, app(ty_[], bch)) -> new_esEs3(xwv282, xwv332, bch) 37.19/18.92 new_esEs(Just(xwv280), Just(xwv330), app(ty_Maybe, h)) -> new_esEs(xwv280, xwv330, h) 37.19/18.92 new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, app(ty_[], bbg), he) -> new_esEs3(xwv281, xwv331, bbg) 37.19/18.92 new_esEs0(Left(xwv280), Left(xwv330), app(app(app(ty_@3, cg), da), db), cb) -> new_esEs2(xwv280, xwv330, cg, da, db) 37.19/18.92 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(ty_[], fh), eg) -> new_esEs3(xwv280, xwv330, fh) 37.19/18.92 new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, app(app(app(ty_@3, bbd), bbe), bbf), he) -> new_esEs2(xwv281, xwv331, bbd, bbe, bbf) 37.19/18.92 new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(app(ty_@3, bab), bac), bad), hd, he) -> new_esEs2(xwv280, xwv330, bab, bac, bad) 37.19/18.92 new_esEs3(:(xwv280, xwv281), :(xwv330, xwv331), app(app(ty_@2, bdd), bde)) -> new_esEs1(xwv280, xwv330, bdd, bde) 37.19/18.92 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), ga, app(ty_[], hb)) -> new_esEs3(xwv281, xwv331, hb) 37.19/18.92 new_esEs0(Left(xwv280), Left(xwv330), app(ty_[], dc), cb) -> new_esEs3(xwv280, xwv330, dc) 37.19/18.92 new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, app(app(ty_Either, bah), bba), he) -> new_esEs0(xwv281, xwv331, bah, bba) 37.19/18.92 new_esEs0(Left(xwv280), Left(xwv330), app(app(ty_Either, cc), cd), cb) -> new_esEs0(xwv280, xwv330, cc, cd) 37.19/18.92 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(ty_Maybe, ef), eg) -> new_esEs(xwv280, xwv330, ef) 37.19/18.92 new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, hd, app(app(ty_Either, bca), bcb)) -> new_esEs0(xwv282, xwv332, bca, bcb) 37.19/18.92 new_esEs3(:(xwv280, xwv281), :(xwv330, xwv331), beb) -> new_esEs3(xwv281, xwv331, beb) 37.19/18.92 new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(ty_Either, hf), hg), hd, he) -> new_esEs0(xwv280, xwv330, hf, hg) 37.19/18.92 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), ga, app(ty_Maybe, gb)) -> new_esEs(xwv281, xwv331, gb) 37.19/18.92 new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(ty_[], bae), hd, he) -> new_esEs3(xwv280, xwv330, bae) 37.19/18.92 new_esEs(Just(xwv280), Just(xwv330), app(app(ty_Either, ba), bb)) -> new_esEs0(xwv280, xwv330, ba, bb) 37.19/18.92 new_esEs0(Right(xwv280), Right(xwv330), dd, app(app(ty_@2, dh), ea)) -> new_esEs1(xwv280, xwv330, dh, ea) 37.19/18.92 new_esEs3(:(xwv280, xwv281), :(xwv330, xwv331), app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(xwv280, xwv330, bdf, bdg, bdh) 37.19/18.92 new_esEs(Just(xwv280), Just(xwv330), app(app(app(ty_@3, be), bf), bg)) -> new_esEs2(xwv280, xwv330, be, bf, bg) 37.19/18.92 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(app(ty_@3, fd), ff), fg), eg) -> new_esEs2(xwv280, xwv330, fd, ff, fg) 37.19/18.92 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(ty_@2, fb), fc), eg) -> new_esEs1(xwv280, xwv330, fb, fc) 37.19/18.92 new_esEs0(Right(xwv280), Right(xwv330), dd, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(xwv280, xwv330, eb, ec, ed) 37.19/18.92 new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, hd, app(ty_Maybe, bbh)) -> new_esEs(xwv282, xwv332, bbh) 37.19/18.92 new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, hd, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs2(xwv282, xwv332, bce, bcf, bcg) 37.19/18.92 new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, app(ty_Maybe, bag), he) -> new_esEs(xwv281, xwv331, bag) 37.19/18.92 new_esEs3(:(xwv280, xwv281), :(xwv330, xwv331), app(app(ty_Either, bdb), bdc)) -> new_esEs0(xwv280, xwv330, bdb, bdc) 37.19/18.92 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), ga, app(app(ty_@2, ge), gf)) -> new_esEs1(xwv281, xwv331, ge, gf) 37.19/18.92 new_esEs0(Right(xwv280), Right(xwv330), dd, app(ty_Maybe, de)) -> new_esEs(xwv280, xwv330, de) 37.19/18.92 new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(ty_Maybe, hc), hd, he) -> new_esEs(xwv280, xwv330, hc) 37.19/18.92 new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(ty_@2, hh), baa), hd, he) -> new_esEs1(xwv280, xwv330, hh, baa) 37.19/18.92 37.19/18.92 R is empty. 37.19/18.92 Q is empty. 37.19/18.92 We have to consider all minimal (P,Q,R)-chains. 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (42) QDPSizeChangeProof (EQUIVALENT) 37.19/18.92 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. 37.19/18.92 37.19/18.92 From the DPs we obtained the following set of size-change graphs: 37.19/18.92 *new_esEs(Just(xwv280), Just(xwv330), app(app(ty_@2, bc), bd)) -> new_esEs1(xwv280, xwv330, bc, bd) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs3(:(xwv280, xwv281), :(xwv330, xwv331), app(app(ty_@2, bdd), bde)) -> new_esEs1(xwv280, xwv330, bdd, bde) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs(Just(xwv280), Just(xwv330), app(app(app(ty_@3, be), bf), bg)) -> new_esEs2(xwv280, xwv330, be, bf, bg) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs3(:(xwv280, xwv281), :(xwv330, xwv331), app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(xwv280, xwv330, bdf, bdg, bdh) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs(Just(xwv280), Just(xwv330), app(app(ty_Either, ba), bb)) -> new_esEs0(xwv280, xwv330, ba, bb) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs3(:(xwv280, xwv281), :(xwv330, xwv331), app(app(ty_Either, bdb), bdc)) -> new_esEs0(xwv280, xwv330, bdb, bdc) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs(Just(xwv280), Just(xwv330), app(ty_[], bh)) -> new_esEs3(xwv280, xwv330, bh) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs(Just(xwv280), Just(xwv330), app(ty_Maybe, h)) -> new_esEs(xwv280, xwv330, h) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs3(:(xwv280, xwv281), :(xwv330, xwv331), app(ty_Maybe, bda)) -> new_esEs(xwv280, xwv330, bda) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, app(app(ty_@2, bbb), bbc), he) -> new_esEs1(xwv281, xwv331, bbb, bbc) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, hd, app(app(ty_@2, bcc), bcd)) -> new_esEs1(xwv282, xwv332, bcc, bcd) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(ty_@2, hh), baa), hd, he) -> new_esEs1(xwv280, xwv330, hh, baa) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, app(app(app(ty_@3, bbd), bbe), bbf), he) -> new_esEs2(xwv281, xwv331, bbd, bbe, bbf) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(app(ty_@3, bab), bac), bad), hd, he) -> new_esEs2(xwv280, xwv330, bab, bac, bad) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, hd, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs2(xwv282, xwv332, bce, bcf, bcg) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, app(app(ty_Either, bah), bba), he) -> new_esEs0(xwv281, xwv331, bah, bba) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, hd, app(app(ty_Either, bca), bcb)) -> new_esEs0(xwv282, xwv332, bca, bcb) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(ty_Either, hf), hg), hd, he) -> new_esEs0(xwv280, xwv330, hf, hg) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, hd, app(ty_[], bch)) -> new_esEs3(xwv282, xwv332, bch) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, app(ty_[], bbg), he) -> new_esEs3(xwv281, xwv331, bbg) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(ty_[], bae), hd, he) -> new_esEs3(xwv280, xwv330, bae) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, hd, app(ty_Maybe, bbh)) -> new_esEs(xwv282, xwv332, bbh) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), baf, app(ty_Maybe, bag), he) -> new_esEs(xwv281, xwv331, bag) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(ty_Maybe, hc), hd, he) -> new_esEs(xwv280, xwv330, hc) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(ty_@2, fb), fc), eg) -> new_esEs1(xwv280, xwv330, fb, fc) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), ga, app(app(ty_@2, ge), gf)) -> new_esEs1(xwv281, xwv331, ge, gf) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs0(Left(xwv280), Left(xwv330), app(app(ty_@2, ce), cf), cb) -> new_esEs1(xwv280, xwv330, ce, cf) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs0(Right(xwv280), Right(xwv330), dd, app(app(ty_@2, dh), ea)) -> new_esEs1(xwv280, xwv330, dh, ea) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), ga, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs2(xwv281, xwv331, gg, gh, ha) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(app(ty_@3, fd), ff), fg), eg) -> new_esEs2(xwv280, xwv330, fd, ff, fg) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), ga, app(app(ty_Either, gc), gd)) -> new_esEs0(xwv281, xwv331, gc, gd) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(ty_Either, eh), fa), eg) -> new_esEs0(xwv280, xwv330, eh, fa) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(ty_[], fh), eg) -> new_esEs3(xwv280, xwv330, fh) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), ga, app(ty_[], hb)) -> new_esEs3(xwv281, xwv331, hb) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(ty_Maybe, ef), eg) -> new_esEs(xwv280, xwv330, ef) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), ga, app(ty_Maybe, gb)) -> new_esEs(xwv281, xwv331, gb) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs0(Left(xwv280), Left(xwv330), app(app(app(ty_@3, cg), da), db), cb) -> new_esEs2(xwv280, xwv330, cg, da, db) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs0(Right(xwv280), Right(xwv330), dd, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(xwv280, xwv330, eb, ec, ed) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs0(Right(xwv280), Right(xwv330), dd, app(app(ty_Either, df), dg)) -> new_esEs0(xwv280, xwv330, df, dg) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs0(Left(xwv280), Left(xwv330), app(app(ty_Either, cc), cd), cb) -> new_esEs0(xwv280, xwv330, cc, cd) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs0(Right(xwv280), Right(xwv330), dd, app(ty_[], ee)) -> new_esEs3(xwv280, xwv330, ee) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs0(Left(xwv280), Left(xwv330), app(ty_[], dc), cb) -> new_esEs3(xwv280, xwv330, dc) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs0(Left(xwv280), Left(xwv330), app(ty_Maybe, ca), cb) -> new_esEs(xwv280, xwv330, ca) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs0(Right(xwv280), Right(xwv330), dd, app(ty_Maybe, de)) -> new_esEs(xwv280, xwv330, de) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs3(:(xwv280, xwv281), :(xwv330, xwv331), app(ty_[], bea)) -> new_esEs3(xwv280, xwv330, bea) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 37.19/18.92 37.19/18.92 37.19/18.92 *new_esEs3(:(xwv280, xwv281), :(xwv330, xwv331), beb) -> new_esEs3(xwv281, xwv331, beb) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 37.19/18.92 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (43) 37.19/18.92 YES 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (44) 37.19/18.92 Obligation: 37.19/18.92 Q DP problem: 37.19/18.92 The TRS P consists of the following rules: 37.19/18.92 37.19/18.92 new_deleteMin(xwv520, xwv521, xwv522, Branch(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234), xwv524, h, ba) -> new_deleteMin(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234, h, ba) 37.19/18.92 37.19/18.92 R is empty. 37.19/18.92 Q is empty. 37.19/18.92 We have to consider all minimal (P,Q,R)-chains. 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (45) QDPSizeChangeProof (EQUIVALENT) 37.19/18.92 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. 37.19/18.92 37.19/18.92 From the DPs we obtained the following set of size-change graphs: 37.19/18.92 *new_deleteMin(xwv520, xwv521, xwv522, Branch(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234), xwv524, h, ba) -> new_deleteMin(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234, h, ba) 37.19/18.92 The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 6 >= 6, 7 >= 7 37.19/18.92 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (46) 37.19/18.92 YES 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (47) 37.19/18.92 Obligation: 37.19/18.92 Q DP problem: 37.19/18.92 The TRS P consists of the following rules: 37.19/18.92 37.19/18.92 new_glueBal2Mid_elt20(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv258, xwv259, xwv260, Branch(xwv2610, xwv2611, xwv2612, xwv2613, xwv2614), xwv262, h, ba) -> new_glueBal2Mid_elt20(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv2610, xwv2611, xwv2612, xwv2613, xwv2614, h, ba) 37.19/18.92 37.19/18.92 R is empty. 37.19/18.92 Q is empty. 37.19/18.92 We have to consider all minimal (P,Q,R)-chains. 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (48) QDPSizeChangeProof (EQUIVALENT) 37.19/18.92 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. 37.19/18.92 37.19/18.92 From the DPs we obtained the following set of size-change graphs: 37.19/18.92 *new_glueBal2Mid_elt20(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv258, xwv259, xwv260, Branch(xwv2610, xwv2611, xwv2612, xwv2613, xwv2614), xwv262, h, ba) -> new_glueBal2Mid_elt20(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv2610, xwv2611, xwv2612, xwv2613, xwv2614, h, ba) 37.19/18.92 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 37.19/18.92 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (49) 37.19/18.92 YES 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (50) 37.19/18.92 Obligation: 37.19/18.92 Q DP problem: 37.19/18.92 The TRS P consists of the following rules: 37.19/18.92 37.19/18.92 new_glueBal2Mid_key20(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv274, xwv275, xwv276, Branch(xwv2770, xwv2771, xwv2772, xwv2773, xwv2774), xwv278, h, ba) -> new_glueBal2Mid_key20(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv2770, xwv2771, xwv2772, xwv2773, xwv2774, h, ba) 37.19/18.92 37.19/18.92 R is empty. 37.19/18.92 Q is empty. 37.19/18.92 We have to consider all minimal (P,Q,R)-chains. 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (51) QDPSizeChangeProof (EQUIVALENT) 37.19/18.92 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. 37.19/18.92 37.19/18.92 From the DPs we obtained the following set of size-change graphs: 37.19/18.92 *new_glueBal2Mid_key20(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv274, xwv275, xwv276, Branch(xwv2770, xwv2771, xwv2772, xwv2773, xwv2774), xwv278, h, ba) -> new_glueBal2Mid_key20(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv2770, xwv2771, xwv2772, xwv2773, xwv2774, h, ba) 37.19/18.92 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 37.19/18.92 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (52) 37.19/18.92 YES 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (53) 37.19/18.92 Obligation: 37.19/18.92 Q DP problem: 37.19/18.92 The TRS P consists of the following rules: 37.19/18.92 37.19/18.92 new_deleteMax(xwv510, xwv511, xwv512, xwv513, Branch(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144), h, ba) -> new_deleteMax(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144, h, ba) 37.19/18.92 37.19/18.92 R is empty. 37.19/18.92 Q is empty. 37.19/18.92 We have to consider all minimal (P,Q,R)-chains. 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (54) QDPSizeChangeProof (EQUIVALENT) 37.19/18.92 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. 37.19/18.92 37.19/18.92 From the DPs we obtained the following set of size-change graphs: 37.19/18.92 *new_deleteMax(xwv510, xwv511, xwv512, xwv513, Branch(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144), h, ba) -> new_deleteMax(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144, h, ba) 37.19/18.92 The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 6 >= 6, 7 >= 7 37.19/18.92 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (55) 37.19/18.92 YES 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (56) 37.19/18.92 Obligation: 37.19/18.92 Q DP problem: 37.19/18.92 The TRS P consists of the following rules: 37.19/18.92 37.19/18.92 new_glueBal2Mid_elt10(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv290, xwv291, xwv292, xwv293, Branch(xwv2940, xwv2941, xwv2942, xwv2943, xwv2944), h, ba) -> new_glueBal2Mid_elt10(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv2940, xwv2941, xwv2942, xwv2943, xwv2944, h, ba) 37.19/18.92 37.19/18.92 R is empty. 37.19/18.92 Q is empty. 37.19/18.92 We have to consider all minimal (P,Q,R)-chains. 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (57) QDPSizeChangeProof (EQUIVALENT) 37.19/18.92 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. 37.19/18.92 37.19/18.92 From the DPs we obtained the following set of size-change graphs: 37.19/18.92 *new_glueBal2Mid_elt10(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv290, xwv291, xwv292, xwv293, Branch(xwv2940, xwv2941, xwv2942, xwv2943, xwv2944), h, ba) -> new_glueBal2Mid_elt10(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv2940, xwv2941, xwv2942, xwv2943, xwv2944, h, ba) 37.19/18.92 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 37.19/18.92 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (58) 37.19/18.92 YES 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (59) 37.19/18.92 Obligation: 37.19/18.92 Q DP problem: 37.19/18.92 The TRS P consists of the following rules: 37.19/18.92 37.19/18.92 new_primEqNat(Succ(xwv2800), Succ(xwv3300)) -> new_primEqNat(xwv2800, xwv3300) 37.19/18.92 37.19/18.92 R is empty. 37.19/18.92 Q is empty. 37.19/18.92 We have to consider all minimal (P,Q,R)-chains. 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (60) QDPSizeChangeProof (EQUIVALENT) 37.19/18.92 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. 37.19/18.92 37.19/18.92 From the DPs we obtained the following set of size-change graphs: 37.19/18.92 *new_primEqNat(Succ(xwv2800), Succ(xwv3300)) -> new_primEqNat(xwv2800, xwv3300) 37.19/18.92 The graph contains the following edges 1 > 1, 2 > 2 37.19/18.92 37.19/18.92 37.19/18.92 ---------------------------------------- 37.19/18.92 37.19/18.92 (61) 37.19/18.92 YES 37.29/18.96 EOF