25.47/11.04 YES 28.36/11.76 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 28.36/11.76 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 28.36/11.76 28.36/11.76 28.36/11.76 H-Termination with start terms of the given HASKELL could be proven: 28.36/11.76 28.36/11.76 (0) HASKELL 28.36/11.76 (1) LR [EQUIVALENT, 0 ms] 28.36/11.76 (2) HASKELL 28.36/11.76 (3) CR [EQUIVALENT, 0 ms] 28.36/11.76 (4) HASKELL 28.36/11.76 (5) IFR [EQUIVALENT, 0 ms] 28.36/11.76 (6) HASKELL 28.36/11.76 (7) BR [EQUIVALENT, 0 ms] 28.36/11.76 (8) HASKELL 28.36/11.76 (9) COR [EQUIVALENT, 0 ms] 28.36/11.76 (10) HASKELL 28.36/11.76 (11) LetRed [EQUIVALENT, 0 ms] 28.36/11.76 (12) HASKELL 28.36/11.76 (13) NumRed [SOUND, 0 ms] 28.36/11.76 (14) HASKELL 28.36/11.76 (15) Narrow [SOUND, 0 ms] 28.36/11.76 (16) AND 28.36/11.76 (17) QDP 28.36/11.76 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.36/11.76 (19) YES 28.36/11.76 (20) QDP 28.36/11.76 (21) QDPSizeChangeProof [EQUIVALENT, 3 ms] 28.36/11.76 (22) YES 28.36/11.76 (23) QDP 28.36/11.76 (24) QDPSizeChangeProof [EQUIVALENT, 68 ms] 28.36/11.76 (25) YES 28.36/11.76 (26) QDP 28.36/11.76 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.36/11.76 (28) YES 28.36/11.76 (29) QDP 28.36/11.76 (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.36/11.76 (31) YES 28.36/11.76 (32) QDP 28.36/11.76 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.36/11.76 (34) YES 28.36/11.76 (35) QDP 28.36/11.76 (36) TransformationProof [EQUIVALENT, 1526 ms] 28.36/11.76 (37) QDP 28.36/11.76 (38) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.36/11.76 (39) YES 28.36/11.76 (40) QDP 28.36/11.76 (41) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.36/11.76 (42) YES 28.36/11.76 (43) QDP 28.36/11.76 (44) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.36/11.76 (45) YES 28.36/11.76 (46) QDP 28.36/11.76 (47) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.36/11.76 (48) YES 28.36/11.76 (49) QDP 28.36/11.76 (50) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.36/11.76 (51) YES 28.36/11.76 (52) QDP 28.36/11.76 (53) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.36/11.76 (54) YES 28.36/11.76 (55) QDP 28.36/11.76 (56) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.36/11.76 (57) YES 28.36/11.76 (58) QDP 28.36/11.76 (59) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.36/11.76 (60) YES 28.36/11.76 28.36/11.76 28.36/11.76 ---------------------------------------- 28.36/11.76 28.36/11.76 (0) 28.36/11.76 Obligation: 28.36/11.76 mainModule Main 28.36/11.76 module FiniteMap where { 28.36/11.76 import qualified Main; 28.36/11.76 import qualified Maybe; 28.36/11.76 import qualified Prelude; 28.36/11.76 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 28.36/11.76 28.36/11.76 instance (Eq a, Eq b) => Eq FiniteMap b a where { 28.36/11.76 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.36/11.76 } 28.36/11.76 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 28.36/11.76 delFromFM EmptyFM del_key = emptyFM; 28.36/11.76 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 28.36/11.76 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 28.36/11.76 | key == del_key = glueBal fm_l fm_r; 28.36/11.76 28.36/11.76 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 28.36/11.76 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 28.36/11.76 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 28.36/11.76 28.36/11.76 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 28.36/11.76 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 28.36/11.76 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 28.36/11.76 28.36/11.76 emptyFM :: FiniteMap a b; 28.36/11.76 emptyFM = EmptyFM; 28.36/11.76 28.36/11.76 findMax :: FiniteMap a b -> (a,b); 28.36/11.76 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 28.36/11.76 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 28.36/11.76 28.36/11.76 findMin :: FiniteMap a b -> (a,b); 28.36/11.76 findMin (Branch key elt _ EmptyFM _) = (key,elt); 28.36/11.76 findMin (Branch key elt _ fm_l _) = findMin fm_l; 28.36/11.76 28.36/11.76 fmToList :: FiniteMap b a -> [(b,a)]; 28.36/11.76 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 28.36/11.76 28.36/11.76 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 28.36/11.76 foldFM k z EmptyFM = z; 28.36/11.76 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.36/11.76 28.36/11.76 glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.36/11.76 glueBal EmptyFM fm2 = fm2; 28.36/11.76 glueBal fm1 EmptyFM = fm1; 28.36/11.76 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 28.36/11.76 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 28.36/11.76 mid_elt1 = (\(_,mid_elt1) ->mid_elt1) vv2; 28.36/11.76 mid_elt2 = (\(_,mid_elt2) ->mid_elt2) vv3; 28.36/11.76 mid_key1 = (\(mid_key1,_) ->mid_key1) vv2; 28.36/11.76 mid_key2 = (\(mid_key2,_) ->mid_key2) vv3; 28.36/11.76 vv2 = findMax fm1; 28.36/11.76 vv3 = findMin fm2; 28.36/11.76 }; 28.36/11.76 28.36/11.76 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.36/11.76 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 28.36/11.77 | size_r > sIZE_RATIO * size_l = case fm_R of { 28.36/11.77 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 28.36/11.77 | otherwise -> double_L fm_L fm_R; 28.36/11.77 } 28.36/11.77 | size_l > sIZE_RATIO * size_r = case fm_L of { 28.36/11.77 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 28.36/11.77 | otherwise -> double_R fm_L fm_R; 28.36/11.77 } 28.36/11.77 | otherwise = mkBranch 2 key elt fm_L fm_R where { 28.36/11.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); 28.36/11.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); 28.36/11.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; 28.36/11.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); 28.36/11.77 size_l = sizeFM fm_L; 28.36/11.77 size_r = sizeFM fm_R; 28.36/11.77 }; 28.36/11.77 28.36/11.77 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 28.36/11.77 mkBranch which key elt fm_l fm_r = let { 28.36/11.77 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 28.36/11.77 } in result where { 28.36/11.77 balance_ok = True; 28.36/11.77 left_ok = case fm_l of { 28.36/11.77 EmptyFM-> True; 28.36/11.77 Branch left_key _ _ _ _-> let { 28.36/11.77 biggest_left_key = fst (findMax fm_l); 28.36/11.77 } in biggest_left_key < key; 28.36/11.77 } ; 28.36/11.77 left_size = sizeFM fm_l; 28.36/11.77 right_ok = case fm_r of { 28.36/11.77 EmptyFM-> True; 28.36/11.77 Branch right_key _ _ _ _-> let { 28.36/11.77 smallest_right_key = fst (findMin fm_r); 28.36/11.77 } in key < smallest_right_key; 28.36/11.77 } ; 28.36/11.77 right_size = sizeFM fm_r; 28.36/11.77 unbox :: Int -> Int; 28.36/11.77 unbox x = x; 28.36/11.77 }; 28.36/11.77 28.36/11.77 sIZE_RATIO :: Int; 28.36/11.77 sIZE_RATIO = 5; 28.36/11.77 28.36/11.77 sizeFM :: FiniteMap b a -> Int; 28.36/11.77 sizeFM EmptyFM = 0; 28.36/11.77 sizeFM (Branch _ _ size _ _) = size; 28.36/11.77 28.36/11.77 } 28.36/11.77 module Maybe where { 28.36/11.77 import qualified FiniteMap; 28.36/11.77 import qualified Main; 28.36/11.77 import qualified Prelude; 28.36/11.77 } 28.36/11.77 module Main where { 28.36/11.77 import qualified FiniteMap; 28.36/11.77 import qualified Maybe; 28.36/11.77 import qualified Prelude; 28.36/11.77 } 28.36/11.77 28.36/11.77 ---------------------------------------- 28.36/11.77 28.36/11.77 (1) LR (EQUIVALENT) 28.36/11.77 Lambda Reductions: 28.36/11.77 The following Lambda expression 28.36/11.77 "\(_,mid_elt2)->mid_elt2" 28.36/11.77 is transformed to 28.36/11.77 "mid_elt20 (_,mid_elt2) = mid_elt2; 28.36/11.77 " 28.36/11.77 The following Lambda expression 28.36/11.77 "\(mid_key2,_)->mid_key2" 28.36/11.77 is transformed to 28.36/11.77 "mid_key20 (mid_key2,_) = mid_key2; 28.36/11.77 " 28.36/11.77 The following Lambda expression 28.36/11.77 "\(mid_key1,_)->mid_key1" 28.36/11.77 is transformed to 28.36/11.77 "mid_key10 (mid_key1,_) = mid_key1; 28.36/11.77 " 28.36/11.77 The following Lambda expression 28.36/11.77 "\(_,mid_elt1)->mid_elt1" 28.36/11.77 is transformed to 28.36/11.77 "mid_elt10 (_,mid_elt1) = mid_elt1; 28.36/11.77 " 28.36/11.77 The following Lambda expression 28.36/11.77 "\keyeltrest->(key,elt) : rest" 28.36/11.77 is transformed to 28.36/11.77 "fmToList0 key elt rest = (key,elt) : rest; 28.36/11.77 " 28.36/11.77 28.36/11.77 ---------------------------------------- 28.36/11.77 28.36/11.77 (2) 28.36/11.77 Obligation: 28.36/11.77 mainModule Main 28.36/11.77 module FiniteMap where { 28.36/11.77 import qualified Main; 28.36/11.77 import qualified Maybe; 28.36/11.77 import qualified Prelude; 28.36/11.77 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 28.36/11.77 28.36/11.77 instance (Eq a, Eq b) => Eq FiniteMap b a where { 28.36/11.77 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.36/11.77 } 28.36/11.77 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 28.36/11.77 delFromFM EmptyFM del_key = emptyFM; 28.36/11.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) 28.36/11.77 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 28.36/11.77 | key == del_key = glueBal fm_l fm_r; 28.36/11.77 28.36/11.77 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 28.36/11.77 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 28.36/11.77 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 28.36/11.77 28.36/11.77 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 28.36/11.77 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 28.36/11.77 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 28.36/11.77 28.36/11.77 emptyFM :: FiniteMap b a; 28.36/11.77 emptyFM = EmptyFM; 28.36/11.77 28.36/11.77 findMax :: FiniteMap a b -> (a,b); 28.36/11.77 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 28.36/11.77 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 28.36/11.77 28.36/11.77 findMin :: FiniteMap b a -> (b,a); 28.36/11.77 findMin (Branch key elt _ EmptyFM _) = (key,elt); 28.36/11.78 findMin (Branch key elt _ fm_l _) = findMin fm_l; 28.36/11.78 28.36/11.78 fmToList :: FiniteMap a b -> [(a,b)]; 28.36/11.78 fmToList fm = foldFM fmToList0 [] fm; 28.36/11.78 28.36/11.78 fmToList0 key elt rest = (key,elt) : rest; 28.36/11.78 28.36/11.78 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 28.36/11.78 foldFM k z EmptyFM = z; 28.36/11.78 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.36/11.78 28.36/11.78 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 28.36/11.78 glueBal EmptyFM fm2 = fm2; 28.36/11.78 glueBal fm1 EmptyFM = fm1; 28.36/11.78 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 28.36/11.78 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 28.36/11.78 mid_elt1 = mid_elt10 vv2; 28.36/11.78 mid_elt10 (_,mid_elt1) = mid_elt1; 28.36/11.78 mid_elt2 = mid_elt20 vv3; 28.36/11.78 mid_elt20 (_,mid_elt2) = mid_elt2; 28.36/11.78 mid_key1 = mid_key10 vv2; 28.36/11.78 mid_key10 (mid_key1,_) = mid_key1; 28.36/11.78 mid_key2 = mid_key20 vv3; 28.36/11.78 mid_key20 (mid_key2,_) = mid_key2; 28.36/11.78 vv2 = findMax fm1; 28.36/11.78 vv3 = findMin fm2; 28.36/11.78 }; 28.36/11.78 28.36/11.78 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 28.36/11.78 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 28.36/11.78 | size_r > sIZE_RATIO * size_l = case fm_R of { 28.36/11.78 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 28.36/11.78 | otherwise -> double_L fm_L fm_R; 28.36/11.78 } 28.36/11.78 | size_l > sIZE_RATIO * size_r = case fm_L of { 28.36/11.78 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 28.36/11.78 | otherwise -> double_R fm_L fm_R; 28.36/11.78 } 28.36/11.78 | otherwise = mkBranch 2 key elt fm_L fm_R where { 28.36/11.78 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 28.36/11.78 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 28.36/11.78 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 28.36/11.78 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 28.36/11.78 size_l = sizeFM fm_L; 28.36/11.78 size_r = sizeFM fm_R; 28.36/11.78 }; 28.36/11.78 28.36/11.78 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 28.36/11.78 mkBranch which key elt fm_l fm_r = let { 28.36/11.78 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 28.36/11.78 } in result where { 28.36/11.78 balance_ok = True; 28.36/11.78 left_ok = case fm_l of { 28.36/11.78 EmptyFM-> True; 28.36/11.78 Branch left_key _ _ _ _-> let { 28.36/11.78 biggest_left_key = fst (findMax fm_l); 28.36/11.78 } in biggest_left_key < key; 28.36/11.78 } ; 28.36/11.78 left_size = sizeFM fm_l; 28.36/11.78 right_ok = case fm_r of { 28.36/11.78 EmptyFM-> True; 28.36/11.78 Branch right_key _ _ _ _-> let { 28.36/11.78 smallest_right_key = fst (findMin fm_r); 28.36/11.78 } in key < smallest_right_key; 28.36/11.78 } ; 28.36/11.78 right_size = sizeFM fm_r; 28.36/11.78 unbox :: Int -> Int; 28.36/11.78 unbox x = x; 28.36/11.78 }; 28.36/11.78 28.36/11.78 sIZE_RATIO :: Int; 28.36/11.78 sIZE_RATIO = 5; 28.36/11.78 28.36/11.78 sizeFM :: FiniteMap a b -> Int; 28.36/11.78 sizeFM EmptyFM = 0; 28.36/11.78 sizeFM (Branch _ _ size _ _) = size; 28.36/11.78 28.36/11.78 } 28.36/11.78 module Maybe where { 28.36/11.78 import qualified FiniteMap; 28.36/11.78 import qualified Main; 28.36/11.78 import qualified Prelude; 28.36/11.78 } 28.36/11.78 module Main where { 28.36/11.78 import qualified FiniteMap; 28.36/11.78 import qualified Maybe; 28.36/11.78 import qualified Prelude; 28.36/11.78 } 28.36/11.78 28.36/11.78 ---------------------------------------- 28.36/11.78 28.36/11.78 (3) CR (EQUIVALENT) 28.36/11.78 Case Reductions: 28.36/11.78 The following Case expression 28.36/11.78 "case compare x y of { 28.36/11.78 EQ -> o; 28.36/11.78 LT -> LT; 28.36/11.78 GT -> GT} 28.36/11.78 " 28.36/11.78 is transformed to 28.36/11.78 "primCompAux0 o EQ = o; 28.36/11.78 primCompAux0 o LT = LT; 28.36/11.78 primCompAux0 o GT = GT; 28.36/11.78 " 28.36/11.78 The following Case expression 28.36/11.78 "case fm_r of { 28.36/11.78 EmptyFM -> True; 28.36/11.78 Branch right_key _ _ _ _ -> let { 28.36/11.78 smallest_right_key = fst (findMin fm_r); 28.36/11.78 } in key < smallest_right_key} 28.36/11.78 " 28.36/11.78 is transformed to 28.36/11.78 "right_ok0 fm_r key EmptyFM = True; 28.36/11.78 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 28.36/11.78 smallest_right_key = fst (findMin fm_r); 28.36/11.78 } in key < smallest_right_key; 28.36/11.78 " 28.36/11.78 The following Case expression 28.36/11.78 "case fm_l of { 28.36/11.78 EmptyFM -> True; 28.36/11.78 Branch left_key _ _ _ _ -> let { 28.36/11.78 biggest_left_key = fst (findMax fm_l); 28.36/11.78 } in biggest_left_key < key} 28.36/11.78 " 28.36/11.78 is transformed to 28.36/11.78 "left_ok0 fm_l key EmptyFM = True; 28.36/11.78 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 28.36/11.78 biggest_left_key = fst (findMax fm_l); 28.36/11.78 } in biggest_left_key < key; 28.36/11.78 " 28.36/11.78 The following Case expression 28.36/11.78 "case fm_R of { 28.36/11.78 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 28.36/11.78 " 28.36/11.78 is transformed to 28.36/11.78 "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; 28.36/11.78 " 28.36/11.78 The following Case expression 28.36/11.78 "case fm_L of { 28.36/11.78 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 28.36/11.78 " 28.36/11.78 is transformed to 28.36/11.78 "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; 28.36/11.78 " 28.36/11.78 28.36/11.78 ---------------------------------------- 28.36/11.78 28.36/11.78 (4) 28.36/11.78 Obligation: 28.36/11.78 mainModule Main 28.36/11.78 module FiniteMap where { 28.36/11.78 import qualified Main; 28.36/11.78 import qualified Maybe; 28.36/11.78 import qualified Prelude; 28.36/11.78 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 28.36/11.78 28.36/11.78 instance (Eq a, Eq b) => Eq FiniteMap a b where { 28.36/11.78 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.36/11.78 } 28.36/11.78 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 28.36/11.78 delFromFM EmptyFM del_key = emptyFM; 28.36/11.78 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 28.36/11.78 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 28.36/11.78 | key == del_key = glueBal fm_l fm_r; 28.36/11.78 28.36/11.78 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 28.36/11.78 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 28.36/11.78 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 28.36/11.78 28.36/11.78 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 28.36/11.78 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 28.36/11.78 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 28.36/11.78 28.36/11.78 emptyFM :: FiniteMap a b; 28.36/11.78 emptyFM = EmptyFM; 28.36/11.78 28.36/11.78 findMax :: FiniteMap b a -> (b,a); 28.36/11.78 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 28.36/11.78 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 28.36/11.78 28.36/11.78 findMin :: FiniteMap b a -> (b,a); 28.36/11.78 findMin (Branch key elt _ EmptyFM _) = (key,elt); 28.36/11.78 findMin (Branch key elt _ fm_l _) = findMin fm_l; 28.36/11.78 28.36/11.78 fmToList :: FiniteMap b a -> [(b,a)]; 28.36/11.78 fmToList fm = foldFM fmToList0 [] fm; 28.36/11.78 28.36/11.78 fmToList0 key elt rest = (key,elt) : rest; 28.36/11.78 28.36/11.78 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 28.36/11.78 foldFM k z EmptyFM = z; 28.36/11.78 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.36/11.78 28.36/11.78 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 28.36/11.78 glueBal EmptyFM fm2 = fm2; 28.36/11.78 glueBal fm1 EmptyFM = fm1; 28.36/11.78 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 28.36/11.78 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 28.36/11.78 mid_elt1 = mid_elt10 vv2; 28.36/11.78 mid_elt10 (_,mid_elt1) = mid_elt1; 28.36/11.78 mid_elt2 = mid_elt20 vv3; 28.36/11.78 mid_elt20 (_,mid_elt2) = mid_elt2; 28.36/11.78 mid_key1 = mid_key10 vv2; 28.36/11.78 mid_key10 (mid_key1,_) = mid_key1; 28.36/11.78 mid_key2 = mid_key20 vv3; 28.36/11.78 mid_key20 (mid_key2,_) = mid_key2; 28.36/11.78 vv2 = findMax fm1; 28.36/11.78 vv3 = findMin fm2; 28.36/11.78 }; 28.36/11.78 28.36/11.78 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.36/11.78 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 28.36/11.78 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 28.36/11.78 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 28.36/11.78 | otherwise = mkBranch 2 key elt fm_L fm_R where { 28.36/11.78 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 28.36/11.78 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 28.36/11.78 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 28.36/11.78 | otherwise = double_L fm_L fm_R; 28.36/11.78 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 28.36/11.78 | otherwise = double_R fm_L fm_R; 28.36/11.78 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 28.36/11.78 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 28.36/11.78 size_l = sizeFM fm_L; 28.36/11.78 size_r = sizeFM fm_R; 28.36/11.78 }; 28.36/11.78 28.36/11.78 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 28.36/11.78 mkBranch which key elt fm_l fm_r = let { 28.36/11.78 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 28.36/11.78 } in result where { 28.36/11.78 balance_ok = True; 28.36/11.78 left_ok = left_ok0 fm_l key fm_l; 28.36/11.78 left_ok0 fm_l key EmptyFM = True; 28.36/11.78 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 28.36/11.78 biggest_left_key = fst (findMax fm_l); 28.36/11.78 } in biggest_left_key < key; 28.36/11.78 left_size = sizeFM fm_l; 28.36/11.78 right_ok = right_ok0 fm_r key fm_r; 28.36/11.78 right_ok0 fm_r key EmptyFM = True; 28.36/11.78 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 28.36/11.78 smallest_right_key = fst (findMin fm_r); 28.36/11.78 } in key < smallest_right_key; 28.36/11.78 right_size = sizeFM fm_r; 28.36/11.78 unbox :: Int -> Int; 28.36/11.78 unbox x = x; 28.36/11.78 }; 28.36/11.78 28.36/11.78 sIZE_RATIO :: Int; 28.36/11.78 sIZE_RATIO = 5; 28.36/11.78 28.36/11.78 sizeFM :: FiniteMap a b -> Int; 28.36/11.78 sizeFM EmptyFM = 0; 28.36/11.78 sizeFM (Branch _ _ size _ _) = size; 28.36/11.78 28.36/11.78 } 28.36/11.78 module Maybe where { 28.36/11.78 import qualified FiniteMap; 28.36/11.78 import qualified Main; 28.36/11.78 import qualified Prelude; 28.36/11.78 } 28.36/11.78 module Main where { 28.36/11.78 import qualified FiniteMap; 28.36/11.78 import qualified Maybe; 28.36/11.78 import qualified Prelude; 28.36/11.78 } 28.36/11.78 28.36/11.78 ---------------------------------------- 28.36/11.78 28.36/11.78 (5) IFR (EQUIVALENT) 28.36/11.78 If Reductions: 28.36/11.78 The following If expression 28.36/11.78 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 28.36/11.78 is transformed to 28.36/11.78 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 28.36/11.78 primDivNatS0 x y False = Zero; 28.36/11.78 " 28.36/11.78 The following If expression 28.36/11.78 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 28.36/11.78 is transformed to 28.36/11.78 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 28.36/11.78 primModNatS0 x y False = Succ x; 28.36/11.78 " 28.36/11.78 28.36/11.78 ---------------------------------------- 28.36/11.78 28.36/11.78 (6) 28.36/11.78 Obligation: 28.36/11.78 mainModule Main 28.36/11.78 module FiniteMap where { 28.36/11.78 import qualified Main; 28.36/11.78 import qualified Maybe; 28.36/11.78 import qualified Prelude; 28.36/11.78 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 28.36/11.78 28.36/11.78 instance (Eq a, Eq b) => Eq FiniteMap a b where { 28.36/11.78 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.36/11.78 } 28.36/11.78 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 28.36/11.78 delFromFM EmptyFM del_key = emptyFM; 28.36/11.78 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 28.36/11.78 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 28.36/11.78 | key == del_key = glueBal fm_l fm_r; 28.36/11.78 28.36/11.78 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 28.36/11.78 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 28.36/11.78 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 28.36/11.78 28.36/11.78 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 28.36/11.78 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 28.36/11.78 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 28.36/11.78 28.36/11.78 emptyFM :: FiniteMap b a; 28.36/11.78 emptyFM = EmptyFM; 28.36/11.78 28.36/11.78 findMax :: FiniteMap a b -> (a,b); 28.36/11.78 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 28.36/11.78 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 28.36/11.78 28.36/11.78 findMin :: FiniteMap a b -> (a,b); 28.36/11.78 findMin (Branch key elt _ EmptyFM _) = (key,elt); 28.36/11.78 findMin (Branch key elt _ fm_l _) = findMin fm_l; 28.36/11.78 28.36/11.78 fmToList :: FiniteMap a b -> [(a,b)]; 28.36/11.78 fmToList fm = foldFM fmToList0 [] fm; 28.36/11.78 28.36/11.78 fmToList0 key elt rest = (key,elt) : rest; 28.36/11.78 28.36/11.78 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 28.36/11.78 foldFM k z EmptyFM = z; 28.36/11.78 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.36/11.78 28.36/11.78 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 28.36/11.78 glueBal EmptyFM fm2 = fm2; 28.36/11.78 glueBal fm1 EmptyFM = fm1; 28.36/11.78 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 28.36/11.78 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 28.36/11.78 mid_elt1 = mid_elt10 vv2; 28.36/11.78 mid_elt10 (_,mid_elt1) = mid_elt1; 28.36/11.78 mid_elt2 = mid_elt20 vv3; 28.36/11.78 mid_elt20 (_,mid_elt2) = mid_elt2; 28.36/11.78 mid_key1 = mid_key10 vv2; 28.36/11.78 mid_key10 (mid_key1,_) = mid_key1; 28.36/11.78 mid_key2 = mid_key20 vv3; 28.36/11.78 mid_key20 (mid_key2,_) = mid_key2; 28.36/11.78 vv2 = findMax fm1; 28.36/11.78 vv3 = findMin fm2; 28.36/11.78 }; 28.36/11.78 28.36/11.78 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.36/11.78 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 28.36/11.78 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 28.36/11.78 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 28.36/11.78 | otherwise = mkBranch 2 key elt fm_L fm_R where { 28.36/11.78 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 28.36/11.78 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 28.36/11.78 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 28.36/11.78 | otherwise = double_L fm_L fm_R; 28.36/11.78 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 28.36/11.78 | otherwise = double_R fm_L fm_R; 28.36/11.78 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 28.36/11.78 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 28.36/11.78 size_l = sizeFM fm_L; 28.36/11.78 size_r = sizeFM fm_R; 28.36/11.78 }; 28.36/11.78 28.36/11.78 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 28.36/11.78 mkBranch which key elt fm_l fm_r = let { 28.36/11.78 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 28.36/11.78 } in result where { 28.36/11.78 balance_ok = True; 28.36/11.78 left_ok = left_ok0 fm_l key fm_l; 28.36/11.78 left_ok0 fm_l key EmptyFM = True; 28.36/11.78 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 28.36/11.78 biggest_left_key = fst (findMax fm_l); 28.36/11.78 } in biggest_left_key < key; 28.36/11.78 left_size = sizeFM fm_l; 28.36/11.78 right_ok = right_ok0 fm_r key fm_r; 28.36/11.78 right_ok0 fm_r key EmptyFM = True; 28.36/11.78 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 28.36/11.78 smallest_right_key = fst (findMin fm_r); 28.36/11.78 } in key < smallest_right_key; 28.36/11.78 right_size = sizeFM fm_r; 28.36/11.78 unbox :: Int -> Int; 28.36/11.78 unbox x = x; 28.36/11.78 }; 28.36/11.78 28.36/11.78 sIZE_RATIO :: Int; 28.36/11.78 sIZE_RATIO = 5; 28.36/11.78 28.36/11.78 sizeFM :: FiniteMap b a -> Int; 28.36/11.78 sizeFM EmptyFM = 0; 28.36/11.78 sizeFM (Branch _ _ size _ _) = size; 28.36/11.78 28.36/11.78 } 28.36/11.78 module Maybe where { 28.36/11.78 import qualified FiniteMap; 28.36/11.78 import qualified Main; 28.36/11.78 import qualified Prelude; 28.36/11.78 } 28.36/11.78 module Main where { 28.36/11.78 import qualified FiniteMap; 28.36/11.78 import qualified Maybe; 28.36/11.78 import qualified Prelude; 28.36/11.78 } 28.36/11.78 28.36/11.78 ---------------------------------------- 28.36/11.78 28.36/11.78 (7) BR (EQUIVALENT) 28.36/11.78 Replaced joker patterns by fresh variables and removed binding patterns. 28.36/11.78 ---------------------------------------- 28.36/11.78 28.36/11.78 (8) 28.36/11.78 Obligation: 28.36/11.78 mainModule Main 28.36/11.78 module FiniteMap where { 28.36/11.78 import qualified Main; 28.36/11.78 import qualified Maybe; 28.36/11.78 import qualified Prelude; 28.36/11.78 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 28.36/11.78 28.36/11.78 instance (Eq a, Eq b) => Eq FiniteMap a b where { 28.36/11.78 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.36/11.78 } 28.36/11.78 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 28.36/11.78 delFromFM EmptyFM del_key = emptyFM; 28.36/11.78 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 28.36/11.78 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 28.36/11.78 | key == del_key = glueBal fm_l fm_r; 28.36/11.78 28.36/11.78 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 28.36/11.78 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 28.36/11.78 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 28.36/11.78 28.36/11.78 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 28.36/11.78 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 28.36/11.78 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 28.36/11.78 28.36/11.78 emptyFM :: FiniteMap b a; 28.36/11.78 emptyFM = EmptyFM; 28.36/11.78 28.36/11.78 findMax :: FiniteMap a b -> (a,b); 28.36/11.78 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 28.36/11.78 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 28.36/11.78 28.36/11.78 findMin :: FiniteMap a b -> (a,b); 28.36/11.78 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 28.36/11.78 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 28.36/11.78 28.36/11.78 fmToList :: FiniteMap b a -> [(b,a)]; 28.36/11.78 fmToList fm = foldFM fmToList0 [] fm; 28.36/11.78 28.36/11.78 fmToList0 key elt rest = (key,elt) : rest; 28.36/11.78 28.36/11.78 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 28.36/11.78 foldFM k z EmptyFM = z; 28.36/11.78 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.23/11.99 29.23/11.99 glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.23/11.99 glueBal EmptyFM fm2 = fm2; 29.23/11.99 glueBal fm1 EmptyFM = fm1; 29.23/11.99 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 29.23/11.99 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 29.23/11.99 mid_elt1 = mid_elt10 vv2; 29.23/11.99 mid_elt10 (vyw,mid_elt1) = mid_elt1; 29.23/11.99 mid_elt2 = mid_elt20 vv3; 29.23/11.99 mid_elt20 (vyv,mid_elt2) = mid_elt2; 29.23/11.99 mid_key1 = mid_key10 vv2; 29.23/11.99 mid_key10 (mid_key1,vyx) = mid_key1; 29.23/11.99 mid_key2 = mid_key20 vv3; 29.23/11.99 mid_key20 (mid_key2,vyy) = mid_key2; 29.23/11.99 vv2 = findMax fm1; 29.23/11.99 vv3 = findMin fm2; 29.23/11.99 }; 29.23/11.99 29.23/11.99 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.23/11.99 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 29.23/11.99 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 29.23/11.99 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 29.23/11.99 | otherwise = mkBranch 2 key elt fm_L fm_R where { 29.23/11.99 double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 29.23/11.99 double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 29.23/11.99 mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 29.23/11.99 | otherwise = double_L fm_L fm_R; 29.23/11.99 mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 29.23/11.99 | otherwise = double_R fm_L fm_R; 29.23/11.99 single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 29.23/11.99 single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 29.23/11.99 size_l = sizeFM fm_L; 29.23/11.99 size_r = sizeFM fm_R; 29.23/11.99 }; 29.23/11.99 29.23/11.99 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.23/11.99 mkBranch which key elt fm_l fm_r = let { 29.23/11.99 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.23/11.99 } in result where { 29.23/11.99 balance_ok = True; 29.23/11.99 left_ok = left_ok0 fm_l key fm_l; 29.23/11.99 left_ok0 fm_l key EmptyFM = True; 29.23/11.99 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 29.23/11.99 biggest_left_key = fst (findMax fm_l); 29.23/11.99 } in biggest_left_key < key; 29.23/11.99 left_size = sizeFM fm_l; 29.23/11.99 right_ok = right_ok0 fm_r key fm_r; 29.23/11.99 right_ok0 fm_r key EmptyFM = True; 29.23/11.99 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 29.23/11.99 smallest_right_key = fst (findMin fm_r); 29.23/11.99 } in key < smallest_right_key; 29.23/11.99 right_size = sizeFM fm_r; 29.23/11.99 unbox :: Int -> Int; 29.23/11.99 unbox x = x; 29.23/11.99 }; 29.23/11.99 29.23/11.99 sIZE_RATIO :: Int; 29.23/11.99 sIZE_RATIO = 5; 29.23/11.99 29.23/11.99 sizeFM :: FiniteMap a b -> Int; 29.23/11.99 sizeFM EmptyFM = 0; 29.23/11.99 sizeFM (Branch vzu vzv size vzw vzx) = size; 29.23/11.99 29.23/11.99 } 29.23/11.99 module Maybe where { 29.23/11.99 import qualified FiniteMap; 29.23/11.99 import qualified Main; 29.23/11.99 import qualified Prelude; 29.23/11.99 } 29.23/11.99 module Main where { 29.23/11.99 import qualified FiniteMap; 29.23/11.99 import qualified Maybe; 29.23/11.99 import qualified Prelude; 29.23/11.99 } 29.23/11.99 29.23/11.99 ---------------------------------------- 29.23/11.99 29.23/11.99 (9) COR (EQUIVALENT) 29.23/11.99 Cond Reductions: 29.23/11.99 The following Function with conditions 29.23/11.99 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 29.23/11.99 " 29.23/11.99 is transformed to 29.23/11.99 "compare x y = compare3 x y; 29.23/11.99 " 29.23/11.99 "compare2 x y True = EQ; 29.23/11.99 compare2 x y False = compare1 x y (x <= y); 29.23/11.99 " 29.23/11.99 "compare1 x y True = LT; 29.23/11.99 compare1 x y False = compare0 x y otherwise; 29.23/11.99 " 29.23/11.99 "compare0 x y True = GT; 29.23/11.99 " 29.23/11.99 "compare3 x y = compare2 x y (x == y); 29.23/11.99 " 29.23/11.99 The following Function with conditions 29.23/11.99 "absReal x|x >= 0x|otherwise`negate` x; 29.23/11.99 " 29.23/11.99 is transformed to 29.23/11.99 "absReal x = absReal2 x; 29.23/11.99 " 29.23/11.99 "absReal1 x True = x; 29.23/11.99 absReal1 x False = absReal0 x otherwise; 29.23/11.99 " 29.23/11.99 "absReal0 x True = `negate` x; 29.23/11.99 " 29.23/11.99 "absReal2 x = absReal1 x (x >= 0); 29.23/11.99 " 29.23/11.99 The following Function with conditions 29.23/11.99 "gcd' x 0 = x; 29.23/11.99 gcd' x y = gcd' y (x `rem` y); 29.23/11.99 " 29.23/11.99 is transformed to 29.23/11.99 "gcd' x wuy = gcd'2 x wuy; 29.23/11.99 gcd' x y = gcd'0 x y; 29.23/11.99 " 29.23/11.99 "gcd'0 x y = gcd' y (x `rem` y); 29.23/11.99 " 29.23/11.99 "gcd'1 True x wuy = x; 29.23/11.99 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 29.23/11.99 " 29.23/11.99 "gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 29.23/11.99 gcd'2 wvw wvx = gcd'0 wvw wvx; 29.23/11.99 " 29.23/11.99 The following Function with conditions 29.23/11.99 "gcd 0 0 = error []; 29.23/11.99 gcd x y = gcd' (abs x) (abs y) where { 29.23/11.99 gcd' x 0 = x; 29.23/11.99 gcd' x y = gcd' y (x `rem` y); 29.23/11.99 } 29.23/11.99 ; 29.23/11.99 " 29.23/11.99 is transformed to 29.23/11.99 "gcd wvy wvz = gcd3 wvy wvz; 29.23/11.99 gcd x y = gcd0 x y; 29.23/11.99 " 29.23/11.99 "gcd0 x y = gcd' (abs x) (abs y) where { 29.23/11.99 gcd' x wuy = gcd'2 x wuy; 29.23/11.99 gcd' x y = gcd'0 x y; 29.23/11.99 ; 29.23/11.99 gcd'0 x y = gcd' y (x `rem` y); 29.23/11.99 ; 29.23/11.99 gcd'1 True x wuy = x; 29.23/11.99 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 29.23/11.99 ; 29.23/11.99 gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 29.23/11.99 gcd'2 wvw wvx = gcd'0 wvw wvx; 29.23/11.99 } 29.23/11.99 ; 29.23/11.99 " 29.23/11.99 "gcd1 True wvy wvz = error []; 29.23/11.99 gcd1 wwu wwv www = gcd0 wwv www; 29.23/11.99 " 29.23/11.99 "gcd2 True wvy wvz = gcd1 (wvz == 0) wvy wvz; 29.23/11.99 gcd2 wwx wwy wwz = gcd0 wwy wwz; 29.23/11.99 " 29.23/11.99 "gcd3 wvy wvz = gcd2 (wvy == 0) wvy wvz; 29.23/11.99 gcd3 wxu wxv = gcd0 wxu wxv; 29.23/11.99 " 29.23/11.99 The following Function with conditions 29.23/11.99 "undefined |Falseundefined; 29.23/11.99 " 29.23/11.99 is transformed to 29.23/11.99 "undefined = undefined1; 29.23/11.99 " 29.23/11.99 "undefined0 True = undefined; 29.23/11.99 " 29.23/11.99 "undefined1 = undefined0 False; 29.23/11.99 " 29.23/11.99 The following Function with conditions 29.23/11.99 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 29.23/11.99 d = gcd x y; 29.23/11.99 } 29.23/11.99 ; 29.23/11.99 " 29.23/11.99 is transformed to 29.23/11.99 "reduce x y = reduce2 x y; 29.23/11.99 " 29.23/11.99 "reduce2 x y = reduce1 x y (y == 0) where { 29.23/11.99 d = gcd x y; 29.23/11.99 ; 29.23/11.99 reduce0 x y True = x `quot` d :% (y `quot` d); 29.23/11.99 ; 29.23/11.99 reduce1 x y True = error []; 29.23/11.99 reduce1 x y False = reduce0 x y otherwise; 29.23/11.99 } 29.23/11.99 ; 29.23/11.99 " 29.23/11.99 The following Function with conditions 29.23/11.99 "mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 29.23/11.99 " 29.23/11.99 is transformed to 29.23/11.99 "mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 29.23/11.99 " 29.23/11.99 "mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 29.23/11.99 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 29.23/11.99 " 29.23/11.99 "mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 29.23/11.99 " 29.23/11.99 "mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 29.23/11.99 " 29.23/11.99 The following Function with conditions 29.23/11.99 "mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 29.23/11.99 " 29.23/11.99 is transformed to 29.23/11.99 "mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 29.23/11.99 " 29.23/11.99 "mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 29.23/11.99 " 29.23/11.99 "mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 29.23/11.99 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 29.23/11.99 " 29.23/11.99 "mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 29.23/11.99 " 29.23/11.99 The following Function with conditions 29.23/11.99 "mkBalBranch key elt fm_L fm_R|size_l + size_r < 2mkBranch 1 key elt fm_L fm_R|size_r > sIZE_RATIO * size_lmkBalBranch0 fm_L fm_R fm_R|size_l > sIZE_RATIO * size_rmkBalBranch1 fm_L fm_R fm_L|otherwisemkBranch 2 key elt fm_L fm_R where { 29.23/11.99 double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 29.23/11.99 ; 29.23/11.99 double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 29.23/11.99 ; 29.23/11.99 mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 29.23/11.99 ; 29.23/11.99 mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 29.23/11.99 ; 29.23/11.99 single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 29.23/11.99 ; 29.23/11.99 single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 29.23/11.99 ; 29.23/11.99 size_l = sizeFM fm_L; 29.23/11.99 ; 29.23/11.99 size_r = sizeFM fm_R; 29.23/11.99 } 29.23/11.99 ; 29.23/11.99 " 29.23/11.99 is transformed to 29.23/11.99 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 29.23/11.99 " 29.23/11.99 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 29.23/11.99 double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 29.23/11.99 ; 29.23/11.99 double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 29.23/11.99 ; 29.23/11.99 mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 29.23/11.99 ; 29.23/11.99 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 29.23/11.99 ; 29.23/11.99 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 29.23/11.99 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 29.23/11.99 ; 29.23/11.99 mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 29.23/11.99 ; 29.23/11.99 mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 29.23/11.99 ; 29.23/11.99 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 29.23/11.99 ; 29.23/11.99 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 29.23/11.99 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 29.23/11.99 ; 29.23/11.99 mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 29.23/11.99 ; 29.23/11.99 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 29.23/11.99 ; 29.23/11.99 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 29.23/11.99 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 29.23/11.99 ; 29.23/11.99 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 29.23/11.99 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 29.23/11.99 ; 29.23/11.99 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 29.23/11.99 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 29.23/11.99 ; 29.23/11.99 single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 29.23/11.99 ; 29.23/11.99 single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 29.23/11.99 ; 29.23/11.99 size_l = sizeFM fm_L; 29.23/11.99 ; 29.23/11.99 size_r = sizeFM fm_R; 29.23/11.99 } 29.23/11.99 ; 29.23/11.99 " 29.23/11.99 The following Function with conditions 29.23/11.99 "glueBal EmptyFM fm2 = fm2; 29.23/11.99 glueBal fm1 EmptyFM = fm1; 29.23/11.99 glueBal fm1 fm2|sizeFM fm2 > sizeFM fm1mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2)|otherwisemkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 29.23/11.99 mid_elt1 = mid_elt10 vv2; 29.23/11.99 ; 29.23/11.99 mid_elt10 (vyw,mid_elt1) = mid_elt1; 29.23/11.99 ; 29.23/11.99 mid_elt2 = mid_elt20 vv3; 29.23/11.99 ; 29.23/11.99 mid_elt20 (vyv,mid_elt2) = mid_elt2; 29.23/11.99 ; 29.23/11.99 mid_key1 = mid_key10 vv2; 29.23/11.99 ; 29.23/11.99 mid_key10 (mid_key1,vyx) = mid_key1; 29.23/11.99 ; 29.23/11.99 mid_key2 = mid_key20 vv3; 29.23/11.99 ; 29.23/11.99 mid_key20 (mid_key2,vyy) = mid_key2; 29.23/11.99 ; 29.23/11.99 vv2 = findMax fm1; 29.23/11.99 ; 29.23/11.99 vv3 = findMin fm2; 29.23/11.99 } 29.23/11.99 ; 29.23/11.99 " 29.23/11.99 is transformed to 29.23/11.99 "glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 29.23/11.99 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 29.23/11.99 glueBal fm1 fm2 = glueBal2 fm1 fm2; 29.23/11.99 " 29.23/11.99 "glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 29.23/11.99 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 29.23/11.99 ; 29.23/11.99 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 29.23/11.99 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 29.23/11.99 ; 29.23/11.99 mid_elt1 = mid_elt10 vv2; 29.23/11.99 ; 29.23/11.99 mid_elt10 (vyw,mid_elt1) = mid_elt1; 29.23/11.99 ; 29.23/11.99 mid_elt2 = mid_elt20 vv3; 29.23/11.99 ; 29.23/11.99 mid_elt20 (vyv,mid_elt2) = mid_elt2; 29.23/11.99 ; 29.23/11.99 mid_key1 = mid_key10 vv2; 29.23/11.99 ; 29.23/11.99 mid_key10 (mid_key1,vyx) = mid_key1; 29.23/11.99 ; 29.23/11.99 mid_key2 = mid_key20 vv3; 29.23/11.99 ; 29.23/11.99 mid_key20 (mid_key2,vyy) = mid_key2; 29.23/11.99 ; 29.23/11.99 vv2 = findMax fm1; 29.23/11.99 ; 29.23/11.99 vv3 = findMin fm2; 29.23/11.99 } 29.23/11.99 ; 29.23/11.99 " 29.23/11.99 "glueBal3 fm1 EmptyFM = fm1; 29.23/11.99 glueBal3 wxz wyu = glueBal2 wxz wyu; 29.23/11.99 " 29.23/11.99 "glueBal4 EmptyFM fm2 = fm2; 29.23/11.99 glueBal4 wyw wyx = glueBal3 wyw wyx; 29.23/11.99 " 29.23/11.99 The following Function with conditions 29.23/11.99 "delFromFM EmptyFM del_key = emptyFM; 29.23/11.99 delFromFM (Branch key elt size fm_l fm_r) del_key|del_key > keymkBalBranch key elt fm_l (delFromFM fm_r del_key)|del_key < keymkBalBranch key elt (delFromFM fm_l del_key) fm_r|key == del_keyglueBal fm_l fm_r; 29.23/11.99 " 29.23/11.99 is transformed to 29.23/11.99 "delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 29.23/11.99 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 29.23/11.99 " 29.23/11.99 "delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 29.23/11.99 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 29.23/11.99 " 29.23/11.99 "delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 29.23/11.99 " 29.23/11.99 "delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 29.23/11.99 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 29.23/11.99 " 29.23/11.99 "delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 29.23/11.99 " 29.23/11.99 "delFromFM4 EmptyFM del_key = emptyFM; 29.23/11.99 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 29.23/11.99 " 29.23/11.99 29.23/11.99 ---------------------------------------- 29.23/11.99 29.23/11.99 (10) 29.23/11.99 Obligation: 29.23/11.99 mainModule Main 29.23/11.99 module FiniteMap where { 29.23/11.99 import qualified Main; 29.23/11.99 import qualified Maybe; 29.23/11.99 import qualified Prelude; 29.23/11.99 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 29.23/11.99 29.23/11.99 instance (Eq a, Eq b) => Eq FiniteMap b a where { 29.23/11.99 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.23/11.99 } 29.23/11.99 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 29.23/11.99 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 29.23/11.99 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 29.23/11.99 29.23/11.99 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 29.23/11.99 29.23/11.99 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 29.23/11.99 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 29.23/11.99 29.23/11.99 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 29.23/11.99 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 29.23/11.99 29.23/11.99 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 29.23/11.99 29.23/11.99 delFromFM4 EmptyFM del_key = emptyFM; 29.23/11.99 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 29.23/11.99 29.23/11.99 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 29.23/11.99 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 29.23/11.99 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 29.23/11.99 29.23/11.99 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 29.23/11.99 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 29.23/11.99 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 29.23/11.99 29.23/11.99 emptyFM :: FiniteMap a b; 29.23/11.99 emptyFM = EmptyFM; 29.23/11.99 29.23/11.99 findMax :: FiniteMap b a -> (b,a); 29.23/11.99 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 29.23/11.99 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 29.23/11.99 29.23/11.99 findMin :: FiniteMap b a -> (b,a); 29.23/11.99 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 29.23/11.99 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 29.23/11.99 29.23/11.99 fmToList :: FiniteMap a b -> [(a,b)]; 29.23/11.99 fmToList fm = foldFM fmToList0 [] fm; 29.23/11.99 29.23/11.99 fmToList0 key elt rest = (key,elt) : rest; 29.23/11.99 29.23/11.99 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 29.23/11.99 foldFM k z EmptyFM = z; 29.23/11.99 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.23/11.99 29.23/11.99 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.23/11.99 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 29.23/11.99 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 29.23/11.99 glueBal fm1 fm2 = glueBal2 fm1 fm2; 29.23/11.99 29.23/11.99 glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 29.23/11.99 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 29.23/11.99 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 29.23/11.99 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 29.23/11.99 mid_elt1 = mid_elt10 vv2; 29.23/11.99 mid_elt10 (vyw,mid_elt1) = mid_elt1; 29.23/11.99 mid_elt2 = mid_elt20 vv3; 29.23/11.99 mid_elt20 (vyv,mid_elt2) = mid_elt2; 29.23/11.99 mid_key1 = mid_key10 vv2; 29.23/11.99 mid_key10 (mid_key1,vyx) = mid_key1; 29.23/11.99 mid_key2 = mid_key20 vv3; 29.23/11.99 mid_key20 (mid_key2,vyy) = mid_key2; 29.23/11.99 vv2 = findMax fm1; 29.23/11.99 vv3 = findMin fm2; 29.23/11.99 }; 29.23/11.99 29.23/11.99 glueBal3 fm1 EmptyFM = fm1; 29.23/11.99 glueBal3 wxz wyu = glueBal2 wxz wyu; 29.23/11.99 29.23/11.99 glueBal4 EmptyFM fm2 = fm2; 29.23/11.99 glueBal4 wyw wyx = glueBal3 wyw wyx; 29.23/11.99 29.23/11.99 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.23/11.99 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 29.23/11.99 29.23/11.99 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 29.23/11.99 double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 29.23/11.99 double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 29.23/11.99 mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 29.23/11.99 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 29.23/11.99 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 29.23/11.99 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 29.23/11.99 mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 29.23/11.99 mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 29.23/11.99 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 29.23/11.99 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 29.23/11.99 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 29.23/11.99 mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 29.23/11.99 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 29.23/11.99 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 29.23/11.99 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 29.23/11.99 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 29.23/11.99 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 29.23/11.99 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 29.23/11.99 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 29.23/11.99 single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 29.23/11.99 single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 29.23/11.99 size_l = sizeFM fm_L; 29.23/11.99 size_r = sizeFM fm_R; 29.23/11.99 }; 29.23/11.99 29.23/11.99 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.23/11.99 mkBranch which key elt fm_l fm_r = let { 29.23/11.99 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.23/11.99 } in result where { 29.23/11.99 balance_ok = True; 29.23/11.99 left_ok = left_ok0 fm_l key fm_l; 29.23/11.99 left_ok0 fm_l key EmptyFM = True; 29.23/11.99 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 29.23/11.99 biggest_left_key = fst (findMax fm_l); 29.23/11.99 } in biggest_left_key < key; 29.23/11.99 left_size = sizeFM fm_l; 29.23/11.99 right_ok = right_ok0 fm_r key fm_r; 29.23/11.99 right_ok0 fm_r key EmptyFM = True; 29.23/11.99 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 29.23/11.99 smallest_right_key = fst (findMin fm_r); 29.23/11.99 } in key < smallest_right_key; 29.23/11.99 right_size = sizeFM fm_r; 29.23/11.99 unbox :: Int -> Int; 29.23/11.99 unbox x = x; 29.23/11.99 }; 29.23/11.99 29.23/11.99 sIZE_RATIO :: Int; 29.23/11.99 sIZE_RATIO = 5; 29.23/11.99 29.23/11.99 sizeFM :: FiniteMap b a -> Int; 29.23/11.99 sizeFM EmptyFM = 0; 29.23/11.99 sizeFM (Branch vzu vzv size vzw vzx) = size; 29.23/11.99 29.23/11.99 } 29.23/11.99 module Maybe where { 29.23/11.99 import qualified FiniteMap; 29.23/11.99 import qualified Main; 29.23/11.99 import qualified Prelude; 29.23/11.99 } 29.23/11.99 module Main where { 29.23/11.99 import qualified FiniteMap; 29.23/11.99 import qualified Maybe; 29.23/11.99 import qualified Prelude; 29.23/11.99 } 29.23/11.99 29.23/11.99 ---------------------------------------- 29.23/11.99 29.23/11.99 (11) LetRed (EQUIVALENT) 29.23/11.99 Let/Where Reductions: 29.23/11.99 The bindings of the following Let/Where expression 29.23/11.99 "gcd' (abs x) (abs y) where { 29.23/11.99 gcd' x wuy = gcd'2 x wuy; 29.23/11.99 gcd' x y = gcd'0 x y; 29.23/11.99 ; 29.23/11.99 gcd'0 x y = gcd' y (x `rem` y); 29.23/11.99 ; 29.23/11.99 gcd'1 True x wuy = x; 29.23/11.99 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 29.23/11.99 ; 29.23/11.99 gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 29.23/11.99 gcd'2 wvw wvx = gcd'0 wvw wvx; 29.23/11.99 } 29.23/11.99 " 29.23/11.99 are unpacked to the following functions on top level 29.23/11.99 "gcd0Gcd' x wuy = gcd0Gcd'2 x wuy; 29.23/11.99 gcd0Gcd' x y = gcd0Gcd'0 x y; 29.23/11.99 " 29.23/11.99 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 29.23/11.99 " 29.23/11.99 "gcd0Gcd'1 True x wuy = x; 29.23/11.99 gcd0Gcd'1 wuz wvu wvv = gcd0Gcd'0 wvu wvv; 29.23/11.99 " 29.23/11.99 "gcd0Gcd'2 x wuy = gcd0Gcd'1 (wuy == 0) x wuy; 29.23/11.99 gcd0Gcd'2 wvw wvx = gcd0Gcd'0 wvw wvx; 29.23/11.99 " 29.23/11.99 The bindings of the following Let/Where expression 29.23/11.99 "reduce1 x y (y == 0) where { 29.23/11.99 d = gcd x y; 29.23/11.99 ; 29.23/11.99 reduce0 x y True = x `quot` d :% (y `quot` d); 29.23/11.99 ; 29.23/11.99 reduce1 x y True = error []; 29.23/11.99 reduce1 x y False = reduce0 x y otherwise; 29.23/11.99 } 29.23/11.99 " 29.23/11.99 are unpacked to the following functions on top level 29.23/11.99 "reduce2Reduce0 wzw wzx x y True = x `quot` reduce2D wzw wzx :% (y `quot` reduce2D wzw wzx); 29.23/11.99 " 29.23/11.99 "reduce2D wzw wzx = gcd wzw wzx; 29.23/11.99 " 29.23/11.99 "reduce2Reduce1 wzw wzx x y True = error []; 29.23/11.99 reduce2Reduce1 wzw wzx x y False = reduce2Reduce0 wzw wzx x y otherwise; 29.23/11.99 " 29.23/11.99 The bindings of the following Let/Where expression 29.23/11.99 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 29.23/11.99 double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 29.23/11.99 ; 29.23/11.99 double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 29.23/11.99 ; 29.23/11.99 mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 29.23/11.99 ; 29.23/11.99 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 29.23/11.99 ; 29.23/11.99 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 29.23/11.99 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 29.23/11.99 ; 29.23/11.99 mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 29.23/11.99 ; 29.23/11.99 mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 29.23/11.99 ; 29.23/11.99 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 29.23/11.99 ; 29.23/11.99 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 29.23/11.99 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 29.23/11.99 ; 29.23/11.99 mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 29.23/11.99 ; 29.23/11.99 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 29.23/11.99 ; 29.23/11.99 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 29.23/11.99 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 29.23/11.99 ; 29.23/11.99 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 29.23/11.99 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 29.23/11.99 ; 29.23/11.99 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 29.23/11.99 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 29.23/11.99 ; 29.23/11.99 single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 29.23/11.99 ; 29.23/11.99 single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 29.23/11.99 ; 29.23/11.99 size_l = sizeFM fm_L; 29.23/11.99 ; 29.23/11.99 size_r = sizeFM fm_R; 29.23/11.99 } 29.23/11.99 " 29.23/11.99 are unpacked to the following functions on top level 29.23/11.99 "mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 29.23/11.99 " 29.23/11.99 "mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Double_R wzy wzz xuu xuv fm_L fm_R; 29.23/11.99 " 29.23/11.99 "mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 29.23/11.99 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_r wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_l wzy wzz xuu xuv); 29.23/11.99 " 29.23/11.99 "mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 29.23/11.99 " 29.23/11.99 "mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 29.23/11.99 " 29.23/11.99 "mkBalBranch6Single_R wzy wzz xuu xuv (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wzy wzz fm_lr fm_r); 29.49/12.06 " 29.49/12.06 "mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 29.49/12.06 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_l wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_r wzy wzz xuu xuv); 29.49/12.06 " 29.49/12.06 "mkBalBranch6Double_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wzy wzz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 29.49/12.06 " 29.49/12.06 "mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Double_L wzy wzz xuu xuv fm_L fm_R; 29.49/12.06 " 29.49/12.06 "mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Single_L wzy wzz xuu xuv fm_L fm_R; 29.49/12.06 mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 29.49/12.06 " 29.49/12.06 "mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 29.49/12.06 " 29.49/12.06 "mkBalBranch6Single_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wzy wzz fm_l fm_rl) fm_rr; 29.49/12.06 " 29.49/12.06 "mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Single_R wzy wzz xuu xuv fm_L fm_R; 29.49/12.06 mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 29.49/12.06 " 29.49/12.06 "mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 29.49/12.06 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 29.49/12.06 " 29.49/12.06 "mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuu; 29.49/12.06 " 29.49/12.06 "mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; 29.49/12.06 " 29.49/12.06 "mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 29.49/12.06 " 29.49/12.06 "mkBalBranch6Double_R wzy wzz xuu xuv (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wzy wzz fm_lrr fm_r); 29.49/12.06 " 29.49/12.06 The bindings of the following Let/Where expression 29.49/12.06 "let { 29.49/12.06 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.49/12.06 } in result where { 29.49/12.06 balance_ok = True; 29.49/12.06 ; 29.49/12.06 left_ok = left_ok0 fm_l key fm_l; 29.49/12.06 ; 29.49/12.06 left_ok0 fm_l key EmptyFM = True; 29.49/12.06 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 29.49/12.06 biggest_left_key = fst (findMax fm_l); 29.49/12.06 } in biggest_left_key < key; 29.49/12.06 ; 29.49/12.06 left_size = sizeFM fm_l; 29.49/12.06 ; 29.49/12.06 right_ok = right_ok0 fm_r key fm_r; 29.49/12.06 ; 29.49/12.06 right_ok0 fm_r key EmptyFM = True; 29.49/12.06 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 29.49/12.06 smallest_right_key = fst (findMin fm_r); 29.49/12.06 } in key < smallest_right_key; 29.49/12.06 ; 29.49/12.06 right_size = sizeFM fm_r; 29.49/12.06 ; 29.49/12.06 unbox x = x; 29.49/12.06 } 29.49/12.06 " 29.49/12.06 are unpacked to the following functions on top level 29.49/12.06 "mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 29.49/12.06 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 29.49/12.06 " 29.49/12.06 "mkBranchLeft_size xuw xux xuy = sizeFM xuw; 29.49/12.06 " 29.49/12.06 "mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 29.49/12.06 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 29.49/12.06 " 29.49/12.06 "mkBranchBalance_ok xuw xux xuy = True; 29.49/12.06 " 29.49/12.06 "mkBranchUnbox xuw xux xuy x = x; 29.49/12.06 " 29.49/12.06 "mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xux xuw; 29.49/12.06 " 29.49/12.06 "mkBranchRight_size xuw xux xuy = sizeFM xuy; 29.49/12.06 " 29.49/12.06 "mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuy xux xuy; 29.49/12.06 " 29.49/12.06 The bindings of the following Let/Where expression 29.49/12.06 "let { 29.49/12.06 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.49/12.06 } in result" 29.49/12.06 are unpacked to the following functions on top level 29.49/12.06 "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; 29.49/12.06 " 29.49/12.06 The bindings of the following Let/Where expression 29.49/12.06 "glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 29.49/12.06 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 29.49/12.06 ; 29.49/12.06 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 29.49/12.06 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 29.49/12.06 ; 29.49/12.06 mid_elt1 = mid_elt10 vv2; 29.49/12.06 ; 29.49/12.06 mid_elt10 (vyw,mid_elt1) = mid_elt1; 29.49/12.06 ; 29.49/12.06 mid_elt2 = mid_elt20 vv3; 29.49/12.06 ; 29.49/12.06 mid_elt20 (vyv,mid_elt2) = mid_elt2; 29.49/12.06 ; 29.49/12.06 mid_key1 = mid_key10 vv2; 29.49/12.06 ; 29.49/12.06 mid_key10 (mid_key1,vyx) = mid_key1; 29.49/12.06 ; 29.49/12.06 mid_key2 = mid_key20 vv3; 29.49/12.06 ; 29.49/12.06 mid_key20 (mid_key2,vyy) = mid_key2; 29.49/12.06 ; 29.49/12.06 vv2 = findMax fm1; 29.49/12.06 ; 29.49/12.06 vv3 = findMin fm2; 29.49/12.06 } 29.49/12.06 " 29.49/12.06 are unpacked to the following functions on top level 29.49/12.06 "glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 29.49/12.06 " 29.49/12.06 "glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 29.49/12.06 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 29.49/12.06 " 29.49/12.06 "glueBal2Vv3 xvx xvy = findMin xvx; 29.49/12.06 " 29.49/12.06 "glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 29.49/12.06 " 29.49/12.06 "glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 29.49/12.06 " 29.49/12.06 "glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 29.49/12.06 " 29.49/12.06 "glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 29.49/12.06 " 29.49/12.06 "glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 29.49/12.06 " 29.49/12.06 "glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 29.49/12.06 " 29.49/12.06 "glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 29.49/12.06 " 29.49/12.06 "glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 29.49/12.06 " 29.49/12.06 "glueBal2Vv2 xvx xvy = findMax xvy; 29.49/12.06 " 29.49/12.06 The bindings of the following Let/Where expression 29.49/12.06 "let { 29.49/12.06 biggest_left_key = fst (findMax fm_l); 29.49/12.06 } in biggest_left_key < key" 29.49/12.06 are unpacked to the following functions on top level 29.49/12.06 "mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 29.49/12.06 " 29.49/12.06 The bindings of the following Let/Where expression 29.49/12.06 "let { 29.49/12.06 smallest_right_key = fst (findMin fm_r); 29.49/12.06 } in key < smallest_right_key" 29.49/12.06 are unpacked to the following functions on top level 29.49/12.06 "mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 29.49/12.06 " 29.49/12.06 29.49/12.06 ---------------------------------------- 29.49/12.06 29.49/12.06 (12) 29.49/12.06 Obligation: 29.49/12.06 mainModule Main 29.49/12.06 module FiniteMap where { 29.49/12.06 import qualified Main; 29.49/12.06 import qualified Maybe; 29.49/12.06 import qualified Prelude; 29.49/12.06 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 29.49/12.06 29.49/12.06 instance (Eq a, Eq b) => Eq FiniteMap b a where { 29.49/12.06 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.49/12.06 } 29.49/12.06 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 29.49/12.06 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 29.49/12.06 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 29.49/12.06 29.49/12.06 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 29.49/12.06 29.49/12.06 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 29.49/12.06 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 29.49/12.06 29.49/12.06 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 29.49/12.06 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 29.49/12.06 29.49/12.06 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 29.49/12.06 29.49/12.06 delFromFM4 EmptyFM del_key = emptyFM; 29.49/12.06 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 29.49/12.06 29.49/12.06 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 29.49/12.06 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 29.49/12.06 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 29.49/12.06 29.49/12.06 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 29.49/12.06 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 29.49/12.06 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 29.49/12.06 29.49/12.06 emptyFM :: FiniteMap a b; 29.49/12.06 emptyFM = EmptyFM; 29.49/12.06 29.49/12.06 findMax :: FiniteMap a b -> (a,b); 29.49/12.06 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 29.49/12.06 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 29.49/12.06 29.49/12.06 findMin :: FiniteMap b a -> (b,a); 29.49/12.06 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 29.49/12.06 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 29.49/12.06 29.49/12.06 fmToList :: FiniteMap b a -> [(b,a)]; 29.49/12.06 fmToList fm = foldFM fmToList0 [] fm; 29.49/12.06 29.49/12.06 fmToList0 key elt rest = (key,elt) : rest; 29.49/12.06 29.49/12.06 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 29.49/12.06 foldFM k z EmptyFM = z; 29.49/12.06 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.49/12.06 29.49/12.06 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.49/12.06 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 29.49/12.06 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 29.49/12.06 glueBal fm1 fm2 = glueBal2 fm1 fm2; 29.49/12.06 29.49/12.06 glueBal2 fm1 fm2 = glueBal2GlueBal1 fm2 fm1 fm1 fm2 (sizeFM fm2 > sizeFM fm1); 29.49/12.06 29.49/12.06 glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 29.49/12.06 29.49/12.06 glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 29.49/12.06 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 29.49/12.06 29.49/12.06 glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 29.49/12.06 29.49/12.06 glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 29.49/12.06 29.49/12.06 glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 29.49/12.06 29.49/12.06 glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 29.49/12.06 29.49/12.06 glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 29.49/12.06 29.49/12.06 glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 29.49/12.06 29.49/12.06 glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 29.49/12.06 29.49/12.06 glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 29.49/12.06 29.49/12.06 glueBal2Vv2 xvx xvy = findMax xvy; 29.49/12.06 29.49/12.06 glueBal2Vv3 xvx xvy = findMin xvx; 29.49/12.06 29.49/12.06 glueBal3 fm1 EmptyFM = fm1; 29.49/12.06 glueBal3 wxz wyu = glueBal2 wxz wyu; 29.49/12.06 29.49/12.06 glueBal4 EmptyFM fm2 = fm2; 29.49/12.06 glueBal4 wyw wyx = glueBal3 wyw wyx; 29.49/12.06 29.49/12.06 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.49/12.06 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 29.49/12.06 29.49/12.06 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < 2); 29.49/12.06 29.49/12.06 mkBalBranch6Double_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wzy wzz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 29.49/12.06 29.49/12.06 mkBalBranch6Double_R wzy wzz xuu xuv (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wzy wzz fm_lrr fm_r); 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Double_L wzy wzz xuu xuv fm_L fm_R; 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Single_L wzy wzz xuu xuv fm_L fm_R; 29.49/12.06 mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Double_R wzy wzz xuu xuv fm_L fm_R; 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Single_R wzy wzz xuu xuv fm_L fm_R; 29.49/12.06 mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 29.49/12.06 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 29.49/12.06 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_l wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_r wzy wzz xuu xuv); 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 29.49/12.06 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_r wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_l wzy wzz xuu xuv); 29.49/12.06 29.49/12.06 mkBalBranch6Single_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wzy wzz fm_l fm_rl) fm_rr; 29.49/12.06 29.49/12.06 mkBalBranch6Single_R wzy wzz xuu xuv (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wzy wzz fm_lr fm_r); 29.49/12.06 29.49/12.06 mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuu; 29.49/12.06 29.49/12.06 mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; 29.49/12.06 29.49/12.06 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.49/12.06 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 29.49/12.06 29.49/12.06 mkBranchBalance_ok xuw xux xuy = True; 29.49/12.06 29.49/12.06 mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xux xuw; 29.49/12.06 29.49/12.06 mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 29.49/12.06 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 29.49/12.06 29.49/12.06 mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 29.49/12.06 29.49/12.06 mkBranchLeft_size xuw xux xuy = sizeFM xuw; 29.49/12.06 29.49/12.06 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; 29.49/12.06 29.49/12.06 mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuy xux xuy; 29.49/12.06 29.49/12.06 mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 29.49/12.06 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 29.49/12.06 29.49/12.06 mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 29.49/12.06 29.49/12.06 mkBranchRight_size xuw xux xuy = sizeFM xuy; 29.49/12.06 29.49/12.06 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 29.49/12.06 mkBranchUnbox xuw xux xuy x = x; 29.49/12.06 29.49/12.06 sIZE_RATIO :: Int; 29.49/12.06 sIZE_RATIO = 5; 29.49/12.06 29.49/12.06 sizeFM :: FiniteMap a b -> Int; 29.49/12.06 sizeFM EmptyFM = 0; 29.49/12.06 sizeFM (Branch vzu vzv size vzw vzx) = size; 29.49/12.06 29.49/12.06 } 29.49/12.06 module Maybe where { 29.49/12.06 import qualified FiniteMap; 29.49/12.06 import qualified Main; 29.49/12.06 import qualified Prelude; 29.49/12.06 } 29.49/12.06 module Main where { 29.49/12.06 import qualified FiniteMap; 29.49/12.06 import qualified Maybe; 29.49/12.06 import qualified Prelude; 29.49/12.06 } 29.49/12.06 29.49/12.06 ---------------------------------------- 29.49/12.06 29.49/12.06 (13) NumRed (SOUND) 29.49/12.06 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 29.49/12.06 ---------------------------------------- 29.49/12.06 29.49/12.06 (14) 29.49/12.06 Obligation: 29.49/12.06 mainModule Main 29.49/12.06 module FiniteMap where { 29.49/12.06 import qualified Main; 29.49/12.06 import qualified Maybe; 29.49/12.06 import qualified Prelude; 29.49/12.06 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 29.49/12.06 29.49/12.06 instance (Eq a, Eq b) => Eq FiniteMap a b where { 29.49/12.06 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.49/12.06 } 29.49/12.06 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 29.49/12.06 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 29.49/12.06 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 29.49/12.06 29.49/12.06 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 29.49/12.06 29.49/12.06 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 29.49/12.06 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 29.49/12.06 29.49/12.06 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 29.49/12.06 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 29.49/12.06 29.49/12.06 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 29.49/12.06 29.49/12.06 delFromFM4 EmptyFM del_key = emptyFM; 29.49/12.06 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 29.49/12.06 29.49/12.06 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 29.49/12.06 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 29.49/12.06 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 29.49/12.06 29.49/12.06 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 29.49/12.06 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 29.49/12.06 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 29.49/12.06 29.49/12.06 emptyFM :: FiniteMap b a; 29.49/12.06 emptyFM = EmptyFM; 29.49/12.06 29.49/12.06 findMax :: FiniteMap b a -> (b,a); 29.49/12.06 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 29.49/12.06 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 29.49/12.06 29.49/12.06 findMin :: FiniteMap a b -> (a,b); 29.49/12.06 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 29.49/12.06 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 29.49/12.06 29.49/12.06 fmToList :: FiniteMap b a -> [(b,a)]; 29.49/12.06 fmToList fm = foldFM fmToList0 [] fm; 29.49/12.06 29.49/12.06 fmToList0 key elt rest = (key,elt) : rest; 29.49/12.06 29.49/12.06 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 29.49/12.06 foldFM k z EmptyFM = z; 29.49/12.06 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.49/12.06 29.49/12.06 glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.49/12.06 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 29.49/12.06 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 29.49/12.06 glueBal fm1 fm2 = glueBal2 fm1 fm2; 29.49/12.06 29.49/12.06 glueBal2 fm1 fm2 = glueBal2GlueBal1 fm2 fm1 fm1 fm2 (sizeFM fm2 > sizeFM fm1); 29.49/12.06 29.49/12.06 glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 29.49/12.06 29.49/12.06 glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 29.49/12.06 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 29.49/12.06 29.49/12.06 glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 29.49/12.06 29.49/12.06 glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 29.49/12.06 29.49/12.06 glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 29.49/12.06 29.49/12.06 glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 29.49/12.06 29.49/12.06 glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 29.49/12.06 29.49/12.06 glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 29.49/12.06 29.49/12.06 glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 29.49/12.06 29.49/12.06 glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 29.49/12.06 29.49/12.06 glueBal2Vv2 xvx xvy = findMax xvy; 29.49/12.06 29.49/12.06 glueBal2Vv3 xvx xvy = findMin xvx; 29.49/12.06 29.49/12.06 glueBal3 fm1 EmptyFM = fm1; 29.49/12.06 glueBal3 wxz wyu = glueBal2 wxz wyu; 29.49/12.06 29.49/12.06 glueBal4 EmptyFM fm2 = fm2; 29.49/12.06 glueBal4 wyw wyx = glueBal3 wyw wyx; 29.49/12.06 29.49/12.06 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.49/12.06 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 29.49/12.06 29.49/12.06 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < Pos (Succ (Succ Zero))); 29.49/12.06 29.49/12.06 mkBalBranch6Double_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) key_rl elt_rl (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) wzy wzz fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); 29.49/12.06 29.49/12.06 mkBalBranch6Double_R wzy wzz xuu xuv (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) key_lr elt_lr (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) key_l elt_l fm_ll fm_lrl) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) wzy wzz fm_lrr fm_r); 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Double_L wzy wzz xuu xuv fm_L fm_R; 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Single_L wzy wzz xuu xuv fm_L fm_R; 29.49/12.06 mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 29.49/12.06 29.49/12.06 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); 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Double_R wzy wzz xuu xuv fm_L fm_R; 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Single_R wzy wzz xuu xuv fm_L fm_R; 29.49/12.06 mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 29.49/12.06 29.49/12.06 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); 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 29.49/12.06 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 29.49/12.06 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_l wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_r wzy wzz xuu xuv); 29.49/12.06 29.49/12.06 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 29.49/12.06 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_r wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_l wzy wzz xuu xuv); 29.49/12.06 29.49/12.06 mkBalBranch6Single_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) wzy wzz fm_l fm_rl) fm_rr; 29.49/12.06 29.49/12.06 mkBalBranch6Single_R wzy wzz xuu xuv (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) key_l elt_l fm_ll (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) wzy wzz fm_lr fm_r); 29.49/12.06 29.49/12.06 mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuu; 29.49/12.06 29.49/12.06 mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; 29.49/12.06 29.49/12.06 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.49/12.06 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 29.49/12.06 29.49/12.06 mkBranchBalance_ok xuw xux xuy = True; 29.49/12.06 29.49/12.06 mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xux xuw; 29.49/12.06 29.49/12.06 mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 29.49/12.06 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 29.49/12.06 29.49/12.06 mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 29.49/12.06 29.49/12.06 mkBranchLeft_size xuw xux xuy = sizeFM xuw; 29.49/12.06 29.49/12.06 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; 29.49/12.06 29.49/12.06 mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuy xux xuy; 29.49/12.06 29.49/12.06 mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 29.49/12.06 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 29.49/12.06 29.49/12.06 mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 29.49/12.06 29.49/12.06 mkBranchRight_size xuw xux xuy = sizeFM xuy; 29.49/12.06 29.49/12.06 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 29.49/12.06 mkBranchUnbox xuw xux xuy x = x; 29.49/12.06 29.49/12.06 sIZE_RATIO :: Int; 29.49/12.06 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 29.49/12.06 29.49/12.06 sizeFM :: FiniteMap b a -> Int; 29.49/12.06 sizeFM EmptyFM = Pos Zero; 29.49/12.06 sizeFM (Branch vzu vzv size vzw vzx) = size; 29.49/12.06 29.49/12.06 } 29.49/12.06 module Maybe where { 29.49/12.06 import qualified FiniteMap; 29.49/12.06 import qualified Main; 29.49/12.06 import qualified Prelude; 29.49/12.06 } 29.49/12.06 module Main where { 29.49/12.06 import qualified FiniteMap; 29.49/12.06 import qualified Maybe; 29.49/12.06 import qualified Prelude; 29.49/12.06 } 29.49/12.06 29.49/12.06 ---------------------------------------- 29.49/12.06 29.49/12.06 (15) Narrow (SOUND) 29.49/12.06 Haskell To QDPs 29.49/12.06 29.49/12.06 digraph dp_graph { 29.49/12.06 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.delFromFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 29.49/12.06 3[label="FiniteMap.delFromFM xwv3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 29.49/12.06 4[label="FiniteMap.delFromFM xwv3 xwv4",fontsize=16,color="burlywood",shape="triangle"];3710[label="xwv3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 3710[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3710 -> 5[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3711[label="xwv3/FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34",fontsize=10,color="white",style="solid",shape="box"];4 -> 3711[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3711 -> 6[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 5[label="FiniteMap.delFromFM FiniteMap.EmptyFM xwv4",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 29.49/12.06 6[label="FiniteMap.delFromFM (FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34) xwv4",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 29.49/12.06 7[label="FiniteMap.delFromFM4 FiniteMap.EmptyFM xwv4",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 29.49/12.06 8[label="FiniteMap.delFromFM3 (FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34) xwv4",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 29.49/12.06 9[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 29.49/12.06 10[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv4 (xwv4 > xwv30)",fontsize=16,color="black",shape="box"];10 -> 12[label="",style="solid", color="black", weight=3]; 29.49/12.06 11[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];12[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv4 (compare xwv4 xwv30 == GT)",fontsize=16,color="black",shape="box"];12 -> 13[label="",style="solid", color="black", weight=3]; 29.49/12.06 13[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv4 (compare3 xwv4 xwv30 == GT)",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 29.49/12.06 14[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv4 (compare2 xwv4 xwv30 (xwv4 == xwv30) == GT)",fontsize=16,color="burlywood",shape="box"];3712[label="xwv4/(xwv40,xwv41)",fontsize=10,color="white",style="solid",shape="box"];14 -> 3712[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3712 -> 15[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 15[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 (xwv40,xwv41) (compare2 (xwv40,xwv41) xwv30 ((xwv40,xwv41) == xwv30) == GT)",fontsize=16,color="burlywood",shape="box"];3713[label="xwv30/(xwv300,xwv301)",fontsize=10,color="white",style="solid",shape="box"];15 -> 3713[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3713 -> 16[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 16[label="FiniteMap.delFromFM2 (xwv300,xwv301) xwv31 xwv32 xwv33 xwv34 (xwv40,xwv41) (compare2 (xwv40,xwv41) (xwv300,xwv301) ((xwv40,xwv41) == (xwv300,xwv301)) == GT)",fontsize=16,color="black",shape="box"];16 -> 17[label="",style="solid", color="black", weight=3]; 29.49/12.06 17 -> 101[label="",style="dashed", color="red", weight=0]; 29.49/12.06 17[label="FiniteMap.delFromFM2 (xwv300,xwv301) xwv31 xwv32 xwv33 xwv34 (xwv40,xwv41) (compare2 (xwv40,xwv41) (xwv300,xwv301) (xwv40 == xwv300 && xwv41 == xwv301) == GT)",fontsize=16,color="magenta"];17 -> 102[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 17 -> 103[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 17 -> 104[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 17 -> 105[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 17 -> 106[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 17 -> 107[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 17 -> 108[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 17 -> 109[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 17 -> 110[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 102[label="xwv301",fontsize=16,color="green",shape="box"];103[label="xwv40",fontsize=16,color="green",shape="box"];104[label="xwv33",fontsize=16,color="green",shape="box"];105[label="xwv32",fontsize=16,color="green",shape="box"];106[label="xwv41",fontsize=16,color="green",shape="box"];107[label="xwv34",fontsize=16,color="green",shape="box"];108[label="xwv31",fontsize=16,color="green",shape="box"];109[label="xwv300",fontsize=16,color="green",shape="box"];110 -> 114[label="",style="dashed", color="red", weight=0]; 29.49/12.06 110[label="compare2 (xwv40,xwv41) (xwv300,xwv301) (xwv40 == xwv300 && xwv41 == xwv301) == GT",fontsize=16,color="magenta"];110 -> 115[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 110 -> 116[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 110 -> 117[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 110 -> 118[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 110 -> 119[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 101[label="FiniteMap.delFromFM2 (xwv15,xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21,xwv22) xwv24",fontsize=16,color="burlywood",shape="triangle"];3714[label="xwv24/False",fontsize=10,color="white",style="solid",shape="box"];101 -> 3714[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3714 -> 120[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3715[label="xwv24/True",fontsize=10,color="white",style="solid",shape="box"];101 -> 3715[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3715 -> 121[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 115[label="xwv41",fontsize=16,color="green",shape="box"];116[label="xwv40 == xwv300",fontsize=16,color="blue",shape="box"];3716[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];116 -> 3716[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3716 -> 122[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3717[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];116 -> 3717[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3717 -> 123[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3718[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];116 -> 3718[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3718 -> 124[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3719[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];116 -> 3719[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3719 -> 125[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3720[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];116 -> 3720[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3720 -> 126[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3721[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];116 -> 3721[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3721 -> 127[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3722[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];116 -> 3722[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3722 -> 128[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3723[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];116 -> 3723[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3723 -> 129[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3724[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];116 -> 3724[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3724 -> 130[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3725[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];116 -> 3725[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3725 -> 131[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3726[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];116 -> 3726[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3726 -> 132[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3727[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];116 -> 3727[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3727 -> 133[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3728[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];116 -> 3728[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3728 -> 134[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3729[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];116 -> 3729[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3729 -> 135[label="",style="solid", color="blue", weight=3]; 29.49/12.06 117[label="xwv300",fontsize=16,color="green",shape="box"];118[label="xwv40",fontsize=16,color="green",shape="box"];119[label="xwv301",fontsize=16,color="green",shape="box"];114[label="compare2 (xwv31,xwv32) (xwv33,xwv34) (xwv35 && xwv32 == xwv34) == GT",fontsize=16,color="burlywood",shape="triangle"];3730[label="xwv35/False",fontsize=10,color="white",style="solid",shape="box"];114 -> 3730[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3730 -> 136[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3731[label="xwv35/True",fontsize=10,color="white",style="solid",shape="box"];114 -> 3731[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3731 -> 137[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 120[label="FiniteMap.delFromFM2 (xwv15,xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21,xwv22) False",fontsize=16,color="black",shape="box"];120 -> 138[label="",style="solid", color="black", weight=3]; 29.49/12.06 121[label="FiniteMap.delFromFM2 (xwv15,xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21,xwv22) True",fontsize=16,color="black",shape="box"];121 -> 139[label="",style="solid", color="black", weight=3]; 29.49/12.06 122[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];3732[label="xwv40/(xwv400,xwv401,xwv402)",fontsize=10,color="white",style="solid",shape="box"];122 -> 3732[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3732 -> 140[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 123[label="xwv40 == xwv300",fontsize=16,color="black",shape="triangle"];123 -> 141[label="",style="solid", color="black", weight=3]; 29.49/12.06 124[label="xwv40 == xwv300",fontsize=16,color="black",shape="triangle"];124 -> 142[label="",style="solid", color="black", weight=3]; 29.49/12.06 125[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];3733[label="xwv40/Nothing",fontsize=10,color="white",style="solid",shape="box"];125 -> 3733[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3733 -> 143[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3734[label="xwv40/Just xwv400",fontsize=10,color="white",style="solid",shape="box"];125 -> 3734[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3734 -> 144[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 126[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];3735[label="xwv40/LT",fontsize=10,color="white",style="solid",shape="box"];126 -> 3735[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3735 -> 145[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3736[label="xwv40/EQ",fontsize=10,color="white",style="solid",shape="box"];126 -> 3736[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3736 -> 146[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3737[label="xwv40/GT",fontsize=10,color="white",style="solid",shape="box"];126 -> 3737[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3737 -> 147[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 127[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];3738[label="xwv40/False",fontsize=10,color="white",style="solid",shape="box"];127 -> 3738[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3738 -> 148[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3739[label="xwv40/True",fontsize=10,color="white",style="solid",shape="box"];127 -> 3739[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3739 -> 149[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 128[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];3740[label="xwv40/Integer xwv400",fontsize=10,color="white",style="solid",shape="box"];128 -> 3740[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3740 -> 150[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 129[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];3741[label="xwv40/Left xwv400",fontsize=10,color="white",style="solid",shape="box"];129 -> 3741[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3741 -> 151[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3742[label="xwv40/Right xwv400",fontsize=10,color="white",style="solid",shape="box"];129 -> 3742[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3742 -> 152[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 130[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];3743[label="xwv40/()",fontsize=10,color="white",style="solid",shape="box"];130 -> 3743[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3743 -> 153[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 131[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];3744[label="xwv40/xwv400 :% xwv401",fontsize=10,color="white",style="solid",shape="box"];131 -> 3744[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3744 -> 154[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 132[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];3745[label="xwv40/(xwv400,xwv401)",fontsize=10,color="white",style="solid",shape="box"];132 -> 3745[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3745 -> 155[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 133[label="xwv40 == xwv300",fontsize=16,color="black",shape="triangle"];133 -> 156[label="",style="solid", color="black", weight=3]; 29.49/12.06 134[label="xwv40 == xwv300",fontsize=16,color="black",shape="triangle"];134 -> 157[label="",style="solid", color="black", weight=3]; 29.49/12.06 135[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];3746[label="xwv40/xwv400 : xwv401",fontsize=10,color="white",style="solid",shape="box"];135 -> 3746[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3746 -> 158[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3747[label="xwv40/[]",fontsize=10,color="white",style="solid",shape="box"];135 -> 3747[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3747 -> 159[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 136[label="compare2 (xwv31,xwv32) (xwv33,xwv34) (False && xwv32 == xwv34) == GT",fontsize=16,color="black",shape="box"];136 -> 160[label="",style="solid", color="black", weight=3]; 29.49/12.06 137[label="compare2 (xwv31,xwv32) (xwv33,xwv34) (True && xwv32 == xwv34) == GT",fontsize=16,color="black",shape="box"];137 -> 161[label="",style="solid", color="black", weight=3]; 29.49/12.06 138 -> 204[label="",style="dashed", color="red", weight=0]; 29.49/12.06 138[label="FiniteMap.delFromFM1 (xwv15,xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21,xwv22) ((xwv21,xwv22) < (xwv15,xwv16))",fontsize=16,color="magenta"];138 -> 205[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 139 -> 2803[label="",style="dashed", color="red", weight=0]; 29.49/12.06 139[label="FiniteMap.mkBalBranch (xwv15,xwv16) xwv17 xwv19 (FiniteMap.delFromFM xwv20 (xwv21,xwv22))",fontsize=16,color="magenta"];139 -> 2804[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 139 -> 2805[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 139 -> 2806[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 139 -> 2807[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 140[label="(xwv400,xwv401,xwv402) == xwv300",fontsize=16,color="burlywood",shape="box"];3748[label="xwv300/(xwv3000,xwv3001,xwv3002)",fontsize=10,color="white",style="solid",shape="box"];140 -> 3748[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3748 -> 165[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 141[label="primEqInt xwv40 xwv300",fontsize=16,color="burlywood",shape="triangle"];3749[label="xwv40/Pos xwv400",fontsize=10,color="white",style="solid",shape="box"];141 -> 3749[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3749 -> 166[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3750[label="xwv40/Neg xwv400",fontsize=10,color="white",style="solid",shape="box"];141 -> 3750[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3750 -> 167[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 142[label="primEqDouble xwv40 xwv300",fontsize=16,color="burlywood",shape="box"];3751[label="xwv40/Double xwv400 xwv401",fontsize=10,color="white",style="solid",shape="box"];142 -> 3751[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3751 -> 168[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 143[label="Nothing == xwv300",fontsize=16,color="burlywood",shape="box"];3752[label="xwv300/Nothing",fontsize=10,color="white",style="solid",shape="box"];143 -> 3752[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3752 -> 169[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3753[label="xwv300/Just xwv3000",fontsize=10,color="white",style="solid",shape="box"];143 -> 3753[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3753 -> 170[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 144[label="Just xwv400 == xwv300",fontsize=16,color="burlywood",shape="box"];3754[label="xwv300/Nothing",fontsize=10,color="white",style="solid",shape="box"];144 -> 3754[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3754 -> 171[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3755[label="xwv300/Just xwv3000",fontsize=10,color="white",style="solid",shape="box"];144 -> 3755[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3755 -> 172[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 145[label="LT == xwv300",fontsize=16,color="burlywood",shape="box"];3756[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];145 -> 3756[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3756 -> 173[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3757[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];145 -> 3757[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3757 -> 174[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3758[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];145 -> 3758[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3758 -> 175[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 146[label="EQ == xwv300",fontsize=16,color="burlywood",shape="box"];3759[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];146 -> 3759[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3759 -> 176[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3760[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];146 -> 3760[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3760 -> 177[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3761[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];146 -> 3761[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3761 -> 178[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 147[label="GT == xwv300",fontsize=16,color="burlywood",shape="box"];3762[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];147 -> 3762[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3762 -> 179[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3763[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];147 -> 3763[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3763 -> 180[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3764[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];147 -> 3764[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3764 -> 181[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 148[label="False == xwv300",fontsize=16,color="burlywood",shape="box"];3765[label="xwv300/False",fontsize=10,color="white",style="solid",shape="box"];148 -> 3765[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3765 -> 182[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3766[label="xwv300/True",fontsize=10,color="white",style="solid",shape="box"];148 -> 3766[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3766 -> 183[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 149[label="True == xwv300",fontsize=16,color="burlywood",shape="box"];3767[label="xwv300/False",fontsize=10,color="white",style="solid",shape="box"];149 -> 3767[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3767 -> 184[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3768[label="xwv300/True",fontsize=10,color="white",style="solid",shape="box"];149 -> 3768[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3768 -> 185[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 150[label="Integer xwv400 == xwv300",fontsize=16,color="burlywood",shape="box"];3769[label="xwv300/Integer xwv3000",fontsize=10,color="white",style="solid",shape="box"];150 -> 3769[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3769 -> 186[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 151[label="Left xwv400 == xwv300",fontsize=16,color="burlywood",shape="box"];3770[label="xwv300/Left xwv3000",fontsize=10,color="white",style="solid",shape="box"];151 -> 3770[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3770 -> 187[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3771[label="xwv300/Right xwv3000",fontsize=10,color="white",style="solid",shape="box"];151 -> 3771[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3771 -> 188[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 152[label="Right xwv400 == xwv300",fontsize=16,color="burlywood",shape="box"];3772[label="xwv300/Left xwv3000",fontsize=10,color="white",style="solid",shape="box"];152 -> 3772[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3772 -> 189[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3773[label="xwv300/Right xwv3000",fontsize=10,color="white",style="solid",shape="box"];152 -> 3773[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3773 -> 190[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 153[label="() == xwv300",fontsize=16,color="burlywood",shape="box"];3774[label="xwv300/()",fontsize=10,color="white",style="solid",shape="box"];153 -> 3774[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3774 -> 191[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 154[label="xwv400 :% xwv401 == xwv300",fontsize=16,color="burlywood",shape="box"];3775[label="xwv300/xwv3000 :% xwv3001",fontsize=10,color="white",style="solid",shape="box"];154 -> 3775[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3775 -> 192[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 155[label="(xwv400,xwv401) == xwv300",fontsize=16,color="burlywood",shape="box"];3776[label="xwv300/(xwv3000,xwv3001)",fontsize=10,color="white",style="solid",shape="box"];155 -> 3776[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3776 -> 193[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 156[label="primEqFloat xwv40 xwv300",fontsize=16,color="burlywood",shape="box"];3777[label="xwv40/Float xwv400 xwv401",fontsize=10,color="white",style="solid",shape="box"];156 -> 3777[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3777 -> 194[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 157[label="primEqChar xwv40 xwv300",fontsize=16,color="burlywood",shape="box"];3778[label="xwv40/Char xwv400",fontsize=10,color="white",style="solid",shape="box"];157 -> 3778[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3778 -> 195[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 158[label="xwv400 : xwv401 == xwv300",fontsize=16,color="burlywood",shape="box"];3779[label="xwv300/xwv3000 : xwv3001",fontsize=10,color="white",style="solid",shape="box"];158 -> 3779[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3779 -> 196[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3780[label="xwv300/[]",fontsize=10,color="white",style="solid",shape="box"];158 -> 3780[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3780 -> 197[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 159[label="[] == xwv300",fontsize=16,color="burlywood",shape="box"];3781[label="xwv300/xwv3000 : xwv3001",fontsize=10,color="white",style="solid",shape="box"];159 -> 3781[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3781 -> 198[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3782[label="xwv300/[]",fontsize=10,color="white",style="solid",shape="box"];159 -> 3782[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3782 -> 199[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 160 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.06 160[label="compare2 (xwv31,xwv32) (xwv33,xwv34) False == GT",fontsize=16,color="magenta"];160 -> 200[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 160 -> 201[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 161 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.06 161[label="compare2 (xwv31,xwv32) (xwv33,xwv34) (xwv32 == xwv34) == GT",fontsize=16,color="magenta"];161 -> 202[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 161 -> 203[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 205[label="(xwv21,xwv22) < (xwv15,xwv16)",fontsize=16,color="black",shape="box"];205 -> 207[label="",style="solid", color="black", weight=3]; 29.49/12.06 204[label="FiniteMap.delFromFM1 (xwv15,xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21,xwv22) xwv37",fontsize=16,color="burlywood",shape="triangle"];3783[label="xwv37/False",fontsize=10,color="white",style="solid",shape="box"];204 -> 3783[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3783 -> 208[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3784[label="xwv37/True",fontsize=10,color="white",style="solid",shape="box"];204 -> 3784[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3784 -> 209[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 2804[label="(xwv15,xwv16)",fontsize=16,color="green",shape="box"];2805 -> 4[label="",style="dashed", color="red", weight=0]; 29.49/12.06 2805[label="FiniteMap.delFromFM xwv20 (xwv21,xwv22)",fontsize=16,color="magenta"];2805 -> 2825[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 2805 -> 2826[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 2806[label="xwv17",fontsize=16,color="green",shape="box"];2807[label="xwv19",fontsize=16,color="green",shape="box"];2803[label="FiniteMap.mkBalBranch xwv200 xwv201 xwv253 xwv204",fontsize=16,color="black",shape="triangle"];2803 -> 2827[label="",style="solid", color="black", weight=3]; 29.49/12.06 165[label="(xwv400,xwv401,xwv402) == (xwv3000,xwv3001,xwv3002)",fontsize=16,color="black",shape="box"];165 -> 213[label="",style="solid", color="black", weight=3]; 29.49/12.06 166[label="primEqInt (Pos xwv400) xwv300",fontsize=16,color="burlywood",shape="box"];3785[label="xwv400/Succ xwv4000",fontsize=10,color="white",style="solid",shape="box"];166 -> 3785[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3785 -> 214[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3786[label="xwv400/Zero",fontsize=10,color="white",style="solid",shape="box"];166 -> 3786[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3786 -> 215[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 167[label="primEqInt (Neg xwv400) xwv300",fontsize=16,color="burlywood",shape="box"];3787[label="xwv400/Succ xwv4000",fontsize=10,color="white",style="solid",shape="box"];167 -> 3787[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3787 -> 216[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3788[label="xwv400/Zero",fontsize=10,color="white",style="solid",shape="box"];167 -> 3788[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3788 -> 217[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 168[label="primEqDouble (Double xwv400 xwv401) xwv300",fontsize=16,color="burlywood",shape="box"];3789[label="xwv300/Double xwv3000 xwv3001",fontsize=10,color="white",style="solid",shape="box"];168 -> 3789[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3789 -> 218[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 169[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];169 -> 219[label="",style="solid", color="black", weight=3]; 29.49/12.06 170[label="Nothing == Just xwv3000",fontsize=16,color="black",shape="box"];170 -> 220[label="",style="solid", color="black", weight=3]; 29.49/12.06 171[label="Just xwv400 == Nothing",fontsize=16,color="black",shape="box"];171 -> 221[label="",style="solid", color="black", weight=3]; 29.49/12.06 172[label="Just xwv400 == Just xwv3000",fontsize=16,color="black",shape="box"];172 -> 222[label="",style="solid", color="black", weight=3]; 29.49/12.06 173[label="LT == LT",fontsize=16,color="black",shape="box"];173 -> 223[label="",style="solid", color="black", weight=3]; 29.49/12.06 174[label="LT == EQ",fontsize=16,color="black",shape="box"];174 -> 224[label="",style="solid", color="black", weight=3]; 29.49/12.06 175[label="LT == GT",fontsize=16,color="black",shape="box"];175 -> 225[label="",style="solid", color="black", weight=3]; 29.49/12.06 176[label="EQ == LT",fontsize=16,color="black",shape="box"];176 -> 226[label="",style="solid", color="black", weight=3]; 29.49/12.06 177[label="EQ == EQ",fontsize=16,color="black",shape="box"];177 -> 227[label="",style="solid", color="black", weight=3]; 29.49/12.06 178[label="EQ == GT",fontsize=16,color="black",shape="box"];178 -> 228[label="",style="solid", color="black", weight=3]; 29.49/12.06 179[label="GT == LT",fontsize=16,color="black",shape="box"];179 -> 229[label="",style="solid", color="black", weight=3]; 29.49/12.06 180[label="GT == EQ",fontsize=16,color="black",shape="box"];180 -> 230[label="",style="solid", color="black", weight=3]; 29.49/12.06 181[label="GT == GT",fontsize=16,color="black",shape="box"];181 -> 231[label="",style="solid", color="black", weight=3]; 29.49/12.06 182[label="False == False",fontsize=16,color="black",shape="box"];182 -> 232[label="",style="solid", color="black", weight=3]; 29.49/12.06 183[label="False == True",fontsize=16,color="black",shape="box"];183 -> 233[label="",style="solid", color="black", weight=3]; 29.49/12.06 184[label="True == False",fontsize=16,color="black",shape="box"];184 -> 234[label="",style="solid", color="black", weight=3]; 29.49/12.06 185[label="True == True",fontsize=16,color="black",shape="box"];185 -> 235[label="",style="solid", color="black", weight=3]; 29.49/12.06 186[label="Integer xwv400 == Integer xwv3000",fontsize=16,color="black",shape="box"];186 -> 236[label="",style="solid", color="black", weight=3]; 29.49/12.06 187[label="Left xwv400 == Left xwv3000",fontsize=16,color="black",shape="box"];187 -> 237[label="",style="solid", color="black", weight=3]; 29.49/12.06 188[label="Left xwv400 == Right xwv3000",fontsize=16,color="black",shape="box"];188 -> 238[label="",style="solid", color="black", weight=3]; 29.49/12.06 189[label="Right xwv400 == Left xwv3000",fontsize=16,color="black",shape="box"];189 -> 239[label="",style="solid", color="black", weight=3]; 29.49/12.06 190[label="Right xwv400 == Right xwv3000",fontsize=16,color="black",shape="box"];190 -> 240[label="",style="solid", color="black", weight=3]; 29.49/12.06 191[label="() == ()",fontsize=16,color="black",shape="box"];191 -> 241[label="",style="solid", color="black", weight=3]; 29.49/12.06 192[label="xwv400 :% xwv401 == xwv3000 :% xwv3001",fontsize=16,color="black",shape="box"];192 -> 242[label="",style="solid", color="black", weight=3]; 29.49/12.06 193[label="(xwv400,xwv401) == (xwv3000,xwv3001)",fontsize=16,color="black",shape="box"];193 -> 243[label="",style="solid", color="black", weight=3]; 29.49/12.06 194[label="primEqFloat (Float xwv400 xwv401) xwv300",fontsize=16,color="burlywood",shape="box"];3790[label="xwv300/Float xwv3000 xwv3001",fontsize=10,color="white",style="solid",shape="box"];194 -> 3790[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3790 -> 244[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 195[label="primEqChar (Char xwv400) xwv300",fontsize=16,color="burlywood",shape="box"];3791[label="xwv300/Char xwv3000",fontsize=10,color="white",style="solid",shape="box"];195 -> 3791[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3791 -> 245[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 196[label="xwv400 : xwv401 == xwv3000 : xwv3001",fontsize=16,color="black",shape="box"];196 -> 246[label="",style="solid", color="black", weight=3]; 29.49/12.06 197[label="xwv400 : xwv401 == []",fontsize=16,color="black",shape="box"];197 -> 247[label="",style="solid", color="black", weight=3]; 29.49/12.06 198[label="[] == xwv3000 : xwv3001",fontsize=16,color="black",shape="box"];198 -> 248[label="",style="solid", color="black", weight=3]; 29.49/12.06 199[label="[] == []",fontsize=16,color="black",shape="box"];199 -> 249[label="",style="solid", color="black", weight=3]; 29.49/12.06 200[label="GT",fontsize=16,color="green",shape="box"];201 -> 1330[label="",style="dashed", color="red", weight=0]; 29.49/12.06 201[label="compare2 (xwv31,xwv32) (xwv33,xwv34) False",fontsize=16,color="magenta"];201 -> 1331[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 201 -> 1332[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 201 -> 1333[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 202[label="GT",fontsize=16,color="green",shape="box"];203 -> 1330[label="",style="dashed", color="red", weight=0]; 29.49/12.06 203[label="compare2 (xwv31,xwv32) (xwv33,xwv34) (xwv32 == xwv34)",fontsize=16,color="magenta"];203 -> 1334[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 203 -> 1335[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 203 -> 1336[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 207 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.06 207[label="compare (xwv21,xwv22) (xwv15,xwv16) == LT",fontsize=16,color="magenta"];207 -> 262[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 207 -> 263[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 208[label="FiniteMap.delFromFM1 (xwv15,xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21,xwv22) False",fontsize=16,color="black",shape="box"];208 -> 264[label="",style="solid", color="black", weight=3]; 29.49/12.06 209[label="FiniteMap.delFromFM1 (xwv15,xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21,xwv22) True",fontsize=16,color="black",shape="box"];209 -> 265[label="",style="solid", color="black", weight=3]; 29.49/12.06 2825[label="(xwv21,xwv22)",fontsize=16,color="green",shape="box"];2826[label="xwv20",fontsize=16,color="green",shape="box"];2827[label="FiniteMap.mkBalBranch6 xwv200 xwv201 xwv253 xwv204",fontsize=16,color="black",shape="box"];2827 -> 2838[label="",style="solid", color="black", weight=3]; 29.49/12.06 213 -> 374[label="",style="dashed", color="red", weight=0]; 29.49/12.06 213[label="xwv400 == xwv3000 && xwv401 == xwv3001 && xwv402 == xwv3002",fontsize=16,color="magenta"];213 -> 375[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 213 -> 376[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 214[label="primEqInt (Pos (Succ xwv4000)) xwv300",fontsize=16,color="burlywood",shape="box"];3792[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];214 -> 3792[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3792 -> 273[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3793[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];214 -> 3793[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3793 -> 274[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 215[label="primEqInt (Pos Zero) xwv300",fontsize=16,color="burlywood",shape="box"];3794[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];215 -> 3794[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3794 -> 275[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3795[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];215 -> 3795[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3795 -> 276[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 216[label="primEqInt (Neg (Succ xwv4000)) xwv300",fontsize=16,color="burlywood",shape="box"];3796[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];216 -> 3796[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3796 -> 277[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3797[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];216 -> 3797[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3797 -> 278[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 217[label="primEqInt (Neg Zero) xwv300",fontsize=16,color="burlywood",shape="box"];3798[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];217 -> 3798[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3798 -> 279[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3799[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];217 -> 3799[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3799 -> 280[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 218[label="primEqDouble (Double xwv400 xwv401) (Double xwv3000 xwv3001)",fontsize=16,color="black",shape="box"];218 -> 281[label="",style="solid", color="black", weight=3]; 29.49/12.06 219[label="True",fontsize=16,color="green",shape="box"];220[label="False",fontsize=16,color="green",shape="box"];221[label="False",fontsize=16,color="green",shape="box"];222[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];3800[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 3800[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3800 -> 282[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3801[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 3801[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3801 -> 283[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3802[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 3802[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3802 -> 284[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3803[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 3803[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3803 -> 285[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3804[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 3804[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3804 -> 286[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3805[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 3805[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3805 -> 287[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3806[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 3806[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3806 -> 288[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3807[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 3807[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3807 -> 289[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3808[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 3808[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3808 -> 290[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3809[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 3809[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3809 -> 291[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3810[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 3810[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3810 -> 292[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3811[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 3811[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3811 -> 293[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3812[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 3812[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3812 -> 294[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3813[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 3813[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3813 -> 295[label="",style="solid", color="blue", weight=3]; 29.49/12.06 223[label="True",fontsize=16,color="green",shape="box"];224[label="False",fontsize=16,color="green",shape="box"];225[label="False",fontsize=16,color="green",shape="box"];226[label="False",fontsize=16,color="green",shape="box"];227[label="True",fontsize=16,color="green",shape="box"];228[label="False",fontsize=16,color="green",shape="box"];229[label="False",fontsize=16,color="green",shape="box"];230[label="False",fontsize=16,color="green",shape="box"];231[label="True",fontsize=16,color="green",shape="box"];232[label="True",fontsize=16,color="green",shape="box"];233[label="False",fontsize=16,color="green",shape="box"];234[label="False",fontsize=16,color="green",shape="box"];235[label="True",fontsize=16,color="green",shape="box"];236 -> 141[label="",style="dashed", color="red", weight=0]; 29.49/12.06 236[label="primEqInt xwv400 xwv3000",fontsize=16,color="magenta"];236 -> 296[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 236 -> 297[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 237[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];3814[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 3814[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3814 -> 298[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3815[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 3815[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3815 -> 299[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3816[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 3816[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3816 -> 300[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3817[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 3817[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3817 -> 301[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3818[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 3818[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3818 -> 302[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3819[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 3819[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3819 -> 303[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3820[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 3820[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3820 -> 304[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3821[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 3821[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3821 -> 305[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3822[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 3822[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3822 -> 306[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3823[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 3823[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3823 -> 307[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3824[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 3824[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3824 -> 308[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3825[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 3825[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3825 -> 309[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3826[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 3826[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3826 -> 310[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3827[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 3827[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3827 -> 311[label="",style="solid", color="blue", weight=3]; 29.49/12.06 238[label="False",fontsize=16,color="green",shape="box"];239[label="False",fontsize=16,color="green",shape="box"];240[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];3828[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 3828[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3828 -> 312[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3829[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 3829[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3829 -> 313[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3830[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 3830[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3830 -> 314[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3831[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 3831[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3831 -> 315[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3832[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 3832[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3832 -> 316[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3833[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 3833[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3833 -> 317[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3834[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 3834[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3834 -> 318[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3835[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 3835[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3835 -> 319[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3836[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 3836[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3836 -> 320[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3837[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 3837[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3837 -> 321[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3838[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 3838[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3838 -> 322[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3839[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 3839[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3839 -> 323[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3840[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 3840[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3840 -> 324[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3841[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 3841[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3841 -> 325[label="",style="solid", color="blue", weight=3]; 29.49/12.06 241[label="True",fontsize=16,color="green",shape="box"];242 -> 374[label="",style="dashed", color="red", weight=0]; 29.49/12.06 242[label="xwv400 == xwv3000 && xwv401 == xwv3001",fontsize=16,color="magenta"];242 -> 377[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 242 -> 378[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 243 -> 374[label="",style="dashed", color="red", weight=0]; 29.49/12.06 243[label="xwv400 == xwv3000 && xwv401 == xwv3001",fontsize=16,color="magenta"];243 -> 379[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 243 -> 380[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 244[label="primEqFloat (Float xwv400 xwv401) (Float xwv3000 xwv3001)",fontsize=16,color="black",shape="box"];244 -> 336[label="",style="solid", color="black", weight=3]; 29.49/12.06 245[label="primEqChar (Char xwv400) (Char xwv3000)",fontsize=16,color="black",shape="box"];245 -> 337[label="",style="solid", color="black", weight=3]; 29.49/12.06 246 -> 374[label="",style="dashed", color="red", weight=0]; 29.49/12.06 246[label="xwv400 == xwv3000 && xwv401 == xwv3001",fontsize=16,color="magenta"];246 -> 381[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 246 -> 382[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 247[label="False",fontsize=16,color="green",shape="box"];248[label="False",fontsize=16,color="green",shape="box"];249[label="True",fontsize=16,color="green",shape="box"];1331[label="(xwv33,xwv34)",fontsize=16,color="green",shape="box"];1332[label="(xwv31,xwv32)",fontsize=16,color="green",shape="box"];1333[label="False",fontsize=16,color="green",shape="box"];1330[label="compare2 xwv44 xwv46 xwv107",fontsize=16,color="burlywood",shape="triangle"];3842[label="xwv107/False",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3842[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3842 -> 1344[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3843[label="xwv107/True",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3843[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3843 -> 1345[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 1334[label="(xwv33,xwv34)",fontsize=16,color="green",shape="box"];1335[label="(xwv31,xwv32)",fontsize=16,color="green",shape="box"];1336[label="xwv32 == xwv34",fontsize=16,color="blue",shape="box"];3844[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3844[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3844 -> 1346[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3845[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3845[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3845 -> 1347[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3846[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3846[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3846 -> 1348[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3847[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3847[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3847 -> 1349[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3848[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3848[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3848 -> 1350[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3849[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3849[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3849 -> 1351[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3850[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3850[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3850 -> 1352[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3851[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3851[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3851 -> 1353[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3852[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3852[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3852 -> 1354[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3853[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3853[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3853 -> 1355[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3854[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3854[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3854 -> 1356[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3855[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3855[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3855 -> 1357[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3856[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3856[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3856 -> 1358[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3857[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3857[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3857 -> 1359[label="",style="solid", color="blue", weight=3]; 29.49/12.06 262[label="LT",fontsize=16,color="green",shape="box"];263[label="compare (xwv21,xwv22) (xwv15,xwv16)",fontsize=16,color="black",shape="box"];263 -> 354[label="",style="solid", color="black", weight=3]; 29.49/12.06 264 -> 355[label="",style="dashed", color="red", weight=0]; 29.49/12.06 264[label="FiniteMap.delFromFM0 (xwv15,xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21,xwv22) ((xwv15,xwv16) == (xwv21,xwv22))",fontsize=16,color="magenta"];264 -> 356[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 265 -> 2803[label="",style="dashed", color="red", weight=0]; 29.49/12.06 265[label="FiniteMap.mkBalBranch (xwv15,xwv16) xwv17 (FiniteMap.delFromFM xwv19 (xwv21,xwv22)) xwv20",fontsize=16,color="magenta"];265 -> 2812[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 265 -> 2813[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 265 -> 2814[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 265 -> 2815[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 2838 -> 2847[label="",style="dashed", color="red", weight=0]; 29.49/12.06 2838[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv200 xwv201 xwv253 xwv204 xwv200 xwv201 xwv253 xwv204 (FiniteMap.mkBalBranch6Size_l xwv200 xwv201 xwv253 xwv204 + FiniteMap.mkBalBranch6Size_r xwv200 xwv201 xwv253 xwv204 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];2838 -> 2848[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 375[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];3858[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];375 -> 3858[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3858 -> 386[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3859[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];375 -> 3859[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3859 -> 387[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3860[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];375 -> 3860[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3860 -> 388[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3861[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];375 -> 3861[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3861 -> 389[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3862[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];375 -> 3862[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3862 -> 390[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3863[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];375 -> 3863[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3863 -> 391[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3864[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];375 -> 3864[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3864 -> 392[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3865[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];375 -> 3865[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3865 -> 393[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3866[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];375 -> 3866[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3866 -> 394[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3867[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];375 -> 3867[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3867 -> 395[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3868[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];375 -> 3868[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3868 -> 396[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3869[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];375 -> 3869[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3869 -> 397[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3870[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];375 -> 3870[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3870 -> 398[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3871[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];375 -> 3871[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3871 -> 399[label="",style="solid", color="blue", weight=3]; 29.49/12.06 376 -> 374[label="",style="dashed", color="red", weight=0]; 29.49/12.06 376[label="xwv401 == xwv3001 && xwv402 == xwv3002",fontsize=16,color="magenta"];376 -> 400[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 376 -> 401[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 374[label="xwv55 && xwv68",fontsize=16,color="burlywood",shape="triangle"];3872[label="xwv55/False",fontsize=10,color="white",style="solid",shape="box"];374 -> 3872[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3872 -> 402[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3873[label="xwv55/True",fontsize=10,color="white",style="solid",shape="box"];374 -> 3873[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3873 -> 403[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 273[label="primEqInt (Pos (Succ xwv4000)) (Pos xwv3000)",fontsize=16,color="burlywood",shape="box"];3874[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];273 -> 3874[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3874 -> 404[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3875[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];273 -> 3875[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3875 -> 405[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 274[label="primEqInt (Pos (Succ xwv4000)) (Neg xwv3000)",fontsize=16,color="black",shape="box"];274 -> 406[label="",style="solid", color="black", weight=3]; 29.49/12.06 275[label="primEqInt (Pos Zero) (Pos xwv3000)",fontsize=16,color="burlywood",shape="box"];3876[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];275 -> 3876[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3876 -> 407[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3877[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];275 -> 3877[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3877 -> 408[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 276[label="primEqInt (Pos Zero) (Neg xwv3000)",fontsize=16,color="burlywood",shape="box"];3878[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];276 -> 3878[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3878 -> 409[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3879[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];276 -> 3879[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3879 -> 410[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 277[label="primEqInt (Neg (Succ xwv4000)) (Pos xwv3000)",fontsize=16,color="black",shape="box"];277 -> 411[label="",style="solid", color="black", weight=3]; 29.49/12.06 278[label="primEqInt (Neg (Succ xwv4000)) (Neg xwv3000)",fontsize=16,color="burlywood",shape="box"];3880[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];278 -> 3880[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3880 -> 412[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3881[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];278 -> 3881[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3881 -> 413[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 279[label="primEqInt (Neg Zero) (Pos xwv3000)",fontsize=16,color="burlywood",shape="box"];3882[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];279 -> 3882[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3882 -> 414[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3883[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];279 -> 3883[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3883 -> 415[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 280[label="primEqInt (Neg Zero) (Neg xwv3000)",fontsize=16,color="burlywood",shape="box"];3884[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];280 -> 3884[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3884 -> 416[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 3885[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];280 -> 3885[label="",style="solid", color="burlywood", weight=9]; 29.49/12.06 3885 -> 417[label="",style="solid", color="burlywood", weight=3]; 29.49/12.06 281 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.06 281[label="xwv400 * xwv3001 == xwv401 * xwv3000",fontsize=16,color="magenta"];281 -> 418[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 281 -> 419[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 282 -> 122[label="",style="dashed", color="red", weight=0]; 29.49/12.06 282[label="xwv400 == xwv3000",fontsize=16,color="magenta"];282 -> 420[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 282 -> 421[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 283 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.06 283[label="xwv400 == xwv3000",fontsize=16,color="magenta"];283 -> 422[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 283 -> 423[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 284 -> 124[label="",style="dashed", color="red", weight=0]; 29.49/12.06 284[label="xwv400 == xwv3000",fontsize=16,color="magenta"];284 -> 424[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 284 -> 425[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 285 -> 125[label="",style="dashed", color="red", weight=0]; 29.49/12.06 285[label="xwv400 == xwv3000",fontsize=16,color="magenta"];285 -> 426[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 285 -> 427[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 286 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.06 286[label="xwv400 == xwv3000",fontsize=16,color="magenta"];286 -> 428[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 286 -> 429[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 287 -> 127[label="",style="dashed", color="red", weight=0]; 29.49/12.06 287[label="xwv400 == xwv3000",fontsize=16,color="magenta"];287 -> 430[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 287 -> 431[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 288 -> 128[label="",style="dashed", color="red", weight=0]; 29.49/12.06 288[label="xwv400 == xwv3000",fontsize=16,color="magenta"];288 -> 432[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 288 -> 433[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 289 -> 129[label="",style="dashed", color="red", weight=0]; 29.49/12.06 289[label="xwv400 == xwv3000",fontsize=16,color="magenta"];289 -> 434[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 289 -> 435[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 290 -> 130[label="",style="dashed", color="red", weight=0]; 29.49/12.06 290[label="xwv400 == xwv3000",fontsize=16,color="magenta"];290 -> 436[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 290 -> 437[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 291 -> 131[label="",style="dashed", color="red", weight=0]; 29.49/12.06 291[label="xwv400 == xwv3000",fontsize=16,color="magenta"];291 -> 438[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 291 -> 439[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 292 -> 132[label="",style="dashed", color="red", weight=0]; 29.49/12.06 292[label="xwv400 == xwv3000",fontsize=16,color="magenta"];292 -> 440[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 292 -> 441[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 293 -> 133[label="",style="dashed", color="red", weight=0]; 29.49/12.06 293[label="xwv400 == xwv3000",fontsize=16,color="magenta"];293 -> 442[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 293 -> 443[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 294 -> 134[label="",style="dashed", color="red", weight=0]; 29.49/12.06 294[label="xwv400 == xwv3000",fontsize=16,color="magenta"];294 -> 444[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 294 -> 445[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 295 -> 135[label="",style="dashed", color="red", weight=0]; 29.49/12.06 295[label="xwv400 == xwv3000",fontsize=16,color="magenta"];295 -> 446[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 295 -> 447[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 296[label="xwv3000",fontsize=16,color="green",shape="box"];297[label="xwv400",fontsize=16,color="green",shape="box"];298 -> 122[label="",style="dashed", color="red", weight=0]; 29.49/12.06 298[label="xwv400 == xwv3000",fontsize=16,color="magenta"];298 -> 448[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 298 -> 449[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 299 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.06 299[label="xwv400 == xwv3000",fontsize=16,color="magenta"];299 -> 450[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 299 -> 451[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 300 -> 124[label="",style="dashed", color="red", weight=0]; 29.49/12.06 300[label="xwv400 == xwv3000",fontsize=16,color="magenta"];300 -> 452[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 300 -> 453[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 301 -> 125[label="",style="dashed", color="red", weight=0]; 29.49/12.06 301[label="xwv400 == xwv3000",fontsize=16,color="magenta"];301 -> 454[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 301 -> 455[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 302 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.06 302[label="xwv400 == xwv3000",fontsize=16,color="magenta"];302 -> 456[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 302 -> 457[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 303 -> 127[label="",style="dashed", color="red", weight=0]; 29.49/12.06 303[label="xwv400 == xwv3000",fontsize=16,color="magenta"];303 -> 458[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 303 -> 459[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 304 -> 128[label="",style="dashed", color="red", weight=0]; 29.49/12.06 304[label="xwv400 == xwv3000",fontsize=16,color="magenta"];304 -> 460[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 304 -> 461[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 305 -> 129[label="",style="dashed", color="red", weight=0]; 29.49/12.06 305[label="xwv400 == xwv3000",fontsize=16,color="magenta"];305 -> 462[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 305 -> 463[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 306 -> 130[label="",style="dashed", color="red", weight=0]; 29.49/12.06 306[label="xwv400 == xwv3000",fontsize=16,color="magenta"];306 -> 464[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 306 -> 465[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 307 -> 131[label="",style="dashed", color="red", weight=0]; 29.49/12.06 307[label="xwv400 == xwv3000",fontsize=16,color="magenta"];307 -> 466[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 307 -> 467[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 308 -> 132[label="",style="dashed", color="red", weight=0]; 29.49/12.06 308[label="xwv400 == xwv3000",fontsize=16,color="magenta"];308 -> 468[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 308 -> 469[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 309 -> 133[label="",style="dashed", color="red", weight=0]; 29.49/12.06 309[label="xwv400 == xwv3000",fontsize=16,color="magenta"];309 -> 470[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 309 -> 471[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 310 -> 134[label="",style="dashed", color="red", weight=0]; 29.49/12.06 310[label="xwv400 == xwv3000",fontsize=16,color="magenta"];310 -> 472[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 310 -> 473[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 311 -> 135[label="",style="dashed", color="red", weight=0]; 29.49/12.06 311[label="xwv400 == xwv3000",fontsize=16,color="magenta"];311 -> 474[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 311 -> 475[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 312 -> 122[label="",style="dashed", color="red", weight=0]; 29.49/12.06 312[label="xwv400 == xwv3000",fontsize=16,color="magenta"];312 -> 476[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 312 -> 477[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 313 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.06 313[label="xwv400 == xwv3000",fontsize=16,color="magenta"];313 -> 478[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 313 -> 479[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 314 -> 124[label="",style="dashed", color="red", weight=0]; 29.49/12.06 314[label="xwv400 == xwv3000",fontsize=16,color="magenta"];314 -> 480[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 314 -> 481[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 315 -> 125[label="",style="dashed", color="red", weight=0]; 29.49/12.06 315[label="xwv400 == xwv3000",fontsize=16,color="magenta"];315 -> 482[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 315 -> 483[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 316 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.06 316[label="xwv400 == xwv3000",fontsize=16,color="magenta"];316 -> 484[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 316 -> 485[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 317 -> 127[label="",style="dashed", color="red", weight=0]; 29.49/12.06 317[label="xwv400 == xwv3000",fontsize=16,color="magenta"];317 -> 486[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 317 -> 487[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 318 -> 128[label="",style="dashed", color="red", weight=0]; 29.49/12.06 318[label="xwv400 == xwv3000",fontsize=16,color="magenta"];318 -> 488[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 318 -> 489[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 319 -> 129[label="",style="dashed", color="red", weight=0]; 29.49/12.06 319[label="xwv400 == xwv3000",fontsize=16,color="magenta"];319 -> 490[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 319 -> 491[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 320 -> 130[label="",style="dashed", color="red", weight=0]; 29.49/12.06 320[label="xwv400 == xwv3000",fontsize=16,color="magenta"];320 -> 492[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 320 -> 493[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 321 -> 131[label="",style="dashed", color="red", weight=0]; 29.49/12.06 321[label="xwv400 == xwv3000",fontsize=16,color="magenta"];321 -> 494[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 321 -> 495[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 322 -> 132[label="",style="dashed", color="red", weight=0]; 29.49/12.06 322[label="xwv400 == xwv3000",fontsize=16,color="magenta"];322 -> 496[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 322 -> 497[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 323 -> 133[label="",style="dashed", color="red", weight=0]; 29.49/12.06 323[label="xwv400 == xwv3000",fontsize=16,color="magenta"];323 -> 498[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 323 -> 499[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 324 -> 134[label="",style="dashed", color="red", weight=0]; 29.49/12.06 324[label="xwv400 == xwv3000",fontsize=16,color="magenta"];324 -> 500[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 324 -> 501[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 325 -> 135[label="",style="dashed", color="red", weight=0]; 29.49/12.06 325[label="xwv400 == xwv3000",fontsize=16,color="magenta"];325 -> 502[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 325 -> 503[label="",style="dashed", color="magenta", weight=3]; 29.49/12.06 377[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];3886[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];377 -> 3886[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3886 -> 504[label="",style="solid", color="blue", weight=3]; 29.49/12.06 3887[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];377 -> 3887[label="",style="solid", color="blue", weight=9]; 29.49/12.06 3887 -> 505[label="",style="solid", color="blue", weight=3]; 29.49/12.07 378[label="xwv401 == xwv3001",fontsize=16,color="blue",shape="box"];3888[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];378 -> 3888[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3888 -> 506[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3889[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];378 -> 3889[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3889 -> 507[label="",style="solid", color="blue", weight=3]; 29.49/12.07 379[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];3890[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];379 -> 3890[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3890 -> 508[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3891[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];379 -> 3891[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3891 -> 509[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3892[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];379 -> 3892[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3892 -> 510[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3893[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];379 -> 3893[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3893 -> 511[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3894[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];379 -> 3894[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3894 -> 512[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3895[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];379 -> 3895[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3895 -> 513[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3896[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];379 -> 3896[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3896 -> 514[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3897[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];379 -> 3897[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3897 -> 515[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3898[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];379 -> 3898[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3898 -> 516[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3899[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];379 -> 3899[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3899 -> 517[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3900[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];379 -> 3900[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3900 -> 518[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3901[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];379 -> 3901[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3901 -> 519[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3902[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];379 -> 3902[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3902 -> 520[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3903[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];379 -> 3903[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3903 -> 521[label="",style="solid", color="blue", weight=3]; 29.49/12.07 380[label="xwv401 == xwv3001",fontsize=16,color="blue",shape="box"];3904[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];380 -> 3904[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3904 -> 522[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3905[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];380 -> 3905[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3905 -> 523[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3906[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];380 -> 3906[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3906 -> 524[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3907[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];380 -> 3907[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3907 -> 525[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3908[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];380 -> 3908[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3908 -> 526[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3909[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];380 -> 3909[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3909 -> 527[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3910[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];380 -> 3910[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3910 -> 528[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3911[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];380 -> 3911[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3911 -> 529[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3912[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];380 -> 3912[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3912 -> 530[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3913[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];380 -> 3913[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3913 -> 531[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3914[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];380 -> 3914[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3914 -> 532[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3915[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];380 -> 3915[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3915 -> 533[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3916[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];380 -> 3916[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3916 -> 534[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3917[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];380 -> 3917[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3917 -> 535[label="",style="solid", color="blue", weight=3]; 29.49/12.07 336 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.07 336[label="xwv400 * xwv3001 == xwv401 * xwv3000",fontsize=16,color="magenta"];336 -> 536[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 336 -> 537[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 337[label="primEqNat xwv400 xwv3000",fontsize=16,color="burlywood",shape="triangle"];3918[label="xwv400/Succ xwv4000",fontsize=10,color="white",style="solid",shape="box"];337 -> 3918[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3918 -> 538[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 3919[label="xwv400/Zero",fontsize=10,color="white",style="solid",shape="box"];337 -> 3919[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3919 -> 539[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 381[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];3920[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];381 -> 3920[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3920 -> 540[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3921[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];381 -> 3921[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3921 -> 541[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3922[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];381 -> 3922[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3922 -> 542[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3923[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];381 -> 3923[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3923 -> 543[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3924[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];381 -> 3924[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3924 -> 544[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3925[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];381 -> 3925[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3925 -> 545[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3926[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];381 -> 3926[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3926 -> 546[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3927[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];381 -> 3927[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3927 -> 547[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3928[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];381 -> 3928[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3928 -> 548[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3929[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];381 -> 3929[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3929 -> 549[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3930[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];381 -> 3930[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3930 -> 550[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3931[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];381 -> 3931[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3931 -> 551[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3932[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];381 -> 3932[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3932 -> 552[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3933[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];381 -> 3933[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3933 -> 553[label="",style="solid", color="blue", weight=3]; 29.49/12.07 382 -> 135[label="",style="dashed", color="red", weight=0]; 29.49/12.07 382[label="xwv401 == xwv3001",fontsize=16,color="magenta"];382 -> 554[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 382 -> 555[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1344[label="compare2 xwv44 xwv46 False",fontsize=16,color="black",shape="box"];1344 -> 1368[label="",style="solid", color="black", weight=3]; 29.49/12.07 1345[label="compare2 xwv44 xwv46 True",fontsize=16,color="black",shape="box"];1345 -> 1369[label="",style="solid", color="black", weight=3]; 29.49/12.07 1346 -> 122[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1346[label="xwv32 == xwv34",fontsize=16,color="magenta"];1346 -> 1370[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1346 -> 1371[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1347 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1347[label="xwv32 == xwv34",fontsize=16,color="magenta"];1347 -> 1372[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1347 -> 1373[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1348 -> 124[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1348[label="xwv32 == xwv34",fontsize=16,color="magenta"];1348 -> 1374[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1348 -> 1375[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1349 -> 125[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1349[label="xwv32 == xwv34",fontsize=16,color="magenta"];1349 -> 1376[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1349 -> 1377[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1350 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1350[label="xwv32 == xwv34",fontsize=16,color="magenta"];1350 -> 1378[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1350 -> 1379[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1351 -> 127[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1351[label="xwv32 == xwv34",fontsize=16,color="magenta"];1351 -> 1380[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1351 -> 1381[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1352 -> 128[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1352[label="xwv32 == xwv34",fontsize=16,color="magenta"];1352 -> 1382[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1352 -> 1383[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1353 -> 129[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1353[label="xwv32 == xwv34",fontsize=16,color="magenta"];1353 -> 1384[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1353 -> 1385[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1354 -> 130[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1354[label="xwv32 == xwv34",fontsize=16,color="magenta"];1354 -> 1386[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1354 -> 1387[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1355 -> 131[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1355[label="xwv32 == xwv34",fontsize=16,color="magenta"];1355 -> 1388[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1355 -> 1389[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1356 -> 132[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1356[label="xwv32 == xwv34",fontsize=16,color="magenta"];1356 -> 1390[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1356 -> 1391[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1357 -> 133[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1357[label="xwv32 == xwv34",fontsize=16,color="magenta"];1357 -> 1392[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1357 -> 1393[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1358 -> 134[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1358[label="xwv32 == xwv34",fontsize=16,color="magenta"];1358 -> 1394[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1358 -> 1395[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1359 -> 135[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1359[label="xwv32 == xwv34",fontsize=16,color="magenta"];1359 -> 1396[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1359 -> 1397[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 354[label="compare3 (xwv21,xwv22) (xwv15,xwv16)",fontsize=16,color="black",shape="box"];354 -> 586[label="",style="solid", color="black", weight=3]; 29.49/12.07 356 -> 132[label="",style="dashed", color="red", weight=0]; 29.49/12.07 356[label="(xwv15,xwv16) == (xwv21,xwv22)",fontsize=16,color="magenta"];356 -> 587[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 356 -> 588[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 355[label="FiniteMap.delFromFM0 (xwv15,xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21,xwv22) xwv67",fontsize=16,color="burlywood",shape="triangle"];3934[label="xwv67/False",fontsize=10,color="white",style="solid",shape="box"];355 -> 3934[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3934 -> 589[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 3935[label="xwv67/True",fontsize=10,color="white",style="solid",shape="box"];355 -> 3935[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3935 -> 590[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 2812[label="(xwv15,xwv16)",fontsize=16,color="green",shape="box"];2813[label="xwv20",fontsize=16,color="green",shape="box"];2814[label="xwv17",fontsize=16,color="green",shape="box"];2815 -> 4[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2815[label="FiniteMap.delFromFM xwv19 (xwv21,xwv22)",fontsize=16,color="magenta"];2815 -> 2828[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2815 -> 2829[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2848 -> 1471[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2848[label="FiniteMap.mkBalBranch6Size_l xwv200 xwv201 xwv253 xwv204 + FiniteMap.mkBalBranch6Size_r xwv200 xwv201 xwv253 xwv204 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];2848 -> 2849[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2848 -> 2850[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2847[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv200 xwv201 xwv253 xwv204 xwv200 xwv201 xwv253 xwv204 xwv254",fontsize=16,color="burlywood",shape="triangle"];3936[label="xwv254/False",fontsize=10,color="white",style="solid",shape="box"];2847 -> 3936[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3936 -> 2851[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 3937[label="xwv254/True",fontsize=10,color="white",style="solid",shape="box"];2847 -> 3937[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3937 -> 2852[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 386 -> 122[label="",style="dashed", color="red", weight=0]; 29.49/12.07 386[label="xwv400 == xwv3000",fontsize=16,color="magenta"];386 -> 599[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 386 -> 600[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 387 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.07 387[label="xwv400 == xwv3000",fontsize=16,color="magenta"];387 -> 601[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 387 -> 602[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 388 -> 124[label="",style="dashed", color="red", weight=0]; 29.49/12.07 388[label="xwv400 == xwv3000",fontsize=16,color="magenta"];388 -> 603[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 388 -> 604[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 389 -> 125[label="",style="dashed", color="red", weight=0]; 29.49/12.07 389[label="xwv400 == xwv3000",fontsize=16,color="magenta"];389 -> 605[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 389 -> 606[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 390 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 390[label="xwv400 == xwv3000",fontsize=16,color="magenta"];390 -> 607[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 390 -> 608[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 391 -> 127[label="",style="dashed", color="red", weight=0]; 29.49/12.07 391[label="xwv400 == xwv3000",fontsize=16,color="magenta"];391 -> 609[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 391 -> 610[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 392 -> 128[label="",style="dashed", color="red", weight=0]; 29.49/12.07 392[label="xwv400 == xwv3000",fontsize=16,color="magenta"];392 -> 611[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 392 -> 612[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 393 -> 129[label="",style="dashed", color="red", weight=0]; 29.49/12.07 393[label="xwv400 == xwv3000",fontsize=16,color="magenta"];393 -> 613[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 393 -> 614[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 394 -> 130[label="",style="dashed", color="red", weight=0]; 29.49/12.07 394[label="xwv400 == xwv3000",fontsize=16,color="magenta"];394 -> 615[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 394 -> 616[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 395 -> 131[label="",style="dashed", color="red", weight=0]; 29.49/12.07 395[label="xwv400 == xwv3000",fontsize=16,color="magenta"];395 -> 617[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 395 -> 618[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 396 -> 132[label="",style="dashed", color="red", weight=0]; 29.49/12.07 396[label="xwv400 == xwv3000",fontsize=16,color="magenta"];396 -> 619[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 396 -> 620[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 397 -> 133[label="",style="dashed", color="red", weight=0]; 29.49/12.07 397[label="xwv400 == xwv3000",fontsize=16,color="magenta"];397 -> 621[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 397 -> 622[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 398 -> 134[label="",style="dashed", color="red", weight=0]; 29.49/12.07 398[label="xwv400 == xwv3000",fontsize=16,color="magenta"];398 -> 623[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 398 -> 624[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 399 -> 135[label="",style="dashed", color="red", weight=0]; 29.49/12.07 399[label="xwv400 == xwv3000",fontsize=16,color="magenta"];399 -> 625[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 399 -> 626[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 400[label="xwv401 == xwv3001",fontsize=16,color="blue",shape="box"];3938[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 3938[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3938 -> 627[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3939[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 3939[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3939 -> 628[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3940[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 3940[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3940 -> 629[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3941[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 3941[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3941 -> 630[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3942[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 3942[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3942 -> 631[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3943[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 3943[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3943 -> 632[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3944[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 3944[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3944 -> 633[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3945[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 3945[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3945 -> 634[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3946[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 3946[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3946 -> 635[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3947[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 3947[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3947 -> 636[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3948[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 3948[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3948 -> 637[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3949[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 3949[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3949 -> 638[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3950[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 3950[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3950 -> 639[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3951[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];400 -> 3951[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3951 -> 640[label="",style="solid", color="blue", weight=3]; 29.49/12.07 401[label="xwv402 == xwv3002",fontsize=16,color="blue",shape="box"];3952[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 3952[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3952 -> 641[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3953[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 3953[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3953 -> 642[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3954[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 3954[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3954 -> 643[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3955[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 3955[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3955 -> 644[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3956[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 3956[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3956 -> 645[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3957[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 3957[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3957 -> 646[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3958[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 3958[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3958 -> 647[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3959[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 3959[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3959 -> 648[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3960[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 3960[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3960 -> 649[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3961[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 3961[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3961 -> 650[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3962[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 3962[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3962 -> 651[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3963[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 3963[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3963 -> 652[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3964[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 3964[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3964 -> 653[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3965[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 3965[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3965 -> 654[label="",style="solid", color="blue", weight=3]; 29.49/12.07 402[label="False && xwv68",fontsize=16,color="black",shape="box"];402 -> 655[label="",style="solid", color="black", weight=3]; 29.49/12.07 403[label="True && xwv68",fontsize=16,color="black",shape="box"];403 -> 656[label="",style="solid", color="black", weight=3]; 29.49/12.07 404[label="primEqInt (Pos (Succ xwv4000)) (Pos (Succ xwv30000))",fontsize=16,color="black",shape="box"];404 -> 657[label="",style="solid", color="black", weight=3]; 29.49/12.07 405[label="primEqInt (Pos (Succ xwv4000)) (Pos Zero)",fontsize=16,color="black",shape="box"];405 -> 658[label="",style="solid", color="black", weight=3]; 29.49/12.07 406[label="False",fontsize=16,color="green",shape="box"];407[label="primEqInt (Pos Zero) (Pos (Succ xwv30000))",fontsize=16,color="black",shape="box"];407 -> 659[label="",style="solid", color="black", weight=3]; 29.49/12.07 408[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];408 -> 660[label="",style="solid", color="black", weight=3]; 29.49/12.07 409[label="primEqInt (Pos Zero) (Neg (Succ xwv30000))",fontsize=16,color="black",shape="box"];409 -> 661[label="",style="solid", color="black", weight=3]; 29.49/12.07 410[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];410 -> 662[label="",style="solid", color="black", weight=3]; 29.49/12.07 411[label="False",fontsize=16,color="green",shape="box"];412[label="primEqInt (Neg (Succ xwv4000)) (Neg (Succ xwv30000))",fontsize=16,color="black",shape="box"];412 -> 663[label="",style="solid", color="black", weight=3]; 29.49/12.07 413[label="primEqInt (Neg (Succ xwv4000)) (Neg Zero)",fontsize=16,color="black",shape="box"];413 -> 664[label="",style="solid", color="black", weight=3]; 29.49/12.07 414[label="primEqInt (Neg Zero) (Pos (Succ xwv30000))",fontsize=16,color="black",shape="box"];414 -> 665[label="",style="solid", color="black", weight=3]; 29.49/12.07 415[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];415 -> 666[label="",style="solid", color="black", weight=3]; 29.49/12.07 416[label="primEqInt (Neg Zero) (Neg (Succ xwv30000))",fontsize=16,color="black",shape="box"];416 -> 667[label="",style="solid", color="black", weight=3]; 29.49/12.07 417[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];417 -> 668[label="",style="solid", color="black", weight=3]; 29.49/12.07 418[label="xwv401 * xwv3000",fontsize=16,color="black",shape="triangle"];418 -> 669[label="",style="solid", color="black", weight=3]; 29.49/12.07 419 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.07 419[label="xwv400 * xwv3001",fontsize=16,color="magenta"];419 -> 670[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 419 -> 671[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 420[label="xwv3000",fontsize=16,color="green",shape="box"];421[label="xwv400",fontsize=16,color="green",shape="box"];422[label="xwv3000",fontsize=16,color="green",shape="box"];423[label="xwv400",fontsize=16,color="green",shape="box"];424[label="xwv3000",fontsize=16,color="green",shape="box"];425[label="xwv400",fontsize=16,color="green",shape="box"];426[label="xwv3000",fontsize=16,color="green",shape="box"];427[label="xwv400",fontsize=16,color="green",shape="box"];428[label="xwv3000",fontsize=16,color="green",shape="box"];429[label="xwv400",fontsize=16,color="green",shape="box"];430[label="xwv3000",fontsize=16,color="green",shape="box"];431[label="xwv400",fontsize=16,color="green",shape="box"];432[label="xwv3000",fontsize=16,color="green",shape="box"];433[label="xwv400",fontsize=16,color="green",shape="box"];434[label="xwv3000",fontsize=16,color="green",shape="box"];435[label="xwv400",fontsize=16,color="green",shape="box"];436[label="xwv3000",fontsize=16,color="green",shape="box"];437[label="xwv400",fontsize=16,color="green",shape="box"];438[label="xwv3000",fontsize=16,color="green",shape="box"];439[label="xwv400",fontsize=16,color="green",shape="box"];440[label="xwv3000",fontsize=16,color="green",shape="box"];441[label="xwv400",fontsize=16,color="green",shape="box"];442[label="xwv3000",fontsize=16,color="green",shape="box"];443[label="xwv400",fontsize=16,color="green",shape="box"];444[label="xwv3000",fontsize=16,color="green",shape="box"];445[label="xwv400",fontsize=16,color="green",shape="box"];446[label="xwv3000",fontsize=16,color="green",shape="box"];447[label="xwv400",fontsize=16,color="green",shape="box"];448[label="xwv3000",fontsize=16,color="green",shape="box"];449[label="xwv400",fontsize=16,color="green",shape="box"];450[label="xwv3000",fontsize=16,color="green",shape="box"];451[label="xwv400",fontsize=16,color="green",shape="box"];452[label="xwv3000",fontsize=16,color="green",shape="box"];453[label="xwv400",fontsize=16,color="green",shape="box"];454[label="xwv3000",fontsize=16,color="green",shape="box"];455[label="xwv400",fontsize=16,color="green",shape="box"];456[label="xwv3000",fontsize=16,color="green",shape="box"];457[label="xwv400",fontsize=16,color="green",shape="box"];458[label="xwv3000",fontsize=16,color="green",shape="box"];459[label="xwv400",fontsize=16,color="green",shape="box"];460[label="xwv3000",fontsize=16,color="green",shape="box"];461[label="xwv400",fontsize=16,color="green",shape="box"];462[label="xwv3000",fontsize=16,color="green",shape="box"];463[label="xwv400",fontsize=16,color="green",shape="box"];464[label="xwv3000",fontsize=16,color="green",shape="box"];465[label="xwv400",fontsize=16,color="green",shape="box"];466[label="xwv3000",fontsize=16,color="green",shape="box"];467[label="xwv400",fontsize=16,color="green",shape="box"];468[label="xwv3000",fontsize=16,color="green",shape="box"];469[label="xwv400",fontsize=16,color="green",shape="box"];470[label="xwv3000",fontsize=16,color="green",shape="box"];471[label="xwv400",fontsize=16,color="green",shape="box"];472[label="xwv3000",fontsize=16,color="green",shape="box"];473[label="xwv400",fontsize=16,color="green",shape="box"];474[label="xwv3000",fontsize=16,color="green",shape="box"];475[label="xwv400",fontsize=16,color="green",shape="box"];476[label="xwv3000",fontsize=16,color="green",shape="box"];477[label="xwv400",fontsize=16,color="green",shape="box"];478[label="xwv3000",fontsize=16,color="green",shape="box"];479[label="xwv400",fontsize=16,color="green",shape="box"];480[label="xwv3000",fontsize=16,color="green",shape="box"];481[label="xwv400",fontsize=16,color="green",shape="box"];482[label="xwv3000",fontsize=16,color="green",shape="box"];483[label="xwv400",fontsize=16,color="green",shape="box"];484[label="xwv3000",fontsize=16,color="green",shape="box"];485[label="xwv400",fontsize=16,color="green",shape="box"];486[label="xwv3000",fontsize=16,color="green",shape="box"];487[label="xwv400",fontsize=16,color="green",shape="box"];488[label="xwv3000",fontsize=16,color="green",shape="box"];489[label="xwv400",fontsize=16,color="green",shape="box"];490[label="xwv3000",fontsize=16,color="green",shape="box"];491[label="xwv400",fontsize=16,color="green",shape="box"];492[label="xwv3000",fontsize=16,color="green",shape="box"];493[label="xwv400",fontsize=16,color="green",shape="box"];494[label="xwv3000",fontsize=16,color="green",shape="box"];495[label="xwv400",fontsize=16,color="green",shape="box"];496[label="xwv3000",fontsize=16,color="green",shape="box"];497[label="xwv400",fontsize=16,color="green",shape="box"];498[label="xwv3000",fontsize=16,color="green",shape="box"];499[label="xwv400",fontsize=16,color="green",shape="box"];500[label="xwv3000",fontsize=16,color="green",shape="box"];501[label="xwv400",fontsize=16,color="green",shape="box"];502[label="xwv3000",fontsize=16,color="green",shape="box"];503[label="xwv400",fontsize=16,color="green",shape="box"];504 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.07 504[label="xwv400 == xwv3000",fontsize=16,color="magenta"];504 -> 672[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 504 -> 673[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 505 -> 128[label="",style="dashed", color="red", weight=0]; 29.49/12.07 505[label="xwv400 == xwv3000",fontsize=16,color="magenta"];505 -> 674[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 505 -> 675[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 506 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.07 506[label="xwv401 == xwv3001",fontsize=16,color="magenta"];506 -> 676[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 506 -> 677[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 507 -> 128[label="",style="dashed", color="red", weight=0]; 29.49/12.07 507[label="xwv401 == xwv3001",fontsize=16,color="magenta"];507 -> 678[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 507 -> 679[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 508 -> 122[label="",style="dashed", color="red", weight=0]; 29.49/12.07 508[label="xwv400 == xwv3000",fontsize=16,color="magenta"];508 -> 680[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 508 -> 681[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 509 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.07 509[label="xwv400 == xwv3000",fontsize=16,color="magenta"];509 -> 682[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 509 -> 683[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 510 -> 124[label="",style="dashed", color="red", weight=0]; 29.49/12.07 510[label="xwv400 == xwv3000",fontsize=16,color="magenta"];510 -> 684[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 510 -> 685[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 511 -> 125[label="",style="dashed", color="red", weight=0]; 29.49/12.07 511[label="xwv400 == xwv3000",fontsize=16,color="magenta"];511 -> 686[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 511 -> 687[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 512 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 512[label="xwv400 == xwv3000",fontsize=16,color="magenta"];512 -> 688[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 512 -> 689[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 513 -> 127[label="",style="dashed", color="red", weight=0]; 29.49/12.07 513[label="xwv400 == xwv3000",fontsize=16,color="magenta"];513 -> 690[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 513 -> 691[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 514 -> 128[label="",style="dashed", color="red", weight=0]; 29.49/12.07 514[label="xwv400 == xwv3000",fontsize=16,color="magenta"];514 -> 692[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 514 -> 693[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 515 -> 129[label="",style="dashed", color="red", weight=0]; 29.49/12.07 515[label="xwv400 == xwv3000",fontsize=16,color="magenta"];515 -> 694[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 515 -> 695[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 516 -> 130[label="",style="dashed", color="red", weight=0]; 29.49/12.07 516[label="xwv400 == xwv3000",fontsize=16,color="magenta"];516 -> 696[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 516 -> 697[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 517 -> 131[label="",style="dashed", color="red", weight=0]; 29.49/12.07 517[label="xwv400 == xwv3000",fontsize=16,color="magenta"];517 -> 698[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 517 -> 699[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 518 -> 132[label="",style="dashed", color="red", weight=0]; 29.49/12.07 518[label="xwv400 == xwv3000",fontsize=16,color="magenta"];518 -> 700[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 518 -> 701[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 519 -> 133[label="",style="dashed", color="red", weight=0]; 29.49/12.07 519[label="xwv400 == xwv3000",fontsize=16,color="magenta"];519 -> 702[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 519 -> 703[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 520 -> 134[label="",style="dashed", color="red", weight=0]; 29.49/12.07 520[label="xwv400 == xwv3000",fontsize=16,color="magenta"];520 -> 704[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 520 -> 705[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 521 -> 135[label="",style="dashed", color="red", weight=0]; 29.49/12.07 521[label="xwv400 == xwv3000",fontsize=16,color="magenta"];521 -> 706[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 521 -> 707[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 522 -> 122[label="",style="dashed", color="red", weight=0]; 29.49/12.07 522[label="xwv401 == xwv3001",fontsize=16,color="magenta"];522 -> 708[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 522 -> 709[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 523 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.07 523[label="xwv401 == xwv3001",fontsize=16,color="magenta"];523 -> 710[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 523 -> 711[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 524 -> 124[label="",style="dashed", color="red", weight=0]; 29.49/12.07 524[label="xwv401 == xwv3001",fontsize=16,color="magenta"];524 -> 712[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 524 -> 713[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 525 -> 125[label="",style="dashed", color="red", weight=0]; 29.49/12.07 525[label="xwv401 == xwv3001",fontsize=16,color="magenta"];525 -> 714[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 525 -> 715[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 526 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 526[label="xwv401 == xwv3001",fontsize=16,color="magenta"];526 -> 716[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 526 -> 717[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 527 -> 127[label="",style="dashed", color="red", weight=0]; 29.49/12.07 527[label="xwv401 == xwv3001",fontsize=16,color="magenta"];527 -> 718[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 527 -> 719[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 528 -> 128[label="",style="dashed", color="red", weight=0]; 29.49/12.07 528[label="xwv401 == xwv3001",fontsize=16,color="magenta"];528 -> 720[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 528 -> 721[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 529 -> 129[label="",style="dashed", color="red", weight=0]; 29.49/12.07 529[label="xwv401 == xwv3001",fontsize=16,color="magenta"];529 -> 722[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 529 -> 723[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 530 -> 130[label="",style="dashed", color="red", weight=0]; 29.49/12.07 530[label="xwv401 == xwv3001",fontsize=16,color="magenta"];530 -> 724[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 530 -> 725[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 531 -> 131[label="",style="dashed", color="red", weight=0]; 29.49/12.07 531[label="xwv401 == xwv3001",fontsize=16,color="magenta"];531 -> 726[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 531 -> 727[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 532 -> 132[label="",style="dashed", color="red", weight=0]; 29.49/12.07 532[label="xwv401 == xwv3001",fontsize=16,color="magenta"];532 -> 728[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 532 -> 729[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 533 -> 133[label="",style="dashed", color="red", weight=0]; 29.49/12.07 533[label="xwv401 == xwv3001",fontsize=16,color="magenta"];533 -> 730[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 533 -> 731[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 534 -> 134[label="",style="dashed", color="red", weight=0]; 29.49/12.07 534[label="xwv401 == xwv3001",fontsize=16,color="magenta"];534 -> 732[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 534 -> 733[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 535 -> 135[label="",style="dashed", color="red", weight=0]; 29.49/12.07 535[label="xwv401 == xwv3001",fontsize=16,color="magenta"];535 -> 734[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 535 -> 735[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 536 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.07 536[label="xwv401 * xwv3000",fontsize=16,color="magenta"];536 -> 736[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 536 -> 737[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 537 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.07 537[label="xwv400 * xwv3001",fontsize=16,color="magenta"];537 -> 738[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 537 -> 739[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 538[label="primEqNat (Succ xwv4000) xwv3000",fontsize=16,color="burlywood",shape="box"];3966[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];538 -> 3966[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3966 -> 740[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 3967[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];538 -> 3967[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3967 -> 741[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 539[label="primEqNat Zero xwv3000",fontsize=16,color="burlywood",shape="box"];3968[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];539 -> 3968[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3968 -> 742[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 3969[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];539 -> 3969[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3969 -> 743[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 540 -> 122[label="",style="dashed", color="red", weight=0]; 29.49/12.07 540[label="xwv400 == xwv3000",fontsize=16,color="magenta"];540 -> 744[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 540 -> 745[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 541 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.07 541[label="xwv400 == xwv3000",fontsize=16,color="magenta"];541 -> 746[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 541 -> 747[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 542 -> 124[label="",style="dashed", color="red", weight=0]; 29.49/12.07 542[label="xwv400 == xwv3000",fontsize=16,color="magenta"];542 -> 748[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 542 -> 749[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 543 -> 125[label="",style="dashed", color="red", weight=0]; 29.49/12.07 543[label="xwv400 == xwv3000",fontsize=16,color="magenta"];543 -> 750[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 543 -> 751[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 544 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 544[label="xwv400 == xwv3000",fontsize=16,color="magenta"];544 -> 752[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 544 -> 753[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 545 -> 127[label="",style="dashed", color="red", weight=0]; 29.49/12.07 545[label="xwv400 == xwv3000",fontsize=16,color="magenta"];545 -> 754[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 545 -> 755[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 546 -> 128[label="",style="dashed", color="red", weight=0]; 29.49/12.07 546[label="xwv400 == xwv3000",fontsize=16,color="magenta"];546 -> 756[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 546 -> 757[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 547 -> 129[label="",style="dashed", color="red", weight=0]; 29.49/12.07 547[label="xwv400 == xwv3000",fontsize=16,color="magenta"];547 -> 758[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 547 -> 759[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 548 -> 130[label="",style="dashed", color="red", weight=0]; 29.49/12.07 548[label="xwv400 == xwv3000",fontsize=16,color="magenta"];548 -> 760[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 548 -> 761[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 549 -> 131[label="",style="dashed", color="red", weight=0]; 29.49/12.07 549[label="xwv400 == xwv3000",fontsize=16,color="magenta"];549 -> 762[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 549 -> 763[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 550 -> 132[label="",style="dashed", color="red", weight=0]; 29.49/12.07 550[label="xwv400 == xwv3000",fontsize=16,color="magenta"];550 -> 764[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 550 -> 765[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 551 -> 133[label="",style="dashed", color="red", weight=0]; 29.49/12.07 551[label="xwv400 == xwv3000",fontsize=16,color="magenta"];551 -> 766[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 551 -> 767[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 552 -> 134[label="",style="dashed", color="red", weight=0]; 29.49/12.07 552[label="xwv400 == xwv3000",fontsize=16,color="magenta"];552 -> 768[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 552 -> 769[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 553 -> 135[label="",style="dashed", color="red", weight=0]; 29.49/12.07 553[label="xwv400 == xwv3000",fontsize=16,color="magenta"];553 -> 770[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 553 -> 771[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 554[label="xwv3001",fontsize=16,color="green",shape="box"];555[label="xwv401",fontsize=16,color="green",shape="box"];1368[label="compare1 xwv44 xwv46 (xwv44 <= xwv46)",fontsize=16,color="burlywood",shape="box"];3970[label="xwv44/(xwv440,xwv441)",fontsize=10,color="white",style="solid",shape="box"];1368 -> 3970[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3970 -> 1408[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1369[label="EQ",fontsize=16,color="green",shape="box"];1370[label="xwv34",fontsize=16,color="green",shape="box"];1371[label="xwv32",fontsize=16,color="green",shape="box"];1372[label="xwv34",fontsize=16,color="green",shape="box"];1373[label="xwv32",fontsize=16,color="green",shape="box"];1374[label="xwv34",fontsize=16,color="green",shape="box"];1375[label="xwv32",fontsize=16,color="green",shape="box"];1376[label="xwv34",fontsize=16,color="green",shape="box"];1377[label="xwv32",fontsize=16,color="green",shape="box"];1378[label="xwv34",fontsize=16,color="green",shape="box"];1379[label="xwv32",fontsize=16,color="green",shape="box"];1380[label="xwv34",fontsize=16,color="green",shape="box"];1381[label="xwv32",fontsize=16,color="green",shape="box"];1382[label="xwv34",fontsize=16,color="green",shape="box"];1383[label="xwv32",fontsize=16,color="green",shape="box"];1384[label="xwv34",fontsize=16,color="green",shape="box"];1385[label="xwv32",fontsize=16,color="green",shape="box"];1386[label="xwv34",fontsize=16,color="green",shape="box"];1387[label="xwv32",fontsize=16,color="green",shape="box"];1388[label="xwv34",fontsize=16,color="green",shape="box"];1389[label="xwv32",fontsize=16,color="green",shape="box"];1390[label="xwv34",fontsize=16,color="green",shape="box"];1391[label="xwv32",fontsize=16,color="green",shape="box"];1392[label="xwv34",fontsize=16,color="green",shape="box"];1393[label="xwv32",fontsize=16,color="green",shape="box"];1394[label="xwv34",fontsize=16,color="green",shape="box"];1395[label="xwv32",fontsize=16,color="green",shape="box"];1396[label="xwv34",fontsize=16,color="green",shape="box"];1397[label="xwv32",fontsize=16,color="green",shape="box"];586 -> 1330[label="",style="dashed", color="red", weight=0]; 29.49/12.07 586[label="compare2 (xwv21,xwv22) (xwv15,xwv16) ((xwv21,xwv22) == (xwv15,xwv16))",fontsize=16,color="magenta"];586 -> 1340[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 586 -> 1341[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 586 -> 1342[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 587[label="(xwv21,xwv22)",fontsize=16,color="green",shape="box"];588[label="(xwv15,xwv16)",fontsize=16,color="green",shape="box"];589[label="FiniteMap.delFromFM0 (xwv15,xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21,xwv22) False",fontsize=16,color="black",shape="box"];589 -> 778[label="",style="solid", color="black", weight=3]; 29.49/12.07 590[label="FiniteMap.delFromFM0 (xwv15,xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21,xwv22) True",fontsize=16,color="black",shape="box"];590 -> 779[label="",style="solid", color="black", weight=3]; 29.49/12.07 2828[label="(xwv21,xwv22)",fontsize=16,color="green",shape="box"];2829[label="xwv19",fontsize=16,color="green",shape="box"];2849[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2850[label="FiniteMap.mkBalBranch6Size_l xwv200 xwv201 xwv253 xwv204 + FiniteMap.mkBalBranch6Size_r xwv200 xwv201 xwv253 xwv204",fontsize=16,color="black",shape="box"];2850 -> 2866[label="",style="solid", color="black", weight=3]; 29.49/12.07 1471[label="xwv440 < xwv460",fontsize=16,color="black",shape="triangle"];1471 -> 1498[label="",style="solid", color="black", weight=3]; 29.49/12.07 2851[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv200 xwv201 xwv253 xwv204 xwv200 xwv201 xwv253 xwv204 False",fontsize=16,color="black",shape="box"];2851 -> 2867[label="",style="solid", color="black", weight=3]; 29.49/12.07 2852[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv200 xwv201 xwv253 xwv204 xwv200 xwv201 xwv253 xwv204 True",fontsize=16,color="black",shape="box"];2852 -> 2868[label="",style="solid", color="black", weight=3]; 29.49/12.07 599[label="xwv3000",fontsize=16,color="green",shape="box"];600[label="xwv400",fontsize=16,color="green",shape="box"];601[label="xwv3000",fontsize=16,color="green",shape="box"];602[label="xwv400",fontsize=16,color="green",shape="box"];603[label="xwv3000",fontsize=16,color="green",shape="box"];604[label="xwv400",fontsize=16,color="green",shape="box"];605[label="xwv3000",fontsize=16,color="green",shape="box"];606[label="xwv400",fontsize=16,color="green",shape="box"];607[label="xwv3000",fontsize=16,color="green",shape="box"];608[label="xwv400",fontsize=16,color="green",shape="box"];609[label="xwv3000",fontsize=16,color="green",shape="box"];610[label="xwv400",fontsize=16,color="green",shape="box"];611[label="xwv3000",fontsize=16,color="green",shape="box"];612[label="xwv400",fontsize=16,color="green",shape="box"];613[label="xwv3000",fontsize=16,color="green",shape="box"];614[label="xwv400",fontsize=16,color="green",shape="box"];615[label="xwv3000",fontsize=16,color="green",shape="box"];616[label="xwv400",fontsize=16,color="green",shape="box"];617[label="xwv3000",fontsize=16,color="green",shape="box"];618[label="xwv400",fontsize=16,color="green",shape="box"];619[label="xwv3000",fontsize=16,color="green",shape="box"];620[label="xwv400",fontsize=16,color="green",shape="box"];621[label="xwv3000",fontsize=16,color="green",shape="box"];622[label="xwv400",fontsize=16,color="green",shape="box"];623[label="xwv3000",fontsize=16,color="green",shape="box"];624[label="xwv400",fontsize=16,color="green",shape="box"];625[label="xwv3000",fontsize=16,color="green",shape="box"];626[label="xwv400",fontsize=16,color="green",shape="box"];627 -> 122[label="",style="dashed", color="red", weight=0]; 29.49/12.07 627[label="xwv401 == xwv3001",fontsize=16,color="magenta"];627 -> 784[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 627 -> 785[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 628 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.07 628[label="xwv401 == xwv3001",fontsize=16,color="magenta"];628 -> 786[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 628 -> 787[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 629 -> 124[label="",style="dashed", color="red", weight=0]; 29.49/12.07 629[label="xwv401 == xwv3001",fontsize=16,color="magenta"];629 -> 788[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 629 -> 789[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 630 -> 125[label="",style="dashed", color="red", weight=0]; 29.49/12.07 630[label="xwv401 == xwv3001",fontsize=16,color="magenta"];630 -> 790[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 630 -> 791[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 631 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 631[label="xwv401 == xwv3001",fontsize=16,color="magenta"];631 -> 792[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 631 -> 793[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 632 -> 127[label="",style="dashed", color="red", weight=0]; 29.49/12.07 632[label="xwv401 == xwv3001",fontsize=16,color="magenta"];632 -> 794[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 632 -> 795[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 633 -> 128[label="",style="dashed", color="red", weight=0]; 29.49/12.07 633[label="xwv401 == xwv3001",fontsize=16,color="magenta"];633 -> 796[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 633 -> 797[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 634 -> 129[label="",style="dashed", color="red", weight=0]; 29.49/12.07 634[label="xwv401 == xwv3001",fontsize=16,color="magenta"];634 -> 798[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 634 -> 799[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 635 -> 130[label="",style="dashed", color="red", weight=0]; 29.49/12.07 635[label="xwv401 == xwv3001",fontsize=16,color="magenta"];635 -> 800[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 635 -> 801[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 636 -> 131[label="",style="dashed", color="red", weight=0]; 29.49/12.07 636[label="xwv401 == xwv3001",fontsize=16,color="magenta"];636 -> 802[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 636 -> 803[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 637 -> 132[label="",style="dashed", color="red", weight=0]; 29.49/12.07 637[label="xwv401 == xwv3001",fontsize=16,color="magenta"];637 -> 804[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 637 -> 805[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 638 -> 133[label="",style="dashed", color="red", weight=0]; 29.49/12.07 638[label="xwv401 == xwv3001",fontsize=16,color="magenta"];638 -> 806[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 638 -> 807[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 639 -> 134[label="",style="dashed", color="red", weight=0]; 29.49/12.07 639[label="xwv401 == xwv3001",fontsize=16,color="magenta"];639 -> 808[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 639 -> 809[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 640 -> 135[label="",style="dashed", color="red", weight=0]; 29.49/12.07 640[label="xwv401 == xwv3001",fontsize=16,color="magenta"];640 -> 810[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 640 -> 811[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 641 -> 122[label="",style="dashed", color="red", weight=0]; 29.49/12.07 641[label="xwv402 == xwv3002",fontsize=16,color="magenta"];641 -> 812[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 641 -> 813[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 642 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.07 642[label="xwv402 == xwv3002",fontsize=16,color="magenta"];642 -> 814[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 642 -> 815[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 643 -> 124[label="",style="dashed", color="red", weight=0]; 29.49/12.07 643[label="xwv402 == xwv3002",fontsize=16,color="magenta"];643 -> 816[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 643 -> 817[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 644 -> 125[label="",style="dashed", color="red", weight=0]; 29.49/12.07 644[label="xwv402 == xwv3002",fontsize=16,color="magenta"];644 -> 818[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 644 -> 819[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 645 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 645[label="xwv402 == xwv3002",fontsize=16,color="magenta"];645 -> 820[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 645 -> 821[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 646 -> 127[label="",style="dashed", color="red", weight=0]; 29.49/12.07 646[label="xwv402 == xwv3002",fontsize=16,color="magenta"];646 -> 822[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 646 -> 823[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 647 -> 128[label="",style="dashed", color="red", weight=0]; 29.49/12.07 647[label="xwv402 == xwv3002",fontsize=16,color="magenta"];647 -> 824[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 647 -> 825[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 648 -> 129[label="",style="dashed", color="red", weight=0]; 29.49/12.07 648[label="xwv402 == xwv3002",fontsize=16,color="magenta"];648 -> 826[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 648 -> 827[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 649 -> 130[label="",style="dashed", color="red", weight=0]; 29.49/12.07 649[label="xwv402 == xwv3002",fontsize=16,color="magenta"];649 -> 828[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 649 -> 829[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 650 -> 131[label="",style="dashed", color="red", weight=0]; 29.49/12.07 650[label="xwv402 == xwv3002",fontsize=16,color="magenta"];650 -> 830[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 650 -> 831[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 651 -> 132[label="",style="dashed", color="red", weight=0]; 29.49/12.07 651[label="xwv402 == xwv3002",fontsize=16,color="magenta"];651 -> 832[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 651 -> 833[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 652 -> 133[label="",style="dashed", color="red", weight=0]; 29.49/12.07 652[label="xwv402 == xwv3002",fontsize=16,color="magenta"];652 -> 834[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 652 -> 835[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 653 -> 134[label="",style="dashed", color="red", weight=0]; 29.49/12.07 653[label="xwv402 == xwv3002",fontsize=16,color="magenta"];653 -> 836[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 653 -> 837[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 654 -> 135[label="",style="dashed", color="red", weight=0]; 29.49/12.07 654[label="xwv402 == xwv3002",fontsize=16,color="magenta"];654 -> 838[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 654 -> 839[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 655[label="False",fontsize=16,color="green",shape="box"];656[label="xwv68",fontsize=16,color="green",shape="box"];657 -> 337[label="",style="dashed", color="red", weight=0]; 29.49/12.07 657[label="primEqNat xwv4000 xwv30000",fontsize=16,color="magenta"];657 -> 840[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 657 -> 841[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 658[label="False",fontsize=16,color="green",shape="box"];659[label="False",fontsize=16,color="green",shape="box"];660[label="True",fontsize=16,color="green",shape="box"];661[label="False",fontsize=16,color="green",shape="box"];662[label="True",fontsize=16,color="green",shape="box"];663 -> 337[label="",style="dashed", color="red", weight=0]; 29.49/12.07 663[label="primEqNat xwv4000 xwv30000",fontsize=16,color="magenta"];663 -> 842[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 663 -> 843[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 664[label="False",fontsize=16,color="green",shape="box"];665[label="False",fontsize=16,color="green",shape="box"];666[label="True",fontsize=16,color="green",shape="box"];667[label="False",fontsize=16,color="green",shape="box"];668[label="True",fontsize=16,color="green",shape="box"];669[label="primMulInt xwv401 xwv3000",fontsize=16,color="burlywood",shape="triangle"];3971[label="xwv401/Pos xwv4010",fontsize=10,color="white",style="solid",shape="box"];669 -> 3971[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3971 -> 844[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 3972[label="xwv401/Neg xwv4010",fontsize=10,color="white",style="solid",shape="box"];669 -> 3972[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3972 -> 845[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 670[label="xwv3001",fontsize=16,color="green",shape="box"];671[label="xwv400",fontsize=16,color="green",shape="box"];672[label="xwv3000",fontsize=16,color="green",shape="box"];673[label="xwv400",fontsize=16,color="green",shape="box"];674[label="xwv3000",fontsize=16,color="green",shape="box"];675[label="xwv400",fontsize=16,color="green",shape="box"];676[label="xwv3001",fontsize=16,color="green",shape="box"];677[label="xwv401",fontsize=16,color="green",shape="box"];678[label="xwv3001",fontsize=16,color="green",shape="box"];679[label="xwv401",fontsize=16,color="green",shape="box"];680[label="xwv3000",fontsize=16,color="green",shape="box"];681[label="xwv400",fontsize=16,color="green",shape="box"];682[label="xwv3000",fontsize=16,color="green",shape="box"];683[label="xwv400",fontsize=16,color="green",shape="box"];684[label="xwv3000",fontsize=16,color="green",shape="box"];685[label="xwv400",fontsize=16,color="green",shape="box"];686[label="xwv3000",fontsize=16,color="green",shape="box"];687[label="xwv400",fontsize=16,color="green",shape="box"];688[label="xwv3000",fontsize=16,color="green",shape="box"];689[label="xwv400",fontsize=16,color="green",shape="box"];690[label="xwv3000",fontsize=16,color="green",shape="box"];691[label="xwv400",fontsize=16,color="green",shape="box"];692[label="xwv3000",fontsize=16,color="green",shape="box"];693[label="xwv400",fontsize=16,color="green",shape="box"];694[label="xwv3000",fontsize=16,color="green",shape="box"];695[label="xwv400",fontsize=16,color="green",shape="box"];696[label="xwv3000",fontsize=16,color="green",shape="box"];697[label="xwv400",fontsize=16,color="green",shape="box"];698[label="xwv3000",fontsize=16,color="green",shape="box"];699[label="xwv400",fontsize=16,color="green",shape="box"];700[label="xwv3000",fontsize=16,color="green",shape="box"];701[label="xwv400",fontsize=16,color="green",shape="box"];702[label="xwv3000",fontsize=16,color="green",shape="box"];703[label="xwv400",fontsize=16,color="green",shape="box"];704[label="xwv3000",fontsize=16,color="green",shape="box"];705[label="xwv400",fontsize=16,color="green",shape="box"];706[label="xwv3000",fontsize=16,color="green",shape="box"];707[label="xwv400",fontsize=16,color="green",shape="box"];708[label="xwv3001",fontsize=16,color="green",shape="box"];709[label="xwv401",fontsize=16,color="green",shape="box"];710[label="xwv3001",fontsize=16,color="green",shape="box"];711[label="xwv401",fontsize=16,color="green",shape="box"];712[label="xwv3001",fontsize=16,color="green",shape="box"];713[label="xwv401",fontsize=16,color="green",shape="box"];714[label="xwv3001",fontsize=16,color="green",shape="box"];715[label="xwv401",fontsize=16,color="green",shape="box"];716[label="xwv3001",fontsize=16,color="green",shape="box"];717[label="xwv401",fontsize=16,color="green",shape="box"];718[label="xwv3001",fontsize=16,color="green",shape="box"];719[label="xwv401",fontsize=16,color="green",shape="box"];720[label="xwv3001",fontsize=16,color="green",shape="box"];721[label="xwv401",fontsize=16,color="green",shape="box"];722[label="xwv3001",fontsize=16,color="green",shape="box"];723[label="xwv401",fontsize=16,color="green",shape="box"];724[label="xwv3001",fontsize=16,color="green",shape="box"];725[label="xwv401",fontsize=16,color="green",shape="box"];726[label="xwv3001",fontsize=16,color="green",shape="box"];727[label="xwv401",fontsize=16,color="green",shape="box"];728[label="xwv3001",fontsize=16,color="green",shape="box"];729[label="xwv401",fontsize=16,color="green",shape="box"];730[label="xwv3001",fontsize=16,color="green",shape="box"];731[label="xwv401",fontsize=16,color="green",shape="box"];732[label="xwv3001",fontsize=16,color="green",shape="box"];733[label="xwv401",fontsize=16,color="green",shape="box"];734[label="xwv3001",fontsize=16,color="green",shape="box"];735[label="xwv401",fontsize=16,color="green",shape="box"];736[label="xwv3000",fontsize=16,color="green",shape="box"];737[label="xwv401",fontsize=16,color="green",shape="box"];738[label="xwv3001",fontsize=16,color="green",shape="box"];739[label="xwv400",fontsize=16,color="green",shape="box"];740[label="primEqNat (Succ xwv4000) (Succ xwv30000)",fontsize=16,color="black",shape="box"];740 -> 846[label="",style="solid", color="black", weight=3]; 29.49/12.07 741[label="primEqNat (Succ xwv4000) Zero",fontsize=16,color="black",shape="box"];741 -> 847[label="",style="solid", color="black", weight=3]; 29.49/12.07 742[label="primEqNat Zero (Succ xwv30000)",fontsize=16,color="black",shape="box"];742 -> 848[label="",style="solid", color="black", weight=3]; 29.49/12.07 743[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];743 -> 849[label="",style="solid", color="black", weight=3]; 29.49/12.07 744[label="xwv3000",fontsize=16,color="green",shape="box"];745[label="xwv400",fontsize=16,color="green",shape="box"];746[label="xwv3000",fontsize=16,color="green",shape="box"];747[label="xwv400",fontsize=16,color="green",shape="box"];748[label="xwv3000",fontsize=16,color="green",shape="box"];749[label="xwv400",fontsize=16,color="green",shape="box"];750[label="xwv3000",fontsize=16,color="green",shape="box"];751[label="xwv400",fontsize=16,color="green",shape="box"];752[label="xwv3000",fontsize=16,color="green",shape="box"];753[label="xwv400",fontsize=16,color="green",shape="box"];754[label="xwv3000",fontsize=16,color="green",shape="box"];755[label="xwv400",fontsize=16,color="green",shape="box"];756[label="xwv3000",fontsize=16,color="green",shape="box"];757[label="xwv400",fontsize=16,color="green",shape="box"];758[label="xwv3000",fontsize=16,color="green",shape="box"];759[label="xwv400",fontsize=16,color="green",shape="box"];760[label="xwv3000",fontsize=16,color="green",shape="box"];761[label="xwv400",fontsize=16,color="green",shape="box"];762[label="xwv3000",fontsize=16,color="green",shape="box"];763[label="xwv400",fontsize=16,color="green",shape="box"];764[label="xwv3000",fontsize=16,color="green",shape="box"];765[label="xwv400",fontsize=16,color="green",shape="box"];766[label="xwv3000",fontsize=16,color="green",shape="box"];767[label="xwv400",fontsize=16,color="green",shape="box"];768[label="xwv3000",fontsize=16,color="green",shape="box"];769[label="xwv400",fontsize=16,color="green",shape="box"];770[label="xwv3000",fontsize=16,color="green",shape="box"];771[label="xwv400",fontsize=16,color="green",shape="box"];1408[label="compare1 (xwv440,xwv441) xwv46 ((xwv440,xwv441) <= xwv46)",fontsize=16,color="burlywood",shape="box"];3973[label="xwv46/(xwv460,xwv461)",fontsize=10,color="white",style="solid",shape="box"];1408 -> 3973[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3973 -> 1415[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1340[label="(xwv15,xwv16)",fontsize=16,color="green",shape="box"];1341[label="(xwv21,xwv22)",fontsize=16,color="green",shape="box"];1342 -> 132[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1342[label="(xwv21,xwv22) == (xwv15,xwv16)",fontsize=16,color="magenta"];1342 -> 1360[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1342 -> 1361[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 778[label="error []",fontsize=16,color="red",shape="box"];779[label="FiniteMap.glueBal xwv19 xwv20",fontsize=16,color="burlywood",shape="box"];3974[label="xwv19/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];779 -> 3974[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3974 -> 854[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 3975[label="xwv19/FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194",fontsize=10,color="white",style="solid",shape="box"];779 -> 3975[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3975 -> 855[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 2866 -> 2891[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2866[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xwv200 xwv201 xwv253 xwv204) (FiniteMap.mkBalBranch6Size_r xwv200 xwv201 xwv253 xwv204)",fontsize=16,color="magenta"];2866 -> 2892[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1498 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1498[label="compare xwv440 xwv460 == LT",fontsize=16,color="magenta"];1498 -> 1558[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1498 -> 1559[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2867 -> 2888[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2867[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv200 xwv201 xwv253 xwv204 xwv200 xwv201 xwv253 xwv204 (FiniteMap.mkBalBranch6Size_r xwv200 xwv201 xwv253 xwv204 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv200 xwv201 xwv253 xwv204)",fontsize=16,color="magenta"];2867 -> 2889[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2868 -> 3583[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2868[label="FiniteMap.mkBranch (Pos (Succ Zero)) xwv200 xwv201 xwv253 xwv204",fontsize=16,color="magenta"];2868 -> 3584[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2868 -> 3585[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2868 -> 3586[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2868 -> 3587[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2868 -> 3588[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 784[label="xwv3001",fontsize=16,color="green",shape="box"];785[label="xwv401",fontsize=16,color="green",shape="box"];786[label="xwv3001",fontsize=16,color="green",shape="box"];787[label="xwv401",fontsize=16,color="green",shape="box"];788[label="xwv3001",fontsize=16,color="green",shape="box"];789[label="xwv401",fontsize=16,color="green",shape="box"];790[label="xwv3001",fontsize=16,color="green",shape="box"];791[label="xwv401",fontsize=16,color="green",shape="box"];792[label="xwv3001",fontsize=16,color="green",shape="box"];793[label="xwv401",fontsize=16,color="green",shape="box"];794[label="xwv3001",fontsize=16,color="green",shape="box"];795[label="xwv401",fontsize=16,color="green",shape="box"];796[label="xwv3001",fontsize=16,color="green",shape="box"];797[label="xwv401",fontsize=16,color="green",shape="box"];798[label="xwv3001",fontsize=16,color="green",shape="box"];799[label="xwv401",fontsize=16,color="green",shape="box"];800[label="xwv3001",fontsize=16,color="green",shape="box"];801[label="xwv401",fontsize=16,color="green",shape="box"];802[label="xwv3001",fontsize=16,color="green",shape="box"];803[label="xwv401",fontsize=16,color="green",shape="box"];804[label="xwv3001",fontsize=16,color="green",shape="box"];805[label="xwv401",fontsize=16,color="green",shape="box"];806[label="xwv3001",fontsize=16,color="green",shape="box"];807[label="xwv401",fontsize=16,color="green",shape="box"];808[label="xwv3001",fontsize=16,color="green",shape="box"];809[label="xwv401",fontsize=16,color="green",shape="box"];810[label="xwv3001",fontsize=16,color="green",shape="box"];811[label="xwv401",fontsize=16,color="green",shape="box"];812[label="xwv3002",fontsize=16,color="green",shape="box"];813[label="xwv402",fontsize=16,color="green",shape="box"];814[label="xwv3002",fontsize=16,color="green",shape="box"];815[label="xwv402",fontsize=16,color="green",shape="box"];816[label="xwv3002",fontsize=16,color="green",shape="box"];817[label="xwv402",fontsize=16,color="green",shape="box"];818[label="xwv3002",fontsize=16,color="green",shape="box"];819[label="xwv402",fontsize=16,color="green",shape="box"];820[label="xwv3002",fontsize=16,color="green",shape="box"];821[label="xwv402",fontsize=16,color="green",shape="box"];822[label="xwv3002",fontsize=16,color="green",shape="box"];823[label="xwv402",fontsize=16,color="green",shape="box"];824[label="xwv3002",fontsize=16,color="green",shape="box"];825[label="xwv402",fontsize=16,color="green",shape="box"];826[label="xwv3002",fontsize=16,color="green",shape="box"];827[label="xwv402",fontsize=16,color="green",shape="box"];828[label="xwv3002",fontsize=16,color="green",shape="box"];829[label="xwv402",fontsize=16,color="green",shape="box"];830[label="xwv3002",fontsize=16,color="green",shape="box"];831[label="xwv402",fontsize=16,color="green",shape="box"];832[label="xwv3002",fontsize=16,color="green",shape="box"];833[label="xwv402",fontsize=16,color="green",shape="box"];834[label="xwv3002",fontsize=16,color="green",shape="box"];835[label="xwv402",fontsize=16,color="green",shape="box"];836[label="xwv3002",fontsize=16,color="green",shape="box"];837[label="xwv402",fontsize=16,color="green",shape="box"];838[label="xwv3002",fontsize=16,color="green",shape="box"];839[label="xwv402",fontsize=16,color="green",shape="box"];840[label="xwv30000",fontsize=16,color="green",shape="box"];841[label="xwv4000",fontsize=16,color="green",shape="box"];842[label="xwv30000",fontsize=16,color="green",shape="box"];843[label="xwv4000",fontsize=16,color="green",shape="box"];844[label="primMulInt (Pos xwv4010) xwv3000",fontsize=16,color="burlywood",shape="box"];3976[label="xwv3000/Pos xwv30000",fontsize=10,color="white",style="solid",shape="box"];844 -> 3976[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3976 -> 860[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 3977[label="xwv3000/Neg xwv30000",fontsize=10,color="white",style="solid",shape="box"];844 -> 3977[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3977 -> 861[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 845[label="primMulInt (Neg xwv4010) xwv3000",fontsize=16,color="burlywood",shape="box"];3978[label="xwv3000/Pos xwv30000",fontsize=10,color="white",style="solid",shape="box"];845 -> 3978[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3978 -> 862[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 3979[label="xwv3000/Neg xwv30000",fontsize=10,color="white",style="solid",shape="box"];845 -> 3979[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3979 -> 863[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 846 -> 337[label="",style="dashed", color="red", weight=0]; 29.49/12.07 846[label="primEqNat xwv4000 xwv30000",fontsize=16,color="magenta"];846 -> 864[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 846 -> 865[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 847[label="False",fontsize=16,color="green",shape="box"];848[label="False",fontsize=16,color="green",shape="box"];849[label="True",fontsize=16,color="green",shape="box"];1415[label="compare1 (xwv440,xwv441) (xwv460,xwv461) ((xwv440,xwv441) <= (xwv460,xwv461))",fontsize=16,color="black",shape="box"];1415 -> 1422[label="",style="solid", color="black", weight=3]; 29.49/12.07 1360[label="(xwv15,xwv16)",fontsize=16,color="green",shape="box"];1361[label="(xwv21,xwv22)",fontsize=16,color="green",shape="box"];854[label="FiniteMap.glueBal FiniteMap.EmptyFM xwv20",fontsize=16,color="black",shape="box"];854 -> 899[label="",style="solid", color="black", weight=3]; 29.49/12.07 855[label="FiniteMap.glueBal (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) xwv20",fontsize=16,color="burlywood",shape="box"];3980[label="xwv20/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];855 -> 3980[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3980 -> 900[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 3981[label="xwv20/FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204",fontsize=10,color="white",style="solid",shape="box"];855 -> 3981[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3981 -> 901[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 2892[label="FiniteMap.mkBalBranch6Size_l xwv200 xwv201 xwv253 xwv204",fontsize=16,color="black",shape="triangle"];2892 -> 2894[label="",style="solid", color="black", weight=3]; 29.49/12.07 2891[label="primPlusInt xwv257 (FiniteMap.mkBalBranch6Size_r xwv200 xwv201 xwv253 xwv204)",fontsize=16,color="burlywood",shape="triangle"];3982[label="xwv257/Pos xwv2570",fontsize=10,color="white",style="solid",shape="box"];2891 -> 3982[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3982 -> 2895[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 3983[label="xwv257/Neg xwv2570",fontsize=10,color="white",style="solid",shape="box"];2891 -> 3983[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3983 -> 2896[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1558[label="LT",fontsize=16,color="green",shape="box"];1559 -> 1029[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1559[label="compare xwv440 xwv460",fontsize=16,color="magenta"];1559 -> 1653[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1559 -> 1654[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2889 -> 1196[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2889[label="FiniteMap.mkBalBranch6Size_r xwv200 xwv201 xwv253 xwv204 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv200 xwv201 xwv253 xwv204",fontsize=16,color="magenta"];2889 -> 2897[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2889 -> 2898[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2888[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv200 xwv201 xwv253 xwv204 xwv200 xwv201 xwv253 xwv204 xwv255",fontsize=16,color="burlywood",shape="triangle"];3984[label="xwv255/False",fontsize=10,color="white",style="solid",shape="box"];2888 -> 3984[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3984 -> 2899[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 3985[label="xwv255/True",fontsize=10,color="white",style="solid",shape="box"];2888 -> 3985[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 3985 -> 2900[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 3584[label="xwv201",fontsize=16,color="green",shape="box"];3585[label="xwv200",fontsize=16,color="green",shape="box"];3586[label="xwv253",fontsize=16,color="green",shape="box"];3587[label="xwv204",fontsize=16,color="green",shape="box"];3588[label="Zero",fontsize=16,color="green",shape="box"];3583[label="FiniteMap.mkBranch (Pos (Succ xwv370)) xwv371 xwv372 xwv373 xwv374",fontsize=16,color="black",shape="triangle"];3583 -> 3639[label="",style="solid", color="black", weight=3]; 29.49/12.07 860[label="primMulInt (Pos xwv4010) (Pos xwv30000)",fontsize=16,color="black",shape="box"];860 -> 907[label="",style="solid", color="black", weight=3]; 29.49/12.07 861[label="primMulInt (Pos xwv4010) (Neg xwv30000)",fontsize=16,color="black",shape="box"];861 -> 908[label="",style="solid", color="black", weight=3]; 29.49/12.07 862[label="primMulInt (Neg xwv4010) (Pos xwv30000)",fontsize=16,color="black",shape="box"];862 -> 909[label="",style="solid", color="black", weight=3]; 29.49/12.07 863[label="primMulInt (Neg xwv4010) (Neg xwv30000)",fontsize=16,color="black",shape="box"];863 -> 910[label="",style="solid", color="black", weight=3]; 29.49/12.07 864[label="xwv30000",fontsize=16,color="green",shape="box"];865[label="xwv4000",fontsize=16,color="green",shape="box"];1422 -> 1456[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1422[label="compare1 (xwv440,xwv441) (xwv460,xwv461) (xwv440 < xwv460 || xwv440 == xwv460 && xwv441 <= xwv461)",fontsize=16,color="magenta"];1422 -> 1457[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1422 -> 1458[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1422 -> 1459[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1422 -> 1460[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1422 -> 1461[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1422 -> 1462[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 899[label="FiniteMap.glueBal4 FiniteMap.EmptyFM xwv20",fontsize=16,color="black",shape="box"];899 -> 955[label="",style="solid", color="black", weight=3]; 29.49/12.07 900[label="FiniteMap.glueBal (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];900 -> 956[label="",style="solid", color="black", weight=3]; 29.49/12.07 901[label="FiniteMap.glueBal (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204)",fontsize=16,color="black",shape="box"];901 -> 957[label="",style="solid", color="black", weight=3]; 29.49/12.07 2894 -> 1203[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2894[label="FiniteMap.sizeFM xwv253",fontsize=16,color="magenta"];2894 -> 2914[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2895[label="primPlusInt (Pos xwv2570) (FiniteMap.mkBalBranch6Size_r xwv200 xwv201 xwv253 xwv204)",fontsize=16,color="black",shape="box"];2895 -> 2915[label="",style="solid", color="black", weight=3]; 29.49/12.07 2896[label="primPlusInt (Neg xwv2570) (FiniteMap.mkBalBranch6Size_r xwv200 xwv201 xwv253 xwv204)",fontsize=16,color="black",shape="box"];2896 -> 2916[label="",style="solid", color="black", weight=3]; 29.49/12.07 1653[label="xwv460",fontsize=16,color="green",shape="box"];1654[label="xwv440",fontsize=16,color="green",shape="box"];1029[label="compare xwv44 xwv46",fontsize=16,color="black",shape="triangle"];1029 -> 1105[label="",style="solid", color="black", weight=3]; 29.49/12.07 2897[label="FiniteMap.mkBalBranch6Size_r xwv200 xwv201 xwv253 xwv204",fontsize=16,color="black",shape="triangle"];2897 -> 2917[label="",style="solid", color="black", weight=3]; 29.49/12.07 2898 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2898[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv200 xwv201 xwv253 xwv204",fontsize=16,color="magenta"];2898 -> 2918[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2898 -> 2919[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1196[label="xwv97 > xwv96",fontsize=16,color="black",shape="triangle"];1196 -> 1206[label="",style="solid", color="black", weight=3]; 29.49/12.07 2899[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv200 xwv201 xwv253 xwv204 xwv200 xwv201 xwv253 xwv204 False",fontsize=16,color="black",shape="box"];2899 -> 2920[label="",style="solid", color="black", weight=3]; 29.49/12.07 2900[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv200 xwv201 xwv253 xwv204 xwv200 xwv201 xwv253 xwv204 True",fontsize=16,color="black",shape="box"];2900 -> 2921[label="",style="solid", color="black", weight=3]; 29.49/12.07 3639[label="FiniteMap.mkBranchResult xwv371 xwv372 xwv373 xwv374",fontsize=16,color="black",shape="box"];3639 -> 3678[label="",style="solid", color="black", weight=3]; 29.49/12.07 907[label="Pos (primMulNat xwv4010 xwv30000)",fontsize=16,color="green",shape="box"];907 -> 973[label="",style="dashed", color="green", weight=3]; 29.49/12.07 908[label="Neg (primMulNat xwv4010 xwv30000)",fontsize=16,color="green",shape="box"];908 -> 974[label="",style="dashed", color="green", weight=3]; 29.49/12.07 909[label="Neg (primMulNat xwv4010 xwv30000)",fontsize=16,color="green",shape="box"];909 -> 975[label="",style="dashed", color="green", weight=3]; 29.49/12.07 910[label="Pos (primMulNat xwv4010 xwv30000)",fontsize=16,color="green",shape="box"];910 -> 976[label="",style="dashed", color="green", weight=3]; 29.49/12.07 1457[label="xwv460",fontsize=16,color="green",shape="box"];1458[label="xwv441",fontsize=16,color="green",shape="box"];1459[label="xwv440 < xwv460",fontsize=16,color="blue",shape="box"];3986[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1459 -> 3986[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3986 -> 1469[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3987[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1459 -> 3987[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3987 -> 1470[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3988[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1459 -> 3988[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3988 -> 1471[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3989[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1459 -> 3989[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3989 -> 1472[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3990[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1459 -> 3990[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3990 -> 1473[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3991[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1459 -> 3991[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3991 -> 1474[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3992[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1459 -> 3992[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3992 -> 1475[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3993[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1459 -> 3993[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3993 -> 1476[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3994[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1459 -> 3994[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3994 -> 1477[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3995[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1459 -> 3995[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3995 -> 1478[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3996[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1459 -> 3996[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3996 -> 1479[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3997[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1459 -> 3997[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3997 -> 1480[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3998[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1459 -> 3998[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3998 -> 1481[label="",style="solid", color="blue", weight=3]; 29.49/12.07 3999[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1459 -> 3999[label="",style="solid", color="blue", weight=9]; 29.49/12.07 3999 -> 1482[label="",style="solid", color="blue", weight=3]; 29.49/12.07 1460[label="xwv461",fontsize=16,color="green",shape="box"];1461 -> 374[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1461[label="xwv440 == xwv460 && xwv441 <= xwv461",fontsize=16,color="magenta"];1461 -> 1483[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1461 -> 1484[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1462[label="xwv440",fontsize=16,color="green",shape="box"];1456[label="compare1 (xwv122,xwv123) (xwv124,xwv125) (xwv126 || xwv127)",fontsize=16,color="burlywood",shape="triangle"];4000[label="xwv126/False",fontsize=10,color="white",style="solid",shape="box"];1456 -> 4000[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4000 -> 1485[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4001[label="xwv126/True",fontsize=10,color="white",style="solid",shape="box"];1456 -> 4001[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4001 -> 1486[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 955[label="xwv20",fontsize=16,color="green",shape="box"];956[label="FiniteMap.glueBal3 (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];956 -> 1055[label="",style="solid", color="black", weight=3]; 29.49/12.07 957[label="FiniteMap.glueBal2 (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204)",fontsize=16,color="black",shape="box"];957 -> 1056[label="",style="solid", color="black", weight=3]; 29.49/12.07 2914[label="xwv253",fontsize=16,color="green",shape="box"];1203[label="FiniteMap.sizeFM xwv36",fontsize=16,color="burlywood",shape="triangle"];4002[label="xwv36/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1203 -> 4002[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4002 -> 1218[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4003[label="xwv36/FiniteMap.Branch xwv360 xwv361 xwv362 xwv363 xwv364",fontsize=10,color="white",style="solid",shape="box"];1203 -> 4003[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4003 -> 1219[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 2915 -> 2931[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2915[label="primPlusInt (Pos xwv2570) (FiniteMap.sizeFM xwv204)",fontsize=16,color="magenta"];2915 -> 2932[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2916 -> 2933[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2916[label="primPlusInt (Neg xwv2570) (FiniteMap.sizeFM xwv204)",fontsize=16,color="magenta"];2916 -> 2934[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1105[label="primCmpInt xwv44 xwv46",fontsize=16,color="burlywood",shape="triangle"];4004[label="xwv44/Pos xwv440",fontsize=10,color="white",style="solid",shape="box"];1105 -> 4004[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4004 -> 1176[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4005[label="xwv44/Neg xwv440",fontsize=10,color="white",style="solid",shape="box"];1105 -> 4005[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4005 -> 1177[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 2917 -> 1203[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2917[label="FiniteMap.sizeFM xwv204",fontsize=16,color="magenta"];2917 -> 2935[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2918 -> 2892[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2918[label="FiniteMap.mkBalBranch6Size_l xwv200 xwv201 xwv253 xwv204",fontsize=16,color="magenta"];2919[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];2919 -> 2936[label="",style="solid", color="black", weight=3]; 29.49/12.07 1206 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1206[label="compare xwv97 xwv96 == GT",fontsize=16,color="magenta"];1206 -> 1222[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1206 -> 1223[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2920 -> 2937[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2920[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv200 xwv201 xwv253 xwv204 xwv200 xwv201 xwv253 xwv204 (FiniteMap.mkBalBranch6Size_l xwv200 xwv201 xwv253 xwv204 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv200 xwv201 xwv253 xwv204)",fontsize=16,color="magenta"];2920 -> 2938[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2921[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv200 xwv201 xwv253 xwv204 xwv253 xwv204 xwv204",fontsize=16,color="burlywood",shape="box"];4006[label="xwv204/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2921 -> 4006[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4006 -> 2939[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4007[label="xwv204/FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044",fontsize=10,color="white",style="solid",shape="box"];2921 -> 4007[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4007 -> 2940[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 3678[label="FiniteMap.Branch xwv371 xwv372 (FiniteMap.mkBranchUnbox xwv373 xwv371 xwv374 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv373 xwv371 xwv374 + FiniteMap.mkBranchRight_size xwv373 xwv371 xwv374)) xwv373 xwv374",fontsize=16,color="green",shape="box"];3678 -> 3685[label="",style="dashed", color="green", weight=3]; 29.49/12.07 973[label="primMulNat xwv4010 xwv30000",fontsize=16,color="burlywood",shape="triangle"];4008[label="xwv4010/Succ xwv40100",fontsize=10,color="white",style="solid",shape="box"];973 -> 4008[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4008 -> 1066[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4009[label="xwv4010/Zero",fontsize=10,color="white",style="solid",shape="box"];973 -> 4009[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4009 -> 1067[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 974 -> 973[label="",style="dashed", color="red", weight=0]; 29.49/12.07 974[label="primMulNat xwv4010 xwv30000",fontsize=16,color="magenta"];974 -> 1068[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 975 -> 973[label="",style="dashed", color="red", weight=0]; 29.49/12.07 975[label="primMulNat xwv4010 xwv30000",fontsize=16,color="magenta"];975 -> 1069[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 976 -> 973[label="",style="dashed", color="red", weight=0]; 29.49/12.07 976[label="primMulNat xwv4010 xwv30000",fontsize=16,color="magenta"];976 -> 1070[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 976 -> 1071[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1469[label="xwv440 < xwv460",fontsize=16,color="black",shape="triangle"];1469 -> 1496[label="",style="solid", color="black", weight=3]; 29.49/12.07 1470[label="xwv440 < xwv460",fontsize=16,color="black",shape="triangle"];1470 -> 1497[label="",style="solid", color="black", weight=3]; 29.49/12.07 1472[label="xwv440 < xwv460",fontsize=16,color="black",shape="triangle"];1472 -> 1499[label="",style="solid", color="black", weight=3]; 29.49/12.07 1473[label="xwv440 < xwv460",fontsize=16,color="black",shape="triangle"];1473 -> 1500[label="",style="solid", color="black", weight=3]; 29.49/12.07 1474[label="xwv440 < xwv460",fontsize=16,color="black",shape="triangle"];1474 -> 1501[label="",style="solid", color="black", weight=3]; 29.49/12.07 1475[label="xwv440 < xwv460",fontsize=16,color="black",shape="triangle"];1475 -> 1502[label="",style="solid", color="black", weight=3]; 29.49/12.07 1476[label="xwv440 < xwv460",fontsize=16,color="black",shape="triangle"];1476 -> 1503[label="",style="solid", color="black", weight=3]; 29.49/12.07 1477[label="xwv440 < xwv460",fontsize=16,color="black",shape="triangle"];1477 -> 1504[label="",style="solid", color="black", weight=3]; 29.49/12.07 1478[label="xwv440 < xwv460",fontsize=16,color="black",shape="triangle"];1478 -> 1505[label="",style="solid", color="black", weight=3]; 29.49/12.07 1479[label="xwv440 < xwv460",fontsize=16,color="black",shape="triangle"];1479 -> 1506[label="",style="solid", color="black", weight=3]; 29.49/12.07 1480[label="xwv440 < xwv460",fontsize=16,color="black",shape="triangle"];1480 -> 1507[label="",style="solid", color="black", weight=3]; 29.49/12.07 1481[label="xwv440 < xwv460",fontsize=16,color="black",shape="triangle"];1481 -> 1508[label="",style="solid", color="black", weight=3]; 29.49/12.07 1482[label="xwv440 < xwv460",fontsize=16,color="black",shape="triangle"];1482 -> 1509[label="",style="solid", color="black", weight=3]; 29.49/12.07 1483[label="xwv440 == xwv460",fontsize=16,color="blue",shape="box"];4010[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1483 -> 4010[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4010 -> 1510[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4011[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1483 -> 4011[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4011 -> 1511[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4012[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1483 -> 4012[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4012 -> 1512[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4013[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1483 -> 4013[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4013 -> 1513[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4014[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1483 -> 4014[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4014 -> 1514[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4015[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1483 -> 4015[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4015 -> 1515[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4016[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1483 -> 4016[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4016 -> 1516[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4017[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1483 -> 4017[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4017 -> 1517[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4018[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1483 -> 4018[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4018 -> 1518[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4019[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1483 -> 4019[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4019 -> 1519[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4020[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1483 -> 4020[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4020 -> 1520[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4021[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1483 -> 4021[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4021 -> 1521[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4022[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1483 -> 4022[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4022 -> 1522[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4023[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1483 -> 4023[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4023 -> 1523[label="",style="solid", color="blue", weight=3]; 29.49/12.07 1484[label="xwv441 <= xwv461",fontsize=16,color="blue",shape="box"];4024[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4024[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4024 -> 1524[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4025[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4025[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4025 -> 1525[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4026[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4026[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4026 -> 1526[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4027[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4027[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4027 -> 1527[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4028[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4028[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4028 -> 1528[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4029[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4029[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4029 -> 1529[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4030[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4030[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4030 -> 1530[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4031[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4031[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4031 -> 1531[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4032[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4032[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4032 -> 1532[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4033[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4033[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4033 -> 1533[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4034[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4034[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4034 -> 1534[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4035[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4035[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4035 -> 1535[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4036[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4036[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4036 -> 1536[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4037[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4037[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4037 -> 1537[label="",style="solid", color="blue", weight=3]; 29.49/12.07 1485[label="compare1 (xwv122,xwv123) (xwv124,xwv125) (False || xwv127)",fontsize=16,color="black",shape="box"];1485 -> 1538[label="",style="solid", color="black", weight=3]; 29.49/12.07 1486[label="compare1 (xwv122,xwv123) (xwv124,xwv125) (True || xwv127)",fontsize=16,color="black",shape="box"];1486 -> 1539[label="",style="solid", color="black", weight=3]; 29.49/12.07 1055[label="FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194",fontsize=16,color="green",shape="box"];1056 -> 1193[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1056[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.sizeFM (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) > FiniteMap.sizeFM (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194))",fontsize=16,color="magenta"];1056 -> 1194[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1218[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1218 -> 1273[label="",style="solid", color="black", weight=3]; 29.49/12.07 1219[label="FiniteMap.sizeFM (FiniteMap.Branch xwv360 xwv361 xwv362 xwv363 xwv364)",fontsize=16,color="black",shape="box"];1219 -> 1274[label="",style="solid", color="black", weight=3]; 29.49/12.07 2932 -> 1203[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2932[label="FiniteMap.sizeFM xwv204",fontsize=16,color="magenta"];2932 -> 2942[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2931[label="primPlusInt (Pos xwv2570) xwv258",fontsize=16,color="burlywood",shape="triangle"];4038[label="xwv258/Pos xwv2580",fontsize=10,color="white",style="solid",shape="box"];2931 -> 4038[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4038 -> 2943[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4039[label="xwv258/Neg xwv2580",fontsize=10,color="white",style="solid",shape="box"];2931 -> 4039[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4039 -> 2944[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 2934 -> 1203[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2934[label="FiniteMap.sizeFM xwv204",fontsize=16,color="magenta"];2934 -> 2945[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2933[label="primPlusInt (Neg xwv2570) xwv259",fontsize=16,color="burlywood",shape="triangle"];4040[label="xwv259/Pos xwv2590",fontsize=10,color="white",style="solid",shape="box"];2933 -> 4040[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4040 -> 2946[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4041[label="xwv259/Neg xwv2590",fontsize=10,color="white",style="solid",shape="box"];2933 -> 4041[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4041 -> 2947[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1176[label="primCmpInt (Pos xwv440) xwv46",fontsize=16,color="burlywood",shape="box"];4042[label="xwv440/Succ xwv4400",fontsize=10,color="white",style="solid",shape="box"];1176 -> 4042[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4042 -> 1312[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4043[label="xwv440/Zero",fontsize=10,color="white",style="solid",shape="box"];1176 -> 4043[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4043 -> 1313[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1177[label="primCmpInt (Neg xwv440) xwv46",fontsize=16,color="burlywood",shape="box"];4044[label="xwv440/Succ xwv4400",fontsize=10,color="white",style="solid",shape="box"];1177 -> 4044[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4044 -> 1314[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4045[label="xwv440/Zero",fontsize=10,color="white",style="solid",shape="box"];1177 -> 4045[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4045 -> 1315[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 2935[label="xwv204",fontsize=16,color="green",shape="box"];2936[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1222[label="GT",fontsize=16,color="green",shape="box"];1223 -> 1029[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1223[label="compare xwv97 xwv96",fontsize=16,color="magenta"];1223 -> 1276[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1223 -> 1277[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2938 -> 1196[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2938[label="FiniteMap.mkBalBranch6Size_l xwv200 xwv201 xwv253 xwv204 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv200 xwv201 xwv253 xwv204",fontsize=16,color="magenta"];2938 -> 2948[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2938 -> 2949[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2937[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv200 xwv201 xwv253 xwv204 xwv200 xwv201 xwv253 xwv204 xwv260",fontsize=16,color="burlywood",shape="triangle"];4046[label="xwv260/False",fontsize=10,color="white",style="solid",shape="box"];2937 -> 4046[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4046 -> 2950[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4047[label="xwv260/True",fontsize=10,color="white",style="solid",shape="box"];2937 -> 4047[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4047 -> 2951[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 2939[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv200 xwv201 xwv253 FiniteMap.EmptyFM xwv253 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2939 -> 2964[label="",style="solid", color="black", weight=3]; 29.49/12.07 2940[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv200 xwv201 xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044)",fontsize=16,color="black",shape="box"];2940 -> 2965[label="",style="solid", color="black", weight=3]; 29.49/12.07 3685[label="FiniteMap.mkBranchUnbox xwv373 xwv371 xwv374 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv373 xwv371 xwv374 + FiniteMap.mkBranchRight_size xwv373 xwv371 xwv374)",fontsize=16,color="black",shape="box"];3685 -> 3686[label="",style="solid", color="black", weight=3]; 29.49/12.07 1066[label="primMulNat (Succ xwv40100) xwv30000",fontsize=16,color="burlywood",shape="box"];4048[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1066 -> 4048[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4048 -> 1136[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4049[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1066 -> 4049[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4049 -> 1137[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1067[label="primMulNat Zero xwv30000",fontsize=16,color="burlywood",shape="box"];4050[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1067 -> 4050[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4050 -> 1138[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4051[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1067 -> 4051[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4051 -> 1139[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1068[label="xwv30000",fontsize=16,color="green",shape="box"];1069[label="xwv4010",fontsize=16,color="green",shape="box"];1070[label="xwv4010",fontsize=16,color="green",shape="box"];1071[label="xwv30000",fontsize=16,color="green",shape="box"];1496 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1496[label="compare xwv440 xwv460 == LT",fontsize=16,color="magenta"];1496 -> 1554[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1496 -> 1555[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1497 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1497[label="compare xwv440 xwv460 == LT",fontsize=16,color="magenta"];1497 -> 1556[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1497 -> 1557[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1499 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1499[label="compare xwv440 xwv460 == LT",fontsize=16,color="magenta"];1499 -> 1560[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1499 -> 1561[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1500 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1500[label="compare xwv440 xwv460 == LT",fontsize=16,color="magenta"];1500 -> 1562[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1500 -> 1563[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1501 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1501[label="compare xwv440 xwv460 == LT",fontsize=16,color="magenta"];1501 -> 1564[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1501 -> 1565[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1502 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1502[label="compare xwv440 xwv460 == LT",fontsize=16,color="magenta"];1502 -> 1566[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1502 -> 1567[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1503 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1503[label="compare xwv440 xwv460 == LT",fontsize=16,color="magenta"];1503 -> 1568[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1503 -> 1569[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1504 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1504[label="compare xwv440 xwv460 == LT",fontsize=16,color="magenta"];1504 -> 1570[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1504 -> 1571[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1505 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1505[label="compare xwv440 xwv460 == LT",fontsize=16,color="magenta"];1505 -> 1572[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1505 -> 1573[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1506 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1506[label="compare xwv440 xwv460 == LT",fontsize=16,color="magenta"];1506 -> 1574[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1506 -> 1575[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1507 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1507[label="compare xwv440 xwv460 == LT",fontsize=16,color="magenta"];1507 -> 1576[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1507 -> 1577[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1508 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1508[label="compare xwv440 xwv460 == LT",fontsize=16,color="magenta"];1508 -> 1578[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1508 -> 1579[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1509 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1509[label="compare xwv440 xwv460 == LT",fontsize=16,color="magenta"];1509 -> 1580[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1509 -> 1581[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1510 -> 129[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1510[label="xwv440 == xwv460",fontsize=16,color="magenta"];1510 -> 1582[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1510 -> 1583[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1511 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1511[label="xwv440 == xwv460",fontsize=16,color="magenta"];1511 -> 1584[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1511 -> 1585[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1512 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1512[label="xwv440 == xwv460",fontsize=16,color="magenta"];1512 -> 1586[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1512 -> 1587[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1513 -> 135[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1513[label="xwv440 == xwv460",fontsize=16,color="magenta"];1513 -> 1588[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1513 -> 1589[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1514 -> 122[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1514[label="xwv440 == xwv460",fontsize=16,color="magenta"];1514 -> 1590[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1514 -> 1591[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1515 -> 124[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1515[label="xwv440 == xwv460",fontsize=16,color="magenta"];1515 -> 1592[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1515 -> 1593[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1516 -> 130[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1516[label="xwv440 == xwv460",fontsize=16,color="magenta"];1516 -> 1594[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1516 -> 1595[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1517 -> 127[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1517[label="xwv440 == xwv460",fontsize=16,color="magenta"];1517 -> 1596[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1517 -> 1597[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1518 -> 134[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1518[label="xwv440 == xwv460",fontsize=16,color="magenta"];1518 -> 1598[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1518 -> 1599[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1519 -> 125[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1519[label="xwv440 == xwv460",fontsize=16,color="magenta"];1519 -> 1600[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1519 -> 1601[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1520 -> 132[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1520[label="xwv440 == xwv460",fontsize=16,color="magenta"];1520 -> 1602[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1520 -> 1603[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1521 -> 133[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1521[label="xwv440 == xwv460",fontsize=16,color="magenta"];1521 -> 1604[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1521 -> 1605[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1522 -> 131[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1522[label="xwv440 == xwv460",fontsize=16,color="magenta"];1522 -> 1606[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1522 -> 1607[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1523 -> 128[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1523[label="xwv440 == xwv460",fontsize=16,color="magenta"];1523 -> 1608[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1523 -> 1609[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1524[label="xwv441 <= xwv461",fontsize=16,color="burlywood",shape="triangle"];4052[label="xwv441/Left xwv4410",fontsize=10,color="white",style="solid",shape="box"];1524 -> 4052[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4052 -> 1610[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4053[label="xwv441/Right xwv4410",fontsize=10,color="white",style="solid",shape="box"];1524 -> 4053[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4053 -> 1611[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1525[label="xwv441 <= xwv461",fontsize=16,color="burlywood",shape="triangle"];4054[label="xwv441/LT",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4054[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4054 -> 1612[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4055[label="xwv441/EQ",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4055[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4055 -> 1613[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4056[label="xwv441/GT",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4056[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4056 -> 1614[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1526[label="xwv441 <= xwv461",fontsize=16,color="black",shape="triangle"];1526 -> 1615[label="",style="solid", color="black", weight=3]; 29.49/12.07 1527[label="xwv441 <= xwv461",fontsize=16,color="black",shape="triangle"];1527 -> 1616[label="",style="solid", color="black", weight=3]; 29.49/12.07 1528[label="xwv441 <= xwv461",fontsize=16,color="burlywood",shape="triangle"];4057[label="xwv441/(xwv4410,xwv4411,xwv4412)",fontsize=10,color="white",style="solid",shape="box"];1528 -> 4057[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4057 -> 1617[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1529[label="xwv441 <= xwv461",fontsize=16,color="black",shape="triangle"];1529 -> 1618[label="",style="solid", color="black", weight=3]; 29.49/12.07 1530[label="xwv441 <= xwv461",fontsize=16,color="black",shape="triangle"];1530 -> 1619[label="",style="solid", color="black", weight=3]; 29.49/12.07 1531[label="xwv441 <= xwv461",fontsize=16,color="burlywood",shape="triangle"];4058[label="xwv441/False",fontsize=10,color="white",style="solid",shape="box"];1531 -> 4058[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4058 -> 1620[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4059[label="xwv441/True",fontsize=10,color="white",style="solid",shape="box"];1531 -> 4059[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4059 -> 1621[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1532[label="xwv441 <= xwv461",fontsize=16,color="black",shape="triangle"];1532 -> 1622[label="",style="solid", color="black", weight=3]; 29.49/12.07 1533[label="xwv441 <= xwv461",fontsize=16,color="burlywood",shape="triangle"];4060[label="xwv441/Nothing",fontsize=10,color="white",style="solid",shape="box"];1533 -> 4060[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4060 -> 1623[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4061[label="xwv441/Just xwv4410",fontsize=10,color="white",style="solid",shape="box"];1533 -> 4061[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4061 -> 1624[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1534[label="xwv441 <= xwv461",fontsize=16,color="burlywood",shape="triangle"];4062[label="xwv441/(xwv4410,xwv4411)",fontsize=10,color="white",style="solid",shape="box"];1534 -> 4062[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4062 -> 1625[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1535[label="xwv441 <= xwv461",fontsize=16,color="black",shape="triangle"];1535 -> 1626[label="",style="solid", color="black", weight=3]; 29.49/12.07 1536[label="xwv441 <= xwv461",fontsize=16,color="black",shape="triangle"];1536 -> 1627[label="",style="solid", color="black", weight=3]; 29.49/12.07 1537[label="xwv441 <= xwv461",fontsize=16,color="black",shape="triangle"];1537 -> 1628[label="",style="solid", color="black", weight=3]; 29.49/12.07 1538[label="compare1 (xwv122,xwv123) (xwv124,xwv125) xwv127",fontsize=16,color="burlywood",shape="triangle"];4063[label="xwv127/False",fontsize=10,color="white",style="solid",shape="box"];1538 -> 4063[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4063 -> 1629[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4064[label="xwv127/True",fontsize=10,color="white",style="solid",shape="box"];1538 -> 4064[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4064 -> 1630[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1539 -> 1538[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1539[label="compare1 (xwv122,xwv123) (xwv124,xwv125) True",fontsize=16,color="magenta"];1539 -> 1631[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1194 -> 1196[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1194[label="FiniteMap.sizeFM (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) > FiniteMap.sizeFM (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194)",fontsize=16,color="magenta"];1194 -> 1201[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1194 -> 1202[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1193[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) xwv92",fontsize=16,color="burlywood",shape="triangle"];4065[label="xwv92/False",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4065[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4065 -> 1207[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4066[label="xwv92/True",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4066[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4066 -> 1208[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1273[label="Pos Zero",fontsize=16,color="green",shape="box"];1274[label="xwv362",fontsize=16,color="green",shape="box"];2942[label="xwv204",fontsize=16,color="green",shape="box"];2943[label="primPlusInt (Pos xwv2570) (Pos xwv2580)",fontsize=16,color="black",shape="box"];2943 -> 2967[label="",style="solid", color="black", weight=3]; 29.49/12.07 2944[label="primPlusInt (Pos xwv2570) (Neg xwv2580)",fontsize=16,color="black",shape="box"];2944 -> 2968[label="",style="solid", color="black", weight=3]; 29.49/12.07 2945[label="xwv204",fontsize=16,color="green",shape="box"];2946[label="primPlusInt (Neg xwv2570) (Pos xwv2590)",fontsize=16,color="black",shape="box"];2946 -> 2969[label="",style="solid", color="black", weight=3]; 29.49/12.07 2947[label="primPlusInt (Neg xwv2570) (Neg xwv2590)",fontsize=16,color="black",shape="box"];2947 -> 2970[label="",style="solid", color="black", weight=3]; 29.49/12.07 1312[label="primCmpInt (Pos (Succ xwv4400)) xwv46",fontsize=16,color="burlywood",shape="box"];4067[label="xwv46/Pos xwv460",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4067[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4067 -> 1444[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4068[label="xwv46/Neg xwv460",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4068[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4068 -> 1445[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1313[label="primCmpInt (Pos Zero) xwv46",fontsize=16,color="burlywood",shape="box"];4069[label="xwv46/Pos xwv460",fontsize=10,color="white",style="solid",shape="box"];1313 -> 4069[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4069 -> 1446[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4070[label="xwv46/Neg xwv460",fontsize=10,color="white",style="solid",shape="box"];1313 -> 4070[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4070 -> 1447[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1314[label="primCmpInt (Neg (Succ xwv4400)) xwv46",fontsize=16,color="burlywood",shape="box"];4071[label="xwv46/Pos xwv460",fontsize=10,color="white",style="solid",shape="box"];1314 -> 4071[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4071 -> 1448[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4072[label="xwv46/Neg xwv460",fontsize=10,color="white",style="solid",shape="box"];1314 -> 4072[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4072 -> 1449[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1315[label="primCmpInt (Neg Zero) xwv46",fontsize=16,color="burlywood",shape="box"];4073[label="xwv46/Pos xwv460",fontsize=10,color="white",style="solid",shape="box"];1315 -> 4073[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4073 -> 1450[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4074[label="xwv46/Neg xwv460",fontsize=10,color="white",style="solid",shape="box"];1315 -> 4074[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4074 -> 1451[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1276[label="xwv96",fontsize=16,color="green",shape="box"];1277[label="xwv97",fontsize=16,color="green",shape="box"];2948 -> 2892[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2948[label="FiniteMap.mkBalBranch6Size_l xwv200 xwv201 xwv253 xwv204",fontsize=16,color="magenta"];2949 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2949[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv200 xwv201 xwv253 xwv204",fontsize=16,color="magenta"];2949 -> 2971[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2949 -> 2972[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2950[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv200 xwv201 xwv253 xwv204 xwv200 xwv201 xwv253 xwv204 False",fontsize=16,color="black",shape="box"];2950 -> 2973[label="",style="solid", color="black", weight=3]; 29.49/12.07 2951[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv200 xwv201 xwv253 xwv204 xwv200 xwv201 xwv253 xwv204 True",fontsize=16,color="black",shape="box"];2951 -> 2974[label="",style="solid", color="black", weight=3]; 29.49/12.07 2964[label="error []",fontsize=16,color="red",shape="box"];2965[label="FiniteMap.mkBalBranch6MkBalBranch02 xwv200 xwv201 xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044)",fontsize=16,color="black",shape="box"];2965 -> 2983[label="",style="solid", color="black", weight=3]; 29.49/12.07 3686[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv373 xwv371 xwv374 + FiniteMap.mkBranchRight_size xwv373 xwv371 xwv374",fontsize=16,color="black",shape="box"];3686 -> 3687[label="",style="solid", color="black", weight=3]; 29.49/12.07 1136[label="primMulNat (Succ xwv40100) (Succ xwv300000)",fontsize=16,color="black",shape="box"];1136 -> 1230[label="",style="solid", color="black", weight=3]; 29.49/12.07 1137[label="primMulNat (Succ xwv40100) Zero",fontsize=16,color="black",shape="box"];1137 -> 1231[label="",style="solid", color="black", weight=3]; 29.49/12.07 1138[label="primMulNat Zero (Succ xwv300000)",fontsize=16,color="black",shape="box"];1138 -> 1232[label="",style="solid", color="black", weight=3]; 29.49/12.07 1139[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1139 -> 1233[label="",style="solid", color="black", weight=3]; 29.49/12.07 1554[label="LT",fontsize=16,color="green",shape="box"];1555[label="compare xwv440 xwv460",fontsize=16,color="black",shape="triangle"];1555 -> 1651[label="",style="solid", color="black", weight=3]; 29.49/12.07 1556[label="LT",fontsize=16,color="green",shape="box"];1557[label="compare xwv440 xwv460",fontsize=16,color="black",shape="triangle"];1557 -> 1652[label="",style="solid", color="black", weight=3]; 29.49/12.07 1560[label="LT",fontsize=16,color="green",shape="box"];1561[label="compare xwv440 xwv460",fontsize=16,color="burlywood",shape="triangle"];4075[label="xwv440/xwv4400 : xwv4401",fontsize=10,color="white",style="solid",shape="box"];1561 -> 4075[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4075 -> 1655[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4076[label="xwv440/[]",fontsize=10,color="white",style="solid",shape="box"];1561 -> 4076[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4076 -> 1656[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1562[label="LT",fontsize=16,color="green",shape="box"];1563[label="compare xwv440 xwv460",fontsize=16,color="black",shape="triangle"];1563 -> 1657[label="",style="solid", color="black", weight=3]; 29.49/12.07 1564[label="LT",fontsize=16,color="green",shape="box"];1565[label="compare xwv440 xwv460",fontsize=16,color="black",shape="triangle"];1565 -> 1658[label="",style="solid", color="black", weight=3]; 29.49/12.07 1566[label="LT",fontsize=16,color="green",shape="box"];1567[label="compare xwv440 xwv460",fontsize=16,color="burlywood",shape="triangle"];4077[label="xwv440/()",fontsize=10,color="white",style="solid",shape="box"];1567 -> 4077[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4077 -> 1659[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1568[label="LT",fontsize=16,color="green",shape="box"];1569[label="compare xwv440 xwv460",fontsize=16,color="black",shape="triangle"];1569 -> 1660[label="",style="solid", color="black", weight=3]; 29.49/12.07 1570[label="LT",fontsize=16,color="green",shape="box"];1571[label="compare xwv440 xwv460",fontsize=16,color="black",shape="triangle"];1571 -> 1661[label="",style="solid", color="black", weight=3]; 29.49/12.07 1572[label="LT",fontsize=16,color="green",shape="box"];1573[label="compare xwv440 xwv460",fontsize=16,color="black",shape="triangle"];1573 -> 1662[label="",style="solid", color="black", weight=3]; 29.49/12.07 1574[label="LT",fontsize=16,color="green",shape="box"];1575[label="compare xwv440 xwv460",fontsize=16,color="black",shape="triangle"];1575 -> 1663[label="",style="solid", color="black", weight=3]; 29.49/12.07 1576[label="LT",fontsize=16,color="green",shape="box"];1577[label="compare xwv440 xwv460",fontsize=16,color="black",shape="triangle"];1577 -> 1664[label="",style="solid", color="black", weight=3]; 29.49/12.07 1578[label="LT",fontsize=16,color="green",shape="box"];1579[label="compare xwv440 xwv460",fontsize=16,color="burlywood",shape="triangle"];4078[label="xwv440/xwv4400 :% xwv4401",fontsize=10,color="white",style="solid",shape="box"];1579 -> 4078[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4078 -> 1665[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1580[label="LT",fontsize=16,color="green",shape="box"];1581[label="compare xwv440 xwv460",fontsize=16,color="burlywood",shape="triangle"];4079[label="xwv440/Integer xwv4400",fontsize=10,color="white",style="solid",shape="box"];1581 -> 4079[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4079 -> 1666[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1582[label="xwv460",fontsize=16,color="green",shape="box"];1583[label="xwv440",fontsize=16,color="green",shape="box"];1584[label="xwv460",fontsize=16,color="green",shape="box"];1585[label="xwv440",fontsize=16,color="green",shape="box"];1586[label="xwv460",fontsize=16,color="green",shape="box"];1587[label="xwv440",fontsize=16,color="green",shape="box"];1588[label="xwv460",fontsize=16,color="green",shape="box"];1589[label="xwv440",fontsize=16,color="green",shape="box"];1590[label="xwv460",fontsize=16,color="green",shape="box"];1591[label="xwv440",fontsize=16,color="green",shape="box"];1592[label="xwv460",fontsize=16,color="green",shape="box"];1593[label="xwv440",fontsize=16,color="green",shape="box"];1594[label="xwv460",fontsize=16,color="green",shape="box"];1595[label="xwv440",fontsize=16,color="green",shape="box"];1596[label="xwv460",fontsize=16,color="green",shape="box"];1597[label="xwv440",fontsize=16,color="green",shape="box"];1598[label="xwv460",fontsize=16,color="green",shape="box"];1599[label="xwv440",fontsize=16,color="green",shape="box"];1600[label="xwv460",fontsize=16,color="green",shape="box"];1601[label="xwv440",fontsize=16,color="green",shape="box"];1602[label="xwv460",fontsize=16,color="green",shape="box"];1603[label="xwv440",fontsize=16,color="green",shape="box"];1604[label="xwv460",fontsize=16,color="green",shape="box"];1605[label="xwv440",fontsize=16,color="green",shape="box"];1606[label="xwv460",fontsize=16,color="green",shape="box"];1607[label="xwv440",fontsize=16,color="green",shape="box"];1608[label="xwv460",fontsize=16,color="green",shape="box"];1609[label="xwv440",fontsize=16,color="green",shape="box"];1610[label="Left xwv4410 <= xwv461",fontsize=16,color="burlywood",shape="box"];4080[label="xwv461/Left xwv4610",fontsize=10,color="white",style="solid",shape="box"];1610 -> 4080[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4080 -> 1667[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4081[label="xwv461/Right xwv4610",fontsize=10,color="white",style="solid",shape="box"];1610 -> 4081[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4081 -> 1668[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1611[label="Right xwv4410 <= xwv461",fontsize=16,color="burlywood",shape="box"];4082[label="xwv461/Left xwv4610",fontsize=10,color="white",style="solid",shape="box"];1611 -> 4082[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4082 -> 1669[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4083[label="xwv461/Right xwv4610",fontsize=10,color="white",style="solid",shape="box"];1611 -> 4083[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4083 -> 1670[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1612[label="LT <= xwv461",fontsize=16,color="burlywood",shape="box"];4084[label="xwv461/LT",fontsize=10,color="white",style="solid",shape="box"];1612 -> 4084[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4084 -> 1671[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4085[label="xwv461/EQ",fontsize=10,color="white",style="solid",shape="box"];1612 -> 4085[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4085 -> 1672[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4086[label="xwv461/GT",fontsize=10,color="white",style="solid",shape="box"];1612 -> 4086[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4086 -> 1673[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1613[label="EQ <= xwv461",fontsize=16,color="burlywood",shape="box"];4087[label="xwv461/LT",fontsize=10,color="white",style="solid",shape="box"];1613 -> 4087[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4087 -> 1674[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4088[label="xwv461/EQ",fontsize=10,color="white",style="solid",shape="box"];1613 -> 4088[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4088 -> 1675[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4089[label="xwv461/GT",fontsize=10,color="white",style="solid",shape="box"];1613 -> 4089[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4089 -> 1676[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1614[label="GT <= xwv461",fontsize=16,color="burlywood",shape="box"];4090[label="xwv461/LT",fontsize=10,color="white",style="solid",shape="box"];1614 -> 4090[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4090 -> 1677[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4091[label="xwv461/EQ",fontsize=10,color="white",style="solid",shape="box"];1614 -> 4091[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4091 -> 1678[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4092[label="xwv461/GT",fontsize=10,color="white",style="solid",shape="box"];1614 -> 4092[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4092 -> 1679[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1615 -> 1680[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1615[label="compare xwv441 xwv461 /= GT",fontsize=16,color="magenta"];1615 -> 1681[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1616 -> 1680[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1616[label="compare xwv441 xwv461 /= GT",fontsize=16,color="magenta"];1616 -> 1682[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1617[label="(xwv4410,xwv4411,xwv4412) <= xwv461",fontsize=16,color="burlywood",shape="box"];4093[label="xwv461/(xwv4610,xwv4611,xwv4612)",fontsize=10,color="white",style="solid",shape="box"];1617 -> 4093[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4093 -> 1689[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1618 -> 1680[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1618[label="compare xwv441 xwv461 /= GT",fontsize=16,color="magenta"];1618 -> 1683[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1619 -> 1680[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1619[label="compare xwv441 xwv461 /= GT",fontsize=16,color="magenta"];1619 -> 1684[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1620[label="False <= xwv461",fontsize=16,color="burlywood",shape="box"];4094[label="xwv461/False",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4094[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4094 -> 1690[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4095[label="xwv461/True",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4095[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4095 -> 1691[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1621[label="True <= xwv461",fontsize=16,color="burlywood",shape="box"];4096[label="xwv461/False",fontsize=10,color="white",style="solid",shape="box"];1621 -> 4096[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4096 -> 1692[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4097[label="xwv461/True",fontsize=10,color="white",style="solid",shape="box"];1621 -> 4097[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4097 -> 1693[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1622 -> 1680[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1622[label="compare xwv441 xwv461 /= GT",fontsize=16,color="magenta"];1622 -> 1685[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1623[label="Nothing <= xwv461",fontsize=16,color="burlywood",shape="box"];4098[label="xwv461/Nothing",fontsize=10,color="white",style="solid",shape="box"];1623 -> 4098[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4098 -> 1694[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4099[label="xwv461/Just xwv4610",fontsize=10,color="white",style="solid",shape="box"];1623 -> 4099[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4099 -> 1695[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1624[label="Just xwv4410 <= xwv461",fontsize=16,color="burlywood",shape="box"];4100[label="xwv461/Nothing",fontsize=10,color="white",style="solid",shape="box"];1624 -> 4100[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4100 -> 1696[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4101[label="xwv461/Just xwv4610",fontsize=10,color="white",style="solid",shape="box"];1624 -> 4101[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4101 -> 1697[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1625[label="(xwv4410,xwv4411) <= xwv461",fontsize=16,color="burlywood",shape="box"];4102[label="xwv461/(xwv4610,xwv4611)",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4102[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4102 -> 1698[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1626 -> 1680[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1626[label="compare xwv441 xwv461 /= GT",fontsize=16,color="magenta"];1626 -> 1686[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1627 -> 1680[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1627[label="compare xwv441 xwv461 /= GT",fontsize=16,color="magenta"];1627 -> 1687[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1628 -> 1680[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1628[label="compare xwv441 xwv461 /= GT",fontsize=16,color="magenta"];1628 -> 1688[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1629[label="compare1 (xwv122,xwv123) (xwv124,xwv125) False",fontsize=16,color="black",shape="box"];1629 -> 1699[label="",style="solid", color="black", weight=3]; 29.49/12.07 1630[label="compare1 (xwv122,xwv123) (xwv124,xwv125) True",fontsize=16,color="black",shape="box"];1630 -> 1700[label="",style="solid", color="black", weight=3]; 29.49/12.07 1631[label="True",fontsize=16,color="green",shape="box"];1201 -> 1203[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1201[label="FiniteMap.sizeFM (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204)",fontsize=16,color="magenta"];1201 -> 1362[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1202 -> 1203[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1202[label="FiniteMap.sizeFM (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194)",fontsize=16,color="magenta"];1202 -> 1363[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1207[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) False",fontsize=16,color="black",shape="box"];1207 -> 1364[label="",style="solid", color="black", weight=3]; 29.49/12.07 1208[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) True",fontsize=16,color="black",shape="box"];1208 -> 1365[label="",style="solid", color="black", weight=3]; 29.49/12.07 2967[label="Pos (primPlusNat xwv2570 xwv2580)",fontsize=16,color="green",shape="box"];2967 -> 2985[label="",style="dashed", color="green", weight=3]; 29.49/12.07 2968[label="primMinusNat xwv2570 xwv2580",fontsize=16,color="burlywood",shape="triangle"];4103[label="xwv2570/Succ xwv25700",fontsize=10,color="white",style="solid",shape="box"];2968 -> 4103[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4103 -> 2986[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4104[label="xwv2570/Zero",fontsize=10,color="white",style="solid",shape="box"];2968 -> 4104[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4104 -> 2987[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 2969 -> 2968[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2969[label="primMinusNat xwv2590 xwv2570",fontsize=16,color="magenta"];2969 -> 2988[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2969 -> 2989[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2970[label="Neg (primPlusNat xwv2570 xwv2590)",fontsize=16,color="green",shape="box"];2970 -> 2990[label="",style="dashed", color="green", weight=3]; 29.49/12.07 1444[label="primCmpInt (Pos (Succ xwv4400)) (Pos xwv460)",fontsize=16,color="black",shape="box"];1444 -> 1637[label="",style="solid", color="black", weight=3]; 29.49/12.07 1445[label="primCmpInt (Pos (Succ xwv4400)) (Neg xwv460)",fontsize=16,color="black",shape="box"];1445 -> 1638[label="",style="solid", color="black", weight=3]; 29.49/12.07 1446[label="primCmpInt (Pos Zero) (Pos xwv460)",fontsize=16,color="burlywood",shape="box"];4105[label="xwv460/Succ xwv4600",fontsize=10,color="white",style="solid",shape="box"];1446 -> 4105[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4105 -> 1639[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4106[label="xwv460/Zero",fontsize=10,color="white",style="solid",shape="box"];1446 -> 4106[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4106 -> 1640[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1447[label="primCmpInt (Pos Zero) (Neg xwv460)",fontsize=16,color="burlywood",shape="box"];4107[label="xwv460/Succ xwv4600",fontsize=10,color="white",style="solid",shape="box"];1447 -> 4107[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4107 -> 1641[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4108[label="xwv460/Zero",fontsize=10,color="white",style="solid",shape="box"];1447 -> 4108[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4108 -> 1642[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1448[label="primCmpInt (Neg (Succ xwv4400)) (Pos xwv460)",fontsize=16,color="black",shape="box"];1448 -> 1643[label="",style="solid", color="black", weight=3]; 29.49/12.07 1449[label="primCmpInt (Neg (Succ xwv4400)) (Neg xwv460)",fontsize=16,color="black",shape="box"];1449 -> 1644[label="",style="solid", color="black", weight=3]; 29.49/12.07 1450[label="primCmpInt (Neg Zero) (Pos xwv460)",fontsize=16,color="burlywood",shape="box"];4109[label="xwv460/Succ xwv4600",fontsize=10,color="white",style="solid",shape="box"];1450 -> 4109[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4109 -> 1645[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4110[label="xwv460/Zero",fontsize=10,color="white",style="solid",shape="box"];1450 -> 4110[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4110 -> 1646[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1451[label="primCmpInt (Neg Zero) (Neg xwv460)",fontsize=16,color="burlywood",shape="box"];4111[label="xwv460/Succ xwv4600",fontsize=10,color="white",style="solid",shape="box"];1451 -> 4111[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4111 -> 1647[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4112[label="xwv460/Zero",fontsize=10,color="white",style="solid",shape="box"];1451 -> 4112[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4112 -> 1648[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 2971 -> 2897[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2971[label="FiniteMap.mkBalBranch6Size_r xwv200 xwv201 xwv253 xwv204",fontsize=16,color="magenta"];2972 -> 2919[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2972[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2973[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv200 xwv201 xwv253 xwv204 xwv200 xwv201 xwv253 xwv204 otherwise",fontsize=16,color="black",shape="box"];2973 -> 2991[label="",style="solid", color="black", weight=3]; 29.49/12.07 2974[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv200 xwv201 xwv253 xwv204 xwv253 xwv204 xwv253",fontsize=16,color="burlywood",shape="box"];4113[label="xwv253/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2974 -> 4113[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4113 -> 2992[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4114[label="xwv253/FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534",fontsize=10,color="white",style="solid",shape="box"];2974 -> 4114[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4114 -> 2993[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 2983 -> 3006[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2983[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv200 xwv201 xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) xwv2040 xwv2041 xwv2042 xwv2043 xwv2044 (FiniteMap.sizeFM xwv2043 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv2044)",fontsize=16,color="magenta"];2983 -> 3007[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 3687 -> 3689[label="",style="dashed", color="red", weight=0]; 29.49/12.07 3687[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv373 xwv371 xwv374) (FiniteMap.mkBranchRight_size xwv373 xwv371 xwv374)",fontsize=16,color="magenta"];3687 -> 3690[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1230 -> 1420[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1230[label="primPlusNat (primMulNat xwv40100 (Succ xwv300000)) (Succ xwv300000)",fontsize=16,color="magenta"];1230 -> 1421[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1231[label="Zero",fontsize=16,color="green",shape="box"];1232[label="Zero",fontsize=16,color="green",shape="box"];1233[label="Zero",fontsize=16,color="green",shape="box"];1651[label="compare3 xwv440 xwv460",fontsize=16,color="black",shape="box"];1651 -> 1701[label="",style="solid", color="black", weight=3]; 29.49/12.07 1652[label="compare3 xwv440 xwv460",fontsize=16,color="black",shape="box"];1652 -> 1702[label="",style="solid", color="black", weight=3]; 29.49/12.07 1655[label="compare (xwv4400 : xwv4401) xwv460",fontsize=16,color="burlywood",shape="box"];4115[label="xwv460/xwv4600 : xwv4601",fontsize=10,color="white",style="solid",shape="box"];1655 -> 4115[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4115 -> 1703[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4116[label="xwv460/[]",fontsize=10,color="white",style="solid",shape="box"];1655 -> 4116[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4116 -> 1704[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1656[label="compare [] xwv460",fontsize=16,color="burlywood",shape="box"];4117[label="xwv460/xwv4600 : xwv4601",fontsize=10,color="white",style="solid",shape="box"];1656 -> 4117[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4117 -> 1705[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4118[label="xwv460/[]",fontsize=10,color="white",style="solid",shape="box"];1656 -> 4118[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4118 -> 1706[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1657[label="compare3 xwv440 xwv460",fontsize=16,color="black",shape="box"];1657 -> 1707[label="",style="solid", color="black", weight=3]; 29.49/12.07 1658[label="primCmpDouble xwv440 xwv460",fontsize=16,color="burlywood",shape="box"];4119[label="xwv440/Double xwv4400 xwv4401",fontsize=10,color="white",style="solid",shape="box"];1658 -> 4119[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4119 -> 1708[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1659[label="compare () xwv460",fontsize=16,color="burlywood",shape="box"];4120[label="xwv460/()",fontsize=10,color="white",style="solid",shape="box"];1659 -> 4120[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4120 -> 1709[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1660[label="compare3 xwv440 xwv460",fontsize=16,color="black",shape="box"];1660 -> 1710[label="",style="solid", color="black", weight=3]; 29.49/12.07 1661[label="primCmpChar xwv440 xwv460",fontsize=16,color="burlywood",shape="box"];4121[label="xwv440/Char xwv4400",fontsize=10,color="white",style="solid",shape="box"];1661 -> 4121[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4121 -> 1711[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1662[label="compare3 xwv440 xwv460",fontsize=16,color="black",shape="box"];1662 -> 1712[label="",style="solid", color="black", weight=3]; 29.49/12.07 1663[label="compare3 xwv440 xwv460",fontsize=16,color="black",shape="box"];1663 -> 1713[label="",style="solid", color="black", weight=3]; 29.49/12.07 1664[label="primCmpFloat xwv440 xwv460",fontsize=16,color="burlywood",shape="box"];4122[label="xwv440/Float xwv4400 xwv4401",fontsize=10,color="white",style="solid",shape="box"];1664 -> 4122[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4122 -> 1714[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1665[label="compare (xwv4400 :% xwv4401) xwv460",fontsize=16,color="burlywood",shape="box"];4123[label="xwv460/xwv4600 :% xwv4601",fontsize=10,color="white",style="solid",shape="box"];1665 -> 4123[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4123 -> 1715[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1666[label="compare (Integer xwv4400) xwv460",fontsize=16,color="burlywood",shape="box"];4124[label="xwv460/Integer xwv4600",fontsize=10,color="white",style="solid",shape="box"];1666 -> 4124[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4124 -> 1716[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1667[label="Left xwv4410 <= Left xwv4610",fontsize=16,color="black",shape="box"];1667 -> 1717[label="",style="solid", color="black", weight=3]; 29.49/12.07 1668[label="Left xwv4410 <= Right xwv4610",fontsize=16,color="black",shape="box"];1668 -> 1718[label="",style="solid", color="black", weight=3]; 29.49/12.07 1669[label="Right xwv4410 <= Left xwv4610",fontsize=16,color="black",shape="box"];1669 -> 1719[label="",style="solid", color="black", weight=3]; 29.49/12.07 1670[label="Right xwv4410 <= Right xwv4610",fontsize=16,color="black",shape="box"];1670 -> 1720[label="",style="solid", color="black", weight=3]; 29.49/12.07 1671[label="LT <= LT",fontsize=16,color="black",shape="box"];1671 -> 1721[label="",style="solid", color="black", weight=3]; 29.49/12.07 1672[label="LT <= EQ",fontsize=16,color="black",shape="box"];1672 -> 1722[label="",style="solid", color="black", weight=3]; 29.49/12.07 1673[label="LT <= GT",fontsize=16,color="black",shape="box"];1673 -> 1723[label="",style="solid", color="black", weight=3]; 29.49/12.07 1674[label="EQ <= LT",fontsize=16,color="black",shape="box"];1674 -> 1724[label="",style="solid", color="black", weight=3]; 29.49/12.07 1675[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1675 -> 1725[label="",style="solid", color="black", weight=3]; 29.49/12.07 1676[label="EQ <= GT",fontsize=16,color="black",shape="box"];1676 -> 1726[label="",style="solid", color="black", weight=3]; 29.49/12.07 1677[label="GT <= LT",fontsize=16,color="black",shape="box"];1677 -> 1727[label="",style="solid", color="black", weight=3]; 29.49/12.07 1678[label="GT <= EQ",fontsize=16,color="black",shape="box"];1678 -> 1728[label="",style="solid", color="black", weight=3]; 29.49/12.07 1679[label="GT <= GT",fontsize=16,color="black",shape="box"];1679 -> 1729[label="",style="solid", color="black", weight=3]; 29.49/12.07 1681 -> 1029[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1681[label="compare xwv441 xwv461",fontsize=16,color="magenta"];1681 -> 1730[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1681 -> 1731[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1680[label="xwv135 /= GT",fontsize=16,color="black",shape="triangle"];1680 -> 1732[label="",style="solid", color="black", weight=3]; 29.49/12.07 1682 -> 1561[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1682[label="compare xwv441 xwv461",fontsize=16,color="magenta"];1682 -> 1733[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1682 -> 1734[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1689[label="(xwv4410,xwv4411,xwv4412) <= (xwv4610,xwv4611,xwv4612)",fontsize=16,color="black",shape="box"];1689 -> 1779[label="",style="solid", color="black", weight=3]; 29.49/12.07 1683 -> 1565[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1683[label="compare xwv441 xwv461",fontsize=16,color="magenta"];1683 -> 1735[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1683 -> 1736[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1684 -> 1567[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1684[label="compare xwv441 xwv461",fontsize=16,color="magenta"];1684 -> 1737[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1684 -> 1738[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1690[label="False <= False",fontsize=16,color="black",shape="box"];1690 -> 1780[label="",style="solid", color="black", weight=3]; 29.49/12.07 1691[label="False <= True",fontsize=16,color="black",shape="box"];1691 -> 1781[label="",style="solid", color="black", weight=3]; 29.49/12.07 1692[label="True <= False",fontsize=16,color="black",shape="box"];1692 -> 1782[label="",style="solid", color="black", weight=3]; 29.49/12.07 1693[label="True <= True",fontsize=16,color="black",shape="box"];1693 -> 1783[label="",style="solid", color="black", weight=3]; 29.49/12.07 1685 -> 1571[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1685[label="compare xwv441 xwv461",fontsize=16,color="magenta"];1685 -> 1739[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1685 -> 1740[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1694[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1694 -> 1784[label="",style="solid", color="black", weight=3]; 29.49/12.07 1695[label="Nothing <= Just xwv4610",fontsize=16,color="black",shape="box"];1695 -> 1785[label="",style="solid", color="black", weight=3]; 29.49/12.07 1696[label="Just xwv4410 <= Nothing",fontsize=16,color="black",shape="box"];1696 -> 1786[label="",style="solid", color="black", weight=3]; 29.49/12.07 1697[label="Just xwv4410 <= Just xwv4610",fontsize=16,color="black",shape="box"];1697 -> 1787[label="",style="solid", color="black", weight=3]; 29.49/12.07 1698[label="(xwv4410,xwv4411) <= (xwv4610,xwv4611)",fontsize=16,color="black",shape="box"];1698 -> 1788[label="",style="solid", color="black", weight=3]; 29.49/12.07 1686 -> 1577[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1686[label="compare xwv441 xwv461",fontsize=16,color="magenta"];1686 -> 1741[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1686 -> 1742[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1687 -> 1579[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1687[label="compare xwv441 xwv461",fontsize=16,color="magenta"];1687 -> 1743[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1687 -> 1744[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1688 -> 1581[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1688[label="compare xwv441 xwv461",fontsize=16,color="magenta"];1688 -> 1745[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1688 -> 1746[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1699[label="compare0 (xwv122,xwv123) (xwv124,xwv125) otherwise",fontsize=16,color="black",shape="box"];1699 -> 1789[label="",style="solid", color="black", weight=3]; 29.49/12.07 1700[label="LT",fontsize=16,color="green",shape="box"];1362[label="FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204",fontsize=16,color="green",shape="box"];1363[label="FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194",fontsize=16,color="green",shape="box"];1364[label="FiniteMap.glueBal2GlueBal0 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) otherwise",fontsize=16,color="black",shape="box"];1364 -> 1423[label="",style="solid", color="black", weight=3]; 29.49/12.07 1365 -> 2803[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1365[label="FiniteMap.mkBalBranch (FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194)) (FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194)) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.deleteMin (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204))",fontsize=16,color="magenta"];1365 -> 2816[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1365 -> 2817[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1365 -> 2818[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1365 -> 2819[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2985 -> 1751[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2985[label="primPlusNat xwv2570 xwv2580",fontsize=16,color="magenta"];2985 -> 3014[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2985 -> 3015[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2986[label="primMinusNat (Succ xwv25700) xwv2580",fontsize=16,color="burlywood",shape="box"];4125[label="xwv2580/Succ xwv25800",fontsize=10,color="white",style="solid",shape="box"];2986 -> 4125[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4125 -> 3016[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4126[label="xwv2580/Zero",fontsize=10,color="white",style="solid",shape="box"];2986 -> 4126[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4126 -> 3017[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 2987[label="primMinusNat Zero xwv2580",fontsize=16,color="burlywood",shape="box"];4127[label="xwv2580/Succ xwv25800",fontsize=10,color="white",style="solid",shape="box"];2987 -> 4127[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4127 -> 3018[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4128[label="xwv2580/Zero",fontsize=10,color="white",style="solid",shape="box"];2987 -> 4128[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4128 -> 3019[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 2988[label="xwv2590",fontsize=16,color="green",shape="box"];2989[label="xwv2570",fontsize=16,color="green",shape="box"];2990 -> 1751[label="",style="dashed", color="red", weight=0]; 29.49/12.07 2990[label="primPlusNat xwv2570 xwv2590",fontsize=16,color="magenta"];2990 -> 3020[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 2990 -> 3021[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1637[label="primCmpNat (Succ xwv4400) xwv460",fontsize=16,color="burlywood",shape="box"];4129[label="xwv460/Succ xwv4600",fontsize=10,color="white",style="solid",shape="box"];1637 -> 4129[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4129 -> 1763[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4130[label="xwv460/Zero",fontsize=10,color="white",style="solid",shape="box"];1637 -> 4130[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4130 -> 1764[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1638[label="GT",fontsize=16,color="green",shape="box"];1639[label="primCmpInt (Pos Zero) (Pos (Succ xwv4600))",fontsize=16,color="black",shape="box"];1639 -> 1765[label="",style="solid", color="black", weight=3]; 29.49/12.07 1640[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1640 -> 1766[label="",style="solid", color="black", weight=3]; 29.49/12.07 1641[label="primCmpInt (Pos Zero) (Neg (Succ xwv4600))",fontsize=16,color="black",shape="box"];1641 -> 1767[label="",style="solid", color="black", weight=3]; 29.49/12.07 1642[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1642 -> 1768[label="",style="solid", color="black", weight=3]; 29.49/12.07 1643[label="LT",fontsize=16,color="green",shape="box"];1644[label="primCmpNat xwv460 (Succ xwv4400)",fontsize=16,color="burlywood",shape="box"];4131[label="xwv460/Succ xwv4600",fontsize=10,color="white",style="solid",shape="box"];1644 -> 4131[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4131 -> 1769[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4132[label="xwv460/Zero",fontsize=10,color="white",style="solid",shape="box"];1644 -> 4132[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4132 -> 1770[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1645[label="primCmpInt (Neg Zero) (Pos (Succ xwv4600))",fontsize=16,color="black",shape="box"];1645 -> 1771[label="",style="solid", color="black", weight=3]; 29.49/12.07 1646[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1646 -> 1772[label="",style="solid", color="black", weight=3]; 29.49/12.07 1647[label="primCmpInt (Neg Zero) (Neg (Succ xwv4600))",fontsize=16,color="black",shape="box"];1647 -> 1773[label="",style="solid", color="black", weight=3]; 29.49/12.07 1648[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1648 -> 1774[label="",style="solid", color="black", weight=3]; 29.49/12.07 2991[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv200 xwv201 xwv253 xwv204 xwv200 xwv201 xwv253 xwv204 True",fontsize=16,color="black",shape="box"];2991 -> 3022[label="",style="solid", color="black", weight=3]; 29.49/12.07 2992[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv200 xwv201 FiniteMap.EmptyFM xwv204 FiniteMap.EmptyFM xwv204 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2992 -> 3023[label="",style="solid", color="black", weight=3]; 29.49/12.07 2993[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv200 xwv201 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534)",fontsize=16,color="black",shape="box"];2993 -> 3024[label="",style="solid", color="black", weight=3]; 29.49/12.07 3007 -> 1471[label="",style="dashed", color="red", weight=0]; 29.49/12.07 3007[label="FiniteMap.sizeFM xwv2043 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv2044",fontsize=16,color="magenta"];3007 -> 3025[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 3007 -> 3026[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 3006[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv200 xwv201 xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) xwv2040 xwv2041 xwv2042 xwv2043 xwv2044 xwv265",fontsize=16,color="burlywood",shape="triangle"];4133[label="xwv265/False",fontsize=10,color="white",style="solid",shape="box"];3006 -> 4133[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4133 -> 3027[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4134[label="xwv265/True",fontsize=10,color="white",style="solid",shape="box"];3006 -> 4134[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4134 -> 3028[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 3690[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv373 xwv371 xwv374",fontsize=16,color="black",shape="box"];3690 -> 3692[label="",style="solid", color="black", weight=3]; 29.49/12.07 3689[label="primPlusInt xwv375 (FiniteMap.mkBranchRight_size xwv373 xwv371 xwv374)",fontsize=16,color="burlywood",shape="triangle"];4135[label="xwv375/Pos xwv3750",fontsize=10,color="white",style="solid",shape="box"];3689 -> 4135[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4135 -> 3693[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4136[label="xwv375/Neg xwv3750",fontsize=10,color="white",style="solid",shape="box"];3689 -> 4136[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4136 -> 3694[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1421 -> 973[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1421[label="primMulNat xwv40100 (Succ xwv300000)",fontsize=16,color="magenta"];1421 -> 1440[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1421 -> 1441[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1420[label="primPlusNat xwv113 (Succ xwv300000)",fontsize=16,color="burlywood",shape="triangle"];4137[label="xwv113/Succ xwv1130",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4137[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4137 -> 1442[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4138[label="xwv113/Zero",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4138[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4138 -> 1443[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1701 -> 1790[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1701[label="compare2 xwv440 xwv460 (xwv440 == xwv460)",fontsize=16,color="magenta"];1701 -> 1791[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1702 -> 1792[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1702[label="compare2 xwv440 xwv460 (xwv440 == xwv460)",fontsize=16,color="magenta"];1702 -> 1793[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1703[label="compare (xwv4400 : xwv4401) (xwv4600 : xwv4601)",fontsize=16,color="black",shape="box"];1703 -> 1794[label="",style="solid", color="black", weight=3]; 29.49/12.07 1704[label="compare (xwv4400 : xwv4401) []",fontsize=16,color="black",shape="box"];1704 -> 1795[label="",style="solid", color="black", weight=3]; 29.49/12.07 1705[label="compare [] (xwv4600 : xwv4601)",fontsize=16,color="black",shape="box"];1705 -> 1796[label="",style="solid", color="black", weight=3]; 29.49/12.07 1706[label="compare [] []",fontsize=16,color="black",shape="box"];1706 -> 1797[label="",style="solid", color="black", weight=3]; 29.49/12.07 1707 -> 1798[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1707[label="compare2 xwv440 xwv460 (xwv440 == xwv460)",fontsize=16,color="magenta"];1707 -> 1799[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1708[label="primCmpDouble (Double xwv4400 xwv4401) xwv460",fontsize=16,color="burlywood",shape="box"];4139[label="xwv4401/Pos xwv44010",fontsize=10,color="white",style="solid",shape="box"];1708 -> 4139[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4139 -> 1800[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4140[label="xwv4401/Neg xwv44010",fontsize=10,color="white",style="solid",shape="box"];1708 -> 4140[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4140 -> 1801[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1709[label="compare () ()",fontsize=16,color="black",shape="box"];1709 -> 1802[label="",style="solid", color="black", weight=3]; 29.49/12.07 1710 -> 1803[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1710[label="compare2 xwv440 xwv460 (xwv440 == xwv460)",fontsize=16,color="magenta"];1710 -> 1804[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1711[label="primCmpChar (Char xwv4400) xwv460",fontsize=16,color="burlywood",shape="box"];4141[label="xwv460/Char xwv4600",fontsize=10,color="white",style="solid",shape="box"];1711 -> 4141[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4141 -> 1805[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1712 -> 1806[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1712[label="compare2 xwv440 xwv460 (xwv440 == xwv460)",fontsize=16,color="magenta"];1712 -> 1807[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1713 -> 1330[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1713[label="compare2 xwv440 xwv460 (xwv440 == xwv460)",fontsize=16,color="magenta"];1713 -> 1808[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1713 -> 1809[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1713 -> 1810[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1714[label="primCmpFloat (Float xwv4400 xwv4401) xwv460",fontsize=16,color="burlywood",shape="box"];4142[label="xwv4401/Pos xwv44010",fontsize=10,color="white",style="solid",shape="box"];1714 -> 4142[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4142 -> 1811[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4143[label="xwv4401/Neg xwv44010",fontsize=10,color="white",style="solid",shape="box"];1714 -> 4143[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4143 -> 1812[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1715[label="compare (xwv4400 :% xwv4401) (xwv4600 :% xwv4601)",fontsize=16,color="black",shape="box"];1715 -> 1813[label="",style="solid", color="black", weight=3]; 29.49/12.07 1716[label="compare (Integer xwv4400) (Integer xwv4600)",fontsize=16,color="black",shape="box"];1716 -> 1814[label="",style="solid", color="black", weight=3]; 29.49/12.07 1717[label="xwv4410 <= xwv4610",fontsize=16,color="blue",shape="box"];4144[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 4144[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4144 -> 1815[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4145[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 4145[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4145 -> 1816[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4146[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 4146[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4146 -> 1817[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4147[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 4147[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4147 -> 1818[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4148[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 4148[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4148 -> 1819[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4149[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 4149[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4149 -> 1820[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4150[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 4150[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4150 -> 1821[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4151[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 4151[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4151 -> 1822[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4152[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 4152[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4152 -> 1823[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4153[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 4153[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4153 -> 1824[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4154[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 4154[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4154 -> 1825[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4155[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 4155[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4155 -> 1826[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4156[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 4156[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4156 -> 1827[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4157[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1717 -> 4157[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4157 -> 1828[label="",style="solid", color="blue", weight=3]; 29.49/12.07 1718[label="True",fontsize=16,color="green",shape="box"];1719[label="False",fontsize=16,color="green",shape="box"];1720[label="xwv4410 <= xwv4610",fontsize=16,color="blue",shape="box"];4158[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 4158[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4158 -> 1829[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4159[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 4159[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4159 -> 1830[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4160[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 4160[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4160 -> 1831[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4161[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 4161[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4161 -> 1832[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4162[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 4162[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4162 -> 1833[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4163[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 4163[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4163 -> 1834[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4164[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 4164[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4164 -> 1835[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4165[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 4165[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4165 -> 1836[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4166[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 4166[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4166 -> 1837[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4167[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 4167[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4167 -> 1838[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4168[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 4168[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4168 -> 1839[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4169[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 4169[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4169 -> 1840[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4170[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 4170[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4170 -> 1841[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4171[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 4171[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4171 -> 1842[label="",style="solid", color="blue", weight=3]; 29.49/12.07 1721[label="True",fontsize=16,color="green",shape="box"];1722[label="True",fontsize=16,color="green",shape="box"];1723[label="True",fontsize=16,color="green",shape="box"];1724[label="False",fontsize=16,color="green",shape="box"];1725[label="True",fontsize=16,color="green",shape="box"];1726[label="True",fontsize=16,color="green",shape="box"];1727[label="False",fontsize=16,color="green",shape="box"];1728[label="False",fontsize=16,color="green",shape="box"];1729[label="True",fontsize=16,color="green",shape="box"];1730[label="xwv461",fontsize=16,color="green",shape="box"];1731[label="xwv441",fontsize=16,color="green",shape="box"];1732 -> 1843[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1732[label="not (xwv135 == GT)",fontsize=16,color="magenta"];1732 -> 1844[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1733[label="xwv461",fontsize=16,color="green",shape="box"];1734[label="xwv441",fontsize=16,color="green",shape="box"];1779 -> 1960[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1779[label="xwv4410 < xwv4610 || xwv4410 == xwv4610 && (xwv4411 < xwv4611 || xwv4411 == xwv4611 && xwv4412 <= xwv4612)",fontsize=16,color="magenta"];1779 -> 1961[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1779 -> 1962[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1735[label="xwv461",fontsize=16,color="green",shape="box"];1736[label="xwv441",fontsize=16,color="green",shape="box"];1737[label="xwv461",fontsize=16,color="green",shape="box"];1738[label="xwv441",fontsize=16,color="green",shape="box"];1780[label="True",fontsize=16,color="green",shape="box"];1781[label="True",fontsize=16,color="green",shape="box"];1782[label="False",fontsize=16,color="green",shape="box"];1783[label="True",fontsize=16,color="green",shape="box"];1739[label="xwv461",fontsize=16,color="green",shape="box"];1740[label="xwv441",fontsize=16,color="green",shape="box"];1784[label="True",fontsize=16,color="green",shape="box"];1785[label="True",fontsize=16,color="green",shape="box"];1786[label="False",fontsize=16,color="green",shape="box"];1787[label="xwv4410 <= xwv4610",fontsize=16,color="blue",shape="box"];4172[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1787 -> 4172[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4172 -> 1850[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4173[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1787 -> 4173[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4173 -> 1851[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4174[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1787 -> 4174[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4174 -> 1852[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4175[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1787 -> 4175[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4175 -> 1853[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4176[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1787 -> 4176[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4176 -> 1854[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4177[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1787 -> 4177[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4177 -> 1855[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4178[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1787 -> 4178[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4178 -> 1856[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4179[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1787 -> 4179[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4179 -> 1857[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4180[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1787 -> 4180[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4180 -> 1858[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4181[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1787 -> 4181[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4181 -> 1859[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4182[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1787 -> 4182[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4182 -> 1860[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4183[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1787 -> 4183[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4183 -> 1861[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4184[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1787 -> 4184[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4184 -> 1862[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4185[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1787 -> 4185[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4185 -> 1863[label="",style="solid", color="blue", weight=3]; 29.49/12.07 1788 -> 1960[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1788[label="xwv4410 < xwv4610 || xwv4410 == xwv4610 && xwv4411 <= xwv4611",fontsize=16,color="magenta"];1788 -> 1963[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1788 -> 1964[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1741[label="xwv461",fontsize=16,color="green",shape="box"];1742[label="xwv441",fontsize=16,color="green",shape="box"];1743[label="xwv461",fontsize=16,color="green",shape="box"];1744[label="xwv441",fontsize=16,color="green",shape="box"];1745[label="xwv461",fontsize=16,color="green",shape="box"];1746[label="xwv441",fontsize=16,color="green",shape="box"];1789[label="compare0 (xwv122,xwv123) (xwv124,xwv125) True",fontsize=16,color="black",shape="box"];1789 -> 1864[label="",style="solid", color="black", weight=3]; 29.49/12.07 1423[label="FiniteMap.glueBal2GlueBal0 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) True",fontsize=16,color="black",shape="box"];1423 -> 1487[label="",style="solid", color="black", weight=3]; 29.49/12.07 2816[label="FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194)",fontsize=16,color="black",shape="box"];2816 -> 2830[label="",style="solid", color="black", weight=3]; 29.49/12.07 2817[label="FiniteMap.deleteMin (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204)",fontsize=16,color="burlywood",shape="triangle"];4186[label="xwv203/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2817 -> 4186[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4186 -> 2831[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4187[label="xwv203/FiniteMap.Branch xwv2030 xwv2031 xwv2032 xwv2033 xwv2034",fontsize=10,color="white",style="solid",shape="box"];2817 -> 4187[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4187 -> 2832[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 2818[label="FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194)",fontsize=16,color="black",shape="box"];2818 -> 2833[label="",style="solid", color="black", weight=3]; 29.49/12.07 2819[label="FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194",fontsize=16,color="green",shape="box"];3014[label="xwv2580",fontsize=16,color="green",shape="box"];3015[label="xwv2570",fontsize=16,color="green",shape="box"];1751[label="primPlusNat xwv1920 xwv1090",fontsize=16,color="burlywood",shape="triangle"];4188[label="xwv1920/Succ xwv19200",fontsize=10,color="white",style="solid",shape="box"];1751 -> 4188[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4188 -> 2062[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4189[label="xwv1920/Zero",fontsize=10,color="white",style="solid",shape="box"];1751 -> 4189[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4189 -> 2063[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 3016[label="primMinusNat (Succ xwv25700) (Succ xwv25800)",fontsize=16,color="black",shape="box"];3016 -> 3041[label="",style="solid", color="black", weight=3]; 29.49/12.07 3017[label="primMinusNat (Succ xwv25700) Zero",fontsize=16,color="black",shape="box"];3017 -> 3042[label="",style="solid", color="black", weight=3]; 29.49/12.07 3018[label="primMinusNat Zero (Succ xwv25800)",fontsize=16,color="black",shape="box"];3018 -> 3043[label="",style="solid", color="black", weight=3]; 29.49/12.07 3019[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];3019 -> 3044[label="",style="solid", color="black", weight=3]; 29.49/12.07 3020[label="xwv2590",fontsize=16,color="green",shape="box"];3021[label="xwv2570",fontsize=16,color="green",shape="box"];1763[label="primCmpNat (Succ xwv4400) (Succ xwv4600)",fontsize=16,color="black",shape="box"];1763 -> 2311[label="",style="solid", color="black", weight=3]; 29.49/12.07 1764[label="primCmpNat (Succ xwv4400) Zero",fontsize=16,color="black",shape="box"];1764 -> 2312[label="",style="solid", color="black", weight=3]; 29.49/12.07 1765 -> 1885[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1765[label="primCmpNat Zero (Succ xwv4600)",fontsize=16,color="magenta"];1765 -> 2313[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1765 -> 2314[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1766[label="EQ",fontsize=16,color="green",shape="box"];1767[label="GT",fontsize=16,color="green",shape="box"];1768[label="EQ",fontsize=16,color="green",shape="box"];1769[label="primCmpNat (Succ xwv4600) (Succ xwv4400)",fontsize=16,color="black",shape="box"];1769 -> 2315[label="",style="solid", color="black", weight=3]; 29.49/12.07 1770[label="primCmpNat Zero (Succ xwv4400)",fontsize=16,color="black",shape="box"];1770 -> 2316[label="",style="solid", color="black", weight=3]; 29.49/12.07 1771[label="LT",fontsize=16,color="green",shape="box"];1772[label="EQ",fontsize=16,color="green",shape="box"];1773 -> 1885[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1773[label="primCmpNat (Succ xwv4600) Zero",fontsize=16,color="magenta"];1773 -> 2317[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1773 -> 2318[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1774[label="EQ",fontsize=16,color="green",shape="box"];3022 -> 3583[label="",style="dashed", color="red", weight=0]; 29.49/12.07 3022[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) xwv200 xwv201 xwv253 xwv204",fontsize=16,color="magenta"];3022 -> 3589[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 3022 -> 3590[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 3022 -> 3591[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 3022 -> 3592[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 3022 -> 3593[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 3023[label="error []",fontsize=16,color="red",shape="box"];3024[label="FiniteMap.mkBalBranch6MkBalBranch12 xwv200 xwv201 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534)",fontsize=16,color="black",shape="box"];3024 -> 3046[label="",style="solid", color="black", weight=3]; 29.49/12.07 3025 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.07 3025[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv2044",fontsize=16,color="magenta"];3025 -> 3047[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 3025 -> 3048[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 3026 -> 1203[label="",style="dashed", color="red", weight=0]; 29.49/12.07 3026[label="FiniteMap.sizeFM xwv2043",fontsize=16,color="magenta"];3026 -> 3049[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 3027[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv200 xwv201 xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) xwv2040 xwv2041 xwv2042 xwv2043 xwv2044 False",fontsize=16,color="black",shape="box"];3027 -> 3050[label="",style="solid", color="black", weight=3]; 29.49/12.07 3028[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv200 xwv201 xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) xwv2040 xwv2041 xwv2042 xwv2043 xwv2044 True",fontsize=16,color="black",shape="box"];3028 -> 3051[label="",style="solid", color="black", weight=3]; 29.49/12.07 3692 -> 2931[label="",style="dashed", color="red", weight=0]; 29.49/12.07 3692[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xwv373 xwv371 xwv374)",fontsize=16,color="magenta"];3692 -> 3695[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 3692 -> 3696[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 3693[label="primPlusInt (Pos xwv3750) (FiniteMap.mkBranchRight_size xwv373 xwv371 xwv374)",fontsize=16,color="black",shape="box"];3693 -> 3697[label="",style="solid", color="black", weight=3]; 29.49/12.07 3694[label="primPlusInt (Neg xwv3750) (FiniteMap.mkBranchRight_size xwv373 xwv371 xwv374)",fontsize=16,color="black",shape="box"];3694 -> 3698[label="",style="solid", color="black", weight=3]; 29.49/12.07 1440[label="xwv40100",fontsize=16,color="green",shape="box"];1441[label="Succ xwv300000",fontsize=16,color="green",shape="box"];1442[label="primPlusNat (Succ xwv1130) (Succ xwv300000)",fontsize=16,color="black",shape="box"];1442 -> 1549[label="",style="solid", color="black", weight=3]; 29.49/12.07 1443[label="primPlusNat Zero (Succ xwv300000)",fontsize=16,color="black",shape="box"];1443 -> 1550[label="",style="solid", color="black", weight=3]; 29.49/12.07 1791 -> 129[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1791[label="xwv440 == xwv460",fontsize=16,color="magenta"];1791 -> 1865[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1791 -> 1866[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1790[label="compare2 xwv440 xwv460 xwv136",fontsize=16,color="burlywood",shape="triangle"];4190[label="xwv136/False",fontsize=10,color="white",style="solid",shape="box"];1790 -> 4190[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4190 -> 1867[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4191[label="xwv136/True",fontsize=10,color="white",style="solid",shape="box"];1790 -> 4191[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4191 -> 1868[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1793 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1793[label="xwv440 == xwv460",fontsize=16,color="magenta"];1793 -> 1869[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1793 -> 1870[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1792[label="compare2 xwv440 xwv460 xwv137",fontsize=16,color="burlywood",shape="triangle"];4192[label="xwv137/False",fontsize=10,color="white",style="solid",shape="box"];1792 -> 4192[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4192 -> 1871[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4193[label="xwv137/True",fontsize=10,color="white",style="solid",shape="box"];1792 -> 4193[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4193 -> 1872[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1794 -> 1873[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1794[label="primCompAux xwv4400 xwv4600 (compare xwv4401 xwv4601)",fontsize=16,color="magenta"];1794 -> 1874[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1795[label="GT",fontsize=16,color="green",shape="box"];1796[label="LT",fontsize=16,color="green",shape="box"];1797[label="EQ",fontsize=16,color="green",shape="box"];1799 -> 122[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1799[label="xwv440 == xwv460",fontsize=16,color="magenta"];1799 -> 1875[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1799 -> 1876[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1798[label="compare2 xwv440 xwv460 xwv138",fontsize=16,color="burlywood",shape="triangle"];4194[label="xwv138/False",fontsize=10,color="white",style="solid",shape="box"];1798 -> 4194[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4194 -> 1877[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4195[label="xwv138/True",fontsize=10,color="white",style="solid",shape="box"];1798 -> 4195[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4195 -> 1878[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1800[label="primCmpDouble (Double xwv4400 (Pos xwv44010)) xwv460",fontsize=16,color="burlywood",shape="box"];4196[label="xwv460/Double xwv4600 xwv4601",fontsize=10,color="white",style="solid",shape="box"];1800 -> 4196[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4196 -> 1879[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1801[label="primCmpDouble (Double xwv4400 (Neg xwv44010)) xwv460",fontsize=16,color="burlywood",shape="box"];4197[label="xwv460/Double xwv4600 xwv4601",fontsize=10,color="white",style="solid",shape="box"];1801 -> 4197[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4197 -> 1880[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1802[label="EQ",fontsize=16,color="green",shape="box"];1804 -> 127[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1804[label="xwv440 == xwv460",fontsize=16,color="magenta"];1804 -> 1881[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1804 -> 1882[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1803[label="compare2 xwv440 xwv460 xwv139",fontsize=16,color="burlywood",shape="triangle"];4198[label="xwv139/False",fontsize=10,color="white",style="solid",shape="box"];1803 -> 4198[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4198 -> 1883[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4199[label="xwv139/True",fontsize=10,color="white",style="solid",shape="box"];1803 -> 4199[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4199 -> 1884[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1805[label="primCmpChar (Char xwv4400) (Char xwv4600)",fontsize=16,color="black",shape="box"];1805 -> 1885[label="",style="solid", color="black", weight=3]; 29.49/12.07 1807 -> 125[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1807[label="xwv440 == xwv460",fontsize=16,color="magenta"];1807 -> 1886[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1807 -> 1887[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1806[label="compare2 xwv440 xwv460 xwv140",fontsize=16,color="burlywood",shape="triangle"];4200[label="xwv140/False",fontsize=10,color="white",style="solid",shape="box"];1806 -> 4200[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4200 -> 1888[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 4201[label="xwv140/True",fontsize=10,color="white",style="solid",shape="box"];1806 -> 4201[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4201 -> 1889[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1808[label="xwv460",fontsize=16,color="green",shape="box"];1809[label="xwv440",fontsize=16,color="green",shape="box"];1810 -> 132[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1810[label="xwv440 == xwv460",fontsize=16,color="magenta"];1810 -> 1890[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1810 -> 1891[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1811[label="primCmpFloat (Float xwv4400 (Pos xwv44010)) xwv460",fontsize=16,color="burlywood",shape="box"];4202[label="xwv460/Float xwv4600 xwv4601",fontsize=10,color="white",style="solid",shape="box"];1811 -> 4202[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4202 -> 1892[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1812[label="primCmpFloat (Float xwv4400 (Neg xwv44010)) xwv460",fontsize=16,color="burlywood",shape="box"];4203[label="xwv460/Float xwv4600 xwv4601",fontsize=10,color="white",style="solid",shape="box"];1812 -> 4203[label="",style="solid", color="burlywood", weight=9]; 29.49/12.07 4203 -> 1893[label="",style="solid", color="burlywood", weight=3]; 29.49/12.07 1813[label="compare (xwv4400 * xwv4601) (xwv4600 * xwv4401)",fontsize=16,color="blue",shape="box"];4204[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1813 -> 4204[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4204 -> 1894[label="",style="solid", color="blue", weight=3]; 29.49/12.07 4205[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1813 -> 4205[label="",style="solid", color="blue", weight=9]; 29.49/12.07 4205 -> 1895[label="",style="solid", color="blue", weight=3]; 29.49/12.07 1814 -> 1105[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1814[label="primCmpInt xwv4400 xwv4600",fontsize=16,color="magenta"];1814 -> 1896[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1814 -> 1897[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1815 -> 1524[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1815[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1815 -> 1898[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1815 -> 1899[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1816 -> 1525[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1816[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1816 -> 1900[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1816 -> 1901[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1817 -> 1526[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1817[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1817 -> 1902[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1817 -> 1903[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1818 -> 1527[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1818[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1818 -> 1904[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1818 -> 1905[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1819 -> 1528[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1819[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1819 -> 1906[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1819 -> 1907[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1820 -> 1529[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1820[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1820 -> 1908[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1820 -> 1909[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1821 -> 1530[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1821[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1821 -> 1910[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1821 -> 1911[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1822 -> 1531[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1822[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1822 -> 1912[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1822 -> 1913[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1823 -> 1532[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1823[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1823 -> 1914[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1823 -> 1915[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1824 -> 1533[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1824[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1824 -> 1916[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1824 -> 1917[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1825 -> 1534[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1825[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1825 -> 1918[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1825 -> 1919[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1826 -> 1535[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1826[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1826 -> 1920[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1826 -> 1921[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1827 -> 1536[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1827[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1827 -> 1922[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1827 -> 1923[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1828 -> 1537[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1828[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1828 -> 1924[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1828 -> 1925[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1829 -> 1524[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1829[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1829 -> 1926[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1829 -> 1927[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1830 -> 1525[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1830[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1830 -> 1928[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1830 -> 1929[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1831 -> 1526[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1831[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1831 -> 1930[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1831 -> 1931[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1832 -> 1527[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1832[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1832 -> 1932[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1832 -> 1933[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1833 -> 1528[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1833[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1833 -> 1934[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1833 -> 1935[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1834 -> 1529[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1834[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1834 -> 1936[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1834 -> 1937[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1835 -> 1530[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1835[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1835 -> 1938[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1835 -> 1939[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1836 -> 1531[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1836[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1836 -> 1940[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1836 -> 1941[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1837 -> 1532[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1837[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1837 -> 1942[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1837 -> 1943[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1838 -> 1533[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1838[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1838 -> 1944[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1838 -> 1945[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1839 -> 1534[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1839[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1839 -> 1946[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1839 -> 1947[label="",style="dashed", color="magenta", weight=3]; 29.49/12.07 1840 -> 1535[label="",style="dashed", color="red", weight=0]; 29.49/12.07 1840[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1840 -> 1948[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1840 -> 1949[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1841 -> 1536[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1841[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1841 -> 1950[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1841 -> 1951[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1842 -> 1537[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1842[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1842 -> 1952[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1842 -> 1953[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1844 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1844[label="xwv135 == GT",fontsize=16,color="magenta"];1844 -> 1954[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1844 -> 1955[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1843[label="not xwv141",fontsize=16,color="burlywood",shape="triangle"];4206[label="xwv141/False",fontsize=10,color="white",style="solid",shape="box"];1843 -> 4206[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4206 -> 1956[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4207[label="xwv141/True",fontsize=10,color="white",style="solid",shape="box"];1843 -> 4207[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4207 -> 1957[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 1961[label="xwv4410 < xwv4610",fontsize=16,color="blue",shape="box"];4208[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 4208[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4208 -> 1969[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4209[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 4209[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4209 -> 1970[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4210[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 4210[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4210 -> 1971[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4211[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 4211[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4211 -> 1972[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4212[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 4212[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4212 -> 1973[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4213[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 4213[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4213 -> 1974[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4214[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 4214[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4214 -> 1975[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4215[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 4215[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4215 -> 1976[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4216[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 4216[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4216 -> 1977[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4217[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 4217[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4217 -> 1978[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4218[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 4218[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4218 -> 1979[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4219[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 4219[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4219 -> 1980[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4220[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 4220[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4220 -> 1981[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4221[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1961 -> 4221[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4221 -> 1982[label="",style="solid", color="blue", weight=3]; 29.49/12.08 1962 -> 374[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1962[label="xwv4410 == xwv4610 && (xwv4411 < xwv4611 || xwv4411 == xwv4611 && xwv4412 <= xwv4612)",fontsize=16,color="magenta"];1962 -> 1983[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1962 -> 1984[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1960[label="xwv148 || xwv149",fontsize=16,color="burlywood",shape="triangle"];4222[label="xwv148/False",fontsize=10,color="white",style="solid",shape="box"];1960 -> 4222[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4222 -> 1985[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4223[label="xwv148/True",fontsize=10,color="white",style="solid",shape="box"];1960 -> 4223[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4223 -> 1986[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 1850 -> 1524[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1850[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1850 -> 1987[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1850 -> 1988[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1851 -> 1525[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1851[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1851 -> 1989[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1851 -> 1990[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1852 -> 1526[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1852[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1852 -> 1991[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1852 -> 1992[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1853 -> 1527[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1853[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1853 -> 1993[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1853 -> 1994[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1854 -> 1528[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1854[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1854 -> 1995[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1854 -> 1996[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1855 -> 1529[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1855[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1855 -> 1997[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1855 -> 1998[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1856 -> 1530[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1856[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1856 -> 1999[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1856 -> 2000[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1857 -> 1531[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1857[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1857 -> 2001[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1857 -> 2002[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1858 -> 1532[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1858[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1858 -> 2003[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1858 -> 2004[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1859 -> 1533[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1859[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1859 -> 2005[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1859 -> 2006[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1860 -> 1534[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1860[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1860 -> 2007[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1860 -> 2008[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1861 -> 1535[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1861[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1861 -> 2009[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1861 -> 2010[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1862 -> 1536[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1862[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1862 -> 2011[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1862 -> 2012[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1863 -> 1537[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1863[label="xwv4410 <= xwv4610",fontsize=16,color="magenta"];1863 -> 2013[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1863 -> 2014[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1963[label="xwv4410 < xwv4610",fontsize=16,color="blue",shape="box"];4224[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 4224[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4224 -> 2015[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4225[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 4225[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4225 -> 2016[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4226[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 4226[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4226 -> 2017[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4227[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 4227[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4227 -> 2018[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4228[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 4228[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4228 -> 2019[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4229[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 4229[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4229 -> 2020[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4230[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 4230[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4230 -> 2021[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4231[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 4231[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4231 -> 2022[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4232[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 4232[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4232 -> 2023[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4233[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 4233[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4233 -> 2024[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4234[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 4234[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4234 -> 2025[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4235[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 4235[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4235 -> 2026[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4236[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 4236[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4236 -> 2027[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4237[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 4237[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4237 -> 2028[label="",style="solid", color="blue", weight=3]; 29.49/12.08 1964 -> 374[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1964[label="xwv4410 == xwv4610 && xwv4411 <= xwv4611",fontsize=16,color="magenta"];1964 -> 2029[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1964 -> 2030[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1864[label="GT",fontsize=16,color="green",shape="box"];1487 -> 2803[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1487[label="FiniteMap.mkBalBranch (FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194)) (FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194)) (FiniteMap.deleteMax (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194)) (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204)",fontsize=16,color="magenta"];1487 -> 2820[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1487 -> 2821[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1487 -> 2822[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1487 -> 2823[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2830[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.glueBal2Vv3 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194))",fontsize=16,color="black",shape="box"];2830 -> 2839[label="",style="solid", color="black", weight=3]; 29.49/12.08 2831[label="FiniteMap.deleteMin (FiniteMap.Branch xwv200 xwv201 xwv202 FiniteMap.EmptyFM xwv204)",fontsize=16,color="black",shape="box"];2831 -> 2840[label="",style="solid", color="black", weight=3]; 29.49/12.08 2832[label="FiniteMap.deleteMin (FiniteMap.Branch xwv200 xwv201 xwv202 (FiniteMap.Branch xwv2030 xwv2031 xwv2032 xwv2033 xwv2034) xwv204)",fontsize=16,color="black",shape="box"];2832 -> 2841[label="",style="solid", color="black", weight=3]; 29.49/12.08 2833[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.glueBal2Vv3 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194))",fontsize=16,color="black",shape="box"];2833 -> 2842[label="",style="solid", color="black", weight=3]; 29.49/12.08 2062[label="primPlusNat (Succ xwv19200) xwv1090",fontsize=16,color="burlywood",shape="box"];4238[label="xwv1090/Succ xwv10900",fontsize=10,color="white",style="solid",shape="box"];2062 -> 4238[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4238 -> 2327[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4239[label="xwv1090/Zero",fontsize=10,color="white",style="solid",shape="box"];2062 -> 4239[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4239 -> 2328[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 2063[label="primPlusNat Zero xwv1090",fontsize=16,color="burlywood",shape="box"];4240[label="xwv1090/Succ xwv10900",fontsize=10,color="white",style="solid",shape="box"];2063 -> 4240[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4240 -> 2329[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4241[label="xwv1090/Zero",fontsize=10,color="white",style="solid",shape="box"];2063 -> 4241[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4241 -> 2330[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 3041 -> 2968[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3041[label="primMinusNat xwv25700 xwv25800",fontsize=16,color="magenta"];3041 -> 3069[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3041 -> 3070[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3042[label="Pos (Succ xwv25700)",fontsize=16,color="green",shape="box"];3043[label="Neg (Succ xwv25800)",fontsize=16,color="green",shape="box"];3044[label="Pos Zero",fontsize=16,color="green",shape="box"];2311 -> 1885[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2311[label="primCmpNat xwv4400 xwv4600",fontsize=16,color="magenta"];2311 -> 2458[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2311 -> 2459[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2312[label="GT",fontsize=16,color="green",shape="box"];2313[label="Zero",fontsize=16,color="green",shape="box"];2314[label="Succ xwv4600",fontsize=16,color="green",shape="box"];1885[label="primCmpNat xwv4400 xwv4600",fontsize=16,color="burlywood",shape="triangle"];4242[label="xwv4400/Succ xwv44000",fontsize=10,color="white",style="solid",shape="box"];1885 -> 4242[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4242 -> 2046[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4243[label="xwv4400/Zero",fontsize=10,color="white",style="solid",shape="box"];1885 -> 4243[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4243 -> 2047[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 2315 -> 1885[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2315[label="primCmpNat xwv4600 xwv4400",fontsize=16,color="magenta"];2315 -> 2460[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2315 -> 2461[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2316[label="LT",fontsize=16,color="green",shape="box"];2317[label="Succ xwv4600",fontsize=16,color="green",shape="box"];2318[label="Zero",fontsize=16,color="green",shape="box"];3589[label="xwv201",fontsize=16,color="green",shape="box"];3590[label="xwv200",fontsize=16,color="green",shape="box"];3591[label="xwv253",fontsize=16,color="green",shape="box"];3592[label="xwv204",fontsize=16,color="green",shape="box"];3593[label="Succ Zero",fontsize=16,color="green",shape="box"];3046 -> 3071[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3046[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv200 xwv201 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 xwv2530 xwv2531 xwv2532 xwv2533 xwv2534 (FiniteMap.sizeFM xwv2534 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv2533)",fontsize=16,color="magenta"];3046 -> 3072[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3047 -> 1203[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3047[label="FiniteMap.sizeFM xwv2044",fontsize=16,color="magenta"];3047 -> 3073[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3048[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3049[label="xwv2043",fontsize=16,color="green",shape="box"];3050[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv200 xwv201 xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) xwv2040 xwv2041 xwv2042 xwv2043 xwv2044 otherwise",fontsize=16,color="black",shape="box"];3050 -> 3074[label="",style="solid", color="black", weight=3]; 29.49/12.08 3051[label="FiniteMap.mkBalBranch6Single_L xwv200 xwv201 xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044)",fontsize=16,color="black",shape="box"];3051 -> 3075[label="",style="solid", color="black", weight=3]; 29.49/12.08 3695[label="Succ Zero",fontsize=16,color="green",shape="box"];3696[label="FiniteMap.mkBranchLeft_size xwv373 xwv371 xwv374",fontsize=16,color="black",shape="box"];3696 -> 3699[label="",style="solid", color="black", weight=3]; 29.49/12.08 3697 -> 2931[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3697[label="primPlusInt (Pos xwv3750) (FiniteMap.sizeFM xwv374)",fontsize=16,color="magenta"];3697 -> 3700[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3697 -> 3701[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3698 -> 2933[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3698[label="primPlusInt (Neg xwv3750) (FiniteMap.sizeFM xwv374)",fontsize=16,color="magenta"];3698 -> 3702[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3698 -> 3703[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1549[label="Succ (Succ (primPlusNat xwv1130 xwv300000))",fontsize=16,color="green",shape="box"];1549 -> 1757[label="",style="dashed", color="green", weight=3]; 29.49/12.08 1550[label="Succ xwv300000",fontsize=16,color="green",shape="box"];1865[label="xwv460",fontsize=16,color="green",shape="box"];1866[label="xwv440",fontsize=16,color="green",shape="box"];1867[label="compare2 xwv440 xwv460 False",fontsize=16,color="black",shape="box"];1867 -> 2031[label="",style="solid", color="black", weight=3]; 29.49/12.08 1868[label="compare2 xwv440 xwv460 True",fontsize=16,color="black",shape="box"];1868 -> 2032[label="",style="solid", color="black", weight=3]; 29.49/12.08 1869[label="xwv460",fontsize=16,color="green",shape="box"];1870[label="xwv440",fontsize=16,color="green",shape="box"];1871[label="compare2 xwv440 xwv460 False",fontsize=16,color="black",shape="box"];1871 -> 2033[label="",style="solid", color="black", weight=3]; 29.49/12.08 1872[label="compare2 xwv440 xwv460 True",fontsize=16,color="black",shape="box"];1872 -> 2034[label="",style="solid", color="black", weight=3]; 29.49/12.08 1874 -> 1561[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1874[label="compare xwv4401 xwv4601",fontsize=16,color="magenta"];1874 -> 2035[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1874 -> 2036[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1873[label="primCompAux xwv4400 xwv4600 xwv144",fontsize=16,color="black",shape="triangle"];1873 -> 2037[label="",style="solid", color="black", weight=3]; 29.49/12.08 1875[label="xwv460",fontsize=16,color="green",shape="box"];1876[label="xwv440",fontsize=16,color="green",shape="box"];1877[label="compare2 xwv440 xwv460 False",fontsize=16,color="black",shape="box"];1877 -> 2038[label="",style="solid", color="black", weight=3]; 29.49/12.08 1878[label="compare2 xwv440 xwv460 True",fontsize=16,color="black",shape="box"];1878 -> 2039[label="",style="solid", color="black", weight=3]; 29.49/12.08 1879[label="primCmpDouble (Double xwv4400 (Pos xwv44010)) (Double xwv4600 xwv4601)",fontsize=16,color="burlywood",shape="box"];4244[label="xwv4601/Pos xwv46010",fontsize=10,color="white",style="solid",shape="box"];1879 -> 4244[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4244 -> 2040[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4245[label="xwv4601/Neg xwv46010",fontsize=10,color="white",style="solid",shape="box"];1879 -> 4245[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4245 -> 2041[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 1880[label="primCmpDouble (Double xwv4400 (Neg xwv44010)) (Double xwv4600 xwv4601)",fontsize=16,color="burlywood",shape="box"];4246[label="xwv4601/Pos xwv46010",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4246[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4246 -> 2042[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4247[label="xwv4601/Neg xwv46010",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4247[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4247 -> 2043[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 1881[label="xwv460",fontsize=16,color="green",shape="box"];1882[label="xwv440",fontsize=16,color="green",shape="box"];1883[label="compare2 xwv440 xwv460 False",fontsize=16,color="black",shape="box"];1883 -> 2044[label="",style="solid", color="black", weight=3]; 29.49/12.08 1884[label="compare2 xwv440 xwv460 True",fontsize=16,color="black",shape="box"];1884 -> 2045[label="",style="solid", color="black", weight=3]; 29.49/12.08 1886[label="xwv460",fontsize=16,color="green",shape="box"];1887[label="xwv440",fontsize=16,color="green",shape="box"];1888[label="compare2 xwv440 xwv460 False",fontsize=16,color="black",shape="box"];1888 -> 2048[label="",style="solid", color="black", weight=3]; 29.49/12.08 1889[label="compare2 xwv440 xwv460 True",fontsize=16,color="black",shape="box"];1889 -> 2049[label="",style="solid", color="black", weight=3]; 29.49/12.08 1890[label="xwv460",fontsize=16,color="green",shape="box"];1891[label="xwv440",fontsize=16,color="green",shape="box"];1892[label="primCmpFloat (Float xwv4400 (Pos xwv44010)) (Float xwv4600 xwv4601)",fontsize=16,color="burlywood",shape="box"];4248[label="xwv4601/Pos xwv46010",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4248[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4248 -> 2050[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4249[label="xwv4601/Neg xwv46010",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4249[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4249 -> 2051[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 1893[label="primCmpFloat (Float xwv4400 (Neg xwv44010)) (Float xwv4600 xwv4601)",fontsize=16,color="burlywood",shape="box"];4250[label="xwv4601/Pos xwv46010",fontsize=10,color="white",style="solid",shape="box"];1893 -> 4250[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4250 -> 2052[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4251[label="xwv4601/Neg xwv46010",fontsize=10,color="white",style="solid",shape="box"];1893 -> 4251[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4251 -> 2053[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 1894 -> 1029[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1894[label="compare (xwv4400 * xwv4601) (xwv4600 * xwv4401)",fontsize=16,color="magenta"];1894 -> 2054[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1894 -> 2055[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1895 -> 1581[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1895[label="compare (xwv4400 * xwv4601) (xwv4600 * xwv4401)",fontsize=16,color="magenta"];1895 -> 2056[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1895 -> 2057[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1896[label="xwv4600",fontsize=16,color="green",shape="box"];1897[label="xwv4400",fontsize=16,color="green",shape="box"];1898[label="xwv4610",fontsize=16,color="green",shape="box"];1899[label="xwv4410",fontsize=16,color="green",shape="box"];1900[label="xwv4610",fontsize=16,color="green",shape="box"];1901[label="xwv4410",fontsize=16,color="green",shape="box"];1902[label="xwv4610",fontsize=16,color="green",shape="box"];1903[label="xwv4410",fontsize=16,color="green",shape="box"];1904[label="xwv4610",fontsize=16,color="green",shape="box"];1905[label="xwv4410",fontsize=16,color="green",shape="box"];1906[label="xwv4610",fontsize=16,color="green",shape="box"];1907[label="xwv4410",fontsize=16,color="green",shape="box"];1908[label="xwv4610",fontsize=16,color="green",shape="box"];1909[label="xwv4410",fontsize=16,color="green",shape="box"];1910[label="xwv4610",fontsize=16,color="green",shape="box"];1911[label="xwv4410",fontsize=16,color="green",shape="box"];1912[label="xwv4610",fontsize=16,color="green",shape="box"];1913[label="xwv4410",fontsize=16,color="green",shape="box"];1914[label="xwv4610",fontsize=16,color="green",shape="box"];1915[label="xwv4410",fontsize=16,color="green",shape="box"];1916[label="xwv4610",fontsize=16,color="green",shape="box"];1917[label="xwv4410",fontsize=16,color="green",shape="box"];1918[label="xwv4610",fontsize=16,color="green",shape="box"];1919[label="xwv4410",fontsize=16,color="green",shape="box"];1920[label="xwv4610",fontsize=16,color="green",shape="box"];1921[label="xwv4410",fontsize=16,color="green",shape="box"];1922[label="xwv4610",fontsize=16,color="green",shape="box"];1923[label="xwv4410",fontsize=16,color="green",shape="box"];1924[label="xwv4610",fontsize=16,color="green",shape="box"];1925[label="xwv4410",fontsize=16,color="green",shape="box"];1926[label="xwv4610",fontsize=16,color="green",shape="box"];1927[label="xwv4410",fontsize=16,color="green",shape="box"];1928[label="xwv4610",fontsize=16,color="green",shape="box"];1929[label="xwv4410",fontsize=16,color="green",shape="box"];1930[label="xwv4610",fontsize=16,color="green",shape="box"];1931[label="xwv4410",fontsize=16,color="green",shape="box"];1932[label="xwv4610",fontsize=16,color="green",shape="box"];1933[label="xwv4410",fontsize=16,color="green",shape="box"];1934[label="xwv4610",fontsize=16,color="green",shape="box"];1935[label="xwv4410",fontsize=16,color="green",shape="box"];1936[label="xwv4610",fontsize=16,color="green",shape="box"];1937[label="xwv4410",fontsize=16,color="green",shape="box"];1938[label="xwv4610",fontsize=16,color="green",shape="box"];1939[label="xwv4410",fontsize=16,color="green",shape="box"];1940[label="xwv4610",fontsize=16,color="green",shape="box"];1941[label="xwv4410",fontsize=16,color="green",shape="box"];1942[label="xwv4610",fontsize=16,color="green",shape="box"];1943[label="xwv4410",fontsize=16,color="green",shape="box"];1944[label="xwv4610",fontsize=16,color="green",shape="box"];1945[label="xwv4410",fontsize=16,color="green",shape="box"];1946[label="xwv4610",fontsize=16,color="green",shape="box"];1947[label="xwv4410",fontsize=16,color="green",shape="box"];1948[label="xwv4610",fontsize=16,color="green",shape="box"];1949[label="xwv4410",fontsize=16,color="green",shape="box"];1950[label="xwv4610",fontsize=16,color="green",shape="box"];1951[label="xwv4410",fontsize=16,color="green",shape="box"];1952[label="xwv4610",fontsize=16,color="green",shape="box"];1953[label="xwv4410",fontsize=16,color="green",shape="box"];1954[label="GT",fontsize=16,color="green",shape="box"];1955[label="xwv135",fontsize=16,color="green",shape="box"];1956[label="not False",fontsize=16,color="black",shape="box"];1956 -> 2058[label="",style="solid", color="black", weight=3]; 29.49/12.08 1957[label="not True",fontsize=16,color="black",shape="box"];1957 -> 2059[label="",style="solid", color="black", weight=3]; 29.49/12.08 1969 -> 1469[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1969[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];1969 -> 2074[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1969 -> 2075[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1970 -> 1470[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1970[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];1970 -> 2076[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1970 -> 2077[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1971 -> 1471[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1971[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];1971 -> 2078[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1971 -> 2079[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1972 -> 1472[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1972[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];1972 -> 2080[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1972 -> 2081[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1973 -> 1473[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1973[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];1973 -> 2082[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1973 -> 2083[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1974 -> 1474[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1974[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];1974 -> 2084[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1974 -> 2085[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1975 -> 1475[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1975[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];1975 -> 2086[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1975 -> 2087[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1976 -> 1476[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1976[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];1976 -> 2088[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1976 -> 2089[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1977 -> 1477[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1977[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];1977 -> 2090[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1977 -> 2091[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1978 -> 1478[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1978[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];1978 -> 2092[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1978 -> 2093[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1979 -> 1479[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1979[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];1979 -> 2094[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1979 -> 2095[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1980 -> 1480[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1980[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];1980 -> 2096[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1980 -> 2097[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1981 -> 1481[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1981[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];1981 -> 2098[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1981 -> 2099[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1982 -> 1482[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1982[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];1982 -> 2100[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1982 -> 2101[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1983[label="xwv4410 == xwv4610",fontsize=16,color="blue",shape="box"];4252[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 4252[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4252 -> 2102[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4253[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 4253[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4253 -> 2103[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4254[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 4254[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4254 -> 2104[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4255[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 4255[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4255 -> 2105[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4256[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 4256[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4256 -> 2106[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4257[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 4257[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4257 -> 2107[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4258[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 4258[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4258 -> 2108[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4259[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 4259[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4259 -> 2109[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4260[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 4260[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4260 -> 2110[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4261[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 4261[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4261 -> 2111[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4262[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 4262[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4262 -> 2112[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4263[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 4263[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4263 -> 2113[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4264[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 4264[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4264 -> 2114[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4265[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 4265[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4265 -> 2115[label="",style="solid", color="blue", weight=3]; 29.49/12.08 1984 -> 1960[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1984[label="xwv4411 < xwv4611 || xwv4411 == xwv4611 && xwv4412 <= xwv4612",fontsize=16,color="magenta"];1984 -> 2116[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1984 -> 2117[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1985[label="False || xwv149",fontsize=16,color="black",shape="box"];1985 -> 2118[label="",style="solid", color="black", weight=3]; 29.49/12.08 1986[label="True || xwv149",fontsize=16,color="black",shape="box"];1986 -> 2119[label="",style="solid", color="black", weight=3]; 29.49/12.08 1987[label="xwv4610",fontsize=16,color="green",shape="box"];1988[label="xwv4410",fontsize=16,color="green",shape="box"];1989[label="xwv4610",fontsize=16,color="green",shape="box"];1990[label="xwv4410",fontsize=16,color="green",shape="box"];1991[label="xwv4610",fontsize=16,color="green",shape="box"];1992[label="xwv4410",fontsize=16,color="green",shape="box"];1993[label="xwv4610",fontsize=16,color="green",shape="box"];1994[label="xwv4410",fontsize=16,color="green",shape="box"];1995[label="xwv4610",fontsize=16,color="green",shape="box"];1996[label="xwv4410",fontsize=16,color="green",shape="box"];1997[label="xwv4610",fontsize=16,color="green",shape="box"];1998[label="xwv4410",fontsize=16,color="green",shape="box"];1999[label="xwv4610",fontsize=16,color="green",shape="box"];2000[label="xwv4410",fontsize=16,color="green",shape="box"];2001[label="xwv4610",fontsize=16,color="green",shape="box"];2002[label="xwv4410",fontsize=16,color="green",shape="box"];2003[label="xwv4610",fontsize=16,color="green",shape="box"];2004[label="xwv4410",fontsize=16,color="green",shape="box"];2005[label="xwv4610",fontsize=16,color="green",shape="box"];2006[label="xwv4410",fontsize=16,color="green",shape="box"];2007[label="xwv4610",fontsize=16,color="green",shape="box"];2008[label="xwv4410",fontsize=16,color="green",shape="box"];2009[label="xwv4610",fontsize=16,color="green",shape="box"];2010[label="xwv4410",fontsize=16,color="green",shape="box"];2011[label="xwv4610",fontsize=16,color="green",shape="box"];2012[label="xwv4410",fontsize=16,color="green",shape="box"];2013[label="xwv4610",fontsize=16,color="green",shape="box"];2014[label="xwv4410",fontsize=16,color="green",shape="box"];2015 -> 1469[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2015[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];2015 -> 2120[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2015 -> 2121[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2016 -> 1470[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2016[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];2016 -> 2122[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2016 -> 2123[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2017 -> 1471[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2017[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];2017 -> 2124[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2017 -> 2125[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2018 -> 1472[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2018[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];2018 -> 2126[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2018 -> 2127[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2019 -> 1473[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2019[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];2019 -> 2128[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2019 -> 2129[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2020 -> 1474[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2020[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];2020 -> 2130[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2020 -> 2131[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2021 -> 1475[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2021[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];2021 -> 2132[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2021 -> 2133[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2022 -> 1476[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2022[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];2022 -> 2134[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2022 -> 2135[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2023 -> 1477[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2023[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];2023 -> 2136[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2023 -> 2137[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2024 -> 1478[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2024[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];2024 -> 2138[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2024 -> 2139[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2025 -> 1479[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2025[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];2025 -> 2140[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2025 -> 2141[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2026 -> 1480[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2026[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];2026 -> 2142[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2026 -> 2143[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2027 -> 1481[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2027[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];2027 -> 2144[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2027 -> 2145[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2028 -> 1482[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2028[label="xwv4410 < xwv4610",fontsize=16,color="magenta"];2028 -> 2146[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2028 -> 2147[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2029[label="xwv4410 == xwv4610",fontsize=16,color="blue",shape="box"];4266[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2029 -> 4266[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4266 -> 2148[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4267[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2029 -> 4267[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4267 -> 2149[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4268[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2029 -> 4268[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4268 -> 2150[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4269[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2029 -> 4269[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4269 -> 2151[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4270[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2029 -> 4270[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4270 -> 2152[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4271[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2029 -> 4271[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4271 -> 2153[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4272[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2029 -> 4272[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4272 -> 2154[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4273[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2029 -> 4273[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4273 -> 2155[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4274[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2029 -> 4274[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4274 -> 2156[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4275[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2029 -> 4275[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4275 -> 2157[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4276[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2029 -> 4276[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4276 -> 2158[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4277[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2029 -> 4277[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4277 -> 2159[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4278[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2029 -> 4278[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4278 -> 2160[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4279[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2029 -> 4279[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4279 -> 2161[label="",style="solid", color="blue", weight=3]; 29.49/12.08 2030[label="xwv4411 <= xwv4611",fontsize=16,color="blue",shape="box"];4280[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4280[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4280 -> 2162[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4281[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4281[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4281 -> 2163[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4282[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4282[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4282 -> 2164[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4283[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4283[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4283 -> 2165[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4284[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4284[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4284 -> 2166[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4285[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4285[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4285 -> 2167[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4286[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4286[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4286 -> 2168[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4287[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4287[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4287 -> 2169[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4288[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4288[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4288 -> 2170[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4289[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4289[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4289 -> 2171[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4290[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4290[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4290 -> 2172[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4291[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4291[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4291 -> 2173[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4292[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4292[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4292 -> 2174[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4293[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4293[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4293 -> 2175[label="",style="solid", color="blue", weight=3]; 29.49/12.08 2820[label="FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194)",fontsize=16,color="black",shape="box"];2820 -> 2834[label="",style="solid", color="black", weight=3]; 29.49/12.08 2821[label="FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204",fontsize=16,color="green",shape="box"];2822[label="FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194)",fontsize=16,color="black",shape="box"];2822 -> 2835[label="",style="solid", color="black", weight=3]; 29.49/12.08 2823[label="FiniteMap.deleteMax (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194)",fontsize=16,color="burlywood",shape="triangle"];4294[label="xwv194/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2823 -> 4294[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4294 -> 2836[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4295[label="xwv194/FiniteMap.Branch xwv1940 xwv1941 xwv1942 xwv1943 xwv1944",fontsize=10,color="white",style="solid",shape="box"];2823 -> 4295[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4295 -> 2837[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 2839 -> 3099[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2839[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.findMin (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204))",fontsize=16,color="magenta"];2839 -> 3100[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2839 -> 3101[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2839 -> 3102[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2839 -> 3103[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2839 -> 3104[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2839 -> 3105[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2839 -> 3106[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2839 -> 3107[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2839 -> 3108[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2839 -> 3109[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2839 -> 3110[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2839 -> 3111[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2839 -> 3112[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2839 -> 3113[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2839 -> 3114[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2840[label="xwv204",fontsize=16,color="green",shape="box"];2841 -> 2803[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2841[label="FiniteMap.mkBalBranch xwv200 xwv201 (FiniteMap.deleteMin (FiniteMap.Branch xwv2030 xwv2031 xwv2032 xwv2033 xwv2034)) xwv204",fontsize=16,color="magenta"];2841 -> 2855[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2842 -> 3202[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2842[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.findMin (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204))",fontsize=16,color="magenta"];2842 -> 3203[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2842 -> 3204[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2842 -> 3205[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2842 -> 3206[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2842 -> 3207[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2842 -> 3208[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2842 -> 3209[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2842 -> 3210[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2842 -> 3211[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2842 -> 3212[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2842 -> 3213[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2842 -> 3214[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2842 -> 3215[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2842 -> 3216[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2842 -> 3217[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2327[label="primPlusNat (Succ xwv19200) (Succ xwv10900)",fontsize=16,color="black",shape="box"];2327 -> 2469[label="",style="solid", color="black", weight=3]; 29.49/12.08 2328[label="primPlusNat (Succ xwv19200) Zero",fontsize=16,color="black",shape="box"];2328 -> 2470[label="",style="solid", color="black", weight=3]; 29.49/12.08 2329[label="primPlusNat Zero (Succ xwv10900)",fontsize=16,color="black",shape="box"];2329 -> 2471[label="",style="solid", color="black", weight=3]; 29.49/12.08 2330[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2330 -> 2472[label="",style="solid", color="black", weight=3]; 29.49/12.08 3069[label="xwv25700",fontsize=16,color="green",shape="box"];3070[label="xwv25800",fontsize=16,color="green",shape="box"];2458[label="xwv4400",fontsize=16,color="green",shape="box"];2459[label="xwv4600",fontsize=16,color="green",shape="box"];2046[label="primCmpNat (Succ xwv44000) xwv4600",fontsize=16,color="burlywood",shape="box"];4296[label="xwv4600/Succ xwv46000",fontsize=10,color="white",style="solid",shape="box"];2046 -> 4296[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4296 -> 2191[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4297[label="xwv4600/Zero",fontsize=10,color="white",style="solid",shape="box"];2046 -> 4297[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4297 -> 2192[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 2047[label="primCmpNat Zero xwv4600",fontsize=16,color="burlywood",shape="box"];4298[label="xwv4600/Succ xwv46000",fontsize=10,color="white",style="solid",shape="box"];2047 -> 4298[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4298 -> 2193[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4299[label="xwv4600/Zero",fontsize=10,color="white",style="solid",shape="box"];2047 -> 4299[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4299 -> 2194[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 2460[label="xwv4600",fontsize=16,color="green",shape="box"];2461[label="xwv4400",fontsize=16,color="green",shape="box"];3072 -> 1471[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3072[label="FiniteMap.sizeFM xwv2534 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv2533",fontsize=16,color="magenta"];3072 -> 3079[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3072 -> 3080[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3071[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv200 xwv201 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 xwv2530 xwv2531 xwv2532 xwv2533 xwv2534 xwv270",fontsize=16,color="burlywood",shape="triangle"];4300[label="xwv270/False",fontsize=10,color="white",style="solid",shape="box"];3071 -> 4300[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4300 -> 3081[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4301[label="xwv270/True",fontsize=10,color="white",style="solid",shape="box"];3071 -> 4301[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4301 -> 3082[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 3073[label="xwv2044",fontsize=16,color="green",shape="box"];3074[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv200 xwv201 xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) xwv2040 xwv2041 xwv2042 xwv2043 xwv2044 True",fontsize=16,color="black",shape="box"];3074 -> 3091[label="",style="solid", color="black", weight=3]; 29.49/12.08 3075 -> 3583[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3075[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xwv2040 xwv2041 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv200 xwv201 xwv253 xwv2043) xwv2044",fontsize=16,color="magenta"];3075 -> 3594[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3075 -> 3595[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3075 -> 3596[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3075 -> 3597[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3075 -> 3598[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3699[label="FiniteMap.sizeFM xwv373",fontsize=16,color="burlywood",shape="triangle"];4302[label="xwv373/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3699 -> 4302[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4302 -> 3704[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4303[label="xwv373/FiniteMap.Branch xwv3730 xwv3731 xwv3732 xwv3733 xwv3734",fontsize=10,color="white",style="solid",shape="box"];3699 -> 4303[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4303 -> 3705[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 3700[label="xwv3750",fontsize=16,color="green",shape="box"];3701 -> 3699[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3701[label="FiniteMap.sizeFM xwv374",fontsize=16,color="magenta"];3701 -> 3706[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3702 -> 3699[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3702[label="FiniteMap.sizeFM xwv374",fontsize=16,color="magenta"];3702 -> 3707[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3703[label="xwv3750",fontsize=16,color="green",shape="box"];1757 -> 1751[label="",style="dashed", color="red", weight=0]; 29.49/12.08 1757[label="primPlusNat xwv1130 xwv300000",fontsize=16,color="magenta"];1757 -> 2070[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 1757 -> 2071[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2031 -> 2176[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2031[label="compare1 xwv440 xwv460 (xwv440 <= xwv460)",fontsize=16,color="magenta"];2031 -> 2177[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2032[label="EQ",fontsize=16,color="green",shape="box"];2033 -> 2178[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2033[label="compare1 xwv440 xwv460 (xwv440 <= xwv460)",fontsize=16,color="magenta"];2033 -> 2179[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2034[label="EQ",fontsize=16,color="green",shape="box"];2035[label="xwv4601",fontsize=16,color="green",shape="box"];2036[label="xwv4401",fontsize=16,color="green",shape="box"];2037 -> 2180[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2037[label="primCompAux0 xwv144 (compare xwv4400 xwv4600)",fontsize=16,color="magenta"];2037 -> 2181[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2037 -> 2182[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2038 -> 2183[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2038[label="compare1 xwv440 xwv460 (xwv440 <= xwv460)",fontsize=16,color="magenta"];2038 -> 2184[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2039[label="EQ",fontsize=16,color="green",shape="box"];2040[label="primCmpDouble (Double xwv4400 (Pos xwv44010)) (Double xwv4600 (Pos xwv46010))",fontsize=16,color="black",shape="box"];2040 -> 2185[label="",style="solid", color="black", weight=3]; 29.49/12.08 2041[label="primCmpDouble (Double xwv4400 (Pos xwv44010)) (Double xwv4600 (Neg xwv46010))",fontsize=16,color="black",shape="box"];2041 -> 2186[label="",style="solid", color="black", weight=3]; 29.49/12.08 2042[label="primCmpDouble (Double xwv4400 (Neg xwv44010)) (Double xwv4600 (Pos xwv46010))",fontsize=16,color="black",shape="box"];2042 -> 2187[label="",style="solid", color="black", weight=3]; 29.49/12.08 2043[label="primCmpDouble (Double xwv4400 (Neg xwv44010)) (Double xwv4600 (Neg xwv46010))",fontsize=16,color="black",shape="box"];2043 -> 2188[label="",style="solid", color="black", weight=3]; 29.49/12.08 2044 -> 2189[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2044[label="compare1 xwv440 xwv460 (xwv440 <= xwv460)",fontsize=16,color="magenta"];2044 -> 2190[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2045[label="EQ",fontsize=16,color="green",shape="box"];2048 -> 2195[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2048[label="compare1 xwv440 xwv460 (xwv440 <= xwv460)",fontsize=16,color="magenta"];2048 -> 2196[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2049[label="EQ",fontsize=16,color="green",shape="box"];2050[label="primCmpFloat (Float xwv4400 (Pos xwv44010)) (Float xwv4600 (Pos xwv46010))",fontsize=16,color="black",shape="box"];2050 -> 2197[label="",style="solid", color="black", weight=3]; 29.49/12.08 2051[label="primCmpFloat (Float xwv4400 (Pos xwv44010)) (Float xwv4600 (Neg xwv46010))",fontsize=16,color="black",shape="box"];2051 -> 2198[label="",style="solid", color="black", weight=3]; 29.49/12.08 2052[label="primCmpFloat (Float xwv4400 (Neg xwv44010)) (Float xwv4600 (Pos xwv46010))",fontsize=16,color="black",shape="box"];2052 -> 2199[label="",style="solid", color="black", weight=3]; 29.49/12.08 2053[label="primCmpFloat (Float xwv4400 (Neg xwv44010)) (Float xwv4600 (Neg xwv46010))",fontsize=16,color="black",shape="box"];2053 -> 2200[label="",style="solid", color="black", weight=3]; 29.49/12.08 2054 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2054[label="xwv4600 * xwv4401",fontsize=16,color="magenta"];2054 -> 2201[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2054 -> 2202[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2055 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2055[label="xwv4400 * xwv4601",fontsize=16,color="magenta"];2055 -> 2203[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2055 -> 2204[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2056[label="xwv4600 * xwv4401",fontsize=16,color="burlywood",shape="triangle"];4304[label="xwv4600/Integer xwv46000",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4304[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4304 -> 2205[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 2057 -> 2056[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2057[label="xwv4400 * xwv4601",fontsize=16,color="magenta"];2057 -> 2206[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2057 -> 2207[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2058[label="True",fontsize=16,color="green",shape="box"];2059[label="False",fontsize=16,color="green",shape="box"];2074[label="xwv4610",fontsize=16,color="green",shape="box"];2075[label="xwv4410",fontsize=16,color="green",shape="box"];2076[label="xwv4610",fontsize=16,color="green",shape="box"];2077[label="xwv4410",fontsize=16,color="green",shape="box"];2078[label="xwv4610",fontsize=16,color="green",shape="box"];2079[label="xwv4410",fontsize=16,color="green",shape="box"];2080[label="xwv4610",fontsize=16,color="green",shape="box"];2081[label="xwv4410",fontsize=16,color="green",shape="box"];2082[label="xwv4610",fontsize=16,color="green",shape="box"];2083[label="xwv4410",fontsize=16,color="green",shape="box"];2084[label="xwv4610",fontsize=16,color="green",shape="box"];2085[label="xwv4410",fontsize=16,color="green",shape="box"];2086[label="xwv4610",fontsize=16,color="green",shape="box"];2087[label="xwv4410",fontsize=16,color="green",shape="box"];2088[label="xwv4610",fontsize=16,color="green",shape="box"];2089[label="xwv4410",fontsize=16,color="green",shape="box"];2090[label="xwv4610",fontsize=16,color="green",shape="box"];2091[label="xwv4410",fontsize=16,color="green",shape="box"];2092[label="xwv4610",fontsize=16,color="green",shape="box"];2093[label="xwv4410",fontsize=16,color="green",shape="box"];2094[label="xwv4610",fontsize=16,color="green",shape="box"];2095[label="xwv4410",fontsize=16,color="green",shape="box"];2096[label="xwv4610",fontsize=16,color="green",shape="box"];2097[label="xwv4410",fontsize=16,color="green",shape="box"];2098[label="xwv4610",fontsize=16,color="green",shape="box"];2099[label="xwv4410",fontsize=16,color="green",shape="box"];2100[label="xwv4610",fontsize=16,color="green",shape="box"];2101[label="xwv4410",fontsize=16,color="green",shape="box"];2102 -> 129[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2102[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2102 -> 2208[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2102 -> 2209[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2103 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2103[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2103 -> 2210[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2103 -> 2211[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2104 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2104[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2104 -> 2212[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2104 -> 2213[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2105 -> 135[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2105[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2105 -> 2214[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2105 -> 2215[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2106 -> 122[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2106[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2106 -> 2216[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2106 -> 2217[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2107 -> 124[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2107[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2107 -> 2218[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2107 -> 2219[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2108 -> 130[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2108[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2108 -> 2220[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2108 -> 2221[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2109 -> 127[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2109[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2109 -> 2222[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2109 -> 2223[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2110 -> 134[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2110[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2110 -> 2224[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2110 -> 2225[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2111 -> 125[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2111[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2111 -> 2226[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2111 -> 2227[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2112 -> 132[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2112[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2112 -> 2228[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2112 -> 2229[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2113 -> 133[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2113[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2113 -> 2230[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2113 -> 2231[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2114 -> 131[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2114[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2114 -> 2232[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2114 -> 2233[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2115 -> 128[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2115[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2115 -> 2234[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2115 -> 2235[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2116[label="xwv4411 < xwv4611",fontsize=16,color="blue",shape="box"];4305[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4305[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4305 -> 2236[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4306[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4306[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4306 -> 2237[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4307[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4307[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4307 -> 2238[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4308[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4308[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4308 -> 2239[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4309[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4309[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4309 -> 2240[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4310[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4310[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4310 -> 2241[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4311[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4311[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4311 -> 2242[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4312[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4312[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4312 -> 2243[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4313[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4313[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4313 -> 2244[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4314[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4314[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4314 -> 2245[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4315[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4315[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4315 -> 2246[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4316[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4316[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4316 -> 2247[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4317[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4317[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4317 -> 2248[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4318[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2116 -> 4318[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4318 -> 2249[label="",style="solid", color="blue", weight=3]; 29.49/12.08 2117 -> 374[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2117[label="xwv4411 == xwv4611 && xwv4412 <= xwv4612",fontsize=16,color="magenta"];2117 -> 2250[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2117 -> 2251[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2118[label="xwv149",fontsize=16,color="green",shape="box"];2119[label="True",fontsize=16,color="green",shape="box"];2120[label="xwv4610",fontsize=16,color="green",shape="box"];2121[label="xwv4410",fontsize=16,color="green",shape="box"];2122[label="xwv4610",fontsize=16,color="green",shape="box"];2123[label="xwv4410",fontsize=16,color="green",shape="box"];2124[label="xwv4610",fontsize=16,color="green",shape="box"];2125[label="xwv4410",fontsize=16,color="green",shape="box"];2126[label="xwv4610",fontsize=16,color="green",shape="box"];2127[label="xwv4410",fontsize=16,color="green",shape="box"];2128[label="xwv4610",fontsize=16,color="green",shape="box"];2129[label="xwv4410",fontsize=16,color="green",shape="box"];2130[label="xwv4610",fontsize=16,color="green",shape="box"];2131[label="xwv4410",fontsize=16,color="green",shape="box"];2132[label="xwv4610",fontsize=16,color="green",shape="box"];2133[label="xwv4410",fontsize=16,color="green",shape="box"];2134[label="xwv4610",fontsize=16,color="green",shape="box"];2135[label="xwv4410",fontsize=16,color="green",shape="box"];2136[label="xwv4610",fontsize=16,color="green",shape="box"];2137[label="xwv4410",fontsize=16,color="green",shape="box"];2138[label="xwv4610",fontsize=16,color="green",shape="box"];2139[label="xwv4410",fontsize=16,color="green",shape="box"];2140[label="xwv4610",fontsize=16,color="green",shape="box"];2141[label="xwv4410",fontsize=16,color="green",shape="box"];2142[label="xwv4610",fontsize=16,color="green",shape="box"];2143[label="xwv4410",fontsize=16,color="green",shape="box"];2144[label="xwv4610",fontsize=16,color="green",shape="box"];2145[label="xwv4410",fontsize=16,color="green",shape="box"];2146[label="xwv4610",fontsize=16,color="green",shape="box"];2147[label="xwv4410",fontsize=16,color="green",shape="box"];2148 -> 129[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2148[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2148 -> 2252[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2148 -> 2253[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2149 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2149[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2149 -> 2254[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2149 -> 2255[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2150 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2150[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2150 -> 2256[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2150 -> 2257[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2151 -> 135[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2151[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2151 -> 2258[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2151 -> 2259[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2152 -> 122[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2152[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2152 -> 2260[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2152 -> 2261[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2153 -> 124[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2153[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2153 -> 2262[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2153 -> 2263[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2154 -> 130[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2154[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2154 -> 2264[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2154 -> 2265[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2155 -> 127[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2155[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2155 -> 2266[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2155 -> 2267[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2156 -> 134[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2156[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2156 -> 2268[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2156 -> 2269[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2157 -> 125[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2157[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2157 -> 2270[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2157 -> 2271[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2158 -> 132[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2158[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2158 -> 2272[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2158 -> 2273[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2159 -> 133[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2159[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2159 -> 2274[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2159 -> 2275[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2160 -> 131[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2160[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2160 -> 2276[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2160 -> 2277[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2161 -> 128[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2161[label="xwv4410 == xwv4610",fontsize=16,color="magenta"];2161 -> 2278[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2161 -> 2279[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2162 -> 1524[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2162[label="xwv4411 <= xwv4611",fontsize=16,color="magenta"];2162 -> 2280[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2162 -> 2281[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2163 -> 1525[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2163[label="xwv4411 <= xwv4611",fontsize=16,color="magenta"];2163 -> 2282[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2163 -> 2283[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2164 -> 1526[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2164[label="xwv4411 <= xwv4611",fontsize=16,color="magenta"];2164 -> 2284[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2164 -> 2285[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2165 -> 1527[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2165[label="xwv4411 <= xwv4611",fontsize=16,color="magenta"];2165 -> 2286[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2165 -> 2287[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2166 -> 1528[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2166[label="xwv4411 <= xwv4611",fontsize=16,color="magenta"];2166 -> 2288[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2166 -> 2289[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2167 -> 1529[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2167[label="xwv4411 <= xwv4611",fontsize=16,color="magenta"];2167 -> 2290[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2167 -> 2291[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2168 -> 1530[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2168[label="xwv4411 <= xwv4611",fontsize=16,color="magenta"];2168 -> 2292[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2168 -> 2293[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2169 -> 1531[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2169[label="xwv4411 <= xwv4611",fontsize=16,color="magenta"];2169 -> 2294[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2169 -> 2295[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2170 -> 1532[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2170[label="xwv4411 <= xwv4611",fontsize=16,color="magenta"];2170 -> 2296[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2170 -> 2297[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2171 -> 1533[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2171[label="xwv4411 <= xwv4611",fontsize=16,color="magenta"];2171 -> 2298[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2171 -> 2299[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2172 -> 1534[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2172[label="xwv4411 <= xwv4611",fontsize=16,color="magenta"];2172 -> 2300[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2172 -> 2301[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2173 -> 1535[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2173[label="xwv4411 <= xwv4611",fontsize=16,color="magenta"];2173 -> 2302[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2173 -> 2303[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2174 -> 1536[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2174[label="xwv4411 <= xwv4611",fontsize=16,color="magenta"];2174 -> 2304[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2174 -> 2305[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2175 -> 1537[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2175[label="xwv4411 <= xwv4611",fontsize=16,color="magenta"];2175 -> 2306[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2175 -> 2307[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2834[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.glueBal2Vv2 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194))",fontsize=16,color="black",shape="box"];2834 -> 2843[label="",style="solid", color="black", weight=3]; 29.49/12.08 2835[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.glueBal2Vv2 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194))",fontsize=16,color="black",shape="box"];2835 -> 2844[label="",style="solid", color="black", weight=3]; 29.49/12.08 2836[label="FiniteMap.deleteMax (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 FiniteMap.EmptyFM)",fontsize=16,color="black",shape="box"];2836 -> 2845[label="",style="solid", color="black", weight=3]; 29.49/12.08 2837[label="FiniteMap.deleteMax (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 (FiniteMap.Branch xwv1940 xwv1941 xwv1942 xwv1943 xwv1944))",fontsize=16,color="black",shape="box"];2837 -> 2846[label="",style="solid", color="black", weight=3]; 29.49/12.08 3100[label="xwv202",fontsize=16,color="green",shape="box"];3101[label="xwv203",fontsize=16,color="green",shape="box"];3102[label="xwv203",fontsize=16,color="green",shape="box"];3103[label="xwv204",fontsize=16,color="green",shape="box"];3104[label="xwv193",fontsize=16,color="green",shape="box"];3105[label="xwv190",fontsize=16,color="green",shape="box"];3106[label="xwv191",fontsize=16,color="green",shape="box"];3107[label="xwv200",fontsize=16,color="green",shape="box"];3108[label="xwv194",fontsize=16,color="green",shape="box"];3109[label="xwv192",fontsize=16,color="green",shape="box"];3110[label="xwv200",fontsize=16,color="green",shape="box"];3111[label="xwv204",fontsize=16,color="green",shape="box"];3112[label="xwv201",fontsize=16,color="green",shape="box"];3113[label="xwv201",fontsize=16,color="green",shape="box"];3114[label="xwv202",fontsize=16,color="green",shape="box"];3099[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv275 xwv276 xwv277 xwv278 xwv279) (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.findMin (FiniteMap.Branch xwv285 xwv286 xwv287 xwv288 xwv289))",fontsize=16,color="burlywood",shape="triangle"];4319[label="xwv288/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3099 -> 4319[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4319 -> 3190[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4320[label="xwv288/FiniteMap.Branch xwv2880 xwv2881 xwv2882 xwv2883 xwv2884",fontsize=10,color="white",style="solid",shape="box"];3099 -> 4320[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4320 -> 3191[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 2855 -> 2817[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2855[label="FiniteMap.deleteMin (FiniteMap.Branch xwv2030 xwv2031 xwv2032 xwv2033 xwv2034)",fontsize=16,color="magenta"];2855 -> 2871[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2855 -> 2872[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2855 -> 2873[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2855 -> 2874[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2855 -> 2875[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3203[label="xwv204",fontsize=16,color="green",shape="box"];3204[label="xwv192",fontsize=16,color="green",shape="box"];3205[label="xwv191",fontsize=16,color="green",shape="box"];3206[label="xwv202",fontsize=16,color="green",shape="box"];3207[label="xwv194",fontsize=16,color="green",shape="box"];3208[label="xwv204",fontsize=16,color="green",shape="box"];3209[label="xwv201",fontsize=16,color="green",shape="box"];3210[label="xwv190",fontsize=16,color="green",shape="box"];3211[label="xwv203",fontsize=16,color="green",shape="box"];3212[label="xwv201",fontsize=16,color="green",shape="box"];3213[label="xwv202",fontsize=16,color="green",shape="box"];3214[label="xwv193",fontsize=16,color="green",shape="box"];3215[label="xwv203",fontsize=16,color="green",shape="box"];3216[label="xwv200",fontsize=16,color="green",shape="box"];3217[label="xwv200",fontsize=16,color="green",shape="box"];3202[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv291 xwv292 xwv293 xwv294 xwv295) (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.findMin (FiniteMap.Branch xwv301 xwv302 xwv303 xwv304 xwv305))",fontsize=16,color="burlywood",shape="triangle"];4321[label="xwv304/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3202 -> 4321[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4321 -> 3293[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4322[label="xwv304/FiniteMap.Branch xwv3040 xwv3041 xwv3042 xwv3043 xwv3044",fontsize=10,color="white",style="solid",shape="box"];3202 -> 4322[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4322 -> 3294[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 2469[label="Succ (Succ (primPlusNat xwv19200 xwv10900))",fontsize=16,color="green",shape="box"];2469 -> 2643[label="",style="dashed", color="green", weight=3]; 29.49/12.08 2470[label="Succ xwv19200",fontsize=16,color="green",shape="box"];2471[label="Succ xwv10900",fontsize=16,color="green",shape="box"];2472[label="Zero",fontsize=16,color="green",shape="box"];2191[label="primCmpNat (Succ xwv44000) (Succ xwv46000)",fontsize=16,color="black",shape="box"];2191 -> 2376[label="",style="solid", color="black", weight=3]; 29.49/12.08 2192[label="primCmpNat (Succ xwv44000) Zero",fontsize=16,color="black",shape="box"];2192 -> 2377[label="",style="solid", color="black", weight=3]; 29.49/12.08 2193[label="primCmpNat Zero (Succ xwv46000)",fontsize=16,color="black",shape="box"];2193 -> 2378[label="",style="solid", color="black", weight=3]; 29.49/12.08 2194[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2194 -> 2379[label="",style="solid", color="black", weight=3]; 29.49/12.08 3079 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3079[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv2533",fontsize=16,color="magenta"];3079 -> 3093[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3079 -> 3094[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3080 -> 1203[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3080[label="FiniteMap.sizeFM xwv2534",fontsize=16,color="magenta"];3080 -> 3095[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3081[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv200 xwv201 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 xwv2530 xwv2531 xwv2532 xwv2533 xwv2534 False",fontsize=16,color="black",shape="box"];3081 -> 3096[label="",style="solid", color="black", weight=3]; 29.49/12.08 3082[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv200 xwv201 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 xwv2530 xwv2531 xwv2532 xwv2533 xwv2534 True",fontsize=16,color="black",shape="box"];3082 -> 3097[label="",style="solid", color="black", weight=3]; 29.49/12.08 3091[label="FiniteMap.mkBalBranch6Double_L xwv200 xwv201 xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044) xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 xwv2043 xwv2044)",fontsize=16,color="burlywood",shape="box"];4323[label="xwv2043/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3091 -> 4323[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4323 -> 3192[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4324[label="xwv2043/FiniteMap.Branch xwv20430 xwv20431 xwv20432 xwv20433 xwv20434",fontsize=10,color="white",style="solid",shape="box"];3091 -> 4324[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4324 -> 3193[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 3594[label="xwv2041",fontsize=16,color="green",shape="box"];3595[label="xwv2040",fontsize=16,color="green",shape="box"];3596 -> 3583[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3596[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv200 xwv201 xwv253 xwv2043",fontsize=16,color="magenta"];3596 -> 3640[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3596 -> 3641[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3596 -> 3642[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3596 -> 3643[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3596 -> 3644[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3597[label="xwv2044",fontsize=16,color="green",shape="box"];3598[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3704[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3704 -> 3708[label="",style="solid", color="black", weight=3]; 29.49/12.08 3705[label="FiniteMap.sizeFM (FiniteMap.Branch xwv3730 xwv3731 xwv3732 xwv3733 xwv3734)",fontsize=16,color="black",shape="box"];3705 -> 3709[label="",style="solid", color="black", weight=3]; 29.49/12.08 3706[label="xwv374",fontsize=16,color="green",shape="box"];3707[label="xwv374",fontsize=16,color="green",shape="box"];2070[label="xwv300000",fontsize=16,color="green",shape="box"];2071[label="xwv1130",fontsize=16,color="green",shape="box"];2177 -> 1524[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2177[label="xwv440 <= xwv460",fontsize=16,color="magenta"];2177 -> 2335[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2177 -> 2336[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2176[label="compare1 xwv440 xwv460 xwv151",fontsize=16,color="burlywood",shape="triangle"];4325[label="xwv151/False",fontsize=10,color="white",style="solid",shape="box"];2176 -> 4325[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4325 -> 2337[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4326[label="xwv151/True",fontsize=10,color="white",style="solid",shape="box"];2176 -> 4326[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4326 -> 2338[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 2179 -> 1525[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2179[label="xwv440 <= xwv460",fontsize=16,color="magenta"];2179 -> 2339[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2179 -> 2340[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2178[label="compare1 xwv440 xwv460 xwv152",fontsize=16,color="burlywood",shape="triangle"];4327[label="xwv152/False",fontsize=10,color="white",style="solid",shape="box"];2178 -> 4327[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4327 -> 2341[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4328[label="xwv152/True",fontsize=10,color="white",style="solid",shape="box"];2178 -> 4328[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4328 -> 2342[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 2181[label="xwv144",fontsize=16,color="green",shape="box"];2182[label="compare xwv4400 xwv4600",fontsize=16,color="blue",shape="box"];4329[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4329[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4329 -> 2343[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4330[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4330[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4330 -> 2344[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4331[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4331[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4331 -> 2345[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4332[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4332[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4332 -> 2346[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4333[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4333[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4333 -> 2347[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4334[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4334[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4334 -> 2348[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4335[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4335[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4335 -> 2349[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4336[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4336[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4336 -> 2350[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4337[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4337[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4337 -> 2351[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4338[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4338[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4338 -> 2352[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4339[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4339[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4339 -> 2353[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4340[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4340[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4340 -> 2354[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4341[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4341[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4341 -> 2355[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4342[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4342[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4342 -> 2356[label="",style="solid", color="blue", weight=3]; 29.49/12.08 2180[label="primCompAux0 xwv156 xwv157",fontsize=16,color="burlywood",shape="triangle"];4343[label="xwv157/LT",fontsize=10,color="white",style="solid",shape="box"];2180 -> 4343[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4343 -> 2357[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4344[label="xwv157/EQ",fontsize=10,color="white",style="solid",shape="box"];2180 -> 4344[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4344 -> 2358[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4345[label="xwv157/GT",fontsize=10,color="white",style="solid",shape="box"];2180 -> 4345[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4345 -> 2359[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 2184 -> 1528[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2184[label="xwv440 <= xwv460",fontsize=16,color="magenta"];2184 -> 2360[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2184 -> 2361[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2183[label="compare1 xwv440 xwv460 xwv158",fontsize=16,color="burlywood",shape="triangle"];4346[label="xwv158/False",fontsize=10,color="white",style="solid",shape="box"];2183 -> 4346[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4346 -> 2362[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4347[label="xwv158/True",fontsize=10,color="white",style="solid",shape="box"];2183 -> 4347[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4347 -> 2363[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 2185 -> 1029[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2185[label="compare (xwv4400 * Pos xwv46010) (Pos xwv44010 * xwv4600)",fontsize=16,color="magenta"];2185 -> 2364[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2185 -> 2365[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2186 -> 1029[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2186[label="compare (xwv4400 * Pos xwv46010) (Neg xwv44010 * xwv4600)",fontsize=16,color="magenta"];2186 -> 2366[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2186 -> 2367[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2187 -> 1029[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2187[label="compare (xwv4400 * Neg xwv46010) (Pos xwv44010 * xwv4600)",fontsize=16,color="magenta"];2187 -> 2368[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2187 -> 2369[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2188 -> 1029[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2188[label="compare (xwv4400 * Neg xwv46010) (Neg xwv44010 * xwv4600)",fontsize=16,color="magenta"];2188 -> 2370[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2188 -> 2371[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2190 -> 1531[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2190[label="xwv440 <= xwv460",fontsize=16,color="magenta"];2190 -> 2372[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2190 -> 2373[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2189[label="compare1 xwv440 xwv460 xwv159",fontsize=16,color="burlywood",shape="triangle"];4348[label="xwv159/False",fontsize=10,color="white",style="solid",shape="box"];2189 -> 4348[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4348 -> 2374[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4349[label="xwv159/True",fontsize=10,color="white",style="solid",shape="box"];2189 -> 4349[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4349 -> 2375[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 2196 -> 1533[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2196[label="xwv440 <= xwv460",fontsize=16,color="magenta"];2196 -> 2380[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2196 -> 2381[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2195[label="compare1 xwv440 xwv460 xwv160",fontsize=16,color="burlywood",shape="triangle"];4350[label="xwv160/False",fontsize=10,color="white",style="solid",shape="box"];2195 -> 4350[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4350 -> 2382[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4351[label="xwv160/True",fontsize=10,color="white",style="solid",shape="box"];2195 -> 4351[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4351 -> 2383[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 2197 -> 1029[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2197[label="compare (xwv4400 * Pos xwv46010) (Pos xwv44010 * xwv4600)",fontsize=16,color="magenta"];2197 -> 2388[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2197 -> 2389[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2198 -> 1029[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2198[label="compare (xwv4400 * Pos xwv46010) (Neg xwv44010 * xwv4600)",fontsize=16,color="magenta"];2198 -> 2390[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2198 -> 2391[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2199 -> 1029[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2199[label="compare (xwv4400 * Neg xwv46010) (Pos xwv44010 * xwv4600)",fontsize=16,color="magenta"];2199 -> 2392[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2199 -> 2393[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2200 -> 1029[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2200[label="compare (xwv4400 * Neg xwv46010) (Neg xwv44010 * xwv4600)",fontsize=16,color="magenta"];2200 -> 2394[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2200 -> 2395[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2201[label="xwv4401",fontsize=16,color="green",shape="box"];2202[label="xwv4600",fontsize=16,color="green",shape="box"];2203[label="xwv4601",fontsize=16,color="green",shape="box"];2204[label="xwv4400",fontsize=16,color="green",shape="box"];2205[label="Integer xwv46000 * xwv4401",fontsize=16,color="burlywood",shape="box"];4352[label="xwv4401/Integer xwv44010",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4352[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4352 -> 2396[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 2206[label="xwv4400",fontsize=16,color="green",shape="box"];2207[label="xwv4601",fontsize=16,color="green",shape="box"];2208[label="xwv4610",fontsize=16,color="green",shape="box"];2209[label="xwv4410",fontsize=16,color="green",shape="box"];2210[label="xwv4610",fontsize=16,color="green",shape="box"];2211[label="xwv4410",fontsize=16,color="green",shape="box"];2212[label="xwv4610",fontsize=16,color="green",shape="box"];2213[label="xwv4410",fontsize=16,color="green",shape="box"];2214[label="xwv4610",fontsize=16,color="green",shape="box"];2215[label="xwv4410",fontsize=16,color="green",shape="box"];2216[label="xwv4610",fontsize=16,color="green",shape="box"];2217[label="xwv4410",fontsize=16,color="green",shape="box"];2218[label="xwv4610",fontsize=16,color="green",shape="box"];2219[label="xwv4410",fontsize=16,color="green",shape="box"];2220[label="xwv4610",fontsize=16,color="green",shape="box"];2221[label="xwv4410",fontsize=16,color="green",shape="box"];2222[label="xwv4610",fontsize=16,color="green",shape="box"];2223[label="xwv4410",fontsize=16,color="green",shape="box"];2224[label="xwv4610",fontsize=16,color="green",shape="box"];2225[label="xwv4410",fontsize=16,color="green",shape="box"];2226[label="xwv4610",fontsize=16,color="green",shape="box"];2227[label="xwv4410",fontsize=16,color="green",shape="box"];2228[label="xwv4610",fontsize=16,color="green",shape="box"];2229[label="xwv4410",fontsize=16,color="green",shape="box"];2230[label="xwv4610",fontsize=16,color="green",shape="box"];2231[label="xwv4410",fontsize=16,color="green",shape="box"];2232[label="xwv4610",fontsize=16,color="green",shape="box"];2233[label="xwv4410",fontsize=16,color="green",shape="box"];2234[label="xwv4610",fontsize=16,color="green",shape="box"];2235[label="xwv4410",fontsize=16,color="green",shape="box"];2236 -> 1469[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2236[label="xwv4411 < xwv4611",fontsize=16,color="magenta"];2236 -> 2397[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2236 -> 2398[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2237 -> 1470[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2237[label="xwv4411 < xwv4611",fontsize=16,color="magenta"];2237 -> 2399[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2237 -> 2400[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2238 -> 1471[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2238[label="xwv4411 < xwv4611",fontsize=16,color="magenta"];2238 -> 2401[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2238 -> 2402[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2239 -> 1472[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2239[label="xwv4411 < xwv4611",fontsize=16,color="magenta"];2239 -> 2403[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2239 -> 2404[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2240 -> 1473[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2240[label="xwv4411 < xwv4611",fontsize=16,color="magenta"];2240 -> 2405[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2240 -> 2406[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2241 -> 1474[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2241[label="xwv4411 < xwv4611",fontsize=16,color="magenta"];2241 -> 2407[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2241 -> 2408[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2242 -> 1475[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2242[label="xwv4411 < xwv4611",fontsize=16,color="magenta"];2242 -> 2409[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2242 -> 2410[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2243 -> 1476[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2243[label="xwv4411 < xwv4611",fontsize=16,color="magenta"];2243 -> 2411[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2243 -> 2412[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2244 -> 1477[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2244[label="xwv4411 < xwv4611",fontsize=16,color="magenta"];2244 -> 2413[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2244 -> 2414[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2245 -> 1478[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2245[label="xwv4411 < xwv4611",fontsize=16,color="magenta"];2245 -> 2415[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2245 -> 2416[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2246 -> 1479[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2246[label="xwv4411 < xwv4611",fontsize=16,color="magenta"];2246 -> 2417[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2246 -> 2418[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2247 -> 1480[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2247[label="xwv4411 < xwv4611",fontsize=16,color="magenta"];2247 -> 2419[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2247 -> 2420[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2248 -> 1481[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2248[label="xwv4411 < xwv4611",fontsize=16,color="magenta"];2248 -> 2421[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2248 -> 2422[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2249 -> 1482[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2249[label="xwv4411 < xwv4611",fontsize=16,color="magenta"];2249 -> 2423[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2249 -> 2424[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2250[label="xwv4411 == xwv4611",fontsize=16,color="blue",shape="box"];4353[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4353[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4353 -> 2425[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4354[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4354[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4354 -> 2426[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4355[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4355[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4355 -> 2427[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4356[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4356[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4356 -> 2428[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4357[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4357[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4357 -> 2429[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4358[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4358[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4358 -> 2430[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4359[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4359[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4359 -> 2431[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4360[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4360[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4360 -> 2432[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4361[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4361[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4361 -> 2433[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4362[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4362[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4362 -> 2434[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4363[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4363[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4363 -> 2435[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4364[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4364[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4364 -> 2436[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4365[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4365[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4365 -> 2437[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4366[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4366[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4366 -> 2438[label="",style="solid", color="blue", weight=3]; 29.49/12.08 2251[label="xwv4412 <= xwv4612",fontsize=16,color="blue",shape="box"];4367[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4367[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4367 -> 2439[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4368[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4368[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4368 -> 2440[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4369[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4369[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4369 -> 2441[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4370[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4370[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4370 -> 2442[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4371[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4371[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4371 -> 2443[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4372[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4372[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4372 -> 2444[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4373[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4373[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4373 -> 2445[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4374[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4374[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4374 -> 2446[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4375[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4375[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4375 -> 2447[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4376[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4376[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4376 -> 2448[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4377[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4377[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4377 -> 2449[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4378[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4378[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4378 -> 2450[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4379[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4379[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4379 -> 2451[label="",style="solid", color="blue", weight=3]; 29.49/12.08 4380[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4380[label="",style="solid", color="blue", weight=9]; 29.49/12.08 4380 -> 2452[label="",style="solid", color="blue", weight=3]; 29.49/12.08 2252[label="xwv4610",fontsize=16,color="green",shape="box"];2253[label="xwv4410",fontsize=16,color="green",shape="box"];2254[label="xwv4610",fontsize=16,color="green",shape="box"];2255[label="xwv4410",fontsize=16,color="green",shape="box"];2256[label="xwv4610",fontsize=16,color="green",shape="box"];2257[label="xwv4410",fontsize=16,color="green",shape="box"];2258[label="xwv4610",fontsize=16,color="green",shape="box"];2259[label="xwv4410",fontsize=16,color="green",shape="box"];2260[label="xwv4610",fontsize=16,color="green",shape="box"];2261[label="xwv4410",fontsize=16,color="green",shape="box"];2262[label="xwv4610",fontsize=16,color="green",shape="box"];2263[label="xwv4410",fontsize=16,color="green",shape="box"];2264[label="xwv4610",fontsize=16,color="green",shape="box"];2265[label="xwv4410",fontsize=16,color="green",shape="box"];2266[label="xwv4610",fontsize=16,color="green",shape="box"];2267[label="xwv4410",fontsize=16,color="green",shape="box"];2268[label="xwv4610",fontsize=16,color="green",shape="box"];2269[label="xwv4410",fontsize=16,color="green",shape="box"];2270[label="xwv4610",fontsize=16,color="green",shape="box"];2271[label="xwv4410",fontsize=16,color="green",shape="box"];2272[label="xwv4610",fontsize=16,color="green",shape="box"];2273[label="xwv4410",fontsize=16,color="green",shape="box"];2274[label="xwv4610",fontsize=16,color="green",shape="box"];2275[label="xwv4410",fontsize=16,color="green",shape="box"];2276[label="xwv4610",fontsize=16,color="green",shape="box"];2277[label="xwv4410",fontsize=16,color="green",shape="box"];2278[label="xwv4610",fontsize=16,color="green",shape="box"];2279[label="xwv4410",fontsize=16,color="green",shape="box"];2280[label="xwv4611",fontsize=16,color="green",shape="box"];2281[label="xwv4411",fontsize=16,color="green",shape="box"];2282[label="xwv4611",fontsize=16,color="green",shape="box"];2283[label="xwv4411",fontsize=16,color="green",shape="box"];2284[label="xwv4611",fontsize=16,color="green",shape="box"];2285[label="xwv4411",fontsize=16,color="green",shape="box"];2286[label="xwv4611",fontsize=16,color="green",shape="box"];2287[label="xwv4411",fontsize=16,color="green",shape="box"];2288[label="xwv4611",fontsize=16,color="green",shape="box"];2289[label="xwv4411",fontsize=16,color="green",shape="box"];2290[label="xwv4611",fontsize=16,color="green",shape="box"];2291[label="xwv4411",fontsize=16,color="green",shape="box"];2292[label="xwv4611",fontsize=16,color="green",shape="box"];2293[label="xwv4411",fontsize=16,color="green",shape="box"];2294[label="xwv4611",fontsize=16,color="green",shape="box"];2295[label="xwv4411",fontsize=16,color="green",shape="box"];2296[label="xwv4611",fontsize=16,color="green",shape="box"];2297[label="xwv4411",fontsize=16,color="green",shape="box"];2298[label="xwv4611",fontsize=16,color="green",shape="box"];2299[label="xwv4411",fontsize=16,color="green",shape="box"];2300[label="xwv4611",fontsize=16,color="green",shape="box"];2301[label="xwv4411",fontsize=16,color="green",shape="box"];2302[label="xwv4611",fontsize=16,color="green",shape="box"];2303[label="xwv4411",fontsize=16,color="green",shape="box"];2304[label="xwv4611",fontsize=16,color="green",shape="box"];2305[label="xwv4411",fontsize=16,color="green",shape="box"];2306[label="xwv4611",fontsize=16,color="green",shape="box"];2307[label="xwv4411",fontsize=16,color="green",shape="box"];2843 -> 3381[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2843[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.findMax (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194))",fontsize=16,color="magenta"];2843 -> 3382[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2843 -> 3383[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2843 -> 3384[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2843 -> 3385[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2843 -> 3386[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2843 -> 3387[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2843 -> 3388[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2843 -> 3389[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2843 -> 3390[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2843 -> 3391[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2843 -> 3392[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2843 -> 3393[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2843 -> 3394[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2843 -> 3395[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2843 -> 3396[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2844 -> 3486[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2844[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv200 xwv201 xwv202 xwv203 xwv204) (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194) (FiniteMap.findMax (FiniteMap.Branch xwv190 xwv191 xwv192 xwv193 xwv194))",fontsize=16,color="magenta"];2844 -> 3487[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2844 -> 3488[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2844 -> 3489[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2844 -> 3490[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2844 -> 3491[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2844 -> 3492[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2844 -> 3493[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2844 -> 3494[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2844 -> 3495[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2844 -> 3496[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2844 -> 3497[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2844 -> 3498[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2844 -> 3499[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2844 -> 3500[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2844 -> 3501[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2845[label="xwv193",fontsize=16,color="green",shape="box"];2846 -> 2803[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2846[label="FiniteMap.mkBalBranch xwv190 xwv191 xwv193 (FiniteMap.deleteMax (FiniteMap.Branch xwv1940 xwv1941 xwv1942 xwv1943 xwv1944))",fontsize=16,color="magenta"];2846 -> 2862[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2846 -> 2863[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2846 -> 2864[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2846 -> 2865[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3190[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv275 xwv276 xwv277 xwv278 xwv279) (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.findMin (FiniteMap.Branch xwv285 xwv286 xwv287 FiniteMap.EmptyFM xwv289))",fontsize=16,color="black",shape="box"];3190 -> 3295[label="",style="solid", color="black", weight=3]; 29.49/12.08 3191[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv275 xwv276 xwv277 xwv278 xwv279) (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.findMin (FiniteMap.Branch xwv285 xwv286 xwv287 (FiniteMap.Branch xwv2880 xwv2881 xwv2882 xwv2883 xwv2884) xwv289))",fontsize=16,color="black",shape="box"];3191 -> 3296[label="",style="solid", color="black", weight=3]; 29.49/12.08 2871[label="xwv2032",fontsize=16,color="green",shape="box"];2872[label="xwv2033",fontsize=16,color="green",shape="box"];2873[label="xwv2030",fontsize=16,color="green",shape="box"];2874[label="xwv2034",fontsize=16,color="green",shape="box"];2875[label="xwv2031",fontsize=16,color="green",shape="box"];3293[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv291 xwv292 xwv293 xwv294 xwv295) (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.findMin (FiniteMap.Branch xwv301 xwv302 xwv303 FiniteMap.EmptyFM xwv305))",fontsize=16,color="black",shape="box"];3293 -> 3310[label="",style="solid", color="black", weight=3]; 29.49/12.08 3294[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv291 xwv292 xwv293 xwv294 xwv295) (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.findMin (FiniteMap.Branch xwv301 xwv302 xwv303 (FiniteMap.Branch xwv3040 xwv3041 xwv3042 xwv3043 xwv3044) xwv305))",fontsize=16,color="black",shape="box"];3294 -> 3311[label="",style="solid", color="black", weight=3]; 29.49/12.08 2643 -> 1751[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2643[label="primPlusNat xwv19200 xwv10900",fontsize=16,color="magenta"];2643 -> 2715[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2643 -> 2716[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2376 -> 1885[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2376[label="primCmpNat xwv44000 xwv46000",fontsize=16,color="magenta"];2376 -> 2530[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2376 -> 2531[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2377[label="GT",fontsize=16,color="green",shape="box"];2378[label="LT",fontsize=16,color="green",shape="box"];2379[label="EQ",fontsize=16,color="green",shape="box"];3093 -> 1203[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3093[label="FiniteMap.sizeFM xwv2533",fontsize=16,color="magenta"];3093 -> 3198[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3094[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3095[label="xwv2534",fontsize=16,color="green",shape="box"];3096[label="FiniteMap.mkBalBranch6MkBalBranch10 xwv200 xwv201 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 xwv2530 xwv2531 xwv2532 xwv2533 xwv2534 otherwise",fontsize=16,color="black",shape="box"];3096 -> 3199[label="",style="solid", color="black", weight=3]; 29.49/12.08 3097[label="FiniteMap.mkBalBranch6Single_R xwv200 xwv201 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204",fontsize=16,color="black",shape="box"];3097 -> 3200[label="",style="solid", color="black", weight=3]; 29.49/12.08 3192[label="FiniteMap.mkBalBranch6Double_L xwv200 xwv201 xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 FiniteMap.EmptyFM xwv2044) xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 FiniteMap.EmptyFM xwv2044)",fontsize=16,color="black",shape="box"];3192 -> 3297[label="",style="solid", color="black", weight=3]; 29.49/12.08 3193[label="FiniteMap.mkBalBranch6Double_L xwv200 xwv201 xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 (FiniteMap.Branch xwv20430 xwv20431 xwv20432 xwv20433 xwv20434) xwv2044) xwv253 (FiniteMap.Branch xwv2040 xwv2041 xwv2042 (FiniteMap.Branch xwv20430 xwv20431 xwv20432 xwv20433 xwv20434) xwv2044)",fontsize=16,color="black",shape="box"];3193 -> 3298[label="",style="solid", color="black", weight=3]; 29.49/12.08 3640[label="xwv201",fontsize=16,color="green",shape="box"];3641[label="xwv200",fontsize=16,color="green",shape="box"];3642[label="xwv253",fontsize=16,color="green",shape="box"];3643[label="xwv2043",fontsize=16,color="green",shape="box"];3644[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3708[label="Pos Zero",fontsize=16,color="green",shape="box"];3709[label="xwv3732",fontsize=16,color="green",shape="box"];2335[label="xwv460",fontsize=16,color="green",shape="box"];2336[label="xwv440",fontsize=16,color="green",shape="box"];2337[label="compare1 xwv440 xwv460 False",fontsize=16,color="black",shape="box"];2337 -> 2475[label="",style="solid", color="black", weight=3]; 29.49/12.08 2338[label="compare1 xwv440 xwv460 True",fontsize=16,color="black",shape="box"];2338 -> 2476[label="",style="solid", color="black", weight=3]; 29.49/12.08 2339[label="xwv460",fontsize=16,color="green",shape="box"];2340[label="xwv440",fontsize=16,color="green",shape="box"];2341[label="compare1 xwv440 xwv460 False",fontsize=16,color="black",shape="box"];2341 -> 2477[label="",style="solid", color="black", weight=3]; 29.49/12.08 2342[label="compare1 xwv440 xwv460 True",fontsize=16,color="black",shape="box"];2342 -> 2478[label="",style="solid", color="black", weight=3]; 29.49/12.08 2343 -> 1555[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2343[label="compare xwv4400 xwv4600",fontsize=16,color="magenta"];2343 -> 2479[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2343 -> 2480[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2344 -> 1557[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2344[label="compare xwv4400 xwv4600",fontsize=16,color="magenta"];2344 -> 2481[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2344 -> 2482[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2345 -> 1029[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2345[label="compare xwv4400 xwv4600",fontsize=16,color="magenta"];2345 -> 2483[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2345 -> 2484[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2346 -> 1561[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2346[label="compare xwv4400 xwv4600",fontsize=16,color="magenta"];2346 -> 2485[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2346 -> 2486[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2347 -> 1563[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2347[label="compare xwv4400 xwv4600",fontsize=16,color="magenta"];2347 -> 2487[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2347 -> 2488[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2348 -> 1565[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2348[label="compare xwv4400 xwv4600",fontsize=16,color="magenta"];2348 -> 2489[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2348 -> 2490[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2349 -> 1567[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2349[label="compare xwv4400 xwv4600",fontsize=16,color="magenta"];2349 -> 2491[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2349 -> 2492[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2350 -> 1569[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2350[label="compare xwv4400 xwv4600",fontsize=16,color="magenta"];2350 -> 2493[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2350 -> 2494[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2351 -> 1571[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2351[label="compare xwv4400 xwv4600",fontsize=16,color="magenta"];2351 -> 2495[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2351 -> 2496[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2352 -> 1573[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2352[label="compare xwv4400 xwv4600",fontsize=16,color="magenta"];2352 -> 2497[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2352 -> 2498[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2353 -> 1575[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2353[label="compare xwv4400 xwv4600",fontsize=16,color="magenta"];2353 -> 2499[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2353 -> 2500[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2354 -> 1577[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2354[label="compare xwv4400 xwv4600",fontsize=16,color="magenta"];2354 -> 2501[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2354 -> 2502[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2355 -> 1579[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2355[label="compare xwv4400 xwv4600",fontsize=16,color="magenta"];2355 -> 2503[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2355 -> 2504[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2356 -> 1581[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2356[label="compare xwv4400 xwv4600",fontsize=16,color="magenta"];2356 -> 2505[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2356 -> 2506[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2357[label="primCompAux0 xwv156 LT",fontsize=16,color="black",shape="box"];2357 -> 2507[label="",style="solid", color="black", weight=3]; 29.49/12.08 2358[label="primCompAux0 xwv156 EQ",fontsize=16,color="black",shape="box"];2358 -> 2508[label="",style="solid", color="black", weight=3]; 29.49/12.08 2359[label="primCompAux0 xwv156 GT",fontsize=16,color="black",shape="box"];2359 -> 2509[label="",style="solid", color="black", weight=3]; 29.49/12.08 2360[label="xwv460",fontsize=16,color="green",shape="box"];2361[label="xwv440",fontsize=16,color="green",shape="box"];2362[label="compare1 xwv440 xwv460 False",fontsize=16,color="black",shape="box"];2362 -> 2510[label="",style="solid", color="black", weight=3]; 29.49/12.08 2363[label="compare1 xwv440 xwv460 True",fontsize=16,color="black",shape="box"];2363 -> 2511[label="",style="solid", color="black", weight=3]; 29.49/12.08 2364 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2364[label="Pos xwv44010 * xwv4600",fontsize=16,color="magenta"];2364 -> 2512[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2364 -> 2513[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2365 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2365[label="xwv4400 * Pos xwv46010",fontsize=16,color="magenta"];2365 -> 2514[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2365 -> 2515[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2366 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2366[label="Neg xwv44010 * xwv4600",fontsize=16,color="magenta"];2366 -> 2516[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2366 -> 2517[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2367 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2367[label="xwv4400 * Pos xwv46010",fontsize=16,color="magenta"];2367 -> 2518[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2367 -> 2519[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2368 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2368[label="Pos xwv44010 * xwv4600",fontsize=16,color="magenta"];2368 -> 2520[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2368 -> 2521[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2369 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2369[label="xwv4400 * Neg xwv46010",fontsize=16,color="magenta"];2369 -> 2522[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2369 -> 2523[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2370 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2370[label="Neg xwv44010 * xwv4600",fontsize=16,color="magenta"];2370 -> 2524[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2370 -> 2525[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2371 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2371[label="xwv4400 * Neg xwv46010",fontsize=16,color="magenta"];2371 -> 2526[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2371 -> 2527[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2372[label="xwv460",fontsize=16,color="green",shape="box"];2373[label="xwv440",fontsize=16,color="green",shape="box"];2374[label="compare1 xwv440 xwv460 False",fontsize=16,color="black",shape="box"];2374 -> 2528[label="",style="solid", color="black", weight=3]; 29.49/12.08 2375[label="compare1 xwv440 xwv460 True",fontsize=16,color="black",shape="box"];2375 -> 2529[label="",style="solid", color="black", weight=3]; 29.49/12.08 2380[label="xwv460",fontsize=16,color="green",shape="box"];2381[label="xwv440",fontsize=16,color="green",shape="box"];2382[label="compare1 xwv440 xwv460 False",fontsize=16,color="black",shape="box"];2382 -> 2532[label="",style="solid", color="black", weight=3]; 29.49/12.08 2383[label="compare1 xwv440 xwv460 True",fontsize=16,color="black",shape="box"];2383 -> 2533[label="",style="solid", color="black", weight=3]; 29.49/12.08 2388 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2388[label="Pos xwv44010 * xwv4600",fontsize=16,color="magenta"];2388 -> 2534[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2388 -> 2535[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2389 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2389[label="xwv4400 * Pos xwv46010",fontsize=16,color="magenta"];2389 -> 2536[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2389 -> 2537[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2390 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2390[label="Neg xwv44010 * xwv4600",fontsize=16,color="magenta"];2390 -> 2538[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2390 -> 2539[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2391 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2391[label="xwv4400 * Pos xwv46010",fontsize=16,color="magenta"];2391 -> 2540[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2391 -> 2541[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2392 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2392[label="Pos xwv44010 * xwv4600",fontsize=16,color="magenta"];2392 -> 2542[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2392 -> 2543[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2393 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2393[label="xwv4400 * Neg xwv46010",fontsize=16,color="magenta"];2393 -> 2544[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2393 -> 2545[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2394 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2394[label="Neg xwv44010 * xwv4600",fontsize=16,color="magenta"];2394 -> 2546[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2394 -> 2547[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2395 -> 418[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2395[label="xwv4400 * Neg xwv46010",fontsize=16,color="magenta"];2395 -> 2548[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2395 -> 2549[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2396[label="Integer xwv46000 * Integer xwv44010",fontsize=16,color="black",shape="box"];2396 -> 2550[label="",style="solid", color="black", weight=3]; 29.49/12.08 2397[label="xwv4611",fontsize=16,color="green",shape="box"];2398[label="xwv4411",fontsize=16,color="green",shape="box"];2399[label="xwv4611",fontsize=16,color="green",shape="box"];2400[label="xwv4411",fontsize=16,color="green",shape="box"];2401[label="xwv4611",fontsize=16,color="green",shape="box"];2402[label="xwv4411",fontsize=16,color="green",shape="box"];2403[label="xwv4611",fontsize=16,color="green",shape="box"];2404[label="xwv4411",fontsize=16,color="green",shape="box"];2405[label="xwv4611",fontsize=16,color="green",shape="box"];2406[label="xwv4411",fontsize=16,color="green",shape="box"];2407[label="xwv4611",fontsize=16,color="green",shape="box"];2408[label="xwv4411",fontsize=16,color="green",shape="box"];2409[label="xwv4611",fontsize=16,color="green",shape="box"];2410[label="xwv4411",fontsize=16,color="green",shape="box"];2411[label="xwv4611",fontsize=16,color="green",shape="box"];2412[label="xwv4411",fontsize=16,color="green",shape="box"];2413[label="xwv4611",fontsize=16,color="green",shape="box"];2414[label="xwv4411",fontsize=16,color="green",shape="box"];2415[label="xwv4611",fontsize=16,color="green",shape="box"];2416[label="xwv4411",fontsize=16,color="green",shape="box"];2417[label="xwv4611",fontsize=16,color="green",shape="box"];2418[label="xwv4411",fontsize=16,color="green",shape="box"];2419[label="xwv4611",fontsize=16,color="green",shape="box"];2420[label="xwv4411",fontsize=16,color="green",shape="box"];2421[label="xwv4611",fontsize=16,color="green",shape="box"];2422[label="xwv4411",fontsize=16,color="green",shape="box"];2423[label="xwv4611",fontsize=16,color="green",shape="box"];2424[label="xwv4411",fontsize=16,color="green",shape="box"];2425 -> 129[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2425[label="xwv4411 == xwv4611",fontsize=16,color="magenta"];2425 -> 2551[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2425 -> 2552[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2426 -> 126[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2426[label="xwv4411 == xwv4611",fontsize=16,color="magenta"];2426 -> 2553[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2426 -> 2554[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2427 -> 123[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2427[label="xwv4411 == xwv4611",fontsize=16,color="magenta"];2427 -> 2555[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2427 -> 2556[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2428 -> 135[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2428[label="xwv4411 == xwv4611",fontsize=16,color="magenta"];2428 -> 2557[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2428 -> 2558[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2429 -> 122[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2429[label="xwv4411 == xwv4611",fontsize=16,color="magenta"];2429 -> 2559[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2429 -> 2560[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2430 -> 124[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2430[label="xwv4411 == xwv4611",fontsize=16,color="magenta"];2430 -> 2561[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2430 -> 2562[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2431 -> 130[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2431[label="xwv4411 == xwv4611",fontsize=16,color="magenta"];2431 -> 2563[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2431 -> 2564[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2432 -> 127[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2432[label="xwv4411 == xwv4611",fontsize=16,color="magenta"];2432 -> 2565[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2432 -> 2566[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2433 -> 134[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2433[label="xwv4411 == xwv4611",fontsize=16,color="magenta"];2433 -> 2567[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2433 -> 2568[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2434 -> 125[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2434[label="xwv4411 == xwv4611",fontsize=16,color="magenta"];2434 -> 2569[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2434 -> 2570[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2435 -> 132[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2435[label="xwv4411 == xwv4611",fontsize=16,color="magenta"];2435 -> 2571[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2435 -> 2572[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2436 -> 133[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2436[label="xwv4411 == xwv4611",fontsize=16,color="magenta"];2436 -> 2573[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2436 -> 2574[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2437 -> 131[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2437[label="xwv4411 == xwv4611",fontsize=16,color="magenta"];2437 -> 2575[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2437 -> 2576[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2438 -> 128[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2438[label="xwv4411 == xwv4611",fontsize=16,color="magenta"];2438 -> 2577[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2438 -> 2578[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2439 -> 1524[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2439[label="xwv4412 <= xwv4612",fontsize=16,color="magenta"];2439 -> 2579[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2439 -> 2580[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2440 -> 1525[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2440[label="xwv4412 <= xwv4612",fontsize=16,color="magenta"];2440 -> 2581[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2440 -> 2582[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2441 -> 1526[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2441[label="xwv4412 <= xwv4612",fontsize=16,color="magenta"];2441 -> 2583[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2441 -> 2584[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2442 -> 1527[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2442[label="xwv4412 <= xwv4612",fontsize=16,color="magenta"];2442 -> 2585[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2442 -> 2586[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2443 -> 1528[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2443[label="xwv4412 <= xwv4612",fontsize=16,color="magenta"];2443 -> 2587[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2443 -> 2588[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2444 -> 1529[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2444[label="xwv4412 <= xwv4612",fontsize=16,color="magenta"];2444 -> 2589[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2444 -> 2590[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2445 -> 1530[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2445[label="xwv4412 <= xwv4612",fontsize=16,color="magenta"];2445 -> 2591[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2445 -> 2592[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2446 -> 1531[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2446[label="xwv4412 <= xwv4612",fontsize=16,color="magenta"];2446 -> 2593[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2446 -> 2594[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2447 -> 1532[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2447[label="xwv4412 <= xwv4612",fontsize=16,color="magenta"];2447 -> 2595[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2447 -> 2596[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2448 -> 1533[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2448[label="xwv4412 <= xwv4612",fontsize=16,color="magenta"];2448 -> 2597[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2448 -> 2598[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2449 -> 1534[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2449[label="xwv4412 <= xwv4612",fontsize=16,color="magenta"];2449 -> 2599[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2449 -> 2600[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2450 -> 1535[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2450[label="xwv4412 <= xwv4612",fontsize=16,color="magenta"];2450 -> 2601[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2450 -> 2602[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2451 -> 1536[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2451[label="xwv4412 <= xwv4612",fontsize=16,color="magenta"];2451 -> 2603[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2451 -> 2604[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2452 -> 1537[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2452[label="xwv4412 <= xwv4612",fontsize=16,color="magenta"];2452 -> 2605[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2452 -> 2606[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3382[label="xwv193",fontsize=16,color="green",shape="box"];3383[label="xwv191",fontsize=16,color="green",shape="box"];3384[label="xwv190",fontsize=16,color="green",shape="box"];3385[label="xwv200",fontsize=16,color="green",shape="box"];3386[label="xwv192",fontsize=16,color="green",shape="box"];3387[label="xwv192",fontsize=16,color="green",shape="box"];3388[label="xwv193",fontsize=16,color="green",shape="box"];3389[label="xwv203",fontsize=16,color="green",shape="box"];3390[label="xwv204",fontsize=16,color="green",shape="box"];3391[label="xwv194",fontsize=16,color="green",shape="box"];3392[label="xwv201",fontsize=16,color="green",shape="box"];3393[label="xwv191",fontsize=16,color="green",shape="box"];3394[label="xwv202",fontsize=16,color="green",shape="box"];3395[label="xwv194",fontsize=16,color="green",shape="box"];3396[label="xwv190",fontsize=16,color="green",shape="box"];3381[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv338 xwv339 xwv340 xwv341 xwv342) (FiniteMap.Branch xwv343 xwv344 xwv345 xwv346 xwv347) (FiniteMap.findMax (FiniteMap.Branch xwv348 xwv349 xwv350 xwv351 xwv352))",fontsize=16,color="burlywood",shape="triangle"];4381[label="xwv352/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3381 -> 4381[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4381 -> 3472[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4382[label="xwv352/FiniteMap.Branch xwv3520 xwv3521 xwv3522 xwv3523 xwv3524",fontsize=10,color="white",style="solid",shape="box"];3381 -> 4382[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4382 -> 3473[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 3487[label="xwv191",fontsize=16,color="green",shape="box"];3488[label="xwv193",fontsize=16,color="green",shape="box"];3489[label="xwv190",fontsize=16,color="green",shape="box"];3490[label="xwv200",fontsize=16,color="green",shape="box"];3491[label="xwv193",fontsize=16,color="green",shape="box"];3492[label="xwv204",fontsize=16,color="green",shape="box"];3493[label="xwv201",fontsize=16,color="green",shape="box"];3494[label="xwv192",fontsize=16,color="green",shape="box"];3495[label="xwv202",fontsize=16,color="green",shape="box"];3496[label="xwv191",fontsize=16,color="green",shape="box"];3497[label="xwv192",fontsize=16,color="green",shape="box"];3498[label="xwv203",fontsize=16,color="green",shape="box"];3499[label="xwv194",fontsize=16,color="green",shape="box"];3500[label="xwv190",fontsize=16,color="green",shape="box"];3501[label="xwv194",fontsize=16,color="green",shape="box"];3486[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv354 xwv355 xwv356 xwv357 xwv358) (FiniteMap.Branch xwv359 xwv360 xwv361 xwv362 xwv363) (FiniteMap.findMax (FiniteMap.Branch xwv364 xwv365 xwv366 xwv367 xwv368))",fontsize=16,color="burlywood",shape="triangle"];4383[label="xwv368/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3486 -> 4383[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4383 -> 3577[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4384[label="xwv368/FiniteMap.Branch xwv3680 xwv3681 xwv3682 xwv3683 xwv3684",fontsize=10,color="white",style="solid",shape="box"];3486 -> 4384[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4384 -> 3578[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 2862[label="xwv190",fontsize=16,color="green",shape="box"];2863 -> 2823[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2863[label="FiniteMap.deleteMax (FiniteMap.Branch xwv1940 xwv1941 xwv1942 xwv1943 xwv1944)",fontsize=16,color="magenta"];2863 -> 2882[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2863 -> 2883[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2863 -> 2884[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2863 -> 2885[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2863 -> 2886[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2864[label="xwv191",fontsize=16,color="green",shape="box"];2865[label="xwv193",fontsize=16,color="green",shape="box"];3295[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv275 xwv276 xwv277 xwv278 xwv279) (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (xwv285,xwv286)",fontsize=16,color="black",shape="box"];3295 -> 3312[label="",style="solid", color="black", weight=3]; 29.49/12.08 3296 -> 3099[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3296[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv275 xwv276 xwv277 xwv278 xwv279) (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.findMin (FiniteMap.Branch xwv2880 xwv2881 xwv2882 xwv2883 xwv2884))",fontsize=16,color="magenta"];3296 -> 3313[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3296 -> 3314[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3296 -> 3315[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3296 -> 3316[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3296 -> 3317[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3310[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv291 xwv292 xwv293 xwv294 xwv295) (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (xwv301,xwv302)",fontsize=16,color="black",shape="box"];3310 -> 3330[label="",style="solid", color="black", weight=3]; 29.49/12.08 3311 -> 3202[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3311[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv291 xwv292 xwv293 xwv294 xwv295) (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.findMin (FiniteMap.Branch xwv3040 xwv3041 xwv3042 xwv3043 xwv3044))",fontsize=16,color="magenta"];3311 -> 3331[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3311 -> 3332[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3311 -> 3333[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3311 -> 3334[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3311 -> 3335[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2715[label="xwv10900",fontsize=16,color="green",shape="box"];2716[label="xwv19200",fontsize=16,color="green",shape="box"];2530[label="xwv44000",fontsize=16,color="green",shape="box"];2531[label="xwv46000",fontsize=16,color="green",shape="box"];3198[label="xwv2533",fontsize=16,color="green",shape="box"];3199[label="FiniteMap.mkBalBranch6MkBalBranch10 xwv200 xwv201 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 xwv2530 xwv2531 xwv2532 xwv2533 xwv2534 True",fontsize=16,color="black",shape="box"];3199 -> 3300[label="",style="solid", color="black", weight=3]; 29.49/12.08 3200 -> 3583[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3200[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xwv2530 xwv2531 xwv2533 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xwv200 xwv201 xwv2534 xwv204)",fontsize=16,color="magenta"];3200 -> 3604[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3200 -> 3605[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3200 -> 3606[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3200 -> 3607[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3200 -> 3608[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3297[label="error []",fontsize=16,color="red",shape="box"];3298 -> 3583[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3298[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xwv20430 xwv20431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv200 xwv201 xwv253 xwv20433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xwv2040 xwv2041 xwv20434 xwv2044)",fontsize=16,color="magenta"];3298 -> 3609[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3298 -> 3610[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3298 -> 3611[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3298 -> 3612[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3298 -> 3613[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2475[label="compare0 xwv440 xwv460 otherwise",fontsize=16,color="black",shape="box"];2475 -> 2644[label="",style="solid", color="black", weight=3]; 29.49/12.08 2476[label="LT",fontsize=16,color="green",shape="box"];2477[label="compare0 xwv440 xwv460 otherwise",fontsize=16,color="black",shape="box"];2477 -> 2645[label="",style="solid", color="black", weight=3]; 29.49/12.08 2478[label="LT",fontsize=16,color="green",shape="box"];2479[label="xwv4600",fontsize=16,color="green",shape="box"];2480[label="xwv4400",fontsize=16,color="green",shape="box"];2481[label="xwv4600",fontsize=16,color="green",shape="box"];2482[label="xwv4400",fontsize=16,color="green",shape="box"];2483[label="xwv4600",fontsize=16,color="green",shape="box"];2484[label="xwv4400",fontsize=16,color="green",shape="box"];2485[label="xwv4600",fontsize=16,color="green",shape="box"];2486[label="xwv4400",fontsize=16,color="green",shape="box"];2487[label="xwv4600",fontsize=16,color="green",shape="box"];2488[label="xwv4400",fontsize=16,color="green",shape="box"];2489[label="xwv4600",fontsize=16,color="green",shape="box"];2490[label="xwv4400",fontsize=16,color="green",shape="box"];2491[label="xwv4600",fontsize=16,color="green",shape="box"];2492[label="xwv4400",fontsize=16,color="green",shape="box"];2493[label="xwv4600",fontsize=16,color="green",shape="box"];2494[label="xwv4400",fontsize=16,color="green",shape="box"];2495[label="xwv4600",fontsize=16,color="green",shape="box"];2496[label="xwv4400",fontsize=16,color="green",shape="box"];2497[label="xwv4600",fontsize=16,color="green",shape="box"];2498[label="xwv4400",fontsize=16,color="green",shape="box"];2499[label="xwv4600",fontsize=16,color="green",shape="box"];2500[label="xwv4400",fontsize=16,color="green",shape="box"];2501[label="xwv4600",fontsize=16,color="green",shape="box"];2502[label="xwv4400",fontsize=16,color="green",shape="box"];2503[label="xwv4600",fontsize=16,color="green",shape="box"];2504[label="xwv4400",fontsize=16,color="green",shape="box"];2505[label="xwv4600",fontsize=16,color="green",shape="box"];2506[label="xwv4400",fontsize=16,color="green",shape="box"];2507[label="LT",fontsize=16,color="green",shape="box"];2508[label="xwv156",fontsize=16,color="green",shape="box"];2509[label="GT",fontsize=16,color="green",shape="box"];2510[label="compare0 xwv440 xwv460 otherwise",fontsize=16,color="black",shape="box"];2510 -> 2646[label="",style="solid", color="black", weight=3]; 29.49/12.08 2511[label="LT",fontsize=16,color="green",shape="box"];2512[label="xwv4600",fontsize=16,color="green",shape="box"];2513[label="Pos xwv44010",fontsize=16,color="green",shape="box"];2514[label="Pos xwv46010",fontsize=16,color="green",shape="box"];2515[label="xwv4400",fontsize=16,color="green",shape="box"];2516[label="xwv4600",fontsize=16,color="green",shape="box"];2517[label="Neg xwv44010",fontsize=16,color="green",shape="box"];2518[label="Pos xwv46010",fontsize=16,color="green",shape="box"];2519[label="xwv4400",fontsize=16,color="green",shape="box"];2520[label="xwv4600",fontsize=16,color="green",shape="box"];2521[label="Pos xwv44010",fontsize=16,color="green",shape="box"];2522[label="Neg xwv46010",fontsize=16,color="green",shape="box"];2523[label="xwv4400",fontsize=16,color="green",shape="box"];2524[label="xwv4600",fontsize=16,color="green",shape="box"];2525[label="Neg xwv44010",fontsize=16,color="green",shape="box"];2526[label="Neg xwv46010",fontsize=16,color="green",shape="box"];2527[label="xwv4400",fontsize=16,color="green",shape="box"];2528[label="compare0 xwv440 xwv460 otherwise",fontsize=16,color="black",shape="box"];2528 -> 2647[label="",style="solid", color="black", weight=3]; 29.49/12.08 2529[label="LT",fontsize=16,color="green",shape="box"];2532[label="compare0 xwv440 xwv460 otherwise",fontsize=16,color="black",shape="box"];2532 -> 2648[label="",style="solid", color="black", weight=3]; 29.49/12.08 2533[label="LT",fontsize=16,color="green",shape="box"];2534[label="xwv4600",fontsize=16,color="green",shape="box"];2535[label="Pos xwv44010",fontsize=16,color="green",shape="box"];2536[label="Pos xwv46010",fontsize=16,color="green",shape="box"];2537[label="xwv4400",fontsize=16,color="green",shape="box"];2538[label="xwv4600",fontsize=16,color="green",shape="box"];2539[label="Neg xwv44010",fontsize=16,color="green",shape="box"];2540[label="Pos xwv46010",fontsize=16,color="green",shape="box"];2541[label="xwv4400",fontsize=16,color="green",shape="box"];2542[label="xwv4600",fontsize=16,color="green",shape="box"];2543[label="Pos xwv44010",fontsize=16,color="green",shape="box"];2544[label="Neg xwv46010",fontsize=16,color="green",shape="box"];2545[label="xwv4400",fontsize=16,color="green",shape="box"];2546[label="xwv4600",fontsize=16,color="green",shape="box"];2547[label="Neg xwv44010",fontsize=16,color="green",shape="box"];2548[label="Neg xwv46010",fontsize=16,color="green",shape="box"];2549[label="xwv4400",fontsize=16,color="green",shape="box"];2550[label="Integer (primMulInt xwv46000 xwv44010)",fontsize=16,color="green",shape="box"];2550 -> 2649[label="",style="dashed", color="green", weight=3]; 29.49/12.08 2551[label="xwv4611",fontsize=16,color="green",shape="box"];2552[label="xwv4411",fontsize=16,color="green",shape="box"];2553[label="xwv4611",fontsize=16,color="green",shape="box"];2554[label="xwv4411",fontsize=16,color="green",shape="box"];2555[label="xwv4611",fontsize=16,color="green",shape="box"];2556[label="xwv4411",fontsize=16,color="green",shape="box"];2557[label="xwv4611",fontsize=16,color="green",shape="box"];2558[label="xwv4411",fontsize=16,color="green",shape="box"];2559[label="xwv4611",fontsize=16,color="green",shape="box"];2560[label="xwv4411",fontsize=16,color="green",shape="box"];2561[label="xwv4611",fontsize=16,color="green",shape="box"];2562[label="xwv4411",fontsize=16,color="green",shape="box"];2563[label="xwv4611",fontsize=16,color="green",shape="box"];2564[label="xwv4411",fontsize=16,color="green",shape="box"];2565[label="xwv4611",fontsize=16,color="green",shape="box"];2566[label="xwv4411",fontsize=16,color="green",shape="box"];2567[label="xwv4611",fontsize=16,color="green",shape="box"];2568[label="xwv4411",fontsize=16,color="green",shape="box"];2569[label="xwv4611",fontsize=16,color="green",shape="box"];2570[label="xwv4411",fontsize=16,color="green",shape="box"];2571[label="xwv4611",fontsize=16,color="green",shape="box"];2572[label="xwv4411",fontsize=16,color="green",shape="box"];2573[label="xwv4611",fontsize=16,color="green",shape="box"];2574[label="xwv4411",fontsize=16,color="green",shape="box"];2575[label="xwv4611",fontsize=16,color="green",shape="box"];2576[label="xwv4411",fontsize=16,color="green",shape="box"];2577[label="xwv4611",fontsize=16,color="green",shape="box"];2578[label="xwv4411",fontsize=16,color="green",shape="box"];2579[label="xwv4612",fontsize=16,color="green",shape="box"];2580[label="xwv4412",fontsize=16,color="green",shape="box"];2581[label="xwv4612",fontsize=16,color="green",shape="box"];2582[label="xwv4412",fontsize=16,color="green",shape="box"];2583[label="xwv4612",fontsize=16,color="green",shape="box"];2584[label="xwv4412",fontsize=16,color="green",shape="box"];2585[label="xwv4612",fontsize=16,color="green",shape="box"];2586[label="xwv4412",fontsize=16,color="green",shape="box"];2587[label="xwv4612",fontsize=16,color="green",shape="box"];2588[label="xwv4412",fontsize=16,color="green",shape="box"];2589[label="xwv4612",fontsize=16,color="green",shape="box"];2590[label="xwv4412",fontsize=16,color="green",shape="box"];2591[label="xwv4612",fontsize=16,color="green",shape="box"];2592[label="xwv4412",fontsize=16,color="green",shape="box"];2593[label="xwv4612",fontsize=16,color="green",shape="box"];2594[label="xwv4412",fontsize=16,color="green",shape="box"];2595[label="xwv4612",fontsize=16,color="green",shape="box"];2596[label="xwv4412",fontsize=16,color="green",shape="box"];2597[label="xwv4612",fontsize=16,color="green",shape="box"];2598[label="xwv4412",fontsize=16,color="green",shape="box"];2599[label="xwv4612",fontsize=16,color="green",shape="box"];2600[label="xwv4412",fontsize=16,color="green",shape="box"];2601[label="xwv4612",fontsize=16,color="green",shape="box"];2602[label="xwv4412",fontsize=16,color="green",shape="box"];2603[label="xwv4612",fontsize=16,color="green",shape="box"];2604[label="xwv4412",fontsize=16,color="green",shape="box"];2605[label="xwv4612",fontsize=16,color="green",shape="box"];2606[label="xwv4412",fontsize=16,color="green",shape="box"];3472[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv338 xwv339 xwv340 xwv341 xwv342) (FiniteMap.Branch xwv343 xwv344 xwv345 xwv346 xwv347) (FiniteMap.findMax (FiniteMap.Branch xwv348 xwv349 xwv350 xwv351 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];3472 -> 3579[label="",style="solid", color="black", weight=3]; 29.49/12.08 3473[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv338 xwv339 xwv340 xwv341 xwv342) (FiniteMap.Branch xwv343 xwv344 xwv345 xwv346 xwv347) (FiniteMap.findMax (FiniteMap.Branch xwv348 xwv349 xwv350 xwv351 (FiniteMap.Branch xwv3520 xwv3521 xwv3522 xwv3523 xwv3524)))",fontsize=16,color="black",shape="box"];3473 -> 3580[label="",style="solid", color="black", weight=3]; 29.49/12.08 3577[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv354 xwv355 xwv356 xwv357 xwv358) (FiniteMap.Branch xwv359 xwv360 xwv361 xwv362 xwv363) (FiniteMap.findMax (FiniteMap.Branch xwv364 xwv365 xwv366 xwv367 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];3577 -> 3645[label="",style="solid", color="black", weight=3]; 29.49/12.08 3578[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv354 xwv355 xwv356 xwv357 xwv358) (FiniteMap.Branch xwv359 xwv360 xwv361 xwv362 xwv363) (FiniteMap.findMax (FiniteMap.Branch xwv364 xwv365 xwv366 xwv367 (FiniteMap.Branch xwv3680 xwv3681 xwv3682 xwv3683 xwv3684)))",fontsize=16,color="black",shape="box"];3578 -> 3646[label="",style="solid", color="black", weight=3]; 29.49/12.08 2882[label="xwv1941",fontsize=16,color="green",shape="box"];2883[label="xwv1942",fontsize=16,color="green",shape="box"];2884[label="xwv1944",fontsize=16,color="green",shape="box"];2885[label="xwv1943",fontsize=16,color="green",shape="box"];2886[label="xwv1940",fontsize=16,color="green",shape="box"];3312[label="xwv285",fontsize=16,color="green",shape="box"];3313[label="xwv2882",fontsize=16,color="green",shape="box"];3314[label="xwv2883",fontsize=16,color="green",shape="box"];3315[label="xwv2884",fontsize=16,color="green",shape="box"];3316[label="xwv2880",fontsize=16,color="green",shape="box"];3317[label="xwv2881",fontsize=16,color="green",shape="box"];3330[label="xwv302",fontsize=16,color="green",shape="box"];3331[label="xwv3044",fontsize=16,color="green",shape="box"];3332[label="xwv3041",fontsize=16,color="green",shape="box"];3333[label="xwv3043",fontsize=16,color="green",shape="box"];3334[label="xwv3042",fontsize=16,color="green",shape="box"];3335[label="xwv3040",fontsize=16,color="green",shape="box"];3300[label="FiniteMap.mkBalBranch6Double_R xwv200 xwv201 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv204",fontsize=16,color="burlywood",shape="box"];4385[label="xwv2534/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4385[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4385 -> 3337[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 4386[label="xwv2534/FiniteMap.Branch xwv25340 xwv25341 xwv25342 xwv25343 xwv25344",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4386[label="",style="solid", color="burlywood", weight=9]; 29.49/12.08 4386 -> 3338[label="",style="solid", color="burlywood", weight=3]; 29.49/12.08 3604[label="xwv2531",fontsize=16,color="green",shape="box"];3605[label="xwv2530",fontsize=16,color="green",shape="box"];3606[label="xwv2533",fontsize=16,color="green",shape="box"];3607 -> 3583[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3607[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xwv200 xwv201 xwv2534 xwv204",fontsize=16,color="magenta"];3607 -> 3647[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3607 -> 3648[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3607 -> 3649[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3607 -> 3650[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3607 -> 3651[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3608[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3609[label="xwv20431",fontsize=16,color="green",shape="box"];3610[label="xwv20430",fontsize=16,color="green",shape="box"];3611 -> 3583[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3611[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv200 xwv201 xwv253 xwv20433",fontsize=16,color="magenta"];3611 -> 3652[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3611 -> 3653[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3611 -> 3654[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3611 -> 3655[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3611 -> 3656[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3612 -> 3583[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3612[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xwv2040 xwv2041 xwv20434 xwv2044",fontsize=16,color="magenta"];3612 -> 3657[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3612 -> 3658[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3612 -> 3659[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3612 -> 3660[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3612 -> 3661[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3613[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];2644[label="compare0 xwv440 xwv460 True",fontsize=16,color="black",shape="box"];2644 -> 2678[label="",style="solid", color="black", weight=3]; 29.49/12.08 2645[label="compare0 xwv440 xwv460 True",fontsize=16,color="black",shape="box"];2645 -> 2679[label="",style="solid", color="black", weight=3]; 29.49/12.08 2646[label="compare0 xwv440 xwv460 True",fontsize=16,color="black",shape="box"];2646 -> 2680[label="",style="solid", color="black", weight=3]; 29.49/12.08 2647[label="compare0 xwv440 xwv460 True",fontsize=16,color="black",shape="box"];2647 -> 2681[label="",style="solid", color="black", weight=3]; 29.49/12.08 2648[label="compare0 xwv440 xwv460 True",fontsize=16,color="black",shape="box"];2648 -> 2682[label="",style="solid", color="black", weight=3]; 29.49/12.08 2649 -> 669[label="",style="dashed", color="red", weight=0]; 29.49/12.08 2649[label="primMulInt xwv46000 xwv44010",fontsize=16,color="magenta"];2649 -> 2683[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 2649 -> 2684[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3579[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv338 xwv339 xwv340 xwv341 xwv342) (FiniteMap.Branch xwv343 xwv344 xwv345 xwv346 xwv347) (xwv348,xwv349)",fontsize=16,color="black",shape="box"];3579 -> 3662[label="",style="solid", color="black", weight=3]; 29.49/12.08 3580 -> 3381[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3580[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv338 xwv339 xwv340 xwv341 xwv342) (FiniteMap.Branch xwv343 xwv344 xwv345 xwv346 xwv347) (FiniteMap.findMax (FiniteMap.Branch xwv3520 xwv3521 xwv3522 xwv3523 xwv3524))",fontsize=16,color="magenta"];3580 -> 3663[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3580 -> 3664[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3580 -> 3665[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3580 -> 3666[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3580 -> 3667[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3645[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv354 xwv355 xwv356 xwv357 xwv358) (FiniteMap.Branch xwv359 xwv360 xwv361 xwv362 xwv363) (xwv364,xwv365)",fontsize=16,color="black",shape="box"];3645 -> 3679[label="",style="solid", color="black", weight=3]; 29.49/12.08 3646 -> 3486[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3646[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv354 xwv355 xwv356 xwv357 xwv358) (FiniteMap.Branch xwv359 xwv360 xwv361 xwv362 xwv363) (FiniteMap.findMax (FiniteMap.Branch xwv3680 xwv3681 xwv3682 xwv3683 xwv3684))",fontsize=16,color="magenta"];3646 -> 3680[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3646 -> 3681[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3646 -> 3682[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3646 -> 3683[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3646 -> 3684[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3337[label="FiniteMap.mkBalBranch6Double_R xwv200 xwv201 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 FiniteMap.EmptyFM) xwv204 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 FiniteMap.EmptyFM) xwv204",fontsize=16,color="black",shape="box"];3337 -> 3378[label="",style="solid", color="black", weight=3]; 29.49/12.08 3338[label="FiniteMap.mkBalBranch6Double_R xwv200 xwv201 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 (FiniteMap.Branch xwv25340 xwv25341 xwv25342 xwv25343 xwv25344)) xwv204 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 (FiniteMap.Branch xwv25340 xwv25341 xwv25342 xwv25343 xwv25344)) xwv204",fontsize=16,color="black",shape="box"];3338 -> 3379[label="",style="solid", color="black", weight=3]; 29.49/12.08 3647[label="xwv201",fontsize=16,color="green",shape="box"];3648[label="xwv200",fontsize=16,color="green",shape="box"];3649[label="xwv2534",fontsize=16,color="green",shape="box"];3650[label="xwv204",fontsize=16,color="green",shape="box"];3651[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3652[label="xwv201",fontsize=16,color="green",shape="box"];3653[label="xwv200",fontsize=16,color="green",shape="box"];3654[label="xwv253",fontsize=16,color="green",shape="box"];3655[label="xwv20433",fontsize=16,color="green",shape="box"];3656[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3657[label="xwv2041",fontsize=16,color="green",shape="box"];3658[label="xwv2040",fontsize=16,color="green",shape="box"];3659[label="xwv20434",fontsize=16,color="green",shape="box"];3660[label="xwv2044",fontsize=16,color="green",shape="box"];3661[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];2678[label="GT",fontsize=16,color="green",shape="box"];2679[label="GT",fontsize=16,color="green",shape="box"];2680[label="GT",fontsize=16,color="green",shape="box"];2681[label="GT",fontsize=16,color="green",shape="box"];2682[label="GT",fontsize=16,color="green",shape="box"];2683[label="xwv44010",fontsize=16,color="green",shape="box"];2684[label="xwv46000",fontsize=16,color="green",shape="box"];3662[label="xwv348",fontsize=16,color="green",shape="box"];3663[label="xwv3521",fontsize=16,color="green",shape="box"];3664[label="xwv3522",fontsize=16,color="green",shape="box"];3665[label="xwv3523",fontsize=16,color="green",shape="box"];3666[label="xwv3524",fontsize=16,color="green",shape="box"];3667[label="xwv3520",fontsize=16,color="green",shape="box"];3679[label="xwv365",fontsize=16,color="green",shape="box"];3680[label="xwv3681",fontsize=16,color="green",shape="box"];3681[label="xwv3683",fontsize=16,color="green",shape="box"];3682[label="xwv3682",fontsize=16,color="green",shape="box"];3683[label="xwv3684",fontsize=16,color="green",shape="box"];3684[label="xwv3680",fontsize=16,color="green",shape="box"];3378[label="error []",fontsize=16,color="red",shape="box"];3379 -> 3583[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3379[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xwv25340 xwv25341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv2530 xwv2531 xwv2533 xwv25343) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xwv200 xwv201 xwv25344 xwv204)",fontsize=16,color="magenta"];3379 -> 3624[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3379 -> 3625[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3379 -> 3626[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3379 -> 3627[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3379 -> 3628[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3624[label="xwv25341",fontsize=16,color="green",shape="box"];3625[label="xwv25340",fontsize=16,color="green",shape="box"];3626 -> 3583[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3626[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv2530 xwv2531 xwv2533 xwv25343",fontsize=16,color="magenta"];3626 -> 3668[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3626 -> 3669[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3626 -> 3670[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3626 -> 3671[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3626 -> 3672[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3627 -> 3583[label="",style="dashed", color="red", weight=0]; 29.49/12.08 3627[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xwv200 xwv201 xwv25344 xwv204",fontsize=16,color="magenta"];3627 -> 3673[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3627 -> 3674[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3627 -> 3675[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3627 -> 3676[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3627 -> 3677[label="",style="dashed", color="magenta", weight=3]; 29.49/12.08 3628[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3668[label="xwv2531",fontsize=16,color="green",shape="box"];3669[label="xwv2530",fontsize=16,color="green",shape="box"];3670[label="xwv2533",fontsize=16,color="green",shape="box"];3671[label="xwv25343",fontsize=16,color="green",shape="box"];3672[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3673[label="xwv201",fontsize=16,color="green",shape="box"];3674[label="xwv200",fontsize=16,color="green",shape="box"];3675[label="xwv25344",fontsize=16,color="green",shape="box"];3676[label="xwv204",fontsize=16,color="green",shape="box"];3677[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];} 29.49/12.08 29.49/12.08 ---------------------------------------- 29.49/12.08 29.49/12.08 (16) 29.49/12.08 Complex Obligation (AND) 29.49/12.08 29.49/12.08 ---------------------------------------- 29.49/12.08 29.49/12.08 (17) 29.49/12.08 Obligation: 29.49/12.08 Q DP problem: 29.49/12.08 The TRS P consists of the following rules: 29.49/12.08 29.49/12.08 new_primCmpNat(Succ(xwv44000), Succ(xwv46000)) -> new_primCmpNat(xwv44000, xwv46000) 29.49/12.08 29.49/12.08 R is empty. 29.49/12.08 Q is empty. 29.49/12.08 We have to consider all minimal (P,Q,R)-chains. 29.49/12.08 ---------------------------------------- 29.49/12.08 29.49/12.08 (18) QDPSizeChangeProof (EQUIVALENT) 29.49/12.08 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. 29.49/12.08 29.49/12.08 From the DPs we obtained the following set of size-change graphs: 29.49/12.08 *new_primCmpNat(Succ(xwv44000), Succ(xwv46000)) -> new_primCmpNat(xwv44000, xwv46000) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2 29.49/12.08 29.49/12.08 29.49/12.08 ---------------------------------------- 29.49/12.08 29.49/12.08 (19) 29.49/12.08 YES 29.49/12.08 29.49/12.08 ---------------------------------------- 29.49/12.08 29.49/12.08 (20) 29.49/12.08 Obligation: 29.49/12.08 Q DP problem: 29.49/12.08 The TRS P consists of the following rules: 29.49/12.08 29.49/12.08 new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, app(app(ty_@2, dc), dd), bd) -> new_esEs2(xwv401, xwv3001, dc, dd) 29.49/12.08 new_esEs1(Left(xwv400), Left(xwv3000), app(app(ty_Either, gf), gg), gd) -> new_esEs1(xwv400, xwv3000, gf, gg) 29.49/12.08 new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, bc, app(app(ty_@2, ed), ee)) -> new_esEs2(xwv402, xwv3002, ed, ee) 29.49/12.08 new_esEs3(:(xwv400, xwv401), :(xwv3000, xwv3001), app(app(ty_Either, bde), bdf)) -> new_esEs1(xwv400, xwv3000, bde, bdf) 29.49/12.08 new_esEs1(Left(xwv400), Left(xwv3000), app(ty_[], hb), gd) -> new_esEs3(xwv400, xwv3000, hb) 29.49/12.08 new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(xwv402, xwv3002, df, dg, dh) 29.49/12.08 new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, bc, app(ty_[], ef)) -> new_esEs3(xwv402, xwv3002, ef) 29.49/12.08 new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bbg, app(app(ty_@2, bcf), bcg)) -> new_esEs2(xwv401, xwv3001, bcf, bcg) 29.49/12.08 new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(app(app(ty_@3, bae), baf), bag), bah) -> new_esEs(xwv400, xwv3000, bae, baf, bag) 29.49/12.08 new_esEs3(:(xwv400, xwv401), :(xwv3000, xwv3001), app(ty_[], bea)) -> new_esEs3(xwv400, xwv3000, bea) 29.49/12.08 new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, app(ty_[], de), bd) -> new_esEs3(xwv401, xwv3001, de) 29.49/12.08 new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(ty_Maybe, be), bc, bd) -> new_esEs0(xwv400, xwv3000, be) 29.49/12.08 new_esEs0(Just(xwv400), Just(xwv3000), app(ty_[], fh)) -> new_esEs3(xwv400, xwv3000, fh) 29.49/12.08 new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(ty_[], cb), bc, bd) -> new_esEs3(xwv400, xwv3000, cb) 29.49/12.08 new_esEs0(Just(xwv400), Just(xwv3000), app(app(ty_@2, ff), fg)) -> new_esEs2(xwv400, xwv3000, ff, fg) 29.49/12.08 new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(ty_Maybe, bba), bah) -> new_esEs0(xwv400, xwv3000, bba) 29.49/12.08 new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, app(ty_Maybe, cg), bd) -> new_esEs0(xwv401, xwv3001, cg) 29.49/12.08 new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(app(ty_@2, bbd), bbe), bah) -> new_esEs2(xwv400, xwv3000, bbd, bbe) 29.49/12.08 new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(xwv401, xwv3001, cd, ce, cf) 29.49/12.08 new_esEs1(Right(xwv400), Right(xwv3000), hc, app(app(ty_@2, bab), bac)) -> new_esEs2(xwv400, xwv3000, bab, bac) 29.49/12.08 new_esEs1(Left(xwv400), Left(xwv3000), app(app(app(ty_@3, ga), gb), gc), gd) -> new_esEs(xwv400, xwv3000, ga, gb, gc) 29.49/12.08 new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, bc, app(ty_Maybe, ea)) -> new_esEs0(xwv402, xwv3002, ea) 29.49/12.08 new_esEs1(Right(xwv400), Right(xwv3000), hc, app(ty_Maybe, hg)) -> new_esEs0(xwv400, xwv3000, hg) 29.49/12.08 new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(app(ty_@2, bh), ca), bc, bd) -> new_esEs2(xwv400, xwv3000, bh, ca) 29.49/12.08 new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, app(app(ty_Either, da), db), bd) -> new_esEs1(xwv401, xwv3001, da, db) 29.49/12.08 new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, bc, app(app(ty_Either, eb), ec)) -> new_esEs1(xwv402, xwv3002, eb, ec) 29.49/12.08 new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bbg, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs(xwv401, xwv3001, bbh, bca, bcb) 29.49/12.08 new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(app(ty_Either, bf), bg), bc, bd) -> new_esEs1(xwv400, xwv3000, bf, bg) 29.49/12.08 new_esEs3(:(xwv400, xwv401), :(xwv3000, xwv3001), beb) -> new_esEs3(xwv401, xwv3001, beb) 29.49/12.08 new_esEs3(:(xwv400, xwv401), :(xwv3000, xwv3001), app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs(xwv400, xwv3000, bda, bdb, bdc) 29.49/12.08 new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bbg, app(ty_Maybe, bcc)) -> new_esEs0(xwv401, xwv3001, bcc) 29.49/12.08 new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(xwv400, xwv3000, h, ba, bb) 29.49/12.08 new_esEs3(:(xwv400, xwv401), :(xwv3000, xwv3001), app(ty_Maybe, bdd)) -> new_esEs0(xwv400, xwv3000, bdd) 29.49/12.08 new_esEs3(:(xwv400, xwv401), :(xwv3000, xwv3001), app(app(ty_@2, bdg), bdh)) -> new_esEs2(xwv400, xwv3000, bdg, bdh) 29.49/12.08 new_esEs1(Left(xwv400), Left(xwv3000), app(app(ty_@2, gh), ha), gd) -> new_esEs2(xwv400, xwv3000, gh, ha) 29.49/12.08 new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bbg, app(ty_[], bch)) -> new_esEs3(xwv401, xwv3001, bch) 29.49/12.08 new_esEs0(Just(xwv400), Just(xwv3000), app(app(ty_Either, fc), fd)) -> new_esEs1(xwv400, xwv3000, fc, fd) 29.49/12.08 new_esEs1(Right(xwv400), Right(xwv3000), hc, app(ty_[], bad)) -> new_esEs3(xwv400, xwv3000, bad) 29.49/12.08 new_esEs1(Right(xwv400), Right(xwv3000), hc, app(app(app(ty_@3, hd), he), hf)) -> new_esEs(xwv400, xwv3000, hd, he, hf) 29.49/12.08 new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(ty_[], bbf), bah) -> new_esEs3(xwv400, xwv3000, bbf) 29.49/12.08 new_esEs0(Just(xwv400), Just(xwv3000), app(ty_Maybe, fb)) -> new_esEs0(xwv400, xwv3000, fb) 29.49/12.08 new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(app(ty_Either, bbb), bbc), bah) -> new_esEs1(xwv400, xwv3000, bbb, bbc) 29.49/12.08 new_esEs1(Left(xwv400), Left(xwv3000), app(ty_Maybe, ge), gd) -> new_esEs0(xwv400, xwv3000, ge) 29.49/12.08 new_esEs1(Right(xwv400), Right(xwv3000), hc, app(app(ty_Either, hh), baa)) -> new_esEs1(xwv400, xwv3000, hh, baa) 29.49/12.08 new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bbg, app(app(ty_Either, bcd), bce)) -> new_esEs1(xwv401, xwv3001, bcd, bce) 29.49/12.08 new_esEs0(Just(xwv400), Just(xwv3000), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(xwv400, xwv3000, eg, eh, fa) 29.49/12.08 29.49/12.08 R is empty. 29.49/12.08 Q is empty. 29.49/12.08 We have to consider all minimal (P,Q,R)-chains. 29.49/12.08 ---------------------------------------- 29.49/12.08 29.49/12.08 (21) QDPSizeChangeProof (EQUIVALENT) 29.49/12.08 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. 29.49/12.08 29.49/12.08 From the DPs we obtained the following set of size-change graphs: 29.49/12.08 *new_esEs3(:(xwv400, xwv401), :(xwv3000, xwv3001), app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs(xwv400, xwv3000, bda, bdb, bdc) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs3(:(xwv400, xwv401), :(xwv3000, xwv3001), app(app(ty_Either, bde), bdf)) -> new_esEs1(xwv400, xwv3000, bde, bdf) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs0(Just(xwv400), Just(xwv3000), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(xwv400, xwv3000, eg, eh, fa) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs0(Just(xwv400), Just(xwv3000), app(app(ty_Either, fc), fd)) -> new_esEs1(xwv400, xwv3000, fc, fd) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs0(Just(xwv400), Just(xwv3000), app(ty_[], fh)) -> new_esEs3(xwv400, xwv3000, fh) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs3(:(xwv400, xwv401), :(xwv3000, xwv3001), app(app(ty_@2, bdg), bdh)) -> new_esEs2(xwv400, xwv3000, bdg, bdh) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs3(:(xwv400, xwv401), :(xwv3000, xwv3001), app(ty_Maybe, bdd)) -> new_esEs0(xwv400, xwv3000, bdd) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs0(Just(xwv400), Just(xwv3000), app(app(ty_@2, ff), fg)) -> new_esEs2(xwv400, xwv3000, ff, fg) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs0(Just(xwv400), Just(xwv3000), app(ty_Maybe, fb)) -> new_esEs0(xwv400, xwv3000, fb) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(app(app(ty_@3, bae), baf), bag), bah) -> new_esEs(xwv400, xwv3000, bae, baf, bag) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bbg, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs(xwv401, xwv3001, bbh, bca, bcb) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(app(ty_Either, bbb), bbc), bah) -> new_esEs1(xwv400, xwv3000, bbb, bbc) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bbg, app(app(ty_Either, bcd), bce)) -> new_esEs1(xwv401, xwv3001, bcd, bce) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bbg, app(ty_[], bch)) -> new_esEs3(xwv401, xwv3001, bch) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(ty_[], bbf), bah) -> new_esEs3(xwv400, xwv3000, bbf) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bbg, app(app(ty_@2, bcf), bcg)) -> new_esEs2(xwv401, xwv3001, bcf, bcg) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(app(ty_@2, bbd), bbe), bah) -> new_esEs2(xwv400, xwv3000, bbd, bbe) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(ty_Maybe, bba), bah) -> new_esEs0(xwv400, xwv3000, bba) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs2(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bbg, app(ty_Maybe, bcc)) -> new_esEs0(xwv401, xwv3001, bcc) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs1(Left(xwv400), Left(xwv3000), app(app(app(ty_@3, ga), gb), gc), gd) -> new_esEs(xwv400, xwv3000, ga, gb, gc) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs1(Right(xwv400), Right(xwv3000), hc, app(app(app(ty_@3, hd), he), hf)) -> new_esEs(xwv400, xwv3000, hd, he, hf) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(xwv402, xwv3002, df, dg, dh) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(xwv401, xwv3001, cd, ce, cf) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(xwv400, xwv3000, h, ba, bb) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs1(Left(xwv400), Left(xwv3000), app(app(ty_Either, gf), gg), gd) -> new_esEs1(xwv400, xwv3000, gf, gg) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs1(Right(xwv400), Right(xwv3000), hc, app(app(ty_Either, hh), baa)) -> new_esEs1(xwv400, xwv3000, hh, baa) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs1(Left(xwv400), Left(xwv3000), app(ty_[], hb), gd) -> new_esEs3(xwv400, xwv3000, hb) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs1(Right(xwv400), Right(xwv3000), hc, app(ty_[], bad)) -> new_esEs3(xwv400, xwv3000, bad) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs1(Right(xwv400), Right(xwv3000), hc, app(app(ty_@2, bab), bac)) -> new_esEs2(xwv400, xwv3000, bab, bac) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs1(Left(xwv400), Left(xwv3000), app(app(ty_@2, gh), ha), gd) -> new_esEs2(xwv400, xwv3000, gh, ha) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs1(Right(xwv400), Right(xwv3000), hc, app(ty_Maybe, hg)) -> new_esEs0(xwv400, xwv3000, hg) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs1(Left(xwv400), Left(xwv3000), app(ty_Maybe, ge), gd) -> new_esEs0(xwv400, xwv3000, ge) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, app(app(ty_Either, da), db), bd) -> new_esEs1(xwv401, xwv3001, da, db) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, bc, app(app(ty_Either, eb), ec)) -> new_esEs1(xwv402, xwv3002, eb, ec) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(app(ty_Either, bf), bg), bc, bd) -> new_esEs1(xwv400, xwv3000, bf, bg) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs3(:(xwv400, xwv401), :(xwv3000, xwv3001), app(ty_[], bea)) -> new_esEs3(xwv400, xwv3000, bea) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs3(:(xwv400, xwv401), :(xwv3000, xwv3001), beb) -> new_esEs3(xwv401, xwv3001, beb) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, bc, app(ty_[], ef)) -> new_esEs3(xwv402, xwv3002, ef) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, app(ty_[], de), bd) -> new_esEs3(xwv401, xwv3001, de) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(ty_[], cb), bc, bd) -> new_esEs3(xwv400, xwv3000, cb) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, app(app(ty_@2, dc), dd), bd) -> new_esEs2(xwv401, xwv3001, dc, dd) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, bc, app(app(ty_@2, ed), ee)) -> new_esEs2(xwv402, xwv3002, ed, ee) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(app(ty_@2, bh), ca), bc, bd) -> new_esEs2(xwv400, xwv3000, bh, ca) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(ty_Maybe, be), bc, bd) -> new_esEs0(xwv400, xwv3000, be) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, app(ty_Maybe, cg), bd) -> new_esEs0(xwv401, xwv3001, cg) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.49/12.08 29.49/12.08 29.49/12.08 *new_esEs(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cc, bc, app(ty_Maybe, ea)) -> new_esEs0(xwv402, xwv3002, ea) 29.49/12.08 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.08 29.49/12.08 29.49/12.08 ---------------------------------------- 29.49/12.08 29.49/12.08 (22) 29.49/12.08 YES 29.49/12.08 29.49/12.08 ---------------------------------------- 29.49/12.08 29.49/12.08 (23) 29.49/12.08 Obligation: 29.49/12.08 Q DP problem: 29.49/12.08 The TRS P consists of the following rules: 29.49/12.08 29.49/12.08 new_primCompAux(xwv4400, xwv4600, xwv144, app(ty_[], ec)) -> new_compare0(xwv4400, xwv4600, ec) 29.49/12.08 new_primCompAux(xwv4400, xwv4600, xwv144, app(ty_Maybe, eg)) -> new_compare4(xwv4400, xwv4600, eg) 29.49/12.08 new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), app(ty_[], hd)), ga)) -> new_lt0(xwv4411, xwv4611, hd) 29.49/12.08 new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, bdh), app(app(ty_Either, bea), beb))) -> new_ltEs(xwv4411, xwv4611, bea, beb) 29.49/12.08 new_compare22(@2(xwv440, xwv441), @2(xwv460, xwv461), False, app(app(ty_Either, h), ba), bfd) -> new_compare2(xwv440, xwv460, new_esEs4(xwv440, xwv460, h, ba), h, ba) 29.49/12.08 new_lt0(:(xwv4400, xwv4401), :(xwv4600, xwv4601), dh) -> new_primCompAux(xwv4400, xwv4600, new_compare1(xwv4401, xwv4601, dh), dh) 29.49/12.08 new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), app(app(ty_Either, ff), fg), fh, ga) -> new_lt(xwv4410, xwv4610, ff, fg) 29.49/12.08 new_primCompAux(xwv4400, xwv4600, xwv144, app(app(app(ty_@3, ed), ee), ef)) -> new_compare3(xwv4400, xwv4600, ed, ee, ef) 29.49/12.08 new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, app(app(ty_@2, bdf), bdg)), bch)) -> new_lt3(xwv4410, xwv4610, bdf, bdg) 29.49/12.08 new_lt3(xwv440, xwv460, bfb, bfc) -> new_compare22(xwv440, xwv460, new_esEs7(xwv440, xwv460, bfb, bfc), bfb, bfc) 29.49/12.08 new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, bdh), app(ty_Maybe, beg))) -> new_ltEs2(xwv4411, xwv4611, beg) 29.49/12.08 new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, app(app(app(ty_@3, he), hf), hg), ga) -> new_lt1(xwv4411, xwv4611, he, hf, hg) 29.49/12.08 new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, fh, app(ty_[], bae)) -> new_ltEs0(xwv4412, xwv4612, bae) 29.49/12.08 new_compare22(@2(xwv440, Right(xwv4410)), @2(xwv460, Right(xwv4610)), False, bfe, app(app(ty_Either, cd), app(ty_[], cg))) -> new_ltEs0(xwv4410, xwv4610, cg) 29.49/12.08 new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), bdh, app(ty_[], bec)) -> new_ltEs0(xwv4411, xwv4611, bec) 29.49/12.08 new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), fh), app(ty_Maybe, bba))) -> new_ltEs2(xwv4412, xwv4612, bba) 29.49/12.08 new_lt(xwv440, xwv460, h, ba) -> new_compare2(xwv440, xwv460, new_esEs4(xwv440, xwv460, h, ba), h, ba) 29.49/12.08 new_compare22(@2(xwv440, xwv441), @2(xwv460, xwv461), False, app(app(ty_@2, bfb), bfc), bfd) -> new_compare22(xwv440, xwv460, new_esEs7(xwv440, xwv460, bfb, bfc), bfb, bfc) 29.49/12.08 new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), bdh, app(app(ty_@2, beh), bfa)) -> new_ltEs3(xwv4411, xwv4611, beh, bfa) 29.49/12.08 new_compare22(@2(xwv440, Left(xwv4410)), @2(xwv460, Left(xwv4610)), False, bfe, app(app(ty_Either, app(ty_[], be)), bd)) -> new_ltEs0(xwv4410, xwv4610, be) 29.49/12.08 new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, app(app(ty_Either, ff), fg)), fh), ga)) -> new_lt(xwv4410, xwv4610, ff, fg) 29.49/12.08 new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), bdh, app(app(ty_Either, bea), beb)) -> new_ltEs(xwv4411, xwv4611, bea, beb) 29.49/12.08 new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), app(app(ty_@2, bdf), bdg), bch) -> new_lt3(xwv4410, xwv4610, bdf, bdg) 29.49/12.08 new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), bdh, app(ty_Maybe, beg)) -> new_ltEs2(xwv4411, xwv4611, beg) 29.49/12.08 new_compare22(@2(xwv440, Right(xwv4410)), @2(xwv460, Right(xwv4610)), False, bfe, app(app(ty_Either, cd), app(app(app(ty_@3, da), db), dc))) -> new_ltEs1(xwv4410, xwv4610, da, db, dc) 29.49/12.08 new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, bdh), app(app(ty_@2, beh), bfa))) -> new_ltEs3(xwv4411, xwv4611, beh, bfa) 29.49/12.08 new_compare22(@2(:(xwv4400, xwv4401), xwv441), @2(:(xwv4600, xwv4601), xwv461), False, app(ty_[], dh), bfd) -> new_compare0(xwv4401, xwv4601, dh) 29.49/12.08 new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), bdh, app(app(app(ty_@3, bed), bee), bef)) -> new_ltEs1(xwv4411, xwv4611, bed, bee, bef) 29.49/12.08 new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, app(ty_Maybe, hh), ga) -> new_lt2(xwv4411, xwv4611, hh) 29.49/12.08 new_compare4(xwv440, xwv460, bbd) -> new_compare21(xwv440, xwv460, new_esEs6(xwv440, xwv460, bbd), bbd) 29.49/12.08 new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, app(ty_Maybe, gf)), fh), ga)) -> new_lt2(xwv4410, xwv4610, gf) 29.49/12.08 new_lt1(xwv440, xwv460, fb, fc, fd) -> new_compare20(xwv440, xwv460, new_esEs5(xwv440, xwv460, fb, fc, fd), fb, fc, fd) 29.49/12.08 new_ltEs(Left(xwv4410), Left(xwv4610), app(app(ty_Either, bb), bc), bd) -> new_ltEs(xwv4410, xwv4610, bb, bc) 29.49/12.08 new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, app(ty_[], hd), ga) -> new_lt0(xwv4411, xwv4611, hd) 29.49/12.08 new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), app(ty_[], gb), fh, ga) -> new_lt0(xwv4410, xwv4610, gb) 29.49/12.08 new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, bdh), app(app(app(ty_@3, bed), bee), bef))) -> new_ltEs1(xwv4411, xwv4611, bed, bee, bef) 29.49/12.08 new_compare22(@2(xwv440, Right(xwv4410)), @2(xwv460, Right(xwv4610)), False, bfe, app(app(ty_Either, cd), app(app(ty_@2, de), df))) -> new_ltEs3(xwv4410, xwv4610, de, df) 29.49/12.08 new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, app(ty_[], bda)), bch)) -> new_lt0(xwv4410, xwv4610, bda) 29.49/12.08 new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), app(ty_Maybe, gf), fh, ga) -> new_lt2(xwv4410, xwv4610, gf) 29.49/12.08 new_ltEs0(xwv441, xwv461, dg) -> new_compare0(xwv441, xwv461, dg) 29.49/12.08 new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, app(ty_Maybe, bde)), bch)) -> new_lt2(xwv4410, xwv4610, bde) 29.49/12.08 new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, app(ty_[], gb)), fh), ga)) -> new_lt0(xwv4410, xwv4610, gb) 29.49/12.08 new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), fh), app(app(ty_@2, bbb), bbc))) -> new_ltEs3(xwv4412, xwv4612, bbb, bbc) 29.49/12.08 new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), app(app(app(ty_@3, gc), gd), ge), fh, ga) -> new_lt1(xwv4410, xwv4610, gc, gd, ge) 29.49/12.08 new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), fh), app(app(ty_Either, bac), bad))) -> new_ltEs(xwv4412, xwv4612, bac, bad) 29.49/12.08 new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, fh, app(ty_Maybe, bba)) -> new_ltEs2(xwv4412, xwv4612, bba) 29.49/12.08 new_compare0(:(xwv4400, xwv4401), :(xwv4600, xwv4601), dh) -> new_compare0(xwv4401, xwv4601, dh) 29.49/12.08 new_lt0(:(xwv4400, xwv4401), :(xwv4600, xwv4601), dh) -> new_compare0(xwv4401, xwv4601, dh) 29.49/12.08 new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), app(app(app(ty_@3, bdb), bdc), bdd), bch) -> new_lt1(xwv4410, xwv4610, bdb, bdc, bdd) 29.49/12.08 new_compare22(@2(xwv440, Right(xwv4410)), @2(xwv460, Right(xwv4610)), False, bfe, app(app(ty_Either, cd), app(app(ty_Either, ce), cf))) -> new_ltEs(xwv4410, xwv4610, ce, cf) 29.49/12.08 new_ltEs2(Just(xwv4410), Just(xwv4610), app(ty_Maybe, bcc)) -> new_ltEs2(xwv4410, xwv4610, bcc) 29.49/12.08 new_ltEs2(Just(xwv4410), Just(xwv4610), app(ty_[], bbg)) -> new_ltEs0(xwv4410, xwv4610, bbg) 29.49/12.08 new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, app(app(app(ty_@3, bdb), bdc), bdd)), bch)) -> new_lt1(xwv4410, xwv4610, bdb, bdc, bdd) 29.49/12.08 new_compare20(xwv440, xwv460, False, fb, fc, fd) -> new_ltEs1(xwv440, xwv460, fb, fc, fd) 29.49/12.08 new_compare22(@2(xwv440, Just(xwv4410)), @2(xwv460, Just(xwv4610)), False, bfe, app(ty_Maybe, app(ty_Maybe, bcc))) -> new_ltEs2(xwv4410, xwv4610, bcc) 29.49/12.08 new_compare22(@2(xwv440, xwv441), @2(xwv460, xwv461), False, app(app(app(ty_@3, fb), fc), fd), bfd) -> new_compare20(xwv440, xwv460, new_esEs5(xwv440, xwv460, fb, fc, fd), fb, fc, fd) 29.49/12.08 new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), app(app(ty_Either, hb), hc)), ga)) -> new_lt(xwv4411, xwv4611, hb, hc) 29.49/12.08 new_primCompAux(xwv4400, xwv4600, xwv144, app(app(ty_Either, ea), eb)) -> new_compare(xwv4400, xwv4600, ea, eb) 29.49/12.08 new_ltEs2(Just(xwv4410), Just(xwv4610), app(app(ty_@2, bcd), bce)) -> new_ltEs3(xwv4410, xwv4610, bcd, bce) 29.49/12.08 new_compare3(xwv440, xwv460, fb, fc, fd) -> new_compare20(xwv440, xwv460, new_esEs5(xwv440, xwv460, fb, fc, fd), fb, fc, fd) 29.49/12.08 new_ltEs(Right(xwv4410), Right(xwv4610), cd, app(ty_Maybe, dd)) -> new_ltEs2(xwv4410, xwv4610, dd) 29.49/12.08 new_compare22(@2(xwv440, Right(xwv4410)), @2(xwv460, Right(xwv4610)), False, bfe, app(app(ty_Either, cd), app(ty_Maybe, dd))) -> new_ltEs2(xwv4410, xwv4610, dd) 29.49/12.08 new_ltEs(Left(xwv4410), Left(xwv4610), app(ty_[], be), bd) -> new_ltEs0(xwv4410, xwv4610, be) 29.49/12.08 new_ltEs(Left(xwv4410), Left(xwv4610), app(app(app(ty_@3, bf), bg), bh), bd) -> new_ltEs1(xwv4410, xwv4610, bf, bg, bh) 29.49/12.08 new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, app(app(ty_@2, baa), bab), ga) -> new_lt3(xwv4411, xwv4611, baa, bab) 29.49/12.08 new_lt2(xwv440, xwv460, bbd) -> new_compare21(xwv440, xwv460, new_esEs6(xwv440, xwv460, bbd), bbd) 29.49/12.08 new_ltEs(Right(xwv4410), Right(xwv4610), cd, app(app(ty_Either, ce), cf)) -> new_ltEs(xwv4410, xwv4610, ce, cf) 29.49/12.08 new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, fh, app(app(ty_@2, bbb), bbc)) -> new_ltEs3(xwv4412, xwv4612, bbb, bbc) 29.49/12.08 new_compare22(@2(xwv440, Just(xwv4410)), @2(xwv460, Just(xwv4610)), False, bfe, app(ty_Maybe, app(app(ty_@2, bcd), bce))) -> new_ltEs3(xwv4410, xwv4610, bcd, bce) 29.49/12.08 new_compare22(@2(xwv440, Left(xwv4410)), @2(xwv460, Left(xwv4610)), False, bfe, app(app(ty_Either, app(ty_Maybe, ca)), bd)) -> new_ltEs2(xwv4410, xwv4610, ca) 29.49/12.08 new_compare22(@2(:(xwv4400, xwv4401), xwv441), @2(:(xwv4600, xwv4601), xwv461), False, app(ty_[], dh), bfd) -> new_primCompAux(xwv4400, xwv4600, new_compare1(xwv4401, xwv4601, dh), dh) 29.49/12.08 new_compare0(:(xwv4400, xwv4401), :(xwv4600, xwv4601), dh) -> new_primCompAux(xwv4400, xwv4600, new_compare1(xwv4401, xwv4601, dh), dh) 29.49/12.08 new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, app(app(ty_Either, bcf), bcg)), bch)) -> new_lt(xwv4410, xwv4610, bcf, bcg) 29.49/12.08 new_ltEs(Left(xwv4410), Left(xwv4610), app(app(ty_@2, cb), cc), bd) -> new_ltEs3(xwv4410, xwv4610, cb, cc) 29.49/12.08 new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), app(app(ty_Either, bcf), bcg), bch) -> new_lt(xwv4410, xwv4610, bcf, bcg) 29.49/12.08 new_ltEs(Right(xwv4410), Right(xwv4610), cd, app(app(app(ty_@3, da), db), dc)) -> new_ltEs1(xwv4410, xwv4610, da, db, dc) 29.49/12.08 new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), app(ty_Maybe, hh)), ga)) -> new_lt2(xwv4411, xwv4611, hh) 29.49/12.08 new_ltEs(Right(xwv4410), Right(xwv4610), cd, app(ty_[], cg)) -> new_ltEs0(xwv4410, xwv4610, cg) 29.49/12.08 new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), fh), app(ty_[], bae))) -> new_ltEs0(xwv4412, xwv4612, bae) 29.49/12.08 new_ltEs(Right(xwv4410), Right(xwv4610), cd, app(app(ty_@2, de), df)) -> new_ltEs3(xwv4410, xwv4610, de, df) 29.49/12.08 new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), app(ty_[], bda), bch) -> new_lt0(xwv4410, xwv4610, bda) 29.49/12.08 new_compare22(@2(xwv440, Left(xwv4410)), @2(xwv460, Left(xwv4610)), False, bfe, app(app(ty_Either, app(app(ty_@2, cb), cc)), bd)) -> new_ltEs3(xwv4410, xwv4610, cb, cc) 29.49/12.08 new_primCompAux(xwv4400, xwv4600, xwv144, app(app(ty_@2, eh), fa)) -> new_compare5(xwv4400, xwv4600, eh, fa) 29.49/12.08 new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, app(app(ty_@2, gg), gh)), fh), ga)) -> new_lt3(xwv4410, xwv4610, gg, gh) 29.49/12.08 new_compare5(xwv440, xwv460, bfb, bfc) -> new_compare22(xwv440, xwv460, new_esEs7(xwv440, xwv460, bfb, bfc), bfb, bfc) 29.49/12.08 new_compare22(@2(xwv440, Left(xwv4410)), @2(xwv460, Left(xwv4610)), False, bfe, app(app(ty_Either, app(app(ty_Either, bb), bc)), bd)) -> new_ltEs(xwv4410, xwv4610, bb, bc) 29.49/12.08 new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, fh, app(app(ty_Either, bac), bad)) -> new_ltEs(xwv4412, xwv4612, bac, bad) 29.49/12.08 new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), app(ty_Maybe, bde), bch) -> new_lt2(xwv4410, xwv4610, bde) 29.49/12.08 new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), app(app(ty_@2, baa), bab)), ga)) -> new_lt3(xwv4411, xwv4611, baa, bab) 29.49/12.08 new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), fh), app(app(app(ty_@3, baf), bag), bah))) -> new_ltEs1(xwv4412, xwv4612, baf, bag, bah) 29.49/12.08 new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, app(app(ty_Either, hb), hc), ga) -> new_lt(xwv4411, xwv4611, hb, hc) 29.49/12.08 new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, fh, app(app(app(ty_@3, baf), bag), bah)) -> new_ltEs1(xwv4412, xwv4612, baf, bag, bah) 29.49/12.08 new_ltEs2(Just(xwv4410), Just(xwv4610), app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs1(xwv4410, xwv4610, bbh, bca, bcb) 29.49/12.08 new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), app(app(ty_@2, gg), gh), fh, ga) -> new_lt3(xwv4410, xwv4610, gg, gh) 29.49/12.08 new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, bdh), app(ty_[], bec))) -> new_ltEs0(xwv4411, xwv4611, bec) 29.49/12.08 new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), app(app(app(ty_@3, he), hf), hg)), ga)) -> new_lt1(xwv4411, xwv4611, he, hf, hg) 29.49/12.08 new_compare22(@2(xwv440, xwv441), @2(xwv460, xwv461), False, app(ty_Maybe, bbd), bfd) -> new_compare21(xwv440, xwv460, new_esEs6(xwv440, xwv460, bbd), bbd) 29.49/12.08 new_compare22(@2(xwv440, Left(xwv4410)), @2(xwv460, Left(xwv4610)), False, bfe, app(app(ty_Either, app(app(app(ty_@3, bf), bg), bh)), bd)) -> new_ltEs1(xwv4410, xwv4610, bf, bg, bh) 29.49/12.08 new_compare2(xwv440, xwv460, False, h, ba) -> new_ltEs(xwv440, xwv460, h, ba) 29.49/12.08 new_compare22(@2(xwv440, Just(xwv4410)), @2(xwv460, Just(xwv4610)), False, bfe, app(ty_Maybe, app(ty_[], bbg))) -> new_ltEs0(xwv4410, xwv4610, bbg) 29.49/12.08 new_ltEs2(Just(xwv4410), Just(xwv4610), app(app(ty_Either, bbe), bbf)) -> new_ltEs(xwv4410, xwv4610, bbe, bbf) 29.49/12.08 new_compare22(@2(xwv440, Just(xwv4410)), @2(xwv460, Just(xwv4610)), False, bfe, app(ty_Maybe, app(app(app(ty_@3, bbh), bca), bcb))) -> new_ltEs1(xwv4410, xwv4610, bbh, bca, bcb) 29.49/12.08 new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, app(app(app(ty_@3, gc), gd), ge)), fh), ga)) -> new_lt1(xwv4410, xwv4610, gc, gd, ge) 29.49/12.08 new_compare(xwv440, xwv460, h, ba) -> new_compare2(xwv440, xwv460, new_esEs4(xwv440, xwv460, h, ba), h, ba) 29.49/12.08 new_ltEs(Left(xwv4410), Left(xwv4610), app(ty_Maybe, ca), bd) -> new_ltEs2(xwv4410, xwv4610, ca) 29.49/12.08 new_compare22(@2(xwv440, xwv441), @2(xwv460, xwv461), False, bfe, app(ty_[], dg)) -> new_compare0(xwv441, xwv461, dg) 29.49/12.08 new_compare22(@2(xwv440, Just(xwv4410)), @2(xwv460, Just(xwv4610)), False, bfe, app(ty_Maybe, app(app(ty_Either, bbe), bbf))) -> new_ltEs(xwv4410, xwv4610, bbe, bbf) 29.49/12.08 new_compare21(xwv440, xwv460, False, bbd) -> new_ltEs2(xwv440, xwv460, bbd) 29.49/12.08 29.49/12.08 The TRS R consists of the following rules: 29.49/12.08 29.49/12.08 new_compare211(xwv440, xwv460, False, bbd) -> new_compare112(xwv440, xwv460, new_ltEs14(xwv440, xwv460, bbd), bbd) 29.49/12.08 new_esEs20(xwv4410, xwv4610, ty_Integer) -> new_esEs19(xwv4410, xwv4610) 29.49/12.08 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 29.49/12.08 new_primCmpInt(Neg(Succ(xwv4400)), Pos(xwv460)) -> LT 29.49/12.08 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Integer) -> new_ltEs18(xwv4410, xwv4610) 29.49/12.08 new_esEs29(xwv401, xwv3001, app(ty_[], dde)) -> new_esEs12(xwv401, xwv3001, dde) 29.49/12.08 new_esEs13(Double(xwv400, xwv401), Double(xwv3000, xwv3001)) -> new_esEs11(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 29.49/12.08 new_pePe(True, xwv149) -> True 29.49/12.08 new_esEs23(xwv401, xwv3001, app(ty_Maybe, cge)) -> new_esEs6(xwv401, xwv3001, cge) 29.49/12.08 new_esEs29(xwv401, xwv3001, ty_Integer) -> new_esEs19(xwv401, xwv3001) 29.49/12.08 new_esEs27(xwv440, xwv460, ty_Char) -> new_esEs16(xwv440, xwv460) 29.49/12.08 new_ltEs6(Right(xwv4410), Right(xwv4610), cd, ty_Ordering) -> new_ltEs7(xwv4410, xwv4610) 29.49/12.08 new_primCmpInt(Neg(Succ(xwv4400)), Neg(Zero)) -> LT 29.49/12.08 new_esEs20(xwv4410, xwv4610, app(ty_[], bda)) -> new_esEs12(xwv4410, xwv4610, bda) 29.49/12.08 new_esEs21(xwv400, xwv3000, app(ty_Ratio, cea)) -> new_esEs18(xwv400, xwv3000, cea) 29.49/12.08 new_ltEs5(xwv4412, xwv4612, app(ty_[], bae)) -> new_ltEs9(xwv4412, xwv4612, bae) 29.49/12.08 new_esEs21(xwv400, xwv3000, ty_Ordering) -> new_esEs10(xwv400, xwv3000) 29.49/12.08 new_compare112(xwv440, xwv460, True, bbd) -> LT 29.49/12.08 new_esEs4(Left(xwv400), Right(xwv3000), bhf, bgf) -> False 29.49/12.08 new_esEs4(Right(xwv400), Left(xwv3000), bhf, bgf) -> False 29.49/12.08 new_ltEs20(xwv441, xwv461, ty_Integer) -> new_ltEs18(xwv441, xwv461) 29.49/12.08 new_esEs9(xwv4411, xwv4611, ty_Ordering) -> new_esEs10(xwv4411, xwv4611) 29.49/12.08 new_esEs8(xwv4410, xwv4610, app(ty_[], gb)) -> new_esEs12(xwv4410, xwv4610, gb) 29.49/12.08 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 29.49/12.08 new_esEs12(:(xwv400, xwv401), [], cdb) -> False 29.49/12.08 new_esEs12([], :(xwv3000, xwv3001), cdb) -> False 29.49/12.08 new_ltEs15(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), bdh, bch) -> new_pePe(new_lt20(xwv4410, xwv4610, bdh), new_asAs(new_esEs20(xwv4410, xwv4610, bdh), new_ltEs19(xwv4411, xwv4611, bch))) 29.49/12.08 new_lt20(xwv4410, xwv4610, app(ty_Ratio, ccf)) -> new_lt18(xwv4410, xwv4610, ccf) 29.49/12.08 new_esEs29(xwv401, xwv3001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs5(xwv401, xwv3001, dcd, dce, dcf) 29.49/12.08 new_primCmpInt(Pos(Zero), Neg(Succ(xwv4600))) -> GT 29.49/12.08 new_esEs21(xwv400, xwv3000, ty_Bool) -> new_esEs15(xwv400, xwv3000) 29.49/12.08 new_compare26(xwv44, xwv46, True, bfe, bfd) -> EQ 29.49/12.08 new_lt4(xwv4410, xwv4610, ty_Float) -> new_lt17(xwv4410, xwv4610) 29.49/12.08 new_lt7(xwv440, xwv460) -> new_esEs10(new_compare14(xwv440, xwv460), LT) 29.49/12.08 new_esEs24(xwv402, xwv3002, ty_Int) -> new_esEs11(xwv402, xwv3002) 29.49/12.08 new_lt20(xwv4410, xwv4610, ty_Ordering) -> new_lt7(xwv4410, xwv4610) 29.49/12.08 new_esEs9(xwv4411, xwv4611, ty_Double) -> new_esEs13(xwv4411, xwv4611) 29.49/12.08 new_esEs22(xwv400, xwv3000, app(app(ty_Either, cfd), cfe)) -> new_esEs4(xwv400, xwv3000, cfd, cfe) 29.49/12.08 new_esEs9(xwv4411, xwv4611, app(app(ty_@2, baa), bab)) -> new_esEs7(xwv4411, xwv4611, baa, bab) 29.49/12.08 new_compare211(xwv440, xwv460, True, bbd) -> EQ 29.49/12.08 new_ltEs19(xwv4411, xwv4611, ty_@0) -> new_ltEs11(xwv4411, xwv4611) 29.49/12.08 new_esEs22(xwv400, xwv3000, ty_Float) -> new_esEs17(xwv400, xwv3000) 29.49/12.08 new_lt5(xwv4411, xwv4611, app(app(app(ty_@3, he), hf), hg)) -> new_lt10(xwv4411, xwv4611, he, hf, hg) 29.49/12.08 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_@0) -> new_ltEs11(xwv4410, xwv4610) 29.49/12.08 new_compare113(xwv440, xwv460, False) -> GT 29.49/12.08 new_primCompAux0(xwv156, GT) -> GT 29.49/12.08 new_esEs9(xwv4411, xwv4611, ty_@0) -> new_esEs14(xwv4411, xwv4611) 29.49/12.08 new_esEs15(False, False) -> True 29.49/12.08 new_ltEs20(xwv441, xwv461, ty_Bool) -> new_ltEs12(xwv441, xwv461) 29.49/12.08 new_ltEs14(Nothing, Just(xwv4610), cch) -> True 29.49/12.08 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Double) -> new_ltEs10(xwv4410, xwv4610) 29.49/12.08 new_primEqInt(Pos(Succ(xwv4000)), Pos(Zero)) -> False 29.49/12.09 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bhf, ty_Bool) -> new_esEs15(xwv400, xwv3000) 29.49/12.09 new_compare18(Double(xwv4400, Pos(xwv44010)), Double(xwv4600, Pos(xwv46010))) -> new_compare9(new_sr(xwv4400, Pos(xwv46010)), new_sr(Pos(xwv44010), xwv4600)) 29.49/12.09 new_compare210(xwv440, xwv460, False) -> new_compare113(xwv440, xwv460, new_ltEs7(xwv440, xwv460)) 29.49/12.09 new_esEs20(xwv4410, xwv4610, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs5(xwv4410, xwv4610, bdb, bdc, bdd) 29.49/12.09 new_compare27(xwv4400, xwv4600, ty_Integer) -> new_compare7(xwv4400, xwv4600) 29.49/12.09 new_compare1(:(xwv4400, xwv4401), [], dh) -> GT 29.49/12.09 new_lt20(xwv4410, xwv4610, app(app(ty_Either, bcf), bcg)) -> new_lt6(xwv4410, xwv4610, bcf, bcg) 29.49/12.09 new_primEqNat0(Succ(xwv4000), Succ(xwv30000)) -> new_primEqNat0(xwv4000, xwv30000) 29.49/12.09 new_esEs10(GT, GT) -> True 29.49/12.09 new_esEs21(xwv400, xwv3000, ty_Double) -> new_esEs13(xwv400, xwv3000) 29.49/12.09 new_primCompAux0(xwv156, LT) -> LT 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), app(app(ty_@2, cb), cc), bd) -> new_ltEs15(xwv4410, xwv4610, cb, cc) 29.49/12.09 new_not(True) -> False 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), cd, app(ty_Maybe, dd)) -> new_ltEs14(xwv4410, xwv4610, dd) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, app(ty_Ratio, ccg)) -> new_ltEs17(xwv4411, xwv4611, ccg) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Int, bd) -> new_ltEs8(xwv4410, xwv4610) 29.49/12.09 new_primCmpNat0(Zero, Zero) -> EQ 29.49/12.09 new_lt4(xwv4410, xwv4610, app(app(ty_@2, gg), gh)) -> new_lt16(xwv4410, xwv4610, gg, gh) 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bhf, app(ty_Ratio, cae)) -> new_esEs18(xwv400, xwv3000, cae) 29.49/12.09 new_esEs29(xwv401, xwv3001, ty_Int) -> new_esEs11(xwv401, xwv3001) 29.49/12.09 new_lt16(xwv440, xwv460, bfb, bfc) -> new_esEs10(new_compare19(xwv440, xwv460, bfb, bfc), LT) 29.49/12.09 new_lt21(xwv440, xwv460, ty_Char) -> new_lt14(xwv440, xwv460) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), app(app(ty_Either, bb), bc), bd) -> new_ltEs6(xwv4410, xwv4610, bb, bc) 29.49/12.09 new_lt19(xwv440, xwv460) -> new_esEs10(new_compare7(xwv440, xwv460), LT) 29.49/12.09 new_esEs21(xwv400, xwv3000, ty_@0) -> new_esEs14(xwv400, xwv3000) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, ty_Bool) -> new_ltEs12(xwv4411, xwv4611) 29.49/12.09 new_primEqNat0(Succ(xwv4000), Zero) -> False 29.49/12.09 new_primEqNat0(Zero, Succ(xwv30000)) -> False 29.49/12.09 new_esEs14(@0, @0) -> True 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), app(ty_Maybe, ca), bd) -> new_ltEs14(xwv4410, xwv4610, ca) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Float, bd) -> new_ltEs16(xwv4410, xwv4610) 29.49/12.09 new_ltEs5(xwv4412, xwv4612, app(app(ty_Either, bac), bad)) -> new_ltEs6(xwv4412, xwv4612, bac, bad) 29.49/12.09 new_esEs24(xwv402, xwv3002, ty_Integer) -> new_esEs19(xwv402, xwv3002) 29.49/12.09 new_compare10(xwv440, xwv460, True, h, ba) -> LT 29.49/12.09 new_esEs28(xwv400, xwv3000, ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.09 new_lt4(xwv4410, xwv4610, ty_Char) -> new_lt14(xwv4410, xwv4610) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), app(ty_Ratio, bhb), bgf) -> new_esEs18(xwv400, xwv3000, bhb) 29.49/12.09 new_lt20(xwv4410, xwv4610, ty_Integer) -> new_lt19(xwv4410, xwv4610) 29.49/12.09 new_lt20(xwv4410, xwv4610, ty_Double) -> new_lt11(xwv4410, xwv4610) 29.49/12.09 new_esEs22(xwv400, xwv3000, app(app(ty_@2, cfg), cfh)) -> new_esEs7(xwv400, xwv3000, cfg, cfh) 29.49/12.09 new_esEs10(EQ, EQ) -> True 29.49/12.09 new_lt20(xwv4410, xwv4610, app(ty_[], bda)) -> new_lt9(xwv4410, xwv4610, bda) 29.49/12.09 new_esEs23(xwv401, xwv3001, ty_Int) -> new_esEs11(xwv401, xwv3001) 29.49/12.09 new_esEs9(xwv4411, xwv4611, app(ty_Ratio, bfg)) -> new_esEs18(xwv4411, xwv4611, bfg) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Bool) -> new_ltEs12(xwv4410, xwv4610) 29.49/12.09 new_lt8(xwv440, xwv460) -> new_esEs10(new_compare9(xwv440, xwv460), LT) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), ty_Int, bgf) -> new_esEs11(xwv400, xwv3000) 29.49/12.09 new_primCmpInt(Pos(Succ(xwv4400)), Neg(xwv460)) -> GT 29.49/12.09 new_ltEs20(xwv441, xwv461, ty_@0) -> new_ltEs11(xwv441, xwv461) 29.49/12.09 new_compare9(xwv44, xwv46) -> new_primCmpInt(xwv44, xwv46) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Ordering) -> new_ltEs7(xwv4410, xwv4610) 29.49/12.09 new_ltEs9(xwv441, xwv461, dg) -> new_fsEs(new_compare1(xwv441, xwv461, dg)) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), app(ty_Ratio, cda)) -> new_ltEs17(xwv4410, xwv4610, cda) 29.49/12.09 new_esEs24(xwv402, xwv3002, app(app(app(ty_@3, chd), che), chf)) -> new_esEs5(xwv402, xwv3002, chd, che, chf) 29.49/12.09 new_ltEs20(xwv441, xwv461, ty_Double) -> new_ltEs10(xwv441, xwv461) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Char, bd) -> new_ltEs13(xwv4410, xwv4610) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, ty_Integer) -> new_ltEs18(xwv4411, xwv4611) 29.49/12.09 new_ltEs5(xwv4412, xwv4612, app(app(ty_@2, bbb), bbc)) -> new_ltEs15(xwv4412, xwv4612, bbb, bbc) 29.49/12.09 new_ltEs7(GT, GT) -> True 29.49/12.09 new_compare1(:(xwv4400, xwv4401), :(xwv4600, xwv4601), dh) -> new_primCompAux1(xwv4400, xwv4600, new_compare1(xwv4401, xwv4601, dh), dh) 29.49/12.09 new_primPlusNat1(Succ(xwv19200), Succ(xwv10900)) -> Succ(Succ(new_primPlusNat1(xwv19200, xwv10900))) 29.49/12.09 new_lt21(xwv440, xwv460, ty_Float) -> new_lt17(xwv440, xwv460) 29.49/12.09 new_compare18(Double(xwv4400, Neg(xwv44010)), Double(xwv4600, Neg(xwv46010))) -> new_compare9(new_sr(xwv4400, Neg(xwv46010)), new_sr(Neg(xwv44010), xwv4600)) 29.49/12.09 new_primCmpNat0(Zero, Succ(xwv46000)) -> LT 29.49/12.09 new_esEs10(LT, EQ) -> False 29.49/12.09 new_esEs10(EQ, LT) -> False 29.49/12.09 new_esEs22(xwv400, xwv3000, app(ty_Ratio, cff)) -> new_esEs18(xwv400, xwv3000, cff) 29.49/12.09 new_esEs20(xwv4410, xwv4610, ty_Ordering) -> new_esEs10(xwv4410, xwv4610) 29.49/12.09 new_lt20(xwv4410, xwv4610, ty_Char) -> new_lt14(xwv4410, xwv4610) 29.49/12.09 new_compare210(xwv440, xwv460, True) -> EQ 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bhf, ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, ty_Double) -> new_ltEs10(xwv4411, xwv4611) 29.49/12.09 new_lt20(xwv4410, xwv4610, ty_@0) -> new_lt12(xwv4410, xwv4610) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.09 new_esEs21(xwv400, xwv3000, app(app(app(ty_@3, cdc), cdd), cde)) -> new_esEs5(xwv400, xwv3000, cdc, cdd, cde) 29.49/12.09 new_primCmpNat0(Succ(xwv44000), Zero) -> GT 29.49/12.09 new_esEs27(xwv440, xwv460, app(app(ty_@2, bfb), bfc)) -> new_esEs7(xwv440, xwv460, bfb, bfc) 29.49/12.09 new_compare110(xwv440, xwv460, False, fb, fc, fd) -> GT 29.49/12.09 new_esEs9(xwv4411, xwv4611, app(ty_[], hd)) -> new_esEs12(xwv4411, xwv4611, hd) 29.49/12.09 new_compare13(xwv122, xwv123, xwv124, xwv125, False, bga, bgb) -> GT 29.49/12.09 new_pePe(False, xwv149) -> xwv149 29.49/12.09 new_esEs27(xwv440, xwv460, ty_@0) -> new_esEs14(xwv440, xwv460) 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), cd, app(ty_Ratio, ddg)) -> new_ltEs17(xwv4410, xwv4610, ddg) 29.49/12.09 new_esEs27(xwv440, xwv460, ty_Double) -> new_esEs13(xwv440, xwv460) 29.49/12.09 new_esEs9(xwv4411, xwv4611, ty_Integer) -> new_esEs19(xwv4411, xwv4611) 29.49/12.09 new_lt20(xwv4410, xwv4610, ty_Float) -> new_lt17(xwv4410, xwv4610) 29.49/12.09 new_lt4(xwv4410, xwv4610, app(app(app(ty_@3, gc), gd), ge)) -> new_lt10(xwv4410, xwv4610, gc, gd, ge) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), app(app(ty_Either, bbe), bbf)) -> new_ltEs6(xwv4410, xwv4610, bbe, bbf) 29.49/12.09 new_esEs23(xwv401, xwv3001, ty_Float) -> new_esEs17(xwv401, xwv3001) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), ty_Float, bgf) -> new_esEs17(xwv400, xwv3000) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_@0, bd) -> new_ltEs11(xwv4410, xwv4610) 29.49/12.09 new_esEs21(xwv400, xwv3000, app(app(ty_Either, cdg), cdh)) -> new_esEs4(xwv400, xwv3000, cdg, cdh) 29.49/12.09 new_ltEs20(xwv441, xwv461, ty_Char) -> new_ltEs13(xwv441, xwv461) 29.49/12.09 new_primCmpInt(Pos(Succ(xwv4400)), Pos(Zero)) -> GT 29.49/12.09 new_ltEs19(xwv4411, xwv4611, app(ty_Maybe, beg)) -> new_ltEs14(xwv4411, xwv4611, beg) 29.49/12.09 new_esEs22(xwv400, xwv3000, ty_Ordering) -> new_esEs10(xwv400, xwv3000) 29.49/12.09 new_compare7(Integer(xwv4400), Integer(xwv4600)) -> new_primCmpInt(xwv4400, xwv4600) 29.49/12.09 new_compare27(xwv4400, xwv4600, app(ty_[], ec)) -> new_compare1(xwv4400, xwv4600, ec) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Char) -> new_ltEs13(xwv4410, xwv4610) 29.49/12.09 new_compare23(xwv440, xwv460, True, h, ba) -> EQ 29.49/12.09 new_esEs22(xwv400, xwv3000, app(ty_Maybe, cfc)) -> new_esEs6(xwv400, xwv3000, cfc) 29.49/12.09 new_esEs28(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 29.49/12.09 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 29.49/12.09 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), cd, app(app(app(ty_@3, da), db), dc)) -> new_ltEs4(xwv4410, xwv4610, da, db, dc) 29.49/12.09 new_lt5(xwv4411, xwv4611, ty_Bool) -> new_lt13(xwv4411, xwv4611) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, ty_Char) -> new_ltEs13(xwv4411, xwv4611) 29.49/12.09 new_esEs24(xwv402, xwv3002, app(ty_Ratio, dab)) -> new_esEs18(xwv402, xwv3002, dab) 29.49/12.09 new_esEs15(True, True) -> True 29.49/12.09 new_esEs29(xwv401, xwv3001, ty_Bool) -> new_esEs15(xwv401, xwv3001) 29.49/12.09 new_esEs8(xwv4410, xwv4610, ty_Ordering) -> new_esEs10(xwv4410, xwv4610) 29.49/12.09 new_primEqInt(Neg(Succ(xwv4000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 29.49/12.09 new_esEs21(xwv400, xwv3000, ty_Float) -> new_esEs17(xwv400, xwv3000) 29.49/12.09 new_primCmpInt(Neg(Zero), Pos(Succ(xwv4600))) -> LT 29.49/12.09 new_esEs17(Float(xwv400, xwv401), Float(xwv3000, xwv3001)) -> new_esEs11(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Double, bd) -> new_ltEs10(xwv4410, xwv4610) 29.49/12.09 new_lt5(xwv4411, xwv4611, ty_Float) -> new_lt17(xwv4411, xwv4611) 29.49/12.09 new_compare17(xwv440, xwv460) -> new_compare25(xwv440, xwv460, new_esEs15(xwv440, xwv460)) 29.49/12.09 new_compare29(Float(xwv4400, Pos(xwv44010)), Float(xwv4600, Neg(xwv46010))) -> new_compare9(new_sr(xwv4400, Pos(xwv46010)), new_sr(Neg(xwv44010), xwv4600)) 29.49/12.09 new_compare29(Float(xwv4400, Neg(xwv44010)), Float(xwv4600, Pos(xwv46010))) -> new_compare9(new_sr(xwv4400, Neg(xwv46010)), new_sr(Pos(xwv44010), xwv4600)) 29.49/12.09 new_primMulInt(Pos(xwv4010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 29.49/12.09 new_lt12(xwv440, xwv460) -> new_esEs10(new_compare11(xwv440, xwv460), LT) 29.49/12.09 new_lt21(xwv440, xwv460, ty_@0) -> new_lt12(xwv440, xwv460) 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), cd, ty_Integer) -> new_ltEs18(xwv4410, xwv4610) 29.49/12.09 new_esEs23(xwv401, xwv3001, app(app(ty_Either, cgf), cgg)) -> new_esEs4(xwv401, xwv3001, cgf, cgg) 29.49/12.09 new_esEs24(xwv402, xwv3002, ty_Ordering) -> new_esEs10(xwv402, xwv3002) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), app(app(ty_Either, cbf), cbg)) -> new_esEs4(xwv400, xwv3000, cbf, cbg) 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bhf, ty_Double) -> new_esEs13(xwv400, xwv3000) 29.49/12.09 new_ltEs5(xwv4412, xwv4612, ty_Char) -> new_ltEs13(xwv4412, xwv4612) 29.49/12.09 new_esEs24(xwv402, xwv3002, app(ty_Maybe, chg)) -> new_esEs6(xwv402, xwv3002, chg) 29.49/12.09 new_compare11(@0, @0) -> EQ 29.49/12.09 new_esEs29(xwv401, xwv3001, ty_Double) -> new_esEs13(xwv401, xwv3001) 29.49/12.09 new_primMulNat0(Succ(xwv40100), Zero) -> Zero 29.49/12.09 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 29.49/12.09 new_primPlusNat0(Zero, xwv300000) -> Succ(xwv300000) 29.49/12.09 new_esEs23(xwv401, xwv3001, app(ty_[], chc)) -> new_esEs12(xwv401, xwv3001, chc) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(xwv400, xwv3000, cbb, cbc, cbd) 29.49/12.09 new_lt15(xwv440, xwv460, bbd) -> new_esEs10(new_compare16(xwv440, xwv460, bbd), LT) 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), cd, app(app(ty_Either, ce), cf)) -> new_ltEs6(xwv4410, xwv4610, ce, cf) 29.49/12.09 new_esEs23(xwv401, xwv3001, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs5(xwv401, xwv3001, cgb, cgc, cgd) 29.49/12.09 new_lt21(xwv440, xwv460, app(app(app(ty_@3, fb), fc), fd)) -> new_lt10(xwv440, xwv460, fb, fc, fd) 29.49/12.09 new_lt4(xwv4410, xwv4610, app(ty_Ratio, bff)) -> new_lt18(xwv4410, xwv4610, bff) 29.49/12.09 new_lt20(xwv4410, xwv4610, ty_Bool) -> new_lt13(xwv4410, xwv4610) 29.49/12.09 new_ltEs12(False, True) -> True 29.49/12.09 new_ltEs20(xwv441, xwv461, app(ty_Maybe, cch)) -> new_ltEs14(xwv441, xwv461, cch) 29.49/12.09 new_esEs20(xwv4410, xwv4610, ty_Int) -> new_esEs11(xwv4410, xwv4610) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), app(ty_Maybe, bcc)) -> new_ltEs14(xwv4410, xwv4610, bcc) 29.49/12.09 new_compare26(@2(xwv440, xwv441), @2(xwv460, xwv461), False, bfe, bfd) -> new_compare15(xwv440, xwv441, xwv460, xwv461, new_lt21(xwv440, xwv460, bfe), new_asAs(new_esEs27(xwv440, xwv460, bfe), new_ltEs20(xwv441, xwv461, bfd)), bfe, bfd) 29.49/12.09 new_esEs24(xwv402, xwv3002, app(ty_[], dae)) -> new_esEs12(xwv402, xwv3002, dae) 29.49/12.09 new_esEs27(xwv440, xwv460, ty_Bool) -> new_esEs15(xwv440, xwv460) 29.49/12.09 new_compare1([], [], dh) -> EQ 29.49/12.09 new_compare111(xwv440, xwv460, True) -> LT 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bhf, ty_Char) -> new_esEs16(xwv400, xwv3000) 29.49/12.09 new_lt21(xwv440, xwv460, ty_Double) -> new_lt11(xwv440, xwv460) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Bool, bd) -> new_ltEs12(xwv4410, xwv4610) 29.49/12.09 new_esEs28(xwv400, xwv3000, ty_Bool) -> new_esEs15(xwv400, xwv3000) 29.49/12.09 new_esEs9(xwv4411, xwv4611, ty_Float) -> new_esEs17(xwv4411, xwv4611) 29.49/12.09 new_compare15(xwv122, xwv123, xwv124, xwv125, True, xwv127, bga, bgb) -> new_compare13(xwv122, xwv123, xwv124, xwv125, True, bga, bgb) 29.49/12.09 new_primPlusNat1(Succ(xwv19200), Zero) -> Succ(xwv19200) 29.49/12.09 new_primPlusNat1(Zero, Succ(xwv10900)) -> Succ(xwv10900) 29.49/12.09 new_esEs21(xwv400, xwv3000, ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bhf, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs5(xwv400, xwv3000, bhg, bhh, caa) 29.49/12.09 new_compare19(xwv440, xwv460, bfb, bfc) -> new_compare26(xwv440, xwv460, new_esEs7(xwv440, xwv460, bfb, bfc), bfb, bfc) 29.49/12.09 new_compare8(:%(xwv4400, xwv4401), :%(xwv4600, xwv4601), ty_Integer) -> new_compare7(new_sr0(xwv4400, xwv4601), new_sr0(xwv4600, xwv4401)) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), app(ty_[], bbg)) -> new_ltEs9(xwv4410, xwv4610, bbg) 29.49/12.09 new_esEs8(xwv4410, xwv4610, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs5(xwv4410, xwv4610, gc, gd, ge) 29.49/12.09 new_esEs9(xwv4411, xwv4611, app(ty_Maybe, hh)) -> new_esEs6(xwv4411, xwv4611, hh) 29.49/12.09 new_lt13(xwv440, xwv460) -> new_esEs10(new_compare17(xwv440, xwv460), LT) 29.49/12.09 new_lt9(xwv440, xwv460, dh) -> new_esEs10(new_compare1(xwv440, xwv460, dh), LT) 29.49/12.09 new_ltEs12(True, True) -> True 29.49/12.09 new_ltEs5(xwv4412, xwv4612, app(ty_Maybe, bba)) -> new_ltEs14(xwv4412, xwv4612, bba) 29.49/12.09 new_lt21(xwv440, xwv460, app(ty_Ratio, cce)) -> new_lt18(xwv440, xwv460, cce) 29.49/12.09 new_esEs9(xwv4411, xwv4611, app(app(ty_Either, hb), hc)) -> new_esEs4(xwv4411, xwv4611, hb, hc) 29.49/12.09 new_esEs23(xwv401, xwv3001, ty_Ordering) -> new_esEs10(xwv401, xwv3001) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), ty_Float) -> new_esEs17(xwv400, xwv3000) 29.49/12.09 new_esEs29(xwv401, xwv3001, ty_@0) -> new_esEs14(xwv401, xwv3001) 29.49/12.09 new_primMulInt(Neg(xwv4010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 29.49/12.09 new_primCmpInt(Pos(Zero), Pos(Succ(xwv4600))) -> new_primCmpNat0(Zero, Succ(xwv4600)) 29.49/12.09 new_esEs8(xwv4410, xwv4610, app(app(ty_Either, ff), fg)) -> new_esEs4(xwv4410, xwv4610, ff, fg) 29.49/12.09 new_esEs9(xwv4411, xwv4611, app(app(app(ty_@3, he), hf), hg)) -> new_esEs5(xwv4411, xwv4611, he, hf, hg) 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bhf, ty_@0) -> new_esEs14(xwv400, xwv3000) 29.49/12.09 new_esEs8(xwv4410, xwv4610, ty_Int) -> new_esEs11(xwv4410, xwv4610) 29.49/12.09 new_esEs19(Integer(xwv400), Integer(xwv3000)) -> new_primEqInt(xwv400, xwv3000) 29.49/12.09 new_lt21(xwv440, xwv460, ty_Bool) -> new_lt13(xwv440, xwv460) 29.49/12.09 new_lt5(xwv4411, xwv4611, app(ty_Ratio, bfg)) -> new_lt18(xwv4411, xwv4611, bfg) 29.49/12.09 new_ltEs18(xwv441, xwv461) -> new_fsEs(new_compare7(xwv441, xwv461)) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), app(ty_Maybe, cbe)) -> new_esEs6(xwv400, xwv3000, cbe) 29.49/12.09 new_esEs6(Nothing, Just(xwv3000), cba) -> False 29.49/12.09 new_esEs6(Just(xwv400), Nothing, cba) -> False 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bhf, app(ty_Maybe, cab)) -> new_esEs6(xwv400, xwv3000, cab) 29.49/12.09 new_esEs6(Nothing, Nothing, cba) -> True 29.49/12.09 new_esEs21(xwv400, xwv3000, ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.09 new_esEs8(xwv4410, xwv4610, ty_Integer) -> new_esEs19(xwv4410, xwv4610) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), ty_Ordering, bgf) -> new_esEs10(xwv400, xwv3000) 29.49/12.09 new_esEs10(LT, LT) -> True 29.49/12.09 new_compare27(xwv4400, xwv4600, ty_Char) -> new_compare28(xwv4400, xwv4600) 29.49/12.09 new_ltEs8(xwv441, xwv461) -> new_fsEs(new_compare9(xwv441, xwv461)) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), ty_Ordering) -> new_esEs10(xwv400, xwv3000) 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), cd, ty_Char) -> new_ltEs13(xwv4410, xwv4610) 29.49/12.09 new_lt5(xwv4411, xwv4611, app(app(ty_Either, hb), hc)) -> new_lt6(xwv4411, xwv4611, hb, hc) 29.49/12.09 new_lt20(xwv4410, xwv4610, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_lt10(xwv4410, xwv4610, bdb, bdc, bdd) 29.49/12.09 new_ltEs7(LT, LT) -> True 29.49/12.09 new_esEs8(xwv4410, xwv4610, ty_Char) -> new_esEs16(xwv4410, xwv4610) 29.49/12.09 new_ltEs5(xwv4412, xwv4612, ty_@0) -> new_ltEs11(xwv4412, xwv4612) 29.49/12.09 new_primMulInt(Pos(xwv4010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 29.49/12.09 new_primMulInt(Neg(xwv4010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), ty_Bool, bgf) -> new_esEs15(xwv400, xwv3000) 29.49/12.09 new_compare25(xwv440, xwv460, False) -> new_compare111(xwv440, xwv460, new_ltEs12(xwv440, xwv460)) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, app(ty_[], bec)) -> new_ltEs9(xwv4411, xwv4611, bec) 29.49/12.09 new_esEs28(xwv400, xwv3000, ty_Double) -> new_esEs13(xwv400, xwv3000) 29.49/12.09 new_lt4(xwv4410, xwv4610, app(ty_Maybe, gf)) -> new_lt15(xwv4410, xwv4610, gf) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Ordering, bd) -> new_ltEs7(xwv4410, xwv4610) 29.49/12.09 new_esEs22(xwv400, xwv3000, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs5(xwv400, xwv3000, ceh, cfa, cfb) 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bhf, app(app(ty_@2, caf), cag)) -> new_esEs7(xwv400, xwv3000, caf, cag) 29.49/12.09 new_compare27(xwv4400, xwv4600, app(app(ty_@2, eh), fa)) -> new_compare19(xwv4400, xwv4600, eh, fa) 29.49/12.09 new_lt4(xwv4410, xwv4610, ty_Bool) -> new_lt13(xwv4410, xwv4610) 29.49/12.09 new_compare27(xwv4400, xwv4600, ty_@0) -> new_compare11(xwv4400, xwv4600) 29.49/12.09 new_sr0(Integer(xwv46000), Integer(xwv44010)) -> Integer(new_primMulInt(xwv46000, xwv44010)) 29.49/12.09 new_ltEs5(xwv4412, xwv4612, ty_Double) -> new_ltEs10(xwv4412, xwv4612) 29.49/12.09 new_esEs29(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 29.49/12.09 new_esEs28(xwv400, xwv3000, ty_@0) -> new_esEs14(xwv400, xwv3000) 29.49/12.09 new_compare24(xwv440, xwv460, True, fb, fc, fd) -> EQ 29.49/12.09 new_lt4(xwv4410, xwv4610, ty_Int) -> new_lt8(xwv4410, xwv4610) 29.49/12.09 new_esEs22(xwv400, xwv3000, ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, app(app(ty_@2, beh), bfa)) -> new_ltEs15(xwv4411, xwv4611, beh, bfa) 29.49/12.09 new_compare27(xwv4400, xwv4600, ty_Double) -> new_compare18(xwv4400, xwv4600) 29.49/12.09 new_asAs(True, xwv68) -> xwv68 29.49/12.09 new_esEs21(xwv400, xwv3000, app(ty_Maybe, cdf)) -> new_esEs6(xwv400, xwv3000, cdf) 29.49/12.09 new_compare27(xwv4400, xwv4600, app(ty_Ratio, dag)) -> new_compare8(xwv4400, xwv4600, dag) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Int) -> new_ltEs8(xwv4410, xwv4610) 29.49/12.09 new_compare10(xwv440, xwv460, False, h, ba) -> GT 29.49/12.09 new_esEs27(xwv440, xwv460, ty_Integer) -> new_esEs19(xwv440, xwv460) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), ty_Bool) -> new_esEs15(xwv400, xwv3000) 29.49/12.09 new_compare113(xwv440, xwv460, True) -> LT 29.49/12.09 new_esEs24(xwv402, xwv3002, ty_@0) -> new_esEs14(xwv402, xwv3002) 29.49/12.09 new_primCompAux1(xwv4400, xwv4600, xwv144, dh) -> new_primCompAux0(xwv144, new_compare27(xwv4400, xwv4600, dh)) 29.49/12.09 new_esEs29(xwv401, xwv3001, ty_Float) -> new_esEs17(xwv401, xwv3001) 29.49/12.09 new_esEs23(xwv401, xwv3001, app(ty_Ratio, cgh)) -> new_esEs18(xwv401, xwv3001, cgh) 29.49/12.09 new_lt5(xwv4411, xwv4611, ty_Double) -> new_lt11(xwv4411, xwv4611) 29.49/12.09 new_esEs16(Char(xwv400), Char(xwv3000)) -> new_primEqNat0(xwv400, xwv3000) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), app(app(ty_Either, bgh), bha), bgf) -> new_esEs4(xwv400, xwv3000, bgh, bha) 29.49/12.09 new_compare29(Float(xwv4400, Pos(xwv44010)), Float(xwv4600, Pos(xwv46010))) -> new_compare9(new_sr(xwv4400, Pos(xwv46010)), new_sr(Pos(xwv44010), xwv4600)) 29.49/12.09 new_lt21(xwv440, xwv460, app(ty_[], dh)) -> new_lt9(xwv440, xwv460, dh) 29.49/12.09 new_esEs24(xwv402, xwv3002, ty_Double) -> new_esEs13(xwv402, xwv3002) 29.49/12.09 new_esEs23(xwv401, xwv3001, ty_Bool) -> new_esEs15(xwv401, xwv3001) 29.49/12.09 new_ltEs20(xwv441, xwv461, app(app(ty_@2, bdh), bch)) -> new_ltEs15(xwv441, xwv461, bdh, bch) 29.49/12.09 new_ltEs20(xwv441, xwv461, ty_Float) -> new_ltEs16(xwv441, xwv461) 29.49/12.09 new_esEs22(xwv400, xwv3000, ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.09 new_esEs24(xwv402, xwv3002, app(app(ty_@2, dac), dad)) -> new_esEs7(xwv402, xwv3002, dac, dad) 29.49/12.09 new_esEs9(xwv4411, xwv4611, ty_Int) -> new_esEs11(xwv4411, xwv4611) 29.49/12.09 new_esEs20(xwv4410, xwv4610, app(app(ty_Either, bcf), bcg)) -> new_esEs4(xwv4410, xwv4610, bcf, bcg) 29.49/12.09 new_esEs24(xwv402, xwv3002, ty_Float) -> new_esEs17(xwv402, xwv3002) 29.49/12.09 new_sr(xwv401, xwv3000) -> new_primMulInt(xwv401, xwv3000) 29.49/12.09 new_ltEs11(xwv441, xwv461) -> new_fsEs(new_compare11(xwv441, xwv461)) 29.49/12.09 new_esEs8(xwv4410, xwv4610, app(ty_Maybe, gf)) -> new_esEs6(xwv4410, xwv4610, gf) 29.49/12.09 new_compare27(xwv4400, xwv4600, ty_Ordering) -> new_compare14(xwv4400, xwv4600) 29.49/12.09 new_primMulNat0(Zero, Zero) -> Zero 29.49/12.09 new_ltEs5(xwv4412, xwv4612, app(ty_Ratio, bfh)) -> new_ltEs17(xwv4412, xwv4612, bfh) 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), cd, ty_Float) -> new_ltEs16(xwv4410, xwv4610) 29.49/12.09 new_compare111(xwv440, xwv460, False) -> GT 29.49/12.09 new_ltEs13(xwv441, xwv461) -> new_fsEs(new_compare28(xwv441, xwv461)) 29.49/12.09 new_ltEs12(True, False) -> False 29.49/12.09 new_esEs8(xwv4410, xwv4610, ty_Float) -> new_esEs17(xwv4410, xwv4610) 29.49/12.09 new_lt5(xwv4411, xwv4611, ty_Integer) -> new_lt19(xwv4411, xwv4611) 29.49/12.09 new_esEs23(xwv401, xwv3001, app(app(ty_@2, cha), chb)) -> new_esEs7(xwv401, xwv3001, cha, chb) 29.49/12.09 new_ltEs7(LT, EQ) -> True 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), app(ty_[], ccc)) -> new_esEs12(xwv400, xwv3000, ccc) 29.49/12.09 new_lt4(xwv4410, xwv4610, ty_@0) -> new_lt12(xwv4410, xwv4610) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), app(ty_Ratio, cbh)) -> new_esEs18(xwv400, xwv3000, cbh) 29.49/12.09 new_compare8(:%(xwv4400, xwv4401), :%(xwv4600, xwv4601), ty_Int) -> new_compare9(new_sr(xwv4400, xwv4601), new_sr(xwv4600, xwv4401)) 29.49/12.09 new_esEs23(xwv401, xwv3001, ty_Integer) -> new_esEs19(xwv401, xwv3001) 29.49/12.09 new_esEs27(xwv440, xwv460, app(ty_Ratio, cce)) -> new_esEs18(xwv440, xwv460, cce) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), app(ty_[], bhe), bgf) -> new_esEs12(xwv400, xwv3000, bhe) 29.49/12.09 new_esEs28(xwv400, xwv3000, app(ty_Ratio, dbh)) -> new_esEs18(xwv400, xwv3000, dbh) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.09 new_lt5(xwv4411, xwv4611, app(ty_[], hd)) -> new_lt9(xwv4411, xwv4611, hd) 29.49/12.09 new_primCmpInt(Pos(Succ(xwv4400)), Pos(Succ(xwv4600))) -> new_primCmpNat0(xwv4400, xwv4600) 29.49/12.09 new_fsEs(xwv135) -> new_not(new_esEs10(xwv135, GT)) 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), cd, ty_Int) -> new_ltEs8(xwv4410, xwv4610) 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bhf, app(app(ty_Either, cac), cad)) -> new_esEs4(xwv400, xwv3000, cac, cad) 29.49/12.09 new_esEs21(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 29.49/12.09 new_ltEs20(xwv441, xwv461, app(ty_[], dg)) -> new_ltEs9(xwv441, xwv461, dg) 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), cd, app(ty_[], cg)) -> new_ltEs9(xwv4410, xwv4610, cg) 29.49/12.09 new_compare18(Double(xwv4400, Pos(xwv44010)), Double(xwv4600, Neg(xwv46010))) -> new_compare9(new_sr(xwv4400, Pos(xwv46010)), new_sr(Neg(xwv44010), xwv4600)) 29.49/12.09 new_compare18(Double(xwv4400, Neg(xwv44010)), Double(xwv4600, Pos(xwv46010))) -> new_compare9(new_sr(xwv4400, Neg(xwv46010)), new_sr(Pos(xwv44010), xwv4600)) 29.49/12.09 new_lt17(xwv440, xwv460) -> new_esEs10(new_compare29(xwv440, xwv460), LT) 29.49/12.09 new_ltEs5(xwv4412, xwv4612, ty_Integer) -> new_ltEs18(xwv4412, xwv4612) 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bhf, app(ty_[], cah)) -> new_esEs12(xwv400, xwv3000, cah) 29.49/12.09 new_primCompAux0(xwv156, EQ) -> xwv156 29.49/12.09 new_esEs18(:%(xwv400, xwv401), :%(xwv3000, xwv3001), daf) -> new_asAs(new_esEs25(xwv400, xwv3000, daf), new_esEs26(xwv401, xwv3001, daf)) 29.49/12.09 new_lt5(xwv4411, xwv4611, ty_@0) -> new_lt12(xwv4411, xwv4611) 29.49/12.09 new_lt21(xwv440, xwv460, ty_Int) -> new_lt8(xwv440, xwv460) 29.49/12.09 new_compare15(xwv122, xwv123, xwv124, xwv125, False, xwv127, bga, bgb) -> new_compare13(xwv122, xwv123, xwv124, xwv125, xwv127, bga, bgb) 29.49/12.09 new_compare23(xwv440, xwv460, False, h, ba) -> new_compare10(xwv440, xwv460, new_ltEs6(xwv440, xwv460, h, ba), h, ba) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), app(app(ty_@2, cca), ccb)) -> new_esEs7(xwv400, xwv3000, cca, ccb) 29.49/12.09 new_esEs22(xwv400, xwv3000, app(ty_[], cga)) -> new_esEs12(xwv400, xwv3000, cga) 29.49/12.09 new_esEs24(xwv402, xwv3002, ty_Bool) -> new_esEs15(xwv402, xwv3002) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), ty_Integer, bgf) -> new_esEs19(xwv400, xwv3000) 29.49/12.09 new_ltEs17(xwv441, xwv461, ccd) -> new_fsEs(new_compare8(xwv441, xwv461, ccd)) 29.49/12.09 new_ltEs12(False, False) -> True 29.49/12.09 new_esEs29(xwv401, xwv3001, app(app(ty_Either, dch), dda)) -> new_esEs4(xwv401, xwv3001, dch, dda) 29.49/12.09 new_primEqInt(Neg(Succ(xwv4000)), Neg(Zero)) -> False 29.49/12.09 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 29.49/12.09 new_esEs27(xwv440, xwv460, app(ty_[], dh)) -> new_esEs12(xwv440, xwv460, dh) 29.49/12.09 new_lt4(xwv4410, xwv4610, app(ty_[], gb)) -> new_lt9(xwv4410, xwv4610, gb) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), app(app(ty_@2, bhc), bhd), bgf) -> new_esEs7(xwv400, xwv3000, bhc, bhd) 29.49/12.09 new_esEs20(xwv4410, xwv4610, ty_Char) -> new_esEs16(xwv4410, xwv4610) 29.49/12.09 new_lt5(xwv4411, xwv4611, ty_Char) -> new_lt14(xwv4411, xwv4611) 29.49/12.09 new_esEs20(xwv4410, xwv4610, ty_@0) -> new_esEs14(xwv4410, xwv4610) 29.49/12.09 new_primEqInt(Pos(Succ(xwv4000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 29.49/12.09 new_esEs20(xwv4410, xwv4610, ty_Double) -> new_esEs13(xwv4410, xwv4610) 29.49/12.09 new_ltEs20(xwv441, xwv461, app(app(ty_Either, cd), bd)) -> new_ltEs6(xwv441, xwv461, cd, bd) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), app(app(ty_@2, bcd), bce)) -> new_ltEs15(xwv4410, xwv4610, bcd, bce) 29.49/12.09 new_esEs28(xwv400, xwv3000, app(app(ty_@2, dca), dcb)) -> new_esEs7(xwv400, xwv3000, dca, dcb) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), app(ty_[], be), bd) -> new_ltEs9(xwv4410, xwv4610, be) 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bhf, ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.09 new_esEs20(xwv4410, xwv4610, app(ty_Maybe, bde)) -> new_esEs6(xwv4410, xwv4610, bde) 29.49/12.09 new_ltEs14(Just(xwv4410), Nothing, cch) -> False 29.49/12.09 new_ltEs14(Nothing, Nothing, cch) -> True 29.49/12.09 new_primEqInt(Pos(Succ(xwv4000)), Neg(xwv3000)) -> False 29.49/12.09 new_primEqInt(Neg(Succ(xwv4000)), Pos(xwv3000)) -> False 29.49/12.09 new_compare27(xwv4400, xwv4600, app(app(app(ty_@3, ed), ee), ef)) -> new_compare12(xwv4400, xwv4600, ed, ee, ef) 29.49/12.09 new_lt4(xwv4410, xwv4610, ty_Double) -> new_lt11(xwv4410, xwv4610) 29.49/12.09 new_lt21(xwv440, xwv460, app(ty_Maybe, bbd)) -> new_lt15(xwv440, xwv460, bbd) 29.49/12.09 new_esEs7(@2(xwv400, xwv401), @2(xwv3000, xwv3001), dah, dba) -> new_asAs(new_esEs28(xwv400, xwv3000, dah), new_esEs29(xwv401, xwv3001, dba)) 29.49/12.09 new_esEs5(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cee, cef, ceg) -> new_asAs(new_esEs22(xwv400, xwv3000, cee), new_asAs(new_esEs23(xwv401, xwv3001, cef), new_esEs24(xwv402, xwv3002, ceg))) 29.49/12.09 new_primCmpInt(Neg(Zero), Neg(Succ(xwv4600))) -> new_primCmpNat0(Succ(xwv4600), Zero) 29.49/12.09 new_lt11(xwv440, xwv460) -> new_esEs10(new_compare18(xwv440, xwv460), LT) 29.49/12.09 new_esEs20(xwv4410, xwv4610, ty_Float) -> new_esEs17(xwv4410, xwv4610) 29.49/12.09 new_ltEs5(xwv4412, xwv4612, ty_Bool) -> new_ltEs12(xwv4412, xwv4612) 29.49/12.09 new_lt4(xwv4410, xwv4610, ty_Integer) -> new_lt19(xwv4410, xwv4610) 29.49/12.09 new_esEs24(xwv402, xwv3002, app(app(ty_Either, chh), daa)) -> new_esEs4(xwv402, xwv3002, chh, daa) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, app(app(ty_Either, bea), beb)) -> new_ltEs6(xwv4411, xwv4611, bea, beb) 29.49/12.09 new_esEs12(:(xwv400, xwv401), :(xwv3000, xwv3001), cdb) -> new_asAs(new_esEs21(xwv400, xwv3000, cdb), new_esEs12(xwv401, xwv3001, cdb)) 29.49/12.09 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 29.49/12.09 new_esEs25(xwv400, xwv3000, ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), cd, ty_Double) -> new_ltEs10(xwv4410, xwv4610) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, app(app(app(ty_@3, bed), bee), bef)) -> new_ltEs4(xwv4411, xwv4611, bed, bee, bef) 29.49/12.09 new_compare27(xwv4400, xwv4600, ty_Int) -> new_compare9(xwv4400, xwv4600) 29.49/12.09 new_esEs22(xwv400, xwv3000, ty_Bool) -> new_esEs15(xwv400, xwv3000) 29.49/12.09 new_lt5(xwv4411, xwv4611, app(ty_Maybe, hh)) -> new_lt15(xwv4411, xwv4611, hh) 29.49/12.09 new_esEs10(LT, GT) -> False 29.49/12.09 new_esEs10(GT, LT) -> False 29.49/12.09 new_esEs8(xwv4410, xwv4610, ty_Double) -> new_esEs13(xwv4410, xwv4610) 29.49/12.09 new_ltEs5(xwv4412, xwv4612, ty_Ordering) -> new_ltEs7(xwv4412, xwv4612) 29.49/12.09 new_compare110(xwv440, xwv460, True, fb, fc, fd) -> LT 29.49/12.09 new_lt21(xwv440, xwv460, app(app(ty_Either, h), ba)) -> new_lt6(xwv440, xwv460, h, ba) 29.49/12.09 new_ltEs4(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, fh, ga) -> new_pePe(new_lt4(xwv4410, xwv4610, ha), new_asAs(new_esEs8(xwv4410, xwv4610, ha), new_pePe(new_lt5(xwv4411, xwv4611, fh), new_asAs(new_esEs9(xwv4411, xwv4611, fh), new_ltEs5(xwv4412, xwv4612, ga))))) 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), cd, ty_@0) -> new_ltEs11(xwv4410, xwv4610) 29.49/12.09 new_compare13(xwv122, xwv123, xwv124, xwv125, True, bga, bgb) -> LT 29.49/12.09 new_compare16(xwv440, xwv460, bbd) -> new_compare211(xwv440, xwv460, new_esEs6(xwv440, xwv460, bbd), bbd) 29.49/12.09 new_ltEs7(EQ, GT) -> True 29.49/12.09 new_esEs28(xwv400, xwv3000, ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.09 new_ltEs6(Right(xwv4410), Left(xwv4610), cd, bd) -> False 29.49/12.09 new_not(False) -> True 29.49/12.09 new_lt14(xwv440, xwv460) -> new_esEs10(new_compare28(xwv440, xwv460), LT) 29.49/12.09 new_esEs21(xwv400, xwv3000, app(ty_[], ced)) -> new_esEs12(xwv400, xwv3000, ced) 29.49/12.09 new_esEs28(xwv400, xwv3000, app(ty_[], dcc)) -> new_esEs12(xwv400, xwv3000, dcc) 29.49/12.09 new_lt4(xwv4410, xwv4610, app(app(ty_Either, ff), fg)) -> new_lt6(xwv4410, xwv4610, ff, fg) 29.49/12.09 new_esEs8(xwv4410, xwv4610, app(app(ty_@2, gg), gh)) -> new_esEs7(xwv4410, xwv4610, gg, gh) 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bhf, ty_Float) -> new_esEs17(xwv400, xwv3000) 29.49/12.09 new_esEs29(xwv401, xwv3001, ty_Ordering) -> new_esEs10(xwv401, xwv3001) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), app(ty_Ratio, ddf), bd) -> new_ltEs17(xwv4410, xwv4610, ddf) 29.49/12.09 new_esEs8(xwv4410, xwv4610, ty_@0) -> new_esEs14(xwv4410, xwv4610) 29.49/12.09 new_compare1([], :(xwv4600, xwv4601), dh) -> LT 29.49/12.09 new_esEs20(xwv4410, xwv4610, app(ty_Ratio, ccf)) -> new_esEs18(xwv4410, xwv4610, ccf) 29.49/12.09 new_compare28(Char(xwv4400), Char(xwv4600)) -> new_primCmpNat0(xwv4400, xwv4600) 29.49/12.09 new_ltEs7(EQ, EQ) -> True 29.49/12.09 new_ltEs19(xwv4411, xwv4611, ty_Ordering) -> new_ltEs7(xwv4411, xwv4611) 29.49/12.09 new_lt5(xwv4411, xwv4611, ty_Int) -> new_lt8(xwv4411, xwv4611) 29.49/12.09 new_ltEs7(GT, EQ) -> False 29.49/12.09 new_lt10(xwv440, xwv460, fb, fc, fd) -> new_esEs10(new_compare12(xwv440, xwv460, fb, fc, fd), LT) 29.49/12.09 new_esEs28(xwv400, xwv3000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs5(xwv400, xwv3000, dbb, dbc, dbd) 29.49/12.09 new_esEs20(xwv4410, xwv4610, ty_Bool) -> new_esEs15(xwv4410, xwv4610) 29.49/12.09 new_compare25(xwv440, xwv460, True) -> EQ 29.49/12.09 new_lt4(xwv4410, xwv4610, ty_Ordering) -> new_lt7(xwv4410, xwv4610) 29.49/12.09 new_esEs29(xwv401, xwv3001, app(app(ty_@2, ddc), ddd)) -> new_esEs7(xwv401, xwv3001, ddc, ddd) 29.49/12.09 new_esEs29(xwv401, xwv3001, app(ty_Ratio, ddb)) -> new_esEs18(xwv401, xwv3001, ddb) 29.49/12.09 new_esEs27(xwv440, xwv460, ty_Ordering) -> new_esEs10(xwv440, xwv460) 29.49/12.09 new_primPlusNat0(Succ(xwv1130), xwv300000) -> Succ(Succ(new_primPlusNat1(xwv1130, xwv300000))) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Integer, bd) -> new_ltEs18(xwv4410, xwv4610) 29.49/12.09 new_lt20(xwv4410, xwv4610, ty_Int) -> new_lt8(xwv4410, xwv4610) 29.49/12.09 new_esEs27(xwv440, xwv460, ty_Int) -> new_esEs11(xwv440, xwv460) 29.49/12.09 new_compare12(xwv440, xwv460, fb, fc, fd) -> new_compare24(xwv440, xwv460, new_esEs5(xwv440, xwv460, fb, fc, fd), fb, fc, fd) 29.49/12.09 new_ltEs20(xwv441, xwv461, app(ty_Ratio, ccd)) -> new_ltEs17(xwv441, xwv461, ccd) 29.49/12.09 new_ltEs20(xwv441, xwv461, ty_Ordering) -> new_ltEs7(xwv441, xwv461) 29.49/12.09 new_lt20(xwv4410, xwv4610, app(ty_Maybe, bde)) -> new_lt15(xwv4410, xwv4610, bde) 29.49/12.09 new_esEs29(xwv401, xwv3001, app(ty_Maybe, dcg)) -> new_esEs6(xwv401, xwv3001, dcg) 29.49/12.09 new_ltEs5(xwv4412, xwv4612, app(app(app(ty_@3, baf), bag), bah)) -> new_ltEs4(xwv4412, xwv4612, baf, bag, bah) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs4(xwv4410, xwv4610, bbh, bca, bcb) 29.49/12.09 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 29.49/12.09 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 29.49/12.09 new_esEs8(xwv4410, xwv4610, app(ty_Ratio, bff)) -> new_esEs18(xwv4410, xwv4610, bff) 29.49/12.09 new_primPlusNat1(Zero, Zero) -> Zero 29.49/12.09 new_esEs9(xwv4411, xwv4611, ty_Char) -> new_esEs16(xwv4411, xwv4611) 29.49/12.09 new_lt20(xwv4410, xwv4610, app(app(ty_@2, bdf), bdg)) -> new_lt16(xwv4410, xwv4610, bdf, bdg) 29.49/12.09 new_esEs28(xwv400, xwv3000, app(app(ty_Either, dbf), dbg)) -> new_esEs4(xwv400, xwv3000, dbf, dbg) 29.49/12.09 new_lt6(xwv440, xwv460, h, ba) -> new_esEs10(new_compare6(xwv440, xwv460, h, ba), LT) 29.49/12.09 new_ltEs7(EQ, LT) -> False 29.49/12.09 new_compare24(xwv440, xwv460, False, fb, fc, fd) -> new_compare110(xwv440, xwv460, new_ltEs4(xwv440, xwv460, fb, fc, fd), fb, fc, fd) 29.49/12.09 new_lt18(xwv440, xwv460, cce) -> new_esEs10(new_compare8(xwv440, xwv460, cce), LT) 29.49/12.09 new_compare27(xwv4400, xwv4600, app(ty_Maybe, eg)) -> new_compare16(xwv4400, xwv4600, eg) 29.49/12.09 new_esEs15(False, True) -> False 29.49/12.09 new_esEs15(True, False) -> False 29.49/12.09 new_esEs10(EQ, GT) -> False 29.49/12.09 new_esEs10(GT, EQ) -> False 29.49/12.09 new_esEs22(xwv400, xwv3000, ty_@0) -> new_esEs14(xwv400, xwv3000) 29.49/12.09 new_esEs28(xwv400, xwv3000, app(ty_Maybe, dbe)) -> new_esEs6(xwv400, xwv3000, dbe) 29.49/12.09 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 29.49/12.09 new_esEs23(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 29.49/12.09 new_lt21(xwv440, xwv460, app(app(ty_@2, bfb), bfc)) -> new_lt16(xwv440, xwv460, bfb, bfc) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), ty_@0, bgf) -> new_esEs14(xwv400, xwv3000) 29.49/12.09 new_lt21(xwv440, xwv460, ty_Integer) -> new_lt19(xwv440, xwv460) 29.49/12.09 new_primMulNat0(Succ(xwv40100), Succ(xwv300000)) -> new_primPlusNat0(new_primMulNat0(xwv40100, Succ(xwv300000)), xwv300000) 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), cd, app(app(ty_@2, de), df)) -> new_ltEs15(xwv4410, xwv4610, de, df) 29.49/12.09 new_ltEs5(xwv4412, xwv4612, ty_Float) -> new_ltEs16(xwv4412, xwv4612) 29.49/12.09 new_esEs25(xwv400, xwv3000, ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), cd, ty_Bool) -> new_ltEs12(xwv4410, xwv4610) 29.49/12.09 new_esEs22(xwv400, xwv3000, ty_Double) -> new_esEs13(xwv400, xwv3000) 29.49/12.09 new_esEs22(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 29.49/12.09 new_ltEs7(GT, LT) -> False 29.49/12.09 new_ltEs5(xwv4412, xwv4612, ty_Int) -> new_ltEs8(xwv4412, xwv4612) 29.49/12.09 new_primCmpNat0(Succ(xwv44000), Succ(xwv46000)) -> new_primCmpNat0(xwv44000, xwv46000) 29.49/12.09 new_esEs27(xwv440, xwv460, ty_Float) -> new_esEs17(xwv440, xwv460) 29.49/12.09 new_lt5(xwv4411, xwv4611, app(app(ty_@2, baa), bab)) -> new_lt16(xwv4411, xwv4611, baa, bab) 29.49/12.09 new_esEs21(xwv400, xwv3000, app(app(ty_@2, ceb), cec)) -> new_esEs7(xwv400, xwv3000, ceb, cec) 29.49/12.09 new_esEs24(xwv402, xwv3002, ty_Char) -> new_esEs16(xwv402, xwv3002) 29.49/12.09 new_esEs8(xwv4410, xwv4610, ty_Bool) -> new_esEs15(xwv4410, xwv4610) 29.49/12.09 new_esEs27(xwv440, xwv460, app(ty_Maybe, bbd)) -> new_esEs6(xwv440, xwv460, bbd) 29.49/12.09 new_compare27(xwv4400, xwv4600, app(app(ty_Either, ea), eb)) -> new_compare6(xwv4400, xwv4600, ea, eb) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, ty_Float) -> new_ltEs16(xwv4411, xwv4611) 29.49/12.09 new_esEs12([], [], cdb) -> True 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), ty_Double, bgf) -> new_esEs13(xwv400, xwv3000) 29.49/12.09 new_ltEs20(xwv441, xwv461, ty_Int) -> new_ltEs8(xwv441, xwv461) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), app(app(app(ty_@3, bgc), bgd), bge), bgf) -> new_esEs5(xwv400, xwv3000, bgc, bgd, bge) 29.49/12.09 new_ltEs7(LT, GT) -> True 29.49/12.09 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 29.49/12.09 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 29.49/12.09 new_esEs23(xwv401, xwv3001, ty_Double) -> new_esEs13(xwv401, xwv3001) 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bhf, ty_Ordering) -> new_esEs10(xwv400, xwv3000) 29.49/12.09 new_lt21(xwv440, xwv460, ty_Ordering) -> new_lt7(xwv440, xwv460) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), ty_Double) -> new_esEs13(xwv400, xwv3000) 29.49/12.09 new_compare27(xwv4400, xwv4600, ty_Bool) -> new_compare17(xwv4400, xwv4600) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), ty_Char) -> new_esEs16(xwv400, xwv3000) 29.49/12.09 new_primEqNat0(Zero, Zero) -> True 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), app(ty_Maybe, bgg), bgf) -> new_esEs6(xwv400, xwv3000, bgg) 29.49/12.09 new_ltEs16(xwv441, xwv461) -> new_fsEs(new_compare29(xwv441, xwv461)) 29.49/12.09 new_esEs9(xwv4411, xwv4611, ty_Bool) -> new_esEs15(xwv4411, xwv4611) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), app(app(app(ty_@3, bf), bg), bh), bd) -> new_ltEs4(xwv4410, xwv4610, bf, bg, bh) 29.49/12.09 new_esEs28(xwv400, xwv3000, ty_Ordering) -> new_esEs10(xwv400, xwv3000) 29.49/12.09 new_compare14(xwv440, xwv460) -> new_compare210(xwv440, xwv460, new_esEs10(xwv440, xwv460)) 29.49/12.09 new_primCmpInt(Neg(Succ(xwv4400)), Neg(Succ(xwv4600))) -> new_primCmpNat0(xwv4600, xwv4400) 29.49/12.09 new_compare27(xwv4400, xwv4600, ty_Float) -> new_compare29(xwv4400, xwv4600) 29.49/12.09 new_lt5(xwv4411, xwv4611, ty_Ordering) -> new_lt7(xwv4411, xwv4611) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Float) -> new_ltEs16(xwv4410, xwv4610) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), ty_@0) -> new_esEs14(xwv400, xwv3000) 29.49/12.09 new_compare29(Float(xwv4400, Neg(xwv44010)), Float(xwv4600, Neg(xwv46010))) -> new_compare9(new_sr(xwv4400, Neg(xwv46010)), new_sr(Neg(xwv44010), xwv4600)) 29.49/12.09 new_asAs(False, xwv68) -> False 29.49/12.09 new_ltEs10(xwv441, xwv461) -> new_fsEs(new_compare18(xwv441, xwv461)) 29.49/12.09 new_esEs26(xwv401, xwv3001, ty_Int) -> new_esEs11(xwv401, xwv3001) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, ty_Int) -> new_ltEs8(xwv4411, xwv4611) 29.49/12.09 new_esEs23(xwv401, xwv3001, ty_@0) -> new_esEs14(xwv401, xwv3001) 29.49/12.09 new_esEs27(xwv440, xwv460, app(app(ty_Either, h), ba)) -> new_esEs4(xwv440, xwv460, h, ba) 29.49/12.09 new_ltEs6(Left(xwv4410), Right(xwv4610), cd, bd) -> True 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), ty_Char, bgf) -> new_esEs16(xwv400, xwv3000) 29.49/12.09 new_esEs26(xwv401, xwv3001, ty_Integer) -> new_esEs19(xwv401, xwv3001) 29.49/12.09 new_ltEs20(xwv441, xwv461, app(app(app(ty_@3, ha), fh), ga)) -> new_ltEs4(xwv441, xwv461, ha, fh, ga) 29.49/12.09 new_compare112(xwv440, xwv460, False, bbd) -> GT 29.49/12.09 new_esEs28(xwv400, xwv3000, ty_Float) -> new_esEs17(xwv400, xwv3000) 29.49/12.09 new_esEs11(xwv40, xwv300) -> new_primEqInt(xwv40, xwv300) 29.49/12.09 new_compare6(xwv440, xwv460, h, ba) -> new_compare23(xwv440, xwv460, new_esEs4(xwv440, xwv460, h, ba), h, ba) 29.49/12.09 new_esEs27(xwv440, xwv460, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs5(xwv440, xwv460, fb, fc, fd) 29.49/12.09 new_esEs20(xwv4410, xwv4610, app(app(ty_@2, bdf), bdg)) -> new_esEs7(xwv4410, xwv4610, bdf, bdg) 29.49/12.09 29.49/12.09 The set Q consists of the following terms: 29.49/12.09 29.49/12.09 new_esEs29(x0, x1, ty_Float) 29.49/12.09 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.49/12.09 new_esEs8(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_esEs22(x0, x1, ty_Float) 29.49/12.09 new_esEs9(x0, x1, ty_@0) 29.49/12.09 new_ltEs20(x0, x1, ty_Integer) 29.49/12.09 new_esEs21(x0, x1, ty_Ordering) 29.49/12.09 new_compare29(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 29.49/12.09 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_ltEs14(Just(x0), Just(x1), ty_Bool) 29.49/12.09 new_compare29(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 29.49/12.09 new_compare29(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 29.49/12.09 new_compare29(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 29.49/12.09 new_primCmpInt(Pos(Succ(x0)), Pos(Zero)) 29.49/12.09 new_ltEs14(Just(x0), Just(x1), ty_@0) 29.49/12.09 new_compare25(x0, x1, True) 29.49/12.09 new_compare27(x0, x1, ty_Integer) 29.49/12.09 new_esEs21(x0, x1, ty_Double) 29.49/12.09 new_esEs6(Just(x0), Just(x1), ty_Double) 29.49/12.09 new_esEs6(Just(x0), Just(x1), ty_Ordering) 29.49/12.09 new_lt21(x0, x1, ty_Int) 29.49/12.09 new_primCmpInt(Neg(Succ(x0)), Neg(Zero)) 29.49/12.09 new_esEs9(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_compare14(x0, x1) 29.49/12.09 new_compare11(@0, @0) 29.49/12.09 new_compare19(x0, x1, x2, x3) 29.49/12.09 new_primPlusNat1(Zero, Zero) 29.49/12.09 new_sr0(Integer(x0), Integer(x1)) 29.49/12.09 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 29.49/12.09 new_esEs20(x0, x1, app(ty_[], x2)) 29.49/12.09 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.49/12.09 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.49/12.09 new_asAs(False, x0) 29.49/12.09 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_lt21(x0, x1, ty_Char) 29.49/12.09 new_esEs6(Nothing, Just(x0), x1) 29.49/12.09 new_esEs8(x0, x1, ty_Char) 29.49/12.09 new_esEs10(EQ, EQ) 29.49/12.09 new_compare9(x0, x1) 29.49/12.09 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_esEs6(Just(x0), Just(x1), ty_Int) 29.49/12.09 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_esEs23(x0, x1, app(ty_[], x2)) 29.49/12.09 new_lt21(x0, x1, ty_Ordering) 29.49/12.09 new_sr(x0, x1) 29.49/12.09 new_esEs8(x0, x1, ty_@0) 29.49/12.09 new_ltEs11(x0, x1) 29.49/12.09 new_primEqInt(Pos(Zero), Pos(Zero)) 29.49/12.09 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 29.49/12.09 new_esEs16(Char(x0), Char(x1)) 29.49/12.09 new_esEs28(x0, x1, ty_Float) 29.49/12.09 new_compare27(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 29.49/12.09 new_primPlusNat1(Zero, Succ(x0)) 29.49/12.09 new_esEs9(x0, x1, ty_Integer) 29.49/12.09 new_esEs22(x0, x1, app(ty_[], x2)) 29.49/12.09 new_esEs20(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_ltEs20(x0, x1, ty_@0) 29.49/12.09 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 29.49/12.09 new_primEqInt(Neg(Zero), Neg(Zero)) 29.49/12.09 new_esEs20(x0, x1, ty_Integer) 29.49/12.09 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_esEs11(x0, x1) 29.49/12.09 new_compare110(x0, x1, False, x2, x3, x4) 29.49/12.09 new_compare23(x0, x1, True, x2, x3) 29.49/12.09 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.49/12.09 new_compare27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_esEs9(x0, x1, ty_Char) 29.49/12.09 new_lt4(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_compare23(x0, x1, False, x2, x3) 29.49/12.09 new_primCompAux0(x0, EQ) 29.49/12.09 new_esEs24(x0, x1, ty_Float) 29.49/12.09 new_esEs20(x0, x1, ty_@0) 29.49/12.09 new_compare110(x0, x1, True, x2, x3, x4) 29.49/12.09 new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 29.49/12.09 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 29.49/12.09 new_ltEs14(Just(x0), Just(x1), ty_Char) 29.49/12.09 new_esEs6(Just(x0), Just(x1), ty_Char) 29.49/12.09 new_ltEs13(x0, x1) 29.49/12.09 new_compare27(x0, x1, ty_Bool) 29.49/12.09 new_lt18(x0, x1, x2) 29.49/12.09 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.49/12.09 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_esEs29(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_ltEs20(x0, x1, ty_Float) 29.49/12.09 new_lt19(x0, x1) 29.49/12.09 new_esEs28(x0, x1, ty_Bool) 29.49/12.09 new_esEs29(x0, x1, ty_Integer) 29.49/12.09 new_ltEs14(Just(x0), Just(x1), ty_Int) 29.49/12.09 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 29.49/12.09 new_lt21(x0, x1, ty_Double) 29.49/12.09 new_primEqInt(Pos(Zero), Neg(Zero)) 29.49/12.09 new_primEqInt(Neg(Zero), Pos(Zero)) 29.49/12.09 new_lt5(x0, x1, ty_Float) 29.49/12.09 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 29.49/12.09 new_lt6(x0, x1, x2, x3) 29.49/12.09 new_primCompAux0(x0, LT) 29.49/12.09 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_ltEs5(x0, x1, ty_Integer) 29.49/12.09 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.49/12.09 new_esEs28(x0, x1, ty_@0) 29.49/12.09 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_lt21(x0, x1, ty_Bool) 29.49/12.09 new_ltEs7(EQ, EQ) 29.49/12.09 new_ltEs17(x0, x1, x2) 29.49/12.09 new_compare12(x0, x1, x2, x3, x4) 29.49/12.09 new_compare26(@2(x0, x1), @2(x2, x3), False, x4, x5) 29.49/12.09 new_esEs15(False, False) 29.49/12.09 new_compare27(x0, x1, app(ty_[], x2)) 29.49/12.09 new_esEs9(x0, x1, ty_Bool) 29.49/12.09 new_esEs25(x0, x1, ty_Int) 29.49/12.09 new_lt13(x0, x1) 29.49/12.09 new_lt20(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_esEs29(x0, x1, app(ty_[], x2)) 29.49/12.09 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_esEs20(x0, x1, ty_Bool) 29.49/12.09 new_esEs21(x0, x1, ty_Bool) 29.49/12.09 new_primMulInt(Pos(x0), Pos(x1)) 29.49/12.09 new_ltEs14(Just(x0), Just(x1), ty_Double) 29.49/12.09 new_esEs23(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_esEs20(x0, x1, ty_Char) 29.49/12.09 new_esEs9(x0, x1, ty_Float) 29.49/12.09 new_esEs6(Just(x0), Just(x1), ty_Bool) 29.49/12.09 new_asAs(True, x0) 29.49/12.09 new_esEs22(x0, x1, ty_Bool) 29.49/12.09 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_primMulInt(Pos(x0), Neg(x1)) 29.49/12.09 new_primMulInt(Neg(x0), Pos(x1)) 29.49/12.09 new_compare26(x0, x1, True, x2, x3) 29.49/12.09 new_esEs9(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_esEs23(x0, x1, ty_Integer) 29.49/12.09 new_lt21(x0, x1, ty_Integer) 29.49/12.09 new_ltEs20(x0, x1, ty_Char) 29.49/12.09 new_esEs12(:(x0, x1), :(x2, x3), x4) 29.49/12.09 new_esEs6(Just(x0), Just(x1), ty_@0) 29.49/12.09 new_lt4(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_ltEs19(x0, x1, ty_Float) 29.49/12.09 new_lt20(x0, x1, ty_Float) 29.49/12.09 new_esEs20(x0, x1, ty_Int) 29.49/12.09 new_esEs28(x0, x1, app(ty_[], x2)) 29.49/12.09 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_esEs29(x0, x1, ty_Bool) 29.49/12.09 new_ltEs9(x0, x1, x2) 29.49/12.09 new_esEs22(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_lt12(x0, x1) 29.49/12.09 new_esEs23(x0, x1, ty_Bool) 29.49/12.09 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 29.49/12.09 new_lt4(x0, x1, app(ty_[], x2)) 29.49/12.09 new_ltEs20(x0, x1, ty_Ordering) 29.49/12.09 new_lt11(x0, x1) 29.49/12.09 new_esEs9(x0, x1, ty_Int) 29.49/12.09 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 29.49/12.09 new_esEs8(x0, x1, ty_Float) 29.49/12.09 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 29.49/12.09 new_esEs8(x0, x1, ty_Integer) 29.49/12.09 new_ltEs7(GT, LT) 29.49/12.09 new_ltEs7(LT, GT) 29.49/12.09 new_compare111(x0, x1, False) 29.49/12.09 new_esEs20(x0, x1, ty_Float) 29.49/12.09 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 29.49/12.09 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.49/12.09 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_compare27(x0, x1, ty_Int) 29.49/12.09 new_esEs8(x0, x1, ty_Ordering) 29.49/12.09 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.49/12.09 new_esEs24(x0, x1, app(ty_[], x2)) 29.49/12.09 new_ltEs19(x0, x1, ty_Int) 29.49/12.09 new_esEs17(Float(x0, x1), Float(x2, x3)) 29.49/12.09 new_esEs6(Just(x0), Just(x1), ty_Integer) 29.49/12.09 new_compare211(x0, x1, True, x2) 29.49/12.09 new_lt20(x0, x1, app(ty_[], x2)) 29.49/12.09 new_compare27(x0, x1, ty_Char) 29.49/12.09 new_lt21(x0, x1, app(ty_[], x2)) 29.49/12.09 new_esEs13(Double(x0, x1), Double(x2, x3)) 29.49/12.09 new_compare25(x0, x1, False) 29.49/12.09 new_esEs21(x0, x1, ty_Integer) 29.49/12.09 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 29.49/12.09 new_ltEs20(x0, x1, ty_Int) 29.49/12.09 new_lt21(x0, x1, ty_@0) 29.49/12.09 new_primCmpInt(Neg(Zero), Neg(Zero)) 29.49/12.09 new_lt17(x0, x1) 29.49/12.09 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_lt4(x0, x1, ty_@0) 29.49/12.09 new_lt4(x0, x1, ty_Double) 29.49/12.09 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.49/12.09 new_esEs29(x0, x1, ty_Char) 29.49/12.09 new_fsEs(x0) 29.49/12.09 new_ltEs14(Nothing, Just(x0), x1) 29.49/12.09 new_esEs27(x0, x1, ty_Double) 29.49/12.09 new_lt5(x0, x1, ty_Integer) 29.49/12.09 new_primCmpInt(Pos(Zero), Neg(Zero)) 29.49/12.09 new_primCmpInt(Neg(Zero), Pos(Zero)) 29.49/12.09 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_esEs21(x0, x1, ty_Char) 29.49/12.09 new_esEs8(x0, x1, ty_Int) 29.49/12.09 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 29.49/12.09 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.49/12.09 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 29.49/12.09 new_esEs28(x0, x1, ty_Ordering) 29.49/12.09 new_esEs28(x0, x1, ty_Integer) 29.49/12.09 new_ltEs18(x0, x1) 29.49/12.09 new_esEs22(x0, x1, ty_Integer) 29.49/12.09 new_esEs15(True, True) 29.49/12.09 new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.49/12.09 new_esEs10(LT, GT) 29.49/12.09 new_esEs10(GT, LT) 29.49/12.09 new_compare27(x0, x1, ty_Float) 29.49/12.09 new_ltEs5(x0, x1, ty_Double) 29.49/12.09 new_lt9(x0, x1, x2) 29.49/12.09 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.49/12.09 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.49/12.09 new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.49/12.09 new_lt5(x0, x1, ty_Ordering) 29.49/12.09 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_compare210(x0, x1, False) 29.49/12.09 new_lt16(x0, x1, x2, x3) 29.49/12.09 new_esEs12([], [], x0) 29.49/12.09 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 29.49/12.09 new_esEs21(x0, x1, ty_Int) 29.49/12.09 new_compare24(x0, x1, True, x2, x3, x4) 29.49/12.09 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 29.49/12.09 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 29.49/12.09 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 29.49/12.09 new_primPlusNat1(Succ(x0), Zero) 29.49/12.09 new_esEs29(x0, x1, ty_Int) 29.49/12.09 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_ltEs14(Just(x0), Nothing, x1) 29.49/12.09 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_ltEs5(x0, x1, ty_@0) 29.49/12.09 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) 29.49/12.09 new_ltEs20(x0, x1, ty_Bool) 29.49/12.09 new_esEs23(x0, x1, ty_Float) 29.49/12.09 new_ltEs20(x0, x1, app(ty_[], x2)) 29.49/12.09 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 29.49/12.09 new_esEs27(x0, x1, app(ty_[], x2)) 29.49/12.09 new_lt21(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_esEs27(x0, x1, ty_@0) 29.49/12.09 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.49/12.09 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_esEs10(EQ, GT) 29.49/12.09 new_esEs10(GT, EQ) 29.49/12.09 new_esEs8(x0, x1, ty_Bool) 29.49/12.09 new_lt15(x0, x1, x2) 29.49/12.09 new_esEs22(x0, x1, ty_Ordering) 29.49/12.09 new_ltEs6(Right(x0), Left(x1), x2, x3) 29.49/12.09 new_ltEs6(Left(x0), Right(x1), x2, x3) 29.49/12.09 new_compare13(x0, x1, x2, x3, False, x4, x5) 29.49/12.09 new_esEs23(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_esEs23(x0, x1, ty_Int) 29.49/12.09 new_lt4(x0, x1, ty_Char) 29.49/12.09 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_compare27(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_esEs22(x0, x1, ty_Double) 29.49/12.09 new_esEs29(x0, x1, ty_Double) 29.49/12.09 new_esEs21(x0, x1, ty_Float) 29.49/12.09 new_compare17(x0, x1) 29.49/12.09 new_lt20(x0, x1, ty_@0) 29.49/12.09 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_esEs19(Integer(x0), Integer(x1)) 29.49/12.09 new_ltEs19(x0, x1, ty_@0) 29.49/12.09 new_esEs29(x0, x1, ty_Ordering) 29.49/12.09 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 29.49/12.09 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.49/12.09 new_lt20(x0, x1, ty_Bool) 29.49/12.09 new_primCmpInt(Neg(Succ(x0)), Neg(Succ(x1))) 29.49/12.09 new_primMulNat0(Zero, Zero) 29.49/12.09 new_compare10(x0, x1, True, x2, x3) 29.49/12.09 new_esEs24(x0, x1, ty_Char) 29.49/12.09 new_esEs27(x0, x1, ty_Char) 29.49/12.09 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 29.49/12.09 new_ltEs19(x0, x1, ty_Bool) 29.49/12.09 new_primEqNat0(Succ(x0), Zero) 29.49/12.09 new_lt5(x0, x1, ty_@0) 29.49/12.09 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.49/12.09 new_primEqNat0(Succ(x0), Succ(x1)) 29.49/12.09 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.49/12.09 new_lt4(x0, x1, ty_Int) 29.49/12.09 new_esEs28(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_esEs23(x0, x1, ty_Char) 29.49/12.09 new_ltEs15(@2(x0, x1), @2(x2, x3), x4, x5) 29.49/12.09 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 29.49/12.09 new_compare28(Char(x0), Char(x1)) 29.49/12.09 new_ltEs7(LT, LT) 29.49/12.09 new_ltEs5(x0, x1, app(ty_[], x2)) 29.49/12.09 new_ltEs10(x0, x1) 29.49/12.09 new_compare112(x0, x1, True, x2) 29.49/12.09 new_compare113(x0, x1, True) 29.49/12.09 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_primCmpNat0(Succ(x0), Succ(x1)) 29.49/12.09 new_compare15(x0, x1, x2, x3, True, x4, x5, x6) 29.49/12.09 new_lt5(x0, x1, ty_Bool) 29.49/12.09 new_lt21(x0, x1, ty_Float) 29.49/12.09 new_compare27(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_ltEs19(x0, x1, ty_Char) 29.49/12.09 new_esEs21(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.49/12.09 new_lt5(x0, x1, ty_Char) 29.49/12.09 new_esEs27(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_esEs24(x0, x1, ty_Bool) 29.49/12.09 new_esEs6(Just(x0), Just(x1), ty_Float) 29.49/12.09 new_compare1(:(x0, x1), :(x2, x3), x4) 29.49/12.09 new_pePe(False, x0) 29.49/12.09 new_esEs10(LT, LT) 29.49/12.09 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 29.49/12.09 new_esEs27(x0, x1, ty_Bool) 29.49/12.09 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_primEqNat0(Zero, Succ(x0)) 29.49/12.09 new_ltEs19(x0, x1, ty_Integer) 29.49/12.09 new_compare16(x0, x1, x2) 29.49/12.09 new_not(True) 29.49/12.09 new_lt20(x0, x1, ty_Char) 29.49/12.09 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.49/12.09 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 29.49/12.09 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 29.49/12.09 new_esEs22(x0, x1, ty_Char) 29.49/12.09 new_lt4(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_lt5(x0, x1, ty_Int) 29.49/12.09 new_esEs28(x0, x1, ty_Int) 29.49/12.09 new_ltEs12(True, True) 29.49/12.09 new_ltEs5(x0, x1, ty_Ordering) 29.49/12.09 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.49/12.09 new_lt4(x0, x1, ty_Bool) 29.49/12.09 new_esEs20(x0, x1, ty_Double) 29.49/12.09 new_esEs21(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_esEs27(x0, x1, ty_Ordering) 29.49/12.09 new_ltEs16(x0, x1) 29.49/12.09 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 29.49/12.09 new_lt4(x0, x1, ty_Ordering) 29.49/12.09 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_compare6(x0, x1, x2, x3) 29.49/12.09 new_lt20(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_esEs24(x0, x1, ty_Double) 29.49/12.09 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 29.49/12.09 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.49/12.09 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 29.49/12.09 new_lt5(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 29.49/12.09 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 29.49/12.09 new_esEs24(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_ltEs12(False, True) 29.49/12.09 new_ltEs12(True, False) 29.49/12.09 new_esEs20(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_compare15(x0, x1, x2, x3, False, x4, x5, x6) 29.49/12.09 new_primMulNat0(Zero, Succ(x0)) 29.49/12.09 new_esEs12(:(x0, x1), [], x2) 29.49/12.09 new_esEs28(x0, x1, ty_Char) 29.49/12.09 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_esEs28(x0, x1, ty_Double) 29.49/12.09 new_esEs22(x0, x1, ty_Int) 29.49/12.09 new_esEs24(x0, x1, ty_Int) 29.49/12.09 new_compare27(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_compare111(x0, x1, True) 29.49/12.09 new_primPlusNat0(Succ(x0), x1) 29.49/12.09 new_ltEs14(Nothing, Nothing, x0) 29.49/12.09 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.49/12.09 new_compare10(x0, x1, False, x2, x3) 29.49/12.09 new_lt20(x0, x1, ty_Int) 29.49/12.09 new_esEs8(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_primCompAux0(x0, GT) 29.49/12.09 new_lt4(x0, x1, ty_Integer) 29.49/12.09 new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.49/12.09 new_ltEs7(EQ, GT) 29.49/12.09 new_ltEs7(GT, EQ) 29.49/12.09 new_pePe(True, x0) 29.49/12.09 new_ltEs8(x0, x1) 29.49/12.09 new_lt20(x0, x1, ty_Double) 29.49/12.09 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_esEs24(x0, x1, ty_@0) 29.49/12.09 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.49/12.09 new_esEs22(x0, x1, ty_@0) 29.49/12.09 new_esEs23(x0, x1, ty_Ordering) 29.49/12.09 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 29.49/12.09 new_esEs27(x0, x1, ty_Integer) 29.49/12.09 new_primCmpInt(Pos(Succ(x0)), Pos(Succ(x1))) 29.49/12.09 new_primCmpInt(Pos(Zero), Pos(Zero)) 29.49/12.09 new_esEs6(Nothing, Nothing, x0) 29.49/12.09 new_lt10(x0, x1, x2, x3, x4) 29.49/12.09 new_ltEs7(GT, GT) 29.49/12.09 new_ltEs19(x0, x1, app(ty_[], x2)) 29.49/12.09 new_ltEs14(Just(x0), Just(x1), ty_Float) 29.49/12.09 new_esEs10(GT, GT) 29.49/12.09 new_compare13(x0, x1, x2, x3, True, x4, x5) 29.49/12.09 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.49/12.09 new_ltEs7(LT, EQ) 29.49/12.09 new_ltEs7(EQ, LT) 29.49/12.09 new_esEs9(x0, x1, ty_Double) 29.49/12.09 new_esEs14(@0, @0) 29.49/12.09 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_esEs29(x0, x1, ty_@0) 29.49/12.09 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 29.49/12.09 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.49/12.09 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 29.49/12.09 new_esEs10(LT, EQ) 29.49/12.09 new_esEs10(EQ, LT) 29.49/12.09 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.49/12.09 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 29.49/12.09 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 29.49/12.09 new_ltEs14(Just(x0), Just(x1), ty_Ordering) 29.49/12.09 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_primMulInt(Neg(x0), Neg(x1)) 29.49/12.09 new_esEs21(x0, x1, ty_@0) 29.49/12.09 new_lt5(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 29.49/12.09 new_lt5(x0, x1, app(ty_[], x2)) 29.49/12.09 new_esEs26(x0, x1, ty_Integer) 29.49/12.09 new_ltEs5(x0, x1, ty_Char) 29.49/12.09 new_lt7(x0, x1) 29.49/12.09 new_lt21(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 29.49/12.09 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 29.49/12.09 new_primMulNat0(Succ(x0), Succ(x1)) 29.49/12.09 new_compare112(x0, x1, False, x2) 29.49/12.09 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 29.49/12.09 new_lt5(x0, x1, ty_Double) 29.49/12.09 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 29.49/12.09 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 29.49/12.09 new_esEs20(x0, x1, ty_Ordering) 29.49/12.09 new_compare27(x0, x1, ty_Ordering) 29.49/12.09 new_esEs9(x0, x1, app(ty_[], x2)) 29.49/12.09 new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.49/12.09 new_ltEs19(x0, x1, ty_Ordering) 29.49/12.09 new_esEs27(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_esEs9(x0, x1, ty_Ordering) 29.49/12.09 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_esEs24(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_ltEs19(x0, x1, ty_Double) 29.49/12.09 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.49/12.09 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 29.49/12.09 new_primCmpNat0(Zero, Succ(x0)) 29.49/12.09 new_esEs22(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_esEs15(False, True) 29.49/12.09 new_esEs15(True, False) 29.49/12.09 new_compare27(x0, x1, ty_Double) 29.49/12.09 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 29.49/12.09 new_primPlusNat1(Succ(x0), Succ(x1)) 29.49/12.09 new_primPlusNat0(Zero, x0) 29.49/12.09 new_ltEs5(x0, x1, ty_Bool) 29.49/12.09 new_compare24(x0, x1, False, x2, x3, x4) 29.49/12.09 new_compare1(:(x0, x1), [], x2) 29.49/12.09 new_esEs24(x0, x1, ty_Ordering) 29.49/12.09 new_primEqNat0(Zero, Zero) 29.49/12.09 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 29.49/12.09 new_compare27(x0, x1, ty_@0) 29.49/12.09 new_not(False) 29.49/12.09 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_esEs8(x0, x1, app(ty_[], x2)) 29.49/12.09 new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.49/12.09 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 29.49/12.09 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_primCompAux1(x0, x1, x2, x3) 29.49/12.09 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 29.49/12.09 new_ltEs5(x0, x1, ty_Int) 29.49/12.09 new_compare210(x0, x1, True) 29.49/12.09 new_ltEs12(False, False) 29.49/12.09 new_esEs6(Just(x0), Nothing, x1) 29.49/12.09 new_primMulNat0(Succ(x0), Zero) 29.49/12.09 new_compare1([], :(x0, x1), x2) 29.49/12.09 new_ltEs20(x0, x1, ty_Double) 29.49/12.09 new_lt20(x0, x1, ty_Integer) 29.49/12.09 new_compare7(Integer(x0), Integer(x1)) 29.49/12.09 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 29.49/12.09 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 29.49/12.09 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_esEs8(x0, x1, ty_Double) 29.49/12.09 new_esEs23(x0, x1, ty_Double) 29.49/12.09 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_lt14(x0, x1) 29.49/12.09 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.49/12.09 new_primCmpNat0(Succ(x0), Zero) 29.49/12.09 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 29.49/12.09 new_esEs21(x0, x1, app(ty_[], x2)) 29.49/12.09 new_esEs25(x0, x1, ty_Integer) 29.49/12.09 new_esEs24(x0, x1, ty_Integer) 29.49/12.09 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.09 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 29.49/12.09 new_lt8(x0, x1) 29.49/12.09 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 29.49/12.09 new_compare1([], [], x0) 29.49/12.09 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_compare113(x0, x1, False) 29.49/12.09 new_esEs27(x0, x1, ty_Int) 29.49/12.09 new_esEs29(x0, x1, app(ty_Ratio, x2)) 29.49/12.09 new_lt20(x0, x1, ty_Ordering) 29.49/12.09 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 29.49/12.09 new_esEs26(x0, x1, ty_Int) 29.49/12.09 new_esEs23(x0, x1, ty_@0) 29.49/12.09 new_compare211(x0, x1, False, x2) 29.49/12.09 new_ltEs5(x0, x1, ty_Float) 29.49/12.09 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.09 new_lt4(x0, x1, ty_Float) 29.49/12.09 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 29.49/12.09 new_esEs28(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.09 new_esEs4(Left(x0), Right(x1), x2, x3) 29.49/12.09 new_esEs4(Right(x0), Left(x1), x2, x3) 29.49/12.09 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 29.49/12.09 new_primCmpNat0(Zero, Zero) 29.49/12.09 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 29.49/12.09 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 29.49/12.09 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 29.49/12.09 new_esEs27(x0, x1, ty_Float) 29.49/12.09 new_ltEs14(Just(x0), Just(x1), ty_Integer) 29.49/12.09 new_esEs12([], :(x0, x1), x2) 29.49/12.09 new_lt4(x0, x1, app(ty_Maybe, x2)) 29.49/12.09 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 29.49/12.09 29.49/12.09 We have to consider all minimal (P,Q,R)-chains. 29.49/12.09 ---------------------------------------- 29.49/12.09 29.49/12.09 (24) QDPSizeChangeProof (EQUIVALENT) 29.49/12.09 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. 29.49/12.09 29.49/12.09 From the DPs we obtained the following set of size-change graphs: 29.49/12.09 *new_compare0(:(xwv4400, xwv4401), :(xwv4600, xwv4601), dh) -> new_primCompAux(xwv4400, xwv4600, new_compare1(xwv4401, xwv4601, dh), dh) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare0(:(xwv4400, xwv4401), :(xwv4600, xwv4601), dh) -> new_compare0(xwv4401, xwv4601, dh) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare4(xwv440, xwv460, bbd) -> new_compare21(xwv440, xwv460, new_esEs6(xwv440, xwv460, bbd), bbd) 29.49/12.09 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_lt0(:(xwv4400, xwv4401), :(xwv4600, xwv4601), dh) -> new_primCompAux(xwv4400, xwv4600, new_compare1(xwv4401, xwv4601, dh), dh) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(:(xwv4400, xwv4401), xwv441), @2(:(xwv4600, xwv4601), xwv461), False, app(ty_[], dh), bfd) -> new_primCompAux(xwv4400, xwv4600, new_compare1(xwv4401, xwv4601, dh), dh) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_lt0(:(xwv4400, xwv4401), :(xwv4600, xwv4601), dh) -> new_compare0(xwv4401, xwv4601, dh) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare2(xwv440, xwv460, False, h, ba) -> new_ltEs(xwv440, xwv460, h, ba) 29.49/12.09 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_lt(xwv440, xwv460, h, ba) -> new_compare2(xwv440, xwv460, new_esEs4(xwv440, xwv460, h, ba), h, ba) 29.49/12.09 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare3(xwv440, xwv460, fb, fc, fd) -> new_compare20(xwv440, xwv460, new_esEs5(xwv440, xwv460, fb, fc, fd), fb, fc, fd) 29.49/12.09 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 29.49/12.09 29.49/12.09 29.49/12.09 *new_lt3(xwv440, xwv460, bfb, bfc) -> new_compare22(xwv440, xwv460, new_esEs7(xwv440, xwv460, bfb, bfc), bfb, bfc) 29.49/12.09 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, xwv441), @2(xwv460, xwv461), False, app(app(ty_@2, bfb), bfc), bfd) -> new_compare22(xwv440, xwv460, new_esEs7(xwv440, xwv460, bfb, bfc), bfb, bfc) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare5(xwv440, xwv460, bfb, bfc) -> new_compare22(xwv440, xwv460, new_esEs7(xwv440, xwv460, bfb, bfc), bfb, bfc) 29.49/12.09 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs2(Just(xwv4410), Just(xwv4610), app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs1(xwv4410, xwv4610, bbh, bca, bcb) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_lt1(xwv440, xwv460, fb, fc, fd) -> new_compare20(xwv440, xwv460, new_esEs5(xwv440, xwv460, fb, fc, fd), fb, fc, fd) 29.49/12.09 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs0(xwv441, xwv461, dg) -> new_compare0(xwv441, xwv461, dg) 29.49/12.09 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs2(Just(xwv4410), Just(xwv4610), app(app(ty_@2, bcd), bce)) -> new_ltEs3(xwv4410, xwv4610, bcd, bce) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), app(ty_[], bda), bch) -> new_lt0(xwv4410, xwv4610, bda) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), bdh, app(app(app(ty_@3, bed), bee), bef)) -> new_ltEs1(xwv4411, xwv4611, bed, bee, bef) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), app(app(ty_@2, bdf), bdg), bch) -> new_lt3(xwv4410, xwv4610, bdf, bdg) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), bdh, app(app(ty_@2, beh), bfa)) -> new_ltEs3(xwv4411, xwv4611, beh, bfa) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, fh, app(app(ty_@2, bbb), bbc)) -> new_ltEs3(xwv4412, xwv4612, bbb, bbc) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), app(app(ty_Either, bcf), bcg), bch) -> new_lt(xwv4410, xwv4610, bcf, bcg) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, fh, app(app(app(ty_@3, baf), bag), bah)) -> new_ltEs1(xwv4412, xwv4612, baf, bag, bah) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare20(xwv440, xwv460, False, fb, fc, fd) -> new_ltEs1(xwv440, xwv460, fb, fc, fd) 29.49/12.09 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_lt2(xwv440, xwv460, bbd) -> new_compare21(xwv440, xwv460, new_esEs6(xwv440, xwv460, bbd), bbd) 29.49/12.09 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_primCompAux(xwv4400, xwv4600, xwv144, app(ty_Maybe, eg)) -> new_compare4(xwv4400, xwv4600, eg) 29.49/12.09 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare21(xwv440, xwv460, False, bbd) -> new_ltEs2(xwv440, xwv460, bbd) 29.49/12.09 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare(xwv440, xwv460, h, ba) -> new_compare2(xwv440, xwv460, new_esEs4(xwv440, xwv460, h, ba), h, ba) 29.49/12.09 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), app(app(app(ty_@3, bdb), bdc), bdd), bch) -> new_lt1(xwv4410, xwv4610, bdb, bdc, bdd) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs2(Just(xwv4410), Just(xwv4610), app(app(ty_Either, bbe), bbf)) -> new_ltEs(xwv4410, xwv4610, bbe, bbf) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), bdh, app(app(ty_Either, bea), beb)) -> new_ltEs(xwv4411, xwv4611, bea, beb) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, fh, app(app(ty_Either, bac), bad)) -> new_ltEs(xwv4412, xwv4612, bac, bad) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs2(Just(xwv4410), Just(xwv4610), app(ty_[], bbg)) -> new_ltEs0(xwv4410, xwv4610, bbg) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs2(Just(xwv4410), Just(xwv4610), app(ty_Maybe, bcc)) -> new_ltEs2(xwv4410, xwv4610, bcc) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), bdh, app(ty_[], bec)) -> new_ltEs0(xwv4411, xwv4611, bec) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, fh, app(ty_[], bae)) -> new_ltEs0(xwv4412, xwv4612, bae) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_primCompAux(xwv4400, xwv4600, xwv144, app(ty_[], ec)) -> new_compare0(xwv4400, xwv4600, ec) 29.49/12.09 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), bdh, app(ty_Maybe, beg)) -> new_ltEs2(xwv4411, xwv4611, beg) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs3(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), app(ty_Maybe, bde), bch) -> new_lt2(xwv4410, xwv4610, bde) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, fh, app(ty_Maybe, bba)) -> new_ltEs2(xwv4412, xwv4612, bba) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, xwv441), @2(xwv460, xwv461), False, app(app(app(ty_@3, fb), fc), fd), bfd) -> new_compare20(xwv440, xwv460, new_esEs5(xwv440, xwv460, fb, fc, fd), fb, fc, fd) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 29.49/12.09 29.49/12.09 29.49/12.09 *new_primCompAux(xwv4400, xwv4600, xwv144, app(app(app(ty_@3, ed), ee), ef)) -> new_compare3(xwv4400, xwv4600, ed, ee, ef) 29.49/12.09 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_primCompAux(xwv4400, xwv4600, xwv144, app(app(ty_@2, eh), fa)) -> new_compare5(xwv4400, xwv4600, eh, fa) 29.49/12.09 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_primCompAux(xwv4400, xwv4600, xwv144, app(app(ty_Either, ea), eb)) -> new_compare(xwv4400, xwv4600, ea, eb) 29.49/12.09 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, xwv441), @2(xwv460, xwv461), False, app(app(ty_Either, h), ba), bfd) -> new_compare2(xwv440, xwv460, new_esEs4(xwv440, xwv460, h, ba), h, ba) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, xwv441), @2(xwv460, xwv461), False, app(ty_Maybe, bbd), bfd) -> new_compare21(xwv440, xwv460, new_esEs6(xwv440, xwv460, bbd), bbd) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs(Left(xwv4410), Left(xwv4610), app(app(app(ty_@3, bf), bg), bh), bd) -> new_ltEs1(xwv4410, xwv4610, bf, bg, bh) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs(Right(xwv4410), Right(xwv4610), cd, app(app(app(ty_@3, da), db), dc)) -> new_ltEs1(xwv4410, xwv4610, da, db, dc) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs(Left(xwv4410), Left(xwv4610), app(app(ty_@2, cb), cc), bd) -> new_ltEs3(xwv4410, xwv4610, cb, cc) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs(Right(xwv4410), Right(xwv4610), cd, app(app(ty_@2, de), df)) -> new_ltEs3(xwv4410, xwv4610, de, df) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs(Left(xwv4410), Left(xwv4610), app(app(ty_Either, bb), bc), bd) -> new_ltEs(xwv4410, xwv4610, bb, bc) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs(Right(xwv4410), Right(xwv4610), cd, app(app(ty_Either, ce), cf)) -> new_ltEs(xwv4410, xwv4610, ce, cf) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs(Left(xwv4410), Left(xwv4610), app(ty_[], be), bd) -> new_ltEs0(xwv4410, xwv4610, be) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs(Right(xwv4410), Right(xwv4610), cd, app(ty_[], cg)) -> new_ltEs0(xwv4410, xwv4610, cg) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs(Right(xwv4410), Right(xwv4610), cd, app(ty_Maybe, dd)) -> new_ltEs2(xwv4410, xwv4610, dd) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs(Left(xwv4410), Left(xwv4610), app(ty_Maybe, ca), bd) -> new_ltEs2(xwv4410, xwv4610, ca) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), app(ty_[], hd)), ga)) -> new_lt0(xwv4411, xwv4611, hd) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, app(ty_[], bda)), bch)) -> new_lt0(xwv4410, xwv4610, bda) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, app(ty_[], gb)), fh), ga)) -> new_lt0(xwv4410, xwv4610, gb) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, app(ty_[], hd), ga) -> new_lt0(xwv4411, xwv4611, hd) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), app(ty_[], gb), fh, ga) -> new_lt0(xwv4410, xwv4610, gb) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, Right(xwv4410)), @2(xwv460, Right(xwv4610)), False, bfe, app(app(ty_Either, cd), app(app(app(ty_@3, da), db), dc))) -> new_ltEs1(xwv4410, xwv4610, da, db, dc) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, bdh), app(app(app(ty_@3, bed), bee), bef))) -> new_ltEs1(xwv4411, xwv4611, bed, bee, bef) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), fh), app(app(app(ty_@3, baf), bag), bah))) -> new_ltEs1(xwv4412, xwv4612, baf, bag, bah) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, Left(xwv4410)), @2(xwv460, Left(xwv4610)), False, bfe, app(app(ty_Either, app(app(app(ty_@3, bf), bg), bh)), bd)) -> new_ltEs1(xwv4410, xwv4610, bf, bg, bh) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, Just(xwv4410)), @2(xwv460, Just(xwv4610)), False, bfe, app(ty_Maybe, app(app(app(ty_@3, bbh), bca), bcb))) -> new_ltEs1(xwv4410, xwv4610, bbh, bca, bcb) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, app(app(ty_@2, bdf), bdg)), bch)) -> new_lt3(xwv4410, xwv4610, bdf, bdg) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, app(app(ty_@2, gg), gh)), fh), ga)) -> new_lt3(xwv4410, xwv4610, gg, gh) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), app(app(ty_@2, baa), bab)), ga)) -> new_lt3(xwv4411, xwv4611, baa, bab) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, bdh), app(app(ty_@2, beh), bfa))) -> new_ltEs3(xwv4411, xwv4611, beh, bfa) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, Right(xwv4410)), @2(xwv460, Right(xwv4610)), False, bfe, app(app(ty_Either, cd), app(app(ty_@2, de), df))) -> new_ltEs3(xwv4410, xwv4610, de, df) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), fh), app(app(ty_@2, bbb), bbc))) -> new_ltEs3(xwv4412, xwv4612, bbb, bbc) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, Just(xwv4410)), @2(xwv460, Just(xwv4610)), False, bfe, app(ty_Maybe, app(app(ty_@2, bcd), bce))) -> new_ltEs3(xwv4410, xwv4610, bcd, bce) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, Left(xwv4410)), @2(xwv460, Left(xwv4610)), False, bfe, app(app(ty_Either, app(app(ty_@2, cb), cc)), bd)) -> new_ltEs3(xwv4410, xwv4610, cb, cc) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, app(app(ty_Either, ff), fg)), fh), ga)) -> new_lt(xwv4410, xwv4610, ff, fg) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), app(app(ty_Either, hb), hc)), ga)) -> new_lt(xwv4411, xwv4611, hb, hc) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, app(app(ty_Either, bcf), bcg)), bch)) -> new_lt(xwv4410, xwv4610, bcf, bcg) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, app(app(app(ty_@3, bdb), bdc), bdd)), bch)) -> new_lt1(xwv4410, xwv4610, bdb, bdc, bdd) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), app(app(app(ty_@3, he), hf), hg)), ga)) -> new_lt1(xwv4411, xwv4611, he, hf, hg) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, app(app(app(ty_@3, gc), gd), ge)), fh), ga)) -> new_lt1(xwv4410, xwv4610, gc, gd, ge) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, bdh), app(app(ty_Either, bea), beb))) -> new_ltEs(xwv4411, xwv4611, bea, beb) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), fh), app(app(ty_Either, bac), bad))) -> new_ltEs(xwv4412, xwv4612, bac, bad) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, Right(xwv4410)), @2(xwv460, Right(xwv4610)), False, bfe, app(app(ty_Either, cd), app(app(ty_Either, ce), cf))) -> new_ltEs(xwv4410, xwv4610, ce, cf) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, Left(xwv4410)), @2(xwv460, Left(xwv4610)), False, bfe, app(app(ty_Either, app(app(ty_Either, bb), bc)), bd)) -> new_ltEs(xwv4410, xwv4610, bb, bc) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, Just(xwv4410)), @2(xwv460, Just(xwv4610)), False, bfe, app(ty_Maybe, app(app(ty_Either, bbe), bbf))) -> new_ltEs(xwv4410, xwv4610, bbe, bbf) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, Right(xwv4410)), @2(xwv460, Right(xwv4610)), False, bfe, app(app(ty_Either, cd), app(ty_[], cg))) -> new_ltEs0(xwv4410, xwv4610, cg) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, Left(xwv4410)), @2(xwv460, Left(xwv4610)), False, bfe, app(app(ty_Either, app(ty_[], be)), bd)) -> new_ltEs0(xwv4410, xwv4610, be) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), fh), app(ty_[], bae))) -> new_ltEs0(xwv4412, xwv4612, bae) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, bdh), app(ty_[], bec))) -> new_ltEs0(xwv4411, xwv4611, bec) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, Just(xwv4410)), @2(xwv460, Just(xwv4610)), False, bfe, app(ty_Maybe, app(ty_[], bbg))) -> new_ltEs0(xwv4410, xwv4610, bbg) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(:(xwv4400, xwv4401), xwv441), @2(:(xwv4600, xwv4601), xwv461), False, app(ty_[], dh), bfd) -> new_compare0(xwv4401, xwv4601, dh) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, xwv441), @2(xwv460, xwv461), False, bfe, app(ty_[], dg)) -> new_compare0(xwv441, xwv461, dg) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, bdh), app(ty_Maybe, beg))) -> new_ltEs2(xwv4411, xwv4611, beg) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), fh), app(ty_Maybe, bba))) -> new_ltEs2(xwv4412, xwv4612, bba) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, Just(xwv4410)), @2(xwv460, Just(xwv4610)), False, bfe, app(ty_Maybe, app(ty_Maybe, bcc))) -> new_ltEs2(xwv4410, xwv4610, bcc) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, Right(xwv4410)), @2(xwv460, Right(xwv4610)), False, bfe, app(app(ty_Either, cd), app(ty_Maybe, dd))) -> new_ltEs2(xwv4410, xwv4610, dd) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, Left(xwv4410)), @2(xwv460, Left(xwv4610)), False, bfe, app(app(ty_Either, app(ty_Maybe, ca)), bd)) -> new_ltEs2(xwv4410, xwv4610, ca) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, app(ty_Maybe, gf)), fh), ga)) -> new_lt2(xwv4410, xwv4610, gf) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @2(xwv4410, xwv4411)), @2(xwv460, @2(xwv4610, xwv4611)), False, bfe, app(app(ty_@2, app(ty_Maybe, bde)), bch)) -> new_lt2(xwv4410, xwv4610, bde) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_compare22(@2(xwv440, @3(xwv4410, xwv4411, xwv4412)), @2(xwv460, @3(xwv4610, xwv4611, xwv4612)), False, bfe, app(app(app(ty_@3, ha), app(ty_Maybe, hh)), ga)) -> new_lt2(xwv4411, xwv4611, hh) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, app(app(ty_@2, baa), bab), ga) -> new_lt3(xwv4411, xwv4611, baa, bab) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), app(app(ty_@2, gg), gh), fh, ga) -> new_lt3(xwv4410, xwv4610, gg, gh) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), app(app(ty_Either, ff), fg), fh, ga) -> new_lt(xwv4410, xwv4610, ff, fg) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, app(app(ty_Either, hb), hc), ga) -> new_lt(xwv4411, xwv4611, hb, hc) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, app(app(app(ty_@3, he), hf), hg), ga) -> new_lt1(xwv4411, xwv4611, he, hf, hg) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), app(app(app(ty_@3, gc), gd), ge), fh, ga) -> new_lt1(xwv4410, xwv4610, gc, gd, ge) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), ha, app(ty_Maybe, hh), ga) -> new_lt2(xwv4411, xwv4611, hh) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.49/12.09 29.49/12.09 29.49/12.09 *new_ltEs1(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), app(ty_Maybe, gf), fh, ga) -> new_lt2(xwv4410, xwv4610, gf) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.49/12.09 29.49/12.09 29.49/12.09 ---------------------------------------- 29.49/12.09 29.49/12.09 (25) 29.49/12.09 YES 29.49/12.09 29.49/12.09 ---------------------------------------- 29.49/12.09 29.49/12.09 (26) 29.49/12.09 Obligation: 29.49/12.09 Q DP problem: 29.49/12.09 The TRS P consists of the following rules: 29.49/12.09 29.49/12.09 new_primMulNat(Succ(xwv40100), Succ(xwv300000)) -> new_primMulNat(xwv40100, Succ(xwv300000)) 29.49/12.09 29.49/12.09 R is empty. 29.49/12.09 Q is empty. 29.49/12.09 We have to consider all minimal (P,Q,R)-chains. 29.49/12.09 ---------------------------------------- 29.49/12.09 29.49/12.09 (27) QDPSizeChangeProof (EQUIVALENT) 29.49/12.09 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. 29.49/12.09 29.49/12.09 From the DPs we obtained the following set of size-change graphs: 29.49/12.09 *new_primMulNat(Succ(xwv40100), Succ(xwv300000)) -> new_primMulNat(xwv40100, Succ(xwv300000)) 29.49/12.09 The graph contains the following edges 1 > 1, 2 >= 2 29.49/12.09 29.49/12.09 29.49/12.09 ---------------------------------------- 29.49/12.09 29.49/12.09 (28) 29.49/12.09 YES 29.49/12.09 29.49/12.09 ---------------------------------------- 29.49/12.09 29.49/12.09 (29) 29.49/12.09 Obligation: 29.49/12.09 Q DP problem: 29.49/12.09 The TRS P consists of the following rules: 29.49/12.09 29.49/12.09 new_primMinusNat(Succ(xwv25700), Succ(xwv25800)) -> new_primMinusNat(xwv25700, xwv25800) 29.49/12.09 29.49/12.09 R is empty. 29.49/12.09 Q is empty. 29.49/12.09 We have to consider all minimal (P,Q,R)-chains. 29.49/12.09 ---------------------------------------- 29.49/12.09 29.49/12.09 (30) QDPSizeChangeProof (EQUIVALENT) 29.49/12.09 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. 29.49/12.09 29.49/12.09 From the DPs we obtained the following set of size-change graphs: 29.49/12.09 *new_primMinusNat(Succ(xwv25700), Succ(xwv25800)) -> new_primMinusNat(xwv25700, xwv25800) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2 29.49/12.09 29.49/12.09 29.49/12.09 ---------------------------------------- 29.49/12.09 29.49/12.09 (31) 29.49/12.09 YES 29.49/12.09 29.49/12.09 ---------------------------------------- 29.49/12.09 29.49/12.09 (32) 29.49/12.09 Obligation: 29.49/12.09 Q DP problem: 29.49/12.09 The TRS P consists of the following rules: 29.49/12.09 29.49/12.09 new_primPlusNat(Succ(xwv19200), Succ(xwv10900)) -> new_primPlusNat(xwv19200, xwv10900) 29.49/12.09 29.49/12.09 R is empty. 29.49/12.09 Q is empty. 29.49/12.09 We have to consider all minimal (P,Q,R)-chains. 29.49/12.09 ---------------------------------------- 29.49/12.09 29.49/12.09 (33) QDPSizeChangeProof (EQUIVALENT) 29.49/12.09 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. 29.49/12.09 29.49/12.09 From the DPs we obtained the following set of size-change graphs: 29.49/12.09 *new_primPlusNat(Succ(xwv19200), Succ(xwv10900)) -> new_primPlusNat(xwv19200, xwv10900) 29.49/12.09 The graph contains the following edges 1 > 1, 2 > 2 29.49/12.09 29.49/12.09 29.49/12.09 ---------------------------------------- 29.49/12.09 29.49/12.09 (34) 29.49/12.09 YES 29.49/12.09 29.49/12.09 ---------------------------------------- 29.49/12.09 29.49/12.09 (35) 29.49/12.09 Obligation: 29.49/12.09 Q DP problem: 29.49/12.09 The TRS P consists of the following rules: 29.49/12.09 29.49/12.09 new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, True, h, ba, bb) -> new_delFromFM(xwv19, @2(xwv21, xwv22), h, ba, bb) 29.49/12.09 new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, False, h, ba, bb) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_esEs10(new_compare26(@2(xwv21, xwv22), @2(xwv15, xwv16), new_esEs7(@2(xwv21, xwv22), @2(xwv15, xwv16), h, ba), h, ba), LT), h, ba, bb) 29.49/12.09 new_delFromFM(Branch(@2(xwv300, xwv301), xwv31, xwv32, xwv33, xwv34), @2(xwv40, xwv41), bc, bd, be) -> new_delFromFM2(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, xwv40, xwv41, new_esEs30(xwv40, xwv41, xwv300, xwv301, new_esEs31(xwv40, xwv300, bc), bc, bd), bc, bd, be) 29.49/12.09 new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, True, h, ba, bb) -> new_delFromFM(xwv20, @2(xwv21, xwv22), h, ba, bb) 29.49/12.09 29.49/12.09 The TRS R consists of the following rules: 29.49/12.09 29.49/12.09 new_compare211(xwv440, xwv460, False, bhe) -> new_compare112(xwv440, xwv460, new_ltEs14(xwv440, xwv460, bhe), bhe) 29.49/12.09 new_esEs20(xwv4410, xwv4610, ty_Integer) -> new_esEs19(xwv4410, xwv4610) 29.49/12.09 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 29.49/12.09 new_primCmpInt(Neg(Succ(xwv4400)), Pos(xwv460)) -> LT 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Integer) -> new_ltEs18(xwv4410, xwv4610) 29.49/12.09 new_esEs29(xwv401, xwv3001, app(ty_[], dde)) -> new_esEs12(xwv401, xwv3001, dde) 29.49/12.09 new_esEs13(Double(xwv400, xwv401), Double(xwv3000, xwv3001)) -> new_esEs11(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 29.49/12.09 new_pePe(True, xwv149) -> True 29.49/12.09 new_esEs23(xwv401, xwv3001, app(ty_Maybe, ceg)) -> new_esEs6(xwv401, xwv3001, ceg) 29.49/12.09 new_esEs29(xwv401, xwv3001, ty_Integer) -> new_esEs19(xwv401, xwv3001) 29.49/12.09 new_esEs27(xwv440, xwv460, ty_Char) -> new_esEs16(xwv440, xwv460) 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, ty_Ordering) -> new_ltEs7(xwv4410, xwv4610) 29.49/12.09 new_primCmpInt(Neg(Succ(xwv4400)), Neg(Zero)) -> LT 29.49/12.09 new_esEs20(xwv4410, xwv4610, app(ty_[], bfc)) -> new_esEs12(xwv4410, xwv4610, bfc) 29.49/12.09 new_esEs21(xwv400, xwv3000, app(ty_Ratio, cca)) -> new_esEs18(xwv400, xwv3000, cca) 29.49/12.09 new_ltEs5(xwv4412, xwv4612, app(ty_[], eh)) -> new_ltEs9(xwv4412, xwv4612, eh) 29.49/12.09 new_esEs21(xwv400, xwv3000, ty_Ordering) -> new_esEs10(xwv400, xwv3000) 29.49/12.09 new_compare112(xwv440, xwv460, True, bhe) -> LT 29.49/12.09 new_esEs4(Left(xwv400), Right(xwv3000), bbg, bag) -> False 29.49/12.09 new_esEs4(Right(xwv400), Left(xwv3000), bbg, bag) -> False 29.49/12.09 new_ltEs20(xwv441, xwv461, ty_Integer) -> new_ltEs18(xwv441, xwv461) 29.49/12.09 new_esEs9(xwv4411, xwv4611, ty_Ordering) -> new_esEs10(xwv4411, xwv4611) 29.49/12.09 new_esEs8(xwv4410, xwv4610, app(ty_[], cc)) -> new_esEs12(xwv4410, xwv4610, cc) 29.49/12.09 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 29.49/12.09 new_esEs12(:(xwv400, xwv401), [], cbb) -> False 29.49/12.09 new_esEs12([], :(xwv3000, xwv3001), cbb) -> False 29.49/12.09 new_ltEs15(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), beg, beh) -> new_pePe(new_lt20(xwv4410, xwv4610, beg), new_asAs(new_esEs20(xwv4410, xwv4610, beg), new_ltEs19(xwv4411, xwv4611, beh))) 29.49/12.09 new_lt20(xwv4410, xwv4610, app(ty_Ratio, bgb)) -> new_lt18(xwv4410, xwv4610, bgb) 29.49/12.09 new_esEs29(xwv401, xwv3001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs5(xwv401, xwv3001, dcd, dce, dcf) 29.49/12.09 new_primCmpInt(Pos(Zero), Neg(Succ(xwv4600))) -> GT 29.49/12.09 new_esEs21(xwv400, xwv3000, ty_Bool) -> new_esEs15(xwv400, xwv3000) 29.49/12.09 new_compare26(xwv44, xwv46, True, dae, daf) -> EQ 29.49/12.09 new_lt4(xwv4410, xwv4610, ty_Float) -> new_lt17(xwv4410, xwv4610) 29.49/12.09 new_lt7(xwv440, xwv460) -> new_esEs10(new_compare14(xwv440, xwv460), LT) 29.49/12.09 new_esEs24(xwv402, xwv3002, ty_Int) -> new_esEs11(xwv402, xwv3002) 29.49/12.09 new_lt20(xwv4410, xwv4610, ty_Ordering) -> new_lt7(xwv4410, xwv4610) 29.49/12.09 new_esEs9(xwv4411, xwv4611, ty_Double) -> new_esEs13(xwv4411, xwv4611) 29.49/12.09 new_esEs22(xwv400, xwv3000, app(app(ty_Either, cdf), cdg)) -> new_esEs4(xwv400, xwv3000, cdf, cdg) 29.49/12.09 new_esEs9(xwv4411, xwv4611, app(app(ty_@2, ec), ed)) -> new_esEs7(xwv4411, xwv4611, ec, ed) 29.49/12.09 new_compare211(xwv440, xwv460, True, bhe) -> EQ 29.49/12.09 new_ltEs19(xwv4411, xwv4611, ty_@0) -> new_ltEs11(xwv4411, xwv4611) 29.49/12.09 new_esEs22(xwv400, xwv3000, ty_Float) -> new_esEs17(xwv400, xwv3000) 29.49/12.09 new_lt5(xwv4411, xwv4611, app(app(app(ty_@3, dg), dh), ea)) -> new_lt10(xwv4411, xwv4611, dg, dh, ea) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_@0) -> new_ltEs11(xwv4410, xwv4610) 29.49/12.09 new_compare113(xwv440, xwv460, False) -> GT 29.49/12.09 new_esEs32(xwv32, xwv34, ty_Double) -> new_esEs13(xwv32, xwv34) 29.49/12.09 new_primCompAux0(xwv156, GT) -> GT 29.49/12.09 new_esEs9(xwv4411, xwv4611, ty_@0) -> new_esEs14(xwv4411, xwv4611) 29.49/12.09 new_esEs15(False, False) -> True 29.49/12.09 new_ltEs20(xwv441, xwv461, ty_Bool) -> new_ltEs12(xwv441, xwv461) 29.49/12.09 new_ltEs14(Nothing, Just(xwv4610), bhf) -> True 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Double) -> new_ltEs10(xwv4410, xwv4610) 29.49/12.09 new_primEqInt(Pos(Succ(xwv4000)), Pos(Zero)) -> False 29.49/12.09 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bbg, ty_Bool) -> new_esEs15(xwv400, xwv3000) 29.49/12.09 new_compare18(Double(xwv4400, Pos(xwv44010)), Double(xwv4600, Pos(xwv46010))) -> new_compare9(new_sr(xwv4400, Pos(xwv46010)), new_sr(Pos(xwv44010), xwv4600)) 29.49/12.09 new_compare210(xwv440, xwv460, False) -> new_compare113(xwv440, xwv460, new_ltEs7(xwv440, xwv460)) 29.49/12.09 new_esEs20(xwv4410, xwv4610, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs5(xwv4410, xwv4610, bfd, bfe, bff) 29.49/12.09 new_compare27(xwv4400, xwv4600, ty_Integer) -> new_compare7(xwv4400, xwv4600) 29.49/12.09 new_compare1(:(xwv4400, xwv4401), [], cba) -> GT 29.49/12.09 new_esEs30(xwv31, xwv32, xwv33, xwv34, False, gf, gg) -> new_esEs10(new_compare26(@2(xwv31, xwv32), @2(xwv33, xwv34), False, gf, gg), GT) 29.49/12.09 new_lt20(xwv4410, xwv4610, app(app(ty_Either, bfa), bfb)) -> new_lt6(xwv4410, xwv4610, bfa, bfb) 29.49/12.09 new_primEqNat0(Succ(xwv4000), Succ(xwv30000)) -> new_primEqNat0(xwv4000, xwv30000) 29.49/12.09 new_esEs10(GT, GT) -> True 29.49/12.09 new_esEs21(xwv400, xwv3000, ty_Double) -> new_esEs13(xwv400, xwv3000) 29.49/12.09 new_primCompAux0(xwv156, LT) -> LT 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), app(app(ty_@2, dee), def), dah) -> new_ltEs15(xwv4410, xwv4610, dee, def) 29.49/12.09 new_not(True) -> False 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, app(ty_Maybe, dff)) -> new_ltEs14(xwv4410, xwv4610, dff) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, app(ty_Ratio, bhd)) -> new_ltEs17(xwv4411, xwv4611, bhd) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Int, dah) -> new_ltEs8(xwv4410, xwv4610) 29.49/12.09 new_primCmpNat0(Zero, Zero) -> EQ 29.49/12.09 new_lt4(xwv4410, xwv4610, app(app(ty_@2, da), db)) -> new_lt16(xwv4410, xwv4610, da, db) 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bbg, app(ty_Ratio, bcf)) -> new_esEs18(xwv400, xwv3000, bcf) 29.49/12.09 new_esEs32(xwv32, xwv34, ty_Ordering) -> new_esEs10(xwv32, xwv34) 29.49/12.09 new_esEs29(xwv401, xwv3001, ty_Int) -> new_esEs11(xwv401, xwv3001) 29.49/12.09 new_lt16(xwv440, xwv460, cce, ccf) -> new_esEs10(new_compare19(xwv440, xwv460, cce, ccf), LT) 29.49/12.09 new_lt21(xwv440, xwv460, ty_Char) -> new_lt14(xwv440, xwv460) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), app(app(ty_Either, ddf), ddg), dah) -> new_ltEs6(xwv4410, xwv4610, ddf, ddg) 29.49/12.09 new_lt19(xwv440, xwv460) -> new_esEs10(new_compare7(xwv440, xwv460), LT) 29.49/12.09 new_esEs21(xwv400, xwv3000, ty_@0) -> new_esEs14(xwv400, xwv3000) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, ty_Bool) -> new_ltEs12(xwv4411, xwv4611) 29.49/12.09 new_primEqNat0(Succ(xwv4000), Zero) -> False 29.49/12.09 new_primEqNat0(Zero, Succ(xwv30000)) -> False 29.49/12.09 new_esEs14(@0, @0) -> True 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), app(ty_Maybe, ded), dah) -> new_ltEs14(xwv4410, xwv4610, ded) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Float, dah) -> new_ltEs16(xwv4410, xwv4610) 29.49/12.09 new_esEs31(xwv40, xwv300, ty_Ordering) -> new_esEs10(xwv40, xwv300) 29.49/12.09 new_ltEs5(xwv4412, xwv4612, app(app(ty_Either, ef), eg)) -> new_ltEs6(xwv4412, xwv4612, ef, eg) 29.49/12.09 new_esEs24(xwv402, xwv3002, ty_Integer) -> new_esEs19(xwv402, xwv3002) 29.49/12.09 new_esEs31(xwv40, xwv300, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs5(xwv40, xwv300, ccg, cch, cda) 29.49/12.09 new_compare10(xwv440, xwv460, True, ga, gb) -> LT 29.49/12.09 new_esEs28(xwv400, xwv3000, ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.09 new_lt4(xwv4410, xwv4610, ty_Char) -> new_lt14(xwv4410, xwv4610) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), app(ty_Ratio, bbc), bag) -> new_esEs18(xwv400, xwv3000, bbc) 29.49/12.09 new_lt20(xwv4410, xwv4610, ty_Integer) -> new_lt19(xwv4410, xwv4610) 29.49/12.09 new_lt20(xwv4410, xwv4610, ty_Double) -> new_lt11(xwv4410, xwv4610) 29.49/12.09 new_esEs22(xwv400, xwv3000, app(app(ty_@2, cea), ceb)) -> new_esEs7(xwv400, xwv3000, cea, ceb) 29.49/12.09 new_esEs10(EQ, EQ) -> True 29.49/12.09 new_lt20(xwv4410, xwv4610, app(ty_[], bfc)) -> new_lt9(xwv4410, xwv4610, bfc) 29.49/12.09 new_esEs32(xwv32, xwv34, ty_Float) -> new_esEs17(xwv32, xwv34) 29.49/12.09 new_esEs23(xwv401, xwv3001, ty_Int) -> new_esEs11(xwv401, xwv3001) 29.49/12.09 new_esEs32(xwv32, xwv34, ty_Char) -> new_esEs16(xwv32, xwv34) 29.49/12.09 new_esEs9(xwv4411, xwv4611, app(ty_Ratio, ee)) -> new_esEs18(xwv4411, xwv4611, ee) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Bool) -> new_ltEs12(xwv4410, xwv4610) 29.49/12.09 new_esEs32(xwv32, xwv34, ty_@0) -> new_esEs14(xwv32, xwv34) 29.49/12.09 new_lt8(xwv440, xwv460) -> new_esEs10(new_compare9(xwv440, xwv460), LT) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), ty_Int, bag) -> new_esEs11(xwv400, xwv3000) 29.49/12.09 new_esEs31(xwv40, xwv300, ty_Bool) -> new_esEs15(xwv40, xwv300) 29.49/12.09 new_primCmpInt(Pos(Succ(xwv4400)), Neg(xwv460)) -> GT 29.49/12.09 new_ltEs20(xwv441, xwv461, ty_@0) -> new_ltEs11(xwv441, xwv461) 29.49/12.09 new_compare9(xwv44, xwv46) -> new_primCmpInt(xwv44, xwv46) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Ordering) -> new_ltEs7(xwv4410, xwv4610) 29.49/12.09 new_ltEs9(xwv441, xwv461, dba) -> new_fsEs(new_compare1(xwv441, xwv461, dba)) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), app(ty_Ratio, cah)) -> new_ltEs17(xwv4410, xwv4610, cah) 29.49/12.09 new_esEs24(xwv402, xwv3002, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs5(xwv402, xwv3002, cff, cfg, cfh) 29.49/12.09 new_ltEs20(xwv441, xwv461, ty_Double) -> new_ltEs10(xwv441, xwv461) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Char, dah) -> new_ltEs13(xwv4410, xwv4610) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, ty_Integer) -> new_ltEs18(xwv4411, xwv4611) 29.49/12.09 new_esEs31(xwv40, xwv300, ty_Double) -> new_esEs13(xwv40, xwv300) 29.49/12.09 new_ltEs5(xwv4412, xwv4612, app(app(ty_@2, ff), fg)) -> new_ltEs15(xwv4412, xwv4612, ff, fg) 29.49/12.09 new_ltEs7(GT, GT) -> True 29.49/12.09 new_compare1(:(xwv4400, xwv4401), :(xwv4600, xwv4601), cba) -> new_primCompAux1(xwv4400, xwv4600, new_compare1(xwv4401, xwv4601, cba), cba) 29.49/12.09 new_primPlusNat1(Succ(xwv19200), Succ(xwv10900)) -> Succ(Succ(new_primPlusNat1(xwv19200, xwv10900))) 29.49/12.09 new_lt21(xwv440, xwv460, ty_Float) -> new_lt17(xwv440, xwv460) 29.49/12.09 new_compare18(Double(xwv4400, Neg(xwv44010)), Double(xwv4600, Neg(xwv46010))) -> new_compare9(new_sr(xwv4400, Neg(xwv46010)), new_sr(Neg(xwv44010), xwv4600)) 29.49/12.09 new_primCmpNat0(Zero, Succ(xwv46000)) -> LT 29.49/12.09 new_esEs10(LT, EQ) -> False 29.49/12.09 new_esEs10(EQ, LT) -> False 29.49/12.09 new_esEs22(xwv400, xwv3000, app(ty_Ratio, cdh)) -> new_esEs18(xwv400, xwv3000, cdh) 29.49/12.09 new_esEs20(xwv4410, xwv4610, ty_Ordering) -> new_esEs10(xwv4410, xwv4610) 29.49/12.09 new_lt20(xwv4410, xwv4610, ty_Char) -> new_lt14(xwv4410, xwv4610) 29.49/12.09 new_compare210(xwv440, xwv460, True) -> EQ 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bbg, ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, ty_Double) -> new_ltEs10(xwv4411, xwv4611) 29.49/12.09 new_lt20(xwv4410, xwv4610, ty_@0) -> new_lt12(xwv4410, xwv4610) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.09 new_esEs21(xwv400, xwv3000, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_esEs5(xwv400, xwv3000, cbc, cbd, cbe) 29.49/12.09 new_primCmpNat0(Succ(xwv44000), Zero) -> GT 29.49/12.09 new_esEs27(xwv440, xwv460, app(app(ty_@2, cce), ccf)) -> new_esEs7(xwv440, xwv460, cce, ccf) 29.49/12.09 new_compare110(xwv440, xwv460, False, gc, gd, ge) -> GT 29.49/12.09 new_esEs9(xwv4411, xwv4611, app(ty_[], df)) -> new_esEs12(xwv4411, xwv4611, df) 29.49/12.09 new_compare13(xwv122, xwv123, xwv124, xwv125, False, bab, bac) -> GT 29.49/12.09 new_pePe(False, xwv149) -> xwv149 29.49/12.09 new_esEs27(xwv440, xwv460, ty_@0) -> new_esEs14(xwv440, xwv460) 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, app(ty_Ratio, dga)) -> new_ltEs17(xwv4410, xwv4610, dga) 29.49/12.09 new_esEs27(xwv440, xwv460, ty_Double) -> new_esEs13(xwv440, xwv460) 29.49/12.09 new_esEs9(xwv4411, xwv4611, ty_Integer) -> new_esEs19(xwv4411, xwv4611) 29.49/12.09 new_lt20(xwv4410, xwv4610, ty_Float) -> new_lt17(xwv4410, xwv4610) 29.49/12.09 new_lt4(xwv4410, xwv4610, app(app(app(ty_@3, cd), ce), cf)) -> new_lt10(xwv4410, xwv4610, cd, ce, cf) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), app(app(ty_Either, bhg), bhh)) -> new_ltEs6(xwv4410, xwv4610, bhg, bhh) 29.49/12.09 new_esEs23(xwv401, xwv3001, ty_Float) -> new_esEs17(xwv401, xwv3001) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), ty_Float, bag) -> new_esEs17(xwv400, xwv3000) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_@0, dah) -> new_ltEs11(xwv4410, xwv4610) 29.49/12.09 new_esEs21(xwv400, xwv3000, app(app(ty_Either, cbg), cbh)) -> new_esEs4(xwv400, xwv3000, cbg, cbh) 29.49/12.09 new_ltEs20(xwv441, xwv461, ty_Char) -> new_ltEs13(xwv441, xwv461) 29.49/12.09 new_primCmpInt(Pos(Succ(xwv4400)), Pos(Zero)) -> GT 29.49/12.09 new_ltEs19(xwv4411, xwv4611, app(ty_Maybe, bha)) -> new_ltEs14(xwv4411, xwv4611, bha) 29.49/12.09 new_esEs31(xwv40, xwv300, ty_Int) -> new_esEs11(xwv40, xwv300) 29.49/12.09 new_esEs22(xwv400, xwv3000, ty_Ordering) -> new_esEs10(xwv400, xwv3000) 29.49/12.09 new_compare7(Integer(xwv4400), Integer(xwv4600)) -> new_primCmpInt(xwv4400, xwv4600) 29.49/12.09 new_compare27(xwv4400, xwv4600, app(ty_[], chc)) -> new_compare1(xwv4400, xwv4600, chc) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Char) -> new_ltEs13(xwv4410, xwv4610) 29.49/12.09 new_compare23(xwv440, xwv460, True, ga, gb) -> EQ 29.49/12.09 new_esEs22(xwv400, xwv3000, app(ty_Maybe, cde)) -> new_esEs6(xwv400, xwv3000, cde) 29.49/12.09 new_esEs32(xwv32, xwv34, app(ty_Maybe, hc)) -> new_esEs6(xwv32, xwv34, hc) 29.49/12.09 new_esEs28(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 29.49/12.09 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 29.49/12.09 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, app(app(app(ty_@3, dfc), dfd), dfe)) -> new_ltEs4(xwv4410, xwv4610, dfc, dfd, dfe) 29.49/12.09 new_esEs31(xwv40, xwv300, app(app(ty_Either, bbg), bag)) -> new_esEs4(xwv40, xwv300, bbg, bag) 29.49/12.09 new_lt5(xwv4411, xwv4611, ty_Bool) -> new_lt13(xwv4411, xwv4611) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, ty_Char) -> new_ltEs13(xwv4411, xwv4611) 29.49/12.09 new_esEs24(xwv402, xwv3002, app(ty_Ratio, cgd)) -> new_esEs18(xwv402, xwv3002, cgd) 29.49/12.09 new_esEs15(True, True) -> True 29.49/12.09 new_esEs29(xwv401, xwv3001, ty_Bool) -> new_esEs15(xwv401, xwv3001) 29.49/12.09 new_esEs8(xwv4410, xwv4610, ty_Ordering) -> new_esEs10(xwv4410, xwv4610) 29.49/12.09 new_primEqInt(Neg(Succ(xwv4000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 29.49/12.09 new_esEs31(xwv40, xwv300, ty_@0) -> new_esEs14(xwv40, xwv300) 29.49/12.09 new_esEs21(xwv400, xwv3000, ty_Float) -> new_esEs17(xwv400, xwv3000) 29.49/12.09 new_primCmpInt(Neg(Zero), Pos(Succ(xwv4600))) -> LT 29.49/12.09 new_esEs17(Float(xwv400, xwv401), Float(xwv3000, xwv3001)) -> new_esEs11(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Double, dah) -> new_ltEs10(xwv4410, xwv4610) 29.49/12.09 new_lt5(xwv4411, xwv4611, ty_Float) -> new_lt17(xwv4411, xwv4611) 29.49/12.09 new_compare17(xwv440, xwv460) -> new_compare25(xwv440, xwv460, new_esEs15(xwv440, xwv460)) 29.49/12.09 new_compare29(Float(xwv4400, Pos(xwv44010)), Float(xwv4600, Neg(xwv46010))) -> new_compare9(new_sr(xwv4400, Pos(xwv46010)), new_sr(Neg(xwv44010), xwv4600)) 29.49/12.09 new_compare29(Float(xwv4400, Neg(xwv44010)), Float(xwv4600, Pos(xwv46010))) -> new_compare9(new_sr(xwv4400, Neg(xwv46010)), new_sr(Pos(xwv44010), xwv4600)) 29.49/12.09 new_primMulInt(Pos(xwv4010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 29.49/12.09 new_lt12(xwv440, xwv460) -> new_esEs10(new_compare11(xwv440, xwv460), LT) 29.49/12.09 new_lt21(xwv440, xwv460, ty_@0) -> new_lt12(xwv440, xwv460) 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, ty_Integer) -> new_ltEs18(xwv4410, xwv4610) 29.49/12.09 new_esEs23(xwv401, xwv3001, app(app(ty_Either, ceh), cfa)) -> new_esEs4(xwv401, xwv3001, ceh, cfa) 29.49/12.09 new_esEs24(xwv402, xwv3002, ty_Ordering) -> new_esEs10(xwv402, xwv3002) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), app(app(ty_Either, bdg), bdh)) -> new_esEs4(xwv400, xwv3000, bdg, bdh) 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bbg, ty_Double) -> new_esEs13(xwv400, xwv3000) 29.49/12.09 new_ltEs5(xwv4412, xwv4612, ty_Char) -> new_ltEs13(xwv4412, xwv4612) 29.49/12.09 new_esEs24(xwv402, xwv3002, app(ty_Maybe, cga)) -> new_esEs6(xwv402, xwv3002, cga) 29.49/12.09 new_compare11(@0, @0) -> EQ 29.49/12.09 new_esEs29(xwv401, xwv3001, ty_Double) -> new_esEs13(xwv401, xwv3001) 29.49/12.09 new_primMulNat0(Succ(xwv40100), Zero) -> Zero 29.49/12.09 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 29.49/12.09 new_primPlusNat0(Zero, xwv300000) -> Succ(xwv300000) 29.49/12.09 new_esEs23(xwv401, xwv3001, app(ty_[], cfe)) -> new_esEs12(xwv401, xwv3001, cfe) 29.49/12.09 new_esEs31(xwv40, xwv300, ty_Integer) -> new_esEs19(xwv40, xwv300) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs5(xwv400, xwv3000, bdc, bdd, bde) 29.49/12.09 new_lt15(xwv440, xwv460, bhe) -> new_esEs10(new_compare16(xwv440, xwv460, bhe), LT) 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, app(app(ty_Either, deh), dfa)) -> new_ltEs6(xwv4410, xwv4610, deh, dfa) 29.49/12.09 new_esEs23(xwv401, xwv3001, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs5(xwv401, xwv3001, ced, cee, cef) 29.49/12.09 new_lt21(xwv440, xwv460, app(app(app(ty_@3, gc), gd), ge)) -> new_lt10(xwv440, xwv460, gc, gd, ge) 29.49/12.09 new_lt4(xwv4410, xwv4610, app(ty_Ratio, dc)) -> new_lt18(xwv4410, xwv4610, dc) 29.49/12.09 new_lt20(xwv4410, xwv4610, ty_Bool) -> new_lt13(xwv4410, xwv4610) 29.49/12.09 new_ltEs12(False, True) -> True 29.49/12.09 new_ltEs20(xwv441, xwv461, app(ty_Maybe, bhf)) -> new_ltEs14(xwv441, xwv461, bhf) 29.49/12.09 new_esEs20(xwv4410, xwv4610, ty_Int) -> new_esEs11(xwv4410, xwv4610) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), app(ty_Maybe, cae)) -> new_ltEs14(xwv4410, xwv4610, cae) 29.49/12.09 new_esEs32(xwv32, xwv34, ty_Integer) -> new_esEs19(xwv32, xwv34) 29.49/12.09 new_compare26(@2(xwv440, xwv441), @2(xwv460, xwv461), False, dae, daf) -> new_compare15(xwv440, xwv441, xwv460, xwv461, new_lt21(xwv440, xwv460, dae), new_asAs(new_esEs27(xwv440, xwv460, dae), new_ltEs20(xwv441, xwv461, daf)), dae, daf) 29.49/12.09 new_esEs24(xwv402, xwv3002, app(ty_[], cgg)) -> new_esEs12(xwv402, xwv3002, cgg) 29.49/12.09 new_esEs27(xwv440, xwv460, ty_Bool) -> new_esEs15(xwv440, xwv460) 29.49/12.09 new_esEs32(xwv32, xwv34, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs5(xwv32, xwv34, gh, ha, hb) 29.49/12.09 new_compare1([], [], cba) -> EQ 29.49/12.09 new_compare111(xwv440, xwv460, True) -> LT 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bbg, ty_Char) -> new_esEs16(xwv400, xwv3000) 29.49/12.09 new_lt21(xwv440, xwv460, ty_Double) -> new_lt11(xwv440, xwv460) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Bool, dah) -> new_ltEs12(xwv4410, xwv4610) 29.49/12.09 new_esEs32(xwv32, xwv34, app(app(ty_Either, hd), he)) -> new_esEs4(xwv32, xwv34, hd, he) 29.49/12.09 new_esEs28(xwv400, xwv3000, ty_Bool) -> new_esEs15(xwv400, xwv3000) 29.49/12.09 new_esEs9(xwv4411, xwv4611, ty_Float) -> new_esEs17(xwv4411, xwv4611) 29.49/12.09 new_compare15(xwv122, xwv123, xwv124, xwv125, True, xwv127, bab, bac) -> new_compare13(xwv122, xwv123, xwv124, xwv125, True, bab, bac) 29.49/12.09 new_primPlusNat1(Succ(xwv19200), Zero) -> Succ(xwv19200) 29.49/12.09 new_primPlusNat1(Zero, Succ(xwv10900)) -> Succ(xwv10900) 29.49/12.09 new_esEs21(xwv400, xwv3000, ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bbg, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs5(xwv400, xwv3000, bbh, bca, bcb) 29.49/12.09 new_compare19(xwv440, xwv460, cce, ccf) -> new_compare26(xwv440, xwv460, new_esEs7(xwv440, xwv460, cce, ccf), cce, ccf) 29.49/12.09 new_compare8(:%(xwv4400, xwv4401), :%(xwv4600, xwv4601), ty_Integer) -> new_compare7(new_sr0(xwv4400, xwv4601), new_sr0(xwv4600, xwv4401)) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), app(ty_[], caa)) -> new_ltEs9(xwv4410, xwv4610, caa) 29.49/12.09 new_esEs8(xwv4410, xwv4610, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs5(xwv4410, xwv4610, cd, ce, cf) 29.49/12.09 new_esEs9(xwv4411, xwv4611, app(ty_Maybe, eb)) -> new_esEs6(xwv4411, xwv4611, eb) 29.49/12.09 new_lt13(xwv440, xwv460) -> new_esEs10(new_compare17(xwv440, xwv460), LT) 29.49/12.09 new_lt9(xwv440, xwv460, cba) -> new_esEs10(new_compare1(xwv440, xwv460, cba), LT) 29.49/12.09 new_ltEs12(True, True) -> True 29.49/12.09 new_ltEs5(xwv4412, xwv4612, app(ty_Maybe, fd)) -> new_ltEs14(xwv4412, xwv4612, fd) 29.49/12.09 new_lt21(xwv440, xwv460, app(ty_Ratio, bef)) -> new_lt18(xwv440, xwv460, bef) 29.49/12.09 new_esEs9(xwv4411, xwv4611, app(app(ty_Either, dd), de)) -> new_esEs4(xwv4411, xwv4611, dd, de) 29.49/12.09 new_esEs23(xwv401, xwv3001, ty_Ordering) -> new_esEs10(xwv401, xwv3001) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), ty_Float) -> new_esEs17(xwv400, xwv3000) 29.49/12.09 new_esEs29(xwv401, xwv3001, ty_@0) -> new_esEs14(xwv401, xwv3001) 29.49/12.09 new_primMulInt(Neg(xwv4010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 29.49/12.09 new_primCmpInt(Pos(Zero), Pos(Succ(xwv4600))) -> new_primCmpNat0(Zero, Succ(xwv4600)) 29.49/12.09 new_esEs8(xwv4410, xwv4610, app(app(ty_Either, ca), cb)) -> new_esEs4(xwv4410, xwv4610, ca, cb) 29.49/12.09 new_esEs9(xwv4411, xwv4611, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs5(xwv4411, xwv4611, dg, dh, ea) 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bbg, ty_@0) -> new_esEs14(xwv400, xwv3000) 29.49/12.09 new_esEs8(xwv4410, xwv4610, ty_Int) -> new_esEs11(xwv4410, xwv4610) 29.49/12.09 new_esEs19(Integer(xwv400), Integer(xwv3000)) -> new_primEqInt(xwv400, xwv3000) 29.49/12.09 new_lt21(xwv440, xwv460, ty_Bool) -> new_lt13(xwv440, xwv460) 29.49/12.09 new_lt5(xwv4411, xwv4611, app(ty_Ratio, ee)) -> new_lt18(xwv4411, xwv4611, ee) 29.49/12.09 new_ltEs18(xwv441, xwv461) -> new_fsEs(new_compare7(xwv441, xwv461)) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), app(ty_Maybe, bdf)) -> new_esEs6(xwv400, xwv3000, bdf) 29.49/12.09 new_esEs6(Nothing, Just(xwv3000), bdb) -> False 29.49/12.09 new_esEs6(Just(xwv400), Nothing, bdb) -> False 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bbg, app(ty_Maybe, bcc)) -> new_esEs6(xwv400, xwv3000, bcc) 29.49/12.09 new_esEs6(Nothing, Nothing, bdb) -> True 29.49/12.09 new_esEs21(xwv400, xwv3000, ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.09 new_esEs8(xwv4410, xwv4610, ty_Integer) -> new_esEs19(xwv4410, xwv4610) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), ty_Ordering, bag) -> new_esEs10(xwv400, xwv3000) 29.49/12.09 new_esEs10(LT, LT) -> True 29.49/12.09 new_compare27(xwv4400, xwv4600, ty_Char) -> new_compare28(xwv4400, xwv4600) 29.49/12.09 new_ltEs8(xwv441, xwv461) -> new_fsEs(new_compare9(xwv441, xwv461)) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), ty_Ordering) -> new_esEs10(xwv400, xwv3000) 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, ty_Char) -> new_ltEs13(xwv4410, xwv4610) 29.49/12.09 new_esEs32(xwv32, xwv34, ty_Int) -> new_esEs11(xwv32, xwv34) 29.49/12.09 new_lt5(xwv4411, xwv4611, app(app(ty_Either, dd), de)) -> new_lt6(xwv4411, xwv4611, dd, de) 29.49/12.09 new_lt20(xwv4410, xwv4610, app(app(app(ty_@3, bfd), bfe), bff)) -> new_lt10(xwv4410, xwv4610, bfd, bfe, bff) 29.49/12.09 new_ltEs7(LT, LT) -> True 29.49/12.09 new_esEs8(xwv4410, xwv4610, ty_Char) -> new_esEs16(xwv4410, xwv4610) 29.49/12.09 new_ltEs5(xwv4412, xwv4612, ty_@0) -> new_ltEs11(xwv4412, xwv4612) 29.49/12.09 new_primMulInt(Pos(xwv4010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 29.49/12.09 new_primMulInt(Neg(xwv4010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), ty_Bool, bag) -> new_esEs15(xwv400, xwv3000) 29.49/12.09 new_compare25(xwv440, xwv460, False) -> new_compare111(xwv440, xwv460, new_ltEs12(xwv440, xwv460)) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, app(ty_[], bge)) -> new_ltEs9(xwv4411, xwv4611, bge) 29.49/12.09 new_esEs28(xwv400, xwv3000, ty_Double) -> new_esEs13(xwv400, xwv3000) 29.49/12.09 new_esEs31(xwv40, xwv300, app(ty_Maybe, bdb)) -> new_esEs6(xwv40, xwv300, bdb) 29.49/12.09 new_lt4(xwv4410, xwv4610, app(ty_Maybe, cg)) -> new_lt15(xwv4410, xwv4610, cg) 29.49/12.09 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Ordering, dah) -> new_ltEs7(xwv4410, xwv4610) 29.49/12.09 new_esEs22(xwv400, xwv3000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xwv400, xwv3000, cdb, cdc, cdd) 29.49/12.09 new_esEs4(Right(xwv400), Right(xwv3000), bbg, app(app(ty_@2, bcg), bch)) -> new_esEs7(xwv400, xwv3000, bcg, bch) 29.49/12.09 new_compare27(xwv4400, xwv4600, app(app(ty_@2, chh), daa)) -> new_compare19(xwv4400, xwv4600, chh, daa) 29.49/12.09 new_lt4(xwv4410, xwv4610, ty_Bool) -> new_lt13(xwv4410, xwv4610) 29.49/12.09 new_compare27(xwv4400, xwv4600, ty_@0) -> new_compare11(xwv4400, xwv4600) 29.49/12.09 new_sr0(Integer(xwv46000), Integer(xwv44010)) -> Integer(new_primMulInt(xwv46000, xwv44010)) 29.49/12.09 new_ltEs5(xwv4412, xwv4612, ty_Double) -> new_ltEs10(xwv4412, xwv4612) 29.49/12.09 new_esEs29(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 29.49/12.09 new_esEs28(xwv400, xwv3000, ty_@0) -> new_esEs14(xwv400, xwv3000) 29.49/12.09 new_compare24(xwv440, xwv460, True, gc, gd, ge) -> EQ 29.49/12.09 new_lt4(xwv4410, xwv4610, ty_Int) -> new_lt8(xwv4410, xwv4610) 29.49/12.09 new_esEs22(xwv400, xwv3000, ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.09 new_ltEs19(xwv4411, xwv4611, app(app(ty_@2, bhb), bhc)) -> new_ltEs15(xwv4411, xwv4611, bhb, bhc) 29.49/12.09 new_compare27(xwv4400, xwv4600, ty_Double) -> new_compare18(xwv4400, xwv4600) 29.49/12.09 new_asAs(True, xwv68) -> xwv68 29.49/12.09 new_esEs21(xwv400, xwv3000, app(ty_Maybe, cbf)) -> new_esEs6(xwv400, xwv3000, cbf) 29.49/12.09 new_compare27(xwv4400, xwv4600, app(ty_Ratio, dab)) -> new_compare8(xwv4400, xwv4600, dab) 29.49/12.09 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Int) -> new_ltEs8(xwv4410, xwv4610) 29.49/12.09 new_compare10(xwv440, xwv460, False, ga, gb) -> GT 29.49/12.09 new_esEs27(xwv440, xwv460, ty_Integer) -> new_esEs19(xwv440, xwv460) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), ty_Bool) -> new_esEs15(xwv400, xwv3000) 29.49/12.09 new_compare113(xwv440, xwv460, True) -> LT 29.49/12.09 new_esEs24(xwv402, xwv3002, ty_@0) -> new_esEs14(xwv402, xwv3002) 29.49/12.09 new_primCompAux1(xwv4400, xwv4600, xwv144, cba) -> new_primCompAux0(xwv144, new_compare27(xwv4400, xwv4600, cba)) 29.49/12.09 new_esEs29(xwv401, xwv3001, ty_Float) -> new_esEs17(xwv401, xwv3001) 29.49/12.09 new_esEs23(xwv401, xwv3001, app(ty_Ratio, cfb)) -> new_esEs18(xwv401, xwv3001, cfb) 29.49/12.09 new_lt5(xwv4411, xwv4611, ty_Double) -> new_lt11(xwv4411, xwv4611) 29.49/12.09 new_esEs16(Char(xwv400), Char(xwv3000)) -> new_primEqNat0(xwv400, xwv3000) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), app(app(ty_Either, bba), bbb), bag) -> new_esEs4(xwv400, xwv3000, bba, bbb) 29.49/12.09 new_compare29(Float(xwv4400, Pos(xwv44010)), Float(xwv4600, Pos(xwv46010))) -> new_compare9(new_sr(xwv4400, Pos(xwv46010)), new_sr(Pos(xwv44010), xwv4600)) 29.49/12.09 new_lt21(xwv440, xwv460, app(ty_[], cba)) -> new_lt9(xwv440, xwv460, cba) 29.49/12.09 new_esEs24(xwv402, xwv3002, ty_Double) -> new_esEs13(xwv402, xwv3002) 29.49/12.09 new_esEs23(xwv401, xwv3001, ty_Bool) -> new_esEs15(xwv401, xwv3001) 29.49/12.09 new_ltEs20(xwv441, xwv461, app(app(ty_@2, beg), beh)) -> new_ltEs15(xwv441, xwv461, beg, beh) 29.49/12.09 new_ltEs20(xwv441, xwv461, ty_Float) -> new_ltEs16(xwv441, xwv461) 29.49/12.09 new_esEs22(xwv400, xwv3000, ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.09 new_esEs24(xwv402, xwv3002, app(app(ty_@2, cge), cgf)) -> new_esEs7(xwv402, xwv3002, cge, cgf) 29.49/12.09 new_esEs9(xwv4411, xwv4611, ty_Int) -> new_esEs11(xwv4411, xwv4611) 29.49/12.09 new_esEs20(xwv4410, xwv4610, app(app(ty_Either, bfa), bfb)) -> new_esEs4(xwv4410, xwv4610, bfa, bfb) 29.49/12.09 new_esEs24(xwv402, xwv3002, ty_Float) -> new_esEs17(xwv402, xwv3002) 29.49/12.09 new_sr(xwv401, xwv3000) -> new_primMulInt(xwv401, xwv3000) 29.49/12.09 new_ltEs11(xwv441, xwv461) -> new_fsEs(new_compare11(xwv441, xwv461)) 29.49/12.09 new_esEs8(xwv4410, xwv4610, app(ty_Maybe, cg)) -> new_esEs6(xwv4410, xwv4610, cg) 29.49/12.09 new_compare27(xwv4400, xwv4600, ty_Ordering) -> new_compare14(xwv4400, xwv4600) 29.49/12.09 new_primMulNat0(Zero, Zero) -> Zero 29.49/12.09 new_ltEs5(xwv4412, xwv4612, app(ty_Ratio, fh)) -> new_ltEs17(xwv4412, xwv4612, fh) 29.49/12.09 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, ty_Float) -> new_ltEs16(xwv4410, xwv4610) 29.49/12.09 new_compare111(xwv440, xwv460, False) -> GT 29.49/12.09 new_ltEs13(xwv441, xwv461) -> new_fsEs(new_compare28(xwv441, xwv461)) 29.49/12.09 new_ltEs12(True, False) -> False 29.49/12.09 new_esEs8(xwv4410, xwv4610, ty_Float) -> new_esEs17(xwv4410, xwv4610) 29.49/12.09 new_lt5(xwv4411, xwv4611, ty_Integer) -> new_lt19(xwv4411, xwv4611) 29.49/12.09 new_esEs23(xwv401, xwv3001, app(app(ty_@2, cfc), cfd)) -> new_esEs7(xwv401, xwv3001, cfc, cfd) 29.49/12.09 new_ltEs7(LT, EQ) -> True 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), app(ty_[], bed)) -> new_esEs12(xwv400, xwv3000, bed) 29.49/12.09 new_lt4(xwv4410, xwv4610, ty_@0) -> new_lt12(xwv4410, xwv4610) 29.49/12.09 new_esEs31(xwv40, xwv300, ty_Char) -> new_esEs16(xwv40, xwv300) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), app(ty_Ratio, bea)) -> new_esEs18(xwv400, xwv3000, bea) 29.49/12.09 new_compare8(:%(xwv4400, xwv4401), :%(xwv4600, xwv4601), ty_Int) -> new_compare9(new_sr(xwv4400, xwv4601), new_sr(xwv4600, xwv4401)) 29.49/12.09 new_esEs23(xwv401, xwv3001, ty_Integer) -> new_esEs19(xwv401, xwv3001) 29.49/12.09 new_esEs27(xwv440, xwv460, app(ty_Ratio, bef)) -> new_esEs18(xwv440, xwv460, bef) 29.49/12.09 new_esEs4(Left(xwv400), Left(xwv3000), app(ty_[], bbf), bag) -> new_esEs12(xwv400, xwv3000, bbf) 29.49/12.09 new_esEs28(xwv400, xwv3000, app(ty_Ratio, dbh)) -> new_esEs18(xwv400, xwv3000, dbh) 29.49/12.09 new_esEs6(Just(xwv400), Just(xwv3000), ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.10 new_lt5(xwv4411, xwv4611, app(ty_[], df)) -> new_lt9(xwv4411, xwv4611, df) 29.49/12.10 new_primCmpInt(Pos(Succ(xwv4400)), Pos(Succ(xwv4600))) -> new_primCmpNat0(xwv4400, xwv4600) 29.49/12.10 new_fsEs(xwv135) -> new_not(new_esEs10(xwv135, GT)) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, ty_Int) -> new_ltEs8(xwv4410, xwv4610) 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, app(app(ty_Either, bcd), bce)) -> new_esEs4(xwv400, xwv3000, bcd, bce) 29.49/12.10 new_esEs21(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 29.49/12.10 new_ltEs20(xwv441, xwv461, app(ty_[], dba)) -> new_ltEs9(xwv441, xwv461, dba) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, app(ty_[], dfb)) -> new_ltEs9(xwv4410, xwv4610, dfb) 29.49/12.10 new_compare18(Double(xwv4400, Pos(xwv44010)), Double(xwv4600, Neg(xwv46010))) -> new_compare9(new_sr(xwv4400, Pos(xwv46010)), new_sr(Neg(xwv44010), xwv4600)) 29.49/12.10 new_compare18(Double(xwv4400, Neg(xwv44010)), Double(xwv4600, Pos(xwv46010))) -> new_compare9(new_sr(xwv4400, Neg(xwv46010)), new_sr(Pos(xwv44010), xwv4600)) 29.49/12.10 new_lt17(xwv440, xwv460) -> new_esEs10(new_compare29(xwv440, xwv460), LT) 29.49/12.10 new_ltEs5(xwv4412, xwv4612, ty_Integer) -> new_ltEs18(xwv4412, xwv4612) 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, app(ty_[], bda)) -> new_esEs12(xwv400, xwv3000, bda) 29.49/12.10 new_primCompAux0(xwv156, EQ) -> xwv156 29.49/12.10 new_esEs18(:%(xwv400, xwv401), :%(xwv3000, xwv3001), cgh) -> new_asAs(new_esEs25(xwv400, xwv3000, cgh), new_esEs26(xwv401, xwv3001, cgh)) 29.49/12.10 new_lt5(xwv4411, xwv4611, ty_@0) -> new_lt12(xwv4411, xwv4611) 29.49/12.10 new_lt21(xwv440, xwv460, ty_Int) -> new_lt8(xwv440, xwv460) 29.49/12.10 new_compare15(xwv122, xwv123, xwv124, xwv125, False, xwv127, bab, bac) -> new_compare13(xwv122, xwv123, xwv124, xwv125, xwv127, bab, bac) 29.49/12.10 new_compare23(xwv440, xwv460, False, ga, gb) -> new_compare10(xwv440, xwv460, new_ltEs6(xwv440, xwv460, ga, gb), ga, gb) 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), app(app(ty_@2, beb), bec)) -> new_esEs7(xwv400, xwv3000, beb, bec) 29.49/12.10 new_esEs22(xwv400, xwv3000, app(ty_[], cec)) -> new_esEs12(xwv400, xwv3000, cec) 29.49/12.10 new_esEs24(xwv402, xwv3002, ty_Bool) -> new_esEs15(xwv402, xwv3002) 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), ty_Integer, bag) -> new_esEs19(xwv400, xwv3000) 29.49/12.10 new_ltEs17(xwv441, xwv461, bee) -> new_fsEs(new_compare8(xwv441, xwv461, bee)) 29.49/12.10 new_ltEs12(False, False) -> True 29.49/12.10 new_esEs29(xwv401, xwv3001, app(app(ty_Either, dch), dda)) -> new_esEs4(xwv401, xwv3001, dch, dda) 29.49/12.10 new_primEqInt(Neg(Succ(xwv4000)), Neg(Zero)) -> False 29.49/12.10 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 29.49/12.10 new_esEs27(xwv440, xwv460, app(ty_[], cba)) -> new_esEs12(xwv440, xwv460, cba) 29.49/12.10 new_lt4(xwv4410, xwv4610, app(ty_[], cc)) -> new_lt9(xwv4410, xwv4610, cc) 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), app(app(ty_@2, bbd), bbe), bag) -> new_esEs7(xwv400, xwv3000, bbd, bbe) 29.49/12.10 new_esEs20(xwv4410, xwv4610, ty_Char) -> new_esEs16(xwv4410, xwv4610) 29.49/12.10 new_lt5(xwv4411, xwv4611, ty_Char) -> new_lt14(xwv4411, xwv4611) 29.49/12.10 new_esEs20(xwv4410, xwv4610, ty_@0) -> new_esEs14(xwv4410, xwv4610) 29.49/12.10 new_primEqInt(Pos(Succ(xwv4000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 29.49/12.10 new_esEs20(xwv4410, xwv4610, ty_Double) -> new_esEs13(xwv4410, xwv4610) 29.49/12.10 new_ltEs20(xwv441, xwv461, app(app(ty_Either, dag), dah)) -> new_ltEs6(xwv441, xwv461, dag, dah) 29.49/12.10 new_ltEs14(Just(xwv4410), Just(xwv4610), app(app(ty_@2, caf), cag)) -> new_ltEs15(xwv4410, xwv4610, caf, cag) 29.49/12.10 new_esEs28(xwv400, xwv3000, app(app(ty_@2, dca), dcb)) -> new_esEs7(xwv400, xwv3000, dca, dcb) 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), app(ty_[], ddh), dah) -> new_ltEs9(xwv4410, xwv4610, ddh) 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.10 new_esEs20(xwv4410, xwv4610, app(ty_Maybe, bfg)) -> new_esEs6(xwv4410, xwv4610, bfg) 29.49/12.10 new_ltEs14(Just(xwv4410), Nothing, bhf) -> False 29.49/12.10 new_ltEs14(Nothing, Nothing, bhf) -> True 29.49/12.10 new_primEqInt(Pos(Succ(xwv4000)), Neg(xwv3000)) -> False 29.49/12.10 new_primEqInt(Neg(Succ(xwv4000)), Pos(xwv3000)) -> False 29.49/12.10 new_compare27(xwv4400, xwv4600, app(app(app(ty_@3, chd), che), chf)) -> new_compare12(xwv4400, xwv4600, chd, che, chf) 29.49/12.10 new_lt4(xwv4410, xwv4610, ty_Double) -> new_lt11(xwv4410, xwv4610) 29.49/12.10 new_lt21(xwv440, xwv460, app(ty_Maybe, bhe)) -> new_lt15(xwv440, xwv460, bhe) 29.49/12.10 new_esEs7(@2(xwv400, xwv401), @2(xwv3000, xwv3001), dac, dad) -> new_asAs(new_esEs28(xwv400, xwv3000, dac), new_esEs29(xwv401, xwv3001, dad)) 29.49/12.10 new_esEs5(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), ccg, cch, cda) -> new_asAs(new_esEs22(xwv400, xwv3000, ccg), new_asAs(new_esEs23(xwv401, xwv3001, cch), new_esEs24(xwv402, xwv3002, cda))) 29.49/12.10 new_primCmpInt(Neg(Zero), Neg(Succ(xwv4600))) -> new_primCmpNat0(Succ(xwv4600), Zero) 29.49/12.10 new_lt11(xwv440, xwv460) -> new_esEs10(new_compare18(xwv440, xwv460), LT) 29.49/12.10 new_esEs20(xwv4410, xwv4610, ty_Float) -> new_esEs17(xwv4410, xwv4610) 29.49/12.10 new_ltEs5(xwv4412, xwv4612, ty_Bool) -> new_ltEs12(xwv4412, xwv4612) 29.49/12.10 new_lt4(xwv4410, xwv4610, ty_Integer) -> new_lt19(xwv4410, xwv4610) 29.49/12.10 new_esEs24(xwv402, xwv3002, app(app(ty_Either, cgb), cgc)) -> new_esEs4(xwv402, xwv3002, cgb, cgc) 29.49/12.10 new_ltEs19(xwv4411, xwv4611, app(app(ty_Either, bgc), bgd)) -> new_ltEs6(xwv4411, xwv4611, bgc, bgd) 29.49/12.10 new_esEs12(:(xwv400, xwv401), :(xwv3000, xwv3001), cbb) -> new_asAs(new_esEs21(xwv400, xwv3000, cbb), new_esEs12(xwv401, xwv3001, cbb)) 29.49/12.10 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 29.49/12.10 new_esEs25(xwv400, xwv3000, ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, ty_Double) -> new_ltEs10(xwv4410, xwv4610) 29.49/12.10 new_ltEs19(xwv4411, xwv4611, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs4(xwv4411, xwv4611, bgf, bgg, bgh) 29.49/12.10 new_compare27(xwv4400, xwv4600, ty_Int) -> new_compare9(xwv4400, xwv4600) 29.49/12.10 new_esEs22(xwv400, xwv3000, ty_Bool) -> new_esEs15(xwv400, xwv3000) 29.49/12.10 new_lt5(xwv4411, xwv4611, app(ty_Maybe, eb)) -> new_lt15(xwv4411, xwv4611, eb) 29.49/12.10 new_esEs10(LT, GT) -> False 29.49/12.10 new_esEs10(GT, LT) -> False 29.49/12.10 new_esEs8(xwv4410, xwv4610, ty_Double) -> new_esEs13(xwv4410, xwv4610) 29.49/12.10 new_ltEs5(xwv4412, xwv4612, ty_Ordering) -> new_ltEs7(xwv4412, xwv4612) 29.49/12.10 new_compare110(xwv440, xwv460, True, gc, gd, ge) -> LT 29.49/12.10 new_lt21(xwv440, xwv460, app(app(ty_Either, ga), gb)) -> new_lt6(xwv440, xwv460, ga, gb) 29.49/12.10 new_ltEs4(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), bf, bg, bh) -> new_pePe(new_lt4(xwv4410, xwv4610, bf), new_asAs(new_esEs8(xwv4410, xwv4610, bf), new_pePe(new_lt5(xwv4411, xwv4611, bg), new_asAs(new_esEs9(xwv4411, xwv4611, bg), new_ltEs5(xwv4412, xwv4612, bh))))) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, ty_@0) -> new_ltEs11(xwv4410, xwv4610) 29.49/12.10 new_compare13(xwv122, xwv123, xwv124, xwv125, True, bab, bac) -> LT 29.49/12.10 new_compare16(xwv440, xwv460, bhe) -> new_compare211(xwv440, xwv460, new_esEs6(xwv440, xwv460, bhe), bhe) 29.49/12.10 new_ltEs7(EQ, GT) -> True 29.49/12.10 new_esEs28(xwv400, xwv3000, ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.10 new_esEs31(xwv40, xwv300, ty_Float) -> new_esEs17(xwv40, xwv300) 29.49/12.10 new_ltEs6(Right(xwv4410), Left(xwv4610), dag, dah) -> False 29.49/12.10 new_not(False) -> True 29.49/12.10 new_lt14(xwv440, xwv460) -> new_esEs10(new_compare28(xwv440, xwv460), LT) 29.49/12.10 new_esEs21(xwv400, xwv3000, app(ty_[], ccd)) -> new_esEs12(xwv400, xwv3000, ccd) 29.49/12.10 new_esEs28(xwv400, xwv3000, app(ty_[], dcc)) -> new_esEs12(xwv400, xwv3000, dcc) 29.49/12.10 new_lt4(xwv4410, xwv4610, app(app(ty_Either, ca), cb)) -> new_lt6(xwv4410, xwv4610, ca, cb) 29.49/12.10 new_esEs8(xwv4410, xwv4610, app(app(ty_@2, da), db)) -> new_esEs7(xwv4410, xwv4610, da, db) 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, ty_Float) -> new_esEs17(xwv400, xwv3000) 29.49/12.10 new_esEs29(xwv401, xwv3001, ty_Ordering) -> new_esEs10(xwv401, xwv3001) 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), app(ty_Ratio, deg), dah) -> new_ltEs17(xwv4410, xwv4610, deg) 29.49/12.10 new_esEs8(xwv4410, xwv4610, ty_@0) -> new_esEs14(xwv4410, xwv4610) 29.49/12.10 new_compare1([], :(xwv4600, xwv4601), cba) -> LT 29.49/12.10 new_esEs20(xwv4410, xwv4610, app(ty_Ratio, bgb)) -> new_esEs18(xwv4410, xwv4610, bgb) 29.49/12.10 new_compare28(Char(xwv4400), Char(xwv4600)) -> new_primCmpNat0(xwv4400, xwv4600) 29.49/12.10 new_ltEs7(EQ, EQ) -> True 29.49/12.10 new_ltEs19(xwv4411, xwv4611, ty_Ordering) -> new_ltEs7(xwv4411, xwv4611) 29.49/12.10 new_lt5(xwv4411, xwv4611, ty_Int) -> new_lt8(xwv4411, xwv4611) 29.49/12.10 new_ltEs7(GT, EQ) -> False 29.49/12.10 new_lt10(xwv440, xwv460, gc, gd, ge) -> new_esEs10(new_compare12(xwv440, xwv460, gc, gd, ge), LT) 29.49/12.10 new_esEs28(xwv400, xwv3000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs5(xwv400, xwv3000, dbb, dbc, dbd) 29.49/12.10 new_esEs20(xwv4410, xwv4610, ty_Bool) -> new_esEs15(xwv4410, xwv4610) 29.49/12.10 new_compare25(xwv440, xwv460, True) -> EQ 29.49/12.10 new_lt4(xwv4410, xwv4610, ty_Ordering) -> new_lt7(xwv4410, xwv4610) 29.49/12.10 new_esEs29(xwv401, xwv3001, app(app(ty_@2, ddc), ddd)) -> new_esEs7(xwv401, xwv3001, ddc, ddd) 29.49/12.10 new_esEs32(xwv32, xwv34, ty_Bool) -> new_esEs15(xwv32, xwv34) 29.49/12.10 new_esEs29(xwv401, xwv3001, app(ty_Ratio, ddb)) -> new_esEs18(xwv401, xwv3001, ddb) 29.49/12.10 new_esEs27(xwv440, xwv460, ty_Ordering) -> new_esEs10(xwv440, xwv460) 29.49/12.10 new_primPlusNat0(Succ(xwv1130), xwv300000) -> Succ(Succ(new_primPlusNat1(xwv1130, xwv300000))) 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Integer, dah) -> new_ltEs18(xwv4410, xwv4610) 29.49/12.10 new_lt20(xwv4410, xwv4610, ty_Int) -> new_lt8(xwv4410, xwv4610) 29.49/12.10 new_esEs27(xwv440, xwv460, ty_Int) -> new_esEs11(xwv440, xwv460) 29.49/12.10 new_compare12(xwv440, xwv460, gc, gd, ge) -> new_compare24(xwv440, xwv460, new_esEs5(xwv440, xwv460, gc, gd, ge), gc, gd, ge) 29.49/12.10 new_ltEs20(xwv441, xwv461, app(ty_Ratio, bee)) -> new_ltEs17(xwv441, xwv461, bee) 29.49/12.10 new_ltEs20(xwv441, xwv461, ty_Ordering) -> new_ltEs7(xwv441, xwv461) 29.49/12.10 new_lt20(xwv4410, xwv4610, app(ty_Maybe, bfg)) -> new_lt15(xwv4410, xwv4610, bfg) 29.49/12.10 new_esEs29(xwv401, xwv3001, app(ty_Maybe, dcg)) -> new_esEs6(xwv401, xwv3001, dcg) 29.49/12.10 new_ltEs5(xwv4412, xwv4612, app(app(app(ty_@3, fa), fb), fc)) -> new_ltEs4(xwv4412, xwv4612, fa, fb, fc) 29.49/12.10 new_ltEs14(Just(xwv4410), Just(xwv4610), app(app(app(ty_@3, cab), cac), cad)) -> new_ltEs4(xwv4410, xwv4610, cab, cac, cad) 29.49/12.10 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 29.49/12.10 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 29.49/12.10 new_esEs8(xwv4410, xwv4610, app(ty_Ratio, dc)) -> new_esEs18(xwv4410, xwv4610, dc) 29.49/12.10 new_primPlusNat1(Zero, Zero) -> Zero 29.49/12.10 new_esEs32(xwv32, xwv34, app(ty_Ratio, hf)) -> new_esEs18(xwv32, xwv34, hf) 29.49/12.10 new_esEs9(xwv4411, xwv4611, ty_Char) -> new_esEs16(xwv4411, xwv4611) 29.49/12.10 new_lt20(xwv4410, xwv4610, app(app(ty_@2, bfh), bga)) -> new_lt16(xwv4410, xwv4610, bfh, bga) 29.49/12.10 new_esEs28(xwv400, xwv3000, app(app(ty_Either, dbf), dbg)) -> new_esEs4(xwv400, xwv3000, dbf, dbg) 29.49/12.10 new_esEs32(xwv32, xwv34, app(ty_[], baa)) -> new_esEs12(xwv32, xwv34, baa) 29.49/12.10 new_lt6(xwv440, xwv460, ga, gb) -> new_esEs10(new_compare6(xwv440, xwv460, ga, gb), LT) 29.49/12.10 new_ltEs7(EQ, LT) -> False 29.49/12.10 new_compare24(xwv440, xwv460, False, gc, gd, ge) -> new_compare110(xwv440, xwv460, new_ltEs4(xwv440, xwv460, gc, gd, ge), gc, gd, ge) 29.49/12.10 new_lt18(xwv440, xwv460, bef) -> new_esEs10(new_compare8(xwv440, xwv460, bef), LT) 29.49/12.10 new_compare27(xwv4400, xwv4600, app(ty_Maybe, chg)) -> new_compare16(xwv4400, xwv4600, chg) 29.49/12.10 new_esEs15(False, True) -> False 29.49/12.10 new_esEs15(True, False) -> False 29.49/12.10 new_esEs10(EQ, GT) -> False 29.49/12.10 new_esEs10(GT, EQ) -> False 29.49/12.10 new_esEs22(xwv400, xwv3000, ty_@0) -> new_esEs14(xwv400, xwv3000) 29.49/12.10 new_esEs28(xwv400, xwv3000, app(ty_Maybe, dbe)) -> new_esEs6(xwv400, xwv3000, dbe) 29.49/12.10 new_esEs31(xwv40, xwv300, app(ty_[], cbb)) -> new_esEs12(xwv40, xwv300, cbb) 29.49/12.10 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 29.49/12.10 new_esEs23(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 29.49/12.10 new_esEs30(xwv31, xwv32, xwv33, xwv34, True, gf, gg) -> new_esEs10(new_compare26(@2(xwv31, xwv32), @2(xwv33, xwv34), new_esEs32(xwv32, xwv34, gg), gf, gg), GT) 29.49/12.10 new_lt21(xwv440, xwv460, app(app(ty_@2, cce), ccf)) -> new_lt16(xwv440, xwv460, cce, ccf) 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), ty_@0, bag) -> new_esEs14(xwv400, xwv3000) 29.49/12.10 new_lt21(xwv440, xwv460, ty_Integer) -> new_lt19(xwv440, xwv460) 29.49/12.10 new_primMulNat0(Succ(xwv40100), Succ(xwv300000)) -> new_primPlusNat0(new_primMulNat0(xwv40100, Succ(xwv300000)), xwv300000) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, app(app(ty_@2, dfg), dfh)) -> new_ltEs15(xwv4410, xwv4610, dfg, dfh) 29.49/12.10 new_ltEs5(xwv4412, xwv4612, ty_Float) -> new_ltEs16(xwv4412, xwv4612) 29.49/12.10 new_esEs25(xwv400, xwv3000, ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, ty_Bool) -> new_ltEs12(xwv4410, xwv4610) 29.49/12.10 new_esEs22(xwv400, xwv3000, ty_Double) -> new_esEs13(xwv400, xwv3000) 29.49/12.10 new_esEs22(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 29.49/12.10 new_ltEs7(GT, LT) -> False 29.49/12.10 new_ltEs5(xwv4412, xwv4612, ty_Int) -> new_ltEs8(xwv4412, xwv4612) 29.49/12.10 new_primCmpNat0(Succ(xwv44000), Succ(xwv46000)) -> new_primCmpNat0(xwv44000, xwv46000) 29.49/12.10 new_esEs27(xwv440, xwv460, ty_Float) -> new_esEs17(xwv440, xwv460) 29.49/12.10 new_lt5(xwv4411, xwv4611, app(app(ty_@2, ec), ed)) -> new_lt16(xwv4411, xwv4611, ec, ed) 29.49/12.10 new_esEs21(xwv400, xwv3000, app(app(ty_@2, ccb), ccc)) -> new_esEs7(xwv400, xwv3000, ccb, ccc) 29.49/12.10 new_esEs24(xwv402, xwv3002, ty_Char) -> new_esEs16(xwv402, xwv3002) 29.49/12.10 new_esEs8(xwv4410, xwv4610, ty_Bool) -> new_esEs15(xwv4410, xwv4610) 29.49/12.10 new_esEs27(xwv440, xwv460, app(ty_Maybe, bhe)) -> new_esEs6(xwv440, xwv460, bhe) 29.49/12.10 new_compare27(xwv4400, xwv4600, app(app(ty_Either, cha), chb)) -> new_compare6(xwv4400, xwv4600, cha, chb) 29.49/12.10 new_ltEs19(xwv4411, xwv4611, ty_Float) -> new_ltEs16(xwv4411, xwv4611) 29.49/12.10 new_esEs12([], [], cbb) -> True 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), ty_Double, bag) -> new_esEs13(xwv400, xwv3000) 29.49/12.10 new_ltEs20(xwv441, xwv461, ty_Int) -> new_ltEs8(xwv441, xwv461) 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), app(app(app(ty_@3, bad), bae), baf), bag) -> new_esEs5(xwv400, xwv3000, bad, bae, baf) 29.49/12.10 new_ltEs7(LT, GT) -> True 29.49/12.10 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 29.49/12.10 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 29.49/12.10 new_esEs23(xwv401, xwv3001, ty_Double) -> new_esEs13(xwv401, xwv3001) 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, ty_Ordering) -> new_esEs10(xwv400, xwv3000) 29.49/12.10 new_esEs31(xwv40, xwv300, app(ty_Ratio, cgh)) -> new_esEs18(xwv40, xwv300, cgh) 29.49/12.10 new_lt21(xwv440, xwv460, ty_Ordering) -> new_lt7(xwv440, xwv460) 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), ty_Double) -> new_esEs13(xwv400, xwv3000) 29.49/12.10 new_compare27(xwv4400, xwv4600, ty_Bool) -> new_compare17(xwv4400, xwv4600) 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), ty_Char) -> new_esEs16(xwv400, xwv3000) 29.49/12.10 new_primEqNat0(Zero, Zero) -> True 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), app(ty_Maybe, bah), bag) -> new_esEs6(xwv400, xwv3000, bah) 29.49/12.10 new_ltEs16(xwv441, xwv461) -> new_fsEs(new_compare29(xwv441, xwv461)) 29.49/12.10 new_esEs32(xwv32, xwv34, app(app(ty_@2, hg), hh)) -> new_esEs7(xwv32, xwv34, hg, hh) 29.49/12.10 new_esEs9(xwv4411, xwv4611, ty_Bool) -> new_esEs15(xwv4411, xwv4611) 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), app(app(app(ty_@3, dea), deb), dec), dah) -> new_ltEs4(xwv4410, xwv4610, dea, deb, dec) 29.49/12.10 new_esEs28(xwv400, xwv3000, ty_Ordering) -> new_esEs10(xwv400, xwv3000) 29.49/12.10 new_compare14(xwv440, xwv460) -> new_compare210(xwv440, xwv460, new_esEs10(xwv440, xwv460)) 29.49/12.10 new_primCmpInt(Neg(Succ(xwv4400)), Neg(Succ(xwv4600))) -> new_primCmpNat0(xwv4600, xwv4400) 29.49/12.10 new_esEs31(xwv40, xwv300, app(app(ty_@2, dac), dad)) -> new_esEs7(xwv40, xwv300, dac, dad) 29.49/12.10 new_compare27(xwv4400, xwv4600, ty_Float) -> new_compare29(xwv4400, xwv4600) 29.49/12.10 new_lt5(xwv4411, xwv4611, ty_Ordering) -> new_lt7(xwv4411, xwv4611) 29.49/12.10 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Float) -> new_ltEs16(xwv4410, xwv4610) 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), ty_@0) -> new_esEs14(xwv400, xwv3000) 29.49/12.10 new_compare29(Float(xwv4400, Neg(xwv44010)), Float(xwv4600, Neg(xwv46010))) -> new_compare9(new_sr(xwv4400, Neg(xwv46010)), new_sr(Neg(xwv44010), xwv4600)) 29.49/12.10 new_asAs(False, xwv68) -> False 29.49/12.10 new_ltEs10(xwv441, xwv461) -> new_fsEs(new_compare18(xwv441, xwv461)) 29.49/12.10 new_esEs26(xwv401, xwv3001, ty_Int) -> new_esEs11(xwv401, xwv3001) 29.49/12.10 new_ltEs19(xwv4411, xwv4611, ty_Int) -> new_ltEs8(xwv4411, xwv4611) 29.49/12.10 new_esEs23(xwv401, xwv3001, ty_@0) -> new_esEs14(xwv401, xwv3001) 29.49/12.10 new_esEs27(xwv440, xwv460, app(app(ty_Either, ga), gb)) -> new_esEs4(xwv440, xwv460, ga, gb) 29.49/12.10 new_ltEs6(Left(xwv4410), Right(xwv4610), dag, dah) -> True 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), ty_Char, bag) -> new_esEs16(xwv400, xwv3000) 29.49/12.10 new_esEs26(xwv401, xwv3001, ty_Integer) -> new_esEs19(xwv401, xwv3001) 29.49/12.10 new_ltEs20(xwv441, xwv461, app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs4(xwv441, xwv461, bf, bg, bh) 29.49/12.10 new_compare112(xwv440, xwv460, False, bhe) -> GT 29.49/12.10 new_esEs28(xwv400, xwv3000, ty_Float) -> new_esEs17(xwv400, xwv3000) 29.49/12.10 new_esEs11(xwv40, xwv300) -> new_primEqInt(xwv40, xwv300) 29.49/12.10 new_compare6(xwv440, xwv460, ga, gb) -> new_compare23(xwv440, xwv460, new_esEs4(xwv440, xwv460, ga, gb), ga, gb) 29.49/12.10 new_esEs27(xwv440, xwv460, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs5(xwv440, xwv460, gc, gd, ge) 29.49/12.10 new_esEs20(xwv4410, xwv4610, app(app(ty_@2, bfh), bga)) -> new_esEs7(xwv4410, xwv4610, bfh, bga) 29.49/12.10 29.49/12.10 The set Q consists of the following terms: 29.49/12.10 29.49/12.10 new_esEs29(x0, x1, ty_Float) 29.49/12.10 new_lt4(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs22(x0, x1, ty_Float) 29.49/12.10 new_esEs9(x0, x1, ty_@0) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 29.49/12.10 new_ltEs20(x0, x1, ty_Integer) 29.49/12.10 new_ltEs5(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs21(x0, x1, ty_Ordering) 29.49/12.10 new_compare29(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), ty_Bool) 29.49/12.10 new_compare29(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 29.49/12.10 new_compare29(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 29.49/12.10 new_esEs32(x0, x1, ty_Char) 29.49/12.10 new_compare29(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 29.49/12.10 new_primCmpInt(Pos(Succ(x0)), Pos(Zero)) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), ty_@0) 29.49/12.10 new_compare25(x0, x1, True) 29.49/12.10 new_compare27(x0, x1, ty_Integer) 29.49/12.10 new_esEs21(x0, x1, ty_Double) 29.49/12.10 new_esEs6(Just(x0), Just(x1), ty_Double) 29.49/12.10 new_esEs6(Just(x0), Just(x1), ty_Ordering) 29.49/12.10 new_lt21(x0, x1, ty_Int) 29.49/12.10 new_primCmpInt(Neg(Succ(x0)), Neg(Zero)) 29.49/12.10 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_compare26(x0, x1, True, x2, x3) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.49/12.10 new_ltEs14(Nothing, Just(x0), x1) 29.49/12.10 new_compare1(:(x0, x1), [], x2) 29.49/12.10 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.49/12.10 new_compare14(x0, x1) 29.49/12.10 new_compare11(@0, @0) 29.49/12.10 new_esEs32(x0, x1, ty_Int) 29.49/12.10 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_compare112(x0, x1, False, x2) 29.49/12.10 new_lt20(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.49/12.10 new_primPlusNat1(Zero, Zero) 29.49/12.10 new_esEs4(Left(x0), Right(x1), x2, x3) 29.49/12.10 new_esEs4(Right(x0), Left(x1), x2, x3) 29.49/12.10 new_sr0(Integer(x0), Integer(x1)) 29.49/12.10 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 29.49/12.10 new_esEs31(x0, x1, ty_Int) 29.49/12.10 new_compare110(x0, x1, False, x2, x3, x4) 29.49/12.10 new_esEs6(Nothing, Just(x0), x1) 29.49/12.10 new_asAs(False, x0) 29.49/12.10 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.49/12.10 new_lt21(x0, x1, ty_Char) 29.49/12.10 new_esEs8(x0, x1, ty_Char) 29.49/12.10 new_esEs10(EQ, EQ) 29.49/12.10 new_compare9(x0, x1) 29.49/12.10 new_compare15(x0, x1, x2, x3, False, x4, x5, x6) 29.49/12.10 new_esEs6(Just(x0), Just(x1), ty_Int) 29.49/12.10 new_esEs31(x0, x1, ty_Char) 29.49/12.10 new_lt21(x0, x1, ty_Ordering) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 29.49/12.10 new_sr(x0, x1) 29.49/12.10 new_esEs31(x0, x1, ty_Double) 29.49/12.10 new_esEs8(x0, x1, ty_@0) 29.49/12.10 new_esEs20(x0, x1, app(ty_[], x2)) 29.49/12.10 new_ltEs11(x0, x1) 29.49/12.10 new_primEqInt(Pos(Zero), Pos(Zero)) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.49/12.10 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 29.49/12.10 new_esEs31(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_esEs16(Char(x0), Char(x1)) 29.49/12.10 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.49/12.10 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.49/12.10 new_esEs28(x0, x1, ty_Float) 29.49/12.10 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 29.49/12.10 new_compare27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.49/12.10 new_primPlusNat1(Zero, Succ(x0)) 29.49/12.10 new_esEs9(x0, x1, ty_Integer) 29.49/12.10 new_compare211(x0, x1, True, x2) 29.49/12.10 new_ltEs20(x0, x1, ty_@0) 29.49/12.10 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 29.49/12.10 new_primEqInt(Neg(Zero), Neg(Zero)) 29.49/12.10 new_esEs20(x0, x1, ty_Integer) 29.49/12.10 new_esEs32(x0, x1, ty_Double) 29.49/12.10 new_esEs9(x0, x1, app(ty_[], x2)) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 29.49/12.10 new_esEs22(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_esEs11(x0, x1) 29.49/12.10 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs32(x0, x1, ty_@0) 29.49/12.10 new_esEs12(:(x0, x1), :(x2, x3), x4) 29.49/12.10 new_compare26(@2(x0, x1), @2(x2, x3), False, x4, x5) 29.49/12.10 new_esEs9(x0, x1, ty_Char) 29.49/12.10 new_primCompAux0(x0, EQ) 29.49/12.10 new_esEs24(x0, x1, ty_Float) 29.49/12.10 new_esEs20(x0, x1, ty_@0) 29.49/12.10 new_esEs27(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_compare13(x0, x1, x2, x3, True, x4, x5) 29.49/12.10 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), ty_Char) 29.49/12.10 new_esEs6(Just(x0), Just(x1), ty_Char) 29.49/12.10 new_ltEs13(x0, x1) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 29.49/12.10 new_compare27(x0, x1, ty_Bool) 29.49/12.10 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs12(:(x0, x1), [], x2) 29.49/12.10 new_compare27(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_esEs29(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_ltEs20(x0, x1, ty_Float) 29.49/12.10 new_lt19(x0, x1) 29.49/12.10 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs24(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_esEs28(x0, x1, ty_Bool) 29.49/12.10 new_esEs29(x0, x1, ty_Integer) 29.49/12.10 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), ty_Int) 29.49/12.10 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_lt21(x0, x1, ty_Double) 29.49/12.10 new_primEqInt(Pos(Zero), Neg(Zero)) 29.49/12.10 new_primEqInt(Neg(Zero), Pos(Zero)) 29.49/12.10 new_lt5(x0, x1, ty_Float) 29.49/12.10 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 29.49/12.10 new_ltEs19(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.49/12.10 new_primCompAux0(x0, LT) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.49/12.10 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.49/12.10 new_ltEs5(x0, x1, ty_Integer) 29.49/12.10 new_esEs28(x0, x1, ty_@0) 29.49/12.10 new_lt21(x0, x1, ty_Bool) 29.49/12.10 new_ltEs7(EQ, EQ) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 29.49/12.10 new_esEs31(x0, x1, ty_@0) 29.49/12.10 new_ltEs20(x0, x1, app(ty_[], x2)) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 29.49/12.10 new_esEs15(False, False) 29.49/12.10 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.49/12.10 new_esEs9(x0, x1, ty_Bool) 29.49/12.10 new_esEs25(x0, x1, ty_Int) 29.49/12.10 new_lt13(x0, x1) 29.49/12.10 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs29(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs20(x0, x1, ty_Bool) 29.49/12.10 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs21(x0, x1, ty_Bool) 29.49/12.10 new_primMulInt(Pos(x0), Pos(x1)) 29.49/12.10 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), ty_Double) 29.49/12.10 new_esEs20(x0, x1, ty_Char) 29.49/12.10 new_esEs9(x0, x1, ty_Float) 29.49/12.10 new_esEs6(Just(x0), Just(x1), ty_Bool) 29.49/12.10 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs32(x0, x1, ty_Integer) 29.49/12.10 new_asAs(True, x0) 29.49/12.10 new_esEs22(x0, x1, ty_Bool) 29.49/12.10 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.49/12.10 new_primMulInt(Pos(x0), Neg(x1)) 29.49/12.10 new_primMulInt(Neg(x0), Pos(x1)) 29.49/12.10 new_ltEs17(x0, x1, x2) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 29.49/12.10 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_lt5(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_esEs23(x0, x1, ty_Integer) 29.49/12.10 new_lt21(x0, x1, ty_Integer) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.49/12.10 new_primCompAux1(x0, x1, x2, x3) 29.49/12.10 new_ltEs20(x0, x1, ty_Char) 29.49/12.10 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs6(Just(x0), Just(x1), ty_@0) 29.49/12.10 new_ltEs19(x0, x1, ty_Float) 29.49/12.10 new_lt15(x0, x1, x2) 29.49/12.10 new_lt20(x0, x1, ty_Float) 29.49/12.10 new_esEs20(x0, x1, ty_Int) 29.49/12.10 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs28(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs29(x0, x1, ty_Bool) 29.49/12.10 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 29.49/12.10 new_lt12(x0, x1) 29.49/12.10 new_esEs23(x0, x1, ty_Bool) 29.49/12.10 new_ltEs20(x0, x1, ty_Ordering) 29.49/12.10 new_esEs20(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_ltEs14(Nothing, Nothing, x0) 29.49/12.10 new_lt11(x0, x1) 29.49/12.10 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_lt20(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_esEs9(x0, x1, ty_Int) 29.49/12.10 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs8(x0, x1, ty_Float) 29.49/12.10 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 29.49/12.10 new_esEs8(x0, x1, ty_Integer) 29.49/12.10 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.49/12.10 new_esEs32(x0, x1, ty_Bool) 29.49/12.10 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_ltEs7(GT, LT) 29.49/12.10 new_ltEs7(LT, GT) 29.49/12.10 new_compare111(x0, x1, False) 29.49/12.10 new_esEs20(x0, x1, ty_Float) 29.49/12.10 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.49/12.10 new_compare27(x0, x1, ty_Int) 29.49/12.10 new_esEs8(x0, x1, ty_Ordering) 29.49/12.10 new_esEs30(x0, x1, x2, x3, True, x4, x5) 29.49/12.10 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_lt21(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_compare1([], :(x0, x1), x2) 29.49/12.10 new_ltEs19(x0, x1, ty_Int) 29.49/12.10 new_esEs22(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs17(Float(x0, x1), Float(x2, x3)) 29.49/12.10 new_esEs6(Just(x0), Just(x1), ty_Integer) 29.49/12.10 new_compare27(x0, x1, ty_Char) 29.49/12.10 new_esEs13(Double(x0, x1), Double(x2, x3)) 29.49/12.10 new_compare25(x0, x1, False) 29.49/12.10 new_esEs21(x0, x1, ty_Integer) 29.49/12.10 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.49/12.10 new_ltEs20(x0, x1, ty_Int) 29.49/12.10 new_lt21(x0, x1, ty_@0) 29.49/12.10 new_esEs31(x0, x1, ty_Bool) 29.49/12.10 new_esEs6(Nothing, Nothing, x0) 29.49/12.10 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 29.49/12.10 new_esEs8(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_primCmpInt(Neg(Zero), Neg(Zero)) 29.49/12.10 new_compare1([], [], x0) 29.49/12.10 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs6(Just(x0), Nothing, x1) 29.49/12.10 new_ltEs14(Just(x0), Nothing, x1) 29.49/12.10 new_lt17(x0, x1) 29.49/12.10 new_lt4(x0, x1, ty_@0) 29.49/12.10 new_lt4(x0, x1, ty_Double) 29.49/12.10 new_esEs29(x0, x1, ty_Char) 29.49/12.10 new_fsEs(x0) 29.49/12.10 new_compare1(:(x0, x1), :(x2, x3), x4) 29.49/12.10 new_esEs27(x0, x1, ty_Double) 29.49/12.10 new_lt5(x0, x1, ty_Integer) 29.49/12.10 new_primCmpInt(Pos(Zero), Neg(Zero)) 29.49/12.10 new_primCmpInt(Neg(Zero), Pos(Zero)) 29.49/12.10 new_esEs21(x0, x1, ty_Char) 29.49/12.10 new_esEs8(x0, x1, ty_Int) 29.49/12.10 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs28(x0, x1, ty_Ordering) 29.49/12.10 new_esEs28(x0, x1, ty_Integer) 29.49/12.10 new_ltEs9(x0, x1, x2) 29.49/12.10 new_ltEs18(x0, x1) 29.49/12.10 new_esEs9(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_esEs22(x0, x1, ty_Integer) 29.49/12.10 new_esEs15(True, True) 29.49/12.10 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs10(LT, GT) 29.49/12.10 new_esEs10(GT, LT) 29.49/12.10 new_compare27(x0, x1, ty_Float) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) 29.49/12.10 new_ltEs5(x0, x1, ty_Double) 29.49/12.10 new_esEs23(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs32(x0, x1, ty_Ordering) 29.49/12.10 new_esEs31(x0, x1, app(ty_[], x2)) 29.49/12.10 new_lt4(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 29.49/12.10 new_lt5(x0, x1, ty_Ordering) 29.49/12.10 new_compare210(x0, x1, False) 29.49/12.10 new_esEs12([], :(x0, x1), x2) 29.49/12.10 new_lt6(x0, x1, x2, x3) 29.49/12.10 new_esEs21(x0, x1, ty_Int) 29.49/12.10 new_lt20(x0, x1, app(ty_[], x2)) 29.49/12.10 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 29.49/12.10 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 29.49/12.10 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 29.49/12.10 new_primPlusNat1(Succ(x0), Zero) 29.49/12.10 new_esEs29(x0, x1, ty_Int) 29.49/12.10 new_ltEs5(x0, x1, ty_@0) 29.49/12.10 new_esEs32(x0, x1, app(ty_[], x2)) 29.49/12.10 new_ltEs20(x0, x1, ty_Bool) 29.49/12.10 new_esEs23(x0, x1, ty_Float) 29.49/12.10 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 29.49/12.10 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_esEs31(x0, x1, ty_Ordering) 29.49/12.10 new_esEs27(x0, x1, ty_@0) 29.49/12.10 new_esEs31(x0, x1, ty_Integer) 29.49/12.10 new_esEs10(EQ, GT) 29.49/12.10 new_esEs10(GT, EQ) 29.49/12.10 new_esEs8(x0, x1, ty_Bool) 29.49/12.10 new_compare23(x0, x1, True, x2, x3) 29.49/12.10 new_esEs22(x0, x1, ty_Ordering) 29.49/12.10 new_compare27(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.49/12.10 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 29.49/12.10 new_esEs23(x0, x1, ty_Int) 29.49/12.10 new_lt4(x0, x1, ty_Char) 29.49/12.10 new_esEs22(x0, x1, ty_Double) 29.49/12.10 new_esEs29(x0, x1, ty_Double) 29.49/12.10 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs21(x0, x1, ty_Float) 29.49/12.10 new_compare17(x0, x1) 29.49/12.10 new_lt20(x0, x1, ty_@0) 29.49/12.10 new_esEs19(Integer(x0), Integer(x1)) 29.49/12.10 new_ltEs19(x0, x1, ty_@0) 29.49/12.10 new_esEs29(x0, x1, ty_Ordering) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 29.49/12.10 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_lt20(x0, x1, ty_Bool) 29.49/12.10 new_primCmpInt(Neg(Succ(x0)), Neg(Succ(x1))) 29.49/12.10 new_primMulNat0(Zero, Zero) 29.49/12.10 new_esEs24(x0, x1, ty_Char) 29.49/12.10 new_esEs27(x0, x1, ty_Char) 29.49/12.10 new_esEs21(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_lt4(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_ltEs19(x0, x1, ty_Bool) 29.49/12.10 new_primEqNat0(Succ(x0), Zero) 29.49/12.10 new_lt5(x0, x1, ty_@0) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 29.49/12.10 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.49/12.10 new_primEqNat0(Succ(x0), Succ(x1)) 29.49/12.10 new_esEs22(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_lt4(x0, x1, ty_Int) 29.49/12.10 new_esEs28(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs23(x0, x1, ty_Char) 29.49/12.10 new_compare28(Char(x0), Char(x1)) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 29.49/12.10 new_ltEs7(LT, LT) 29.49/12.10 new_compare24(x0, x1, False, x2, x3, x4) 29.49/12.10 new_ltEs10(x0, x1) 29.49/12.10 new_compare113(x0, x1, True) 29.49/12.10 new_ltEs6(Right(x0), Left(x1), x2, x3) 29.49/12.10 new_ltEs6(Left(x0), Right(x1), x2, x3) 29.49/12.10 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 29.49/12.10 new_primCmpNat0(Succ(x0), Succ(x1)) 29.49/12.10 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_lt5(x0, x1, ty_Bool) 29.49/12.10 new_lt21(x0, x1, ty_Float) 29.49/12.10 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_compare10(x0, x1, True, x2, x3) 29.49/12.10 new_ltEs19(x0, x1, ty_Char) 29.49/12.10 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 29.49/12.10 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs21(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_lt5(x0, x1, ty_Char) 29.49/12.10 new_esEs24(x0, x1, ty_Bool) 29.49/12.10 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs6(Just(x0), Just(x1), ty_Float) 29.49/12.10 new_pePe(False, x0) 29.49/12.10 new_esEs10(LT, LT) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 29.49/12.10 new_esEs27(x0, x1, ty_Bool) 29.49/12.10 new_primEqNat0(Zero, Succ(x0)) 29.49/12.10 new_ltEs19(x0, x1, ty_Integer) 29.49/12.10 new_not(True) 29.49/12.10 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_lt20(x0, x1, ty_Char) 29.49/12.10 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 29.49/12.10 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 29.49/12.10 new_esEs22(x0, x1, ty_Char) 29.49/12.10 new_lt5(x0, x1, ty_Int) 29.49/12.10 new_esEs28(x0, x1, ty_Int) 29.49/12.10 new_ltEs12(True, True) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 29.49/12.10 new_ltEs5(x0, x1, ty_Ordering) 29.49/12.10 new_lt4(x0, x1, ty_Bool) 29.49/12.10 new_esEs20(x0, x1, ty_Double) 29.49/12.10 new_esEs27(x0, x1, ty_Ordering) 29.49/12.10 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 29.49/12.10 new_ltEs16(x0, x1) 29.49/12.10 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 29.49/12.10 new_lt4(x0, x1, ty_Ordering) 29.49/12.10 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 29.49/12.10 new_esEs24(x0, x1, ty_Double) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 29.49/12.10 new_compare13(x0, x1, x2, x3, False, x4, x5) 29.49/12.10 new_ltEs12(False, True) 29.49/12.10 new_lt4(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_ltEs12(True, False) 29.49/12.10 new_primMulNat0(Zero, Succ(x0)) 29.49/12.10 new_compare24(x0, x1, True, x2, x3, x4) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 29.49/12.10 new_esEs28(x0, x1, ty_Char) 29.49/12.10 new_esEs28(x0, x1, ty_Double) 29.49/12.10 new_esEs22(x0, x1, ty_Int) 29.49/12.10 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_esEs24(x0, x1, ty_Int) 29.49/12.10 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_compare111(x0, x1, True) 29.49/12.10 new_primPlusNat0(Succ(x0), x1) 29.49/12.10 new_esEs8(x0, x1, app(ty_[], x2)) 29.49/12.10 new_lt20(x0, x1, ty_Int) 29.49/12.10 new_primCompAux0(x0, GT) 29.49/12.10 new_lt4(x0, x1, ty_Integer) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.49/12.10 new_esEs9(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_ltEs7(EQ, GT) 29.49/12.10 new_ltEs7(GT, EQ) 29.49/12.10 new_pePe(True, x0) 29.49/12.10 new_esEs32(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs32(x0, x1, ty_Float) 29.49/12.10 new_esEs20(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_ltEs8(x0, x1) 29.49/12.10 new_lt20(x0, x1, ty_Double) 29.49/12.10 new_lt5(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_esEs24(x0, x1, ty_@0) 29.49/12.10 new_compare27(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs22(x0, x1, ty_@0) 29.49/12.10 new_esEs30(x0, x1, x2, x3, False, x4, x5) 29.49/12.10 new_esEs23(x0, x1, ty_Ordering) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.49/12.10 new_esEs27(x0, x1, ty_Integer) 29.49/12.10 new_esEs31(x0, x1, ty_Float) 29.49/12.10 new_esEs27(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 29.49/12.10 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 29.49/12.10 new_primCmpInt(Pos(Succ(x0)), Pos(Succ(x1))) 29.49/12.10 new_primCmpInt(Pos(Zero), Pos(Zero)) 29.49/12.10 new_ltEs15(@2(x0, x1), @2(x2, x3), x4, x5) 29.49/12.10 new_esEs24(x0, x1, app(ty_[], x2)) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 29.49/12.10 new_lt21(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_ltEs7(GT, GT) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), ty_Float) 29.49/12.10 new_esEs10(GT, GT) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 29.49/12.10 new_ltEs7(LT, EQ) 29.49/12.10 new_ltEs7(EQ, LT) 29.49/12.10 new_esEs9(x0, x1, ty_Double) 29.49/12.10 new_esEs14(@0, @0) 29.49/12.10 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 29.49/12.10 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs29(x0, x1, ty_@0) 29.49/12.10 new_esEs31(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_compare110(x0, x1, True, x2, x3, x4) 29.49/12.10 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 29.49/12.10 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 29.49/12.10 new_esEs10(LT, EQ) 29.49/12.10 new_esEs10(EQ, LT) 29.49/12.10 new_esEs21(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 29.49/12.10 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 29.49/12.10 new_compare112(x0, x1, True, x2) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), ty_Ordering) 29.49/12.10 new_primMulInt(Neg(x0), Neg(x1)) 29.49/12.10 new_esEs21(x0, x1, ty_@0) 29.49/12.10 new_esEs26(x0, x1, ty_Integer) 29.49/12.10 new_ltEs5(x0, x1, ty_Char) 29.49/12.10 new_lt7(x0, x1) 29.49/12.10 new_esEs32(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_primMulNat0(Succ(x0), Succ(x1)) 29.49/12.10 new_lt18(x0, x1, x2) 29.49/12.10 new_lt5(x0, x1, ty_Double) 29.49/12.10 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 29.49/12.10 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 29.49/12.10 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 29.49/12.10 new_esEs20(x0, x1, ty_Ordering) 29.49/12.10 new_esEs23(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_compare27(x0, x1, ty_Ordering) 29.49/12.10 new_esEs8(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_compare12(x0, x1, x2, x3, x4) 29.49/12.10 new_ltEs19(x0, x1, ty_Ordering) 29.49/12.10 new_esEs9(x0, x1, ty_Ordering) 29.49/12.10 new_ltEs19(x0, x1, ty_Double) 29.49/12.10 new_primCmpNat0(Zero, Succ(x0)) 29.49/12.10 new_compare23(x0, x1, False, x2, x3) 29.49/12.10 new_esEs15(False, True) 29.49/12.10 new_esEs15(True, False) 29.49/12.10 new_compare27(x0, x1, app(ty_[], x2)) 29.49/12.10 new_compare27(x0, x1, ty_Double) 29.49/12.10 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 29.49/12.10 new_compare19(x0, x1, x2, x3) 29.49/12.10 new_primPlusNat1(Succ(x0), Succ(x1)) 29.49/12.10 new_primPlusNat0(Zero, x0) 29.49/12.10 new_ltEs5(x0, x1, ty_Bool) 29.49/12.10 new_esEs24(x0, x1, ty_Ordering) 29.49/12.10 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 29.49/12.10 new_primEqNat0(Zero, Zero) 29.49/12.10 new_compare27(x0, x1, ty_@0) 29.49/12.10 new_lt16(x0, x1, x2, x3) 29.49/12.10 new_not(False) 29.49/12.10 new_compare16(x0, x1, x2) 29.49/12.10 new_esEs24(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_lt9(x0, x1, x2) 29.49/12.10 new_lt5(x0, x1, app(ty_[], x2)) 29.49/12.10 new_lt10(x0, x1, x2, x3, x4) 29.49/12.10 new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs27(x0, x1, app(ty_[], x2)) 29.49/12.10 new_ltEs5(x0, x1, ty_Int) 29.49/12.10 new_compare210(x0, x1, True) 29.49/12.10 new_ltEs12(False, False) 29.49/12.10 new_compare10(x0, x1, False, x2, x3) 29.49/12.10 new_primMulNat0(Succ(x0), Zero) 29.49/12.10 new_ltEs20(x0, x1, ty_Double) 29.49/12.10 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_lt20(x0, x1, ty_Integer) 29.49/12.10 new_compare7(Integer(x0), Integer(x1)) 29.49/12.10 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 29.49/12.10 new_esEs8(x0, x1, ty_Double) 29.49/12.10 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs23(x0, x1, ty_Double) 29.49/12.10 new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.49/12.10 new_lt14(x0, x1) 29.49/12.10 new_primCmpNat0(Succ(x0), Zero) 29.49/12.10 new_esEs25(x0, x1, ty_Integer) 29.49/12.10 new_esEs24(x0, x1, ty_Integer) 29.49/12.10 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 29.49/12.10 new_lt8(x0, x1) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.49/12.10 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 29.49/12.10 new_compare15(x0, x1, x2, x3, True, x4, x5, x6) 29.49/12.10 new_lt4(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_compare113(x0, x1, False) 29.49/12.10 new_esEs27(x0, x1, ty_Int) 29.49/12.10 new_compare211(x0, x1, False, x2) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 29.49/12.10 new_esEs29(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_lt20(x0, x1, ty_Ordering) 29.49/12.10 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 29.49/12.10 new_lt21(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs26(x0, x1, ty_Int) 29.49/12.10 new_esEs23(x0, x1, ty_@0) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.49/12.10 new_ltEs5(x0, x1, ty_Float) 29.49/12.10 new_compare6(x0, x1, x2, x3) 29.49/12.10 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_lt4(x0, x1, ty_Float) 29.49/12.10 new_esEs28(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_esEs23(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_primCmpNat0(Zero, Zero) 29.49/12.10 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 29.49/12.10 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 29.49/12.10 new_esEs27(x0, x1, ty_Float) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), ty_Integer) 29.49/12.10 new_compare27(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 29.49/12.10 new_esEs12([], [], x0) 29.49/12.10 29.49/12.10 We have to consider all minimal (P,Q,R)-chains. 29.49/12.10 ---------------------------------------- 29.49/12.10 29.49/12.10 (36) TransformationProof (EQUIVALENT) 29.49/12.10 By rewriting [LPAR04] the rule new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, False, h, ba, bb) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_esEs10(new_compare26(@2(xwv21, xwv22), @2(xwv15, xwv16), new_esEs7(@2(xwv21, xwv22), @2(xwv15, xwv16), h, ba), h, ba), LT), h, ba, bb) at position [8,0,2] we obtained the following new rules [LPAR04]: 29.49/12.10 29.49/12.10 (new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, False, h, ba, bb) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_esEs10(new_compare26(@2(xwv21, xwv22), @2(xwv15, xwv16), new_asAs(new_esEs28(xwv21, xwv15, h), new_esEs29(xwv22, xwv16, ba)), h, ba), LT), h, ba, bb),new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, False, h, ba, bb) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_esEs10(new_compare26(@2(xwv21, xwv22), @2(xwv15, xwv16), new_asAs(new_esEs28(xwv21, xwv15, h), new_esEs29(xwv22, xwv16, ba)), h, ba), LT), h, ba, bb)) 29.49/12.10 29.49/12.10 29.49/12.10 ---------------------------------------- 29.49/12.10 29.49/12.10 (37) 29.49/12.10 Obligation: 29.49/12.10 Q DP problem: 29.49/12.10 The TRS P consists of the following rules: 29.49/12.10 29.49/12.10 new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, True, h, ba, bb) -> new_delFromFM(xwv19, @2(xwv21, xwv22), h, ba, bb) 29.49/12.10 new_delFromFM(Branch(@2(xwv300, xwv301), xwv31, xwv32, xwv33, xwv34), @2(xwv40, xwv41), bc, bd, be) -> new_delFromFM2(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, xwv40, xwv41, new_esEs30(xwv40, xwv41, xwv300, xwv301, new_esEs31(xwv40, xwv300, bc), bc, bd), bc, bd, be) 29.49/12.10 new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, True, h, ba, bb) -> new_delFromFM(xwv20, @2(xwv21, xwv22), h, ba, bb) 29.49/12.10 new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, False, h, ba, bb) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_esEs10(new_compare26(@2(xwv21, xwv22), @2(xwv15, xwv16), new_asAs(new_esEs28(xwv21, xwv15, h), new_esEs29(xwv22, xwv16, ba)), h, ba), LT), h, ba, bb) 29.49/12.10 29.49/12.10 The TRS R consists of the following rules: 29.49/12.10 29.49/12.10 new_compare211(xwv440, xwv460, False, bhe) -> new_compare112(xwv440, xwv460, new_ltEs14(xwv440, xwv460, bhe), bhe) 29.49/12.10 new_esEs20(xwv4410, xwv4610, ty_Integer) -> new_esEs19(xwv4410, xwv4610) 29.49/12.10 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 29.49/12.10 new_primCmpInt(Neg(Succ(xwv4400)), Pos(xwv460)) -> LT 29.49/12.10 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Integer) -> new_ltEs18(xwv4410, xwv4610) 29.49/12.10 new_esEs29(xwv401, xwv3001, app(ty_[], dde)) -> new_esEs12(xwv401, xwv3001, dde) 29.49/12.10 new_esEs13(Double(xwv400, xwv401), Double(xwv3000, xwv3001)) -> new_esEs11(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 29.49/12.10 new_pePe(True, xwv149) -> True 29.49/12.10 new_esEs23(xwv401, xwv3001, app(ty_Maybe, ceg)) -> new_esEs6(xwv401, xwv3001, ceg) 29.49/12.10 new_esEs29(xwv401, xwv3001, ty_Integer) -> new_esEs19(xwv401, xwv3001) 29.49/12.10 new_esEs27(xwv440, xwv460, ty_Char) -> new_esEs16(xwv440, xwv460) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, ty_Ordering) -> new_ltEs7(xwv4410, xwv4610) 29.49/12.10 new_primCmpInt(Neg(Succ(xwv4400)), Neg(Zero)) -> LT 29.49/12.10 new_esEs20(xwv4410, xwv4610, app(ty_[], bfc)) -> new_esEs12(xwv4410, xwv4610, bfc) 29.49/12.10 new_esEs21(xwv400, xwv3000, app(ty_Ratio, cca)) -> new_esEs18(xwv400, xwv3000, cca) 29.49/12.10 new_ltEs5(xwv4412, xwv4612, app(ty_[], eh)) -> new_ltEs9(xwv4412, xwv4612, eh) 29.49/12.10 new_esEs21(xwv400, xwv3000, ty_Ordering) -> new_esEs10(xwv400, xwv3000) 29.49/12.10 new_compare112(xwv440, xwv460, True, bhe) -> LT 29.49/12.10 new_esEs4(Left(xwv400), Right(xwv3000), bbg, bag) -> False 29.49/12.10 new_esEs4(Right(xwv400), Left(xwv3000), bbg, bag) -> False 29.49/12.10 new_ltEs20(xwv441, xwv461, ty_Integer) -> new_ltEs18(xwv441, xwv461) 29.49/12.10 new_esEs9(xwv4411, xwv4611, ty_Ordering) -> new_esEs10(xwv4411, xwv4611) 29.49/12.10 new_esEs8(xwv4410, xwv4610, app(ty_[], cc)) -> new_esEs12(xwv4410, xwv4610, cc) 29.49/12.10 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 29.49/12.10 new_esEs12(:(xwv400, xwv401), [], cbb) -> False 29.49/12.10 new_esEs12([], :(xwv3000, xwv3001), cbb) -> False 29.49/12.10 new_ltEs15(@2(xwv4410, xwv4411), @2(xwv4610, xwv4611), beg, beh) -> new_pePe(new_lt20(xwv4410, xwv4610, beg), new_asAs(new_esEs20(xwv4410, xwv4610, beg), new_ltEs19(xwv4411, xwv4611, beh))) 29.49/12.10 new_lt20(xwv4410, xwv4610, app(ty_Ratio, bgb)) -> new_lt18(xwv4410, xwv4610, bgb) 29.49/12.10 new_esEs29(xwv401, xwv3001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs5(xwv401, xwv3001, dcd, dce, dcf) 29.49/12.10 new_primCmpInt(Pos(Zero), Neg(Succ(xwv4600))) -> GT 29.49/12.10 new_esEs21(xwv400, xwv3000, ty_Bool) -> new_esEs15(xwv400, xwv3000) 29.49/12.10 new_compare26(xwv44, xwv46, True, dae, daf) -> EQ 29.49/12.10 new_lt4(xwv4410, xwv4610, ty_Float) -> new_lt17(xwv4410, xwv4610) 29.49/12.10 new_lt7(xwv440, xwv460) -> new_esEs10(new_compare14(xwv440, xwv460), LT) 29.49/12.10 new_esEs24(xwv402, xwv3002, ty_Int) -> new_esEs11(xwv402, xwv3002) 29.49/12.10 new_lt20(xwv4410, xwv4610, ty_Ordering) -> new_lt7(xwv4410, xwv4610) 29.49/12.10 new_esEs9(xwv4411, xwv4611, ty_Double) -> new_esEs13(xwv4411, xwv4611) 29.49/12.10 new_esEs22(xwv400, xwv3000, app(app(ty_Either, cdf), cdg)) -> new_esEs4(xwv400, xwv3000, cdf, cdg) 29.49/12.10 new_esEs9(xwv4411, xwv4611, app(app(ty_@2, ec), ed)) -> new_esEs7(xwv4411, xwv4611, ec, ed) 29.49/12.10 new_compare211(xwv440, xwv460, True, bhe) -> EQ 29.49/12.10 new_ltEs19(xwv4411, xwv4611, ty_@0) -> new_ltEs11(xwv4411, xwv4611) 29.49/12.10 new_esEs22(xwv400, xwv3000, ty_Float) -> new_esEs17(xwv400, xwv3000) 29.49/12.10 new_lt5(xwv4411, xwv4611, app(app(app(ty_@3, dg), dh), ea)) -> new_lt10(xwv4411, xwv4611, dg, dh, ea) 29.49/12.10 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_@0) -> new_ltEs11(xwv4410, xwv4610) 29.49/12.10 new_compare113(xwv440, xwv460, False) -> GT 29.49/12.10 new_esEs32(xwv32, xwv34, ty_Double) -> new_esEs13(xwv32, xwv34) 29.49/12.10 new_primCompAux0(xwv156, GT) -> GT 29.49/12.10 new_esEs9(xwv4411, xwv4611, ty_@0) -> new_esEs14(xwv4411, xwv4611) 29.49/12.10 new_esEs15(False, False) -> True 29.49/12.10 new_ltEs20(xwv441, xwv461, ty_Bool) -> new_ltEs12(xwv441, xwv461) 29.49/12.10 new_ltEs14(Nothing, Just(xwv4610), bhf) -> True 29.49/12.10 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Double) -> new_ltEs10(xwv4410, xwv4610) 29.49/12.10 new_primEqInt(Pos(Succ(xwv4000)), Pos(Zero)) -> False 29.49/12.10 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, ty_Bool) -> new_esEs15(xwv400, xwv3000) 29.49/12.10 new_compare18(Double(xwv4400, Pos(xwv44010)), Double(xwv4600, Pos(xwv46010))) -> new_compare9(new_sr(xwv4400, Pos(xwv46010)), new_sr(Pos(xwv44010), xwv4600)) 29.49/12.10 new_compare210(xwv440, xwv460, False) -> new_compare113(xwv440, xwv460, new_ltEs7(xwv440, xwv460)) 29.49/12.10 new_esEs20(xwv4410, xwv4610, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs5(xwv4410, xwv4610, bfd, bfe, bff) 29.49/12.10 new_compare27(xwv4400, xwv4600, ty_Integer) -> new_compare7(xwv4400, xwv4600) 29.49/12.10 new_compare1(:(xwv4400, xwv4401), [], cba) -> GT 29.49/12.10 new_esEs30(xwv31, xwv32, xwv33, xwv34, False, gf, gg) -> new_esEs10(new_compare26(@2(xwv31, xwv32), @2(xwv33, xwv34), False, gf, gg), GT) 29.49/12.10 new_lt20(xwv4410, xwv4610, app(app(ty_Either, bfa), bfb)) -> new_lt6(xwv4410, xwv4610, bfa, bfb) 29.49/12.10 new_primEqNat0(Succ(xwv4000), Succ(xwv30000)) -> new_primEqNat0(xwv4000, xwv30000) 29.49/12.10 new_esEs10(GT, GT) -> True 29.49/12.10 new_esEs21(xwv400, xwv3000, ty_Double) -> new_esEs13(xwv400, xwv3000) 29.49/12.10 new_primCompAux0(xwv156, LT) -> LT 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), app(app(ty_@2, dee), def), dah) -> new_ltEs15(xwv4410, xwv4610, dee, def) 29.49/12.10 new_not(True) -> False 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, app(ty_Maybe, dff)) -> new_ltEs14(xwv4410, xwv4610, dff) 29.49/12.10 new_ltEs19(xwv4411, xwv4611, app(ty_Ratio, bhd)) -> new_ltEs17(xwv4411, xwv4611, bhd) 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Int, dah) -> new_ltEs8(xwv4410, xwv4610) 29.49/12.10 new_primCmpNat0(Zero, Zero) -> EQ 29.49/12.10 new_lt4(xwv4410, xwv4610, app(app(ty_@2, da), db)) -> new_lt16(xwv4410, xwv4610, da, db) 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, app(ty_Ratio, bcf)) -> new_esEs18(xwv400, xwv3000, bcf) 29.49/12.10 new_esEs32(xwv32, xwv34, ty_Ordering) -> new_esEs10(xwv32, xwv34) 29.49/12.10 new_esEs29(xwv401, xwv3001, ty_Int) -> new_esEs11(xwv401, xwv3001) 29.49/12.10 new_lt16(xwv440, xwv460, cce, ccf) -> new_esEs10(new_compare19(xwv440, xwv460, cce, ccf), LT) 29.49/12.10 new_lt21(xwv440, xwv460, ty_Char) -> new_lt14(xwv440, xwv460) 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), app(app(ty_Either, ddf), ddg), dah) -> new_ltEs6(xwv4410, xwv4610, ddf, ddg) 29.49/12.10 new_lt19(xwv440, xwv460) -> new_esEs10(new_compare7(xwv440, xwv460), LT) 29.49/12.10 new_esEs21(xwv400, xwv3000, ty_@0) -> new_esEs14(xwv400, xwv3000) 29.49/12.10 new_ltEs19(xwv4411, xwv4611, ty_Bool) -> new_ltEs12(xwv4411, xwv4611) 29.49/12.10 new_primEqNat0(Succ(xwv4000), Zero) -> False 29.49/12.10 new_primEqNat0(Zero, Succ(xwv30000)) -> False 29.49/12.10 new_esEs14(@0, @0) -> True 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), app(ty_Maybe, ded), dah) -> new_ltEs14(xwv4410, xwv4610, ded) 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Float, dah) -> new_ltEs16(xwv4410, xwv4610) 29.49/12.10 new_esEs31(xwv40, xwv300, ty_Ordering) -> new_esEs10(xwv40, xwv300) 29.49/12.10 new_ltEs5(xwv4412, xwv4612, app(app(ty_Either, ef), eg)) -> new_ltEs6(xwv4412, xwv4612, ef, eg) 29.49/12.10 new_esEs24(xwv402, xwv3002, ty_Integer) -> new_esEs19(xwv402, xwv3002) 29.49/12.10 new_esEs31(xwv40, xwv300, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs5(xwv40, xwv300, ccg, cch, cda) 29.49/12.10 new_compare10(xwv440, xwv460, True, ga, gb) -> LT 29.49/12.10 new_esEs28(xwv400, xwv3000, ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.10 new_lt4(xwv4410, xwv4610, ty_Char) -> new_lt14(xwv4410, xwv4610) 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), app(ty_Ratio, bbc), bag) -> new_esEs18(xwv400, xwv3000, bbc) 29.49/12.10 new_lt20(xwv4410, xwv4610, ty_Integer) -> new_lt19(xwv4410, xwv4610) 29.49/12.10 new_lt20(xwv4410, xwv4610, ty_Double) -> new_lt11(xwv4410, xwv4610) 29.49/12.10 new_esEs22(xwv400, xwv3000, app(app(ty_@2, cea), ceb)) -> new_esEs7(xwv400, xwv3000, cea, ceb) 29.49/12.10 new_esEs10(EQ, EQ) -> True 29.49/12.10 new_lt20(xwv4410, xwv4610, app(ty_[], bfc)) -> new_lt9(xwv4410, xwv4610, bfc) 29.49/12.10 new_esEs32(xwv32, xwv34, ty_Float) -> new_esEs17(xwv32, xwv34) 29.49/12.10 new_esEs23(xwv401, xwv3001, ty_Int) -> new_esEs11(xwv401, xwv3001) 29.49/12.10 new_esEs32(xwv32, xwv34, ty_Char) -> new_esEs16(xwv32, xwv34) 29.49/12.10 new_esEs9(xwv4411, xwv4611, app(ty_Ratio, ee)) -> new_esEs18(xwv4411, xwv4611, ee) 29.49/12.10 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Bool) -> new_ltEs12(xwv4410, xwv4610) 29.49/12.10 new_esEs32(xwv32, xwv34, ty_@0) -> new_esEs14(xwv32, xwv34) 29.49/12.10 new_lt8(xwv440, xwv460) -> new_esEs10(new_compare9(xwv440, xwv460), LT) 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), ty_Int, bag) -> new_esEs11(xwv400, xwv3000) 29.49/12.10 new_esEs31(xwv40, xwv300, ty_Bool) -> new_esEs15(xwv40, xwv300) 29.49/12.10 new_primCmpInt(Pos(Succ(xwv4400)), Neg(xwv460)) -> GT 29.49/12.10 new_ltEs20(xwv441, xwv461, ty_@0) -> new_ltEs11(xwv441, xwv461) 29.49/12.10 new_compare9(xwv44, xwv46) -> new_primCmpInt(xwv44, xwv46) 29.49/12.10 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Ordering) -> new_ltEs7(xwv4410, xwv4610) 29.49/12.10 new_ltEs9(xwv441, xwv461, dba) -> new_fsEs(new_compare1(xwv441, xwv461, dba)) 29.49/12.10 new_ltEs14(Just(xwv4410), Just(xwv4610), app(ty_Ratio, cah)) -> new_ltEs17(xwv4410, xwv4610, cah) 29.49/12.10 new_esEs24(xwv402, xwv3002, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs5(xwv402, xwv3002, cff, cfg, cfh) 29.49/12.10 new_ltEs20(xwv441, xwv461, ty_Double) -> new_ltEs10(xwv441, xwv461) 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Char, dah) -> new_ltEs13(xwv4410, xwv4610) 29.49/12.10 new_ltEs19(xwv4411, xwv4611, ty_Integer) -> new_ltEs18(xwv4411, xwv4611) 29.49/12.10 new_esEs31(xwv40, xwv300, ty_Double) -> new_esEs13(xwv40, xwv300) 29.49/12.10 new_ltEs5(xwv4412, xwv4612, app(app(ty_@2, ff), fg)) -> new_ltEs15(xwv4412, xwv4612, ff, fg) 29.49/12.10 new_ltEs7(GT, GT) -> True 29.49/12.10 new_compare1(:(xwv4400, xwv4401), :(xwv4600, xwv4601), cba) -> new_primCompAux1(xwv4400, xwv4600, new_compare1(xwv4401, xwv4601, cba), cba) 29.49/12.10 new_primPlusNat1(Succ(xwv19200), Succ(xwv10900)) -> Succ(Succ(new_primPlusNat1(xwv19200, xwv10900))) 29.49/12.10 new_lt21(xwv440, xwv460, ty_Float) -> new_lt17(xwv440, xwv460) 29.49/12.10 new_compare18(Double(xwv4400, Neg(xwv44010)), Double(xwv4600, Neg(xwv46010))) -> new_compare9(new_sr(xwv4400, Neg(xwv46010)), new_sr(Neg(xwv44010), xwv4600)) 29.49/12.10 new_primCmpNat0(Zero, Succ(xwv46000)) -> LT 29.49/12.10 new_esEs10(LT, EQ) -> False 29.49/12.10 new_esEs10(EQ, LT) -> False 29.49/12.10 new_esEs22(xwv400, xwv3000, app(ty_Ratio, cdh)) -> new_esEs18(xwv400, xwv3000, cdh) 29.49/12.10 new_esEs20(xwv4410, xwv4610, ty_Ordering) -> new_esEs10(xwv4410, xwv4610) 29.49/12.10 new_lt20(xwv4410, xwv4610, ty_Char) -> new_lt14(xwv4410, xwv4610) 29.49/12.10 new_compare210(xwv440, xwv460, True) -> EQ 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.10 new_ltEs19(xwv4411, xwv4611, ty_Double) -> new_ltEs10(xwv4411, xwv4611) 29.49/12.10 new_lt20(xwv4410, xwv4610, ty_@0) -> new_lt12(xwv4410, xwv4610) 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.10 new_esEs21(xwv400, xwv3000, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_esEs5(xwv400, xwv3000, cbc, cbd, cbe) 29.49/12.10 new_primCmpNat0(Succ(xwv44000), Zero) -> GT 29.49/12.10 new_esEs27(xwv440, xwv460, app(app(ty_@2, cce), ccf)) -> new_esEs7(xwv440, xwv460, cce, ccf) 29.49/12.10 new_compare110(xwv440, xwv460, False, gc, gd, ge) -> GT 29.49/12.10 new_esEs9(xwv4411, xwv4611, app(ty_[], df)) -> new_esEs12(xwv4411, xwv4611, df) 29.49/12.10 new_compare13(xwv122, xwv123, xwv124, xwv125, False, bab, bac) -> GT 29.49/12.10 new_pePe(False, xwv149) -> xwv149 29.49/12.10 new_esEs27(xwv440, xwv460, ty_@0) -> new_esEs14(xwv440, xwv460) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, app(ty_Ratio, dga)) -> new_ltEs17(xwv4410, xwv4610, dga) 29.49/12.10 new_esEs27(xwv440, xwv460, ty_Double) -> new_esEs13(xwv440, xwv460) 29.49/12.10 new_esEs9(xwv4411, xwv4611, ty_Integer) -> new_esEs19(xwv4411, xwv4611) 29.49/12.10 new_lt20(xwv4410, xwv4610, ty_Float) -> new_lt17(xwv4410, xwv4610) 29.49/12.10 new_lt4(xwv4410, xwv4610, app(app(app(ty_@3, cd), ce), cf)) -> new_lt10(xwv4410, xwv4610, cd, ce, cf) 29.49/12.10 new_ltEs14(Just(xwv4410), Just(xwv4610), app(app(ty_Either, bhg), bhh)) -> new_ltEs6(xwv4410, xwv4610, bhg, bhh) 29.49/12.10 new_esEs23(xwv401, xwv3001, ty_Float) -> new_esEs17(xwv401, xwv3001) 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), ty_Float, bag) -> new_esEs17(xwv400, xwv3000) 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_@0, dah) -> new_ltEs11(xwv4410, xwv4610) 29.49/12.10 new_esEs21(xwv400, xwv3000, app(app(ty_Either, cbg), cbh)) -> new_esEs4(xwv400, xwv3000, cbg, cbh) 29.49/12.10 new_ltEs20(xwv441, xwv461, ty_Char) -> new_ltEs13(xwv441, xwv461) 29.49/12.10 new_primCmpInt(Pos(Succ(xwv4400)), Pos(Zero)) -> GT 29.49/12.10 new_ltEs19(xwv4411, xwv4611, app(ty_Maybe, bha)) -> new_ltEs14(xwv4411, xwv4611, bha) 29.49/12.10 new_esEs31(xwv40, xwv300, ty_Int) -> new_esEs11(xwv40, xwv300) 29.49/12.10 new_esEs22(xwv400, xwv3000, ty_Ordering) -> new_esEs10(xwv400, xwv3000) 29.49/12.10 new_compare7(Integer(xwv4400), Integer(xwv4600)) -> new_primCmpInt(xwv4400, xwv4600) 29.49/12.10 new_compare27(xwv4400, xwv4600, app(ty_[], chc)) -> new_compare1(xwv4400, xwv4600, chc) 29.49/12.10 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Char) -> new_ltEs13(xwv4410, xwv4610) 29.49/12.10 new_compare23(xwv440, xwv460, True, ga, gb) -> EQ 29.49/12.10 new_esEs22(xwv400, xwv3000, app(ty_Maybe, cde)) -> new_esEs6(xwv400, xwv3000, cde) 29.49/12.10 new_esEs32(xwv32, xwv34, app(ty_Maybe, hc)) -> new_esEs6(xwv32, xwv34, hc) 29.49/12.10 new_esEs28(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 29.49/12.10 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 29.49/12.10 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, app(app(app(ty_@3, dfc), dfd), dfe)) -> new_ltEs4(xwv4410, xwv4610, dfc, dfd, dfe) 29.49/12.10 new_esEs31(xwv40, xwv300, app(app(ty_Either, bbg), bag)) -> new_esEs4(xwv40, xwv300, bbg, bag) 29.49/12.10 new_lt5(xwv4411, xwv4611, ty_Bool) -> new_lt13(xwv4411, xwv4611) 29.49/12.10 new_ltEs19(xwv4411, xwv4611, ty_Char) -> new_ltEs13(xwv4411, xwv4611) 29.49/12.10 new_esEs24(xwv402, xwv3002, app(ty_Ratio, cgd)) -> new_esEs18(xwv402, xwv3002, cgd) 29.49/12.10 new_esEs15(True, True) -> True 29.49/12.10 new_esEs29(xwv401, xwv3001, ty_Bool) -> new_esEs15(xwv401, xwv3001) 29.49/12.10 new_esEs8(xwv4410, xwv4610, ty_Ordering) -> new_esEs10(xwv4410, xwv4610) 29.49/12.10 new_primEqInt(Neg(Succ(xwv4000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 29.49/12.10 new_esEs31(xwv40, xwv300, ty_@0) -> new_esEs14(xwv40, xwv300) 29.49/12.10 new_esEs21(xwv400, xwv3000, ty_Float) -> new_esEs17(xwv400, xwv3000) 29.49/12.10 new_primCmpInt(Neg(Zero), Pos(Succ(xwv4600))) -> LT 29.49/12.10 new_esEs17(Float(xwv400, xwv401), Float(xwv3000, xwv3001)) -> new_esEs11(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Double, dah) -> new_ltEs10(xwv4410, xwv4610) 29.49/12.10 new_lt5(xwv4411, xwv4611, ty_Float) -> new_lt17(xwv4411, xwv4611) 29.49/12.10 new_compare17(xwv440, xwv460) -> new_compare25(xwv440, xwv460, new_esEs15(xwv440, xwv460)) 29.49/12.10 new_compare29(Float(xwv4400, Pos(xwv44010)), Float(xwv4600, Neg(xwv46010))) -> new_compare9(new_sr(xwv4400, Pos(xwv46010)), new_sr(Neg(xwv44010), xwv4600)) 29.49/12.10 new_compare29(Float(xwv4400, Neg(xwv44010)), Float(xwv4600, Pos(xwv46010))) -> new_compare9(new_sr(xwv4400, Neg(xwv46010)), new_sr(Pos(xwv44010), xwv4600)) 29.49/12.10 new_primMulInt(Pos(xwv4010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 29.49/12.10 new_lt12(xwv440, xwv460) -> new_esEs10(new_compare11(xwv440, xwv460), LT) 29.49/12.10 new_lt21(xwv440, xwv460, ty_@0) -> new_lt12(xwv440, xwv460) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, ty_Integer) -> new_ltEs18(xwv4410, xwv4610) 29.49/12.10 new_esEs23(xwv401, xwv3001, app(app(ty_Either, ceh), cfa)) -> new_esEs4(xwv401, xwv3001, ceh, cfa) 29.49/12.10 new_esEs24(xwv402, xwv3002, ty_Ordering) -> new_esEs10(xwv402, xwv3002) 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), app(app(ty_Either, bdg), bdh)) -> new_esEs4(xwv400, xwv3000, bdg, bdh) 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, ty_Double) -> new_esEs13(xwv400, xwv3000) 29.49/12.10 new_ltEs5(xwv4412, xwv4612, ty_Char) -> new_ltEs13(xwv4412, xwv4612) 29.49/12.10 new_esEs24(xwv402, xwv3002, app(ty_Maybe, cga)) -> new_esEs6(xwv402, xwv3002, cga) 29.49/12.10 new_compare11(@0, @0) -> EQ 29.49/12.10 new_esEs29(xwv401, xwv3001, ty_Double) -> new_esEs13(xwv401, xwv3001) 29.49/12.10 new_primMulNat0(Succ(xwv40100), Zero) -> Zero 29.49/12.10 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 29.49/12.10 new_primPlusNat0(Zero, xwv300000) -> Succ(xwv300000) 29.49/12.10 new_esEs23(xwv401, xwv3001, app(ty_[], cfe)) -> new_esEs12(xwv401, xwv3001, cfe) 29.49/12.10 new_esEs31(xwv40, xwv300, ty_Integer) -> new_esEs19(xwv40, xwv300) 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs5(xwv400, xwv3000, bdc, bdd, bde) 29.49/12.10 new_lt15(xwv440, xwv460, bhe) -> new_esEs10(new_compare16(xwv440, xwv460, bhe), LT) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, app(app(ty_Either, deh), dfa)) -> new_ltEs6(xwv4410, xwv4610, deh, dfa) 29.49/12.10 new_esEs23(xwv401, xwv3001, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs5(xwv401, xwv3001, ced, cee, cef) 29.49/12.10 new_lt21(xwv440, xwv460, app(app(app(ty_@3, gc), gd), ge)) -> new_lt10(xwv440, xwv460, gc, gd, ge) 29.49/12.10 new_lt4(xwv4410, xwv4610, app(ty_Ratio, dc)) -> new_lt18(xwv4410, xwv4610, dc) 29.49/12.10 new_lt20(xwv4410, xwv4610, ty_Bool) -> new_lt13(xwv4410, xwv4610) 29.49/12.10 new_ltEs12(False, True) -> True 29.49/12.10 new_ltEs20(xwv441, xwv461, app(ty_Maybe, bhf)) -> new_ltEs14(xwv441, xwv461, bhf) 29.49/12.10 new_esEs20(xwv4410, xwv4610, ty_Int) -> new_esEs11(xwv4410, xwv4610) 29.49/12.10 new_ltEs14(Just(xwv4410), Just(xwv4610), app(ty_Maybe, cae)) -> new_ltEs14(xwv4410, xwv4610, cae) 29.49/12.10 new_esEs32(xwv32, xwv34, ty_Integer) -> new_esEs19(xwv32, xwv34) 29.49/12.10 new_compare26(@2(xwv440, xwv441), @2(xwv460, xwv461), False, dae, daf) -> new_compare15(xwv440, xwv441, xwv460, xwv461, new_lt21(xwv440, xwv460, dae), new_asAs(new_esEs27(xwv440, xwv460, dae), new_ltEs20(xwv441, xwv461, daf)), dae, daf) 29.49/12.10 new_esEs24(xwv402, xwv3002, app(ty_[], cgg)) -> new_esEs12(xwv402, xwv3002, cgg) 29.49/12.10 new_esEs27(xwv440, xwv460, ty_Bool) -> new_esEs15(xwv440, xwv460) 29.49/12.10 new_esEs32(xwv32, xwv34, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs5(xwv32, xwv34, gh, ha, hb) 29.49/12.10 new_compare1([], [], cba) -> EQ 29.49/12.10 new_compare111(xwv440, xwv460, True) -> LT 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, ty_Char) -> new_esEs16(xwv400, xwv3000) 29.49/12.10 new_lt21(xwv440, xwv460, ty_Double) -> new_lt11(xwv440, xwv460) 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Bool, dah) -> new_ltEs12(xwv4410, xwv4610) 29.49/12.10 new_esEs32(xwv32, xwv34, app(app(ty_Either, hd), he)) -> new_esEs4(xwv32, xwv34, hd, he) 29.49/12.10 new_esEs28(xwv400, xwv3000, ty_Bool) -> new_esEs15(xwv400, xwv3000) 29.49/12.10 new_esEs9(xwv4411, xwv4611, ty_Float) -> new_esEs17(xwv4411, xwv4611) 29.49/12.10 new_compare15(xwv122, xwv123, xwv124, xwv125, True, xwv127, bab, bac) -> new_compare13(xwv122, xwv123, xwv124, xwv125, True, bab, bac) 29.49/12.10 new_primPlusNat1(Succ(xwv19200), Zero) -> Succ(xwv19200) 29.49/12.10 new_primPlusNat1(Zero, Succ(xwv10900)) -> Succ(xwv10900) 29.49/12.10 new_esEs21(xwv400, xwv3000, ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs5(xwv400, xwv3000, bbh, bca, bcb) 29.49/12.10 new_compare19(xwv440, xwv460, cce, ccf) -> new_compare26(xwv440, xwv460, new_esEs7(xwv440, xwv460, cce, ccf), cce, ccf) 29.49/12.10 new_compare8(:%(xwv4400, xwv4401), :%(xwv4600, xwv4601), ty_Integer) -> new_compare7(new_sr0(xwv4400, xwv4601), new_sr0(xwv4600, xwv4401)) 29.49/12.10 new_ltEs14(Just(xwv4410), Just(xwv4610), app(ty_[], caa)) -> new_ltEs9(xwv4410, xwv4610, caa) 29.49/12.10 new_esEs8(xwv4410, xwv4610, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs5(xwv4410, xwv4610, cd, ce, cf) 29.49/12.10 new_esEs9(xwv4411, xwv4611, app(ty_Maybe, eb)) -> new_esEs6(xwv4411, xwv4611, eb) 29.49/12.10 new_lt13(xwv440, xwv460) -> new_esEs10(new_compare17(xwv440, xwv460), LT) 29.49/12.10 new_lt9(xwv440, xwv460, cba) -> new_esEs10(new_compare1(xwv440, xwv460, cba), LT) 29.49/12.10 new_ltEs12(True, True) -> True 29.49/12.10 new_ltEs5(xwv4412, xwv4612, app(ty_Maybe, fd)) -> new_ltEs14(xwv4412, xwv4612, fd) 29.49/12.10 new_lt21(xwv440, xwv460, app(ty_Ratio, bef)) -> new_lt18(xwv440, xwv460, bef) 29.49/12.10 new_esEs9(xwv4411, xwv4611, app(app(ty_Either, dd), de)) -> new_esEs4(xwv4411, xwv4611, dd, de) 29.49/12.10 new_esEs23(xwv401, xwv3001, ty_Ordering) -> new_esEs10(xwv401, xwv3001) 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), ty_Float) -> new_esEs17(xwv400, xwv3000) 29.49/12.10 new_esEs29(xwv401, xwv3001, ty_@0) -> new_esEs14(xwv401, xwv3001) 29.49/12.10 new_primMulInt(Neg(xwv4010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 29.49/12.10 new_primCmpInt(Pos(Zero), Pos(Succ(xwv4600))) -> new_primCmpNat0(Zero, Succ(xwv4600)) 29.49/12.10 new_esEs8(xwv4410, xwv4610, app(app(ty_Either, ca), cb)) -> new_esEs4(xwv4410, xwv4610, ca, cb) 29.49/12.10 new_esEs9(xwv4411, xwv4611, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs5(xwv4411, xwv4611, dg, dh, ea) 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, ty_@0) -> new_esEs14(xwv400, xwv3000) 29.49/12.10 new_esEs8(xwv4410, xwv4610, ty_Int) -> new_esEs11(xwv4410, xwv4610) 29.49/12.10 new_esEs19(Integer(xwv400), Integer(xwv3000)) -> new_primEqInt(xwv400, xwv3000) 29.49/12.10 new_lt21(xwv440, xwv460, ty_Bool) -> new_lt13(xwv440, xwv460) 29.49/12.10 new_lt5(xwv4411, xwv4611, app(ty_Ratio, ee)) -> new_lt18(xwv4411, xwv4611, ee) 29.49/12.10 new_ltEs18(xwv441, xwv461) -> new_fsEs(new_compare7(xwv441, xwv461)) 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), app(ty_Maybe, bdf)) -> new_esEs6(xwv400, xwv3000, bdf) 29.49/12.10 new_esEs6(Nothing, Just(xwv3000), bdb) -> False 29.49/12.10 new_esEs6(Just(xwv400), Nothing, bdb) -> False 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, app(ty_Maybe, bcc)) -> new_esEs6(xwv400, xwv3000, bcc) 29.49/12.10 new_esEs6(Nothing, Nothing, bdb) -> True 29.49/12.10 new_esEs21(xwv400, xwv3000, ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.10 new_esEs8(xwv4410, xwv4610, ty_Integer) -> new_esEs19(xwv4410, xwv4610) 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), ty_Ordering, bag) -> new_esEs10(xwv400, xwv3000) 29.49/12.10 new_esEs10(LT, LT) -> True 29.49/12.10 new_compare27(xwv4400, xwv4600, ty_Char) -> new_compare28(xwv4400, xwv4600) 29.49/12.10 new_ltEs8(xwv441, xwv461) -> new_fsEs(new_compare9(xwv441, xwv461)) 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), ty_Ordering) -> new_esEs10(xwv400, xwv3000) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, ty_Char) -> new_ltEs13(xwv4410, xwv4610) 29.49/12.10 new_esEs32(xwv32, xwv34, ty_Int) -> new_esEs11(xwv32, xwv34) 29.49/12.10 new_lt5(xwv4411, xwv4611, app(app(ty_Either, dd), de)) -> new_lt6(xwv4411, xwv4611, dd, de) 29.49/12.10 new_lt20(xwv4410, xwv4610, app(app(app(ty_@3, bfd), bfe), bff)) -> new_lt10(xwv4410, xwv4610, bfd, bfe, bff) 29.49/12.10 new_ltEs7(LT, LT) -> True 29.49/12.10 new_esEs8(xwv4410, xwv4610, ty_Char) -> new_esEs16(xwv4410, xwv4610) 29.49/12.10 new_ltEs5(xwv4412, xwv4612, ty_@0) -> new_ltEs11(xwv4412, xwv4612) 29.49/12.10 new_primMulInt(Pos(xwv4010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 29.49/12.10 new_primMulInt(Neg(xwv4010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), ty_Bool, bag) -> new_esEs15(xwv400, xwv3000) 29.49/12.10 new_compare25(xwv440, xwv460, False) -> new_compare111(xwv440, xwv460, new_ltEs12(xwv440, xwv460)) 29.49/12.10 new_ltEs19(xwv4411, xwv4611, app(ty_[], bge)) -> new_ltEs9(xwv4411, xwv4611, bge) 29.49/12.10 new_esEs28(xwv400, xwv3000, ty_Double) -> new_esEs13(xwv400, xwv3000) 29.49/12.10 new_esEs31(xwv40, xwv300, app(ty_Maybe, bdb)) -> new_esEs6(xwv40, xwv300, bdb) 29.49/12.10 new_lt4(xwv4410, xwv4610, app(ty_Maybe, cg)) -> new_lt15(xwv4410, xwv4610, cg) 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Ordering, dah) -> new_ltEs7(xwv4410, xwv4610) 29.49/12.10 new_esEs22(xwv400, xwv3000, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xwv400, xwv3000, cdb, cdc, cdd) 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, app(app(ty_@2, bcg), bch)) -> new_esEs7(xwv400, xwv3000, bcg, bch) 29.49/12.10 new_compare27(xwv4400, xwv4600, app(app(ty_@2, chh), daa)) -> new_compare19(xwv4400, xwv4600, chh, daa) 29.49/12.10 new_lt4(xwv4410, xwv4610, ty_Bool) -> new_lt13(xwv4410, xwv4610) 29.49/12.10 new_compare27(xwv4400, xwv4600, ty_@0) -> new_compare11(xwv4400, xwv4600) 29.49/12.10 new_sr0(Integer(xwv46000), Integer(xwv44010)) -> Integer(new_primMulInt(xwv46000, xwv44010)) 29.49/12.10 new_ltEs5(xwv4412, xwv4612, ty_Double) -> new_ltEs10(xwv4412, xwv4612) 29.49/12.10 new_esEs29(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 29.49/12.10 new_esEs28(xwv400, xwv3000, ty_@0) -> new_esEs14(xwv400, xwv3000) 29.49/12.10 new_compare24(xwv440, xwv460, True, gc, gd, ge) -> EQ 29.49/12.10 new_lt4(xwv4410, xwv4610, ty_Int) -> new_lt8(xwv4410, xwv4610) 29.49/12.10 new_esEs22(xwv400, xwv3000, ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.10 new_ltEs19(xwv4411, xwv4611, app(app(ty_@2, bhb), bhc)) -> new_ltEs15(xwv4411, xwv4611, bhb, bhc) 29.49/12.10 new_compare27(xwv4400, xwv4600, ty_Double) -> new_compare18(xwv4400, xwv4600) 29.49/12.10 new_asAs(True, xwv68) -> xwv68 29.49/12.10 new_esEs21(xwv400, xwv3000, app(ty_Maybe, cbf)) -> new_esEs6(xwv400, xwv3000, cbf) 29.49/12.10 new_compare27(xwv4400, xwv4600, app(ty_Ratio, dab)) -> new_compare8(xwv4400, xwv4600, dab) 29.49/12.10 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Int) -> new_ltEs8(xwv4410, xwv4610) 29.49/12.10 new_compare10(xwv440, xwv460, False, ga, gb) -> GT 29.49/12.10 new_esEs27(xwv440, xwv460, ty_Integer) -> new_esEs19(xwv440, xwv460) 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), ty_Bool) -> new_esEs15(xwv400, xwv3000) 29.49/12.10 new_compare113(xwv440, xwv460, True) -> LT 29.49/12.10 new_esEs24(xwv402, xwv3002, ty_@0) -> new_esEs14(xwv402, xwv3002) 29.49/12.10 new_primCompAux1(xwv4400, xwv4600, xwv144, cba) -> new_primCompAux0(xwv144, new_compare27(xwv4400, xwv4600, cba)) 29.49/12.10 new_esEs29(xwv401, xwv3001, ty_Float) -> new_esEs17(xwv401, xwv3001) 29.49/12.10 new_esEs23(xwv401, xwv3001, app(ty_Ratio, cfb)) -> new_esEs18(xwv401, xwv3001, cfb) 29.49/12.10 new_lt5(xwv4411, xwv4611, ty_Double) -> new_lt11(xwv4411, xwv4611) 29.49/12.10 new_esEs16(Char(xwv400), Char(xwv3000)) -> new_primEqNat0(xwv400, xwv3000) 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), app(app(ty_Either, bba), bbb), bag) -> new_esEs4(xwv400, xwv3000, bba, bbb) 29.49/12.10 new_compare29(Float(xwv4400, Pos(xwv44010)), Float(xwv4600, Pos(xwv46010))) -> new_compare9(new_sr(xwv4400, Pos(xwv46010)), new_sr(Pos(xwv44010), xwv4600)) 29.49/12.10 new_lt21(xwv440, xwv460, app(ty_[], cba)) -> new_lt9(xwv440, xwv460, cba) 29.49/12.10 new_esEs24(xwv402, xwv3002, ty_Double) -> new_esEs13(xwv402, xwv3002) 29.49/12.10 new_esEs23(xwv401, xwv3001, ty_Bool) -> new_esEs15(xwv401, xwv3001) 29.49/12.10 new_ltEs20(xwv441, xwv461, app(app(ty_@2, beg), beh)) -> new_ltEs15(xwv441, xwv461, beg, beh) 29.49/12.10 new_ltEs20(xwv441, xwv461, ty_Float) -> new_ltEs16(xwv441, xwv461) 29.49/12.10 new_esEs22(xwv400, xwv3000, ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.10 new_esEs24(xwv402, xwv3002, app(app(ty_@2, cge), cgf)) -> new_esEs7(xwv402, xwv3002, cge, cgf) 29.49/12.10 new_esEs9(xwv4411, xwv4611, ty_Int) -> new_esEs11(xwv4411, xwv4611) 29.49/12.10 new_esEs20(xwv4410, xwv4610, app(app(ty_Either, bfa), bfb)) -> new_esEs4(xwv4410, xwv4610, bfa, bfb) 29.49/12.10 new_esEs24(xwv402, xwv3002, ty_Float) -> new_esEs17(xwv402, xwv3002) 29.49/12.10 new_sr(xwv401, xwv3000) -> new_primMulInt(xwv401, xwv3000) 29.49/12.10 new_ltEs11(xwv441, xwv461) -> new_fsEs(new_compare11(xwv441, xwv461)) 29.49/12.10 new_esEs8(xwv4410, xwv4610, app(ty_Maybe, cg)) -> new_esEs6(xwv4410, xwv4610, cg) 29.49/12.10 new_compare27(xwv4400, xwv4600, ty_Ordering) -> new_compare14(xwv4400, xwv4600) 29.49/12.10 new_primMulNat0(Zero, Zero) -> Zero 29.49/12.10 new_ltEs5(xwv4412, xwv4612, app(ty_Ratio, fh)) -> new_ltEs17(xwv4412, xwv4612, fh) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, ty_Float) -> new_ltEs16(xwv4410, xwv4610) 29.49/12.10 new_compare111(xwv440, xwv460, False) -> GT 29.49/12.10 new_ltEs13(xwv441, xwv461) -> new_fsEs(new_compare28(xwv441, xwv461)) 29.49/12.10 new_ltEs12(True, False) -> False 29.49/12.10 new_esEs8(xwv4410, xwv4610, ty_Float) -> new_esEs17(xwv4410, xwv4610) 29.49/12.10 new_lt5(xwv4411, xwv4611, ty_Integer) -> new_lt19(xwv4411, xwv4611) 29.49/12.10 new_esEs23(xwv401, xwv3001, app(app(ty_@2, cfc), cfd)) -> new_esEs7(xwv401, xwv3001, cfc, cfd) 29.49/12.10 new_ltEs7(LT, EQ) -> True 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), app(ty_[], bed)) -> new_esEs12(xwv400, xwv3000, bed) 29.49/12.10 new_lt4(xwv4410, xwv4610, ty_@0) -> new_lt12(xwv4410, xwv4610) 29.49/12.10 new_esEs31(xwv40, xwv300, ty_Char) -> new_esEs16(xwv40, xwv300) 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), app(ty_Ratio, bea)) -> new_esEs18(xwv400, xwv3000, bea) 29.49/12.10 new_compare8(:%(xwv4400, xwv4401), :%(xwv4600, xwv4601), ty_Int) -> new_compare9(new_sr(xwv4400, xwv4601), new_sr(xwv4600, xwv4401)) 29.49/12.10 new_esEs23(xwv401, xwv3001, ty_Integer) -> new_esEs19(xwv401, xwv3001) 29.49/12.10 new_esEs27(xwv440, xwv460, app(ty_Ratio, bef)) -> new_esEs18(xwv440, xwv460, bef) 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), app(ty_[], bbf), bag) -> new_esEs12(xwv400, xwv3000, bbf) 29.49/12.10 new_esEs28(xwv400, xwv3000, app(ty_Ratio, dbh)) -> new_esEs18(xwv400, xwv3000, dbh) 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.10 new_lt5(xwv4411, xwv4611, app(ty_[], df)) -> new_lt9(xwv4411, xwv4611, df) 29.49/12.10 new_primCmpInt(Pos(Succ(xwv4400)), Pos(Succ(xwv4600))) -> new_primCmpNat0(xwv4400, xwv4600) 29.49/12.10 new_fsEs(xwv135) -> new_not(new_esEs10(xwv135, GT)) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, ty_Int) -> new_ltEs8(xwv4410, xwv4610) 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, app(app(ty_Either, bcd), bce)) -> new_esEs4(xwv400, xwv3000, bcd, bce) 29.49/12.10 new_esEs21(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 29.49/12.10 new_ltEs20(xwv441, xwv461, app(ty_[], dba)) -> new_ltEs9(xwv441, xwv461, dba) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, app(ty_[], dfb)) -> new_ltEs9(xwv4410, xwv4610, dfb) 29.49/12.10 new_compare18(Double(xwv4400, Pos(xwv44010)), Double(xwv4600, Neg(xwv46010))) -> new_compare9(new_sr(xwv4400, Pos(xwv46010)), new_sr(Neg(xwv44010), xwv4600)) 29.49/12.10 new_compare18(Double(xwv4400, Neg(xwv44010)), Double(xwv4600, Pos(xwv46010))) -> new_compare9(new_sr(xwv4400, Neg(xwv46010)), new_sr(Pos(xwv44010), xwv4600)) 29.49/12.10 new_lt17(xwv440, xwv460) -> new_esEs10(new_compare29(xwv440, xwv460), LT) 29.49/12.10 new_ltEs5(xwv4412, xwv4612, ty_Integer) -> new_ltEs18(xwv4412, xwv4612) 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, app(ty_[], bda)) -> new_esEs12(xwv400, xwv3000, bda) 29.49/12.10 new_primCompAux0(xwv156, EQ) -> xwv156 29.49/12.10 new_esEs18(:%(xwv400, xwv401), :%(xwv3000, xwv3001), cgh) -> new_asAs(new_esEs25(xwv400, xwv3000, cgh), new_esEs26(xwv401, xwv3001, cgh)) 29.49/12.10 new_lt5(xwv4411, xwv4611, ty_@0) -> new_lt12(xwv4411, xwv4611) 29.49/12.10 new_lt21(xwv440, xwv460, ty_Int) -> new_lt8(xwv440, xwv460) 29.49/12.10 new_compare15(xwv122, xwv123, xwv124, xwv125, False, xwv127, bab, bac) -> new_compare13(xwv122, xwv123, xwv124, xwv125, xwv127, bab, bac) 29.49/12.10 new_compare23(xwv440, xwv460, False, ga, gb) -> new_compare10(xwv440, xwv460, new_ltEs6(xwv440, xwv460, ga, gb), ga, gb) 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), app(app(ty_@2, beb), bec)) -> new_esEs7(xwv400, xwv3000, beb, bec) 29.49/12.10 new_esEs22(xwv400, xwv3000, app(ty_[], cec)) -> new_esEs12(xwv400, xwv3000, cec) 29.49/12.10 new_esEs24(xwv402, xwv3002, ty_Bool) -> new_esEs15(xwv402, xwv3002) 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), ty_Integer, bag) -> new_esEs19(xwv400, xwv3000) 29.49/12.10 new_ltEs17(xwv441, xwv461, bee) -> new_fsEs(new_compare8(xwv441, xwv461, bee)) 29.49/12.10 new_ltEs12(False, False) -> True 29.49/12.10 new_esEs29(xwv401, xwv3001, app(app(ty_Either, dch), dda)) -> new_esEs4(xwv401, xwv3001, dch, dda) 29.49/12.10 new_primEqInt(Neg(Succ(xwv4000)), Neg(Zero)) -> False 29.49/12.10 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 29.49/12.10 new_esEs27(xwv440, xwv460, app(ty_[], cba)) -> new_esEs12(xwv440, xwv460, cba) 29.49/12.10 new_lt4(xwv4410, xwv4610, app(ty_[], cc)) -> new_lt9(xwv4410, xwv4610, cc) 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), app(app(ty_@2, bbd), bbe), bag) -> new_esEs7(xwv400, xwv3000, bbd, bbe) 29.49/12.10 new_esEs20(xwv4410, xwv4610, ty_Char) -> new_esEs16(xwv4410, xwv4610) 29.49/12.10 new_lt5(xwv4411, xwv4611, ty_Char) -> new_lt14(xwv4411, xwv4611) 29.49/12.10 new_esEs20(xwv4410, xwv4610, ty_@0) -> new_esEs14(xwv4410, xwv4610) 29.49/12.10 new_primEqInt(Pos(Succ(xwv4000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 29.49/12.10 new_esEs20(xwv4410, xwv4610, ty_Double) -> new_esEs13(xwv4410, xwv4610) 29.49/12.10 new_ltEs20(xwv441, xwv461, app(app(ty_Either, dag), dah)) -> new_ltEs6(xwv441, xwv461, dag, dah) 29.49/12.10 new_ltEs14(Just(xwv4410), Just(xwv4610), app(app(ty_@2, caf), cag)) -> new_ltEs15(xwv4410, xwv4610, caf, cag) 29.49/12.10 new_esEs28(xwv400, xwv3000, app(app(ty_@2, dca), dcb)) -> new_esEs7(xwv400, xwv3000, dca, dcb) 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), app(ty_[], ddh), dah) -> new_ltEs9(xwv4410, xwv4610, ddh) 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.10 new_esEs20(xwv4410, xwv4610, app(ty_Maybe, bfg)) -> new_esEs6(xwv4410, xwv4610, bfg) 29.49/12.10 new_ltEs14(Just(xwv4410), Nothing, bhf) -> False 29.49/12.10 new_ltEs14(Nothing, Nothing, bhf) -> True 29.49/12.10 new_primEqInt(Pos(Succ(xwv4000)), Neg(xwv3000)) -> False 29.49/12.10 new_primEqInt(Neg(Succ(xwv4000)), Pos(xwv3000)) -> False 29.49/12.10 new_compare27(xwv4400, xwv4600, app(app(app(ty_@3, chd), che), chf)) -> new_compare12(xwv4400, xwv4600, chd, che, chf) 29.49/12.10 new_lt4(xwv4410, xwv4610, ty_Double) -> new_lt11(xwv4410, xwv4610) 29.49/12.10 new_lt21(xwv440, xwv460, app(ty_Maybe, bhe)) -> new_lt15(xwv440, xwv460, bhe) 29.49/12.10 new_esEs7(@2(xwv400, xwv401), @2(xwv3000, xwv3001), dac, dad) -> new_asAs(new_esEs28(xwv400, xwv3000, dac), new_esEs29(xwv401, xwv3001, dad)) 29.49/12.10 new_esEs5(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), ccg, cch, cda) -> new_asAs(new_esEs22(xwv400, xwv3000, ccg), new_asAs(new_esEs23(xwv401, xwv3001, cch), new_esEs24(xwv402, xwv3002, cda))) 29.49/12.10 new_primCmpInt(Neg(Zero), Neg(Succ(xwv4600))) -> new_primCmpNat0(Succ(xwv4600), Zero) 29.49/12.10 new_lt11(xwv440, xwv460) -> new_esEs10(new_compare18(xwv440, xwv460), LT) 29.49/12.10 new_esEs20(xwv4410, xwv4610, ty_Float) -> new_esEs17(xwv4410, xwv4610) 29.49/12.10 new_ltEs5(xwv4412, xwv4612, ty_Bool) -> new_ltEs12(xwv4412, xwv4612) 29.49/12.10 new_lt4(xwv4410, xwv4610, ty_Integer) -> new_lt19(xwv4410, xwv4610) 29.49/12.10 new_esEs24(xwv402, xwv3002, app(app(ty_Either, cgb), cgc)) -> new_esEs4(xwv402, xwv3002, cgb, cgc) 29.49/12.10 new_ltEs19(xwv4411, xwv4611, app(app(ty_Either, bgc), bgd)) -> new_ltEs6(xwv4411, xwv4611, bgc, bgd) 29.49/12.10 new_esEs12(:(xwv400, xwv401), :(xwv3000, xwv3001), cbb) -> new_asAs(new_esEs21(xwv400, xwv3000, cbb), new_esEs12(xwv401, xwv3001, cbb)) 29.49/12.10 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 29.49/12.10 new_esEs25(xwv400, xwv3000, ty_Int) -> new_esEs11(xwv400, xwv3000) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, ty_Double) -> new_ltEs10(xwv4410, xwv4610) 29.49/12.10 new_ltEs19(xwv4411, xwv4611, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs4(xwv4411, xwv4611, bgf, bgg, bgh) 29.49/12.10 new_compare27(xwv4400, xwv4600, ty_Int) -> new_compare9(xwv4400, xwv4600) 29.49/12.10 new_esEs22(xwv400, xwv3000, ty_Bool) -> new_esEs15(xwv400, xwv3000) 29.49/12.10 new_lt5(xwv4411, xwv4611, app(ty_Maybe, eb)) -> new_lt15(xwv4411, xwv4611, eb) 29.49/12.10 new_esEs10(LT, GT) -> False 29.49/12.10 new_esEs10(GT, LT) -> False 29.49/12.10 new_esEs8(xwv4410, xwv4610, ty_Double) -> new_esEs13(xwv4410, xwv4610) 29.49/12.10 new_ltEs5(xwv4412, xwv4612, ty_Ordering) -> new_ltEs7(xwv4412, xwv4612) 29.49/12.10 new_compare110(xwv440, xwv460, True, gc, gd, ge) -> LT 29.49/12.10 new_lt21(xwv440, xwv460, app(app(ty_Either, ga), gb)) -> new_lt6(xwv440, xwv460, ga, gb) 29.49/12.10 new_ltEs4(@3(xwv4410, xwv4411, xwv4412), @3(xwv4610, xwv4611, xwv4612), bf, bg, bh) -> new_pePe(new_lt4(xwv4410, xwv4610, bf), new_asAs(new_esEs8(xwv4410, xwv4610, bf), new_pePe(new_lt5(xwv4411, xwv4611, bg), new_asAs(new_esEs9(xwv4411, xwv4611, bg), new_ltEs5(xwv4412, xwv4612, bh))))) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, ty_@0) -> new_ltEs11(xwv4410, xwv4610) 29.49/12.10 new_compare13(xwv122, xwv123, xwv124, xwv125, True, bab, bac) -> LT 29.49/12.10 new_compare16(xwv440, xwv460, bhe) -> new_compare211(xwv440, xwv460, new_esEs6(xwv440, xwv460, bhe), bhe) 29.49/12.10 new_ltEs7(EQ, GT) -> True 29.49/12.10 new_esEs28(xwv400, xwv3000, ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.10 new_esEs31(xwv40, xwv300, ty_Float) -> new_esEs17(xwv40, xwv300) 29.49/12.10 new_ltEs6(Right(xwv4410), Left(xwv4610), dag, dah) -> False 29.49/12.10 new_not(False) -> True 29.49/12.10 new_lt14(xwv440, xwv460) -> new_esEs10(new_compare28(xwv440, xwv460), LT) 29.49/12.10 new_esEs21(xwv400, xwv3000, app(ty_[], ccd)) -> new_esEs12(xwv400, xwv3000, ccd) 29.49/12.10 new_esEs28(xwv400, xwv3000, app(ty_[], dcc)) -> new_esEs12(xwv400, xwv3000, dcc) 29.49/12.10 new_lt4(xwv4410, xwv4610, app(app(ty_Either, ca), cb)) -> new_lt6(xwv4410, xwv4610, ca, cb) 29.49/12.10 new_esEs8(xwv4410, xwv4610, app(app(ty_@2, da), db)) -> new_esEs7(xwv4410, xwv4610, da, db) 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, ty_Float) -> new_esEs17(xwv400, xwv3000) 29.49/12.10 new_esEs29(xwv401, xwv3001, ty_Ordering) -> new_esEs10(xwv401, xwv3001) 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), app(ty_Ratio, deg), dah) -> new_ltEs17(xwv4410, xwv4610, deg) 29.49/12.10 new_esEs8(xwv4410, xwv4610, ty_@0) -> new_esEs14(xwv4410, xwv4610) 29.49/12.10 new_compare1([], :(xwv4600, xwv4601), cba) -> LT 29.49/12.10 new_esEs20(xwv4410, xwv4610, app(ty_Ratio, bgb)) -> new_esEs18(xwv4410, xwv4610, bgb) 29.49/12.10 new_compare28(Char(xwv4400), Char(xwv4600)) -> new_primCmpNat0(xwv4400, xwv4600) 29.49/12.10 new_ltEs7(EQ, EQ) -> True 29.49/12.10 new_ltEs19(xwv4411, xwv4611, ty_Ordering) -> new_ltEs7(xwv4411, xwv4611) 29.49/12.10 new_lt5(xwv4411, xwv4611, ty_Int) -> new_lt8(xwv4411, xwv4611) 29.49/12.10 new_ltEs7(GT, EQ) -> False 29.49/12.10 new_lt10(xwv440, xwv460, gc, gd, ge) -> new_esEs10(new_compare12(xwv440, xwv460, gc, gd, ge), LT) 29.49/12.10 new_esEs28(xwv400, xwv3000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs5(xwv400, xwv3000, dbb, dbc, dbd) 29.49/12.10 new_esEs20(xwv4410, xwv4610, ty_Bool) -> new_esEs15(xwv4410, xwv4610) 29.49/12.10 new_compare25(xwv440, xwv460, True) -> EQ 29.49/12.10 new_lt4(xwv4410, xwv4610, ty_Ordering) -> new_lt7(xwv4410, xwv4610) 29.49/12.10 new_esEs29(xwv401, xwv3001, app(app(ty_@2, ddc), ddd)) -> new_esEs7(xwv401, xwv3001, ddc, ddd) 29.49/12.10 new_esEs32(xwv32, xwv34, ty_Bool) -> new_esEs15(xwv32, xwv34) 29.49/12.10 new_esEs29(xwv401, xwv3001, app(ty_Ratio, ddb)) -> new_esEs18(xwv401, xwv3001, ddb) 29.49/12.10 new_esEs27(xwv440, xwv460, ty_Ordering) -> new_esEs10(xwv440, xwv460) 29.49/12.10 new_primPlusNat0(Succ(xwv1130), xwv300000) -> Succ(Succ(new_primPlusNat1(xwv1130, xwv300000))) 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), ty_Integer, dah) -> new_ltEs18(xwv4410, xwv4610) 29.49/12.10 new_lt20(xwv4410, xwv4610, ty_Int) -> new_lt8(xwv4410, xwv4610) 29.49/12.10 new_esEs27(xwv440, xwv460, ty_Int) -> new_esEs11(xwv440, xwv460) 29.49/12.10 new_compare12(xwv440, xwv460, gc, gd, ge) -> new_compare24(xwv440, xwv460, new_esEs5(xwv440, xwv460, gc, gd, ge), gc, gd, ge) 29.49/12.10 new_ltEs20(xwv441, xwv461, app(ty_Ratio, bee)) -> new_ltEs17(xwv441, xwv461, bee) 29.49/12.10 new_ltEs20(xwv441, xwv461, ty_Ordering) -> new_ltEs7(xwv441, xwv461) 29.49/12.10 new_lt20(xwv4410, xwv4610, app(ty_Maybe, bfg)) -> new_lt15(xwv4410, xwv4610, bfg) 29.49/12.10 new_esEs29(xwv401, xwv3001, app(ty_Maybe, dcg)) -> new_esEs6(xwv401, xwv3001, dcg) 29.49/12.10 new_ltEs5(xwv4412, xwv4612, app(app(app(ty_@3, fa), fb), fc)) -> new_ltEs4(xwv4412, xwv4612, fa, fb, fc) 29.49/12.10 new_ltEs14(Just(xwv4410), Just(xwv4610), app(app(app(ty_@3, cab), cac), cad)) -> new_ltEs4(xwv4410, xwv4610, cab, cac, cad) 29.49/12.10 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 29.49/12.10 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 29.49/12.10 new_esEs8(xwv4410, xwv4610, app(ty_Ratio, dc)) -> new_esEs18(xwv4410, xwv4610, dc) 29.49/12.10 new_primPlusNat1(Zero, Zero) -> Zero 29.49/12.10 new_esEs32(xwv32, xwv34, app(ty_Ratio, hf)) -> new_esEs18(xwv32, xwv34, hf) 29.49/12.10 new_esEs9(xwv4411, xwv4611, ty_Char) -> new_esEs16(xwv4411, xwv4611) 29.49/12.10 new_lt20(xwv4410, xwv4610, app(app(ty_@2, bfh), bga)) -> new_lt16(xwv4410, xwv4610, bfh, bga) 29.49/12.10 new_esEs28(xwv400, xwv3000, app(app(ty_Either, dbf), dbg)) -> new_esEs4(xwv400, xwv3000, dbf, dbg) 29.49/12.10 new_esEs32(xwv32, xwv34, app(ty_[], baa)) -> new_esEs12(xwv32, xwv34, baa) 29.49/12.10 new_lt6(xwv440, xwv460, ga, gb) -> new_esEs10(new_compare6(xwv440, xwv460, ga, gb), LT) 29.49/12.10 new_ltEs7(EQ, LT) -> False 29.49/12.10 new_compare24(xwv440, xwv460, False, gc, gd, ge) -> new_compare110(xwv440, xwv460, new_ltEs4(xwv440, xwv460, gc, gd, ge), gc, gd, ge) 29.49/12.10 new_lt18(xwv440, xwv460, bef) -> new_esEs10(new_compare8(xwv440, xwv460, bef), LT) 29.49/12.10 new_compare27(xwv4400, xwv4600, app(ty_Maybe, chg)) -> new_compare16(xwv4400, xwv4600, chg) 29.49/12.10 new_esEs15(False, True) -> False 29.49/12.10 new_esEs15(True, False) -> False 29.49/12.10 new_esEs10(EQ, GT) -> False 29.49/12.10 new_esEs10(GT, EQ) -> False 29.49/12.10 new_esEs22(xwv400, xwv3000, ty_@0) -> new_esEs14(xwv400, xwv3000) 29.49/12.10 new_esEs28(xwv400, xwv3000, app(ty_Maybe, dbe)) -> new_esEs6(xwv400, xwv3000, dbe) 29.49/12.10 new_esEs31(xwv40, xwv300, app(ty_[], cbb)) -> new_esEs12(xwv40, xwv300, cbb) 29.49/12.10 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 29.49/12.10 new_esEs23(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 29.49/12.10 new_esEs30(xwv31, xwv32, xwv33, xwv34, True, gf, gg) -> new_esEs10(new_compare26(@2(xwv31, xwv32), @2(xwv33, xwv34), new_esEs32(xwv32, xwv34, gg), gf, gg), GT) 29.49/12.10 new_lt21(xwv440, xwv460, app(app(ty_@2, cce), ccf)) -> new_lt16(xwv440, xwv460, cce, ccf) 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), ty_@0, bag) -> new_esEs14(xwv400, xwv3000) 29.49/12.10 new_lt21(xwv440, xwv460, ty_Integer) -> new_lt19(xwv440, xwv460) 29.49/12.10 new_primMulNat0(Succ(xwv40100), Succ(xwv300000)) -> new_primPlusNat0(new_primMulNat0(xwv40100, Succ(xwv300000)), xwv300000) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, app(app(ty_@2, dfg), dfh)) -> new_ltEs15(xwv4410, xwv4610, dfg, dfh) 29.49/12.10 new_ltEs5(xwv4412, xwv4612, ty_Float) -> new_ltEs16(xwv4412, xwv4612) 29.49/12.10 new_esEs25(xwv400, xwv3000, ty_Integer) -> new_esEs19(xwv400, xwv3000) 29.49/12.10 new_ltEs6(Right(xwv4410), Right(xwv4610), dag, ty_Bool) -> new_ltEs12(xwv4410, xwv4610) 29.49/12.10 new_esEs22(xwv400, xwv3000, ty_Double) -> new_esEs13(xwv400, xwv3000) 29.49/12.10 new_esEs22(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 29.49/12.10 new_ltEs7(GT, LT) -> False 29.49/12.10 new_ltEs5(xwv4412, xwv4612, ty_Int) -> new_ltEs8(xwv4412, xwv4612) 29.49/12.10 new_primCmpNat0(Succ(xwv44000), Succ(xwv46000)) -> new_primCmpNat0(xwv44000, xwv46000) 29.49/12.10 new_esEs27(xwv440, xwv460, ty_Float) -> new_esEs17(xwv440, xwv460) 29.49/12.10 new_lt5(xwv4411, xwv4611, app(app(ty_@2, ec), ed)) -> new_lt16(xwv4411, xwv4611, ec, ed) 29.49/12.10 new_esEs21(xwv400, xwv3000, app(app(ty_@2, ccb), ccc)) -> new_esEs7(xwv400, xwv3000, ccb, ccc) 29.49/12.10 new_esEs24(xwv402, xwv3002, ty_Char) -> new_esEs16(xwv402, xwv3002) 29.49/12.10 new_esEs8(xwv4410, xwv4610, ty_Bool) -> new_esEs15(xwv4410, xwv4610) 29.49/12.10 new_esEs27(xwv440, xwv460, app(ty_Maybe, bhe)) -> new_esEs6(xwv440, xwv460, bhe) 29.49/12.10 new_compare27(xwv4400, xwv4600, app(app(ty_Either, cha), chb)) -> new_compare6(xwv4400, xwv4600, cha, chb) 29.49/12.10 new_ltEs19(xwv4411, xwv4611, ty_Float) -> new_ltEs16(xwv4411, xwv4611) 29.49/12.10 new_esEs12([], [], cbb) -> True 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), ty_Double, bag) -> new_esEs13(xwv400, xwv3000) 29.49/12.10 new_ltEs20(xwv441, xwv461, ty_Int) -> new_ltEs8(xwv441, xwv461) 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), app(app(app(ty_@3, bad), bae), baf), bag) -> new_esEs5(xwv400, xwv3000, bad, bae, baf) 29.49/12.10 new_ltEs7(LT, GT) -> True 29.49/12.10 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 29.49/12.10 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 29.49/12.10 new_esEs23(xwv401, xwv3001, ty_Double) -> new_esEs13(xwv401, xwv3001) 29.49/12.10 new_esEs4(Right(xwv400), Right(xwv3000), bbg, ty_Ordering) -> new_esEs10(xwv400, xwv3000) 29.49/12.10 new_esEs31(xwv40, xwv300, app(ty_Ratio, cgh)) -> new_esEs18(xwv40, xwv300, cgh) 29.49/12.10 new_lt21(xwv440, xwv460, ty_Ordering) -> new_lt7(xwv440, xwv460) 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), ty_Double) -> new_esEs13(xwv400, xwv3000) 29.49/12.10 new_compare27(xwv4400, xwv4600, ty_Bool) -> new_compare17(xwv4400, xwv4600) 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), ty_Char) -> new_esEs16(xwv400, xwv3000) 29.49/12.10 new_primEqNat0(Zero, Zero) -> True 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), app(ty_Maybe, bah), bag) -> new_esEs6(xwv400, xwv3000, bah) 29.49/12.10 new_ltEs16(xwv441, xwv461) -> new_fsEs(new_compare29(xwv441, xwv461)) 29.49/12.10 new_esEs32(xwv32, xwv34, app(app(ty_@2, hg), hh)) -> new_esEs7(xwv32, xwv34, hg, hh) 29.49/12.10 new_esEs9(xwv4411, xwv4611, ty_Bool) -> new_esEs15(xwv4411, xwv4611) 29.49/12.10 new_ltEs6(Left(xwv4410), Left(xwv4610), app(app(app(ty_@3, dea), deb), dec), dah) -> new_ltEs4(xwv4410, xwv4610, dea, deb, dec) 29.49/12.10 new_esEs28(xwv400, xwv3000, ty_Ordering) -> new_esEs10(xwv400, xwv3000) 29.49/12.10 new_compare14(xwv440, xwv460) -> new_compare210(xwv440, xwv460, new_esEs10(xwv440, xwv460)) 29.49/12.10 new_primCmpInt(Neg(Succ(xwv4400)), Neg(Succ(xwv4600))) -> new_primCmpNat0(xwv4600, xwv4400) 29.49/12.10 new_esEs31(xwv40, xwv300, app(app(ty_@2, dac), dad)) -> new_esEs7(xwv40, xwv300, dac, dad) 29.49/12.10 new_compare27(xwv4400, xwv4600, ty_Float) -> new_compare29(xwv4400, xwv4600) 29.49/12.10 new_lt5(xwv4411, xwv4611, ty_Ordering) -> new_lt7(xwv4411, xwv4611) 29.49/12.10 new_ltEs14(Just(xwv4410), Just(xwv4610), ty_Float) -> new_ltEs16(xwv4410, xwv4610) 29.49/12.10 new_esEs6(Just(xwv400), Just(xwv3000), ty_@0) -> new_esEs14(xwv400, xwv3000) 29.49/12.10 new_compare29(Float(xwv4400, Neg(xwv44010)), Float(xwv4600, Neg(xwv46010))) -> new_compare9(new_sr(xwv4400, Neg(xwv46010)), new_sr(Neg(xwv44010), xwv4600)) 29.49/12.10 new_asAs(False, xwv68) -> False 29.49/12.10 new_ltEs10(xwv441, xwv461) -> new_fsEs(new_compare18(xwv441, xwv461)) 29.49/12.10 new_esEs26(xwv401, xwv3001, ty_Int) -> new_esEs11(xwv401, xwv3001) 29.49/12.10 new_ltEs19(xwv4411, xwv4611, ty_Int) -> new_ltEs8(xwv4411, xwv4611) 29.49/12.10 new_esEs23(xwv401, xwv3001, ty_@0) -> new_esEs14(xwv401, xwv3001) 29.49/12.10 new_esEs27(xwv440, xwv460, app(app(ty_Either, ga), gb)) -> new_esEs4(xwv440, xwv460, ga, gb) 29.49/12.10 new_ltEs6(Left(xwv4410), Right(xwv4610), dag, dah) -> True 29.49/12.10 new_esEs4(Left(xwv400), Left(xwv3000), ty_Char, bag) -> new_esEs16(xwv400, xwv3000) 29.49/12.10 new_esEs26(xwv401, xwv3001, ty_Integer) -> new_esEs19(xwv401, xwv3001) 29.49/12.10 new_ltEs20(xwv441, xwv461, app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs4(xwv441, xwv461, bf, bg, bh) 29.49/12.10 new_compare112(xwv440, xwv460, False, bhe) -> GT 29.49/12.10 new_esEs28(xwv400, xwv3000, ty_Float) -> new_esEs17(xwv400, xwv3000) 29.49/12.10 new_esEs11(xwv40, xwv300) -> new_primEqInt(xwv40, xwv300) 29.49/12.10 new_compare6(xwv440, xwv460, ga, gb) -> new_compare23(xwv440, xwv460, new_esEs4(xwv440, xwv460, ga, gb), ga, gb) 29.49/12.10 new_esEs27(xwv440, xwv460, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs5(xwv440, xwv460, gc, gd, ge) 29.49/12.10 new_esEs20(xwv4410, xwv4610, app(app(ty_@2, bfh), bga)) -> new_esEs7(xwv4410, xwv4610, bfh, bga) 29.49/12.10 29.49/12.10 The set Q consists of the following terms: 29.49/12.10 29.49/12.10 new_esEs29(x0, x1, ty_Float) 29.49/12.10 new_lt4(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs22(x0, x1, ty_Float) 29.49/12.10 new_esEs9(x0, x1, ty_@0) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 29.49/12.10 new_ltEs20(x0, x1, ty_Integer) 29.49/12.10 new_ltEs5(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs21(x0, x1, ty_Ordering) 29.49/12.10 new_compare29(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), ty_Bool) 29.49/12.10 new_compare29(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 29.49/12.10 new_compare29(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 29.49/12.10 new_esEs32(x0, x1, ty_Char) 29.49/12.10 new_compare29(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 29.49/12.10 new_primCmpInt(Pos(Succ(x0)), Pos(Zero)) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), ty_@0) 29.49/12.10 new_compare25(x0, x1, True) 29.49/12.10 new_compare27(x0, x1, ty_Integer) 29.49/12.10 new_esEs21(x0, x1, ty_Double) 29.49/12.10 new_esEs6(Just(x0), Just(x1), ty_Double) 29.49/12.10 new_esEs6(Just(x0), Just(x1), ty_Ordering) 29.49/12.10 new_lt21(x0, x1, ty_Int) 29.49/12.10 new_primCmpInt(Neg(Succ(x0)), Neg(Zero)) 29.49/12.10 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_compare26(x0, x1, True, x2, x3) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.49/12.10 new_ltEs14(Nothing, Just(x0), x1) 29.49/12.10 new_compare1(:(x0, x1), [], x2) 29.49/12.10 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.49/12.10 new_compare14(x0, x1) 29.49/12.10 new_compare11(@0, @0) 29.49/12.10 new_esEs32(x0, x1, ty_Int) 29.49/12.10 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_compare112(x0, x1, False, x2) 29.49/12.10 new_lt20(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.49/12.10 new_primPlusNat1(Zero, Zero) 29.49/12.10 new_esEs4(Left(x0), Right(x1), x2, x3) 29.49/12.10 new_esEs4(Right(x0), Left(x1), x2, x3) 29.49/12.10 new_sr0(Integer(x0), Integer(x1)) 29.49/12.10 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 29.49/12.10 new_esEs31(x0, x1, ty_Int) 29.49/12.10 new_compare110(x0, x1, False, x2, x3, x4) 29.49/12.10 new_esEs6(Nothing, Just(x0), x1) 29.49/12.10 new_asAs(False, x0) 29.49/12.10 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.49/12.10 new_lt21(x0, x1, ty_Char) 29.49/12.10 new_esEs8(x0, x1, ty_Char) 29.49/12.10 new_esEs10(EQ, EQ) 29.49/12.10 new_compare9(x0, x1) 29.49/12.10 new_compare15(x0, x1, x2, x3, False, x4, x5, x6) 29.49/12.10 new_esEs6(Just(x0), Just(x1), ty_Int) 29.49/12.10 new_esEs31(x0, x1, ty_Char) 29.49/12.10 new_lt21(x0, x1, ty_Ordering) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 29.49/12.10 new_sr(x0, x1) 29.49/12.10 new_esEs31(x0, x1, ty_Double) 29.49/12.10 new_esEs8(x0, x1, ty_@0) 29.49/12.10 new_esEs20(x0, x1, app(ty_[], x2)) 29.49/12.10 new_ltEs11(x0, x1) 29.49/12.10 new_primEqInt(Pos(Zero), Pos(Zero)) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.49/12.10 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 29.49/12.10 new_esEs31(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_esEs16(Char(x0), Char(x1)) 29.49/12.10 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.49/12.10 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.49/12.10 new_esEs28(x0, x1, ty_Float) 29.49/12.10 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 29.49/12.10 new_compare27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.49/12.10 new_primPlusNat1(Zero, Succ(x0)) 29.49/12.10 new_esEs9(x0, x1, ty_Integer) 29.49/12.10 new_compare211(x0, x1, True, x2) 29.49/12.10 new_ltEs20(x0, x1, ty_@0) 29.49/12.10 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 29.49/12.10 new_primEqInt(Neg(Zero), Neg(Zero)) 29.49/12.10 new_esEs20(x0, x1, ty_Integer) 29.49/12.10 new_esEs32(x0, x1, ty_Double) 29.49/12.10 new_esEs9(x0, x1, app(ty_[], x2)) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 29.49/12.10 new_esEs22(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_esEs11(x0, x1) 29.49/12.10 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs32(x0, x1, ty_@0) 29.49/12.10 new_esEs12(:(x0, x1), :(x2, x3), x4) 29.49/12.10 new_compare26(@2(x0, x1), @2(x2, x3), False, x4, x5) 29.49/12.10 new_esEs9(x0, x1, ty_Char) 29.49/12.10 new_primCompAux0(x0, EQ) 29.49/12.10 new_esEs24(x0, x1, ty_Float) 29.49/12.10 new_esEs20(x0, x1, ty_@0) 29.49/12.10 new_esEs27(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_compare13(x0, x1, x2, x3, True, x4, x5) 29.49/12.10 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), ty_Char) 29.49/12.10 new_esEs6(Just(x0), Just(x1), ty_Char) 29.49/12.10 new_ltEs13(x0, x1) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 29.49/12.10 new_compare27(x0, x1, ty_Bool) 29.49/12.10 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs12(:(x0, x1), [], x2) 29.49/12.10 new_compare27(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_esEs29(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_ltEs20(x0, x1, ty_Float) 29.49/12.10 new_lt19(x0, x1) 29.49/12.10 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs24(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_esEs28(x0, x1, ty_Bool) 29.49/12.10 new_esEs29(x0, x1, ty_Integer) 29.49/12.10 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), ty_Int) 29.49/12.10 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_lt21(x0, x1, ty_Double) 29.49/12.10 new_primEqInt(Pos(Zero), Neg(Zero)) 29.49/12.10 new_primEqInt(Neg(Zero), Pos(Zero)) 29.49/12.10 new_lt5(x0, x1, ty_Float) 29.49/12.10 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 29.49/12.10 new_ltEs19(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.49/12.10 new_primCompAux0(x0, LT) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.49/12.10 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.49/12.10 new_ltEs5(x0, x1, ty_Integer) 29.49/12.10 new_esEs28(x0, x1, ty_@0) 29.49/12.10 new_lt21(x0, x1, ty_Bool) 29.49/12.10 new_ltEs7(EQ, EQ) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 29.49/12.10 new_esEs31(x0, x1, ty_@0) 29.49/12.10 new_ltEs20(x0, x1, app(ty_[], x2)) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 29.49/12.10 new_esEs15(False, False) 29.49/12.10 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.49/12.10 new_esEs9(x0, x1, ty_Bool) 29.49/12.10 new_esEs25(x0, x1, ty_Int) 29.49/12.10 new_lt13(x0, x1) 29.49/12.10 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs29(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs20(x0, x1, ty_Bool) 29.49/12.10 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs21(x0, x1, ty_Bool) 29.49/12.10 new_primMulInt(Pos(x0), Pos(x1)) 29.49/12.10 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), ty_Double) 29.49/12.10 new_esEs20(x0, x1, ty_Char) 29.49/12.10 new_esEs9(x0, x1, ty_Float) 29.49/12.10 new_esEs6(Just(x0), Just(x1), ty_Bool) 29.49/12.10 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs32(x0, x1, ty_Integer) 29.49/12.10 new_asAs(True, x0) 29.49/12.10 new_esEs22(x0, x1, ty_Bool) 29.49/12.10 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.49/12.10 new_primMulInt(Pos(x0), Neg(x1)) 29.49/12.10 new_primMulInt(Neg(x0), Pos(x1)) 29.49/12.10 new_ltEs17(x0, x1, x2) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 29.49/12.10 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_lt5(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_esEs23(x0, x1, ty_Integer) 29.49/12.10 new_lt21(x0, x1, ty_Integer) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.49/12.10 new_primCompAux1(x0, x1, x2, x3) 29.49/12.10 new_ltEs20(x0, x1, ty_Char) 29.49/12.10 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs6(Just(x0), Just(x1), ty_@0) 29.49/12.10 new_ltEs19(x0, x1, ty_Float) 29.49/12.10 new_lt15(x0, x1, x2) 29.49/12.10 new_lt20(x0, x1, ty_Float) 29.49/12.10 new_esEs20(x0, x1, ty_Int) 29.49/12.10 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs28(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs29(x0, x1, ty_Bool) 29.49/12.10 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 29.49/12.10 new_lt12(x0, x1) 29.49/12.10 new_esEs23(x0, x1, ty_Bool) 29.49/12.10 new_ltEs20(x0, x1, ty_Ordering) 29.49/12.10 new_esEs20(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_ltEs14(Nothing, Nothing, x0) 29.49/12.10 new_lt11(x0, x1) 29.49/12.10 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_lt20(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_esEs9(x0, x1, ty_Int) 29.49/12.10 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs8(x0, x1, ty_Float) 29.49/12.10 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 29.49/12.10 new_esEs8(x0, x1, ty_Integer) 29.49/12.10 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.49/12.10 new_esEs32(x0, x1, ty_Bool) 29.49/12.10 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_ltEs7(GT, LT) 29.49/12.10 new_ltEs7(LT, GT) 29.49/12.10 new_compare111(x0, x1, False) 29.49/12.10 new_esEs20(x0, x1, ty_Float) 29.49/12.10 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.49/12.10 new_compare27(x0, x1, ty_Int) 29.49/12.10 new_esEs8(x0, x1, ty_Ordering) 29.49/12.10 new_esEs30(x0, x1, x2, x3, True, x4, x5) 29.49/12.10 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_lt21(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_compare1([], :(x0, x1), x2) 29.49/12.10 new_ltEs19(x0, x1, ty_Int) 29.49/12.10 new_esEs22(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs17(Float(x0, x1), Float(x2, x3)) 29.49/12.10 new_esEs6(Just(x0), Just(x1), ty_Integer) 29.49/12.10 new_compare27(x0, x1, ty_Char) 29.49/12.10 new_esEs13(Double(x0, x1), Double(x2, x3)) 29.49/12.10 new_compare25(x0, x1, False) 29.49/12.10 new_esEs21(x0, x1, ty_Integer) 29.49/12.10 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.49/12.10 new_ltEs20(x0, x1, ty_Int) 29.49/12.10 new_lt21(x0, x1, ty_@0) 29.49/12.10 new_esEs31(x0, x1, ty_Bool) 29.49/12.10 new_esEs6(Nothing, Nothing, x0) 29.49/12.10 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 29.49/12.10 new_esEs8(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_primCmpInt(Neg(Zero), Neg(Zero)) 29.49/12.10 new_compare1([], [], x0) 29.49/12.10 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs6(Just(x0), Nothing, x1) 29.49/12.10 new_ltEs14(Just(x0), Nothing, x1) 29.49/12.10 new_lt17(x0, x1) 29.49/12.10 new_lt4(x0, x1, ty_@0) 29.49/12.10 new_lt4(x0, x1, ty_Double) 29.49/12.10 new_esEs29(x0, x1, ty_Char) 29.49/12.10 new_fsEs(x0) 29.49/12.10 new_compare1(:(x0, x1), :(x2, x3), x4) 29.49/12.10 new_esEs27(x0, x1, ty_Double) 29.49/12.10 new_lt5(x0, x1, ty_Integer) 29.49/12.10 new_primCmpInt(Pos(Zero), Neg(Zero)) 29.49/12.10 new_primCmpInt(Neg(Zero), Pos(Zero)) 29.49/12.10 new_esEs21(x0, x1, ty_Char) 29.49/12.10 new_esEs8(x0, x1, ty_Int) 29.49/12.10 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs28(x0, x1, ty_Ordering) 29.49/12.10 new_esEs28(x0, x1, ty_Integer) 29.49/12.10 new_ltEs9(x0, x1, x2) 29.49/12.10 new_ltEs18(x0, x1) 29.49/12.10 new_esEs9(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_esEs22(x0, x1, ty_Integer) 29.49/12.10 new_esEs15(True, True) 29.49/12.10 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs10(LT, GT) 29.49/12.10 new_esEs10(GT, LT) 29.49/12.10 new_compare27(x0, x1, ty_Float) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) 29.49/12.10 new_ltEs5(x0, x1, ty_Double) 29.49/12.10 new_esEs23(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs32(x0, x1, ty_Ordering) 29.49/12.10 new_esEs31(x0, x1, app(ty_[], x2)) 29.49/12.10 new_lt4(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 29.49/12.10 new_lt5(x0, x1, ty_Ordering) 29.49/12.10 new_compare210(x0, x1, False) 29.49/12.10 new_esEs12([], :(x0, x1), x2) 29.49/12.10 new_lt6(x0, x1, x2, x3) 29.49/12.10 new_esEs21(x0, x1, ty_Int) 29.49/12.10 new_lt20(x0, x1, app(ty_[], x2)) 29.49/12.10 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 29.49/12.10 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 29.49/12.10 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 29.49/12.10 new_primPlusNat1(Succ(x0), Zero) 29.49/12.10 new_esEs29(x0, x1, ty_Int) 29.49/12.10 new_ltEs5(x0, x1, ty_@0) 29.49/12.10 new_esEs32(x0, x1, app(ty_[], x2)) 29.49/12.10 new_ltEs20(x0, x1, ty_Bool) 29.49/12.10 new_esEs23(x0, x1, ty_Float) 29.49/12.10 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 29.49/12.10 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_esEs31(x0, x1, ty_Ordering) 29.49/12.10 new_esEs27(x0, x1, ty_@0) 29.49/12.10 new_esEs31(x0, x1, ty_Integer) 29.49/12.10 new_esEs10(EQ, GT) 29.49/12.10 new_esEs10(GT, EQ) 29.49/12.10 new_esEs8(x0, x1, ty_Bool) 29.49/12.10 new_compare23(x0, x1, True, x2, x3) 29.49/12.10 new_esEs22(x0, x1, ty_Ordering) 29.49/12.10 new_compare27(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.49/12.10 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 29.49/12.10 new_esEs23(x0, x1, ty_Int) 29.49/12.10 new_lt4(x0, x1, ty_Char) 29.49/12.10 new_esEs22(x0, x1, ty_Double) 29.49/12.10 new_esEs29(x0, x1, ty_Double) 29.49/12.10 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs21(x0, x1, ty_Float) 29.49/12.10 new_compare17(x0, x1) 29.49/12.10 new_lt20(x0, x1, ty_@0) 29.49/12.10 new_esEs19(Integer(x0), Integer(x1)) 29.49/12.10 new_ltEs19(x0, x1, ty_@0) 29.49/12.10 new_esEs29(x0, x1, ty_Ordering) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 29.49/12.10 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_lt20(x0, x1, ty_Bool) 29.49/12.10 new_primCmpInt(Neg(Succ(x0)), Neg(Succ(x1))) 29.49/12.10 new_primMulNat0(Zero, Zero) 29.49/12.10 new_esEs24(x0, x1, ty_Char) 29.49/12.10 new_esEs27(x0, x1, ty_Char) 29.49/12.10 new_esEs21(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_lt4(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_ltEs19(x0, x1, ty_Bool) 29.49/12.10 new_primEqNat0(Succ(x0), Zero) 29.49/12.10 new_lt5(x0, x1, ty_@0) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 29.49/12.10 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.49/12.10 new_primEqNat0(Succ(x0), Succ(x1)) 29.49/12.10 new_esEs22(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_lt4(x0, x1, ty_Int) 29.49/12.10 new_esEs28(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs23(x0, x1, ty_Char) 29.49/12.10 new_compare28(Char(x0), Char(x1)) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 29.49/12.10 new_ltEs7(LT, LT) 29.49/12.10 new_compare24(x0, x1, False, x2, x3, x4) 29.49/12.10 new_ltEs10(x0, x1) 29.49/12.10 new_compare113(x0, x1, True) 29.49/12.10 new_ltEs6(Right(x0), Left(x1), x2, x3) 29.49/12.10 new_ltEs6(Left(x0), Right(x1), x2, x3) 29.49/12.10 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 29.49/12.10 new_primCmpNat0(Succ(x0), Succ(x1)) 29.49/12.10 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_lt5(x0, x1, ty_Bool) 29.49/12.10 new_lt21(x0, x1, ty_Float) 29.49/12.10 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_compare10(x0, x1, True, x2, x3) 29.49/12.10 new_ltEs19(x0, x1, ty_Char) 29.49/12.10 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 29.49/12.10 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs21(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_lt5(x0, x1, ty_Char) 29.49/12.10 new_esEs24(x0, x1, ty_Bool) 29.49/12.10 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs6(Just(x0), Just(x1), ty_Float) 29.49/12.10 new_pePe(False, x0) 29.49/12.10 new_esEs10(LT, LT) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 29.49/12.10 new_esEs27(x0, x1, ty_Bool) 29.49/12.10 new_primEqNat0(Zero, Succ(x0)) 29.49/12.10 new_ltEs19(x0, x1, ty_Integer) 29.49/12.10 new_not(True) 29.49/12.10 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_lt20(x0, x1, ty_Char) 29.49/12.10 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 29.49/12.10 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 29.49/12.10 new_esEs22(x0, x1, ty_Char) 29.49/12.10 new_lt5(x0, x1, ty_Int) 29.49/12.10 new_esEs28(x0, x1, ty_Int) 29.49/12.10 new_ltEs12(True, True) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 29.49/12.10 new_ltEs5(x0, x1, ty_Ordering) 29.49/12.10 new_lt4(x0, x1, ty_Bool) 29.49/12.10 new_esEs20(x0, x1, ty_Double) 29.49/12.10 new_esEs27(x0, x1, ty_Ordering) 29.49/12.10 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 29.49/12.10 new_ltEs16(x0, x1) 29.49/12.10 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 29.49/12.10 new_lt4(x0, x1, ty_Ordering) 29.49/12.10 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 29.49/12.10 new_esEs24(x0, x1, ty_Double) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 29.49/12.10 new_compare13(x0, x1, x2, x3, False, x4, x5) 29.49/12.10 new_ltEs12(False, True) 29.49/12.10 new_lt4(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_ltEs12(True, False) 29.49/12.10 new_primMulNat0(Zero, Succ(x0)) 29.49/12.10 new_compare24(x0, x1, True, x2, x3, x4) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 29.49/12.10 new_esEs28(x0, x1, ty_Char) 29.49/12.10 new_esEs28(x0, x1, ty_Double) 29.49/12.10 new_esEs22(x0, x1, ty_Int) 29.49/12.10 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_esEs24(x0, x1, ty_Int) 29.49/12.10 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_compare111(x0, x1, True) 29.49/12.10 new_primPlusNat0(Succ(x0), x1) 29.49/12.10 new_esEs8(x0, x1, app(ty_[], x2)) 29.49/12.10 new_lt20(x0, x1, ty_Int) 29.49/12.10 new_primCompAux0(x0, GT) 29.49/12.10 new_lt4(x0, x1, ty_Integer) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.49/12.10 new_esEs9(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_ltEs7(EQ, GT) 29.49/12.10 new_ltEs7(GT, EQ) 29.49/12.10 new_pePe(True, x0) 29.49/12.10 new_esEs32(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs32(x0, x1, ty_Float) 29.49/12.10 new_esEs20(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_ltEs8(x0, x1) 29.49/12.10 new_lt20(x0, x1, ty_Double) 29.49/12.10 new_lt5(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_esEs24(x0, x1, ty_@0) 29.49/12.10 new_compare27(x0, x1, app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs22(x0, x1, ty_@0) 29.49/12.10 new_esEs30(x0, x1, x2, x3, False, x4, x5) 29.49/12.10 new_esEs23(x0, x1, ty_Ordering) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.49/12.10 new_esEs27(x0, x1, ty_Integer) 29.49/12.10 new_esEs31(x0, x1, ty_Float) 29.49/12.10 new_esEs27(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 29.49/12.10 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 29.49/12.10 new_primCmpInt(Pos(Succ(x0)), Pos(Succ(x1))) 29.49/12.10 new_primCmpInt(Pos(Zero), Pos(Zero)) 29.49/12.10 new_ltEs15(@2(x0, x1), @2(x2, x3), x4, x5) 29.49/12.10 new_esEs24(x0, x1, app(ty_[], x2)) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 29.49/12.10 new_lt21(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_ltEs7(GT, GT) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), ty_Float) 29.49/12.10 new_esEs10(GT, GT) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 29.49/12.10 new_ltEs7(LT, EQ) 29.49/12.10 new_ltEs7(EQ, LT) 29.49/12.10 new_esEs9(x0, x1, ty_Double) 29.49/12.10 new_esEs14(@0, @0) 29.49/12.10 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 29.49/12.10 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.49/12.10 new_esEs29(x0, x1, ty_@0) 29.49/12.10 new_esEs31(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_compare110(x0, x1, True, x2, x3, x4) 29.49/12.10 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 29.49/12.10 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 29.49/12.10 new_esEs10(LT, EQ) 29.49/12.10 new_esEs10(EQ, LT) 29.49/12.10 new_esEs21(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 29.49/12.10 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 29.49/12.10 new_compare112(x0, x1, True, x2) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), ty_Ordering) 29.49/12.10 new_primMulInt(Neg(x0), Neg(x1)) 29.49/12.10 new_esEs21(x0, x1, ty_@0) 29.49/12.10 new_esEs26(x0, x1, ty_Integer) 29.49/12.10 new_ltEs5(x0, x1, ty_Char) 29.49/12.10 new_lt7(x0, x1) 29.49/12.10 new_esEs32(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_primMulNat0(Succ(x0), Succ(x1)) 29.49/12.10 new_lt18(x0, x1, x2) 29.49/12.10 new_lt5(x0, x1, ty_Double) 29.49/12.10 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 29.49/12.10 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 29.49/12.10 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 29.49/12.10 new_esEs20(x0, x1, ty_Ordering) 29.49/12.10 new_esEs23(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_compare27(x0, x1, ty_Ordering) 29.49/12.10 new_esEs8(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_compare12(x0, x1, x2, x3, x4) 29.49/12.10 new_ltEs19(x0, x1, ty_Ordering) 29.49/12.10 new_esEs9(x0, x1, ty_Ordering) 29.49/12.10 new_ltEs19(x0, x1, ty_Double) 29.49/12.10 new_primCmpNat0(Zero, Succ(x0)) 29.49/12.10 new_compare23(x0, x1, False, x2, x3) 29.49/12.10 new_esEs15(False, True) 29.49/12.10 new_esEs15(True, False) 29.49/12.10 new_compare27(x0, x1, app(ty_[], x2)) 29.49/12.10 new_compare27(x0, x1, ty_Double) 29.49/12.10 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 29.49/12.10 new_compare19(x0, x1, x2, x3) 29.49/12.10 new_primPlusNat1(Succ(x0), Succ(x1)) 29.49/12.10 new_primPlusNat0(Zero, x0) 29.49/12.10 new_ltEs5(x0, x1, ty_Bool) 29.49/12.10 new_esEs24(x0, x1, ty_Ordering) 29.49/12.10 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 29.49/12.10 new_primEqNat0(Zero, Zero) 29.49/12.10 new_compare27(x0, x1, ty_@0) 29.49/12.10 new_lt16(x0, x1, x2, x3) 29.49/12.10 new_not(False) 29.49/12.10 new_compare16(x0, x1, x2) 29.49/12.10 new_esEs24(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_lt9(x0, x1, x2) 29.49/12.10 new_lt5(x0, x1, app(ty_[], x2)) 29.49/12.10 new_lt10(x0, x1, x2, x3, x4) 29.49/12.10 new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs27(x0, x1, app(ty_[], x2)) 29.49/12.10 new_ltEs5(x0, x1, ty_Int) 29.49/12.10 new_compare210(x0, x1, True) 29.49/12.10 new_ltEs12(False, False) 29.49/12.10 new_compare10(x0, x1, False, x2, x3) 29.49/12.10 new_primMulNat0(Succ(x0), Zero) 29.49/12.10 new_ltEs20(x0, x1, ty_Double) 29.49/12.10 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_lt20(x0, x1, ty_Integer) 29.49/12.10 new_compare7(Integer(x0), Integer(x1)) 29.49/12.10 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 29.49/12.10 new_esEs8(x0, x1, ty_Double) 29.49/12.10 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs23(x0, x1, ty_Double) 29.49/12.10 new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.49/12.10 new_lt14(x0, x1) 29.49/12.10 new_primCmpNat0(Succ(x0), Zero) 29.49/12.10 new_esEs25(x0, x1, ty_Integer) 29.49/12.10 new_esEs24(x0, x1, ty_Integer) 29.49/12.10 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 29.49/12.10 new_lt8(x0, x1) 29.49/12.10 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.49/12.10 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 29.49/12.10 new_compare15(x0, x1, x2, x3, True, x4, x5, x6) 29.49/12.10 new_lt4(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_compare113(x0, x1, False) 29.49/12.10 new_esEs27(x0, x1, ty_Int) 29.49/12.10 new_compare211(x0, x1, False, x2) 29.49/12.10 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 29.49/12.10 new_esEs29(x0, x1, app(ty_Ratio, x2)) 29.49/12.10 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_lt20(x0, x1, ty_Ordering) 29.49/12.10 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 29.49/12.10 new_lt21(x0, x1, app(ty_[], x2)) 29.49/12.10 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_esEs26(x0, x1, ty_Int) 29.49/12.10 new_esEs23(x0, x1, ty_@0) 29.49/12.10 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.49/12.10 new_ltEs5(x0, x1, ty_Float) 29.49/12.10 new_compare6(x0, x1, x2, x3) 29.49/12.10 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.49/12.10 new_lt4(x0, x1, ty_Float) 29.49/12.10 new_esEs28(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_esEs23(x0, x1, app(ty_Maybe, x2)) 29.49/12.10 new_primCmpNat0(Zero, Zero) 29.49/12.10 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 29.49/12.10 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 29.49/12.10 new_esEs27(x0, x1, ty_Float) 29.49/12.10 new_ltEs14(Just(x0), Just(x1), ty_Integer) 29.49/12.10 new_compare27(x0, x1, app(app(ty_Either, x2), x3)) 29.49/12.10 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 29.49/12.10 new_esEs12([], [], x0) 29.49/12.10 29.49/12.10 We have to consider all minimal (P,Q,R)-chains. 29.49/12.10 ---------------------------------------- 29.49/12.10 29.49/12.10 (38) QDPSizeChangeProof (EQUIVALENT) 29.49/12.10 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. 29.49/12.10 29.49/12.10 From the DPs we obtained the following set of size-change graphs: 29.49/12.10 *new_delFromFM(Branch(@2(xwv300, xwv301), xwv31, xwv32, xwv33, xwv34), @2(xwv40, xwv41), bc, bd, be) -> new_delFromFM2(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, xwv40, xwv41, new_esEs30(xwv40, xwv41, xwv300, xwv301, new_esEs31(xwv40, xwv300, bc), bc, bd), bc, bd, be) 29.49/12.10 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 1 > 6, 2 > 7, 2 > 8, 3 >= 10, 4 >= 11, 5 >= 12 29.49/12.10 29.49/12.10 29.49/12.10 *new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, False, h, ba, bb) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_esEs10(new_compare26(@2(xwv21, xwv22), @2(xwv15, xwv16), new_asAs(new_esEs28(xwv21, xwv15, h), new_esEs29(xwv22, xwv16, ba)), h, ba), LT), h, ba, bb) 29.49/12.10 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 10, 11 >= 11, 12 >= 12 29.49/12.10 29.49/12.10 29.49/12.10 *new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, True, h, ba, bb) -> new_delFromFM(xwv20, @2(xwv21, xwv22), h, ba, bb) 29.49/12.11 The graph contains the following edges 6 >= 1, 10 >= 3, 11 >= 4, 12 >= 5 29.49/12.11 29.49/12.11 29.49/12.11 *new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, True, h, ba, bb) -> new_delFromFM(xwv19, @2(xwv21, xwv22), h, ba, bb) 29.49/12.11 The graph contains the following edges 5 >= 1, 10 >= 3, 11 >= 4, 12 >= 5 29.49/12.11 29.49/12.11 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (39) 29.49/12.11 YES 29.49/12.11 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (40) 29.49/12.11 Obligation: 29.49/12.11 Q DP problem: 29.49/12.11 The TRS P consists of the following rules: 29.49/12.11 29.49/12.11 new_glueBal2Mid_key10(xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv347, xwv348, xwv349, xwv350, xwv351, Branch(xwv3520, xwv3521, xwv3522, xwv3523, xwv3524), h, ba) -> new_glueBal2Mid_key10(xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv347, xwv3520, xwv3521, xwv3522, xwv3523, xwv3524, h, ba) 29.49/12.11 29.49/12.11 R is empty. 29.49/12.11 Q is empty. 29.49/12.11 We have to consider all minimal (P,Q,R)-chains. 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (41) QDPSizeChangeProof (EQUIVALENT) 29.49/12.11 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. 29.49/12.11 29.49/12.11 From the DPs we obtained the following set of size-change graphs: 29.49/12.11 *new_glueBal2Mid_key10(xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv347, xwv348, xwv349, xwv350, xwv351, Branch(xwv3520, xwv3521, xwv3522, xwv3523, xwv3524), h, ba) -> new_glueBal2Mid_key10(xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv347, xwv3520, xwv3521, xwv3522, xwv3523, xwv3524, h, ba) 29.49/12.11 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 29.49/12.11 29.49/12.11 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (42) 29.49/12.11 YES 29.49/12.11 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (43) 29.49/12.11 Obligation: 29.49/12.11 Q DP problem: 29.49/12.11 The TRS P consists of the following rules: 29.49/12.11 29.49/12.11 new_deleteMax(xwv190, xwv191, xwv192, xwv193, Branch(xwv1940, xwv1941, xwv1942, xwv1943, xwv1944), h, ba, bb) -> new_deleteMax(xwv1940, xwv1941, xwv1942, xwv1943, xwv1944, h, ba, bb) 29.49/12.11 29.49/12.11 R is empty. 29.49/12.11 Q is empty. 29.49/12.11 We have to consider all minimal (P,Q,R)-chains. 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (44) QDPSizeChangeProof (EQUIVALENT) 29.49/12.11 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. 29.49/12.11 29.49/12.11 From the DPs we obtained the following set of size-change graphs: 29.49/12.11 *new_deleteMax(xwv190, xwv191, xwv192, xwv193, Branch(xwv1940, xwv1941, xwv1942, xwv1943, xwv1944), h, ba, bb) -> new_deleteMax(xwv1940, xwv1941, xwv1942, xwv1943, xwv1944, h, ba, bb) 29.49/12.11 The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 6 >= 6, 7 >= 7, 8 >= 8 29.49/12.11 29.49/12.11 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (45) 29.49/12.11 YES 29.49/12.11 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (46) 29.49/12.11 Obligation: 29.49/12.11 Q DP problem: 29.49/12.11 The TRS P consists of the following rules: 29.49/12.11 29.49/12.11 new_glueBal2Mid_elt20(xwv291, xwv292, xwv293, xwv294, xwv295, xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, Branch(xwv3040, xwv3041, xwv3042, xwv3043, xwv3044), xwv305, h, ba) -> new_glueBal2Mid_elt20(xwv291, xwv292, xwv293, xwv294, xwv295, xwv296, xwv297, xwv298, xwv299, xwv300, xwv3040, xwv3041, xwv3042, xwv3043, xwv3044, h, ba) 29.49/12.11 29.49/12.11 R is empty. 29.49/12.11 Q is empty. 29.49/12.11 We have to consider all minimal (P,Q,R)-chains. 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (47) QDPSizeChangeProof (EQUIVALENT) 29.49/12.11 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. 29.49/12.11 29.49/12.11 From the DPs we obtained the following set of size-change graphs: 29.49/12.11 *new_glueBal2Mid_elt20(xwv291, xwv292, xwv293, xwv294, xwv295, xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, Branch(xwv3040, xwv3041, xwv3042, xwv3043, xwv3044), xwv305, h, ba) -> new_glueBal2Mid_elt20(xwv291, xwv292, xwv293, xwv294, xwv295, xwv296, xwv297, xwv298, xwv299, xwv300, xwv3040, xwv3041, xwv3042, xwv3043, xwv3044, h, ba) 29.49/12.11 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 29.49/12.11 29.49/12.11 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (48) 29.49/12.11 YES 29.49/12.11 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (49) 29.49/12.11 Obligation: 29.49/12.11 Q DP problem: 29.49/12.11 The TRS P consists of the following rules: 29.49/12.11 29.49/12.11 new_glueBal2Mid_key20(xwv275, xwv276, xwv277, xwv278, xwv279, xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, Branch(xwv2880, xwv2881, xwv2882, xwv2883, xwv2884), xwv289, h, ba) -> new_glueBal2Mid_key20(xwv275, xwv276, xwv277, xwv278, xwv279, xwv280, xwv281, xwv282, xwv283, xwv284, xwv2880, xwv2881, xwv2882, xwv2883, xwv2884, h, ba) 29.49/12.11 29.49/12.11 R is empty. 29.49/12.11 Q is empty. 29.49/12.11 We have to consider all minimal (P,Q,R)-chains. 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (50) QDPSizeChangeProof (EQUIVALENT) 29.49/12.11 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. 29.49/12.11 29.49/12.11 From the DPs we obtained the following set of size-change graphs: 29.49/12.11 *new_glueBal2Mid_key20(xwv275, xwv276, xwv277, xwv278, xwv279, xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, Branch(xwv2880, xwv2881, xwv2882, xwv2883, xwv2884), xwv289, h, ba) -> new_glueBal2Mid_key20(xwv275, xwv276, xwv277, xwv278, xwv279, xwv280, xwv281, xwv282, xwv283, xwv284, xwv2880, xwv2881, xwv2882, xwv2883, xwv2884, h, ba) 29.49/12.11 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 29.49/12.11 29.49/12.11 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (51) 29.49/12.11 YES 29.49/12.11 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (52) 29.49/12.11 Obligation: 29.49/12.11 Q DP problem: 29.49/12.11 The TRS P consists of the following rules: 29.49/12.11 29.49/12.11 new_deleteMin(xwv200, xwv201, xwv202, Branch(xwv2030, xwv2031, xwv2032, xwv2033, xwv2034), xwv204, h, ba, bb) -> new_deleteMin(xwv2030, xwv2031, xwv2032, xwv2033, xwv2034, h, ba, bb) 29.49/12.11 29.49/12.11 R is empty. 29.49/12.11 Q is empty. 29.49/12.11 We have to consider all minimal (P,Q,R)-chains. 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (53) QDPSizeChangeProof (EQUIVALENT) 29.49/12.11 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. 29.49/12.11 29.49/12.11 From the DPs we obtained the following set of size-change graphs: 29.49/12.11 *new_deleteMin(xwv200, xwv201, xwv202, Branch(xwv2030, xwv2031, xwv2032, xwv2033, xwv2034), xwv204, h, ba, bb) -> new_deleteMin(xwv2030, xwv2031, xwv2032, xwv2033, xwv2034, h, ba, bb) 29.49/12.11 The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 6 >= 6, 7 >= 7, 8 >= 8 29.49/12.11 29.49/12.11 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (54) 29.49/12.11 YES 29.49/12.11 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (55) 29.49/12.11 Obligation: 29.49/12.11 Q DP problem: 29.49/12.11 The TRS P consists of the following rules: 29.49/12.11 29.49/12.11 new_glueBal2Mid_elt10(xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv363, xwv364, xwv365, xwv366, xwv367, Branch(xwv3680, xwv3681, xwv3682, xwv3683, xwv3684), h, ba) -> new_glueBal2Mid_elt10(xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv363, xwv3680, xwv3681, xwv3682, xwv3683, xwv3684, h, ba) 29.49/12.11 29.49/12.11 R is empty. 29.49/12.11 Q is empty. 29.49/12.11 We have to consider all minimal (P,Q,R)-chains. 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (56) QDPSizeChangeProof (EQUIVALENT) 29.49/12.11 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. 29.49/12.11 29.49/12.11 From the DPs we obtained the following set of size-change graphs: 29.49/12.11 *new_glueBal2Mid_elt10(xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv363, xwv364, xwv365, xwv366, xwv367, Branch(xwv3680, xwv3681, xwv3682, xwv3683, xwv3684), h, ba) -> new_glueBal2Mid_elt10(xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv363, xwv3680, xwv3681, xwv3682, xwv3683, xwv3684, h, ba) 29.49/12.11 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 29.49/12.11 29.49/12.11 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (57) 29.49/12.11 YES 29.49/12.11 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (58) 29.49/12.11 Obligation: 29.49/12.11 Q DP problem: 29.49/12.11 The TRS P consists of the following rules: 29.49/12.11 29.49/12.11 new_primEqNat(Succ(xwv4000), Succ(xwv30000)) -> new_primEqNat(xwv4000, xwv30000) 29.49/12.11 29.49/12.11 R is empty. 29.49/12.11 Q is empty. 29.49/12.11 We have to consider all minimal (P,Q,R)-chains. 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (59) QDPSizeChangeProof (EQUIVALENT) 29.49/12.11 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. 29.49/12.11 29.49/12.11 From the DPs we obtained the following set of size-change graphs: 29.49/12.11 *new_primEqNat(Succ(xwv4000), Succ(xwv30000)) -> new_primEqNat(xwv4000, xwv30000) 29.49/12.11 The graph contains the following edges 1 > 1, 2 > 2 29.49/12.11 29.49/12.11 29.49/12.11 ---------------------------------------- 29.49/12.11 29.49/12.11 (60) 29.49/12.11 YES 29.62/12.13 EOF