27.55/13.66 YES 29.92/14.30 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 29.92/14.30 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 29.92/14.30 29.92/14.30 29.92/14.30 H-Termination with start terms of the given HASKELL could be proven: 29.92/14.30 29.92/14.30 (0) HASKELL 29.92/14.30 (1) LR [EQUIVALENT, 0 ms] 29.92/14.30 (2) HASKELL 29.92/14.30 (3) CR [EQUIVALENT, 0 ms] 29.92/14.30 (4) HASKELL 29.92/14.30 (5) IFR [EQUIVALENT, 0 ms] 29.92/14.30 (6) HASKELL 29.92/14.30 (7) BR [EQUIVALENT, 0 ms] 29.92/14.30 (8) HASKELL 29.92/14.30 (9) COR [EQUIVALENT, 0 ms] 29.92/14.30 (10) HASKELL 29.92/14.30 (11) LetRed [EQUIVALENT, 0 ms] 29.92/14.30 (12) HASKELL 29.92/14.30 (13) NumRed [SOUND, 0 ms] 29.92/14.30 (14) HASKELL 29.92/14.30 (15) Narrow [SOUND, 0 ms] 29.92/14.30 (16) AND 29.92/14.30 (17) QDP 29.92/14.30 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 29.92/14.30 (19) YES 29.92/14.30 (20) QDP 29.92/14.30 (21) QDPSizeChangeProof [EQUIVALENT, 5 ms] 29.92/14.30 (22) YES 29.92/14.30 (23) QDP 29.92/14.30 (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] 29.92/14.30 (25) YES 29.92/14.30 (26) QDP 29.92/14.30 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 29.92/14.30 (28) YES 29.92/14.30 (29) QDP 29.92/14.30 (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] 29.92/14.30 (31) YES 29.92/14.30 (32) QDP 29.92/14.30 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 29.92/14.30 (34) YES 29.92/14.30 (35) QDP 29.92/14.30 (36) QDPSizeChangeProof [EQUIVALENT, 153 ms] 29.92/14.30 (37) YES 29.92/14.30 (38) QDP 29.92/14.30 (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] 29.92/14.30 (40) YES 29.92/14.30 (41) QDP 29.92/14.30 (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] 29.92/14.30 (43) YES 29.92/14.30 (44) QDP 29.92/14.30 (45) QDPSizeChangeProof [EQUIVALENT, 0 ms] 29.92/14.30 (46) YES 29.92/14.30 (47) QDP 29.92/14.30 (48) QDPSizeChangeProof [EQUIVALENT, 0 ms] 29.92/14.30 (49) YES 29.92/14.30 (50) QDP 29.92/14.30 (51) QDPSizeChangeProof [EQUIVALENT, 0 ms] 29.92/14.30 (52) YES 29.92/14.30 (53) QDP 29.92/14.30 (54) QDPSizeChangeProof [EQUIVALENT, 0 ms] 29.92/14.30 (55) YES 29.92/14.30 (56) QDP 29.92/14.30 (57) QDPSizeChangeProof [EQUIVALENT, 0 ms] 29.92/14.30 (58) YES 29.92/14.30 29.92/14.30 29.92/14.30 ---------------------------------------- 29.92/14.30 29.92/14.30 (0) 29.92/14.30 Obligation: 29.92/14.30 mainModule Main 29.92/14.30 module FiniteMap where { 29.92/14.30 import qualified Main; 29.92/14.30 import qualified Maybe; 29.92/14.30 import qualified Prelude; 29.92/14.30 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 29.92/14.30 29.92/14.30 instance (Eq a, Eq b) => Eq FiniteMap a b where { 29.92/14.30 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.92/14.30 } 29.92/14.30 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 29.92/14.30 delFromFM EmptyFM del_key = emptyFM; 29.92/14.30 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 29.92/14.30 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 29.92/14.30 | key == del_key = glueBal fm_l fm_r; 29.92/14.30 29.92/14.30 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 29.92/14.30 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 29.92/14.30 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 29.92/14.30 29.92/14.30 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 29.92/14.30 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 29.92/14.30 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 29.92/14.30 29.92/14.30 emptyFM :: FiniteMap a b; 29.92/14.30 emptyFM = EmptyFM; 29.92/14.30 29.92/14.30 findMax :: FiniteMap a b -> (a,b); 29.92/14.30 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 29.92/14.30 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 29.92/14.30 29.92/14.30 findMin :: FiniteMap b a -> (b,a); 29.92/14.30 findMin (Branch key elt _ EmptyFM _) = (key,elt); 29.92/14.30 findMin (Branch key elt _ fm_l _) = findMin fm_l; 29.92/14.30 29.92/14.30 fmToList :: FiniteMap a b -> [(a,b)]; 29.92/14.30 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 29.92/14.30 29.92/14.30 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 29.92/14.30 foldFM k z EmptyFM = z; 29.92/14.30 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.92/14.30 29.92/14.30 glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.92/14.30 glueBal EmptyFM fm2 = fm2; 29.92/14.30 glueBal fm1 EmptyFM = fm1; 29.92/14.30 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 29.92/14.30 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 29.92/14.30 mid_elt1 = (\(_,mid_elt1) ->mid_elt1) vv2; 29.92/14.30 mid_elt2 = (\(_,mid_elt2) ->mid_elt2) vv3; 29.92/14.30 mid_key1 = (\(mid_key1,_) ->mid_key1) vv2; 29.92/14.30 mid_key2 = (\(mid_key2,_) ->mid_key2) vv3; 29.92/14.30 vv2 = findMax fm1; 29.92/14.30 vv3 = findMin fm2; 29.92/14.30 }; 29.92/14.30 29.92/14.30 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.92/14.30 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 29.92/14.30 | size_r > sIZE_RATIO * size_l = case fm_R of { 29.92/14.30 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 29.92/14.30 | otherwise -> double_L fm_L fm_R; 29.92/14.30 } 29.92/14.30 | size_l > sIZE_RATIO * size_r = case fm_L of { 29.92/14.30 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 29.92/14.30 | otherwise -> double_R fm_L fm_R; 29.92/14.30 } 29.92/14.30 | otherwise = mkBranch 2 key elt fm_L fm_R where { 29.92/14.30 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); 29.92/14.30 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); 29.92/14.30 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; 29.92/14.30 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); 29.92/14.30 size_l = sizeFM fm_L; 29.92/14.30 size_r = sizeFM fm_R; 29.92/14.30 }; 29.92/14.30 29.92/14.30 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.92/14.30 mkBranch which key elt fm_l fm_r = let { 29.92/14.30 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.92/14.30 } in result where { 29.92/14.30 balance_ok = True; 29.92/14.30 left_ok = case fm_l of { 29.92/14.30 EmptyFM-> True; 29.92/14.30 Branch left_key _ _ _ _-> let { 29.92/14.30 biggest_left_key = fst (findMax fm_l); 29.92/14.30 } in biggest_left_key < key; 29.92/14.30 } ; 29.92/14.30 left_size = sizeFM fm_l; 29.92/14.30 right_ok = case fm_r of { 29.92/14.30 EmptyFM-> True; 29.92/14.30 Branch right_key _ _ _ _-> let { 29.92/14.30 smallest_right_key = fst (findMin fm_r); 29.92/14.30 } in key < smallest_right_key; 29.92/14.30 } ; 29.92/14.30 right_size = sizeFM fm_r; 29.92/14.30 unbox :: Int -> Int; 29.92/14.30 unbox x = x; 29.92/14.30 }; 29.92/14.30 29.92/14.30 sIZE_RATIO :: Int; 29.92/14.30 sIZE_RATIO = 5; 29.92/14.30 29.92/14.30 sizeFM :: FiniteMap a b -> Int; 29.92/14.30 sizeFM EmptyFM = 0; 29.92/14.30 sizeFM (Branch _ _ size _ _) = size; 29.92/14.30 29.92/14.30 } 29.92/14.30 module Maybe where { 29.92/14.30 import qualified FiniteMap; 29.92/14.30 import qualified Main; 29.92/14.30 import qualified Prelude; 29.92/14.30 } 29.92/14.30 module Main where { 29.92/14.30 import qualified FiniteMap; 29.92/14.30 import qualified Maybe; 29.92/14.30 import qualified Prelude; 29.92/14.30 } 29.92/14.30 29.92/14.30 ---------------------------------------- 29.92/14.30 29.92/14.30 (1) LR (EQUIVALENT) 29.92/14.30 Lambda Reductions: 29.92/14.30 The following Lambda expression 29.92/14.30 "\(_,mid_elt2)->mid_elt2" 29.92/14.30 is transformed to 29.92/14.30 "mid_elt20 (_,mid_elt2) = mid_elt2; 29.92/14.30 " 29.92/14.30 The following Lambda expression 29.92/14.30 "\(mid_key2,_)->mid_key2" 29.92/14.30 is transformed to 29.92/14.30 "mid_key20 (mid_key2,_) = mid_key2; 29.92/14.30 " 29.92/14.30 The following Lambda expression 29.92/14.30 "\(mid_key1,_)->mid_key1" 29.92/14.30 is transformed to 29.92/14.30 "mid_key10 (mid_key1,_) = mid_key1; 29.92/14.30 " 29.92/14.30 The following Lambda expression 29.92/14.30 "\(_,mid_elt1)->mid_elt1" 29.92/14.30 is transformed to 29.92/14.30 "mid_elt10 (_,mid_elt1) = mid_elt1; 29.92/14.30 " 29.92/14.30 The following Lambda expression 29.92/14.30 "\keyeltrest->(key,elt) : rest" 29.92/14.30 is transformed to 29.92/14.30 "fmToList0 key elt rest = (key,elt) : rest; 29.92/14.30 " 29.92/14.30 29.92/14.30 ---------------------------------------- 29.92/14.30 29.92/14.30 (2) 29.92/14.30 Obligation: 29.92/14.30 mainModule Main 29.92/14.30 module FiniteMap where { 29.92/14.30 import qualified Main; 29.92/14.30 import qualified Maybe; 29.92/14.30 import qualified Prelude; 29.92/14.30 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 29.92/14.30 29.92/14.30 instance (Eq a, Eq b) => Eq FiniteMap b a where { 29.92/14.30 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.92/14.30 } 29.92/14.30 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 29.92/14.30 delFromFM EmptyFM del_key = emptyFM; 29.92/14.30 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 29.92/14.30 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 29.92/14.30 | key == del_key = glueBal fm_l fm_r; 29.92/14.30 29.92/14.30 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 29.92/14.30 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 29.92/14.30 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 29.92/14.30 29.92/14.30 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 29.92/14.30 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 29.92/14.30 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 29.92/14.30 29.92/14.30 emptyFM :: FiniteMap a b; 29.92/14.30 emptyFM = EmptyFM; 29.92/14.30 29.92/14.30 findMax :: FiniteMap b a -> (b,a); 29.92/14.30 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 29.92/14.30 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 29.92/14.30 29.92/14.30 findMin :: FiniteMap b a -> (b,a); 29.92/14.30 findMin (Branch key elt _ EmptyFM _) = (key,elt); 29.92/14.30 findMin (Branch key elt _ fm_l _) = findMin fm_l; 29.92/14.30 29.92/14.30 fmToList :: FiniteMap a b -> [(a,b)]; 30.78/14.51 fmToList fm = foldFM fmToList0 [] fm; 30.78/14.51 30.78/14.51 fmToList0 key elt rest = (key,elt) : rest; 30.78/14.51 30.78/14.51 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 30.78/14.51 foldFM k z EmptyFM = z; 30.78/14.51 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.78/14.51 30.78/14.51 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.78/14.51 glueBal EmptyFM fm2 = fm2; 30.78/14.51 glueBal fm1 EmptyFM = fm1; 30.78/14.51 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 30.78/14.51 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 30.78/14.51 mid_elt1 = mid_elt10 vv2; 30.78/14.51 mid_elt10 (_,mid_elt1) = mid_elt1; 30.78/14.51 mid_elt2 = mid_elt20 vv3; 30.78/14.51 mid_elt20 (_,mid_elt2) = mid_elt2; 30.78/14.51 mid_key1 = mid_key10 vv2; 30.78/14.51 mid_key10 (mid_key1,_) = mid_key1; 30.78/14.51 mid_key2 = mid_key20 vv3; 30.78/14.51 mid_key20 (mid_key2,_) = mid_key2; 30.78/14.51 vv2 = findMax fm1; 30.78/14.51 vv3 = findMin fm2; 30.78/14.51 }; 30.78/14.51 30.78/14.51 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.78/14.51 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 30.78/14.51 | size_r > sIZE_RATIO * size_l = case fm_R of { 30.78/14.51 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 30.78/14.51 | otherwise -> double_L fm_L fm_R; 30.78/14.51 } 30.78/14.51 | size_l > sIZE_RATIO * size_r = case fm_L of { 30.78/14.51 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 30.78/14.51 | otherwise -> double_R fm_L fm_R; 30.78/14.51 } 30.78/14.51 | otherwise = mkBranch 2 key elt fm_L fm_R where { 30.78/14.51 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 30.78/14.51 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 30.78/14.51 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 30.78/14.51 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 30.78/14.51 size_l = sizeFM fm_L; 30.78/14.51 size_r = sizeFM fm_R; 30.78/14.51 }; 30.78/14.51 30.78/14.51 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 30.78/14.51 mkBranch which key elt fm_l fm_r = let { 30.78/14.51 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 30.78/14.51 } in result where { 30.78/14.51 balance_ok = True; 30.78/14.51 left_ok = case fm_l of { 30.78/14.51 EmptyFM-> True; 30.78/14.51 Branch left_key _ _ _ _-> let { 30.78/14.51 biggest_left_key = fst (findMax fm_l); 30.78/14.51 } in biggest_left_key < key; 30.78/14.51 } ; 30.78/14.51 left_size = sizeFM fm_l; 30.78/14.51 right_ok = case fm_r of { 30.78/14.51 EmptyFM-> True; 30.78/14.51 Branch right_key _ _ _ _-> let { 30.78/14.51 smallest_right_key = fst (findMin fm_r); 30.78/14.51 } in key < smallest_right_key; 30.78/14.51 } ; 30.78/14.51 right_size = sizeFM fm_r; 30.78/14.51 unbox :: Int -> Int; 30.78/14.51 unbox x = x; 30.78/14.51 }; 30.78/14.51 30.78/14.51 sIZE_RATIO :: Int; 30.78/14.51 sIZE_RATIO = 5; 30.78/14.51 30.78/14.51 sizeFM :: FiniteMap a b -> Int; 30.78/14.51 sizeFM EmptyFM = 0; 30.78/14.51 sizeFM (Branch _ _ size _ _) = size; 30.78/14.51 30.78/14.51 } 30.78/14.51 module Maybe where { 30.78/14.51 import qualified FiniteMap; 30.78/14.51 import qualified Main; 30.78/14.51 import qualified Prelude; 30.78/14.51 } 30.78/14.51 module Main where { 30.78/14.51 import qualified FiniteMap; 30.78/14.51 import qualified Maybe; 30.78/14.51 import qualified Prelude; 30.78/14.51 } 30.78/14.51 30.78/14.51 ---------------------------------------- 30.78/14.51 30.78/14.51 (3) CR (EQUIVALENT) 30.78/14.51 Case Reductions: 30.78/14.51 The following Case expression 30.78/14.51 "case compare x y of { 30.78/14.51 EQ -> o; 30.78/14.51 LT -> LT; 30.78/14.51 GT -> GT} 30.78/14.51 " 30.78/14.51 is transformed to 30.78/14.51 "primCompAux0 o EQ = o; 30.78/14.51 primCompAux0 o LT = LT; 30.78/14.51 primCompAux0 o GT = GT; 30.78/14.51 " 30.78/14.51 The following Case expression 30.78/14.51 "case fm_r of { 30.78/14.51 EmptyFM -> True; 30.78/14.51 Branch right_key _ _ _ _ -> let { 30.78/14.51 smallest_right_key = fst (findMin fm_r); 30.78/14.51 } in key < smallest_right_key} 30.78/14.51 " 30.78/14.51 is transformed to 30.78/14.51 "right_ok0 fm_r key EmptyFM = True; 30.78/14.51 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 30.78/14.51 smallest_right_key = fst (findMin fm_r); 30.78/14.51 } in key < smallest_right_key; 30.78/14.51 " 30.78/14.51 The following Case expression 30.78/14.51 "case fm_l of { 30.78/14.51 EmptyFM -> True; 30.78/14.51 Branch left_key _ _ _ _ -> let { 30.78/14.51 biggest_left_key = fst (findMax fm_l); 30.78/14.51 } in biggest_left_key < key} 30.78/14.51 " 30.78/14.51 is transformed to 30.78/14.51 "left_ok0 fm_l key EmptyFM = True; 30.78/14.51 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 30.78/14.51 biggest_left_key = fst (findMax fm_l); 30.78/14.51 } in biggest_left_key < key; 30.78/14.51 " 30.78/14.51 The following Case expression 30.78/14.51 "case fm_R of { 30.78/14.51 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 30.78/14.51 " 30.78/14.51 is transformed to 30.78/14.51 "mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 30.78/14.51 " 30.78/14.51 The following Case expression 30.78/14.51 "case fm_L of { 30.78/14.51 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 30.78/14.51 " 30.78/14.51 is transformed to 30.78/14.51 "mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 30.78/14.51 " 30.78/14.51 30.78/14.51 ---------------------------------------- 30.78/14.51 30.78/14.51 (4) 30.78/14.51 Obligation: 30.78/14.51 mainModule Main 30.78/14.51 module FiniteMap where { 30.78/14.51 import qualified Main; 30.78/14.51 import qualified Maybe; 30.78/14.51 import qualified Prelude; 30.78/14.51 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 30.78/14.51 30.78/14.51 instance (Eq a, Eq b) => Eq FiniteMap a b where { 30.78/14.51 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.78/14.51 } 30.78/14.51 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 30.78/14.51 delFromFM EmptyFM del_key = emptyFM; 30.78/14.51 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 30.78/14.51 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 30.78/14.51 | key == del_key = glueBal fm_l fm_r; 30.78/14.51 30.78/14.51 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 30.78/14.51 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 30.78/14.51 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 30.78/14.51 30.78/14.51 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 30.78/14.51 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 30.78/14.51 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 30.78/14.51 30.78/14.51 emptyFM :: FiniteMap a b; 30.78/14.51 emptyFM = EmptyFM; 30.78/14.51 30.78/14.51 findMax :: FiniteMap b a -> (b,a); 30.78/14.51 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 30.78/14.51 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 30.78/14.51 30.78/14.51 findMin :: FiniteMap a b -> (a,b); 30.78/14.51 findMin (Branch key elt _ EmptyFM _) = (key,elt); 30.78/14.51 findMin (Branch key elt _ fm_l _) = findMin fm_l; 30.78/14.51 30.78/14.51 fmToList :: FiniteMap b a -> [(b,a)]; 30.78/14.51 fmToList fm = foldFM fmToList0 [] fm; 30.78/14.51 30.78/14.51 fmToList0 key elt rest = (key,elt) : rest; 30.78/14.51 30.78/14.51 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 30.78/14.51 foldFM k z EmptyFM = z; 30.78/14.51 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.78/14.51 30.78/14.51 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.78/14.51 glueBal EmptyFM fm2 = fm2; 30.78/14.51 glueBal fm1 EmptyFM = fm1; 30.78/14.51 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 30.78/14.51 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 30.78/14.51 mid_elt1 = mid_elt10 vv2; 30.78/14.51 mid_elt10 (_,mid_elt1) = mid_elt1; 30.78/14.51 mid_elt2 = mid_elt20 vv3; 30.78/14.51 mid_elt20 (_,mid_elt2) = mid_elt2; 30.78/14.51 mid_key1 = mid_key10 vv2; 30.78/14.51 mid_key10 (mid_key1,_) = mid_key1; 30.78/14.51 mid_key2 = mid_key20 vv3; 30.78/14.51 mid_key20 (mid_key2,_) = mid_key2; 30.78/14.51 vv2 = findMax fm1; 30.78/14.51 vv3 = findMin fm2; 30.78/14.51 }; 30.78/14.51 30.78/14.51 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.78/14.51 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 30.78/14.51 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 30.78/14.51 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 30.78/14.51 | otherwise = mkBranch 2 key elt fm_L fm_R where { 30.78/14.51 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 30.78/14.51 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 30.78/14.51 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 30.78/14.51 | otherwise = double_L fm_L fm_R; 30.78/14.51 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 30.78/14.51 | otherwise = double_R fm_L fm_R; 30.78/14.51 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 30.78/14.51 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 30.78/14.51 size_l = sizeFM fm_L; 30.78/14.51 size_r = sizeFM fm_R; 30.78/14.51 }; 30.78/14.51 30.78/14.51 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.78/14.51 mkBranch which key elt fm_l fm_r = let { 30.78/14.51 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 30.78/14.51 } in result where { 30.78/14.51 balance_ok = True; 30.78/14.51 left_ok = left_ok0 fm_l key fm_l; 30.78/14.51 left_ok0 fm_l key EmptyFM = True; 30.78/14.51 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 30.78/14.51 biggest_left_key = fst (findMax fm_l); 30.78/14.51 } in biggest_left_key < key; 30.78/14.51 left_size = sizeFM fm_l; 30.78/14.51 right_ok = right_ok0 fm_r key fm_r; 30.78/14.51 right_ok0 fm_r key EmptyFM = True; 30.78/14.51 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 30.78/14.51 smallest_right_key = fst (findMin fm_r); 30.78/14.51 } in key < smallest_right_key; 30.78/14.51 right_size = sizeFM fm_r; 30.78/14.51 unbox :: Int -> Int; 30.78/14.51 unbox x = x; 30.78/14.51 }; 30.78/14.51 30.78/14.51 sIZE_RATIO :: Int; 30.78/14.51 sIZE_RATIO = 5; 30.78/14.51 30.78/14.51 sizeFM :: FiniteMap a b -> Int; 30.78/14.51 sizeFM EmptyFM = 0; 30.78/14.51 sizeFM (Branch _ _ size _ _) = size; 30.78/14.51 30.78/14.51 } 30.78/14.51 module Maybe where { 30.78/14.51 import qualified FiniteMap; 30.78/14.51 import qualified Main; 30.78/14.51 import qualified Prelude; 30.78/14.51 } 30.78/14.51 module Main where { 30.78/14.51 import qualified FiniteMap; 30.78/14.51 import qualified Maybe; 30.78/14.51 import qualified Prelude; 30.78/14.51 } 30.78/14.51 30.78/14.51 ---------------------------------------- 30.78/14.51 30.78/14.51 (5) IFR (EQUIVALENT) 30.78/14.51 If Reductions: 30.78/14.51 The following If expression 30.78/14.51 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 30.78/14.51 is transformed to 30.78/14.51 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 30.78/14.51 primDivNatS0 x y False = Zero; 30.78/14.51 " 30.78/14.51 The following If expression 30.78/14.51 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 30.78/14.51 is transformed to 30.78/14.51 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 30.78/14.51 primModNatS0 x y False = Succ x; 30.78/14.51 " 30.78/14.51 30.78/14.51 ---------------------------------------- 30.78/14.51 30.78/14.51 (6) 30.78/14.51 Obligation: 30.78/14.51 mainModule Main 30.78/14.51 module FiniteMap where { 30.78/14.51 import qualified Main; 30.78/14.51 import qualified Maybe; 30.78/14.51 import qualified Prelude; 30.78/14.51 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 30.78/14.51 30.78/14.51 instance (Eq a, Eq b) => Eq FiniteMap b a where { 30.78/14.51 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.78/14.51 } 30.78/14.51 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 30.78/14.51 delFromFM EmptyFM del_key = emptyFM; 30.78/14.51 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 30.78/14.51 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 30.78/14.51 | key == del_key = glueBal fm_l fm_r; 30.78/14.51 30.78/14.51 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 30.78/14.51 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 30.78/14.51 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 30.78/14.51 30.78/14.51 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 30.78/14.51 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 30.78/14.51 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 30.78/14.51 30.78/14.51 emptyFM :: FiniteMap a b; 30.78/14.51 emptyFM = EmptyFM; 30.78/14.51 30.78/14.51 findMax :: FiniteMap b a -> (b,a); 30.78/14.51 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 30.78/14.51 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 30.78/14.51 30.78/14.51 findMin :: FiniteMap a b -> (a,b); 30.78/14.51 findMin (Branch key elt _ EmptyFM _) = (key,elt); 30.78/14.51 findMin (Branch key elt _ fm_l _) = findMin fm_l; 30.78/14.51 30.78/14.51 fmToList :: FiniteMap a b -> [(a,b)]; 30.78/14.51 fmToList fm = foldFM fmToList0 [] fm; 30.78/14.51 30.78/14.51 fmToList0 key elt rest = (key,elt) : rest; 30.78/14.51 30.78/14.51 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 30.78/14.51 foldFM k z EmptyFM = z; 30.78/14.51 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.78/14.51 30.78/14.51 glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 30.78/14.51 glueBal EmptyFM fm2 = fm2; 30.78/14.51 glueBal fm1 EmptyFM = fm1; 30.78/14.51 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 30.78/14.51 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 30.78/14.51 mid_elt1 = mid_elt10 vv2; 30.78/14.51 mid_elt10 (_,mid_elt1) = mid_elt1; 30.78/14.51 mid_elt2 = mid_elt20 vv3; 30.78/14.51 mid_elt20 (_,mid_elt2) = mid_elt2; 30.78/14.51 mid_key1 = mid_key10 vv2; 30.78/14.51 mid_key10 (mid_key1,_) = mid_key1; 30.78/14.51 mid_key2 = mid_key20 vv3; 30.78/14.51 mid_key20 (mid_key2,_) = mid_key2; 30.78/14.51 vv2 = findMax fm1; 30.78/14.51 vv3 = findMin fm2; 30.78/14.51 }; 30.78/14.51 30.78/14.51 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.78/14.51 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 30.78/14.51 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 30.78/14.51 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 30.78/14.51 | otherwise = mkBranch 2 key elt fm_L fm_R where { 30.78/14.51 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 30.78/14.51 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 30.78/14.51 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 30.78/14.51 | otherwise = double_L fm_L fm_R; 30.78/14.51 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 30.78/14.51 | otherwise = double_R fm_L fm_R; 30.78/14.51 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 30.78/14.51 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 30.78/14.51 size_l = sizeFM fm_L; 30.78/14.51 size_r = sizeFM fm_R; 30.78/14.51 }; 30.78/14.51 30.78/14.51 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 30.78/14.51 mkBranch which key elt fm_l fm_r = let { 30.78/14.51 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 30.78/14.51 } in result where { 30.78/14.51 balance_ok = True; 30.78/14.51 left_ok = left_ok0 fm_l key fm_l; 30.78/14.51 left_ok0 fm_l key EmptyFM = True; 30.78/14.51 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 30.78/14.51 biggest_left_key = fst (findMax fm_l); 30.78/14.51 } in biggest_left_key < key; 30.78/14.51 left_size = sizeFM fm_l; 30.78/14.51 right_ok = right_ok0 fm_r key fm_r; 30.78/14.51 right_ok0 fm_r key EmptyFM = True; 30.78/14.51 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 30.78/14.51 smallest_right_key = fst (findMin fm_r); 30.78/14.51 } in key < smallest_right_key; 30.78/14.51 right_size = sizeFM fm_r; 30.78/14.51 unbox :: Int -> Int; 30.78/14.51 unbox x = x; 30.78/14.51 }; 30.78/14.51 30.78/14.51 sIZE_RATIO :: Int; 30.78/14.51 sIZE_RATIO = 5; 30.78/14.51 30.78/14.51 sizeFM :: FiniteMap b a -> Int; 30.78/14.51 sizeFM EmptyFM = 0; 30.78/14.51 sizeFM (Branch _ _ size _ _) = size; 30.78/14.51 30.78/14.51 } 30.78/14.51 module Maybe where { 30.78/14.51 import qualified FiniteMap; 30.78/14.51 import qualified Main; 30.78/14.51 import qualified Prelude; 30.78/14.51 } 30.78/14.51 module Main where { 30.78/14.51 import qualified FiniteMap; 30.78/14.51 import qualified Maybe; 30.78/14.51 import qualified Prelude; 30.78/14.51 } 30.78/14.51 30.78/14.51 ---------------------------------------- 30.78/14.51 30.78/14.51 (7) BR (EQUIVALENT) 30.78/14.51 Replaced joker patterns by fresh variables and removed binding patterns. 30.78/14.51 ---------------------------------------- 30.78/14.51 30.78/14.51 (8) 30.78/14.51 Obligation: 30.78/14.51 mainModule Main 30.78/14.51 module FiniteMap where { 30.78/14.51 import qualified Main; 30.78/14.51 import qualified Maybe; 30.78/14.51 import qualified Prelude; 30.78/14.51 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 30.78/14.51 30.78/14.51 instance (Eq a, Eq b) => Eq FiniteMap a b where { 30.78/14.51 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.78/14.51 } 30.78/14.51 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 30.78/14.51 delFromFM EmptyFM del_key = emptyFM; 30.78/14.51 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 30.78/14.51 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 30.78/14.51 | key == del_key = glueBal fm_l fm_r; 30.78/14.51 30.78/14.51 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 30.78/14.51 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 30.78/14.51 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 30.78/14.51 30.78/14.51 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 30.78/14.51 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 30.78/14.51 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 30.78/14.51 30.78/14.51 emptyFM :: FiniteMap b a; 30.78/14.51 emptyFM = EmptyFM; 30.78/14.51 30.78/14.51 findMax :: FiniteMap a b -> (a,b); 30.78/14.51 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 30.78/14.51 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 30.78/14.51 30.78/14.51 findMin :: FiniteMap b a -> (b,a); 30.78/14.51 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 30.78/14.51 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 30.78/14.51 30.78/14.51 fmToList :: FiniteMap b a -> [(b,a)]; 30.78/14.51 fmToList fm = foldFM fmToList0 [] fm; 30.78/14.51 30.78/14.51 fmToList0 key elt rest = (key,elt) : rest; 30.78/14.51 30.78/14.51 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 30.78/14.51 foldFM k z EmptyFM = z; 30.78/14.51 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.78/14.51 30.78/14.51 glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 30.78/14.51 glueBal EmptyFM fm2 = fm2; 30.78/14.51 glueBal fm1 EmptyFM = fm1; 30.78/14.51 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 30.78/14.51 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 30.78/14.51 mid_elt1 = mid_elt10 vv2; 30.78/14.51 mid_elt10 (vyw,mid_elt1) = mid_elt1; 30.78/14.51 mid_elt2 = mid_elt20 vv3; 30.78/14.51 mid_elt20 (vyv,mid_elt2) = mid_elt2; 30.78/14.51 mid_key1 = mid_key10 vv2; 30.78/14.51 mid_key10 (mid_key1,vyx) = mid_key1; 30.78/14.51 mid_key2 = mid_key20 vv3; 30.78/14.51 mid_key20 (mid_key2,vyy) = mid_key2; 30.78/14.51 vv2 = findMax fm1; 30.78/14.51 vv3 = findMin fm2; 30.78/14.51 }; 30.78/14.51 30.78/14.51 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.78/14.51 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 30.78/14.51 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 30.78/14.51 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 30.78/14.51 | otherwise = mkBranch 2 key elt fm_L fm_R where { 30.78/14.51 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); 30.78/14.51 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); 30.78/14.51 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 30.78/14.51 | otherwise = double_L fm_L fm_R; 30.78/14.51 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 30.78/14.51 | otherwise = double_R fm_L fm_R; 30.78/14.51 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; 30.78/14.51 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); 30.78/14.51 size_l = sizeFM fm_L; 30.78/14.51 size_r = sizeFM fm_R; 30.78/14.51 }; 30.78/14.51 30.78/14.51 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 30.78/14.51 mkBranch which key elt fm_l fm_r = let { 30.78/14.51 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 30.78/14.51 } in result where { 30.78/14.51 balance_ok = True; 30.78/14.51 left_ok = left_ok0 fm_l key fm_l; 30.78/14.51 left_ok0 fm_l key EmptyFM = True; 30.78/14.51 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 30.78/14.51 biggest_left_key = fst (findMax fm_l); 30.78/14.51 } in biggest_left_key < key; 30.78/14.51 left_size = sizeFM fm_l; 30.78/14.51 right_ok = right_ok0 fm_r key fm_r; 30.78/14.51 right_ok0 fm_r key EmptyFM = True; 30.78/14.51 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 30.78/14.51 smallest_right_key = fst (findMin fm_r); 30.78/14.51 } in key < smallest_right_key; 30.78/14.51 right_size = sizeFM fm_r; 30.78/14.51 unbox :: Int -> Int; 30.78/14.51 unbox x = x; 30.78/14.51 }; 30.78/14.51 30.78/14.51 sIZE_RATIO :: Int; 30.78/14.51 sIZE_RATIO = 5; 30.78/14.51 30.78/14.51 sizeFM :: FiniteMap b a -> Int; 30.78/14.51 sizeFM EmptyFM = 0; 30.78/14.51 sizeFM (Branch vzu vzv size vzw vzx) = size; 30.78/14.51 30.78/14.51 } 30.78/14.51 module Maybe where { 30.78/14.51 import qualified FiniteMap; 30.78/14.51 import qualified Main; 30.78/14.51 import qualified Prelude; 30.78/14.51 } 30.78/14.51 module Main where { 30.78/14.51 import qualified FiniteMap; 30.78/14.51 import qualified Maybe; 30.78/14.51 import qualified Prelude; 30.78/14.51 } 30.78/14.51 30.78/14.51 ---------------------------------------- 30.78/14.51 30.78/14.51 (9) COR (EQUIVALENT) 30.78/14.51 Cond Reductions: 30.78/14.51 The following Function with conditions 30.78/14.51 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 30.78/14.51 " 30.78/14.51 is transformed to 30.78/14.51 "compare x y = compare3 x y; 30.78/14.51 " 30.78/14.51 "compare2 x y True = EQ; 30.78/14.51 compare2 x y False = compare1 x y (x <= y); 30.78/14.51 " 30.78/14.51 "compare1 x y True = LT; 30.78/14.51 compare1 x y False = compare0 x y otherwise; 30.78/14.51 " 30.78/14.51 "compare0 x y True = GT; 30.78/14.51 " 30.78/14.51 "compare3 x y = compare2 x y (x == y); 30.78/14.51 " 30.78/14.51 The following Function with conditions 30.78/14.51 "absReal x|x >= 0x|otherwise`negate` x; 30.78/14.51 " 30.78/14.51 is transformed to 30.78/14.51 "absReal x = absReal2 x; 30.78/14.51 " 30.78/14.51 "absReal1 x True = x; 30.78/14.51 absReal1 x False = absReal0 x otherwise; 30.78/14.51 " 30.78/14.51 "absReal0 x True = `negate` x; 30.78/14.51 " 30.78/14.51 "absReal2 x = absReal1 x (x >= 0); 30.78/14.51 " 30.78/14.51 The following Function with conditions 30.78/14.51 "gcd' x 0 = x; 30.78/14.51 gcd' x y = gcd' y (x `rem` y); 30.78/14.51 " 30.78/14.51 is transformed to 30.78/14.51 "gcd' x wuy = gcd'2 x wuy; 30.78/14.51 gcd' x y = gcd'0 x y; 30.78/14.51 " 30.78/14.51 "gcd'0 x y = gcd' y (x `rem` y); 30.78/14.51 " 30.78/14.51 "gcd'1 True x wuy = x; 30.78/14.51 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 30.78/14.51 " 30.78/14.51 "gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 30.78/14.51 gcd'2 wvw wvx = gcd'0 wvw wvx; 30.78/14.51 " 30.78/14.51 The following Function with conditions 30.78/14.51 "gcd 0 0 = error []; 30.78/14.51 gcd x y = gcd' (abs x) (abs y) where { 30.78/14.51 gcd' x 0 = x; 30.78/14.51 gcd' x y = gcd' y (x `rem` y); 30.78/14.51 } 30.78/14.51 ; 30.78/14.51 " 30.78/14.51 is transformed to 30.78/14.52 "gcd wvy wvz = gcd3 wvy wvz; 30.78/14.52 gcd x y = gcd0 x y; 30.78/14.52 " 30.78/14.52 "gcd0 x y = gcd' (abs x) (abs y) where { 30.78/14.52 gcd' x wuy = gcd'2 x wuy; 30.78/14.52 gcd' x y = gcd'0 x y; 30.78/14.52 ; 30.78/14.52 gcd'0 x y = gcd' y (x `rem` y); 30.78/14.52 ; 30.78/14.52 gcd'1 True x wuy = x; 30.78/14.52 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 30.78/14.52 ; 30.78/14.52 gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 30.78/14.52 gcd'2 wvw wvx = gcd'0 wvw wvx; 30.78/14.52 } 30.78/14.52 ; 30.78/14.52 " 30.78/14.52 "gcd1 True wvy wvz = error []; 30.78/14.52 gcd1 wwu wwv www = gcd0 wwv www; 30.78/14.52 " 30.78/14.52 "gcd2 True wvy wvz = gcd1 (wvz == 0) wvy wvz; 30.78/14.52 gcd2 wwx wwy wwz = gcd0 wwy wwz; 30.78/14.52 " 30.78/14.52 "gcd3 wvy wvz = gcd2 (wvy == 0) wvy wvz; 30.78/14.52 gcd3 wxu wxv = gcd0 wxu wxv; 30.78/14.52 " 30.78/14.52 The following Function with conditions 30.78/14.52 "undefined |Falseundefined; 30.78/14.52 " 30.78/14.52 is transformed to 30.78/14.52 "undefined = undefined1; 30.78/14.52 " 30.78/14.52 "undefined0 True = undefined; 30.78/14.52 " 30.78/14.52 "undefined1 = undefined0 False; 30.78/14.52 " 30.78/14.52 The following Function with conditions 30.78/14.52 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 30.78/14.52 d = gcd x y; 30.78/14.52 } 30.78/14.52 ; 30.78/14.52 " 30.78/14.52 is transformed to 30.78/14.52 "reduce x y = reduce2 x y; 30.78/14.52 " 30.78/14.52 "reduce2 x y = reduce1 x y (y == 0) where { 30.78/14.52 d = gcd x y; 30.78/14.52 ; 30.78/14.52 reduce0 x y True = x `quot` d :% (y `quot` d); 30.78/14.52 ; 30.78/14.52 reduce1 x y True = error []; 30.78/14.52 reduce1 x y False = reduce0 x y otherwise; 30.78/14.52 } 30.78/14.52 ; 30.78/14.52 " 30.78/14.52 The following Function with conditions 30.78/14.52 "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; 30.78/14.52 " 30.78/14.52 is transformed to 30.78/14.52 "mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 30.78/14.52 " 30.78/14.52 "mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 30.78/14.52 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 30.78/14.52 " 30.78/14.52 "mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 30.78/14.52 " 30.78/14.52 "mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 30.78/14.52 " 30.78/14.52 The following Function with conditions 30.78/14.52 "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; 30.78/14.52 " 30.78/14.52 is transformed to 30.78/14.52 "mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 30.78/14.52 " 30.78/14.52 "mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 30.78/14.52 " 30.78/14.52 "mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 30.78/14.52 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 30.78/14.52 " 30.78/14.52 "mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 30.78/14.52 " 30.78/14.52 The following Function with conditions 30.78/14.52 "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 { 30.78/14.52 double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 30.78/14.52 ; 30.78/14.52 double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 30.78/14.52 ; 30.78/14.52 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; 30.78/14.52 ; 30.78/14.52 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; 30.78/14.52 ; 30.78/14.52 single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 30.78/14.52 ; 30.78/14.52 single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 30.78/14.52 ; 30.78/14.52 size_l = sizeFM fm_L; 30.78/14.52 ; 30.78/14.52 size_r = sizeFM fm_R; 30.78/14.52 } 30.78/14.52 ; 30.78/14.52 " 30.78/14.52 is transformed to 30.78/14.52 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 30.78/14.52 " 30.78/14.52 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 30.78/14.52 double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 30.78/14.52 ; 30.78/14.52 double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 30.78/14.52 ; 30.78/14.52 mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 30.78/14.52 ; 30.78/14.52 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 30.78/14.52 ; 30.78/14.52 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 30.78/14.52 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 30.78/14.52 ; 30.78/14.52 mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 30.78/14.52 ; 30.78/14.52 mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 30.78/14.52 ; 30.78/14.52 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 30.78/14.52 ; 30.78/14.52 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 30.78/14.52 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 30.78/14.52 ; 30.78/14.52 mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 30.78/14.52 ; 30.78/14.52 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 30.78/14.52 ; 30.78/14.52 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 30.78/14.52 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 30.78/14.52 ; 30.78/14.52 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 30.78/14.52 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 30.78/14.52 ; 30.78/14.52 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 30.78/14.52 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 30.78/14.52 ; 30.78/14.52 single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 30.78/14.52 ; 30.78/14.52 single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 30.78/14.52 ; 30.78/14.52 size_l = sizeFM fm_L; 30.78/14.52 ; 30.78/14.52 size_r = sizeFM fm_R; 30.78/14.52 } 30.78/14.52 ; 30.78/14.52 " 30.78/14.52 The following Function with conditions 30.78/14.52 "glueBal EmptyFM fm2 = fm2; 30.78/14.52 glueBal fm1 EmptyFM = fm1; 30.78/14.52 glueBal fm1 fm2|sizeFM fm2 > sizeFM fm1mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2)|otherwisemkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 30.78/14.52 mid_elt1 = mid_elt10 vv2; 30.78/14.52 ; 30.78/14.52 mid_elt10 (vyw,mid_elt1) = mid_elt1; 30.78/14.52 ; 30.78/14.52 mid_elt2 = mid_elt20 vv3; 30.78/14.52 ; 30.78/14.52 mid_elt20 (vyv,mid_elt2) = mid_elt2; 30.78/14.52 ; 30.78/14.52 mid_key1 = mid_key10 vv2; 30.78/14.52 ; 30.78/14.52 mid_key10 (mid_key1,vyx) = mid_key1; 30.78/14.52 ; 30.78/14.52 mid_key2 = mid_key20 vv3; 30.78/14.52 ; 30.78/14.52 mid_key20 (mid_key2,vyy) = mid_key2; 30.78/14.52 ; 30.78/14.52 vv2 = findMax fm1; 30.78/14.52 ; 30.78/14.52 vv3 = findMin fm2; 30.78/14.52 } 30.78/14.52 ; 30.78/14.52 " 30.78/14.52 is transformed to 30.78/14.52 "glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 30.78/14.52 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 30.78/14.52 glueBal fm1 fm2 = glueBal2 fm1 fm2; 30.78/14.52 " 30.78/14.52 "glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 30.78/14.52 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 30.78/14.52 ; 30.78/14.52 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 30.78/14.52 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 30.78/14.52 ; 30.78/14.52 mid_elt1 = mid_elt10 vv2; 30.78/14.52 ; 30.78/14.52 mid_elt10 (vyw,mid_elt1) = mid_elt1; 30.78/14.52 ; 30.78/14.52 mid_elt2 = mid_elt20 vv3; 30.78/14.52 ; 30.78/14.52 mid_elt20 (vyv,mid_elt2) = mid_elt2; 30.78/14.52 ; 30.78/14.52 mid_key1 = mid_key10 vv2; 30.78/14.52 ; 30.78/14.52 mid_key10 (mid_key1,vyx) = mid_key1; 30.78/14.52 ; 30.78/14.52 mid_key2 = mid_key20 vv3; 30.78/14.52 ; 30.78/14.52 mid_key20 (mid_key2,vyy) = mid_key2; 30.78/14.52 ; 30.78/14.52 vv2 = findMax fm1; 30.78/14.52 ; 30.78/14.52 vv3 = findMin fm2; 30.78/14.52 } 30.78/14.52 ; 30.78/14.52 " 30.78/14.52 "glueBal3 fm1 EmptyFM = fm1; 30.78/14.52 glueBal3 wxz wyu = glueBal2 wxz wyu; 30.78/14.52 " 30.78/14.52 "glueBal4 EmptyFM fm2 = fm2; 30.78/14.52 glueBal4 wyw wyx = glueBal3 wyw wyx; 30.78/14.52 " 30.78/14.52 The following Function with conditions 30.78/14.52 "delFromFM EmptyFM del_key = emptyFM; 30.78/14.52 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; 30.78/14.52 " 30.78/14.52 is transformed to 30.78/14.52 "delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 30.78/14.52 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 30.78/14.52 " 30.78/14.52 "delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 30.78/14.52 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 30.78/14.52 " 30.78/14.52 "delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 30.78/14.52 " 30.78/14.52 "delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 30.78/14.52 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 30.78/14.52 " 30.78/14.52 "delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 30.78/14.52 " 30.78/14.52 "delFromFM4 EmptyFM del_key = emptyFM; 30.78/14.52 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 30.78/14.52 " 30.78/14.52 30.78/14.52 ---------------------------------------- 30.78/14.52 30.78/14.52 (10) 30.78/14.52 Obligation: 30.78/14.52 mainModule Main 30.78/14.52 module FiniteMap where { 30.78/14.52 import qualified Main; 30.78/14.52 import qualified Maybe; 30.78/14.52 import qualified Prelude; 30.78/14.52 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 30.78/14.52 30.78/14.52 instance (Eq a, Eq b) => Eq FiniteMap b a where { 30.78/14.52 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.78/14.52 } 30.78/14.52 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 30.78/14.52 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 30.78/14.52 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 30.78/14.52 30.78/14.52 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 30.78/14.52 30.78/14.52 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 30.78/14.52 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 30.78/14.52 30.78/14.52 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 30.78/14.52 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 30.78/14.52 30.78/14.52 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 30.78/14.52 30.78/14.52 delFromFM4 EmptyFM del_key = emptyFM; 30.78/14.52 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 30.78/14.52 30.78/14.52 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 30.78/14.52 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 30.78/14.52 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 30.78/14.52 30.78/14.52 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 30.78/14.52 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 30.78/14.52 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 30.78/14.52 30.78/14.52 emptyFM :: FiniteMap b a; 30.78/14.52 emptyFM = EmptyFM; 30.78/14.52 30.78/14.52 findMax :: FiniteMap b a -> (b,a); 30.78/14.52 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 30.78/14.52 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 30.78/14.52 30.78/14.52 findMin :: FiniteMap b a -> (b,a); 30.78/14.52 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 30.78/14.52 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 30.78/14.52 30.78/14.52 fmToList :: FiniteMap b a -> [(b,a)]; 30.78/14.52 fmToList fm = foldFM fmToList0 [] fm; 30.78/14.52 30.78/14.52 fmToList0 key elt rest = (key,elt) : rest; 30.78/14.52 30.78/14.52 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 30.78/14.52 foldFM k z EmptyFM = z; 30.78/14.52 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.78/14.52 30.78/14.52 glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 30.78/14.52 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 30.78/14.52 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 30.78/14.52 glueBal fm1 fm2 = glueBal2 fm1 fm2; 30.78/14.52 30.78/14.52 glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 30.78/14.52 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 30.78/14.52 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 30.78/14.52 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 30.78/14.52 mid_elt1 = mid_elt10 vv2; 30.78/14.52 mid_elt10 (vyw,mid_elt1) = mid_elt1; 30.78/14.52 mid_elt2 = mid_elt20 vv3; 30.78/14.52 mid_elt20 (vyv,mid_elt2) = mid_elt2; 30.78/14.52 mid_key1 = mid_key10 vv2; 30.78/14.52 mid_key10 (mid_key1,vyx) = mid_key1; 30.78/14.52 mid_key2 = mid_key20 vv3; 30.78/14.52 mid_key20 (mid_key2,vyy) = mid_key2; 30.78/14.52 vv2 = findMax fm1; 30.78/14.52 vv3 = findMin fm2; 30.78/14.52 }; 30.78/14.52 30.78/14.52 glueBal3 fm1 EmptyFM = fm1; 30.78/14.52 glueBal3 wxz wyu = glueBal2 wxz wyu; 30.78/14.52 30.78/14.52 glueBal4 EmptyFM fm2 = fm2; 30.78/14.52 glueBal4 wyw wyx = glueBal3 wyw wyx; 30.78/14.52 30.78/14.52 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.78/14.52 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 30.78/14.52 30.78/14.52 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 31.03/14.59 double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 31.03/14.59 double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 31.03/14.59 mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 31.03/14.59 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 31.03/14.59 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 31.03/14.59 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 31.03/14.59 mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 31.03/14.59 mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 31.03/14.59 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 31.03/14.59 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 31.03/14.59 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 31.03/14.59 mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 31.03/14.59 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 31.03/14.59 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 31.03/14.59 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 31.03/14.59 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 31.03/14.59 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 31.03/14.59 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 31.03/14.59 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 31.03/14.59 single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 31.03/14.59 single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 31.03/14.59 size_l = sizeFM fm_L; 31.03/14.59 size_r = sizeFM fm_R; 31.03/14.59 }; 31.03/14.59 31.03/14.59 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.03/14.59 mkBranch which key elt fm_l fm_r = let { 31.03/14.59 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 31.03/14.59 } in result where { 31.03/14.59 balance_ok = True; 31.03/14.59 left_ok = left_ok0 fm_l key fm_l; 31.03/14.59 left_ok0 fm_l key EmptyFM = True; 31.03/14.59 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 31.03/14.59 biggest_left_key = fst (findMax fm_l); 31.03/14.59 } in biggest_left_key < key; 31.03/14.59 left_size = sizeFM fm_l; 31.03/14.59 right_ok = right_ok0 fm_r key fm_r; 31.03/14.59 right_ok0 fm_r key EmptyFM = True; 31.03/14.59 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 31.03/14.59 smallest_right_key = fst (findMin fm_r); 31.03/14.59 } in key < smallest_right_key; 31.03/14.59 right_size = sizeFM fm_r; 31.03/14.59 unbox :: Int -> Int; 31.03/14.59 unbox x = x; 31.03/14.59 }; 31.03/14.59 31.03/14.59 sIZE_RATIO :: Int; 31.03/14.59 sIZE_RATIO = 5; 31.03/14.59 31.03/14.59 sizeFM :: FiniteMap a b -> Int; 31.03/14.59 sizeFM EmptyFM = 0; 31.03/14.59 sizeFM (Branch vzu vzv size vzw vzx) = size; 31.03/14.59 31.03/14.59 } 31.03/14.59 module Maybe where { 31.03/14.59 import qualified FiniteMap; 31.03/14.59 import qualified Main; 31.03/14.59 import qualified Prelude; 31.03/14.59 } 31.03/14.59 module Main where { 31.03/14.59 import qualified FiniteMap; 31.03/14.59 import qualified Maybe; 31.03/14.59 import qualified Prelude; 31.03/14.59 } 31.03/14.59 31.03/14.59 ---------------------------------------- 31.03/14.59 31.03/14.59 (11) LetRed (EQUIVALENT) 31.03/14.59 Let/Where Reductions: 31.03/14.59 The bindings of the following Let/Where expression 31.03/14.59 "gcd' (abs x) (abs y) where { 31.03/14.59 gcd' x wuy = gcd'2 x wuy; 31.03/14.59 gcd' x y = gcd'0 x y; 31.03/14.59 ; 31.03/14.59 gcd'0 x y = gcd' y (x `rem` y); 31.03/14.59 ; 31.03/14.59 gcd'1 True x wuy = x; 31.03/14.59 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 31.03/14.59 ; 31.03/14.59 gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 31.03/14.59 gcd'2 wvw wvx = gcd'0 wvw wvx; 31.03/14.59 } 31.03/14.59 " 31.03/14.59 are unpacked to the following functions on top level 31.03/14.59 "gcd0Gcd'1 True x wuy = x; 31.03/14.59 gcd0Gcd'1 wuz wvu wvv = gcd0Gcd'0 wvu wvv; 31.03/14.59 " 31.03/14.59 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 31.03/14.59 " 31.03/14.59 "gcd0Gcd'2 x wuy = gcd0Gcd'1 (wuy == 0) x wuy; 31.03/14.59 gcd0Gcd'2 wvw wvx = gcd0Gcd'0 wvw wvx; 31.03/14.59 " 31.03/14.59 "gcd0Gcd' x wuy = gcd0Gcd'2 x wuy; 31.03/14.59 gcd0Gcd' x y = gcd0Gcd'0 x y; 31.03/14.59 " 31.03/14.59 The bindings of the following Let/Where expression 31.03/14.59 "reduce1 x y (y == 0) where { 31.03/14.59 d = gcd x y; 31.03/14.59 ; 31.03/14.59 reduce0 x y True = x `quot` d :% (y `quot` d); 31.03/14.59 ; 31.03/14.59 reduce1 x y True = error []; 31.03/14.59 reduce1 x y False = reduce0 x y otherwise; 31.03/14.59 } 31.03/14.59 " 31.03/14.59 are unpacked to the following functions on top level 31.03/14.59 "reduce2D wzw wzx = gcd wzw wzx; 31.03/14.59 " 31.03/14.59 "reduce2Reduce1 wzw wzx x y True = error []; 31.03/14.59 reduce2Reduce1 wzw wzx x y False = reduce2Reduce0 wzw wzx x y otherwise; 31.03/14.59 " 31.03/14.59 "reduce2Reduce0 wzw wzx x y True = x `quot` reduce2D wzw wzx :% (y `quot` reduce2D wzw wzx); 31.03/14.59 " 31.03/14.59 The bindings of the following Let/Where expression 31.03/14.59 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 31.03/14.59 double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 31.03/14.59 ; 31.03/14.59 double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 31.03/14.59 ; 31.03/14.59 mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 31.03/14.59 ; 31.03/14.59 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 31.03/14.59 ; 31.03/14.59 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 31.03/14.59 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 31.03/14.59 ; 31.03/14.59 mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 31.03/14.59 ; 31.03/14.59 mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 31.03/14.59 ; 31.03/14.59 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 31.03/14.59 ; 31.03/14.59 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 31.03/14.59 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 31.03/14.59 ; 31.03/14.59 mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 31.03/14.59 ; 31.03/14.59 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 31.03/14.59 ; 31.03/14.59 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 31.03/14.59 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 31.03/14.59 ; 31.03/14.59 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 31.03/14.59 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 31.03/14.59 ; 31.03/14.59 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 31.03/14.59 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 31.03/14.59 ; 31.03/14.59 single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 31.03/14.59 ; 31.03/14.59 single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 31.03/14.59 ; 31.03/14.59 size_l = sizeFM fm_L; 31.03/14.59 ; 31.03/14.59 size_r = sizeFM fm_R; 31.03/14.59 } 31.03/14.59 " 31.03/14.59 are unpacked to the following functions on top level 31.03/14.59 "mkBalBranch6Double_R wzy wzz xuu xuv (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wzy wzz fm_lrr fm_r); 31.03/14.59 " 31.03/14.59 "mkBalBranch6Single_R wzy wzz xuu xuv (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wzy wzz fm_lr fm_r); 31.03/14.59 " 31.03/14.59 "mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 31.03/14.59 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 31.03/14.59 " 31.03/14.59 "mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuu; 31.03/14.59 " 31.03/14.59 "mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Double_L wzy wzz xuu xuv fm_L fm_R; 31.03/14.59 " 31.03/14.59 "mkBalBranch6Single_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wzy wzz fm_l fm_rl) fm_rr; 31.03/14.59 " 31.03/14.59 "mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; 31.03/14.59 " 31.03/14.59 "mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Double_R wzy wzz xuu xuv fm_L fm_R; 31.03/14.60 " 31.03/14.60 "mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Single_R wzy wzz xuu xuv fm_L fm_R; 31.03/14.60 mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 31.03/14.60 " 31.03/14.60 "mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 31.03/14.60 " 31.03/14.60 "mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 31.03/14.60 " 31.03/14.60 "mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 31.03/14.60 " 31.03/14.60 "mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 31.03/14.60 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_r wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_l wzy wzz xuu xuv); 31.03/14.60 " 31.03/14.60 "mkBalBranch6Double_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wzy wzz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 31.03/14.60 " 31.03/14.60 "mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 31.03/14.60 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_l wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_r wzy wzz xuu xuv); 31.03/14.60 " 31.03/14.60 "mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Single_L wzy wzz xuu xuv fm_L fm_R; 31.03/14.60 mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 31.03/14.60 " 31.03/14.60 "mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 31.03/14.60 " 31.03/14.60 "mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 31.03/14.60 " 31.03/14.60 The bindings of the following Let/Where expression 31.03/14.60 "let { 31.03/14.60 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 31.03/14.60 } in result where { 31.03/14.60 balance_ok = True; 31.03/14.60 ; 31.03/14.60 left_ok = left_ok0 fm_l key fm_l; 31.03/14.60 ; 31.03/14.60 left_ok0 fm_l key EmptyFM = True; 31.03/14.60 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 31.03/14.60 biggest_left_key = fst (findMax fm_l); 31.03/14.60 } in biggest_left_key < key; 31.03/14.60 ; 31.03/14.60 left_size = sizeFM fm_l; 31.03/14.60 ; 31.03/14.60 right_ok = right_ok0 fm_r key fm_r; 31.03/14.60 ; 31.03/14.60 right_ok0 fm_r key EmptyFM = True; 31.03/14.60 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 31.03/14.60 smallest_right_key = fst (findMin fm_r); 31.03/14.60 } in key < smallest_right_key; 31.03/14.60 ; 31.03/14.60 right_size = sizeFM fm_r; 31.03/14.60 ; 31.03/14.60 unbox x = x; 31.03/14.60 } 31.03/14.60 " 31.03/14.60 are unpacked to the following functions on top level 31.03/14.60 "mkBranchLeft_size xuw xux xuy = sizeFM xuw; 31.03/14.60 " 31.03/14.60 "mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 31.03/14.60 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 31.03/14.60 " 31.03/14.60 "mkBranchUnbox xuw xux xuy x = x; 31.03/14.60 " 31.03/14.60 "mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 31.03/14.60 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 31.03/14.60 " 31.03/14.60 "mkBranchRight_size xuw xux xuy = sizeFM xux; 31.03/14.60 " 31.03/14.60 "mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xux xuy xux; 31.03/14.60 " 31.03/14.60 "mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xuy xuw; 31.03/14.60 " 31.03/14.60 "mkBranchBalance_ok xuw xux xuy = True; 31.03/14.60 " 31.03/14.60 The bindings of the following Let/Where expression 31.03/14.60 "let { 31.03/14.60 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 31.03/14.60 } in result" 31.03/14.60 are unpacked to the following functions on top level 31.03/14.60 "mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xvw xuz (1 + mkBranchLeft_size xvv xvw xuz + mkBranchRight_size xvv xvw xuz)) xvv xvw; 31.03/14.60 " 31.03/14.60 The bindings of the following Let/Where expression 31.03/14.60 "glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 31.03/14.60 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 31.03/14.60 ; 31.03/14.60 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 31.03/14.60 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 31.03/14.60 ; 31.03/14.60 mid_elt1 = mid_elt10 vv2; 31.03/14.60 ; 31.03/14.60 mid_elt10 (vyw,mid_elt1) = mid_elt1; 31.03/14.60 ; 31.03/14.60 mid_elt2 = mid_elt20 vv3; 31.03/14.60 ; 31.03/14.60 mid_elt20 (vyv,mid_elt2) = mid_elt2; 31.03/14.60 ; 31.03/14.60 mid_key1 = mid_key10 vv2; 31.03/14.60 ; 31.03/14.60 mid_key10 (mid_key1,vyx) = mid_key1; 31.03/14.60 ; 31.03/14.60 mid_key2 = mid_key20 vv3; 31.03/14.60 ; 31.03/14.60 mid_key20 (mid_key2,vyy) = mid_key2; 31.03/14.60 ; 31.03/14.60 vv2 = findMax fm1; 31.03/14.60 ; 31.03/14.60 vv3 = findMin fm2; 31.03/14.60 } 31.03/14.60 " 31.03/14.60 are unpacked to the following functions on top level 31.03/14.60 "glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 31.03/14.60 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 31.03/14.60 " 31.03/14.60 "glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 31.03/14.60 " 31.03/14.60 "glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 31.03/14.60 " 31.03/14.60 "glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 31.03/14.60 " 31.03/14.60 "glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 31.03/14.60 " 31.03/14.60 "glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 31.03/14.60 " 31.03/14.60 "glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 31.03/14.60 " 31.03/14.60 "glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 31.03/14.60 " 31.03/14.60 "glueBal2Vv2 xvx xvy = findMax xvx; 31.03/14.60 " 31.03/14.60 "glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 31.03/14.60 " 31.03/14.60 "glueBal2Vv3 xvx xvy = findMin xvy; 31.03/14.60 " 31.03/14.60 "glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 31.03/14.60 " 31.03/14.60 The bindings of the following Let/Where expression 31.03/14.60 "let { 31.03/14.60 biggest_left_key = fst (findMax fm_l); 31.03/14.60 } in biggest_left_key < key" 31.03/14.60 are unpacked to the following functions on top level 31.03/14.60 "mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 31.03/14.60 " 31.03/14.60 The bindings of the following Let/Where expression 31.03/14.60 "let { 31.03/14.60 smallest_right_key = fst (findMin fm_r); 31.03/14.60 } in key < smallest_right_key" 31.03/14.60 are unpacked to the following functions on top level 31.03/14.60 "mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 31.03/14.60 " 31.03/14.60 31.03/14.60 ---------------------------------------- 31.03/14.60 31.03/14.60 (12) 31.03/14.60 Obligation: 31.03/14.60 mainModule Main 31.03/14.60 module FiniteMap where { 31.03/14.60 import qualified Main; 31.03/14.60 import qualified Maybe; 31.03/14.60 import qualified Prelude; 31.03/14.60 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 31.03/14.60 31.03/14.60 instance (Eq a, Eq b) => Eq FiniteMap b a where { 31.03/14.60 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 31.03/14.60 } 31.03/14.60 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 31.03/14.60 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 31.03/14.60 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 31.03/14.60 31.03/14.60 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 31.03/14.60 31.03/14.60 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 31.03/14.60 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 31.03/14.60 31.03/14.60 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 31.03/14.60 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 31.03/14.60 31.03/14.60 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 31.03/14.60 31.03/14.60 delFromFM4 EmptyFM del_key = emptyFM; 31.03/14.60 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 31.03/14.60 31.03/14.60 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 31.03/14.60 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 31.03/14.60 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 31.03/14.60 31.03/14.60 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 31.03/14.60 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 31.03/14.60 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 31.03/14.60 31.03/14.60 emptyFM :: FiniteMap b a; 31.03/14.60 emptyFM = EmptyFM; 31.03/14.60 31.03/14.60 findMax :: FiniteMap b a -> (b,a); 31.03/14.60 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 31.03/14.60 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 31.03/14.60 31.03/14.60 findMin :: FiniteMap b a -> (b,a); 31.03/14.60 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 31.03/14.60 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 31.03/14.60 31.03/14.60 fmToList :: FiniteMap b a -> [(b,a)]; 31.03/14.60 fmToList fm = foldFM fmToList0 [] fm; 31.03/14.60 31.03/14.60 fmToList0 key elt rest = (key,elt) : rest; 31.03/14.60 31.03/14.60 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 31.03/14.60 foldFM k z EmptyFM = z; 31.03/14.60 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 31.03/14.60 31.03/14.60 glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 31.03/14.60 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 31.03/14.60 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 31.03/14.60 glueBal fm1 fm2 = glueBal2 fm1 fm2; 31.03/14.60 31.03/14.60 glueBal2 fm1 fm2 = glueBal2GlueBal1 fm1 fm2 fm1 fm2 (sizeFM fm2 > sizeFM fm1); 31.03/14.60 31.03/14.60 glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 31.03/14.60 31.03/14.60 glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 31.03/14.60 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 31.03/14.60 31.03/14.60 glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 31.03/14.60 31.03/14.60 glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 31.03/14.60 31.03/14.60 glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 31.03/14.60 31.03/14.60 glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 31.03/14.60 31.03/14.60 glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 31.03/14.60 31.03/14.60 glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 31.03/14.60 31.03/14.60 glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 31.03/14.60 31.03/14.60 glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 31.03/14.60 31.03/14.60 glueBal2Vv2 xvx xvy = findMax xvx; 31.03/14.60 31.03/14.60 glueBal2Vv3 xvx xvy = findMin xvy; 31.03/14.60 31.03/14.60 glueBal3 fm1 EmptyFM = fm1; 31.03/14.60 glueBal3 wxz wyu = glueBal2 wxz wyu; 31.03/14.60 31.03/14.60 glueBal4 EmptyFM fm2 = fm2; 31.03/14.60 glueBal4 wyw wyx = glueBal3 wyw wyx; 31.03/14.60 31.03/14.60 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.03/14.60 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 31.03/14.60 31.03/14.60 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < 2); 31.03/14.60 31.03/14.60 mkBalBranch6Double_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wzy wzz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 31.03/14.60 31.03/14.60 mkBalBranch6Double_R wzy wzz xuu xuv (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wzy wzz fm_lrr fm_r); 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Double_L wzy wzz xuu xuv fm_L fm_R; 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Single_L wzy wzz xuu xuv fm_L fm_R; 31.03/14.60 mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Double_R wzy wzz xuu xuv fm_L fm_R; 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Single_R wzy wzz xuu xuv fm_L fm_R; 31.03/14.60 mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 31.03/14.60 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 31.03/14.60 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_l wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_r wzy wzz xuu xuv); 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 31.03/14.60 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_r wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_l wzy wzz xuu xuv); 31.03/14.60 31.03/14.60 mkBalBranch6Single_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wzy wzz fm_l fm_rl) fm_rr; 31.03/14.60 31.03/14.60 mkBalBranch6Single_R wzy wzz xuu xuv (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wzy wzz fm_lr fm_r); 31.03/14.60 31.03/14.60 mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuu; 31.03/14.60 31.03/14.60 mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; 31.03/14.60 31.03/14.60 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.03/14.60 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 31.03/14.60 31.03/14.60 mkBranchBalance_ok xuw xux xuy = True; 31.03/14.60 31.03/14.60 mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xuy xuw; 31.03/14.60 31.03/14.60 mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 31.03/14.60 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 31.03/14.60 31.03/14.60 mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 31.03/14.60 31.03/14.60 mkBranchLeft_size xuw xux xuy = sizeFM xuw; 31.03/14.60 31.03/14.60 mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xvw xuz (1 + mkBranchLeft_size xvv xvw xuz + mkBranchRight_size xvv xvw xuz)) xvv xvw; 31.03/14.60 31.03/14.60 mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xux xuy xux; 31.03/14.60 31.03/14.60 mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 31.03/14.60 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 31.03/14.60 31.03/14.60 mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 31.03/14.60 31.03/14.60 mkBranchRight_size xuw xux xuy = sizeFM xux; 31.03/14.60 31.03/14.60 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> (FiniteMap a b) ( -> a (Int -> Int))); 31.03/14.60 mkBranchUnbox xuw xux xuy x = x; 31.03/14.60 31.03/14.60 sIZE_RATIO :: Int; 31.03/14.60 sIZE_RATIO = 5; 31.03/14.60 31.03/14.60 sizeFM :: FiniteMap b a -> Int; 31.03/14.60 sizeFM EmptyFM = 0; 31.03/14.60 sizeFM (Branch vzu vzv size vzw vzx) = size; 31.03/14.60 31.03/14.60 } 31.03/14.60 module Maybe where { 31.03/14.60 import qualified FiniteMap; 31.03/14.60 import qualified Main; 31.03/14.60 import qualified Prelude; 31.03/14.60 } 31.03/14.60 module Main where { 31.03/14.60 import qualified FiniteMap; 31.03/14.60 import qualified Maybe; 31.03/14.60 import qualified Prelude; 31.03/14.60 } 31.03/14.60 31.03/14.60 ---------------------------------------- 31.03/14.60 31.03/14.60 (13) NumRed (SOUND) 31.03/14.60 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 31.03/14.60 ---------------------------------------- 31.03/14.60 31.03/14.60 (14) 31.03/14.60 Obligation: 31.03/14.60 mainModule Main 31.03/14.60 module FiniteMap where { 31.03/14.60 import qualified Main; 31.03/14.60 import qualified Maybe; 31.03/14.60 import qualified Prelude; 31.03/14.60 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 31.03/14.60 31.03/14.60 instance (Eq a, Eq b) => Eq FiniteMap b a where { 31.03/14.60 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 31.03/14.60 } 31.03/14.60 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 31.03/14.60 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 31.03/14.60 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 31.03/14.60 31.03/14.60 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 31.03/14.60 31.03/14.60 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 31.03/14.60 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 31.03/14.60 31.03/14.60 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 31.03/14.60 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 31.03/14.60 31.03/14.60 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 31.03/14.60 31.03/14.60 delFromFM4 EmptyFM del_key = emptyFM; 31.03/14.60 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 31.03/14.60 31.03/14.60 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 31.03/14.60 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 31.03/14.60 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 31.03/14.60 31.03/14.60 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 31.03/14.60 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 31.03/14.60 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 31.03/14.60 31.03/14.60 emptyFM :: FiniteMap b a; 31.03/14.60 emptyFM = EmptyFM; 31.03/14.60 31.03/14.60 findMax :: FiniteMap b a -> (b,a); 31.03/14.60 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 31.03/14.60 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 31.03/14.60 31.03/14.60 findMin :: FiniteMap a b -> (a,b); 31.03/14.60 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 31.03/14.60 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 31.03/14.60 31.03/14.60 fmToList :: FiniteMap a b -> [(a,b)]; 31.03/14.60 fmToList fm = foldFM fmToList0 [] fm; 31.03/14.60 31.03/14.60 fmToList0 key elt rest = (key,elt) : rest; 31.03/14.60 31.03/14.60 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 31.03/14.60 foldFM k z EmptyFM = z; 31.03/14.60 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 31.03/14.60 31.03/14.60 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.03/14.60 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 31.03/14.60 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 31.03/14.60 glueBal fm1 fm2 = glueBal2 fm1 fm2; 31.03/14.60 31.03/14.60 glueBal2 fm1 fm2 = glueBal2GlueBal1 fm1 fm2 fm1 fm2 (sizeFM fm2 > sizeFM fm1); 31.03/14.60 31.03/14.60 glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 31.03/14.60 31.03/14.60 glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 31.03/14.60 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 31.03/14.60 31.03/14.60 glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 31.03/14.60 31.03/14.60 glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 31.03/14.60 31.03/14.60 glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 31.03/14.60 31.03/14.60 glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 31.03/14.60 31.03/14.60 glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 31.03/14.60 31.03/14.60 glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 31.03/14.60 31.03/14.60 glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 31.03/14.60 31.03/14.60 glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 31.03/14.60 31.03/14.60 glueBal2Vv2 xvx xvy = findMax xvx; 31.03/14.60 31.03/14.60 glueBal2Vv3 xvx xvy = findMin xvy; 31.03/14.60 31.03/14.60 glueBal3 fm1 EmptyFM = fm1; 31.03/14.60 glueBal3 wxz wyu = glueBal2 wxz wyu; 31.03/14.60 31.03/14.60 glueBal4 EmptyFM fm2 = fm2; 31.03/14.60 glueBal4 wyw wyx = glueBal3 wyw wyx; 31.03/14.60 31.03/14.60 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.03/14.60 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 31.03/14.60 31.03/14.60 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < Pos (Succ (Succ Zero))); 31.03/14.60 31.03/14.60 mkBalBranch6Double_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) key_rl elt_rl (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) wzy wzz fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); 31.03/14.60 31.03/14.60 mkBalBranch6Double_R wzy wzz xuu xuv (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) key_lr elt_lr (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) key_l elt_l fm_ll fm_lrl) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) wzy wzz fm_lrr fm_r); 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Double_L wzy wzz xuu xuv fm_L fm_R; 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Single_L wzy wzz xuu xuv fm_L fm_R; 31.03/14.60 mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Double_R wzy wzz xuu xuv fm_L fm_R; 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Single_R wzy wzz xuu xuv fm_L fm_R; 31.03/14.60 mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 31.03/14.60 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 31.03/14.60 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_l wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_r wzy wzz xuu xuv); 31.03/14.60 31.03/14.60 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 31.03/14.60 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_r wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_l wzy wzz xuu xuv); 31.03/14.60 31.03/14.60 mkBalBranch6Single_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) wzy wzz fm_l fm_rl) fm_rr; 31.03/14.60 31.03/14.60 mkBalBranch6Single_R wzy wzz xuu xuv (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) key_l elt_l fm_ll (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) wzy wzz fm_lr fm_r); 31.03/14.60 31.03/14.60 mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuu; 31.03/14.60 31.03/14.60 mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; 31.03/14.60 31.03/14.60 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 31.03/14.60 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 31.03/14.60 31.03/14.60 mkBranchBalance_ok xuw xux xuy = True; 31.03/14.60 31.03/14.60 mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xuy xuw; 31.03/14.60 31.03/14.60 mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 31.03/14.60 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 31.03/14.60 31.03/14.60 mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 31.03/14.60 31.03/14.60 mkBranchLeft_size xuw xux xuy = sizeFM xuw; 31.03/14.60 31.03/14.60 mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xvw xuz (Pos (Succ Zero) + mkBranchLeft_size xvv xvw xuz + mkBranchRight_size xvv xvw xuz)) xvv xvw; 31.03/14.60 31.03/14.60 mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xux xuy xux; 31.03/14.60 31.03/14.60 mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 31.03/14.60 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 31.03/14.60 31.03/14.60 mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 31.03/14.60 31.03/14.60 mkBranchRight_size xuw xux xuy = sizeFM xux; 31.03/14.60 31.03/14.60 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> (FiniteMap a b) ( -> a (Int -> Int))); 31.03/14.60 mkBranchUnbox xuw xux xuy x = x; 31.03/14.60 31.03/14.60 sIZE_RATIO :: Int; 31.03/14.60 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 31.03/14.60 31.03/14.60 sizeFM :: FiniteMap b a -> Int; 31.03/14.60 sizeFM EmptyFM = Pos Zero; 31.03/14.60 sizeFM (Branch vzu vzv size vzw vzx) = size; 31.03/14.60 31.03/14.60 } 31.03/14.60 module Maybe where { 31.03/14.60 import qualified FiniteMap; 31.03/14.60 import qualified Main; 31.03/14.60 import qualified Prelude; 31.03/14.60 } 31.03/14.60 module Main where { 31.03/14.60 import qualified FiniteMap; 31.03/14.60 import qualified Maybe; 31.03/14.60 import qualified Prelude; 31.03/14.60 } 31.03/14.60 31.03/14.60 ---------------------------------------- 31.03/14.60 31.03/14.60 (15) Narrow (SOUND) 31.03/14.60 Haskell To QDPs 31.03/14.60 31.03/14.60 digraph dp_graph { 31.03/14.60 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.delFromFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 31.03/14.60 3[label="FiniteMap.delFromFM xwv3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 31.03/14.60 4[label="FiniteMap.delFromFM xwv3 xwv4",fontsize=16,color="burlywood",shape="triangle"];3748[label="xwv3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 3748[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3748 -> 5[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3749[label="xwv3/FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34",fontsize=10,color="white",style="solid",shape="box"];4 -> 3749[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3749 -> 6[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 5[label="FiniteMap.delFromFM FiniteMap.EmptyFM xwv4",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 31.03/14.60 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]; 31.03/14.60 7[label="FiniteMap.delFromFM4 FiniteMap.EmptyFM xwv4",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 31.03/14.60 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]; 31.03/14.60 9[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 31.03/14.60 10 -> 12[label="",style="dashed", color="red", weight=0]; 31.03/14.60 10[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv4 (xwv4 > xwv30)",fontsize=16,color="magenta"];10 -> 13[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 10 -> 14[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 10 -> 15[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 10 -> 16[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 10 -> 17[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 10 -> 18[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 10 -> 19[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 11[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];13[label="xwv30",fontsize=16,color="green",shape="box"];14[label="xwv32",fontsize=16,color="green",shape="box"];15[label="xwv34",fontsize=16,color="green",shape="box"];16[label="xwv4",fontsize=16,color="green",shape="box"];17[label="xwv31",fontsize=16,color="green",shape="box"];18[label="xwv33",fontsize=16,color="green",shape="box"];19[label="xwv4 > xwv30",fontsize=16,color="blue",shape="box"];3750[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3750[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3750 -> 20[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3751[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3751[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3751 -> 21[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3752[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3752[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3752 -> 22[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3753[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3753[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3753 -> 23[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3754[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3754[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3754 -> 24[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3755[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3755[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3755 -> 25[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3756[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3756[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3756 -> 26[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3757[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3757[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3757 -> 27[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3758[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3758[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3758 -> 28[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3759[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3759[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3759 -> 29[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3760[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3760[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3760 -> 30[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3761[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3761[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3761 -> 31[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3762[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3762[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3762 -> 32[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3763[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3763[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3763 -> 33[label="",style="solid", color="blue", weight=3]; 31.03/14.60 12[label="FiniteMap.delFromFM2 xwv13 xwv14 xwv15 xwv16 xwv17 xwv18 xwv19",fontsize=16,color="burlywood",shape="triangle"];3764[label="xwv19/False",fontsize=10,color="white",style="solid",shape="box"];12 -> 3764[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3764 -> 34[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3765[label="xwv19/True",fontsize=10,color="white",style="solid",shape="box"];12 -> 3765[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3765 -> 35[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 20[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];20 -> 36[label="",style="solid", color="black", weight=3]; 31.03/14.60 21[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];21 -> 37[label="",style="solid", color="black", weight=3]; 31.03/14.60 22[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];22 -> 38[label="",style="solid", color="black", weight=3]; 31.03/14.60 23[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];23 -> 39[label="",style="solid", color="black", weight=3]; 31.03/14.60 24[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];24 -> 40[label="",style="solid", color="black", weight=3]; 31.03/14.60 25[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];25 -> 41[label="",style="solid", color="black", weight=3]; 31.03/14.60 26[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];26 -> 42[label="",style="solid", color="black", weight=3]; 31.03/14.60 27[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];27 -> 43[label="",style="solid", color="black", weight=3]; 31.03/14.60 28[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];28 -> 44[label="",style="solid", color="black", weight=3]; 31.03/14.60 29[label="xwv4 > xwv30",fontsize=16,color="black",shape="triangle"];29 -> 45[label="",style="solid", color="black", weight=3]; 31.03/14.60 30[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];30 -> 46[label="",style="solid", color="black", weight=3]; 31.03/14.60 31[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];31 -> 47[label="",style="solid", color="black", weight=3]; 31.03/14.60 32[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];32 -> 48[label="",style="solid", color="black", weight=3]; 31.03/14.60 33[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];33 -> 49[label="",style="solid", color="black", weight=3]; 31.03/14.60 34[label="FiniteMap.delFromFM2 xwv13 xwv14 xwv15 xwv16 xwv17 xwv18 False",fontsize=16,color="black",shape="box"];34 -> 50[label="",style="solid", color="black", weight=3]; 31.03/14.60 35[label="FiniteMap.delFromFM2 xwv13 xwv14 xwv15 xwv16 xwv17 xwv18 True",fontsize=16,color="black",shape="box"];35 -> 51[label="",style="solid", color="black", weight=3]; 31.03/14.60 36 -> 182[label="",style="dashed", color="red", weight=0]; 31.03/14.60 36[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];36 -> 183[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 37 -> 182[label="",style="dashed", color="red", weight=0]; 31.03/14.60 37[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];37 -> 184[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 38 -> 182[label="",style="dashed", color="red", weight=0]; 31.03/14.60 38[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];38 -> 185[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 39 -> 182[label="",style="dashed", color="red", weight=0]; 31.03/14.60 39[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];39 -> 186[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 40 -> 182[label="",style="dashed", color="red", weight=0]; 31.03/14.60 40[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];40 -> 187[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 41 -> 182[label="",style="dashed", color="red", weight=0]; 31.03/14.60 41[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];41 -> 188[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 42 -> 182[label="",style="dashed", color="red", weight=0]; 31.03/14.60 42[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];42 -> 189[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 43 -> 182[label="",style="dashed", color="red", weight=0]; 31.03/14.60 43[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];43 -> 190[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 44 -> 182[label="",style="dashed", color="red", weight=0]; 31.03/14.60 44[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];44 -> 191[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 45 -> 182[label="",style="dashed", color="red", weight=0]; 31.03/14.60 45[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];45 -> 192[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 46 -> 182[label="",style="dashed", color="red", weight=0]; 31.03/14.60 46[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];46 -> 193[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 47 -> 182[label="",style="dashed", color="red", weight=0]; 31.03/14.60 47[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];47 -> 194[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 48 -> 182[label="",style="dashed", color="red", weight=0]; 31.03/14.60 48[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];48 -> 195[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 49 -> 182[label="",style="dashed", color="red", weight=0]; 31.03/14.60 49[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];49 -> 196[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 50 -> 67[label="",style="dashed", color="red", weight=0]; 31.03/14.60 50[label="FiniteMap.delFromFM1 xwv13 xwv14 xwv15 xwv16 xwv17 xwv18 (xwv18 < xwv13)",fontsize=16,color="magenta"];50 -> 68[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 50 -> 69[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 50 -> 70[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 50 -> 71[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 50 -> 72[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 50 -> 73[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 50 -> 74[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 51 -> 75[label="",style="dashed", color="red", weight=0]; 31.03/14.60 51[label="FiniteMap.mkBalBranch xwv13 xwv14 xwv16 (FiniteMap.delFromFM xwv17 xwv18)",fontsize=16,color="magenta"];51 -> 76[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 183[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];183 -> 220[label="",style="solid", color="black", weight=3]; 31.03/14.60 182[label="xwv38 == GT",fontsize=16,color="burlywood",shape="triangle"];3766[label="xwv38/LT",fontsize=10,color="white",style="solid",shape="box"];182 -> 3766[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3766 -> 221[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3767[label="xwv38/EQ",fontsize=10,color="white",style="solid",shape="box"];182 -> 3767[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3767 -> 222[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3768[label="xwv38/GT",fontsize=10,color="white",style="solid",shape="box"];182 -> 3768[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3768 -> 223[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 184[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];184 -> 224[label="",style="solid", color="black", weight=3]; 31.03/14.60 185[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];185 -> 225[label="",style="solid", color="black", weight=3]; 31.03/14.60 186[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];186 -> 226[label="",style="solid", color="black", weight=3]; 31.03/14.60 187[label="compare xwv4 xwv30",fontsize=16,color="burlywood",shape="triangle"];3769[label="xwv4/Integer xwv40",fontsize=10,color="white",style="solid",shape="box"];187 -> 3769[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3769 -> 227[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 188[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];188 -> 228[label="",style="solid", color="black", weight=3]; 31.03/14.60 189[label="compare xwv4 xwv30",fontsize=16,color="burlywood",shape="triangle"];3770[label="xwv4/xwv40 :% xwv41",fontsize=10,color="white",style="solid",shape="box"];189 -> 3770[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3770 -> 229[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 190[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];190 -> 230[label="",style="solid", color="black", weight=3]; 31.03/14.60 191[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];191 -> 231[label="",style="solid", color="black", weight=3]; 31.03/14.60 192[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];192 -> 232[label="",style="solid", color="black", weight=3]; 31.03/14.60 193[label="compare xwv4 xwv30",fontsize=16,color="burlywood",shape="triangle"];3771[label="xwv4/()",fontsize=10,color="white",style="solid",shape="box"];193 -> 3771[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3771 -> 233[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 194[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];194 -> 234[label="",style="solid", color="black", weight=3]; 31.03/14.60 195[label="compare xwv4 xwv30",fontsize=16,color="burlywood",shape="triangle"];3772[label="xwv4/xwv40 : xwv41",fontsize=10,color="white",style="solid",shape="box"];195 -> 3772[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3772 -> 235[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3773[label="xwv4/[]",fontsize=10,color="white",style="solid",shape="box"];195 -> 3773[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3773 -> 236[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 196[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];196 -> 237[label="",style="solid", color="black", weight=3]; 31.03/14.60 68[label="xwv18 < xwv13",fontsize=16,color="blue",shape="box"];3774[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3774[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3774 -> 95[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3775[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3775[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3775 -> 96[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3776[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3776[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3776 -> 97[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3777[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3777[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3777 -> 98[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3778[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3778[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3778 -> 99[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3779[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3779[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3779 -> 100[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3780[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3780[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3780 -> 101[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3781[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3781[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3781 -> 102[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3782[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3782[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3782 -> 103[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3783[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3783[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3783 -> 104[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3784[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3784[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3784 -> 105[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3785[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3785[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3785 -> 106[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3786[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3786[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3786 -> 107[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3787[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3787[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3787 -> 108[label="",style="solid", color="blue", weight=3]; 31.03/14.60 69[label="xwv13",fontsize=16,color="green",shape="box"];70[label="xwv15",fontsize=16,color="green",shape="box"];71[label="xwv18",fontsize=16,color="green",shape="box"];72[label="xwv14",fontsize=16,color="green",shape="box"];73[label="xwv16",fontsize=16,color="green",shape="box"];74[label="xwv17",fontsize=16,color="green",shape="box"];67[label="FiniteMap.delFromFM1 xwv28 xwv29 xwv30 xwv31 xwv32 xwv33 xwv34",fontsize=16,color="burlywood",shape="triangle"];3788[label="xwv34/False",fontsize=10,color="white",style="solid",shape="box"];67 -> 3788[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3788 -> 109[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3789[label="xwv34/True",fontsize=10,color="white",style="solid",shape="box"];67 -> 3789[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3789 -> 110[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 76 -> 4[label="",style="dashed", color="red", weight=0]; 31.03/14.60 76[label="FiniteMap.delFromFM xwv17 xwv18",fontsize=16,color="magenta"];76 -> 111[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 76 -> 112[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 75[label="FiniteMap.mkBalBranch xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="triangle"];75 -> 113[label="",style="solid", color="black", weight=3]; 31.03/14.60 220[label="compare3 xwv4 xwv30",fontsize=16,color="black",shape="box"];220 -> 253[label="",style="solid", color="black", weight=3]; 31.03/14.60 221[label="LT == GT",fontsize=16,color="black",shape="box"];221 -> 254[label="",style="solid", color="black", weight=3]; 31.03/14.60 222[label="EQ == GT",fontsize=16,color="black",shape="box"];222 -> 255[label="",style="solid", color="black", weight=3]; 31.03/14.60 223[label="GT == GT",fontsize=16,color="black",shape="box"];223 -> 256[label="",style="solid", color="black", weight=3]; 31.03/14.60 224[label="compare3 xwv4 xwv30",fontsize=16,color="black",shape="box"];224 -> 257[label="",style="solid", color="black", weight=3]; 31.03/14.60 225[label="compare3 xwv4 xwv30",fontsize=16,color="black",shape="box"];225 -> 258[label="",style="solid", color="black", weight=3]; 31.03/14.60 226[label="compare3 xwv4 xwv30",fontsize=16,color="black",shape="box"];226 -> 259[label="",style="solid", color="black", weight=3]; 31.03/14.60 227[label="compare (Integer xwv40) xwv30",fontsize=16,color="burlywood",shape="box"];3790[label="xwv30/Integer xwv300",fontsize=10,color="white",style="solid",shape="box"];227 -> 3790[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3790 -> 260[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 228[label="compare3 xwv4 xwv30",fontsize=16,color="black",shape="box"];228 -> 261[label="",style="solid", color="black", weight=3]; 31.03/14.60 229[label="compare (xwv40 :% xwv41) xwv30",fontsize=16,color="burlywood",shape="box"];3791[label="xwv30/xwv300 :% xwv301",fontsize=10,color="white",style="solid",shape="box"];229 -> 3791[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3791 -> 262[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 230[label="compare3 xwv4 xwv30",fontsize=16,color="black",shape="box"];230 -> 263[label="",style="solid", color="black", weight=3]; 31.03/14.60 231[label="primCmpChar xwv4 xwv30",fontsize=16,color="burlywood",shape="box"];3792[label="xwv4/Char xwv40",fontsize=10,color="white",style="solid",shape="box"];231 -> 3792[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3792 -> 264[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 232[label="primCmpInt xwv4 xwv30",fontsize=16,color="burlywood",shape="triangle"];3793[label="xwv4/Pos xwv40",fontsize=10,color="white",style="solid",shape="box"];232 -> 3793[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3793 -> 265[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3794[label="xwv4/Neg xwv40",fontsize=10,color="white",style="solid",shape="box"];232 -> 3794[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3794 -> 266[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 233[label="compare () xwv30",fontsize=16,color="burlywood",shape="box"];3795[label="xwv30/()",fontsize=10,color="white",style="solid",shape="box"];233 -> 3795[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3795 -> 267[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 234[label="primCmpDouble xwv4 xwv30",fontsize=16,color="burlywood",shape="box"];3796[label="xwv4/Double xwv40 xwv41",fontsize=10,color="white",style="solid",shape="box"];234 -> 3796[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3796 -> 268[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 235[label="compare (xwv40 : xwv41) xwv30",fontsize=16,color="burlywood",shape="box"];3797[label="xwv30/xwv300 : xwv301",fontsize=10,color="white",style="solid",shape="box"];235 -> 3797[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3797 -> 269[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3798[label="xwv30/[]",fontsize=10,color="white",style="solid",shape="box"];235 -> 3798[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3798 -> 270[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 236[label="compare [] xwv30",fontsize=16,color="burlywood",shape="box"];3799[label="xwv30/xwv300 : xwv301",fontsize=10,color="white",style="solid",shape="box"];236 -> 3799[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3799 -> 271[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3800[label="xwv30/[]",fontsize=10,color="white",style="solid",shape="box"];236 -> 3800[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3800 -> 272[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 237[label="primCmpFloat xwv4 xwv30",fontsize=16,color="burlywood",shape="box"];3801[label="xwv4/Float xwv40 xwv41",fontsize=10,color="white",style="solid",shape="box"];237 -> 3801[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3801 -> 273[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 95[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];95 -> 141[label="",style="solid", color="black", weight=3]; 31.03/14.60 96[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];96 -> 142[label="",style="solid", color="black", weight=3]; 31.03/14.60 97[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];97 -> 143[label="",style="solid", color="black", weight=3]; 31.03/14.60 98[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];98 -> 144[label="",style="solid", color="black", weight=3]; 31.03/14.60 99[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];99 -> 145[label="",style="solid", color="black", weight=3]; 31.03/14.60 100[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];100 -> 146[label="",style="solid", color="black", weight=3]; 31.03/14.60 101[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];101 -> 147[label="",style="solid", color="black", weight=3]; 31.03/14.60 102[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];102 -> 148[label="",style="solid", color="black", weight=3]; 31.03/14.60 103[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];103 -> 149[label="",style="solid", color="black", weight=3]; 31.03/14.60 104[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];104 -> 150[label="",style="solid", color="black", weight=3]; 31.03/14.60 105[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];105 -> 151[label="",style="solid", color="black", weight=3]; 31.03/14.60 106[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];106 -> 152[label="",style="solid", color="black", weight=3]; 31.03/14.60 107[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];107 -> 153[label="",style="solid", color="black", weight=3]; 31.03/14.60 108[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];108 -> 154[label="",style="solid", color="black", weight=3]; 31.03/14.60 109[label="FiniteMap.delFromFM1 xwv28 xwv29 xwv30 xwv31 xwv32 xwv33 False",fontsize=16,color="black",shape="box"];109 -> 155[label="",style="solid", color="black", weight=3]; 31.03/14.60 110[label="FiniteMap.delFromFM1 xwv28 xwv29 xwv30 xwv31 xwv32 xwv33 True",fontsize=16,color="black",shape="box"];110 -> 156[label="",style="solid", color="black", weight=3]; 31.03/14.60 111[label="xwv18",fontsize=16,color="green",shape="box"];112[label="xwv17",fontsize=16,color="green",shape="box"];113[label="FiniteMap.mkBalBranch6 xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="box"];113 -> 157[label="",style="solid", color="black", weight=3]; 31.03/14.60 253[label="compare2 xwv4 xwv30 (xwv4 == xwv30)",fontsize=16,color="burlywood",shape="box"];3802[label="xwv4/Nothing",fontsize=10,color="white",style="solid",shape="box"];253 -> 3802[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3802 -> 282[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3803[label="xwv4/Just xwv40",fontsize=10,color="white",style="solid",shape="box"];253 -> 3803[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3803 -> 283[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 254[label="False",fontsize=16,color="green",shape="box"];255[label="False",fontsize=16,color="green",shape="box"];256[label="True",fontsize=16,color="green",shape="box"];257[label="compare2 xwv4 xwv30 (xwv4 == xwv30)",fontsize=16,color="burlywood",shape="box"];3804[label="xwv4/False",fontsize=10,color="white",style="solid",shape="box"];257 -> 3804[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3804 -> 284[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3805[label="xwv4/True",fontsize=10,color="white",style="solid",shape="box"];257 -> 3805[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3805 -> 285[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 258[label="compare2 xwv4 xwv30 (xwv4 == xwv30)",fontsize=16,color="burlywood",shape="box"];3806[label="xwv4/(xwv40,xwv41,xwv42)",fontsize=10,color="white",style="solid",shape="box"];258 -> 3806[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3806 -> 286[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 259[label="compare2 xwv4 xwv30 (xwv4 == xwv30)",fontsize=16,color="burlywood",shape="box"];3807[label="xwv4/Left xwv40",fontsize=10,color="white",style="solid",shape="box"];259 -> 3807[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3807 -> 287[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3808[label="xwv4/Right xwv40",fontsize=10,color="white",style="solid",shape="box"];259 -> 3808[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3808 -> 288[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 260[label="compare (Integer xwv40) (Integer xwv300)",fontsize=16,color="black",shape="box"];260 -> 289[label="",style="solid", color="black", weight=3]; 31.03/14.60 261[label="compare2 xwv4 xwv30 (xwv4 == xwv30)",fontsize=16,color="burlywood",shape="box"];3809[label="xwv4/LT",fontsize=10,color="white",style="solid",shape="box"];261 -> 3809[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3809 -> 290[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3810[label="xwv4/EQ",fontsize=10,color="white",style="solid",shape="box"];261 -> 3810[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3810 -> 291[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3811[label="xwv4/GT",fontsize=10,color="white",style="solid",shape="box"];261 -> 3811[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3811 -> 292[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 262[label="compare (xwv40 :% xwv41) (xwv300 :% xwv301)",fontsize=16,color="black",shape="box"];262 -> 293[label="",style="solid", color="black", weight=3]; 31.03/14.60 263[label="compare2 xwv4 xwv30 (xwv4 == xwv30)",fontsize=16,color="burlywood",shape="box"];3812[label="xwv4/(xwv40,xwv41)",fontsize=10,color="white",style="solid",shape="box"];263 -> 3812[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3812 -> 294[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 264[label="primCmpChar (Char xwv40) xwv30",fontsize=16,color="burlywood",shape="box"];3813[label="xwv30/Char xwv300",fontsize=10,color="white",style="solid",shape="box"];264 -> 3813[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3813 -> 295[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 265[label="primCmpInt (Pos xwv40) xwv30",fontsize=16,color="burlywood",shape="box"];3814[label="xwv40/Succ xwv400",fontsize=10,color="white",style="solid",shape="box"];265 -> 3814[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3814 -> 296[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3815[label="xwv40/Zero",fontsize=10,color="white",style="solid",shape="box"];265 -> 3815[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3815 -> 297[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 266[label="primCmpInt (Neg xwv40) xwv30",fontsize=16,color="burlywood",shape="box"];3816[label="xwv40/Succ xwv400",fontsize=10,color="white",style="solid",shape="box"];266 -> 3816[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3816 -> 298[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3817[label="xwv40/Zero",fontsize=10,color="white",style="solid",shape="box"];266 -> 3817[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3817 -> 299[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 267[label="compare () ()",fontsize=16,color="black",shape="box"];267 -> 300[label="",style="solid", color="black", weight=3]; 31.03/14.60 268[label="primCmpDouble (Double xwv40 xwv41) xwv30",fontsize=16,color="burlywood",shape="box"];3818[label="xwv41/Pos xwv410",fontsize=10,color="white",style="solid",shape="box"];268 -> 3818[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3818 -> 301[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3819[label="xwv41/Neg xwv410",fontsize=10,color="white",style="solid",shape="box"];268 -> 3819[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3819 -> 302[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 269[label="compare (xwv40 : xwv41) (xwv300 : xwv301)",fontsize=16,color="black",shape="box"];269 -> 303[label="",style="solid", color="black", weight=3]; 31.03/14.60 270[label="compare (xwv40 : xwv41) []",fontsize=16,color="black",shape="box"];270 -> 304[label="",style="solid", color="black", weight=3]; 31.03/14.60 271[label="compare [] (xwv300 : xwv301)",fontsize=16,color="black",shape="box"];271 -> 305[label="",style="solid", color="black", weight=3]; 31.03/14.60 272[label="compare [] []",fontsize=16,color="black",shape="box"];272 -> 306[label="",style="solid", color="black", weight=3]; 31.03/14.60 273[label="primCmpFloat (Float xwv40 xwv41) xwv30",fontsize=16,color="burlywood",shape="box"];3820[label="xwv41/Pos xwv410",fontsize=10,color="white",style="solid",shape="box"];273 -> 3820[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3820 -> 307[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3821[label="xwv41/Neg xwv410",fontsize=10,color="white",style="solid",shape="box"];273 -> 3821[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3821 -> 308[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 141 -> 238[label="",style="dashed", color="red", weight=0]; 31.03/14.60 141[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];141 -> 239[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 142 -> 238[label="",style="dashed", color="red", weight=0]; 31.03/14.60 142[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];142 -> 240[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 143 -> 238[label="",style="dashed", color="red", weight=0]; 31.03/14.60 143[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];143 -> 241[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 144 -> 238[label="",style="dashed", color="red", weight=0]; 31.03/14.60 144[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];144 -> 242[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 145 -> 238[label="",style="dashed", color="red", weight=0]; 31.03/14.60 145[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];145 -> 243[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 146 -> 238[label="",style="dashed", color="red", weight=0]; 31.03/14.60 146[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];146 -> 244[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 147 -> 238[label="",style="dashed", color="red", weight=0]; 31.03/14.60 147[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];147 -> 245[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 148 -> 238[label="",style="dashed", color="red", weight=0]; 31.03/14.60 148[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];148 -> 246[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 149 -> 238[label="",style="dashed", color="red", weight=0]; 31.03/14.60 149[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];149 -> 247[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 150 -> 238[label="",style="dashed", color="red", weight=0]; 31.03/14.60 150[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];150 -> 248[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 151 -> 238[label="",style="dashed", color="red", weight=0]; 31.03/14.60 151[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];151 -> 249[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 152 -> 238[label="",style="dashed", color="red", weight=0]; 31.03/14.60 152[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];152 -> 250[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 153 -> 238[label="",style="dashed", color="red", weight=0]; 31.03/14.60 153[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];153 -> 251[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 154 -> 238[label="",style="dashed", color="red", weight=0]; 31.03/14.60 154[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];154 -> 252[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 155 -> 274[label="",style="dashed", color="red", weight=0]; 31.03/14.60 155[label="FiniteMap.delFromFM0 xwv28 xwv29 xwv30 xwv31 xwv32 xwv33 (xwv28 == xwv33)",fontsize=16,color="magenta"];155 -> 275[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 155 -> 276[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 155 -> 277[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 155 -> 278[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 155 -> 279[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 155 -> 280[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 155 -> 281[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 156 -> 75[label="",style="dashed", color="red", weight=0]; 31.03/14.60 156[label="FiniteMap.mkBalBranch xwv28 xwv29 (FiniteMap.delFromFM xwv31 xwv33) xwv32",fontsize=16,color="magenta"];156 -> 309[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 156 -> 310[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 156 -> 311[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 156 -> 312[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 157 -> 313[label="",style="dashed", color="red", weight=0]; 31.03/14.60 157[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 (FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35 + FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];157 -> 314[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 282[label="compare2 Nothing xwv30 (Nothing == xwv30)",fontsize=16,color="burlywood",shape="box"];3822[label="xwv30/Nothing",fontsize=10,color="white",style="solid",shape="box"];282 -> 3822[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3822 -> 315[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3823[label="xwv30/Just xwv300",fontsize=10,color="white",style="solid",shape="box"];282 -> 3823[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3823 -> 316[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 283[label="compare2 (Just xwv40) xwv30 (Just xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3824[label="xwv30/Nothing",fontsize=10,color="white",style="solid",shape="box"];283 -> 3824[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3824 -> 317[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3825[label="xwv30/Just xwv300",fontsize=10,color="white",style="solid",shape="box"];283 -> 3825[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3825 -> 318[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 284[label="compare2 False xwv30 (False == xwv30)",fontsize=16,color="burlywood",shape="box"];3826[label="xwv30/False",fontsize=10,color="white",style="solid",shape="box"];284 -> 3826[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3826 -> 319[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3827[label="xwv30/True",fontsize=10,color="white",style="solid",shape="box"];284 -> 3827[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3827 -> 320[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 285[label="compare2 True xwv30 (True == xwv30)",fontsize=16,color="burlywood",shape="box"];3828[label="xwv30/False",fontsize=10,color="white",style="solid",shape="box"];285 -> 3828[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3828 -> 321[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3829[label="xwv30/True",fontsize=10,color="white",style="solid",shape="box"];285 -> 3829[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3829 -> 322[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 286[label="compare2 (xwv40,xwv41,xwv42) xwv30 ((xwv40,xwv41,xwv42) == xwv30)",fontsize=16,color="burlywood",shape="box"];3830[label="xwv30/(xwv300,xwv301,xwv302)",fontsize=10,color="white",style="solid",shape="box"];286 -> 3830[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3830 -> 323[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 287[label="compare2 (Left xwv40) xwv30 (Left xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3831[label="xwv30/Left xwv300",fontsize=10,color="white",style="solid",shape="box"];287 -> 3831[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3831 -> 324[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3832[label="xwv30/Right xwv300",fontsize=10,color="white",style="solid",shape="box"];287 -> 3832[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3832 -> 325[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 288[label="compare2 (Right xwv40) xwv30 (Right xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3833[label="xwv30/Left xwv300",fontsize=10,color="white",style="solid",shape="box"];288 -> 3833[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3833 -> 326[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3834[label="xwv30/Right xwv300",fontsize=10,color="white",style="solid",shape="box"];288 -> 3834[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3834 -> 327[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 289 -> 232[label="",style="dashed", color="red", weight=0]; 31.03/14.60 289[label="primCmpInt xwv40 xwv300",fontsize=16,color="magenta"];289 -> 328[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 289 -> 329[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 290[label="compare2 LT xwv30 (LT == xwv30)",fontsize=16,color="burlywood",shape="box"];3835[label="xwv30/LT",fontsize=10,color="white",style="solid",shape="box"];290 -> 3835[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3835 -> 330[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3836[label="xwv30/EQ",fontsize=10,color="white",style="solid",shape="box"];290 -> 3836[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3836 -> 331[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3837[label="xwv30/GT",fontsize=10,color="white",style="solid",shape="box"];290 -> 3837[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3837 -> 332[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 291[label="compare2 EQ xwv30 (EQ == xwv30)",fontsize=16,color="burlywood",shape="box"];3838[label="xwv30/LT",fontsize=10,color="white",style="solid",shape="box"];291 -> 3838[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3838 -> 333[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3839[label="xwv30/EQ",fontsize=10,color="white",style="solid",shape="box"];291 -> 3839[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3839 -> 334[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3840[label="xwv30/GT",fontsize=10,color="white",style="solid",shape="box"];291 -> 3840[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3840 -> 335[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 292[label="compare2 GT xwv30 (GT == xwv30)",fontsize=16,color="burlywood",shape="box"];3841[label="xwv30/LT",fontsize=10,color="white",style="solid",shape="box"];292 -> 3841[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3841 -> 336[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3842[label="xwv30/EQ",fontsize=10,color="white",style="solid",shape="box"];292 -> 3842[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3842 -> 337[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3843[label="xwv30/GT",fontsize=10,color="white",style="solid",shape="box"];292 -> 3843[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3843 -> 338[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 293[label="compare (xwv40 * xwv301) (xwv300 * xwv41)",fontsize=16,color="blue",shape="box"];3844[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];293 -> 3844[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3844 -> 339[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3845[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];293 -> 3845[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3845 -> 340[label="",style="solid", color="blue", weight=3]; 31.03/14.60 294[label="compare2 (xwv40,xwv41) xwv30 ((xwv40,xwv41) == xwv30)",fontsize=16,color="burlywood",shape="box"];3846[label="xwv30/(xwv300,xwv301)",fontsize=10,color="white",style="solid",shape="box"];294 -> 3846[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3846 -> 341[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 295[label="primCmpChar (Char xwv40) (Char xwv300)",fontsize=16,color="black",shape="box"];295 -> 342[label="",style="solid", color="black", weight=3]; 31.03/14.60 296[label="primCmpInt (Pos (Succ xwv400)) xwv30",fontsize=16,color="burlywood",shape="box"];3847[label="xwv30/Pos xwv300",fontsize=10,color="white",style="solid",shape="box"];296 -> 3847[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3847 -> 343[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3848[label="xwv30/Neg xwv300",fontsize=10,color="white",style="solid",shape="box"];296 -> 3848[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3848 -> 344[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 297[label="primCmpInt (Pos Zero) xwv30",fontsize=16,color="burlywood",shape="box"];3849[label="xwv30/Pos xwv300",fontsize=10,color="white",style="solid",shape="box"];297 -> 3849[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3849 -> 345[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3850[label="xwv30/Neg xwv300",fontsize=10,color="white",style="solid",shape="box"];297 -> 3850[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3850 -> 346[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 298[label="primCmpInt (Neg (Succ xwv400)) xwv30",fontsize=16,color="burlywood",shape="box"];3851[label="xwv30/Pos xwv300",fontsize=10,color="white",style="solid",shape="box"];298 -> 3851[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3851 -> 347[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3852[label="xwv30/Neg xwv300",fontsize=10,color="white",style="solid",shape="box"];298 -> 3852[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3852 -> 348[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 299[label="primCmpInt (Neg Zero) xwv30",fontsize=16,color="burlywood",shape="box"];3853[label="xwv30/Pos xwv300",fontsize=10,color="white",style="solid",shape="box"];299 -> 3853[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3853 -> 349[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3854[label="xwv30/Neg xwv300",fontsize=10,color="white",style="solid",shape="box"];299 -> 3854[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3854 -> 350[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 300[label="EQ",fontsize=16,color="green",shape="box"];301[label="primCmpDouble (Double xwv40 (Pos xwv410)) xwv30",fontsize=16,color="burlywood",shape="box"];3855[label="xwv30/Double xwv300 xwv301",fontsize=10,color="white",style="solid",shape="box"];301 -> 3855[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3855 -> 351[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 302[label="primCmpDouble (Double xwv40 (Neg xwv410)) xwv30",fontsize=16,color="burlywood",shape="box"];3856[label="xwv30/Double xwv300 xwv301",fontsize=10,color="white",style="solid",shape="box"];302 -> 3856[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3856 -> 352[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 303 -> 353[label="",style="dashed", color="red", weight=0]; 31.03/14.60 303[label="primCompAux xwv40 xwv300 (compare xwv41 xwv301)",fontsize=16,color="magenta"];303 -> 354[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 304[label="GT",fontsize=16,color="green",shape="box"];305[label="LT",fontsize=16,color="green",shape="box"];306[label="EQ",fontsize=16,color="green",shape="box"];307[label="primCmpFloat (Float xwv40 (Pos xwv410)) xwv30",fontsize=16,color="burlywood",shape="box"];3857[label="xwv30/Float xwv300 xwv301",fontsize=10,color="white",style="solid",shape="box"];307 -> 3857[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3857 -> 355[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 308[label="primCmpFloat (Float xwv40 (Neg xwv410)) xwv30",fontsize=16,color="burlywood",shape="box"];3858[label="xwv30/Float xwv300 xwv301",fontsize=10,color="white",style="solid",shape="box"];308 -> 3858[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3858 -> 356[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 239 -> 183[label="",style="dashed", color="red", weight=0]; 31.03/14.60 239[label="compare xwv18 xwv13",fontsize=16,color="magenta"];239 -> 357[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 239 -> 358[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 238[label="xwv39 == LT",fontsize=16,color="burlywood",shape="triangle"];3859[label="xwv39/LT",fontsize=10,color="white",style="solid",shape="box"];238 -> 3859[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3859 -> 359[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3860[label="xwv39/EQ",fontsize=10,color="white",style="solid",shape="box"];238 -> 3860[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3860 -> 360[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3861[label="xwv39/GT",fontsize=10,color="white",style="solid",shape="box"];238 -> 3861[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3861 -> 361[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 240 -> 184[label="",style="dashed", color="red", weight=0]; 31.03/14.60 240[label="compare xwv18 xwv13",fontsize=16,color="magenta"];240 -> 362[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 240 -> 363[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 241 -> 185[label="",style="dashed", color="red", weight=0]; 31.03/14.60 241[label="compare xwv18 xwv13",fontsize=16,color="magenta"];241 -> 364[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 241 -> 365[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 242 -> 186[label="",style="dashed", color="red", weight=0]; 31.03/14.60 242[label="compare xwv18 xwv13",fontsize=16,color="magenta"];242 -> 366[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 242 -> 367[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 243 -> 187[label="",style="dashed", color="red", weight=0]; 31.03/14.60 243[label="compare xwv18 xwv13",fontsize=16,color="magenta"];243 -> 368[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 243 -> 369[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 244 -> 188[label="",style="dashed", color="red", weight=0]; 31.03/14.60 244[label="compare xwv18 xwv13",fontsize=16,color="magenta"];244 -> 370[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 244 -> 371[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 245 -> 189[label="",style="dashed", color="red", weight=0]; 31.03/14.60 245[label="compare xwv18 xwv13",fontsize=16,color="magenta"];245 -> 372[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 245 -> 373[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 246 -> 190[label="",style="dashed", color="red", weight=0]; 31.03/14.60 246[label="compare xwv18 xwv13",fontsize=16,color="magenta"];246 -> 374[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 246 -> 375[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 247 -> 191[label="",style="dashed", color="red", weight=0]; 31.03/14.60 247[label="compare xwv18 xwv13",fontsize=16,color="magenta"];247 -> 376[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 247 -> 377[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 248 -> 192[label="",style="dashed", color="red", weight=0]; 31.03/14.60 248[label="compare xwv18 xwv13",fontsize=16,color="magenta"];248 -> 378[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 248 -> 379[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 249 -> 193[label="",style="dashed", color="red", weight=0]; 31.03/14.60 249[label="compare xwv18 xwv13",fontsize=16,color="magenta"];249 -> 380[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 249 -> 381[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 250 -> 194[label="",style="dashed", color="red", weight=0]; 31.03/14.60 250[label="compare xwv18 xwv13",fontsize=16,color="magenta"];250 -> 382[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 250 -> 383[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 251 -> 195[label="",style="dashed", color="red", weight=0]; 31.03/14.60 251[label="compare xwv18 xwv13",fontsize=16,color="magenta"];251 -> 384[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 251 -> 385[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 252 -> 196[label="",style="dashed", color="red", weight=0]; 31.03/14.60 252[label="compare xwv18 xwv13",fontsize=16,color="magenta"];252 -> 386[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 252 -> 387[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 275[label="xwv32",fontsize=16,color="green",shape="box"];276[label="xwv28 == xwv33",fontsize=16,color="blue",shape="box"];3862[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3862[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3862 -> 388[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3863[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3863[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3863 -> 389[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3864[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3864[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3864 -> 390[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3865[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3865[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3865 -> 391[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3866[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3866[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3866 -> 392[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3867[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3867[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3867 -> 393[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3868[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3868[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3868 -> 394[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3869[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3869[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3869 -> 395[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3870[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3870[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3870 -> 396[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3871[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3871[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3871 -> 397[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3872[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3872[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3872 -> 398[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3873[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3873[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3873 -> 399[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3874[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3874[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3874 -> 400[label="",style="solid", color="blue", weight=3]; 31.03/14.60 3875[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3875[label="",style="solid", color="blue", weight=9]; 31.03/14.60 3875 -> 401[label="",style="solid", color="blue", weight=3]; 31.03/14.60 277[label="xwv29",fontsize=16,color="green",shape="box"];278[label="xwv30",fontsize=16,color="green",shape="box"];279[label="xwv31",fontsize=16,color="green",shape="box"];280[label="xwv28",fontsize=16,color="green",shape="box"];281[label="xwv33",fontsize=16,color="green",shape="box"];274[label="FiniteMap.delFromFM0 xwv48 xwv49 xwv50 xwv51 xwv52 xwv53 xwv54",fontsize=16,color="burlywood",shape="triangle"];3876[label="xwv54/False",fontsize=10,color="white",style="solid",shape="box"];274 -> 3876[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3876 -> 402[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3877[label="xwv54/True",fontsize=10,color="white",style="solid",shape="box"];274 -> 3877[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3877 -> 403[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 309[label="xwv28",fontsize=16,color="green",shape="box"];310[label="xwv32",fontsize=16,color="green",shape="box"];311[label="xwv29",fontsize=16,color="green",shape="box"];312 -> 4[label="",style="dashed", color="red", weight=0]; 31.03/14.60 312[label="FiniteMap.delFromFM xwv31 xwv33",fontsize=16,color="magenta"];312 -> 404[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 312 -> 405[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 314 -> 104[label="",style="dashed", color="red", weight=0]; 31.03/14.60 314[label="FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35 + FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];314 -> 406[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 314 -> 407[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 313[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 xwv55",fontsize=16,color="burlywood",shape="triangle"];3878[label="xwv55/False",fontsize=10,color="white",style="solid",shape="box"];313 -> 3878[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3878 -> 408[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3879[label="xwv55/True",fontsize=10,color="white",style="solid",shape="box"];313 -> 3879[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3879 -> 409[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 315[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];315 -> 410[label="",style="solid", color="black", weight=3]; 31.03/14.60 316[label="compare2 Nothing (Just xwv300) (Nothing == Just xwv300)",fontsize=16,color="black",shape="box"];316 -> 411[label="",style="solid", color="black", weight=3]; 31.03/14.60 317[label="compare2 (Just xwv40) Nothing (Just xwv40 == Nothing)",fontsize=16,color="black",shape="box"];317 -> 412[label="",style="solid", color="black", weight=3]; 31.03/14.60 318[label="compare2 (Just xwv40) (Just xwv300) (Just xwv40 == Just xwv300)",fontsize=16,color="black",shape="box"];318 -> 413[label="",style="solid", color="black", weight=3]; 31.03/14.60 319[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];319 -> 414[label="",style="solid", color="black", weight=3]; 31.03/14.60 320[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];320 -> 415[label="",style="solid", color="black", weight=3]; 31.03/14.60 321[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];321 -> 416[label="",style="solid", color="black", weight=3]; 31.03/14.60 322[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];322 -> 417[label="",style="solid", color="black", weight=3]; 31.03/14.60 323[label="compare2 (xwv40,xwv41,xwv42) (xwv300,xwv301,xwv302) ((xwv40,xwv41,xwv42) == (xwv300,xwv301,xwv302))",fontsize=16,color="black",shape="box"];323 -> 418[label="",style="solid", color="black", weight=3]; 31.03/14.60 324[label="compare2 (Left xwv40) (Left xwv300) (Left xwv40 == Left xwv300)",fontsize=16,color="black",shape="box"];324 -> 419[label="",style="solid", color="black", weight=3]; 31.03/14.60 325[label="compare2 (Left xwv40) (Right xwv300) (Left xwv40 == Right xwv300)",fontsize=16,color="black",shape="box"];325 -> 420[label="",style="solid", color="black", weight=3]; 31.03/14.60 326[label="compare2 (Right xwv40) (Left xwv300) (Right xwv40 == Left xwv300)",fontsize=16,color="black",shape="box"];326 -> 421[label="",style="solid", color="black", weight=3]; 31.03/14.60 327[label="compare2 (Right xwv40) (Right xwv300) (Right xwv40 == Right xwv300)",fontsize=16,color="black",shape="box"];327 -> 422[label="",style="solid", color="black", weight=3]; 31.03/14.60 328[label="xwv40",fontsize=16,color="green",shape="box"];329[label="xwv300",fontsize=16,color="green",shape="box"];330[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];330 -> 423[label="",style="solid", color="black", weight=3]; 31.03/14.60 331[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];331 -> 424[label="",style="solid", color="black", weight=3]; 31.03/14.60 332[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];332 -> 425[label="",style="solid", color="black", weight=3]; 31.03/14.60 333[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];333 -> 426[label="",style="solid", color="black", weight=3]; 31.03/14.60 334[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];334 -> 427[label="",style="solid", color="black", weight=3]; 31.03/14.60 335[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];335 -> 428[label="",style="solid", color="black", weight=3]; 31.03/14.60 336[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];336 -> 429[label="",style="solid", color="black", weight=3]; 31.03/14.60 337[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];337 -> 430[label="",style="solid", color="black", weight=3]; 31.03/14.60 338[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];338 -> 431[label="",style="solid", color="black", weight=3]; 31.03/14.60 339 -> 187[label="",style="dashed", color="red", weight=0]; 31.03/14.60 339[label="compare (xwv40 * xwv301) (xwv300 * xwv41)",fontsize=16,color="magenta"];339 -> 432[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 339 -> 433[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 340 -> 192[label="",style="dashed", color="red", weight=0]; 31.03/14.60 340[label="compare (xwv40 * xwv301) (xwv300 * xwv41)",fontsize=16,color="magenta"];340 -> 434[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 340 -> 435[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 341[label="compare2 (xwv40,xwv41) (xwv300,xwv301) ((xwv40,xwv41) == (xwv300,xwv301))",fontsize=16,color="black",shape="box"];341 -> 436[label="",style="solid", color="black", weight=3]; 31.03/14.60 342[label="primCmpNat xwv40 xwv300",fontsize=16,color="burlywood",shape="triangle"];3880[label="xwv40/Succ xwv400",fontsize=10,color="white",style="solid",shape="box"];342 -> 3880[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3880 -> 437[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3881[label="xwv40/Zero",fontsize=10,color="white",style="solid",shape="box"];342 -> 3881[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3881 -> 438[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 343[label="primCmpInt (Pos (Succ xwv400)) (Pos xwv300)",fontsize=16,color="black",shape="box"];343 -> 439[label="",style="solid", color="black", weight=3]; 31.03/14.60 344[label="primCmpInt (Pos (Succ xwv400)) (Neg xwv300)",fontsize=16,color="black",shape="box"];344 -> 440[label="",style="solid", color="black", weight=3]; 31.03/14.60 345[label="primCmpInt (Pos Zero) (Pos xwv300)",fontsize=16,color="burlywood",shape="box"];3882[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];345 -> 3882[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3882 -> 441[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3883[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];345 -> 3883[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3883 -> 442[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 346[label="primCmpInt (Pos Zero) (Neg xwv300)",fontsize=16,color="burlywood",shape="box"];3884[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];346 -> 3884[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3884 -> 443[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3885[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];346 -> 3885[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3885 -> 444[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 347[label="primCmpInt (Neg (Succ xwv400)) (Pos xwv300)",fontsize=16,color="black",shape="box"];347 -> 445[label="",style="solid", color="black", weight=3]; 31.03/14.60 348[label="primCmpInt (Neg (Succ xwv400)) (Neg xwv300)",fontsize=16,color="black",shape="box"];348 -> 446[label="",style="solid", color="black", weight=3]; 31.03/14.60 349[label="primCmpInt (Neg Zero) (Pos xwv300)",fontsize=16,color="burlywood",shape="box"];3886[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];349 -> 3886[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3886 -> 447[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3887[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];349 -> 3887[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3887 -> 448[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 350[label="primCmpInt (Neg Zero) (Neg xwv300)",fontsize=16,color="burlywood",shape="box"];3888[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];350 -> 3888[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3888 -> 449[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3889[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];350 -> 3889[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3889 -> 450[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 351[label="primCmpDouble (Double xwv40 (Pos xwv410)) (Double xwv300 xwv301)",fontsize=16,color="burlywood",shape="box"];3890[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];351 -> 3890[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3890 -> 451[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3891[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];351 -> 3891[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3891 -> 452[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 352[label="primCmpDouble (Double xwv40 (Neg xwv410)) (Double xwv300 xwv301)",fontsize=16,color="burlywood",shape="box"];3892[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];352 -> 3892[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3892 -> 453[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3893[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];352 -> 3893[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3893 -> 454[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 354 -> 195[label="",style="dashed", color="red", weight=0]; 31.03/14.60 354[label="compare xwv41 xwv301",fontsize=16,color="magenta"];354 -> 455[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 354 -> 456[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 353[label="primCompAux xwv40 xwv300 xwv56",fontsize=16,color="black",shape="triangle"];353 -> 457[label="",style="solid", color="black", weight=3]; 31.03/14.60 355[label="primCmpFloat (Float xwv40 (Pos xwv410)) (Float xwv300 xwv301)",fontsize=16,color="burlywood",shape="box"];3894[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];355 -> 3894[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3894 -> 458[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3895[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];355 -> 3895[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3895 -> 459[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 356[label="primCmpFloat (Float xwv40 (Neg xwv410)) (Float xwv300 xwv301)",fontsize=16,color="burlywood",shape="box"];3896[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];356 -> 3896[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3896 -> 460[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3897[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];356 -> 3897[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3897 -> 461[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 357[label="xwv18",fontsize=16,color="green",shape="box"];358[label="xwv13",fontsize=16,color="green",shape="box"];359[label="LT == LT",fontsize=16,color="black",shape="box"];359 -> 462[label="",style="solid", color="black", weight=3]; 31.03/14.60 360[label="EQ == LT",fontsize=16,color="black",shape="box"];360 -> 463[label="",style="solid", color="black", weight=3]; 31.03/14.60 361[label="GT == LT",fontsize=16,color="black",shape="box"];361 -> 464[label="",style="solid", color="black", weight=3]; 31.03/14.60 362[label="xwv18",fontsize=16,color="green",shape="box"];363[label="xwv13",fontsize=16,color="green",shape="box"];364[label="xwv18",fontsize=16,color="green",shape="box"];365[label="xwv13",fontsize=16,color="green",shape="box"];366[label="xwv18",fontsize=16,color="green",shape="box"];367[label="xwv13",fontsize=16,color="green",shape="box"];368[label="xwv18",fontsize=16,color="green",shape="box"];369[label="xwv13",fontsize=16,color="green",shape="box"];370[label="xwv18",fontsize=16,color="green",shape="box"];371[label="xwv13",fontsize=16,color="green",shape="box"];372[label="xwv18",fontsize=16,color="green",shape="box"];373[label="xwv13",fontsize=16,color="green",shape="box"];374[label="xwv18",fontsize=16,color="green",shape="box"];375[label="xwv13",fontsize=16,color="green",shape="box"];376[label="xwv18",fontsize=16,color="green",shape="box"];377[label="xwv13",fontsize=16,color="green",shape="box"];378[label="xwv18",fontsize=16,color="green",shape="box"];379[label="xwv13",fontsize=16,color="green",shape="box"];380[label="xwv18",fontsize=16,color="green",shape="box"];381[label="xwv13",fontsize=16,color="green",shape="box"];382[label="xwv18",fontsize=16,color="green",shape="box"];383[label="xwv13",fontsize=16,color="green",shape="box"];384[label="xwv18",fontsize=16,color="green",shape="box"];385[label="xwv13",fontsize=16,color="green",shape="box"];386[label="xwv18",fontsize=16,color="green",shape="box"];387[label="xwv13",fontsize=16,color="green",shape="box"];388[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3898[label="xwv28/()",fontsize=10,color="white",style="solid",shape="box"];388 -> 3898[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3898 -> 465[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 389[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3899[label="xwv28/xwv280 : xwv281",fontsize=10,color="white",style="solid",shape="box"];389 -> 3899[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3899 -> 466[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3900[label="xwv28/[]",fontsize=10,color="white",style="solid",shape="box"];389 -> 3900[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3900 -> 467[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 390[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3901[label="xwv28/Left xwv280",fontsize=10,color="white",style="solid",shape="box"];390 -> 3901[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3901 -> 468[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3902[label="xwv28/Right xwv280",fontsize=10,color="white",style="solid",shape="box"];390 -> 3902[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3902 -> 469[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 391[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3903[label="xwv28/(xwv280,xwv281)",fontsize=10,color="white",style="solid",shape="box"];391 -> 3903[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3903 -> 470[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 392[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3904[label="xwv28/Integer xwv280",fontsize=10,color="white",style="solid",shape="box"];392 -> 3904[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3904 -> 471[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 393[label="xwv28 == xwv33",fontsize=16,color="black",shape="triangle"];393 -> 472[label="",style="solid", color="black", weight=3]; 31.03/14.60 394[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3905[label="xwv28/False",fontsize=10,color="white",style="solid",shape="box"];394 -> 3905[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3905 -> 473[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3906[label="xwv28/True",fontsize=10,color="white",style="solid",shape="box"];394 -> 3906[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3906 -> 474[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 395[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3907[label="xwv28/Nothing",fontsize=10,color="white",style="solid",shape="box"];395 -> 3907[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3907 -> 475[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3908[label="xwv28/Just xwv280",fontsize=10,color="white",style="solid",shape="box"];395 -> 3908[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3908 -> 476[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 396[label="xwv28 == xwv33",fontsize=16,color="black",shape="triangle"];396 -> 477[label="",style="solid", color="black", weight=3]; 31.03/14.60 397[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3909[label="xwv28/(xwv280,xwv281,xwv282)",fontsize=10,color="white",style="solid",shape="box"];397 -> 3909[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3909 -> 478[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 398[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3910[label="xwv28/xwv280 :% xwv281",fontsize=10,color="white",style="solid",shape="box"];398 -> 3910[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3910 -> 479[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 399[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3911[label="xwv28/LT",fontsize=10,color="white",style="solid",shape="box"];399 -> 3911[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3911 -> 480[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3912[label="xwv28/EQ",fontsize=10,color="white",style="solid",shape="box"];399 -> 3912[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3912 -> 481[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3913[label="xwv28/GT",fontsize=10,color="white",style="solid",shape="box"];399 -> 3913[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3913 -> 482[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 400[label="xwv28 == xwv33",fontsize=16,color="black",shape="triangle"];400 -> 483[label="",style="solid", color="black", weight=3]; 31.03/14.60 401[label="xwv28 == xwv33",fontsize=16,color="black",shape="triangle"];401 -> 484[label="",style="solid", color="black", weight=3]; 31.03/14.60 402[label="FiniteMap.delFromFM0 xwv48 xwv49 xwv50 xwv51 xwv52 xwv53 False",fontsize=16,color="black",shape="box"];402 -> 485[label="",style="solid", color="black", weight=3]; 31.03/14.60 403[label="FiniteMap.delFromFM0 xwv48 xwv49 xwv50 xwv51 xwv52 xwv53 True",fontsize=16,color="black",shape="box"];403 -> 486[label="",style="solid", color="black", weight=3]; 31.03/14.60 404[label="xwv33",fontsize=16,color="green",shape="box"];405[label="xwv31",fontsize=16,color="green",shape="box"];406[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];407[label="FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35 + FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="box"];407 -> 487[label="",style="solid", color="black", weight=3]; 31.03/14.60 408[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 False",fontsize=16,color="black",shape="box"];408 -> 488[label="",style="solid", color="black", weight=3]; 31.03/14.60 409[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 True",fontsize=16,color="black",shape="box"];409 -> 489[label="",style="solid", color="black", weight=3]; 31.03/14.60 410[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];410 -> 490[label="",style="solid", color="black", weight=3]; 31.03/14.60 411[label="compare2 Nothing (Just xwv300) False",fontsize=16,color="black",shape="box"];411 -> 491[label="",style="solid", color="black", weight=3]; 31.03/14.60 412[label="compare2 (Just xwv40) Nothing False",fontsize=16,color="black",shape="box"];412 -> 492[label="",style="solid", color="black", weight=3]; 31.03/14.60 413 -> 493[label="",style="dashed", color="red", weight=0]; 31.03/14.60 413[label="compare2 (Just xwv40) (Just xwv300) (xwv40 == xwv300)",fontsize=16,color="magenta"];413 -> 494[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 413 -> 495[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 413 -> 496[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 414[label="compare2 False False True",fontsize=16,color="black",shape="box"];414 -> 497[label="",style="solid", color="black", weight=3]; 31.03/14.60 415[label="compare2 False True False",fontsize=16,color="black",shape="box"];415 -> 498[label="",style="solid", color="black", weight=3]; 31.03/14.60 416[label="compare2 True False False",fontsize=16,color="black",shape="box"];416 -> 499[label="",style="solid", color="black", weight=3]; 31.03/14.60 417[label="compare2 True True True",fontsize=16,color="black",shape="box"];417 -> 500[label="",style="solid", color="black", weight=3]; 31.03/14.60 418 -> 1104[label="",style="dashed", color="red", weight=0]; 31.03/14.60 418[label="compare2 (xwv40,xwv41,xwv42) (xwv300,xwv301,xwv302) (xwv40 == xwv300 && xwv41 == xwv301 && xwv42 == xwv302)",fontsize=16,color="magenta"];418 -> 1105[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 418 -> 1106[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 418 -> 1107[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 418 -> 1108[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 418 -> 1109[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 418 -> 1110[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 418 -> 1111[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 419 -> 509[label="",style="dashed", color="red", weight=0]; 31.03/14.60 419[label="compare2 (Left xwv40) (Left xwv300) (xwv40 == xwv300)",fontsize=16,color="magenta"];419 -> 510[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 419 -> 511[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 419 -> 512[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 420[label="compare2 (Left xwv40) (Right xwv300) False",fontsize=16,color="black",shape="box"];420 -> 513[label="",style="solid", color="black", weight=3]; 31.03/14.60 421[label="compare2 (Right xwv40) (Left xwv300) False",fontsize=16,color="black",shape="box"];421 -> 514[label="",style="solid", color="black", weight=3]; 31.03/14.60 422 -> 515[label="",style="dashed", color="red", weight=0]; 31.03/14.60 422[label="compare2 (Right xwv40) (Right xwv300) (xwv40 == xwv300)",fontsize=16,color="magenta"];422 -> 516[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 422 -> 517[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 422 -> 518[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 423[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];423 -> 519[label="",style="solid", color="black", weight=3]; 31.03/14.60 424[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];424 -> 520[label="",style="solid", color="black", weight=3]; 31.03/14.60 425[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];425 -> 521[label="",style="solid", color="black", weight=3]; 31.03/14.60 426[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];426 -> 522[label="",style="solid", color="black", weight=3]; 31.03/14.60 427[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];427 -> 523[label="",style="solid", color="black", weight=3]; 31.03/14.60 428[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];428 -> 524[label="",style="solid", color="black", weight=3]; 31.03/14.60 429[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];429 -> 525[label="",style="solid", color="black", weight=3]; 31.03/14.60 430[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];430 -> 526[label="",style="solid", color="black", weight=3]; 31.03/14.60 431[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];431 -> 527[label="",style="solid", color="black", weight=3]; 31.03/14.60 432[label="xwv40 * xwv301",fontsize=16,color="burlywood",shape="triangle"];3914[label="xwv40/Integer xwv400",fontsize=10,color="white",style="solid",shape="box"];432 -> 3914[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3914 -> 528[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 433 -> 432[label="",style="dashed", color="red", weight=0]; 31.03/14.60 433[label="xwv300 * xwv41",fontsize=16,color="magenta"];433 -> 529[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 433 -> 530[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 434[label="xwv40 * xwv301",fontsize=16,color="black",shape="triangle"];434 -> 531[label="",style="solid", color="black", weight=3]; 31.03/14.60 435 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.60 435[label="xwv300 * xwv41",fontsize=16,color="magenta"];435 -> 532[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 435 -> 533[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 436 -> 1132[label="",style="dashed", color="red", weight=0]; 31.03/14.60 436[label="compare2 (xwv40,xwv41) (xwv300,xwv301) (xwv40 == xwv300 && xwv41 == xwv301)",fontsize=16,color="magenta"];436 -> 1133[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 436 -> 1134[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 436 -> 1135[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 436 -> 1136[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 436 -> 1137[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 437[label="primCmpNat (Succ xwv400) xwv300",fontsize=16,color="burlywood",shape="box"];3915[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];437 -> 3915[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3915 -> 540[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3916[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];437 -> 3916[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3916 -> 541[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 438[label="primCmpNat Zero xwv300",fontsize=16,color="burlywood",shape="box"];3917[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];438 -> 3917[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3917 -> 542[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3918[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];438 -> 3918[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3918 -> 543[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 439 -> 342[label="",style="dashed", color="red", weight=0]; 31.03/14.60 439[label="primCmpNat (Succ xwv400) xwv300",fontsize=16,color="magenta"];439 -> 544[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 439 -> 545[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 440[label="GT",fontsize=16,color="green",shape="box"];441[label="primCmpInt (Pos Zero) (Pos (Succ xwv3000))",fontsize=16,color="black",shape="box"];441 -> 546[label="",style="solid", color="black", weight=3]; 31.03/14.60 442[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];442 -> 547[label="",style="solid", color="black", weight=3]; 31.03/14.60 443[label="primCmpInt (Pos Zero) (Neg (Succ xwv3000))",fontsize=16,color="black",shape="box"];443 -> 548[label="",style="solid", color="black", weight=3]; 31.03/14.60 444[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];444 -> 549[label="",style="solid", color="black", weight=3]; 31.03/14.60 445[label="LT",fontsize=16,color="green",shape="box"];446 -> 342[label="",style="dashed", color="red", weight=0]; 31.03/14.60 446[label="primCmpNat xwv300 (Succ xwv400)",fontsize=16,color="magenta"];446 -> 550[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 446 -> 551[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 447[label="primCmpInt (Neg Zero) (Pos (Succ xwv3000))",fontsize=16,color="black",shape="box"];447 -> 552[label="",style="solid", color="black", weight=3]; 31.03/14.60 448[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];448 -> 553[label="",style="solid", color="black", weight=3]; 31.03/14.60 449[label="primCmpInt (Neg Zero) (Neg (Succ xwv3000))",fontsize=16,color="black",shape="box"];449 -> 554[label="",style="solid", color="black", weight=3]; 31.03/14.60 450[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];450 -> 555[label="",style="solid", color="black", weight=3]; 31.03/14.60 451[label="primCmpDouble (Double xwv40 (Pos xwv410)) (Double xwv300 (Pos xwv3010))",fontsize=16,color="black",shape="box"];451 -> 556[label="",style="solid", color="black", weight=3]; 31.03/14.60 452[label="primCmpDouble (Double xwv40 (Pos xwv410)) (Double xwv300 (Neg xwv3010))",fontsize=16,color="black",shape="box"];452 -> 557[label="",style="solid", color="black", weight=3]; 31.03/14.60 453[label="primCmpDouble (Double xwv40 (Neg xwv410)) (Double xwv300 (Pos xwv3010))",fontsize=16,color="black",shape="box"];453 -> 558[label="",style="solid", color="black", weight=3]; 31.03/14.60 454[label="primCmpDouble (Double xwv40 (Neg xwv410)) (Double xwv300 (Neg xwv3010))",fontsize=16,color="black",shape="box"];454 -> 559[label="",style="solid", color="black", weight=3]; 31.03/14.60 455[label="xwv41",fontsize=16,color="green",shape="box"];456[label="xwv301",fontsize=16,color="green",shape="box"];457 -> 560[label="",style="dashed", color="red", weight=0]; 31.03/14.60 457[label="primCompAux0 xwv56 (compare xwv40 xwv300)",fontsize=16,color="magenta"];457 -> 561[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 457 -> 562[label="",style="dashed", color="magenta", weight=3]; 31.03/14.60 458[label="primCmpFloat (Float xwv40 (Pos xwv410)) (Float xwv300 (Pos xwv3010))",fontsize=16,color="black",shape="box"];458 -> 563[label="",style="solid", color="black", weight=3]; 31.03/14.60 459[label="primCmpFloat (Float xwv40 (Pos xwv410)) (Float xwv300 (Neg xwv3010))",fontsize=16,color="black",shape="box"];459 -> 564[label="",style="solid", color="black", weight=3]; 31.03/14.60 460[label="primCmpFloat (Float xwv40 (Neg xwv410)) (Float xwv300 (Pos xwv3010))",fontsize=16,color="black",shape="box"];460 -> 565[label="",style="solid", color="black", weight=3]; 31.03/14.60 461[label="primCmpFloat (Float xwv40 (Neg xwv410)) (Float xwv300 (Neg xwv3010))",fontsize=16,color="black",shape="box"];461 -> 566[label="",style="solid", color="black", weight=3]; 31.03/14.60 462[label="True",fontsize=16,color="green",shape="box"];463[label="False",fontsize=16,color="green",shape="box"];464[label="False",fontsize=16,color="green",shape="box"];465[label="() == xwv33",fontsize=16,color="burlywood",shape="box"];3919[label="xwv33/()",fontsize=10,color="white",style="solid",shape="box"];465 -> 3919[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3919 -> 567[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 466[label="xwv280 : xwv281 == xwv33",fontsize=16,color="burlywood",shape="box"];3920[label="xwv33/xwv330 : xwv331",fontsize=10,color="white",style="solid",shape="box"];466 -> 3920[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3920 -> 568[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3921[label="xwv33/[]",fontsize=10,color="white",style="solid",shape="box"];466 -> 3921[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3921 -> 569[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 467[label="[] == xwv33",fontsize=16,color="burlywood",shape="box"];3922[label="xwv33/xwv330 : xwv331",fontsize=10,color="white",style="solid",shape="box"];467 -> 3922[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3922 -> 570[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3923[label="xwv33/[]",fontsize=10,color="white",style="solid",shape="box"];467 -> 3923[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3923 -> 571[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 468[label="Left xwv280 == xwv33",fontsize=16,color="burlywood",shape="box"];3924[label="xwv33/Left xwv330",fontsize=10,color="white",style="solid",shape="box"];468 -> 3924[label="",style="solid", color="burlywood", weight=9]; 31.03/14.60 3924 -> 572[label="",style="solid", color="burlywood", weight=3]; 31.03/14.60 3925[label="xwv33/Right xwv330",fontsize=10,color="white",style="solid",shape="box"];468 -> 3925[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3925 -> 573[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 469[label="Right xwv280 == xwv33",fontsize=16,color="burlywood",shape="box"];3926[label="xwv33/Left xwv330",fontsize=10,color="white",style="solid",shape="box"];469 -> 3926[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3926 -> 574[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 3927[label="xwv33/Right xwv330",fontsize=10,color="white",style="solid",shape="box"];469 -> 3927[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3927 -> 575[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 470[label="(xwv280,xwv281) == xwv33",fontsize=16,color="burlywood",shape="box"];3928[label="xwv33/(xwv330,xwv331)",fontsize=10,color="white",style="solid",shape="box"];470 -> 3928[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3928 -> 576[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 471[label="Integer xwv280 == xwv33",fontsize=16,color="burlywood",shape="box"];3929[label="xwv33/Integer xwv330",fontsize=10,color="white",style="solid",shape="box"];471 -> 3929[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3929 -> 577[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 472[label="primEqDouble xwv28 xwv33",fontsize=16,color="burlywood",shape="box"];3930[label="xwv28/Double xwv280 xwv281",fontsize=10,color="white",style="solid",shape="box"];472 -> 3930[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3930 -> 578[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 473[label="False == xwv33",fontsize=16,color="burlywood",shape="box"];3931[label="xwv33/False",fontsize=10,color="white",style="solid",shape="box"];473 -> 3931[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3931 -> 579[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 3932[label="xwv33/True",fontsize=10,color="white",style="solid",shape="box"];473 -> 3932[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3932 -> 580[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 474[label="True == xwv33",fontsize=16,color="burlywood",shape="box"];3933[label="xwv33/False",fontsize=10,color="white",style="solid",shape="box"];474 -> 3933[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3933 -> 581[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 3934[label="xwv33/True",fontsize=10,color="white",style="solid",shape="box"];474 -> 3934[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3934 -> 582[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 475[label="Nothing == xwv33",fontsize=16,color="burlywood",shape="box"];3935[label="xwv33/Nothing",fontsize=10,color="white",style="solid",shape="box"];475 -> 3935[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3935 -> 583[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 3936[label="xwv33/Just xwv330",fontsize=10,color="white",style="solid",shape="box"];475 -> 3936[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3936 -> 584[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 476[label="Just xwv280 == xwv33",fontsize=16,color="burlywood",shape="box"];3937[label="xwv33/Nothing",fontsize=10,color="white",style="solid",shape="box"];476 -> 3937[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3937 -> 585[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 3938[label="xwv33/Just xwv330",fontsize=10,color="white",style="solid",shape="box"];476 -> 3938[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3938 -> 586[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 477[label="primEqFloat xwv28 xwv33",fontsize=16,color="burlywood",shape="box"];3939[label="xwv28/Float xwv280 xwv281",fontsize=10,color="white",style="solid",shape="box"];477 -> 3939[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3939 -> 587[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 478[label="(xwv280,xwv281,xwv282) == xwv33",fontsize=16,color="burlywood",shape="box"];3940[label="xwv33/(xwv330,xwv331,xwv332)",fontsize=10,color="white",style="solid",shape="box"];478 -> 3940[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3940 -> 588[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 479[label="xwv280 :% xwv281 == xwv33",fontsize=16,color="burlywood",shape="box"];3941[label="xwv33/xwv330 :% xwv331",fontsize=10,color="white",style="solid",shape="box"];479 -> 3941[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3941 -> 589[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 480[label="LT == xwv33",fontsize=16,color="burlywood",shape="box"];3942[label="xwv33/LT",fontsize=10,color="white",style="solid",shape="box"];480 -> 3942[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3942 -> 590[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 3943[label="xwv33/EQ",fontsize=10,color="white",style="solid",shape="box"];480 -> 3943[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3943 -> 591[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 3944[label="xwv33/GT",fontsize=10,color="white",style="solid",shape="box"];480 -> 3944[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3944 -> 592[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 481[label="EQ == xwv33",fontsize=16,color="burlywood",shape="box"];3945[label="xwv33/LT",fontsize=10,color="white",style="solid",shape="box"];481 -> 3945[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3945 -> 593[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 3946[label="xwv33/EQ",fontsize=10,color="white",style="solid",shape="box"];481 -> 3946[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3946 -> 594[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 3947[label="xwv33/GT",fontsize=10,color="white",style="solid",shape="box"];481 -> 3947[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3947 -> 595[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 482[label="GT == xwv33",fontsize=16,color="burlywood",shape="box"];3948[label="xwv33/LT",fontsize=10,color="white",style="solid",shape="box"];482 -> 3948[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3948 -> 596[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 3949[label="xwv33/EQ",fontsize=10,color="white",style="solid",shape="box"];482 -> 3949[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3949 -> 597[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 3950[label="xwv33/GT",fontsize=10,color="white",style="solid",shape="box"];482 -> 3950[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3950 -> 598[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 483[label="primEqChar xwv28 xwv33",fontsize=16,color="burlywood",shape="box"];3951[label="xwv28/Char xwv280",fontsize=10,color="white",style="solid",shape="box"];483 -> 3951[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3951 -> 599[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 484[label="primEqInt xwv28 xwv33",fontsize=16,color="burlywood",shape="triangle"];3952[label="xwv28/Pos xwv280",fontsize=10,color="white",style="solid",shape="box"];484 -> 3952[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3952 -> 600[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 3953[label="xwv28/Neg xwv280",fontsize=10,color="white",style="solid",shape="box"];484 -> 3953[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3953 -> 601[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 485[label="error []",fontsize=16,color="red",shape="box"];486[label="FiniteMap.glueBal xwv51 xwv52",fontsize=16,color="burlywood",shape="box"];3954[label="xwv51/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];486 -> 3954[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3954 -> 602[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 3955[label="xwv51/FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514",fontsize=10,color="white",style="solid",shape="box"];486 -> 3955[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3955 -> 603[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 487 -> 1518[label="",style="dashed", color="red", weight=0]; 31.03/14.61 487[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35) (FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35)",fontsize=16,color="magenta"];487 -> 1519[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 487 -> 1520[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 488 -> 605[label="",style="dashed", color="red", weight=0]; 31.03/14.61 488[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 (FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35)",fontsize=16,color="magenta"];488 -> 606[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 489[label="FiniteMap.mkBranch (Pos (Succ Zero)) xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="box"];489 -> 607[label="",style="solid", color="black", weight=3]; 31.03/14.61 490[label="EQ",fontsize=16,color="green",shape="box"];491[label="compare1 Nothing (Just xwv300) (Nothing <= Just xwv300)",fontsize=16,color="black",shape="box"];491 -> 608[label="",style="solid", color="black", weight=3]; 31.03/14.61 492[label="compare1 (Just xwv40) Nothing (Just xwv40 <= Nothing)",fontsize=16,color="black",shape="box"];492 -> 609[label="",style="solid", color="black", weight=3]; 31.03/14.61 494[label="xwv40 == xwv300",fontsize=16,color="blue",shape="box"];3956[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];494 -> 3956[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3956 -> 610[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3957[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];494 -> 3957[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3957 -> 611[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3958[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];494 -> 3958[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3958 -> 612[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3959[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];494 -> 3959[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3959 -> 613[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3960[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];494 -> 3960[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3960 -> 614[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3961[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];494 -> 3961[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3961 -> 615[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3962[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];494 -> 3962[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3962 -> 616[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3963[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];494 -> 3963[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3963 -> 617[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3964[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];494 -> 3964[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3964 -> 618[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3965[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];494 -> 3965[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3965 -> 619[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3966[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];494 -> 3966[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3966 -> 620[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3967[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];494 -> 3967[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3967 -> 621[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3968[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];494 -> 3968[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3968 -> 622[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3969[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];494 -> 3969[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3969 -> 623[label="",style="solid", color="blue", weight=3]; 31.03/14.61 495[label="xwv40",fontsize=16,color="green",shape="box"];496[label="xwv300",fontsize=16,color="green",shape="box"];493[label="compare2 (Just xwv61) (Just xwv62) xwv63",fontsize=16,color="burlywood",shape="triangle"];3970[label="xwv63/False",fontsize=10,color="white",style="solid",shape="box"];493 -> 3970[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3970 -> 624[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 3971[label="xwv63/True",fontsize=10,color="white",style="solid",shape="box"];493 -> 3971[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3971 -> 625[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 497[label="EQ",fontsize=16,color="green",shape="box"];498[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];498 -> 626[label="",style="solid", color="black", weight=3]; 31.03/14.61 499[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];499 -> 627[label="",style="solid", color="black", weight=3]; 31.03/14.61 500[label="EQ",fontsize=16,color="green",shape="box"];1105[label="xwv41",fontsize=16,color="green",shape="box"];1106[label="xwv42",fontsize=16,color="green",shape="box"];1107[label="xwv301",fontsize=16,color="green",shape="box"];1108[label="xwv300",fontsize=16,color="green",shape="box"];1109[label="xwv40",fontsize=16,color="green",shape="box"];1110[label="xwv302",fontsize=16,color="green",shape="box"];1111 -> 1161[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1111[label="xwv40 == xwv300 && xwv41 == xwv301 && xwv42 == xwv302",fontsize=16,color="magenta"];1111 -> 1162[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1111 -> 1163[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1104[label="compare2 (xwv72,xwv73,xwv74) (xwv75,xwv76,xwv77) xwv112",fontsize=16,color="burlywood",shape="triangle"];3972[label="xwv112/False",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3972[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3972 -> 1118[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 3973[label="xwv112/True",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3973[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3973 -> 1119[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 510[label="xwv40 == xwv300",fontsize=16,color="blue",shape="box"];3974[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];510 -> 3974[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3974 -> 644[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3975[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];510 -> 3975[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3975 -> 645[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3976[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];510 -> 3976[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3976 -> 646[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3977[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];510 -> 3977[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3977 -> 647[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3978[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];510 -> 3978[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3978 -> 648[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3979[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];510 -> 3979[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3979 -> 649[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3980[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];510 -> 3980[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3980 -> 650[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3981[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];510 -> 3981[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3981 -> 651[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3982[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];510 -> 3982[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3982 -> 652[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3983[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];510 -> 3983[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3983 -> 653[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3984[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];510 -> 3984[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3984 -> 654[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3985[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];510 -> 3985[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3985 -> 655[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3986[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];510 -> 3986[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3986 -> 656[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3987[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];510 -> 3987[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3987 -> 657[label="",style="solid", color="blue", weight=3]; 31.03/14.61 511[label="xwv40",fontsize=16,color="green",shape="box"];512[label="xwv300",fontsize=16,color="green",shape="box"];509[label="compare2 (Left xwv83) (Left xwv84) xwv85",fontsize=16,color="burlywood",shape="triangle"];3988[label="xwv85/False",fontsize=10,color="white",style="solid",shape="box"];509 -> 3988[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3988 -> 658[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 3989[label="xwv85/True",fontsize=10,color="white",style="solid",shape="box"];509 -> 3989[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 3989 -> 659[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 513[label="compare1 (Left xwv40) (Right xwv300) (Left xwv40 <= Right xwv300)",fontsize=16,color="black",shape="box"];513 -> 660[label="",style="solid", color="black", weight=3]; 31.03/14.61 514[label="compare1 (Right xwv40) (Left xwv300) (Right xwv40 <= Left xwv300)",fontsize=16,color="black",shape="box"];514 -> 661[label="",style="solid", color="black", weight=3]; 31.03/14.61 516[label="xwv40 == xwv300",fontsize=16,color="blue",shape="box"];3990[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3990[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3990 -> 662[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3991[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3991[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3991 -> 663[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3992[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3992[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3992 -> 664[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3993[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3993[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3993 -> 665[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3994[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3994[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3994 -> 666[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3995[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3995[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3995 -> 667[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3996[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3996[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3996 -> 668[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3997[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3997[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3997 -> 669[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3998[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3998[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3998 -> 670[label="",style="solid", color="blue", weight=3]; 31.03/14.61 3999[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3999[label="",style="solid", color="blue", weight=9]; 31.03/14.61 3999 -> 671[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4000[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4000[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4000 -> 672[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4001[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4001[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4001 -> 673[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4002[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4002[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4002 -> 674[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4003[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4003[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4003 -> 675[label="",style="solid", color="blue", weight=3]; 31.03/14.61 517[label="xwv300",fontsize=16,color="green",shape="box"];518[label="xwv40",fontsize=16,color="green",shape="box"];515[label="compare2 (Right xwv90) (Right xwv91) xwv92",fontsize=16,color="burlywood",shape="triangle"];4004[label="xwv92/False",fontsize=10,color="white",style="solid",shape="box"];515 -> 4004[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4004 -> 676[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4005[label="xwv92/True",fontsize=10,color="white",style="solid",shape="box"];515 -> 4005[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4005 -> 677[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 519[label="EQ",fontsize=16,color="green",shape="box"];520[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];520 -> 678[label="",style="solid", color="black", weight=3]; 31.03/14.61 521[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];521 -> 679[label="",style="solid", color="black", weight=3]; 31.03/14.61 522[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];522 -> 680[label="",style="solid", color="black", weight=3]; 31.03/14.61 523[label="EQ",fontsize=16,color="green",shape="box"];524[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];524 -> 681[label="",style="solid", color="black", weight=3]; 31.03/14.61 525[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];525 -> 682[label="",style="solid", color="black", weight=3]; 31.03/14.61 526[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];526 -> 683[label="",style="solid", color="black", weight=3]; 31.03/14.61 527[label="EQ",fontsize=16,color="green",shape="box"];528[label="Integer xwv400 * xwv301",fontsize=16,color="burlywood",shape="box"];4006[label="xwv301/Integer xwv3010",fontsize=10,color="white",style="solid",shape="box"];528 -> 4006[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4006 -> 684[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 529[label="xwv300",fontsize=16,color="green",shape="box"];530[label="xwv41",fontsize=16,color="green",shape="box"];531[label="primMulInt xwv40 xwv301",fontsize=16,color="burlywood",shape="triangle"];4007[label="xwv40/Pos xwv400",fontsize=10,color="white",style="solid",shape="box"];531 -> 4007[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4007 -> 685[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4008[label="xwv40/Neg xwv400",fontsize=10,color="white",style="solid",shape="box"];531 -> 4008[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4008 -> 686[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 532[label="xwv300",fontsize=16,color="green",shape="box"];533[label="xwv41",fontsize=16,color="green",shape="box"];1133[label="xwv40",fontsize=16,color="green",shape="box"];1134[label="xwv301",fontsize=16,color="green",shape="box"];1135 -> 1161[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1135[label="xwv40 == xwv300 && xwv41 == xwv301",fontsize=16,color="magenta"];1135 -> 1164[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1135 -> 1165[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1136[label="xwv41",fontsize=16,color="green",shape="box"];1137[label="xwv300",fontsize=16,color="green",shape="box"];1132[label="compare2 (xwv119,xwv120) (xwv121,xwv122) xwv123",fontsize=16,color="burlywood",shape="triangle"];4009[label="xwv123/False",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4009[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4009 -> 1156[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4010[label="xwv123/True",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4010[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4010 -> 1157[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 540[label="primCmpNat (Succ xwv400) (Succ xwv3000)",fontsize=16,color="black",shape="box"];540 -> 703[label="",style="solid", color="black", weight=3]; 31.03/14.61 541[label="primCmpNat (Succ xwv400) Zero",fontsize=16,color="black",shape="box"];541 -> 704[label="",style="solid", color="black", weight=3]; 31.03/14.61 542[label="primCmpNat Zero (Succ xwv3000)",fontsize=16,color="black",shape="box"];542 -> 705[label="",style="solid", color="black", weight=3]; 31.03/14.61 543[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];543 -> 706[label="",style="solid", color="black", weight=3]; 31.03/14.61 544[label="xwv300",fontsize=16,color="green",shape="box"];545[label="Succ xwv400",fontsize=16,color="green",shape="box"];546 -> 342[label="",style="dashed", color="red", weight=0]; 31.03/14.61 546[label="primCmpNat Zero (Succ xwv3000)",fontsize=16,color="magenta"];546 -> 707[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 546 -> 708[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 547[label="EQ",fontsize=16,color="green",shape="box"];548[label="GT",fontsize=16,color="green",shape="box"];549[label="EQ",fontsize=16,color="green",shape="box"];550[label="Succ xwv400",fontsize=16,color="green",shape="box"];551[label="xwv300",fontsize=16,color="green",shape="box"];552[label="LT",fontsize=16,color="green",shape="box"];553[label="EQ",fontsize=16,color="green",shape="box"];554 -> 342[label="",style="dashed", color="red", weight=0]; 31.03/14.61 554[label="primCmpNat (Succ xwv3000) Zero",fontsize=16,color="magenta"];554 -> 709[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 554 -> 710[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 555[label="EQ",fontsize=16,color="green",shape="box"];556 -> 192[label="",style="dashed", color="red", weight=0]; 31.03/14.61 556[label="compare (xwv40 * Pos xwv3010) (Pos xwv410 * xwv300)",fontsize=16,color="magenta"];556 -> 711[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 556 -> 712[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 557 -> 192[label="",style="dashed", color="red", weight=0]; 31.03/14.61 557[label="compare (xwv40 * Pos xwv3010) (Neg xwv410 * xwv300)",fontsize=16,color="magenta"];557 -> 713[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 557 -> 714[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 558 -> 192[label="",style="dashed", color="red", weight=0]; 31.03/14.61 558[label="compare (xwv40 * Neg xwv3010) (Pos xwv410 * xwv300)",fontsize=16,color="magenta"];558 -> 715[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 558 -> 716[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 559 -> 192[label="",style="dashed", color="red", weight=0]; 31.03/14.61 559[label="compare (xwv40 * Neg xwv3010) (Neg xwv410 * xwv300)",fontsize=16,color="magenta"];559 -> 717[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 559 -> 718[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 561[label="xwv56",fontsize=16,color="green",shape="box"];562[label="compare xwv40 xwv300",fontsize=16,color="blue",shape="box"];4011[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];562 -> 4011[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4011 -> 719[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4012[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];562 -> 4012[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4012 -> 720[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4013[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];562 -> 4013[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4013 -> 721[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4014[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];562 -> 4014[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4014 -> 722[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4015[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];562 -> 4015[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4015 -> 723[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4016[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];562 -> 4016[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4016 -> 724[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4017[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];562 -> 4017[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4017 -> 725[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4018[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];562 -> 4018[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4018 -> 726[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4019[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];562 -> 4019[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4019 -> 727[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4020[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];562 -> 4020[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4020 -> 728[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4021[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];562 -> 4021[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4021 -> 729[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4022[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];562 -> 4022[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4022 -> 730[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4023[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];562 -> 4023[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4023 -> 731[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4024[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];562 -> 4024[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4024 -> 732[label="",style="solid", color="blue", weight=3]; 31.03/14.61 560[label="primCompAux0 xwv107 xwv108",fontsize=16,color="burlywood",shape="triangle"];4025[label="xwv108/LT",fontsize=10,color="white",style="solid",shape="box"];560 -> 4025[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4025 -> 733[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4026[label="xwv108/EQ",fontsize=10,color="white",style="solid",shape="box"];560 -> 4026[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4026 -> 734[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4027[label="xwv108/GT",fontsize=10,color="white",style="solid",shape="box"];560 -> 4027[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4027 -> 735[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 563 -> 192[label="",style="dashed", color="red", weight=0]; 31.03/14.61 563[label="compare (xwv40 * Pos xwv3010) (Pos xwv410 * xwv300)",fontsize=16,color="magenta"];563 -> 736[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 563 -> 737[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 564 -> 192[label="",style="dashed", color="red", weight=0]; 31.03/14.61 564[label="compare (xwv40 * Pos xwv3010) (Neg xwv410 * xwv300)",fontsize=16,color="magenta"];564 -> 738[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 564 -> 739[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 565 -> 192[label="",style="dashed", color="red", weight=0]; 31.03/14.61 565[label="compare (xwv40 * Neg xwv3010) (Pos xwv410 * xwv300)",fontsize=16,color="magenta"];565 -> 740[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 565 -> 741[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 566 -> 192[label="",style="dashed", color="red", weight=0]; 31.03/14.61 566[label="compare (xwv40 * Neg xwv3010) (Neg xwv410 * xwv300)",fontsize=16,color="magenta"];566 -> 742[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 566 -> 743[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 567[label="() == ()",fontsize=16,color="black",shape="box"];567 -> 744[label="",style="solid", color="black", weight=3]; 31.03/14.61 568[label="xwv280 : xwv281 == xwv330 : xwv331",fontsize=16,color="black",shape="box"];568 -> 745[label="",style="solid", color="black", weight=3]; 31.03/14.61 569[label="xwv280 : xwv281 == []",fontsize=16,color="black",shape="box"];569 -> 746[label="",style="solid", color="black", weight=3]; 31.03/14.61 570[label="[] == xwv330 : xwv331",fontsize=16,color="black",shape="box"];570 -> 747[label="",style="solid", color="black", weight=3]; 31.03/14.61 571[label="[] == []",fontsize=16,color="black",shape="box"];571 -> 748[label="",style="solid", color="black", weight=3]; 31.03/14.61 572[label="Left xwv280 == Left xwv330",fontsize=16,color="black",shape="box"];572 -> 749[label="",style="solid", color="black", weight=3]; 31.03/14.61 573[label="Left xwv280 == Right xwv330",fontsize=16,color="black",shape="box"];573 -> 750[label="",style="solid", color="black", weight=3]; 31.03/14.61 574[label="Right xwv280 == Left xwv330",fontsize=16,color="black",shape="box"];574 -> 751[label="",style="solid", color="black", weight=3]; 31.03/14.61 575[label="Right xwv280 == Right xwv330",fontsize=16,color="black",shape="box"];575 -> 752[label="",style="solid", color="black", weight=3]; 31.03/14.61 576[label="(xwv280,xwv281) == (xwv330,xwv331)",fontsize=16,color="black",shape="box"];576 -> 753[label="",style="solid", color="black", weight=3]; 31.03/14.61 577[label="Integer xwv280 == Integer xwv330",fontsize=16,color="black",shape="box"];577 -> 754[label="",style="solid", color="black", weight=3]; 31.03/14.61 578[label="primEqDouble (Double xwv280 xwv281) xwv33",fontsize=16,color="burlywood",shape="box"];4028[label="xwv33/Double xwv330 xwv331",fontsize=10,color="white",style="solid",shape="box"];578 -> 4028[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4028 -> 755[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 579[label="False == False",fontsize=16,color="black",shape="box"];579 -> 756[label="",style="solid", color="black", weight=3]; 31.03/14.61 580[label="False == True",fontsize=16,color="black",shape="box"];580 -> 757[label="",style="solid", color="black", weight=3]; 31.03/14.61 581[label="True == False",fontsize=16,color="black",shape="box"];581 -> 758[label="",style="solid", color="black", weight=3]; 31.03/14.61 582[label="True == True",fontsize=16,color="black",shape="box"];582 -> 759[label="",style="solid", color="black", weight=3]; 31.03/14.61 583[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];583 -> 760[label="",style="solid", color="black", weight=3]; 31.03/14.61 584[label="Nothing == Just xwv330",fontsize=16,color="black",shape="box"];584 -> 761[label="",style="solid", color="black", weight=3]; 31.03/14.61 585[label="Just xwv280 == Nothing",fontsize=16,color="black",shape="box"];585 -> 762[label="",style="solid", color="black", weight=3]; 31.03/14.61 586[label="Just xwv280 == Just xwv330",fontsize=16,color="black",shape="box"];586 -> 763[label="",style="solid", color="black", weight=3]; 31.03/14.61 587[label="primEqFloat (Float xwv280 xwv281) xwv33",fontsize=16,color="burlywood",shape="box"];4029[label="xwv33/Float xwv330 xwv331",fontsize=10,color="white",style="solid",shape="box"];587 -> 4029[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4029 -> 764[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 588[label="(xwv280,xwv281,xwv282) == (xwv330,xwv331,xwv332)",fontsize=16,color="black",shape="box"];588 -> 765[label="",style="solid", color="black", weight=3]; 31.03/14.61 589[label="xwv280 :% xwv281 == xwv330 :% xwv331",fontsize=16,color="black",shape="box"];589 -> 766[label="",style="solid", color="black", weight=3]; 31.03/14.61 590[label="LT == LT",fontsize=16,color="black",shape="box"];590 -> 767[label="",style="solid", color="black", weight=3]; 31.03/14.61 591[label="LT == EQ",fontsize=16,color="black",shape="box"];591 -> 768[label="",style="solid", color="black", weight=3]; 31.03/14.61 592[label="LT == GT",fontsize=16,color="black",shape="box"];592 -> 769[label="",style="solid", color="black", weight=3]; 31.03/14.61 593[label="EQ == LT",fontsize=16,color="black",shape="box"];593 -> 770[label="",style="solid", color="black", weight=3]; 31.03/14.61 594[label="EQ == EQ",fontsize=16,color="black",shape="box"];594 -> 771[label="",style="solid", color="black", weight=3]; 31.03/14.61 595[label="EQ == GT",fontsize=16,color="black",shape="box"];595 -> 772[label="",style="solid", color="black", weight=3]; 31.03/14.61 596[label="GT == LT",fontsize=16,color="black",shape="box"];596 -> 773[label="",style="solid", color="black", weight=3]; 31.03/14.61 597[label="GT == EQ",fontsize=16,color="black",shape="box"];597 -> 774[label="",style="solid", color="black", weight=3]; 31.03/14.61 598[label="GT == GT",fontsize=16,color="black",shape="box"];598 -> 775[label="",style="solid", color="black", weight=3]; 31.03/14.61 599[label="primEqChar (Char xwv280) xwv33",fontsize=16,color="burlywood",shape="box"];4030[label="xwv33/Char xwv330",fontsize=10,color="white",style="solid",shape="box"];599 -> 4030[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4030 -> 776[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 600[label="primEqInt (Pos xwv280) xwv33",fontsize=16,color="burlywood",shape="box"];4031[label="xwv280/Succ xwv2800",fontsize=10,color="white",style="solid",shape="box"];600 -> 4031[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4031 -> 777[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4032[label="xwv280/Zero",fontsize=10,color="white",style="solid",shape="box"];600 -> 4032[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4032 -> 778[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 601[label="primEqInt (Neg xwv280) xwv33",fontsize=16,color="burlywood",shape="box"];4033[label="xwv280/Succ xwv2800",fontsize=10,color="white",style="solid",shape="box"];601 -> 4033[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4033 -> 779[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4034[label="xwv280/Zero",fontsize=10,color="white",style="solid",shape="box"];601 -> 4034[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4034 -> 780[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 602[label="FiniteMap.glueBal FiniteMap.EmptyFM xwv52",fontsize=16,color="black",shape="box"];602 -> 781[label="",style="solid", color="black", weight=3]; 31.03/14.61 603[label="FiniteMap.glueBal (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) xwv52",fontsize=16,color="burlywood",shape="box"];4035[label="xwv52/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];603 -> 4035[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4035 -> 782[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4036[label="xwv52/FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524",fontsize=10,color="white",style="solid",shape="box"];603 -> 4036[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4036 -> 783[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 1519 -> 786[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1519[label="FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];1520[label="FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="triangle"];1520 -> 1528[label="",style="solid", color="black", weight=3]; 31.03/14.61 1518[label="primPlusInt xwv162 xwv130",fontsize=16,color="burlywood",shape="triangle"];4037[label="xwv162/Pos xwv1620",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4037[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4037 -> 1529[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4038[label="xwv162/Neg xwv1620",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4038[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4038 -> 1530[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 606 -> 29[label="",style="dashed", color="red", weight=0]; 31.03/14.61 606[label="FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];606 -> 786[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 606 -> 787[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 605[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 xwv109",fontsize=16,color="burlywood",shape="triangle"];4039[label="xwv109/False",fontsize=10,color="white",style="solid",shape="box"];605 -> 4039[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4039 -> 788[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4040[label="xwv109/True",fontsize=10,color="white",style="solid",shape="box"];605 -> 4040[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4040 -> 789[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 607[label="FiniteMap.mkBranchResult xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="triangle"];607 -> 790[label="",style="solid", color="black", weight=3]; 31.03/14.61 608[label="compare1 Nothing (Just xwv300) True",fontsize=16,color="black",shape="box"];608 -> 791[label="",style="solid", color="black", weight=3]; 31.03/14.61 609[label="compare1 (Just xwv40) Nothing False",fontsize=16,color="black",shape="box"];609 -> 792[label="",style="solid", color="black", weight=3]; 31.03/14.61 610 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.61 610[label="xwv40 == xwv300",fontsize=16,color="magenta"];610 -> 793[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 610 -> 794[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 611 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.61 611[label="xwv40 == xwv300",fontsize=16,color="magenta"];611 -> 795[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 611 -> 796[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 612 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.61 612[label="xwv40 == xwv300",fontsize=16,color="magenta"];612 -> 797[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 612 -> 798[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 613 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.61 613[label="xwv40 == xwv300",fontsize=16,color="magenta"];613 -> 799[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 613 -> 800[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 614 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.61 614[label="xwv40 == xwv300",fontsize=16,color="magenta"];614 -> 801[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 614 -> 802[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 615 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.61 615[label="xwv40 == xwv300",fontsize=16,color="magenta"];615 -> 803[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 615 -> 804[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 616 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.61 616[label="xwv40 == xwv300",fontsize=16,color="magenta"];616 -> 805[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 616 -> 806[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 617 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.61 617[label="xwv40 == xwv300",fontsize=16,color="magenta"];617 -> 807[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 617 -> 808[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 618 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.61 618[label="xwv40 == xwv300",fontsize=16,color="magenta"];618 -> 809[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 618 -> 810[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 619 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.61 619[label="xwv40 == xwv300",fontsize=16,color="magenta"];619 -> 811[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 619 -> 812[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 620 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.61 620[label="xwv40 == xwv300",fontsize=16,color="magenta"];620 -> 813[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 620 -> 814[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 621 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.61 621[label="xwv40 == xwv300",fontsize=16,color="magenta"];621 -> 815[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 621 -> 816[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 622 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.61 622[label="xwv40 == xwv300",fontsize=16,color="magenta"];622 -> 817[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 622 -> 818[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 623 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.61 623[label="xwv40 == xwv300",fontsize=16,color="magenta"];623 -> 819[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 623 -> 820[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 624[label="compare2 (Just xwv61) (Just xwv62) False",fontsize=16,color="black",shape="box"];624 -> 821[label="",style="solid", color="black", weight=3]; 31.03/14.61 625[label="compare2 (Just xwv61) (Just xwv62) True",fontsize=16,color="black",shape="box"];625 -> 822[label="",style="solid", color="black", weight=3]; 31.03/14.61 626[label="compare1 False True True",fontsize=16,color="black",shape="box"];626 -> 823[label="",style="solid", color="black", weight=3]; 31.03/14.61 627[label="compare1 True False False",fontsize=16,color="black",shape="box"];627 -> 824[label="",style="solid", color="black", weight=3]; 31.03/14.61 1162[label="xwv40 == xwv300",fontsize=16,color="blue",shape="box"];4041[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4041[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4041 -> 1180[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4042[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4042[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4042 -> 1181[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4043[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4043[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4043 -> 1182[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4044[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4044[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4044 -> 1183[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4045[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4045[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4045 -> 1184[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4046[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4046[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4046 -> 1185[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4047[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4047[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4047 -> 1186[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4048[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4048[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4048 -> 1187[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4049[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4049[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4049 -> 1188[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4050[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4050[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4050 -> 1189[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4051[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4051[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4051 -> 1190[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4052[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4052[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4052 -> 1191[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4053[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4053[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4053 -> 1192[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4054[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4054[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4054 -> 1193[label="",style="solid", color="blue", weight=3]; 31.03/14.61 1163 -> 1161[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1163[label="xwv41 == xwv301 && xwv42 == xwv302",fontsize=16,color="magenta"];1163 -> 1194[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1163 -> 1195[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1161[label="xwv127 && xwv128",fontsize=16,color="burlywood",shape="triangle"];4055[label="xwv127/False",fontsize=10,color="white",style="solid",shape="box"];1161 -> 4055[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4055 -> 1196[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4056[label="xwv127/True",fontsize=10,color="white",style="solid",shape="box"];1161 -> 4056[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4056 -> 1197[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 1118[label="compare2 (xwv72,xwv73,xwv74) (xwv75,xwv76,xwv77) False",fontsize=16,color="black",shape="box"];1118 -> 1198[label="",style="solid", color="black", weight=3]; 31.03/14.61 1119[label="compare2 (xwv72,xwv73,xwv74) (xwv75,xwv76,xwv77) True",fontsize=16,color="black",shape="box"];1119 -> 1199[label="",style="solid", color="black", weight=3]; 31.03/14.61 644 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.61 644[label="xwv40 == xwv300",fontsize=16,color="magenta"];644 -> 855[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 644 -> 856[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 645 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.61 645[label="xwv40 == xwv300",fontsize=16,color="magenta"];645 -> 857[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 645 -> 858[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 646 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.61 646[label="xwv40 == xwv300",fontsize=16,color="magenta"];646 -> 859[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 646 -> 860[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 647 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.61 647[label="xwv40 == xwv300",fontsize=16,color="magenta"];647 -> 861[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 647 -> 862[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 648 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.61 648[label="xwv40 == xwv300",fontsize=16,color="magenta"];648 -> 863[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 648 -> 864[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 649 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.61 649[label="xwv40 == xwv300",fontsize=16,color="magenta"];649 -> 865[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 649 -> 866[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 650 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.61 650[label="xwv40 == xwv300",fontsize=16,color="magenta"];650 -> 867[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 650 -> 868[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 651 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.61 651[label="xwv40 == xwv300",fontsize=16,color="magenta"];651 -> 869[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 651 -> 870[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 652 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.61 652[label="xwv40 == xwv300",fontsize=16,color="magenta"];652 -> 871[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 652 -> 872[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 653 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.61 653[label="xwv40 == xwv300",fontsize=16,color="magenta"];653 -> 873[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 653 -> 874[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 654 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.61 654[label="xwv40 == xwv300",fontsize=16,color="magenta"];654 -> 875[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 654 -> 876[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 655 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.61 655[label="xwv40 == xwv300",fontsize=16,color="magenta"];655 -> 877[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 655 -> 878[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 656 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.61 656[label="xwv40 == xwv300",fontsize=16,color="magenta"];656 -> 879[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 656 -> 880[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 657 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.61 657[label="xwv40 == xwv300",fontsize=16,color="magenta"];657 -> 881[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 657 -> 882[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 658[label="compare2 (Left xwv83) (Left xwv84) False",fontsize=16,color="black",shape="box"];658 -> 883[label="",style="solid", color="black", weight=3]; 31.03/14.61 659[label="compare2 (Left xwv83) (Left xwv84) True",fontsize=16,color="black",shape="box"];659 -> 884[label="",style="solid", color="black", weight=3]; 31.03/14.61 660[label="compare1 (Left xwv40) (Right xwv300) True",fontsize=16,color="black",shape="box"];660 -> 885[label="",style="solid", color="black", weight=3]; 31.03/14.61 661[label="compare1 (Right xwv40) (Left xwv300) False",fontsize=16,color="black",shape="box"];661 -> 886[label="",style="solid", color="black", weight=3]; 31.03/14.61 662 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.61 662[label="xwv40 == xwv300",fontsize=16,color="magenta"];662 -> 887[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 662 -> 888[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 663 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.61 663[label="xwv40 == xwv300",fontsize=16,color="magenta"];663 -> 889[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 663 -> 890[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 664 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.61 664[label="xwv40 == xwv300",fontsize=16,color="magenta"];664 -> 891[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 664 -> 892[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 665 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.61 665[label="xwv40 == xwv300",fontsize=16,color="magenta"];665 -> 893[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 665 -> 894[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 666 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.61 666[label="xwv40 == xwv300",fontsize=16,color="magenta"];666 -> 895[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 666 -> 896[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 667 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.61 667[label="xwv40 == xwv300",fontsize=16,color="magenta"];667 -> 897[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 667 -> 898[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 668 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.61 668[label="xwv40 == xwv300",fontsize=16,color="magenta"];668 -> 899[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 668 -> 900[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 669 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.61 669[label="xwv40 == xwv300",fontsize=16,color="magenta"];669 -> 901[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 669 -> 902[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 670 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.61 670[label="xwv40 == xwv300",fontsize=16,color="magenta"];670 -> 903[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 670 -> 904[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 671 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.61 671[label="xwv40 == xwv300",fontsize=16,color="magenta"];671 -> 905[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 671 -> 906[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 672 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.61 672[label="xwv40 == xwv300",fontsize=16,color="magenta"];672 -> 907[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 672 -> 908[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 673 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.61 673[label="xwv40 == xwv300",fontsize=16,color="magenta"];673 -> 909[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 673 -> 910[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 674 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.61 674[label="xwv40 == xwv300",fontsize=16,color="magenta"];674 -> 911[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 674 -> 912[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 675 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.61 675[label="xwv40 == xwv300",fontsize=16,color="magenta"];675 -> 913[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 675 -> 914[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 676[label="compare2 (Right xwv90) (Right xwv91) False",fontsize=16,color="black",shape="box"];676 -> 915[label="",style="solid", color="black", weight=3]; 31.03/14.61 677[label="compare2 (Right xwv90) (Right xwv91) True",fontsize=16,color="black",shape="box"];677 -> 916[label="",style="solid", color="black", weight=3]; 31.03/14.61 678[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];678 -> 917[label="",style="solid", color="black", weight=3]; 31.03/14.61 679[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];679 -> 918[label="",style="solid", color="black", weight=3]; 31.03/14.61 680[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];680 -> 919[label="",style="solid", color="black", weight=3]; 31.03/14.61 681[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];681 -> 920[label="",style="solid", color="black", weight=3]; 31.03/14.61 682[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];682 -> 921[label="",style="solid", color="black", weight=3]; 31.03/14.61 683[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];683 -> 922[label="",style="solid", color="black", weight=3]; 31.03/14.61 684[label="Integer xwv400 * Integer xwv3010",fontsize=16,color="black",shape="box"];684 -> 923[label="",style="solid", color="black", weight=3]; 31.03/14.61 685[label="primMulInt (Pos xwv400) xwv301",fontsize=16,color="burlywood",shape="box"];4057[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];685 -> 4057[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4057 -> 924[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4058[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];685 -> 4058[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4058 -> 925[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 686[label="primMulInt (Neg xwv400) xwv301",fontsize=16,color="burlywood",shape="box"];4059[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];686 -> 4059[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4059 -> 926[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4060[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];686 -> 4060[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4060 -> 927[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 1164[label="xwv40 == xwv300",fontsize=16,color="blue",shape="box"];4061[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4061[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4061 -> 1200[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4062[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4062[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4062 -> 1201[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4063[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4063[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4063 -> 1202[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4064[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4064[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4064 -> 1203[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4065[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4065[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4065 -> 1204[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4066[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4066[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4066 -> 1205[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4067[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4067[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4067 -> 1206[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4068[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4068[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4068 -> 1207[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4069[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4069[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4069 -> 1208[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4070[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4070[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4070 -> 1209[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4071[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4071[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4071 -> 1210[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4072[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4072[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4072 -> 1211[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4073[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4073[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4073 -> 1212[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4074[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4074[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4074 -> 1213[label="",style="solid", color="blue", weight=3]; 31.03/14.61 1165[label="xwv41 == xwv301",fontsize=16,color="blue",shape="box"];4075[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1165 -> 4075[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4075 -> 1214[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4076[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1165 -> 4076[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4076 -> 1215[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4077[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1165 -> 4077[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4077 -> 1216[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4078[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1165 -> 4078[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4078 -> 1217[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4079[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1165 -> 4079[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4079 -> 1218[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4080[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1165 -> 4080[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4080 -> 1219[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4081[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1165 -> 4081[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4081 -> 1220[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4082[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1165 -> 4082[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4082 -> 1221[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4083[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1165 -> 4083[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4083 -> 1222[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4084[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1165 -> 4084[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4084 -> 1223[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4085[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1165 -> 4085[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4085 -> 1224[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4086[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1165 -> 4086[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4086 -> 1225[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4087[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1165 -> 4087[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4087 -> 1226[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4088[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1165 -> 4088[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4088 -> 1227[label="",style="solid", color="blue", weight=3]; 31.03/14.61 1156[label="compare2 (xwv119,xwv120) (xwv121,xwv122) False",fontsize=16,color="black",shape="box"];1156 -> 1228[label="",style="solid", color="black", weight=3]; 31.03/14.61 1157[label="compare2 (xwv119,xwv120) (xwv121,xwv122) True",fontsize=16,color="black",shape="box"];1157 -> 1229[label="",style="solid", color="black", weight=3]; 31.03/14.61 703 -> 342[label="",style="dashed", color="red", weight=0]; 31.03/14.61 703[label="primCmpNat xwv400 xwv3000",fontsize=16,color="magenta"];703 -> 958[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 703 -> 959[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 704[label="GT",fontsize=16,color="green",shape="box"];705[label="LT",fontsize=16,color="green",shape="box"];706[label="EQ",fontsize=16,color="green",shape="box"];707[label="Succ xwv3000",fontsize=16,color="green",shape="box"];708[label="Zero",fontsize=16,color="green",shape="box"];709[label="Zero",fontsize=16,color="green",shape="box"];710[label="Succ xwv3000",fontsize=16,color="green",shape="box"];711 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.61 711[label="xwv40 * Pos xwv3010",fontsize=16,color="magenta"];711 -> 960[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 711 -> 961[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 712 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.61 712[label="Pos xwv410 * xwv300",fontsize=16,color="magenta"];712 -> 962[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 712 -> 963[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 713 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.61 713[label="xwv40 * Pos xwv3010",fontsize=16,color="magenta"];713 -> 964[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 713 -> 965[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 714 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.61 714[label="Neg xwv410 * xwv300",fontsize=16,color="magenta"];714 -> 966[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 714 -> 967[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 715 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.61 715[label="xwv40 * Neg xwv3010",fontsize=16,color="magenta"];715 -> 968[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 715 -> 969[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 716 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.61 716[label="Pos xwv410 * xwv300",fontsize=16,color="magenta"];716 -> 970[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 716 -> 971[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 717 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.61 717[label="xwv40 * Neg xwv3010",fontsize=16,color="magenta"];717 -> 972[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 717 -> 973[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 718 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.61 718[label="Neg xwv410 * xwv300",fontsize=16,color="magenta"];718 -> 974[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 718 -> 975[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 719 -> 183[label="",style="dashed", color="red", weight=0]; 31.03/14.61 719[label="compare xwv40 xwv300",fontsize=16,color="magenta"];719 -> 976[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 719 -> 977[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 720 -> 184[label="",style="dashed", color="red", weight=0]; 31.03/14.61 720[label="compare xwv40 xwv300",fontsize=16,color="magenta"];720 -> 978[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 720 -> 979[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 721 -> 185[label="",style="dashed", color="red", weight=0]; 31.03/14.61 721[label="compare xwv40 xwv300",fontsize=16,color="magenta"];721 -> 980[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 721 -> 981[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 722 -> 186[label="",style="dashed", color="red", weight=0]; 31.03/14.61 722[label="compare xwv40 xwv300",fontsize=16,color="magenta"];722 -> 982[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 722 -> 983[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 723 -> 187[label="",style="dashed", color="red", weight=0]; 31.03/14.61 723[label="compare xwv40 xwv300",fontsize=16,color="magenta"];723 -> 984[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 723 -> 985[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 724 -> 188[label="",style="dashed", color="red", weight=0]; 31.03/14.61 724[label="compare xwv40 xwv300",fontsize=16,color="magenta"];724 -> 986[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 724 -> 987[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 725 -> 189[label="",style="dashed", color="red", weight=0]; 31.03/14.61 725[label="compare xwv40 xwv300",fontsize=16,color="magenta"];725 -> 988[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 725 -> 989[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 726 -> 190[label="",style="dashed", color="red", weight=0]; 31.03/14.61 726[label="compare xwv40 xwv300",fontsize=16,color="magenta"];726 -> 990[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 726 -> 991[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 727 -> 191[label="",style="dashed", color="red", weight=0]; 31.03/14.61 727[label="compare xwv40 xwv300",fontsize=16,color="magenta"];727 -> 992[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 727 -> 993[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 728 -> 192[label="",style="dashed", color="red", weight=0]; 31.03/14.61 728[label="compare xwv40 xwv300",fontsize=16,color="magenta"];728 -> 994[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 728 -> 995[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 729 -> 193[label="",style="dashed", color="red", weight=0]; 31.03/14.61 729[label="compare xwv40 xwv300",fontsize=16,color="magenta"];729 -> 996[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 729 -> 997[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 730 -> 194[label="",style="dashed", color="red", weight=0]; 31.03/14.61 730[label="compare xwv40 xwv300",fontsize=16,color="magenta"];730 -> 998[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 730 -> 999[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 731 -> 195[label="",style="dashed", color="red", weight=0]; 31.03/14.61 731[label="compare xwv40 xwv300",fontsize=16,color="magenta"];731 -> 1000[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 731 -> 1001[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 732 -> 196[label="",style="dashed", color="red", weight=0]; 31.03/14.61 732[label="compare xwv40 xwv300",fontsize=16,color="magenta"];732 -> 1002[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 732 -> 1003[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 733[label="primCompAux0 xwv107 LT",fontsize=16,color="black",shape="box"];733 -> 1004[label="",style="solid", color="black", weight=3]; 31.03/14.61 734[label="primCompAux0 xwv107 EQ",fontsize=16,color="black",shape="box"];734 -> 1005[label="",style="solid", color="black", weight=3]; 31.03/14.61 735[label="primCompAux0 xwv107 GT",fontsize=16,color="black",shape="box"];735 -> 1006[label="",style="solid", color="black", weight=3]; 31.03/14.61 736 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.61 736[label="xwv40 * Pos xwv3010",fontsize=16,color="magenta"];736 -> 1007[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 736 -> 1008[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 737 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.61 737[label="Pos xwv410 * xwv300",fontsize=16,color="magenta"];737 -> 1009[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 737 -> 1010[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 738 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.61 738[label="xwv40 * Pos xwv3010",fontsize=16,color="magenta"];738 -> 1011[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 738 -> 1012[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 739 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.61 739[label="Neg xwv410 * xwv300",fontsize=16,color="magenta"];739 -> 1013[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 739 -> 1014[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 740 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.61 740[label="xwv40 * Neg xwv3010",fontsize=16,color="magenta"];740 -> 1015[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 740 -> 1016[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 741 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.61 741[label="Pos xwv410 * xwv300",fontsize=16,color="magenta"];741 -> 1017[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 741 -> 1018[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 742 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.61 742[label="xwv40 * Neg xwv3010",fontsize=16,color="magenta"];742 -> 1019[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 742 -> 1020[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 743 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.61 743[label="Neg xwv410 * xwv300",fontsize=16,color="magenta"];743 -> 1021[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 743 -> 1022[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 744[label="True",fontsize=16,color="green",shape="box"];745 -> 1161[label="",style="dashed", color="red", weight=0]; 31.03/14.61 745[label="xwv280 == xwv330 && xwv281 == xwv331",fontsize=16,color="magenta"];745 -> 1170[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 745 -> 1171[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 746[label="False",fontsize=16,color="green",shape="box"];747[label="False",fontsize=16,color="green",shape="box"];748[label="True",fontsize=16,color="green",shape="box"];749[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4089[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 4089[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4089 -> 1034[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4090[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 4090[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4090 -> 1035[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4091[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 4091[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4091 -> 1036[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4092[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 4092[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4092 -> 1037[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4093[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 4093[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4093 -> 1038[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4094[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 4094[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4094 -> 1039[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4095[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 4095[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4095 -> 1040[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4096[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 4096[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4096 -> 1041[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4097[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 4097[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4097 -> 1042[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4098[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 4098[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4098 -> 1043[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4099[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 4099[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4099 -> 1044[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4100[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 4100[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4100 -> 1045[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4101[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 4101[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4101 -> 1046[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4102[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 4102[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4102 -> 1047[label="",style="solid", color="blue", weight=3]; 31.03/14.61 750[label="False",fontsize=16,color="green",shape="box"];751[label="False",fontsize=16,color="green",shape="box"];752[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4103[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 4103[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4103 -> 1048[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4104[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 4104[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4104 -> 1049[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4105[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 4105[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4105 -> 1050[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4106[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 4106[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4106 -> 1051[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4107[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 4107[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4107 -> 1052[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4108[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 4108[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4108 -> 1053[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4109[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 4109[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4109 -> 1054[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4110[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 4110[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4110 -> 1055[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4111[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 4111[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4111 -> 1056[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4112[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 4112[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4112 -> 1057[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4113[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 4113[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4113 -> 1058[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4114[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 4114[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4114 -> 1059[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4115[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 4115[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4115 -> 1060[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4116[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];752 -> 4116[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4116 -> 1061[label="",style="solid", color="blue", weight=3]; 31.03/14.61 753 -> 1161[label="",style="dashed", color="red", weight=0]; 31.03/14.61 753[label="xwv280 == xwv330 && xwv281 == xwv331",fontsize=16,color="magenta"];753 -> 1172[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 753 -> 1173[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 754 -> 484[label="",style="dashed", color="red", weight=0]; 31.03/14.61 754[label="primEqInt xwv280 xwv330",fontsize=16,color="magenta"];754 -> 1062[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 754 -> 1063[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 755[label="primEqDouble (Double xwv280 xwv281) (Double xwv330 xwv331)",fontsize=16,color="black",shape="box"];755 -> 1064[label="",style="solid", color="black", weight=3]; 31.03/14.61 756[label="True",fontsize=16,color="green",shape="box"];757[label="False",fontsize=16,color="green",shape="box"];758[label="False",fontsize=16,color="green",shape="box"];759[label="True",fontsize=16,color="green",shape="box"];760[label="True",fontsize=16,color="green",shape="box"];761[label="False",fontsize=16,color="green",shape="box"];762[label="False",fontsize=16,color="green",shape="box"];763[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4117[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];763 -> 4117[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4117 -> 1065[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4118[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];763 -> 4118[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4118 -> 1066[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4119[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];763 -> 4119[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4119 -> 1067[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4120[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];763 -> 4120[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4120 -> 1068[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4121[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];763 -> 4121[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4121 -> 1069[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4122[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];763 -> 4122[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4122 -> 1070[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4123[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];763 -> 4123[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4123 -> 1071[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4124[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];763 -> 4124[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4124 -> 1072[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4125[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];763 -> 4125[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4125 -> 1073[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4126[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];763 -> 4126[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4126 -> 1074[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4127[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];763 -> 4127[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4127 -> 1075[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4128[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];763 -> 4128[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4128 -> 1076[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4129[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];763 -> 4129[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4129 -> 1077[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4130[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];763 -> 4130[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4130 -> 1078[label="",style="solid", color="blue", weight=3]; 31.03/14.61 764[label="primEqFloat (Float xwv280 xwv281) (Float xwv330 xwv331)",fontsize=16,color="black",shape="box"];764 -> 1079[label="",style="solid", color="black", weight=3]; 31.03/14.61 765 -> 1161[label="",style="dashed", color="red", weight=0]; 31.03/14.61 765[label="xwv280 == xwv330 && xwv281 == xwv331 && xwv282 == xwv332",fontsize=16,color="magenta"];765 -> 1174[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 765 -> 1175[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 766 -> 1161[label="",style="dashed", color="red", weight=0]; 31.03/14.61 766[label="xwv280 == xwv330 && xwv281 == xwv331",fontsize=16,color="magenta"];766 -> 1176[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 766 -> 1177[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 767[label="True",fontsize=16,color="green",shape="box"];768[label="False",fontsize=16,color="green",shape="box"];769[label="False",fontsize=16,color="green",shape="box"];770[label="False",fontsize=16,color="green",shape="box"];771[label="True",fontsize=16,color="green",shape="box"];772[label="False",fontsize=16,color="green",shape="box"];773[label="False",fontsize=16,color="green",shape="box"];774[label="False",fontsize=16,color="green",shape="box"];775[label="True",fontsize=16,color="green",shape="box"];776[label="primEqChar (Char xwv280) (Char xwv330)",fontsize=16,color="black",shape="box"];776 -> 1080[label="",style="solid", color="black", weight=3]; 31.03/14.61 777[label="primEqInt (Pos (Succ xwv2800)) xwv33",fontsize=16,color="burlywood",shape="box"];4131[label="xwv33/Pos xwv330",fontsize=10,color="white",style="solid",shape="box"];777 -> 4131[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4131 -> 1081[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4132[label="xwv33/Neg xwv330",fontsize=10,color="white",style="solid",shape="box"];777 -> 4132[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4132 -> 1082[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 778[label="primEqInt (Pos Zero) xwv33",fontsize=16,color="burlywood",shape="box"];4133[label="xwv33/Pos xwv330",fontsize=10,color="white",style="solid",shape="box"];778 -> 4133[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4133 -> 1083[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4134[label="xwv33/Neg xwv330",fontsize=10,color="white",style="solid",shape="box"];778 -> 4134[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4134 -> 1084[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 779[label="primEqInt (Neg (Succ xwv2800)) xwv33",fontsize=16,color="burlywood",shape="box"];4135[label="xwv33/Pos xwv330",fontsize=10,color="white",style="solid",shape="box"];779 -> 4135[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4135 -> 1085[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4136[label="xwv33/Neg xwv330",fontsize=10,color="white",style="solid",shape="box"];779 -> 4136[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4136 -> 1086[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 780[label="primEqInt (Neg Zero) xwv33",fontsize=16,color="burlywood",shape="box"];4137[label="xwv33/Pos xwv330",fontsize=10,color="white",style="solid",shape="box"];780 -> 4137[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4137 -> 1087[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4138[label="xwv33/Neg xwv330",fontsize=10,color="white",style="solid",shape="box"];780 -> 4138[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4138 -> 1088[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 781[label="FiniteMap.glueBal4 FiniteMap.EmptyFM xwv52",fontsize=16,color="black",shape="box"];781 -> 1089[label="",style="solid", color="black", weight=3]; 31.03/14.61 782[label="FiniteMap.glueBal (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];782 -> 1090[label="",style="solid", color="black", weight=3]; 31.03/14.61 783[label="FiniteMap.glueBal (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="black",shape="box"];783 -> 1091[label="",style="solid", color="black", weight=3]; 31.03/14.61 786[label="FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="triangle"];786 -> 1094[label="",style="solid", color="black", weight=3]; 31.03/14.61 1528 -> 1094[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1528[label="FiniteMap.sizeFM xwv16",fontsize=16,color="magenta"];1528 -> 1536[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1529[label="primPlusInt (Pos xwv1620) xwv130",fontsize=16,color="burlywood",shape="box"];4139[label="xwv130/Pos xwv1300",fontsize=10,color="white",style="solid",shape="box"];1529 -> 4139[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4139 -> 1537[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4140[label="xwv130/Neg xwv1300",fontsize=10,color="white",style="solid",shape="box"];1529 -> 4140[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4140 -> 1538[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 1530[label="primPlusInt (Neg xwv1620) xwv130",fontsize=16,color="burlywood",shape="box"];4141[label="xwv130/Pos xwv1300",fontsize=10,color="white",style="solid",shape="box"];1530 -> 4141[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4141 -> 1539[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4142[label="xwv130/Neg xwv1300",fontsize=10,color="white",style="solid",shape="box"];1530 -> 4142[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4142 -> 1540[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 787 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.61 787[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];787 -> 1095[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 787 -> 1096[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 788[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 False",fontsize=16,color="black",shape="box"];788 -> 1097[label="",style="solid", color="black", weight=3]; 31.03/14.61 789[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 True",fontsize=16,color="black",shape="box"];789 -> 1098[label="",style="solid", color="black", weight=3]; 31.03/14.61 790[label="FiniteMap.Branch xwv13 xwv14 (FiniteMap.mkBranchUnbox xwv16 xwv35 xwv13 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv35 xwv13 + FiniteMap.mkBranchRight_size xwv16 xwv35 xwv13)) xwv16 xwv35",fontsize=16,color="green",shape="box"];790 -> 1099[label="",style="dashed", color="green", weight=3]; 31.03/14.61 791[label="LT",fontsize=16,color="green",shape="box"];792[label="compare0 (Just xwv40) Nothing otherwise",fontsize=16,color="black",shape="box"];792 -> 1100[label="",style="solid", color="black", weight=3]; 31.03/14.61 793[label="xwv40",fontsize=16,color="green",shape="box"];794[label="xwv300",fontsize=16,color="green",shape="box"];795[label="xwv40",fontsize=16,color="green",shape="box"];796[label="xwv300",fontsize=16,color="green",shape="box"];797[label="xwv40",fontsize=16,color="green",shape="box"];798[label="xwv300",fontsize=16,color="green",shape="box"];799[label="xwv40",fontsize=16,color="green",shape="box"];800[label="xwv300",fontsize=16,color="green",shape="box"];801[label="xwv40",fontsize=16,color="green",shape="box"];802[label="xwv300",fontsize=16,color="green",shape="box"];803[label="xwv40",fontsize=16,color="green",shape="box"];804[label="xwv300",fontsize=16,color="green",shape="box"];805[label="xwv40",fontsize=16,color="green",shape="box"];806[label="xwv300",fontsize=16,color="green",shape="box"];807[label="xwv40",fontsize=16,color="green",shape="box"];808[label="xwv300",fontsize=16,color="green",shape="box"];809[label="xwv40",fontsize=16,color="green",shape="box"];810[label="xwv300",fontsize=16,color="green",shape="box"];811[label="xwv40",fontsize=16,color="green",shape="box"];812[label="xwv300",fontsize=16,color="green",shape="box"];813[label="xwv40",fontsize=16,color="green",shape="box"];814[label="xwv300",fontsize=16,color="green",shape="box"];815[label="xwv40",fontsize=16,color="green",shape="box"];816[label="xwv300",fontsize=16,color="green",shape="box"];817[label="xwv40",fontsize=16,color="green",shape="box"];818[label="xwv300",fontsize=16,color="green",shape="box"];819[label="xwv40",fontsize=16,color="green",shape="box"];820[label="xwv300",fontsize=16,color="green",shape="box"];821 -> 1545[label="",style="dashed", color="red", weight=0]; 31.03/14.61 821[label="compare1 (Just xwv61) (Just xwv62) (Just xwv61 <= Just xwv62)",fontsize=16,color="magenta"];821 -> 1546[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 821 -> 1547[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 821 -> 1548[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 822[label="EQ",fontsize=16,color="green",shape="box"];823[label="LT",fontsize=16,color="green",shape="box"];824[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];824 -> 1102[label="",style="solid", color="black", weight=3]; 31.03/14.61 1180 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1180[label="xwv40 == xwv300",fontsize=16,color="magenta"];1180 -> 1402[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1180 -> 1403[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1181 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1181[label="xwv40 == xwv300",fontsize=16,color="magenta"];1181 -> 1404[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1181 -> 1405[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1182 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1182[label="xwv40 == xwv300",fontsize=16,color="magenta"];1182 -> 1406[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1182 -> 1407[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1183 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1183[label="xwv40 == xwv300",fontsize=16,color="magenta"];1183 -> 1408[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1183 -> 1409[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1184 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1184[label="xwv40 == xwv300",fontsize=16,color="magenta"];1184 -> 1410[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1184 -> 1411[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1185 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1185[label="xwv40 == xwv300",fontsize=16,color="magenta"];1185 -> 1412[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1185 -> 1413[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1186 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1186[label="xwv40 == xwv300",fontsize=16,color="magenta"];1186 -> 1414[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1186 -> 1415[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1187 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1187[label="xwv40 == xwv300",fontsize=16,color="magenta"];1187 -> 1416[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1187 -> 1417[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1188 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1188[label="xwv40 == xwv300",fontsize=16,color="magenta"];1188 -> 1418[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1188 -> 1419[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1189 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1189[label="xwv40 == xwv300",fontsize=16,color="magenta"];1189 -> 1420[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1189 -> 1421[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1190 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1190[label="xwv40 == xwv300",fontsize=16,color="magenta"];1190 -> 1422[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1190 -> 1423[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1191 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1191[label="xwv40 == xwv300",fontsize=16,color="magenta"];1191 -> 1424[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1191 -> 1425[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1192 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1192[label="xwv40 == xwv300",fontsize=16,color="magenta"];1192 -> 1426[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1192 -> 1427[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1193 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1193[label="xwv40 == xwv300",fontsize=16,color="magenta"];1193 -> 1428[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1193 -> 1429[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1194[label="xwv41 == xwv301",fontsize=16,color="blue",shape="box"];4143[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 4143[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4143 -> 1430[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4144[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 4144[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4144 -> 1431[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4145[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 4145[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4145 -> 1432[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4146[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 4146[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4146 -> 1433[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4147[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 4147[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4147 -> 1434[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4148[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 4148[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4148 -> 1435[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4149[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 4149[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4149 -> 1436[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4150[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 4150[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4150 -> 1437[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4151[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 4151[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4151 -> 1438[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4152[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 4152[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4152 -> 1439[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4153[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 4153[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4153 -> 1440[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4154[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 4154[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4154 -> 1441[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4155[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 4155[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4155 -> 1442[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4156[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 4156[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4156 -> 1443[label="",style="solid", color="blue", weight=3]; 31.03/14.61 1195[label="xwv42 == xwv302",fontsize=16,color="blue",shape="box"];4157[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4157[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4157 -> 1444[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4158[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4158[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4158 -> 1445[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4159[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4159[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4159 -> 1446[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4160[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4160[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4160 -> 1447[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4161[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4161[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4161 -> 1448[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4162[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4162[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4162 -> 1449[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4163[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4163[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4163 -> 1450[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4164[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4164[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4164 -> 1451[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4165[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4165[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4165 -> 1452[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4166[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4166[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4166 -> 1453[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4167[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4167[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4167 -> 1454[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4168[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4168[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4168 -> 1455[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4169[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4169[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4169 -> 1456[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4170[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 4170[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4170 -> 1457[label="",style="solid", color="blue", weight=3]; 31.03/14.61 1196[label="False && xwv128",fontsize=16,color="black",shape="box"];1196 -> 1458[label="",style="solid", color="black", weight=3]; 31.03/14.61 1197[label="True && xwv128",fontsize=16,color="black",shape="box"];1197 -> 1459[label="",style="solid", color="black", weight=3]; 31.03/14.61 1198[label="compare1 (xwv72,xwv73,xwv74) (xwv75,xwv76,xwv77) ((xwv72,xwv73,xwv74) <= (xwv75,xwv76,xwv77))",fontsize=16,color="black",shape="box"];1198 -> 1460[label="",style="solid", color="black", weight=3]; 31.03/14.61 1199[label="EQ",fontsize=16,color="green",shape="box"];855[label="xwv40",fontsize=16,color="green",shape="box"];856[label="xwv300",fontsize=16,color="green",shape="box"];857[label="xwv40",fontsize=16,color="green",shape="box"];858[label="xwv300",fontsize=16,color="green",shape="box"];859[label="xwv40",fontsize=16,color="green",shape="box"];860[label="xwv300",fontsize=16,color="green",shape="box"];861[label="xwv40",fontsize=16,color="green",shape="box"];862[label="xwv300",fontsize=16,color="green",shape="box"];863[label="xwv40",fontsize=16,color="green",shape="box"];864[label="xwv300",fontsize=16,color="green",shape="box"];865[label="xwv40",fontsize=16,color="green",shape="box"];866[label="xwv300",fontsize=16,color="green",shape="box"];867[label="xwv40",fontsize=16,color="green",shape="box"];868[label="xwv300",fontsize=16,color="green",shape="box"];869[label="xwv40",fontsize=16,color="green",shape="box"];870[label="xwv300",fontsize=16,color="green",shape="box"];871[label="xwv40",fontsize=16,color="green",shape="box"];872[label="xwv300",fontsize=16,color="green",shape="box"];873[label="xwv40",fontsize=16,color="green",shape="box"];874[label="xwv300",fontsize=16,color="green",shape="box"];875[label="xwv40",fontsize=16,color="green",shape="box"];876[label="xwv300",fontsize=16,color="green",shape="box"];877[label="xwv40",fontsize=16,color="green",shape="box"];878[label="xwv300",fontsize=16,color="green",shape="box"];879[label="xwv40",fontsize=16,color="green",shape="box"];880[label="xwv300",fontsize=16,color="green",shape="box"];881[label="xwv40",fontsize=16,color="green",shape="box"];882[label="xwv300",fontsize=16,color="green",shape="box"];883 -> 1618[label="",style="dashed", color="red", weight=0]; 31.03/14.61 883[label="compare1 (Left xwv83) (Left xwv84) (Left xwv83 <= Left xwv84)",fontsize=16,color="magenta"];883 -> 1619[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 883 -> 1620[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 883 -> 1621[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 884[label="EQ",fontsize=16,color="green",shape="box"];885[label="LT",fontsize=16,color="green",shape="box"];886[label="compare0 (Right xwv40) (Left xwv300) otherwise",fontsize=16,color="black",shape="box"];886 -> 1121[label="",style="solid", color="black", weight=3]; 31.03/14.61 887[label="xwv40",fontsize=16,color="green",shape="box"];888[label="xwv300",fontsize=16,color="green",shape="box"];889[label="xwv40",fontsize=16,color="green",shape="box"];890[label="xwv300",fontsize=16,color="green",shape="box"];891[label="xwv40",fontsize=16,color="green",shape="box"];892[label="xwv300",fontsize=16,color="green",shape="box"];893[label="xwv40",fontsize=16,color="green",shape="box"];894[label="xwv300",fontsize=16,color="green",shape="box"];895[label="xwv40",fontsize=16,color="green",shape="box"];896[label="xwv300",fontsize=16,color="green",shape="box"];897[label="xwv40",fontsize=16,color="green",shape="box"];898[label="xwv300",fontsize=16,color="green",shape="box"];899[label="xwv40",fontsize=16,color="green",shape="box"];900[label="xwv300",fontsize=16,color="green",shape="box"];901[label="xwv40",fontsize=16,color="green",shape="box"];902[label="xwv300",fontsize=16,color="green",shape="box"];903[label="xwv40",fontsize=16,color="green",shape="box"];904[label="xwv300",fontsize=16,color="green",shape="box"];905[label="xwv40",fontsize=16,color="green",shape="box"];906[label="xwv300",fontsize=16,color="green",shape="box"];907[label="xwv40",fontsize=16,color="green",shape="box"];908[label="xwv300",fontsize=16,color="green",shape="box"];909[label="xwv40",fontsize=16,color="green",shape="box"];910[label="xwv300",fontsize=16,color="green",shape="box"];911[label="xwv40",fontsize=16,color="green",shape="box"];912[label="xwv300",fontsize=16,color="green",shape="box"];913[label="xwv40",fontsize=16,color="green",shape="box"];914[label="xwv300",fontsize=16,color="green",shape="box"];915 -> 1629[label="",style="dashed", color="red", weight=0]; 31.03/14.61 915[label="compare1 (Right xwv90) (Right xwv91) (Right xwv90 <= Right xwv91)",fontsize=16,color="magenta"];915 -> 1630[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 915 -> 1631[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 915 -> 1632[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 916[label="EQ",fontsize=16,color="green",shape="box"];917[label="LT",fontsize=16,color="green",shape="box"];918[label="LT",fontsize=16,color="green",shape="box"];919[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];919 -> 1123[label="",style="solid", color="black", weight=3]; 31.03/14.61 920[label="LT",fontsize=16,color="green",shape="box"];921[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];921 -> 1124[label="",style="solid", color="black", weight=3]; 31.03/14.61 922[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];922 -> 1125[label="",style="solid", color="black", weight=3]; 31.03/14.61 923[label="Integer (primMulInt xwv400 xwv3010)",fontsize=16,color="green",shape="box"];923 -> 1126[label="",style="dashed", color="green", weight=3]; 31.03/14.61 924[label="primMulInt (Pos xwv400) (Pos xwv3010)",fontsize=16,color="black",shape="box"];924 -> 1127[label="",style="solid", color="black", weight=3]; 31.03/14.61 925[label="primMulInt (Pos xwv400) (Neg xwv3010)",fontsize=16,color="black",shape="box"];925 -> 1128[label="",style="solid", color="black", weight=3]; 31.03/14.61 926[label="primMulInt (Neg xwv400) (Pos xwv3010)",fontsize=16,color="black",shape="box"];926 -> 1129[label="",style="solid", color="black", weight=3]; 31.03/14.61 927[label="primMulInt (Neg xwv400) (Neg xwv3010)",fontsize=16,color="black",shape="box"];927 -> 1130[label="",style="solid", color="black", weight=3]; 31.03/14.61 1200 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1200[label="xwv40 == xwv300",fontsize=16,color="magenta"];1200 -> 1461[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1200 -> 1462[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1201 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1201[label="xwv40 == xwv300",fontsize=16,color="magenta"];1201 -> 1463[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1201 -> 1464[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1202 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1202[label="xwv40 == xwv300",fontsize=16,color="magenta"];1202 -> 1465[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1202 -> 1466[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1203 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1203[label="xwv40 == xwv300",fontsize=16,color="magenta"];1203 -> 1467[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1203 -> 1468[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1204 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1204[label="xwv40 == xwv300",fontsize=16,color="magenta"];1204 -> 1469[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1204 -> 1470[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1205 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1205[label="xwv40 == xwv300",fontsize=16,color="magenta"];1205 -> 1471[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1205 -> 1472[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1206 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1206[label="xwv40 == xwv300",fontsize=16,color="magenta"];1206 -> 1473[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1206 -> 1474[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1207 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1207[label="xwv40 == xwv300",fontsize=16,color="magenta"];1207 -> 1475[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1207 -> 1476[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1208 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1208[label="xwv40 == xwv300",fontsize=16,color="magenta"];1208 -> 1477[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1208 -> 1478[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1209 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1209[label="xwv40 == xwv300",fontsize=16,color="magenta"];1209 -> 1479[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1209 -> 1480[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1210 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1210[label="xwv40 == xwv300",fontsize=16,color="magenta"];1210 -> 1481[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1210 -> 1482[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1211 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1211[label="xwv40 == xwv300",fontsize=16,color="magenta"];1211 -> 1483[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1211 -> 1484[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1212 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1212[label="xwv40 == xwv300",fontsize=16,color="magenta"];1212 -> 1485[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1212 -> 1486[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1213 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1213[label="xwv40 == xwv300",fontsize=16,color="magenta"];1213 -> 1487[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1213 -> 1488[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1214 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1214[label="xwv41 == xwv301",fontsize=16,color="magenta"];1214 -> 1489[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1214 -> 1490[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1215 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1215[label="xwv41 == xwv301",fontsize=16,color="magenta"];1215 -> 1491[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1215 -> 1492[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1216 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1216[label="xwv41 == xwv301",fontsize=16,color="magenta"];1216 -> 1493[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1216 -> 1494[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1217 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1217[label="xwv41 == xwv301",fontsize=16,color="magenta"];1217 -> 1495[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1217 -> 1496[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1218 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1218[label="xwv41 == xwv301",fontsize=16,color="magenta"];1218 -> 1497[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1218 -> 1498[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1219 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1219[label="xwv41 == xwv301",fontsize=16,color="magenta"];1219 -> 1499[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1219 -> 1500[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1220 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1220[label="xwv41 == xwv301",fontsize=16,color="magenta"];1220 -> 1501[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1220 -> 1502[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1221 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1221[label="xwv41 == xwv301",fontsize=16,color="magenta"];1221 -> 1503[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1221 -> 1504[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1222 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1222[label="xwv41 == xwv301",fontsize=16,color="magenta"];1222 -> 1505[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1222 -> 1506[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1223 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1223[label="xwv41 == xwv301",fontsize=16,color="magenta"];1223 -> 1507[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1223 -> 1508[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1224 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1224[label="xwv41 == xwv301",fontsize=16,color="magenta"];1224 -> 1509[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1224 -> 1510[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1225 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1225[label="xwv41 == xwv301",fontsize=16,color="magenta"];1225 -> 1511[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1225 -> 1512[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1226 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1226[label="xwv41 == xwv301",fontsize=16,color="magenta"];1226 -> 1513[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1226 -> 1514[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1227 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1227[label="xwv41 == xwv301",fontsize=16,color="magenta"];1227 -> 1515[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1227 -> 1516[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1228[label="compare1 (xwv119,xwv120) (xwv121,xwv122) ((xwv119,xwv120) <= (xwv121,xwv122))",fontsize=16,color="black",shape="box"];1228 -> 1517[label="",style="solid", color="black", weight=3]; 31.03/14.61 1229[label="EQ",fontsize=16,color="green",shape="box"];958[label="xwv3000",fontsize=16,color="green",shape="box"];959[label="xwv400",fontsize=16,color="green",shape="box"];960[label="xwv40",fontsize=16,color="green",shape="box"];961[label="Pos xwv3010",fontsize=16,color="green",shape="box"];962[label="Pos xwv410",fontsize=16,color="green",shape="box"];963[label="xwv300",fontsize=16,color="green",shape="box"];964[label="xwv40",fontsize=16,color="green",shape="box"];965[label="Pos xwv3010",fontsize=16,color="green",shape="box"];966[label="Neg xwv410",fontsize=16,color="green",shape="box"];967[label="xwv300",fontsize=16,color="green",shape="box"];968[label="xwv40",fontsize=16,color="green",shape="box"];969[label="Neg xwv3010",fontsize=16,color="green",shape="box"];970[label="Pos xwv410",fontsize=16,color="green",shape="box"];971[label="xwv300",fontsize=16,color="green",shape="box"];972[label="xwv40",fontsize=16,color="green",shape="box"];973[label="Neg xwv3010",fontsize=16,color="green",shape="box"];974[label="Neg xwv410",fontsize=16,color="green",shape="box"];975[label="xwv300",fontsize=16,color="green",shape="box"];976[label="xwv40",fontsize=16,color="green",shape="box"];977[label="xwv300",fontsize=16,color="green",shape="box"];978[label="xwv40",fontsize=16,color="green",shape="box"];979[label="xwv300",fontsize=16,color="green",shape="box"];980[label="xwv40",fontsize=16,color="green",shape="box"];981[label="xwv300",fontsize=16,color="green",shape="box"];982[label="xwv40",fontsize=16,color="green",shape="box"];983[label="xwv300",fontsize=16,color="green",shape="box"];984[label="xwv40",fontsize=16,color="green",shape="box"];985[label="xwv300",fontsize=16,color="green",shape="box"];986[label="xwv40",fontsize=16,color="green",shape="box"];987[label="xwv300",fontsize=16,color="green",shape="box"];988[label="xwv40",fontsize=16,color="green",shape="box"];989[label="xwv300",fontsize=16,color="green",shape="box"];990[label="xwv40",fontsize=16,color="green",shape="box"];991[label="xwv300",fontsize=16,color="green",shape="box"];992[label="xwv40",fontsize=16,color="green",shape="box"];993[label="xwv300",fontsize=16,color="green",shape="box"];994[label="xwv40",fontsize=16,color="green",shape="box"];995[label="xwv300",fontsize=16,color="green",shape="box"];996[label="xwv40",fontsize=16,color="green",shape="box"];997[label="xwv300",fontsize=16,color="green",shape="box"];998[label="xwv40",fontsize=16,color="green",shape="box"];999[label="xwv300",fontsize=16,color="green",shape="box"];1000[label="xwv40",fontsize=16,color="green",shape="box"];1001[label="xwv300",fontsize=16,color="green",shape="box"];1002[label="xwv40",fontsize=16,color="green",shape="box"];1003[label="xwv300",fontsize=16,color="green",shape="box"];1004[label="LT",fontsize=16,color="green",shape="box"];1005[label="xwv107",fontsize=16,color="green",shape="box"];1006[label="GT",fontsize=16,color="green",shape="box"];1007[label="xwv40",fontsize=16,color="green",shape="box"];1008[label="Pos xwv3010",fontsize=16,color="green",shape="box"];1009[label="Pos xwv410",fontsize=16,color="green",shape="box"];1010[label="xwv300",fontsize=16,color="green",shape="box"];1011[label="xwv40",fontsize=16,color="green",shape="box"];1012[label="Pos xwv3010",fontsize=16,color="green",shape="box"];1013[label="Neg xwv410",fontsize=16,color="green",shape="box"];1014[label="xwv300",fontsize=16,color="green",shape="box"];1015[label="xwv40",fontsize=16,color="green",shape="box"];1016[label="Neg xwv3010",fontsize=16,color="green",shape="box"];1017[label="Pos xwv410",fontsize=16,color="green",shape="box"];1018[label="xwv300",fontsize=16,color="green",shape="box"];1019[label="xwv40",fontsize=16,color="green",shape="box"];1020[label="Neg xwv3010",fontsize=16,color="green",shape="box"];1021[label="Neg xwv410",fontsize=16,color="green",shape="box"];1022[label="xwv300",fontsize=16,color="green",shape="box"];1170[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4171[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1170 -> 4171[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4171 -> 1230[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4172[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1170 -> 4172[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4172 -> 1231[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4173[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1170 -> 4173[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4173 -> 1232[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4174[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1170 -> 4174[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4174 -> 1233[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4175[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1170 -> 4175[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4175 -> 1234[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4176[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1170 -> 4176[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4176 -> 1235[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4177[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1170 -> 4177[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4177 -> 1236[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4178[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1170 -> 4178[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4178 -> 1237[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4179[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1170 -> 4179[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4179 -> 1238[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4180[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1170 -> 4180[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4180 -> 1239[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4181[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1170 -> 4181[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4181 -> 1240[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4182[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1170 -> 4182[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4182 -> 1241[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4183[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1170 -> 4183[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4183 -> 1242[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4184[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1170 -> 4184[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4184 -> 1243[label="",style="solid", color="blue", weight=3]; 31.03/14.61 1171 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1171[label="xwv281 == xwv331",fontsize=16,color="magenta"];1171 -> 1244[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1171 -> 1245[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1034 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1034[label="xwv280 == xwv330",fontsize=16,color="magenta"];1034 -> 1246[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1034 -> 1247[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1035 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1035[label="xwv280 == xwv330",fontsize=16,color="magenta"];1035 -> 1248[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1035 -> 1249[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1036 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1036[label="xwv280 == xwv330",fontsize=16,color="magenta"];1036 -> 1250[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1036 -> 1251[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1037 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1037[label="xwv280 == xwv330",fontsize=16,color="magenta"];1037 -> 1252[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1037 -> 1253[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1038 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1038[label="xwv280 == xwv330",fontsize=16,color="magenta"];1038 -> 1254[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1038 -> 1255[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1039 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1039[label="xwv280 == xwv330",fontsize=16,color="magenta"];1039 -> 1256[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1039 -> 1257[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1040 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1040[label="xwv280 == xwv330",fontsize=16,color="magenta"];1040 -> 1258[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1040 -> 1259[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1041 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1041[label="xwv280 == xwv330",fontsize=16,color="magenta"];1041 -> 1260[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1041 -> 1261[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1042 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1042[label="xwv280 == xwv330",fontsize=16,color="magenta"];1042 -> 1262[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1042 -> 1263[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1043 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1043[label="xwv280 == xwv330",fontsize=16,color="magenta"];1043 -> 1264[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1043 -> 1265[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1044 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1044[label="xwv280 == xwv330",fontsize=16,color="magenta"];1044 -> 1266[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1044 -> 1267[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1045 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1045[label="xwv280 == xwv330",fontsize=16,color="magenta"];1045 -> 1268[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1045 -> 1269[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1046 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1046[label="xwv280 == xwv330",fontsize=16,color="magenta"];1046 -> 1270[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1046 -> 1271[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1047 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1047[label="xwv280 == xwv330",fontsize=16,color="magenta"];1047 -> 1272[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1047 -> 1273[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1048 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1048[label="xwv280 == xwv330",fontsize=16,color="magenta"];1048 -> 1274[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1048 -> 1275[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1049 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1049[label="xwv280 == xwv330",fontsize=16,color="magenta"];1049 -> 1276[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1049 -> 1277[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1050 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1050[label="xwv280 == xwv330",fontsize=16,color="magenta"];1050 -> 1278[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1050 -> 1279[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1051 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1051[label="xwv280 == xwv330",fontsize=16,color="magenta"];1051 -> 1280[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1051 -> 1281[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1052 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1052[label="xwv280 == xwv330",fontsize=16,color="magenta"];1052 -> 1282[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1052 -> 1283[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1053 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1053[label="xwv280 == xwv330",fontsize=16,color="magenta"];1053 -> 1284[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1053 -> 1285[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1054 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1054[label="xwv280 == xwv330",fontsize=16,color="magenta"];1054 -> 1286[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1054 -> 1287[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1055 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1055[label="xwv280 == xwv330",fontsize=16,color="magenta"];1055 -> 1288[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1055 -> 1289[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1056 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1056[label="xwv280 == xwv330",fontsize=16,color="magenta"];1056 -> 1290[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1056 -> 1291[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1057 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1057[label="xwv280 == xwv330",fontsize=16,color="magenta"];1057 -> 1292[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1057 -> 1293[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1058 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1058[label="xwv280 == xwv330",fontsize=16,color="magenta"];1058 -> 1294[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1058 -> 1295[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1059 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1059[label="xwv280 == xwv330",fontsize=16,color="magenta"];1059 -> 1296[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1059 -> 1297[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1060 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1060[label="xwv280 == xwv330",fontsize=16,color="magenta"];1060 -> 1298[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1060 -> 1299[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1061 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1061[label="xwv280 == xwv330",fontsize=16,color="magenta"];1061 -> 1300[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1061 -> 1301[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1172[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4185[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4185[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4185 -> 1302[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4186[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4186[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4186 -> 1303[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4187[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4187[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4187 -> 1304[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4188[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4188[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4188 -> 1305[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4189[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4189[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4189 -> 1306[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4190[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4190[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4190 -> 1307[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4191[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4191[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4191 -> 1308[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4192[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4192[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4192 -> 1309[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4193[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4193[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4193 -> 1310[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4194[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4194[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4194 -> 1311[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4195[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4195[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4195 -> 1312[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4196[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4196[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4196 -> 1313[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4197[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4197[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4197 -> 1314[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4198[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4198[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4198 -> 1315[label="",style="solid", color="blue", weight=3]; 31.03/14.61 1173[label="xwv281 == xwv331",fontsize=16,color="blue",shape="box"];4199[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4199[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4199 -> 1316[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4200[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4200[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4200 -> 1317[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4201[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4201[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4201 -> 1318[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4202[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4202[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4202 -> 1319[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4203[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4203[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4203 -> 1320[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4204[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4204[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4204 -> 1321[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4205[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4205[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4205 -> 1322[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4206[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4206[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4206 -> 1323[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4207[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4207[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4207 -> 1324[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4208[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4208[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4208 -> 1325[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4209[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4209[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4209 -> 1326[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4210[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4210[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4210 -> 1327[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4211[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4211[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4211 -> 1328[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4212[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4212[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4212 -> 1329[label="",style="solid", color="blue", weight=3]; 31.03/14.61 1062[label="xwv280",fontsize=16,color="green",shape="box"];1063[label="xwv330",fontsize=16,color="green",shape="box"];1064 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1064[label="xwv280 * xwv331 == xwv281 * xwv330",fontsize=16,color="magenta"];1064 -> 1330[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1064 -> 1331[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1065 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1065[label="xwv280 == xwv330",fontsize=16,color="magenta"];1065 -> 1332[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1065 -> 1333[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1066 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1066[label="xwv280 == xwv330",fontsize=16,color="magenta"];1066 -> 1334[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1066 -> 1335[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1067 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1067[label="xwv280 == xwv330",fontsize=16,color="magenta"];1067 -> 1336[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1067 -> 1337[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1068 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1068[label="xwv280 == xwv330",fontsize=16,color="magenta"];1068 -> 1338[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1068 -> 1339[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1069 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1069[label="xwv280 == xwv330",fontsize=16,color="magenta"];1069 -> 1340[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1069 -> 1341[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1070 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1070[label="xwv280 == xwv330",fontsize=16,color="magenta"];1070 -> 1342[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1070 -> 1343[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1071 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1071[label="xwv280 == xwv330",fontsize=16,color="magenta"];1071 -> 1344[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1071 -> 1345[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1072 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1072[label="xwv280 == xwv330",fontsize=16,color="magenta"];1072 -> 1346[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1072 -> 1347[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1073 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1073[label="xwv280 == xwv330",fontsize=16,color="magenta"];1073 -> 1348[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1073 -> 1349[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1074 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1074[label="xwv280 == xwv330",fontsize=16,color="magenta"];1074 -> 1350[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1074 -> 1351[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1075 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1075[label="xwv280 == xwv330",fontsize=16,color="magenta"];1075 -> 1352[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1075 -> 1353[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1076 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1076[label="xwv280 == xwv330",fontsize=16,color="magenta"];1076 -> 1354[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1076 -> 1355[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1077 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1077[label="xwv280 == xwv330",fontsize=16,color="magenta"];1077 -> 1356[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1077 -> 1357[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1078 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1078[label="xwv280 == xwv330",fontsize=16,color="magenta"];1078 -> 1358[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1078 -> 1359[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1079 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1079[label="xwv280 * xwv331 == xwv281 * xwv330",fontsize=16,color="magenta"];1079 -> 1360[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1079 -> 1361[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1174[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4213[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4213[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4213 -> 1362[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4214[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4214[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4214 -> 1363[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4215[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4215[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4215 -> 1364[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4216[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4216[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4216 -> 1365[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4217[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4217[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4217 -> 1366[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4218[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4218[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4218 -> 1367[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4219[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4219[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4219 -> 1368[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4220[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4220[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4220 -> 1369[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4221[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4221[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4221 -> 1370[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4222[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4222[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4222 -> 1371[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4223[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4223[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4223 -> 1372[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4224[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4224[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4224 -> 1373[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4225[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4225[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4225 -> 1374[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4226[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4226[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4226 -> 1375[label="",style="solid", color="blue", weight=3]; 31.03/14.61 1175 -> 1161[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1175[label="xwv281 == xwv331 && xwv282 == xwv332",fontsize=16,color="magenta"];1175 -> 1376[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1175 -> 1377[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1176[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4227[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1176 -> 4227[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4227 -> 1378[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4228[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1176 -> 4228[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4228 -> 1379[label="",style="solid", color="blue", weight=3]; 31.03/14.61 1177[label="xwv281 == xwv331",fontsize=16,color="blue",shape="box"];4229[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 4229[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4229 -> 1380[label="",style="solid", color="blue", weight=3]; 31.03/14.61 4230[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 4230[label="",style="solid", color="blue", weight=9]; 31.03/14.61 4230 -> 1381[label="",style="solid", color="blue", weight=3]; 31.03/14.61 1080[label="primEqNat xwv280 xwv330",fontsize=16,color="burlywood",shape="triangle"];4231[label="xwv280/Succ xwv2800",fontsize=10,color="white",style="solid",shape="box"];1080 -> 4231[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4231 -> 1382[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4232[label="xwv280/Zero",fontsize=10,color="white",style="solid",shape="box"];1080 -> 4232[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4232 -> 1383[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 1081[label="primEqInt (Pos (Succ xwv2800)) (Pos xwv330)",fontsize=16,color="burlywood",shape="box"];4233[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1081 -> 4233[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4233 -> 1384[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4234[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1081 -> 4234[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4234 -> 1385[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 1082[label="primEqInt (Pos (Succ xwv2800)) (Neg xwv330)",fontsize=16,color="black",shape="box"];1082 -> 1386[label="",style="solid", color="black", weight=3]; 31.03/14.61 1083[label="primEqInt (Pos Zero) (Pos xwv330)",fontsize=16,color="burlywood",shape="box"];4235[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1083 -> 4235[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4235 -> 1387[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4236[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1083 -> 4236[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4236 -> 1388[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 1084[label="primEqInt (Pos Zero) (Neg xwv330)",fontsize=16,color="burlywood",shape="box"];4237[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1084 -> 4237[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4237 -> 1389[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4238[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1084 -> 4238[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4238 -> 1390[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 1085[label="primEqInt (Neg (Succ xwv2800)) (Pos xwv330)",fontsize=16,color="black",shape="box"];1085 -> 1391[label="",style="solid", color="black", weight=3]; 31.03/14.61 1086[label="primEqInt (Neg (Succ xwv2800)) (Neg xwv330)",fontsize=16,color="burlywood",shape="box"];4239[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1086 -> 4239[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4239 -> 1392[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4240[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1086 -> 4240[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4240 -> 1393[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 1087[label="primEqInt (Neg Zero) (Pos xwv330)",fontsize=16,color="burlywood",shape="box"];4241[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1087 -> 4241[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4241 -> 1394[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4242[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1087 -> 4242[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4242 -> 1395[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 1088[label="primEqInt (Neg Zero) (Neg xwv330)",fontsize=16,color="burlywood",shape="box"];4243[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1088 -> 4243[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4243 -> 1396[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4244[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1088 -> 4244[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4244 -> 1397[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 1089[label="xwv52",fontsize=16,color="green",shape="box"];1090[label="FiniteMap.glueBal3 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1090 -> 1398[label="",style="solid", color="black", weight=3]; 31.03/14.61 1091[label="FiniteMap.glueBal2 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="black",shape="box"];1091 -> 1399[label="",style="solid", color="black", weight=3]; 31.03/14.61 1094[label="FiniteMap.sizeFM xwv35",fontsize=16,color="burlywood",shape="triangle"];4245[label="xwv35/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1094 -> 4245[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4245 -> 1531[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4246[label="xwv35/FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354",fontsize=10,color="white",style="solid",shape="box"];1094 -> 4246[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4246 -> 1532[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 1536[label="xwv16",fontsize=16,color="green",shape="box"];1537[label="primPlusInt (Pos xwv1620) (Pos xwv1300)",fontsize=16,color="black",shape="box"];1537 -> 1552[label="",style="solid", color="black", weight=3]; 31.03/14.61 1538[label="primPlusInt (Pos xwv1620) (Neg xwv1300)",fontsize=16,color="black",shape="box"];1538 -> 1553[label="",style="solid", color="black", weight=3]; 31.03/14.61 1539[label="primPlusInt (Neg xwv1620) (Pos xwv1300)",fontsize=16,color="black",shape="box"];1539 -> 1554[label="",style="solid", color="black", weight=3]; 31.03/14.61 1540[label="primPlusInt (Neg xwv1620) (Neg xwv1300)",fontsize=16,color="black",shape="box"];1540 -> 1555[label="",style="solid", color="black", weight=3]; 31.03/14.61 1095[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1095 -> 1533[label="",style="solid", color="black", weight=3]; 31.03/14.61 1096 -> 1520[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1096[label="FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];1097 -> 1534[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1097[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 (FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35)",fontsize=16,color="magenta"];1097 -> 1535[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1098[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv13 xwv14 xwv16 xwv35 xwv16 xwv35 xwv35",fontsize=16,color="burlywood",shape="box"];4247[label="xwv35/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1098 -> 4247[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4247 -> 1541[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4248[label="xwv35/FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354",fontsize=10,color="white",style="solid",shape="box"];1098 -> 4248[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4248 -> 1542[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 1099[label="FiniteMap.mkBranchUnbox xwv16 xwv35 xwv13 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv35 xwv13 + FiniteMap.mkBranchRight_size xwv16 xwv35 xwv13)",fontsize=16,color="black",shape="box"];1099 -> 1543[label="",style="solid", color="black", weight=3]; 31.03/14.61 1100[label="compare0 (Just xwv40) Nothing True",fontsize=16,color="black",shape="box"];1100 -> 1544[label="",style="solid", color="black", weight=3]; 31.03/14.61 1546[label="xwv62",fontsize=16,color="green",shape="box"];1547[label="xwv61",fontsize=16,color="green",shape="box"];1548[label="Just xwv61 <= Just xwv62",fontsize=16,color="black",shape="box"];1548 -> 1556[label="",style="solid", color="black", weight=3]; 31.03/14.61 1545[label="compare1 (Just xwv140) (Just xwv141) xwv142",fontsize=16,color="burlywood",shape="triangle"];4249[label="xwv142/False",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4249[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4249 -> 1557[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4250[label="xwv142/True",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4250[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4250 -> 1558[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 1102[label="compare0 True False True",fontsize=16,color="black",shape="box"];1102 -> 1559[label="",style="solid", color="black", weight=3]; 31.03/14.61 1402[label="xwv40",fontsize=16,color="green",shape="box"];1403[label="xwv300",fontsize=16,color="green",shape="box"];1404[label="xwv40",fontsize=16,color="green",shape="box"];1405[label="xwv300",fontsize=16,color="green",shape="box"];1406[label="xwv40",fontsize=16,color="green",shape="box"];1407[label="xwv300",fontsize=16,color="green",shape="box"];1408[label="xwv40",fontsize=16,color="green",shape="box"];1409[label="xwv300",fontsize=16,color="green",shape="box"];1410[label="xwv40",fontsize=16,color="green",shape="box"];1411[label="xwv300",fontsize=16,color="green",shape="box"];1412[label="xwv40",fontsize=16,color="green",shape="box"];1413[label="xwv300",fontsize=16,color="green",shape="box"];1414[label="xwv40",fontsize=16,color="green",shape="box"];1415[label="xwv300",fontsize=16,color="green",shape="box"];1416[label="xwv40",fontsize=16,color="green",shape="box"];1417[label="xwv300",fontsize=16,color="green",shape="box"];1418[label="xwv40",fontsize=16,color="green",shape="box"];1419[label="xwv300",fontsize=16,color="green",shape="box"];1420[label="xwv40",fontsize=16,color="green",shape="box"];1421[label="xwv300",fontsize=16,color="green",shape="box"];1422[label="xwv40",fontsize=16,color="green",shape="box"];1423[label="xwv300",fontsize=16,color="green",shape="box"];1424[label="xwv40",fontsize=16,color="green",shape="box"];1425[label="xwv300",fontsize=16,color="green",shape="box"];1426[label="xwv40",fontsize=16,color="green",shape="box"];1427[label="xwv300",fontsize=16,color="green",shape="box"];1428[label="xwv40",fontsize=16,color="green",shape="box"];1429[label="xwv300",fontsize=16,color="green",shape="box"];1430 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1430[label="xwv41 == xwv301",fontsize=16,color="magenta"];1430 -> 1560[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1430 -> 1561[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1431 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1431[label="xwv41 == xwv301",fontsize=16,color="magenta"];1431 -> 1562[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1431 -> 1563[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1432 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1432[label="xwv41 == xwv301",fontsize=16,color="magenta"];1432 -> 1564[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1432 -> 1565[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1433 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1433[label="xwv41 == xwv301",fontsize=16,color="magenta"];1433 -> 1566[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1433 -> 1567[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1434 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1434[label="xwv41 == xwv301",fontsize=16,color="magenta"];1434 -> 1568[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1434 -> 1569[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1435 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1435[label="xwv41 == xwv301",fontsize=16,color="magenta"];1435 -> 1570[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1435 -> 1571[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1436 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1436[label="xwv41 == xwv301",fontsize=16,color="magenta"];1436 -> 1572[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1436 -> 1573[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1437 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1437[label="xwv41 == xwv301",fontsize=16,color="magenta"];1437 -> 1574[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1437 -> 1575[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1438 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1438[label="xwv41 == xwv301",fontsize=16,color="magenta"];1438 -> 1576[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1438 -> 1577[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1439 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1439[label="xwv41 == xwv301",fontsize=16,color="magenta"];1439 -> 1578[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1439 -> 1579[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1440 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1440[label="xwv41 == xwv301",fontsize=16,color="magenta"];1440 -> 1580[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1440 -> 1581[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1441 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1441[label="xwv41 == xwv301",fontsize=16,color="magenta"];1441 -> 1582[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1441 -> 1583[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1442 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1442[label="xwv41 == xwv301",fontsize=16,color="magenta"];1442 -> 1584[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1442 -> 1585[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1443 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1443[label="xwv41 == xwv301",fontsize=16,color="magenta"];1443 -> 1586[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1443 -> 1587[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1444 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1444[label="xwv42 == xwv302",fontsize=16,color="magenta"];1444 -> 1588[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1444 -> 1589[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1445 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1445[label="xwv42 == xwv302",fontsize=16,color="magenta"];1445 -> 1590[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1445 -> 1591[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1446 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1446[label="xwv42 == xwv302",fontsize=16,color="magenta"];1446 -> 1592[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1446 -> 1593[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1447 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1447[label="xwv42 == xwv302",fontsize=16,color="magenta"];1447 -> 1594[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1447 -> 1595[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1448 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1448[label="xwv42 == xwv302",fontsize=16,color="magenta"];1448 -> 1596[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1448 -> 1597[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1449 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1449[label="xwv42 == xwv302",fontsize=16,color="magenta"];1449 -> 1598[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1449 -> 1599[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1450 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1450[label="xwv42 == xwv302",fontsize=16,color="magenta"];1450 -> 1600[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1450 -> 1601[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1451 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1451[label="xwv42 == xwv302",fontsize=16,color="magenta"];1451 -> 1602[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1451 -> 1603[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1452 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1452[label="xwv42 == xwv302",fontsize=16,color="magenta"];1452 -> 1604[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1452 -> 1605[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1453 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1453[label="xwv42 == xwv302",fontsize=16,color="magenta"];1453 -> 1606[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1453 -> 1607[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1454 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1454[label="xwv42 == xwv302",fontsize=16,color="magenta"];1454 -> 1608[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1454 -> 1609[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1455 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1455[label="xwv42 == xwv302",fontsize=16,color="magenta"];1455 -> 1610[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1455 -> 1611[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1456 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1456[label="xwv42 == xwv302",fontsize=16,color="magenta"];1456 -> 1612[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1456 -> 1613[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1457 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1457[label="xwv42 == xwv302",fontsize=16,color="magenta"];1457 -> 1614[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1457 -> 1615[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1458[label="False",fontsize=16,color="green",shape="box"];1459[label="xwv128",fontsize=16,color="green",shape="box"];1460 -> 1857[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1460[label="compare1 (xwv72,xwv73,xwv74) (xwv75,xwv76,xwv77) (xwv72 < xwv75 || xwv72 == xwv75 && (xwv73 < xwv76 || xwv73 == xwv76 && xwv74 <= xwv77))",fontsize=16,color="magenta"];1460 -> 1858[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1460 -> 1859[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1460 -> 1860[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1460 -> 1861[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1460 -> 1862[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1460 -> 1863[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1460 -> 1864[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1460 -> 1865[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1619[label="xwv84",fontsize=16,color="green",shape="box"];1620[label="xwv83",fontsize=16,color="green",shape="box"];1621[label="Left xwv83 <= Left xwv84",fontsize=16,color="black",shape="box"];1621 -> 1625[label="",style="solid", color="black", weight=3]; 31.03/14.61 1618[label="compare1 (Left xwv149) (Left xwv150) xwv151",fontsize=16,color="burlywood",shape="triangle"];4251[label="xwv151/False",fontsize=10,color="white",style="solid",shape="box"];1618 -> 4251[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4251 -> 1626[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4252[label="xwv151/True",fontsize=10,color="white",style="solid",shape="box"];1618 -> 4252[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4252 -> 1627[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 1121[label="compare0 (Right xwv40) (Left xwv300) True",fontsize=16,color="black",shape="box"];1121 -> 1628[label="",style="solid", color="black", weight=3]; 31.03/14.61 1630[label="xwv90",fontsize=16,color="green",shape="box"];1631[label="xwv91",fontsize=16,color="green",shape="box"];1632[label="Right xwv90 <= Right xwv91",fontsize=16,color="black",shape="box"];1632 -> 1636[label="",style="solid", color="black", weight=3]; 31.03/14.61 1629[label="compare1 (Right xwv156) (Right xwv157) xwv158",fontsize=16,color="burlywood",shape="triangle"];4253[label="xwv158/False",fontsize=10,color="white",style="solid",shape="box"];1629 -> 4253[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4253 -> 1637[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 4254[label="xwv158/True",fontsize=10,color="white",style="solid",shape="box"];1629 -> 4254[label="",style="solid", color="burlywood", weight=9]; 31.03/14.61 4254 -> 1638[label="",style="solid", color="burlywood", weight=3]; 31.03/14.61 1123[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];1123 -> 1639[label="",style="solid", color="black", weight=3]; 31.03/14.61 1124[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];1124 -> 1640[label="",style="solid", color="black", weight=3]; 31.03/14.61 1125[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];1125 -> 1641[label="",style="solid", color="black", weight=3]; 31.03/14.61 1126 -> 531[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1126[label="primMulInt xwv400 xwv3010",fontsize=16,color="magenta"];1126 -> 1642[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1126 -> 1643[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1127[label="Pos (primMulNat xwv400 xwv3010)",fontsize=16,color="green",shape="box"];1127 -> 1644[label="",style="dashed", color="green", weight=3]; 31.03/14.61 1128[label="Neg (primMulNat xwv400 xwv3010)",fontsize=16,color="green",shape="box"];1128 -> 1645[label="",style="dashed", color="green", weight=3]; 31.03/14.61 1129[label="Neg (primMulNat xwv400 xwv3010)",fontsize=16,color="green",shape="box"];1129 -> 1646[label="",style="dashed", color="green", weight=3]; 31.03/14.61 1130[label="Pos (primMulNat xwv400 xwv3010)",fontsize=16,color="green",shape="box"];1130 -> 1647[label="",style="dashed", color="green", weight=3]; 31.03/14.61 1461[label="xwv40",fontsize=16,color="green",shape="box"];1462[label="xwv300",fontsize=16,color="green",shape="box"];1463[label="xwv40",fontsize=16,color="green",shape="box"];1464[label="xwv300",fontsize=16,color="green",shape="box"];1465[label="xwv40",fontsize=16,color="green",shape="box"];1466[label="xwv300",fontsize=16,color="green",shape="box"];1467[label="xwv40",fontsize=16,color="green",shape="box"];1468[label="xwv300",fontsize=16,color="green",shape="box"];1469[label="xwv40",fontsize=16,color="green",shape="box"];1470[label="xwv300",fontsize=16,color="green",shape="box"];1471[label="xwv40",fontsize=16,color="green",shape="box"];1472[label="xwv300",fontsize=16,color="green",shape="box"];1473[label="xwv40",fontsize=16,color="green",shape="box"];1474[label="xwv300",fontsize=16,color="green",shape="box"];1475[label="xwv40",fontsize=16,color="green",shape="box"];1476[label="xwv300",fontsize=16,color="green",shape="box"];1477[label="xwv40",fontsize=16,color="green",shape="box"];1478[label="xwv300",fontsize=16,color="green",shape="box"];1479[label="xwv40",fontsize=16,color="green",shape="box"];1480[label="xwv300",fontsize=16,color="green",shape="box"];1481[label="xwv40",fontsize=16,color="green",shape="box"];1482[label="xwv300",fontsize=16,color="green",shape="box"];1483[label="xwv40",fontsize=16,color="green",shape="box"];1484[label="xwv300",fontsize=16,color="green",shape="box"];1485[label="xwv40",fontsize=16,color="green",shape="box"];1486[label="xwv300",fontsize=16,color="green",shape="box"];1487[label="xwv40",fontsize=16,color="green",shape="box"];1488[label="xwv300",fontsize=16,color="green",shape="box"];1489[label="xwv41",fontsize=16,color="green",shape="box"];1490[label="xwv301",fontsize=16,color="green",shape="box"];1491[label="xwv41",fontsize=16,color="green",shape="box"];1492[label="xwv301",fontsize=16,color="green",shape="box"];1493[label="xwv41",fontsize=16,color="green",shape="box"];1494[label="xwv301",fontsize=16,color="green",shape="box"];1495[label="xwv41",fontsize=16,color="green",shape="box"];1496[label="xwv301",fontsize=16,color="green",shape="box"];1497[label="xwv41",fontsize=16,color="green",shape="box"];1498[label="xwv301",fontsize=16,color="green",shape="box"];1499[label="xwv41",fontsize=16,color="green",shape="box"];1500[label="xwv301",fontsize=16,color="green",shape="box"];1501[label="xwv41",fontsize=16,color="green",shape="box"];1502[label="xwv301",fontsize=16,color="green",shape="box"];1503[label="xwv41",fontsize=16,color="green",shape="box"];1504[label="xwv301",fontsize=16,color="green",shape="box"];1505[label="xwv41",fontsize=16,color="green",shape="box"];1506[label="xwv301",fontsize=16,color="green",shape="box"];1507[label="xwv41",fontsize=16,color="green",shape="box"];1508[label="xwv301",fontsize=16,color="green",shape="box"];1509[label="xwv41",fontsize=16,color="green",shape="box"];1510[label="xwv301",fontsize=16,color="green",shape="box"];1511[label="xwv41",fontsize=16,color="green",shape="box"];1512[label="xwv301",fontsize=16,color="green",shape="box"];1513[label="xwv41",fontsize=16,color="green",shape="box"];1514[label="xwv301",fontsize=16,color="green",shape="box"];1515[label="xwv41",fontsize=16,color="green",shape="box"];1516[label="xwv301",fontsize=16,color="green",shape="box"];1517 -> 1932[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1517[label="compare1 (xwv119,xwv120) (xwv121,xwv122) (xwv119 < xwv121 || xwv119 == xwv121 && xwv120 <= xwv122)",fontsize=16,color="magenta"];1517 -> 1933[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1517 -> 1934[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1517 -> 1935[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1517 -> 1936[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1517 -> 1937[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1517 -> 1938[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1230 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1230[label="xwv280 == xwv330",fontsize=16,color="magenta"];1230 -> 1650[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1230 -> 1651[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1231 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1231[label="xwv280 == xwv330",fontsize=16,color="magenta"];1231 -> 1652[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1231 -> 1653[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1232 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1232[label="xwv280 == xwv330",fontsize=16,color="magenta"];1232 -> 1654[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1232 -> 1655[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1233 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1233[label="xwv280 == xwv330",fontsize=16,color="magenta"];1233 -> 1656[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1233 -> 1657[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1234 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1234[label="xwv280 == xwv330",fontsize=16,color="magenta"];1234 -> 1658[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1234 -> 1659[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1235 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1235[label="xwv280 == xwv330",fontsize=16,color="magenta"];1235 -> 1660[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1235 -> 1661[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1236 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1236[label="xwv280 == xwv330",fontsize=16,color="magenta"];1236 -> 1662[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1236 -> 1663[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1237 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1237[label="xwv280 == xwv330",fontsize=16,color="magenta"];1237 -> 1664[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1237 -> 1665[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1238 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1238[label="xwv280 == xwv330",fontsize=16,color="magenta"];1238 -> 1666[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1238 -> 1667[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1239 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1239[label="xwv280 == xwv330",fontsize=16,color="magenta"];1239 -> 1668[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1239 -> 1669[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1240 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1240[label="xwv280 == xwv330",fontsize=16,color="magenta"];1240 -> 1670[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1240 -> 1671[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1241 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1241[label="xwv280 == xwv330",fontsize=16,color="magenta"];1241 -> 1672[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1241 -> 1673[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1242 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1242[label="xwv280 == xwv330",fontsize=16,color="magenta"];1242 -> 1674[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1242 -> 1675[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1243 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1243[label="xwv280 == xwv330",fontsize=16,color="magenta"];1243 -> 1676[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1243 -> 1677[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1244[label="xwv281",fontsize=16,color="green",shape="box"];1245[label="xwv331",fontsize=16,color="green",shape="box"];1246[label="xwv280",fontsize=16,color="green",shape="box"];1247[label="xwv330",fontsize=16,color="green",shape="box"];1248[label="xwv280",fontsize=16,color="green",shape="box"];1249[label="xwv330",fontsize=16,color="green",shape="box"];1250[label="xwv280",fontsize=16,color="green",shape="box"];1251[label="xwv330",fontsize=16,color="green",shape="box"];1252[label="xwv280",fontsize=16,color="green",shape="box"];1253[label="xwv330",fontsize=16,color="green",shape="box"];1254[label="xwv280",fontsize=16,color="green",shape="box"];1255[label="xwv330",fontsize=16,color="green",shape="box"];1256[label="xwv280",fontsize=16,color="green",shape="box"];1257[label="xwv330",fontsize=16,color="green",shape="box"];1258[label="xwv280",fontsize=16,color="green",shape="box"];1259[label="xwv330",fontsize=16,color="green",shape="box"];1260[label="xwv280",fontsize=16,color="green",shape="box"];1261[label="xwv330",fontsize=16,color="green",shape="box"];1262[label="xwv280",fontsize=16,color="green",shape="box"];1263[label="xwv330",fontsize=16,color="green",shape="box"];1264[label="xwv280",fontsize=16,color="green",shape="box"];1265[label="xwv330",fontsize=16,color="green",shape="box"];1266[label="xwv280",fontsize=16,color="green",shape="box"];1267[label="xwv330",fontsize=16,color="green",shape="box"];1268[label="xwv280",fontsize=16,color="green",shape="box"];1269[label="xwv330",fontsize=16,color="green",shape="box"];1270[label="xwv280",fontsize=16,color="green",shape="box"];1271[label="xwv330",fontsize=16,color="green",shape="box"];1272[label="xwv280",fontsize=16,color="green",shape="box"];1273[label="xwv330",fontsize=16,color="green",shape="box"];1274[label="xwv280",fontsize=16,color="green",shape="box"];1275[label="xwv330",fontsize=16,color="green",shape="box"];1276[label="xwv280",fontsize=16,color="green",shape="box"];1277[label="xwv330",fontsize=16,color="green",shape="box"];1278[label="xwv280",fontsize=16,color="green",shape="box"];1279[label="xwv330",fontsize=16,color="green",shape="box"];1280[label="xwv280",fontsize=16,color="green",shape="box"];1281[label="xwv330",fontsize=16,color="green",shape="box"];1282[label="xwv280",fontsize=16,color="green",shape="box"];1283[label="xwv330",fontsize=16,color="green",shape="box"];1284[label="xwv280",fontsize=16,color="green",shape="box"];1285[label="xwv330",fontsize=16,color="green",shape="box"];1286[label="xwv280",fontsize=16,color="green",shape="box"];1287[label="xwv330",fontsize=16,color="green",shape="box"];1288[label="xwv280",fontsize=16,color="green",shape="box"];1289[label="xwv330",fontsize=16,color="green",shape="box"];1290[label="xwv280",fontsize=16,color="green",shape="box"];1291[label="xwv330",fontsize=16,color="green",shape="box"];1292[label="xwv280",fontsize=16,color="green",shape="box"];1293[label="xwv330",fontsize=16,color="green",shape="box"];1294[label="xwv280",fontsize=16,color="green",shape="box"];1295[label="xwv330",fontsize=16,color="green",shape="box"];1296[label="xwv280",fontsize=16,color="green",shape="box"];1297[label="xwv330",fontsize=16,color="green",shape="box"];1298[label="xwv280",fontsize=16,color="green",shape="box"];1299[label="xwv330",fontsize=16,color="green",shape="box"];1300[label="xwv280",fontsize=16,color="green",shape="box"];1301[label="xwv330",fontsize=16,color="green",shape="box"];1302 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1302[label="xwv280 == xwv330",fontsize=16,color="magenta"];1302 -> 1678[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1302 -> 1679[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1303 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1303[label="xwv280 == xwv330",fontsize=16,color="magenta"];1303 -> 1680[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1303 -> 1681[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1304 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1304[label="xwv280 == xwv330",fontsize=16,color="magenta"];1304 -> 1682[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1304 -> 1683[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1305 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1305[label="xwv280 == xwv330",fontsize=16,color="magenta"];1305 -> 1684[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1305 -> 1685[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1306 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1306[label="xwv280 == xwv330",fontsize=16,color="magenta"];1306 -> 1686[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1306 -> 1687[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1307 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1307[label="xwv280 == xwv330",fontsize=16,color="magenta"];1307 -> 1688[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1307 -> 1689[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1308 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1308[label="xwv280 == xwv330",fontsize=16,color="magenta"];1308 -> 1690[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1308 -> 1691[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1309 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1309[label="xwv280 == xwv330",fontsize=16,color="magenta"];1309 -> 1692[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1309 -> 1693[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1310 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1310[label="xwv280 == xwv330",fontsize=16,color="magenta"];1310 -> 1694[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1310 -> 1695[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1311 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1311[label="xwv280 == xwv330",fontsize=16,color="magenta"];1311 -> 1696[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1311 -> 1697[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1312 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1312[label="xwv280 == xwv330",fontsize=16,color="magenta"];1312 -> 1698[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1312 -> 1699[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1313 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1313[label="xwv280 == xwv330",fontsize=16,color="magenta"];1313 -> 1700[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1313 -> 1701[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1314 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1314[label="xwv280 == xwv330",fontsize=16,color="magenta"];1314 -> 1702[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1314 -> 1703[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1315 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1315[label="xwv280 == xwv330",fontsize=16,color="magenta"];1315 -> 1704[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1315 -> 1705[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1316 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1316[label="xwv281 == xwv331",fontsize=16,color="magenta"];1316 -> 1706[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1316 -> 1707[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1317 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1317[label="xwv281 == xwv331",fontsize=16,color="magenta"];1317 -> 1708[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1317 -> 1709[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1318 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1318[label="xwv281 == xwv331",fontsize=16,color="magenta"];1318 -> 1710[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1318 -> 1711[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1319 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1319[label="xwv281 == xwv331",fontsize=16,color="magenta"];1319 -> 1712[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1319 -> 1713[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1320 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1320[label="xwv281 == xwv331",fontsize=16,color="magenta"];1320 -> 1714[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1320 -> 1715[label="",style="dashed", color="magenta", weight=3]; 31.03/14.61 1321 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.61 1321[label="xwv281 == xwv331",fontsize=16,color="magenta"];1321 -> 1716[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1321 -> 1717[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1322 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1322[label="xwv281 == xwv331",fontsize=16,color="magenta"];1322 -> 1718[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1322 -> 1719[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1323 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1323[label="xwv281 == xwv331",fontsize=16,color="magenta"];1323 -> 1720[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1323 -> 1721[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1324 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1324[label="xwv281 == xwv331",fontsize=16,color="magenta"];1324 -> 1722[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1324 -> 1723[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1325 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1325[label="xwv281 == xwv331",fontsize=16,color="magenta"];1325 -> 1724[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1325 -> 1725[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1326 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1326[label="xwv281 == xwv331",fontsize=16,color="magenta"];1326 -> 1726[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1326 -> 1727[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1327 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1327[label="xwv281 == xwv331",fontsize=16,color="magenta"];1327 -> 1728[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1327 -> 1729[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1328 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1328[label="xwv281 == xwv331",fontsize=16,color="magenta"];1328 -> 1730[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1328 -> 1731[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1329 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1329[label="xwv281 == xwv331",fontsize=16,color="magenta"];1329 -> 1732[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1329 -> 1733[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1330 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1330[label="xwv280 * xwv331",fontsize=16,color="magenta"];1330 -> 1734[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1330 -> 1735[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1331 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1331[label="xwv281 * xwv330",fontsize=16,color="magenta"];1331 -> 1736[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1331 -> 1737[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1332[label="xwv280",fontsize=16,color="green",shape="box"];1333[label="xwv330",fontsize=16,color="green",shape="box"];1334[label="xwv280",fontsize=16,color="green",shape="box"];1335[label="xwv330",fontsize=16,color="green",shape="box"];1336[label="xwv280",fontsize=16,color="green",shape="box"];1337[label="xwv330",fontsize=16,color="green",shape="box"];1338[label="xwv280",fontsize=16,color="green",shape="box"];1339[label="xwv330",fontsize=16,color="green",shape="box"];1340[label="xwv280",fontsize=16,color="green",shape="box"];1341[label="xwv330",fontsize=16,color="green",shape="box"];1342[label="xwv280",fontsize=16,color="green",shape="box"];1343[label="xwv330",fontsize=16,color="green",shape="box"];1344[label="xwv280",fontsize=16,color="green",shape="box"];1345[label="xwv330",fontsize=16,color="green",shape="box"];1346[label="xwv280",fontsize=16,color="green",shape="box"];1347[label="xwv330",fontsize=16,color="green",shape="box"];1348[label="xwv280",fontsize=16,color="green",shape="box"];1349[label="xwv330",fontsize=16,color="green",shape="box"];1350[label="xwv280",fontsize=16,color="green",shape="box"];1351[label="xwv330",fontsize=16,color="green",shape="box"];1352[label="xwv280",fontsize=16,color="green",shape="box"];1353[label="xwv330",fontsize=16,color="green",shape="box"];1354[label="xwv280",fontsize=16,color="green",shape="box"];1355[label="xwv330",fontsize=16,color="green",shape="box"];1356[label="xwv280",fontsize=16,color="green",shape="box"];1357[label="xwv330",fontsize=16,color="green",shape="box"];1358[label="xwv280",fontsize=16,color="green",shape="box"];1359[label="xwv330",fontsize=16,color="green",shape="box"];1360 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1360[label="xwv280 * xwv331",fontsize=16,color="magenta"];1360 -> 1738[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1360 -> 1739[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1361 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1361[label="xwv281 * xwv330",fontsize=16,color="magenta"];1361 -> 1740[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1361 -> 1741[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1362 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1362[label="xwv280 == xwv330",fontsize=16,color="magenta"];1362 -> 1742[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1362 -> 1743[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1363 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1363[label="xwv280 == xwv330",fontsize=16,color="magenta"];1363 -> 1744[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1363 -> 1745[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1364 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1364[label="xwv280 == xwv330",fontsize=16,color="magenta"];1364 -> 1746[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1364 -> 1747[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1365 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1365[label="xwv280 == xwv330",fontsize=16,color="magenta"];1365 -> 1748[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1365 -> 1749[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1366 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1366[label="xwv280 == xwv330",fontsize=16,color="magenta"];1366 -> 1750[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1366 -> 1751[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1367 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1367[label="xwv280 == xwv330",fontsize=16,color="magenta"];1367 -> 1752[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1367 -> 1753[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1368 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1368[label="xwv280 == xwv330",fontsize=16,color="magenta"];1368 -> 1754[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1368 -> 1755[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1369 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1369[label="xwv280 == xwv330",fontsize=16,color="magenta"];1369 -> 1756[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1369 -> 1757[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1370 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1370[label="xwv280 == xwv330",fontsize=16,color="magenta"];1370 -> 1758[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1370 -> 1759[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1371 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1371[label="xwv280 == xwv330",fontsize=16,color="magenta"];1371 -> 1760[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1371 -> 1761[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1372 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1372[label="xwv280 == xwv330",fontsize=16,color="magenta"];1372 -> 1762[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1372 -> 1763[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1373 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1373[label="xwv280 == xwv330",fontsize=16,color="magenta"];1373 -> 1764[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1373 -> 1765[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1374 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1374[label="xwv280 == xwv330",fontsize=16,color="magenta"];1374 -> 1766[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1374 -> 1767[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1375 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1375[label="xwv280 == xwv330",fontsize=16,color="magenta"];1375 -> 1768[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1375 -> 1769[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1376[label="xwv281 == xwv331",fontsize=16,color="blue",shape="box"];4255[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 4255[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4255 -> 1770[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4256[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 4256[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4256 -> 1771[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4257[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 4257[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4257 -> 1772[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4258[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 4258[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4258 -> 1773[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4259[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 4259[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4259 -> 1774[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4260[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 4260[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4260 -> 1775[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4261[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 4261[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4261 -> 1776[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4262[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 4262[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4262 -> 1777[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4263[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 4263[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4263 -> 1778[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4264[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 4264[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4264 -> 1779[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4265[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 4265[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4265 -> 1780[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4266[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 4266[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4266 -> 1781[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4267[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 4267[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4267 -> 1782[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4268[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1376 -> 4268[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4268 -> 1783[label="",style="solid", color="blue", weight=3]; 31.03/14.62 1377[label="xwv282 == xwv332",fontsize=16,color="blue",shape="box"];4269[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 4269[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4269 -> 1784[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4270[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 4270[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4270 -> 1785[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4271[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 4271[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4271 -> 1786[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4272[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 4272[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4272 -> 1787[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4273[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 4273[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4273 -> 1788[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4274[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 4274[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4274 -> 1789[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4275[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 4275[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4275 -> 1790[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4276[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 4276[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4276 -> 1791[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4277[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 4277[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4277 -> 1792[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4278[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 4278[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4278 -> 1793[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4279[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 4279[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4279 -> 1794[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4280[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 4280[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4280 -> 1795[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4281[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 4281[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4281 -> 1796[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4282[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 4282[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4282 -> 1797[label="",style="solid", color="blue", weight=3]; 31.03/14.62 1378 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1378[label="xwv280 == xwv330",fontsize=16,color="magenta"];1378 -> 1798[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1378 -> 1799[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1379 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1379[label="xwv280 == xwv330",fontsize=16,color="magenta"];1379 -> 1800[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1379 -> 1801[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1380 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1380[label="xwv281 == xwv331",fontsize=16,color="magenta"];1380 -> 1802[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1380 -> 1803[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1381 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1381[label="xwv281 == xwv331",fontsize=16,color="magenta"];1381 -> 1804[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1381 -> 1805[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1382[label="primEqNat (Succ xwv2800) xwv330",fontsize=16,color="burlywood",shape="box"];4283[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1382 -> 4283[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4283 -> 1806[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4284[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1382 -> 4284[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4284 -> 1807[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1383[label="primEqNat Zero xwv330",fontsize=16,color="burlywood",shape="box"];4285[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1383 -> 4285[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4285 -> 1808[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4286[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1383 -> 4286[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4286 -> 1809[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1384[label="primEqInt (Pos (Succ xwv2800)) (Pos (Succ xwv3300))",fontsize=16,color="black",shape="box"];1384 -> 1810[label="",style="solid", color="black", weight=3]; 31.03/14.62 1385[label="primEqInt (Pos (Succ xwv2800)) (Pos Zero)",fontsize=16,color="black",shape="box"];1385 -> 1811[label="",style="solid", color="black", weight=3]; 31.03/14.62 1386[label="False",fontsize=16,color="green",shape="box"];1387[label="primEqInt (Pos Zero) (Pos (Succ xwv3300))",fontsize=16,color="black",shape="box"];1387 -> 1812[label="",style="solid", color="black", weight=3]; 31.03/14.62 1388[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1388 -> 1813[label="",style="solid", color="black", weight=3]; 31.03/14.62 1389[label="primEqInt (Pos Zero) (Neg (Succ xwv3300))",fontsize=16,color="black",shape="box"];1389 -> 1814[label="",style="solid", color="black", weight=3]; 31.03/14.62 1390[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1390 -> 1815[label="",style="solid", color="black", weight=3]; 31.03/14.62 1391[label="False",fontsize=16,color="green",shape="box"];1392[label="primEqInt (Neg (Succ xwv2800)) (Neg (Succ xwv3300))",fontsize=16,color="black",shape="box"];1392 -> 1816[label="",style="solid", color="black", weight=3]; 31.03/14.62 1393[label="primEqInt (Neg (Succ xwv2800)) (Neg Zero)",fontsize=16,color="black",shape="box"];1393 -> 1817[label="",style="solid", color="black", weight=3]; 31.03/14.62 1394[label="primEqInt (Neg Zero) (Pos (Succ xwv3300))",fontsize=16,color="black",shape="box"];1394 -> 1818[label="",style="solid", color="black", weight=3]; 31.03/14.62 1395[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1395 -> 1819[label="",style="solid", color="black", weight=3]; 31.03/14.62 1396[label="primEqInt (Neg Zero) (Neg (Succ xwv3300))",fontsize=16,color="black",shape="box"];1396 -> 1820[label="",style="solid", color="black", weight=3]; 31.03/14.62 1397[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1397 -> 1821[label="",style="solid", color="black", weight=3]; 31.03/14.62 1398[label="FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514",fontsize=16,color="green",shape="box"];1399 -> 1822[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1399[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.sizeFM (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) > FiniteMap.sizeFM (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="magenta"];1399 -> 1823[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1531[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1531 -> 1824[label="",style="solid", color="black", weight=3]; 31.03/14.62 1532[label="FiniteMap.sizeFM (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="black",shape="box"];1532 -> 1825[label="",style="solid", color="black", weight=3]; 31.03/14.62 1552[label="Pos (primPlusNat xwv1620 xwv1300)",fontsize=16,color="green",shape="box"];1552 -> 1826[label="",style="dashed", color="green", weight=3]; 31.03/14.62 1553[label="primMinusNat xwv1620 xwv1300",fontsize=16,color="burlywood",shape="triangle"];4287[label="xwv1620/Succ xwv16200",fontsize=10,color="white",style="solid",shape="box"];1553 -> 4287[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4287 -> 1827[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4288[label="xwv1620/Zero",fontsize=10,color="white",style="solid",shape="box"];1553 -> 4288[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4288 -> 1828[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1554 -> 1553[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1554[label="primMinusNat xwv1300 xwv1620",fontsize=16,color="magenta"];1554 -> 1829[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1554 -> 1830[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1555[label="Neg (primPlusNat xwv1620 xwv1300)",fontsize=16,color="green",shape="box"];1555 -> 1831[label="",style="dashed", color="green", weight=3]; 31.03/14.62 1533[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1535 -> 29[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1535[label="FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];1535 -> 1832[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1535 -> 1833[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1534[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 xwv131",fontsize=16,color="burlywood",shape="triangle"];4289[label="xwv131/False",fontsize=10,color="white",style="solid",shape="box"];1534 -> 4289[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4289 -> 1834[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4290[label="xwv131/True",fontsize=10,color="white",style="solid",shape="box"];1534 -> 4290[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4290 -> 1835[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1541[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv13 xwv14 xwv16 FiniteMap.EmptyFM xwv16 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1541 -> 1836[label="",style="solid", color="black", weight=3]; 31.03/14.62 1542[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="black",shape="box"];1542 -> 1837[label="",style="solid", color="black", weight=3]; 31.03/14.62 1543[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv35 xwv13 + FiniteMap.mkBranchRight_size xwv16 xwv35 xwv13",fontsize=16,color="black",shape="box"];1543 -> 1838[label="",style="solid", color="black", weight=3]; 31.03/14.62 1544[label="GT",fontsize=16,color="green",shape="box"];1556[label="xwv61 <= xwv62",fontsize=16,color="blue",shape="box"];4291[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 4291[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4291 -> 1839[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4292[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 4292[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4292 -> 1840[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4293[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 4293[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4293 -> 1841[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4294[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 4294[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4294 -> 1842[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4295[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 4295[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4295 -> 1843[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4296[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 4296[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4296 -> 1844[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4297[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 4297[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4297 -> 1845[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4298[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 4298[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4298 -> 1846[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4299[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 4299[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4299 -> 1847[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4300[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 4300[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4300 -> 1848[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4301[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 4301[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4301 -> 1849[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4302[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 4302[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4302 -> 1850[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4303[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 4303[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4303 -> 1851[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4304[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 4304[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4304 -> 1852[label="",style="solid", color="blue", weight=3]; 31.03/14.62 1557[label="compare1 (Just xwv140) (Just xwv141) False",fontsize=16,color="black",shape="box"];1557 -> 1853[label="",style="solid", color="black", weight=3]; 31.03/14.62 1558[label="compare1 (Just xwv140) (Just xwv141) True",fontsize=16,color="black",shape="box"];1558 -> 1854[label="",style="solid", color="black", weight=3]; 31.03/14.62 1559[label="GT",fontsize=16,color="green",shape="box"];1560[label="xwv41",fontsize=16,color="green",shape="box"];1561[label="xwv301",fontsize=16,color="green",shape="box"];1562[label="xwv41",fontsize=16,color="green",shape="box"];1563[label="xwv301",fontsize=16,color="green",shape="box"];1564[label="xwv41",fontsize=16,color="green",shape="box"];1565[label="xwv301",fontsize=16,color="green",shape="box"];1566[label="xwv41",fontsize=16,color="green",shape="box"];1567[label="xwv301",fontsize=16,color="green",shape="box"];1568[label="xwv41",fontsize=16,color="green",shape="box"];1569[label="xwv301",fontsize=16,color="green",shape="box"];1570[label="xwv41",fontsize=16,color="green",shape="box"];1571[label="xwv301",fontsize=16,color="green",shape="box"];1572[label="xwv41",fontsize=16,color="green",shape="box"];1573[label="xwv301",fontsize=16,color="green",shape="box"];1574[label="xwv41",fontsize=16,color="green",shape="box"];1575[label="xwv301",fontsize=16,color="green",shape="box"];1576[label="xwv41",fontsize=16,color="green",shape="box"];1577[label="xwv301",fontsize=16,color="green",shape="box"];1578[label="xwv41",fontsize=16,color="green",shape="box"];1579[label="xwv301",fontsize=16,color="green",shape="box"];1580[label="xwv41",fontsize=16,color="green",shape="box"];1581[label="xwv301",fontsize=16,color="green",shape="box"];1582[label="xwv41",fontsize=16,color="green",shape="box"];1583[label="xwv301",fontsize=16,color="green",shape="box"];1584[label="xwv41",fontsize=16,color="green",shape="box"];1585[label="xwv301",fontsize=16,color="green",shape="box"];1586[label="xwv41",fontsize=16,color="green",shape="box"];1587[label="xwv301",fontsize=16,color="green",shape="box"];1588[label="xwv42",fontsize=16,color="green",shape="box"];1589[label="xwv302",fontsize=16,color="green",shape="box"];1590[label="xwv42",fontsize=16,color="green",shape="box"];1591[label="xwv302",fontsize=16,color="green",shape="box"];1592[label="xwv42",fontsize=16,color="green",shape="box"];1593[label="xwv302",fontsize=16,color="green",shape="box"];1594[label="xwv42",fontsize=16,color="green",shape="box"];1595[label="xwv302",fontsize=16,color="green",shape="box"];1596[label="xwv42",fontsize=16,color="green",shape="box"];1597[label="xwv302",fontsize=16,color="green",shape="box"];1598[label="xwv42",fontsize=16,color="green",shape="box"];1599[label="xwv302",fontsize=16,color="green",shape="box"];1600[label="xwv42",fontsize=16,color="green",shape="box"];1601[label="xwv302",fontsize=16,color="green",shape="box"];1602[label="xwv42",fontsize=16,color="green",shape="box"];1603[label="xwv302",fontsize=16,color="green",shape="box"];1604[label="xwv42",fontsize=16,color="green",shape="box"];1605[label="xwv302",fontsize=16,color="green",shape="box"];1606[label="xwv42",fontsize=16,color="green",shape="box"];1607[label="xwv302",fontsize=16,color="green",shape="box"];1608[label="xwv42",fontsize=16,color="green",shape="box"];1609[label="xwv302",fontsize=16,color="green",shape="box"];1610[label="xwv42",fontsize=16,color="green",shape="box"];1611[label="xwv302",fontsize=16,color="green",shape="box"];1612[label="xwv42",fontsize=16,color="green",shape="box"];1613[label="xwv302",fontsize=16,color="green",shape="box"];1614[label="xwv42",fontsize=16,color="green",shape="box"];1615[label="xwv302",fontsize=16,color="green",shape="box"];1858[label="xwv73",fontsize=16,color="green",shape="box"];1859[label="xwv76",fontsize=16,color="green",shape="box"];1860 -> 1161[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1860[label="xwv72 == xwv75 && (xwv73 < xwv76 || xwv73 == xwv76 && xwv74 <= xwv77)",fontsize=16,color="magenta"];1860 -> 1874[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1860 -> 1875[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1861[label="xwv72 < xwv75",fontsize=16,color="blue",shape="box"];4305[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4305[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4305 -> 1876[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4306[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4306[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4306 -> 1877[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4307[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4307[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4307 -> 1878[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4308[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4308[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4308 -> 1879[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4309[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4309[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4309 -> 1880[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4310[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4310[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4310 -> 1881[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4311[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4311[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4311 -> 1882[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4312[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4312[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4312 -> 1883[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4313[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4313[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4313 -> 1884[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4314[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4314[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4314 -> 1885[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4315[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4315[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4315 -> 1886[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4316[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4316[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4316 -> 1887[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4317[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4317[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4317 -> 1888[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4318[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4318[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4318 -> 1889[label="",style="solid", color="blue", weight=3]; 31.03/14.62 1862[label="xwv75",fontsize=16,color="green",shape="box"];1863[label="xwv77",fontsize=16,color="green",shape="box"];1864[label="xwv72",fontsize=16,color="green",shape="box"];1865[label="xwv74",fontsize=16,color="green",shape="box"];1857[label="compare1 (xwv172,xwv173,xwv174) (xwv175,xwv176,xwv177) (xwv178 || xwv179)",fontsize=16,color="burlywood",shape="triangle"];4319[label="xwv178/False",fontsize=10,color="white",style="solid",shape="box"];1857 -> 4319[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4319 -> 1890[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4320[label="xwv178/True",fontsize=10,color="white",style="solid",shape="box"];1857 -> 4320[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4320 -> 1891[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1625[label="xwv83 <= xwv84",fontsize=16,color="blue",shape="box"];4321[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4321[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4321 -> 1892[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4322[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4322[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4322 -> 1893[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4323[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4323[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4323 -> 1894[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4324[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4324[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4324 -> 1895[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4325[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4325[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4325 -> 1896[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4326[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4326[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4326 -> 1897[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4327[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4327[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4327 -> 1898[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4328[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4328[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4328 -> 1899[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4329[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4329[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4329 -> 1900[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4330[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4330[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4330 -> 1901[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4331[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4331[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4331 -> 1902[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4332[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4332[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4332 -> 1903[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4333[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4333[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4333 -> 1904[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4334[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4334[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4334 -> 1905[label="",style="solid", color="blue", weight=3]; 31.03/14.62 1626[label="compare1 (Left xwv149) (Left xwv150) False",fontsize=16,color="black",shape="box"];1626 -> 1906[label="",style="solid", color="black", weight=3]; 31.03/14.62 1627[label="compare1 (Left xwv149) (Left xwv150) True",fontsize=16,color="black",shape="box"];1627 -> 1907[label="",style="solid", color="black", weight=3]; 31.03/14.62 1628[label="GT",fontsize=16,color="green",shape="box"];1636[label="xwv90 <= xwv91",fontsize=16,color="blue",shape="box"];4335[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 4335[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4335 -> 1908[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4336[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 4336[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4336 -> 1909[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4337[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 4337[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4337 -> 1910[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4338[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 4338[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4338 -> 1911[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4339[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 4339[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4339 -> 1912[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4340[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 4340[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4340 -> 1913[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4341[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 4341[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4341 -> 1914[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4342[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 4342[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4342 -> 1915[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4343[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 4343[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4343 -> 1916[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4344[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 4344[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4344 -> 1917[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4345[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 4345[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4345 -> 1918[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4346[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 4346[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4346 -> 1919[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4347[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 4347[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4347 -> 1920[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4348[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 4348[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4348 -> 1921[label="",style="solid", color="blue", weight=3]; 31.03/14.62 1637[label="compare1 (Right xwv156) (Right xwv157) False",fontsize=16,color="black",shape="box"];1637 -> 1922[label="",style="solid", color="black", weight=3]; 31.03/14.62 1638[label="compare1 (Right xwv156) (Right xwv157) True",fontsize=16,color="black",shape="box"];1638 -> 1923[label="",style="solid", color="black", weight=3]; 31.03/14.62 1639[label="GT",fontsize=16,color="green",shape="box"];1640[label="GT",fontsize=16,color="green",shape="box"];1641[label="GT",fontsize=16,color="green",shape="box"];1642[label="xwv400",fontsize=16,color="green",shape="box"];1643[label="xwv3010",fontsize=16,color="green",shape="box"];1644[label="primMulNat xwv400 xwv3010",fontsize=16,color="burlywood",shape="triangle"];4349[label="xwv400/Succ xwv4000",fontsize=10,color="white",style="solid",shape="box"];1644 -> 4349[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4349 -> 1924[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4350[label="xwv400/Zero",fontsize=10,color="white",style="solid",shape="box"];1644 -> 4350[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4350 -> 1925[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1645 -> 1644[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1645[label="primMulNat xwv400 xwv3010",fontsize=16,color="magenta"];1645 -> 1926[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1646 -> 1644[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1646[label="primMulNat xwv400 xwv3010",fontsize=16,color="magenta"];1646 -> 1927[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1647 -> 1644[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1647[label="primMulNat xwv400 xwv3010",fontsize=16,color="magenta"];1647 -> 1928[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1647 -> 1929[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1933[label="xwv122",fontsize=16,color="green",shape="box"];1934[label="xwv119",fontsize=16,color="green",shape="box"];1935[label="xwv120",fontsize=16,color="green",shape="box"];1936 -> 1161[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1936[label="xwv119 == xwv121 && xwv120 <= xwv122",fontsize=16,color="magenta"];1936 -> 1945[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1936 -> 1946[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1937[label="xwv119 < xwv121",fontsize=16,color="blue",shape="box"];4351[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4351[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4351 -> 1947[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4352[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4352[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4352 -> 1948[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4353[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4353[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4353 -> 1949[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4354[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4354[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4354 -> 1950[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4355[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4355[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4355 -> 1951[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4356[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4356[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4356 -> 1952[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4357[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4357[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4357 -> 1953[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4358[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4358[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4358 -> 1954[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4359[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4359[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4359 -> 1955[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4360[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4360[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4360 -> 1956[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4361[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4361[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4361 -> 1957[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4362[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4362[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4362 -> 1958[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4363[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4363[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4363 -> 1959[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4364[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4364[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4364 -> 1960[label="",style="solid", color="blue", weight=3]; 31.03/14.62 1938[label="xwv121",fontsize=16,color="green",shape="box"];1932[label="compare1 (xwv187,xwv188) (xwv189,xwv190) (xwv191 || xwv192)",fontsize=16,color="burlywood",shape="triangle"];4365[label="xwv191/False",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4365[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4365 -> 1961[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4366[label="xwv191/True",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4366[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4366 -> 1962[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1650[label="xwv280",fontsize=16,color="green",shape="box"];1651[label="xwv330",fontsize=16,color="green",shape="box"];1652[label="xwv280",fontsize=16,color="green",shape="box"];1653[label="xwv330",fontsize=16,color="green",shape="box"];1654[label="xwv280",fontsize=16,color="green",shape="box"];1655[label="xwv330",fontsize=16,color="green",shape="box"];1656[label="xwv280",fontsize=16,color="green",shape="box"];1657[label="xwv330",fontsize=16,color="green",shape="box"];1658[label="xwv280",fontsize=16,color="green",shape="box"];1659[label="xwv330",fontsize=16,color="green",shape="box"];1660[label="xwv280",fontsize=16,color="green",shape="box"];1661[label="xwv330",fontsize=16,color="green",shape="box"];1662[label="xwv280",fontsize=16,color="green",shape="box"];1663[label="xwv330",fontsize=16,color="green",shape="box"];1664[label="xwv280",fontsize=16,color="green",shape="box"];1665[label="xwv330",fontsize=16,color="green",shape="box"];1666[label="xwv280",fontsize=16,color="green",shape="box"];1667[label="xwv330",fontsize=16,color="green",shape="box"];1668[label="xwv280",fontsize=16,color="green",shape="box"];1669[label="xwv330",fontsize=16,color="green",shape="box"];1670[label="xwv280",fontsize=16,color="green",shape="box"];1671[label="xwv330",fontsize=16,color="green",shape="box"];1672[label="xwv280",fontsize=16,color="green",shape="box"];1673[label="xwv330",fontsize=16,color="green",shape="box"];1674[label="xwv280",fontsize=16,color="green",shape="box"];1675[label="xwv330",fontsize=16,color="green",shape="box"];1676[label="xwv280",fontsize=16,color="green",shape="box"];1677[label="xwv330",fontsize=16,color="green",shape="box"];1678[label="xwv280",fontsize=16,color="green",shape="box"];1679[label="xwv330",fontsize=16,color="green",shape="box"];1680[label="xwv280",fontsize=16,color="green",shape="box"];1681[label="xwv330",fontsize=16,color="green",shape="box"];1682[label="xwv280",fontsize=16,color="green",shape="box"];1683[label="xwv330",fontsize=16,color="green",shape="box"];1684[label="xwv280",fontsize=16,color="green",shape="box"];1685[label="xwv330",fontsize=16,color="green",shape="box"];1686[label="xwv280",fontsize=16,color="green",shape="box"];1687[label="xwv330",fontsize=16,color="green",shape="box"];1688[label="xwv280",fontsize=16,color="green",shape="box"];1689[label="xwv330",fontsize=16,color="green",shape="box"];1690[label="xwv280",fontsize=16,color="green",shape="box"];1691[label="xwv330",fontsize=16,color="green",shape="box"];1692[label="xwv280",fontsize=16,color="green",shape="box"];1693[label="xwv330",fontsize=16,color="green",shape="box"];1694[label="xwv280",fontsize=16,color="green",shape="box"];1695[label="xwv330",fontsize=16,color="green",shape="box"];1696[label="xwv280",fontsize=16,color="green",shape="box"];1697[label="xwv330",fontsize=16,color="green",shape="box"];1698[label="xwv280",fontsize=16,color="green",shape="box"];1699[label="xwv330",fontsize=16,color="green",shape="box"];1700[label="xwv280",fontsize=16,color="green",shape="box"];1701[label="xwv330",fontsize=16,color="green",shape="box"];1702[label="xwv280",fontsize=16,color="green",shape="box"];1703[label="xwv330",fontsize=16,color="green",shape="box"];1704[label="xwv280",fontsize=16,color="green",shape="box"];1705[label="xwv330",fontsize=16,color="green",shape="box"];1706[label="xwv281",fontsize=16,color="green",shape="box"];1707[label="xwv331",fontsize=16,color="green",shape="box"];1708[label="xwv281",fontsize=16,color="green",shape="box"];1709[label="xwv331",fontsize=16,color="green",shape="box"];1710[label="xwv281",fontsize=16,color="green",shape="box"];1711[label="xwv331",fontsize=16,color="green",shape="box"];1712[label="xwv281",fontsize=16,color="green",shape="box"];1713[label="xwv331",fontsize=16,color="green",shape="box"];1714[label="xwv281",fontsize=16,color="green",shape="box"];1715[label="xwv331",fontsize=16,color="green",shape="box"];1716[label="xwv281",fontsize=16,color="green",shape="box"];1717[label="xwv331",fontsize=16,color="green",shape="box"];1718[label="xwv281",fontsize=16,color="green",shape="box"];1719[label="xwv331",fontsize=16,color="green",shape="box"];1720[label="xwv281",fontsize=16,color="green",shape="box"];1721[label="xwv331",fontsize=16,color="green",shape="box"];1722[label="xwv281",fontsize=16,color="green",shape="box"];1723[label="xwv331",fontsize=16,color="green",shape="box"];1724[label="xwv281",fontsize=16,color="green",shape="box"];1725[label="xwv331",fontsize=16,color="green",shape="box"];1726[label="xwv281",fontsize=16,color="green",shape="box"];1727[label="xwv331",fontsize=16,color="green",shape="box"];1728[label="xwv281",fontsize=16,color="green",shape="box"];1729[label="xwv331",fontsize=16,color="green",shape="box"];1730[label="xwv281",fontsize=16,color="green",shape="box"];1731[label="xwv331",fontsize=16,color="green",shape="box"];1732[label="xwv281",fontsize=16,color="green",shape="box"];1733[label="xwv331",fontsize=16,color="green",shape="box"];1734[label="xwv280",fontsize=16,color="green",shape="box"];1735[label="xwv331",fontsize=16,color="green",shape="box"];1736[label="xwv281",fontsize=16,color="green",shape="box"];1737[label="xwv330",fontsize=16,color="green",shape="box"];1738[label="xwv280",fontsize=16,color="green",shape="box"];1739[label="xwv331",fontsize=16,color="green",shape="box"];1740[label="xwv281",fontsize=16,color="green",shape="box"];1741[label="xwv330",fontsize=16,color="green",shape="box"];1742[label="xwv280",fontsize=16,color="green",shape="box"];1743[label="xwv330",fontsize=16,color="green",shape="box"];1744[label="xwv280",fontsize=16,color="green",shape="box"];1745[label="xwv330",fontsize=16,color="green",shape="box"];1746[label="xwv280",fontsize=16,color="green",shape="box"];1747[label="xwv330",fontsize=16,color="green",shape="box"];1748[label="xwv280",fontsize=16,color="green",shape="box"];1749[label="xwv330",fontsize=16,color="green",shape="box"];1750[label="xwv280",fontsize=16,color="green",shape="box"];1751[label="xwv330",fontsize=16,color="green",shape="box"];1752[label="xwv280",fontsize=16,color="green",shape="box"];1753[label="xwv330",fontsize=16,color="green",shape="box"];1754[label="xwv280",fontsize=16,color="green",shape="box"];1755[label="xwv330",fontsize=16,color="green",shape="box"];1756[label="xwv280",fontsize=16,color="green",shape="box"];1757[label="xwv330",fontsize=16,color="green",shape="box"];1758[label="xwv280",fontsize=16,color="green",shape="box"];1759[label="xwv330",fontsize=16,color="green",shape="box"];1760[label="xwv280",fontsize=16,color="green",shape="box"];1761[label="xwv330",fontsize=16,color="green",shape="box"];1762[label="xwv280",fontsize=16,color="green",shape="box"];1763[label="xwv330",fontsize=16,color="green",shape="box"];1764[label="xwv280",fontsize=16,color="green",shape="box"];1765[label="xwv330",fontsize=16,color="green",shape="box"];1766[label="xwv280",fontsize=16,color="green",shape="box"];1767[label="xwv330",fontsize=16,color="green",shape="box"];1768[label="xwv280",fontsize=16,color="green",shape="box"];1769[label="xwv330",fontsize=16,color="green",shape="box"];1770 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1770[label="xwv281 == xwv331",fontsize=16,color="magenta"];1770 -> 1963[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1770 -> 1964[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1771 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1771[label="xwv281 == xwv331",fontsize=16,color="magenta"];1771 -> 1965[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1771 -> 1966[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1772 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1772[label="xwv281 == xwv331",fontsize=16,color="magenta"];1772 -> 1967[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1772 -> 1968[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1773 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1773[label="xwv281 == xwv331",fontsize=16,color="magenta"];1773 -> 1969[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1773 -> 1970[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1774 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1774[label="xwv281 == xwv331",fontsize=16,color="magenta"];1774 -> 1971[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1774 -> 1972[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1775 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1775[label="xwv281 == xwv331",fontsize=16,color="magenta"];1775 -> 1973[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1775 -> 1974[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1776 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1776[label="xwv281 == xwv331",fontsize=16,color="magenta"];1776 -> 1975[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1776 -> 1976[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1777 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1777[label="xwv281 == xwv331",fontsize=16,color="magenta"];1777 -> 1977[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1777 -> 1978[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1778 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1778[label="xwv281 == xwv331",fontsize=16,color="magenta"];1778 -> 1979[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1778 -> 1980[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1779 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1779[label="xwv281 == xwv331",fontsize=16,color="magenta"];1779 -> 1981[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1779 -> 1982[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1780 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1780[label="xwv281 == xwv331",fontsize=16,color="magenta"];1780 -> 1983[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1780 -> 1984[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1781 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1781[label="xwv281 == xwv331",fontsize=16,color="magenta"];1781 -> 1985[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1781 -> 1986[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1782 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1782[label="xwv281 == xwv331",fontsize=16,color="magenta"];1782 -> 1987[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1782 -> 1988[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1783 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1783[label="xwv281 == xwv331",fontsize=16,color="magenta"];1783 -> 1989[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1783 -> 1990[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1784 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1784[label="xwv282 == xwv332",fontsize=16,color="magenta"];1784 -> 1991[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1784 -> 1992[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1785 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1785[label="xwv282 == xwv332",fontsize=16,color="magenta"];1785 -> 1993[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1785 -> 1994[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1786 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1786[label="xwv282 == xwv332",fontsize=16,color="magenta"];1786 -> 1995[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1786 -> 1996[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1787 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1787[label="xwv282 == xwv332",fontsize=16,color="magenta"];1787 -> 1997[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1787 -> 1998[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1788 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1788[label="xwv282 == xwv332",fontsize=16,color="magenta"];1788 -> 1999[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1788 -> 2000[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1789 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1789[label="xwv282 == xwv332",fontsize=16,color="magenta"];1789 -> 2001[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1789 -> 2002[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1790 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1790[label="xwv282 == xwv332",fontsize=16,color="magenta"];1790 -> 2003[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1790 -> 2004[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1791 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1791[label="xwv282 == xwv332",fontsize=16,color="magenta"];1791 -> 2005[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1791 -> 2006[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1792 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1792[label="xwv282 == xwv332",fontsize=16,color="magenta"];1792 -> 2007[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1792 -> 2008[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1793 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1793[label="xwv282 == xwv332",fontsize=16,color="magenta"];1793 -> 2009[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1793 -> 2010[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1794 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1794[label="xwv282 == xwv332",fontsize=16,color="magenta"];1794 -> 2011[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1794 -> 2012[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1795 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1795[label="xwv282 == xwv332",fontsize=16,color="magenta"];1795 -> 2013[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1795 -> 2014[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1796 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1796[label="xwv282 == xwv332",fontsize=16,color="magenta"];1796 -> 2015[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1796 -> 2016[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1797 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1797[label="xwv282 == xwv332",fontsize=16,color="magenta"];1797 -> 2017[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1797 -> 2018[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1798[label="xwv280",fontsize=16,color="green",shape="box"];1799[label="xwv330",fontsize=16,color="green",shape="box"];1800[label="xwv280",fontsize=16,color="green",shape="box"];1801[label="xwv330",fontsize=16,color="green",shape="box"];1802[label="xwv281",fontsize=16,color="green",shape="box"];1803[label="xwv331",fontsize=16,color="green",shape="box"];1804[label="xwv281",fontsize=16,color="green",shape="box"];1805[label="xwv331",fontsize=16,color="green",shape="box"];1806[label="primEqNat (Succ xwv2800) (Succ xwv3300)",fontsize=16,color="black",shape="box"];1806 -> 2019[label="",style="solid", color="black", weight=3]; 31.03/14.62 1807[label="primEqNat (Succ xwv2800) Zero",fontsize=16,color="black",shape="box"];1807 -> 2020[label="",style="solid", color="black", weight=3]; 31.03/14.62 1808[label="primEqNat Zero (Succ xwv3300)",fontsize=16,color="black",shape="box"];1808 -> 2021[label="",style="solid", color="black", weight=3]; 31.03/14.62 1809[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1809 -> 2022[label="",style="solid", color="black", weight=3]; 31.03/14.62 1810 -> 1080[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1810[label="primEqNat xwv2800 xwv3300",fontsize=16,color="magenta"];1810 -> 2023[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1810 -> 2024[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1811[label="False",fontsize=16,color="green",shape="box"];1812[label="False",fontsize=16,color="green",shape="box"];1813[label="True",fontsize=16,color="green",shape="box"];1814[label="False",fontsize=16,color="green",shape="box"];1815[label="True",fontsize=16,color="green",shape="box"];1816 -> 1080[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1816[label="primEqNat xwv2800 xwv3300",fontsize=16,color="magenta"];1816 -> 2025[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1816 -> 2026[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1817[label="False",fontsize=16,color="green",shape="box"];1818[label="False",fontsize=16,color="green",shape="box"];1819[label="True",fontsize=16,color="green",shape="box"];1820[label="False",fontsize=16,color="green",shape="box"];1821[label="True",fontsize=16,color="green",shape="box"];1823 -> 29[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1823[label="FiniteMap.sizeFM (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) > FiniteMap.sizeFM (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="magenta"];1823 -> 2027[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1823 -> 2028[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1822[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) xwv160",fontsize=16,color="burlywood",shape="triangle"];4367[label="xwv160/False",fontsize=10,color="white",style="solid",shape="box"];1822 -> 4367[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4367 -> 2029[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4368[label="xwv160/True",fontsize=10,color="white",style="solid",shape="box"];1822 -> 4368[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4368 -> 2030[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1824[label="Pos Zero",fontsize=16,color="green",shape="box"];1825[label="xwv352",fontsize=16,color="green",shape="box"];1826[label="primPlusNat xwv1620 xwv1300",fontsize=16,color="burlywood",shape="triangle"];4369[label="xwv1620/Succ xwv16200",fontsize=10,color="white",style="solid",shape="box"];1826 -> 4369[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4369 -> 2031[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4370[label="xwv1620/Zero",fontsize=10,color="white",style="solid",shape="box"];1826 -> 4370[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4370 -> 2032[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1827[label="primMinusNat (Succ xwv16200) xwv1300",fontsize=16,color="burlywood",shape="box"];4371[label="xwv1300/Succ xwv13000",fontsize=10,color="white",style="solid",shape="box"];1827 -> 4371[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4371 -> 2033[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4372[label="xwv1300/Zero",fontsize=10,color="white",style="solid",shape="box"];1827 -> 4372[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4372 -> 2034[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1828[label="primMinusNat Zero xwv1300",fontsize=16,color="burlywood",shape="box"];4373[label="xwv1300/Succ xwv13000",fontsize=10,color="white",style="solid",shape="box"];1828 -> 4373[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4373 -> 2035[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4374[label="xwv1300/Zero",fontsize=10,color="white",style="solid",shape="box"];1828 -> 4374[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4374 -> 2036[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1829[label="xwv1300",fontsize=16,color="green",shape="box"];1830[label="xwv1620",fontsize=16,color="green",shape="box"];1831 -> 1826[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1831[label="primPlusNat xwv1620 xwv1300",fontsize=16,color="magenta"];1831 -> 2037[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1831 -> 2038[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1832 -> 1520[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1832[label="FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];1833 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1833[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];1833 -> 2039[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1833 -> 2040[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1834[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 False",fontsize=16,color="black",shape="box"];1834 -> 2041[label="",style="solid", color="black", weight=3]; 31.03/14.62 1835[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 True",fontsize=16,color="black",shape="box"];1835 -> 2042[label="",style="solid", color="black", weight=3]; 31.03/14.62 1836[label="error []",fontsize=16,color="red",shape="box"];1837[label="FiniteMap.mkBalBranch6MkBalBranch02 xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="black",shape="box"];1837 -> 2043[label="",style="solid", color="black", weight=3]; 31.03/14.62 1838 -> 1518[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1838[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv35 xwv13) (FiniteMap.mkBranchRight_size xwv16 xwv35 xwv13)",fontsize=16,color="magenta"];1838 -> 2044[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1838 -> 2045[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1839[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4375[label="xwv61/Nothing",fontsize=10,color="white",style="solid",shape="box"];1839 -> 4375[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4375 -> 2046[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4376[label="xwv61/Just xwv610",fontsize=10,color="white",style="solid",shape="box"];1839 -> 4376[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4376 -> 2047[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1840[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4377[label="xwv61/False",fontsize=10,color="white",style="solid",shape="box"];1840 -> 4377[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4377 -> 2048[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4378[label="xwv61/True",fontsize=10,color="white",style="solid",shape="box"];1840 -> 4378[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4378 -> 2049[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1841[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4379[label="xwv61/(xwv610,xwv611,xwv612)",fontsize=10,color="white",style="solid",shape="box"];1841 -> 4379[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4379 -> 2050[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1842[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4380[label="xwv61/Left xwv610",fontsize=10,color="white",style="solid",shape="box"];1842 -> 4380[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4380 -> 2051[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4381[label="xwv61/Right xwv610",fontsize=10,color="white",style="solid",shape="box"];1842 -> 4381[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4381 -> 2052[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1843[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1843 -> 2053[label="",style="solid", color="black", weight=3]; 31.03/14.62 1844[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4382[label="xwv61/LT",fontsize=10,color="white",style="solid",shape="box"];1844 -> 4382[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4382 -> 2054[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4383[label="xwv61/EQ",fontsize=10,color="white",style="solid",shape="box"];1844 -> 4383[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4383 -> 2055[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4384[label="xwv61/GT",fontsize=10,color="white",style="solid",shape="box"];1844 -> 4384[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4384 -> 2056[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1845[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1845 -> 2057[label="",style="solid", color="black", weight=3]; 31.03/14.62 1846[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4385[label="xwv61/(xwv610,xwv611)",fontsize=10,color="white",style="solid",shape="box"];1846 -> 4385[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4385 -> 2058[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1847[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1847 -> 2059[label="",style="solid", color="black", weight=3]; 31.03/14.62 1848[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1848 -> 2060[label="",style="solid", color="black", weight=3]; 31.03/14.62 1849[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1849 -> 2061[label="",style="solid", color="black", weight=3]; 31.03/14.62 1850[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1850 -> 2062[label="",style="solid", color="black", weight=3]; 31.03/14.62 1851[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1851 -> 2063[label="",style="solid", color="black", weight=3]; 31.03/14.62 1852[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1852 -> 2064[label="",style="solid", color="black", weight=3]; 31.03/14.62 1853[label="compare0 (Just xwv140) (Just xwv141) otherwise",fontsize=16,color="black",shape="box"];1853 -> 2065[label="",style="solid", color="black", weight=3]; 31.03/14.62 1854[label="LT",fontsize=16,color="green",shape="box"];1874[label="xwv72 == xwv75",fontsize=16,color="blue",shape="box"];4386[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1874 -> 4386[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4386 -> 2066[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4387[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1874 -> 4387[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4387 -> 2067[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4388[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1874 -> 4388[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4388 -> 2068[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4389[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1874 -> 4389[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4389 -> 2069[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4390[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1874 -> 4390[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4390 -> 2070[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4391[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1874 -> 4391[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4391 -> 2071[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4392[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1874 -> 4392[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4392 -> 2072[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4393[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1874 -> 4393[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4393 -> 2073[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4394[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1874 -> 4394[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4394 -> 2074[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4395[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1874 -> 4395[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4395 -> 2075[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4396[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1874 -> 4396[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4396 -> 2076[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4397[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1874 -> 4397[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4397 -> 2077[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4398[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1874 -> 4398[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4398 -> 2078[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4399[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1874 -> 4399[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4399 -> 2079[label="",style="solid", color="blue", weight=3]; 31.03/14.62 1875 -> 2316[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1875[label="xwv73 < xwv76 || xwv73 == xwv76 && xwv74 <= xwv77",fontsize=16,color="magenta"];1875 -> 2317[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1875 -> 2318[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1876 -> 95[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1876[label="xwv72 < xwv75",fontsize=16,color="magenta"];1876 -> 2082[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1876 -> 2083[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1877 -> 96[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1877[label="xwv72 < xwv75",fontsize=16,color="magenta"];1877 -> 2084[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1877 -> 2085[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1878 -> 97[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1878[label="xwv72 < xwv75",fontsize=16,color="magenta"];1878 -> 2086[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1878 -> 2087[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1879 -> 98[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1879[label="xwv72 < xwv75",fontsize=16,color="magenta"];1879 -> 2088[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1879 -> 2089[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1880 -> 99[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1880[label="xwv72 < xwv75",fontsize=16,color="magenta"];1880 -> 2090[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1880 -> 2091[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1881 -> 100[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1881[label="xwv72 < xwv75",fontsize=16,color="magenta"];1881 -> 2092[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1881 -> 2093[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1882 -> 101[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1882[label="xwv72 < xwv75",fontsize=16,color="magenta"];1882 -> 2094[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1882 -> 2095[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1883 -> 102[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1883[label="xwv72 < xwv75",fontsize=16,color="magenta"];1883 -> 2096[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1883 -> 2097[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1884 -> 103[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1884[label="xwv72 < xwv75",fontsize=16,color="magenta"];1884 -> 2098[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1884 -> 2099[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1885 -> 104[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1885[label="xwv72 < xwv75",fontsize=16,color="magenta"];1885 -> 2100[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1885 -> 2101[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1886 -> 105[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1886[label="xwv72 < xwv75",fontsize=16,color="magenta"];1886 -> 2102[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1886 -> 2103[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1887 -> 106[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1887[label="xwv72 < xwv75",fontsize=16,color="magenta"];1887 -> 2104[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1887 -> 2105[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1888 -> 107[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1888[label="xwv72 < xwv75",fontsize=16,color="magenta"];1888 -> 2106[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1888 -> 2107[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1889 -> 108[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1889[label="xwv72 < xwv75",fontsize=16,color="magenta"];1889 -> 2108[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1889 -> 2109[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1890[label="compare1 (xwv172,xwv173,xwv174) (xwv175,xwv176,xwv177) (False || xwv179)",fontsize=16,color="black",shape="box"];1890 -> 2110[label="",style="solid", color="black", weight=3]; 31.03/14.62 1891[label="compare1 (xwv172,xwv173,xwv174) (xwv175,xwv176,xwv177) (True || xwv179)",fontsize=16,color="black",shape="box"];1891 -> 2111[label="",style="solid", color="black", weight=3]; 31.03/14.62 1892 -> 1839[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1892[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1892 -> 2112[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1892 -> 2113[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1893 -> 1840[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1893[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1893 -> 2114[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1893 -> 2115[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1894 -> 1841[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1894[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1894 -> 2116[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1894 -> 2117[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1895 -> 1842[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1895[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1895 -> 2118[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1895 -> 2119[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1896 -> 1843[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1896[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1896 -> 2120[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1896 -> 2121[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1897 -> 1844[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1897[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1897 -> 2122[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1897 -> 2123[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1898 -> 1845[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1898[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1898 -> 2124[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1898 -> 2125[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1899 -> 1846[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1899[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1899 -> 2126[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1899 -> 2127[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1900 -> 1847[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1900[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1900 -> 2128[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1900 -> 2129[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1901 -> 1848[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1901[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1901 -> 2130[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1901 -> 2131[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1902 -> 1849[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1902[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1902 -> 2132[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1902 -> 2133[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1903 -> 1850[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1903[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1903 -> 2134[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1903 -> 2135[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1904 -> 1851[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1904[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1904 -> 2136[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1904 -> 2137[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1905 -> 1852[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1905[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1905 -> 2138[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1905 -> 2139[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1906[label="compare0 (Left xwv149) (Left xwv150) otherwise",fontsize=16,color="black",shape="box"];1906 -> 2140[label="",style="solid", color="black", weight=3]; 31.03/14.62 1907[label="LT",fontsize=16,color="green",shape="box"];1908 -> 1839[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1908[label="xwv90 <= xwv91",fontsize=16,color="magenta"];1908 -> 2141[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1908 -> 2142[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1909 -> 1840[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1909[label="xwv90 <= xwv91",fontsize=16,color="magenta"];1909 -> 2143[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1909 -> 2144[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1910 -> 1841[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1910[label="xwv90 <= xwv91",fontsize=16,color="magenta"];1910 -> 2145[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1910 -> 2146[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1911 -> 1842[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1911[label="xwv90 <= xwv91",fontsize=16,color="magenta"];1911 -> 2147[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1911 -> 2148[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1912 -> 1843[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1912[label="xwv90 <= xwv91",fontsize=16,color="magenta"];1912 -> 2149[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1912 -> 2150[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1913 -> 1844[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1913[label="xwv90 <= xwv91",fontsize=16,color="magenta"];1913 -> 2151[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1913 -> 2152[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1914 -> 1845[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1914[label="xwv90 <= xwv91",fontsize=16,color="magenta"];1914 -> 2153[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1914 -> 2154[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1915 -> 1846[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1915[label="xwv90 <= xwv91",fontsize=16,color="magenta"];1915 -> 2155[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1915 -> 2156[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1916 -> 1847[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1916[label="xwv90 <= xwv91",fontsize=16,color="magenta"];1916 -> 2157[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1916 -> 2158[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1917 -> 1848[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1917[label="xwv90 <= xwv91",fontsize=16,color="magenta"];1917 -> 2159[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1917 -> 2160[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1918 -> 1849[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1918[label="xwv90 <= xwv91",fontsize=16,color="magenta"];1918 -> 2161[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1918 -> 2162[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1919 -> 1850[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1919[label="xwv90 <= xwv91",fontsize=16,color="magenta"];1919 -> 2163[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1919 -> 2164[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1920 -> 1851[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1920[label="xwv90 <= xwv91",fontsize=16,color="magenta"];1920 -> 2165[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1920 -> 2166[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1921 -> 1852[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1921[label="xwv90 <= xwv91",fontsize=16,color="magenta"];1921 -> 2167[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1921 -> 2168[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1922[label="compare0 (Right xwv156) (Right xwv157) otherwise",fontsize=16,color="black",shape="box"];1922 -> 2169[label="",style="solid", color="black", weight=3]; 31.03/14.62 1923[label="LT",fontsize=16,color="green",shape="box"];1924[label="primMulNat (Succ xwv4000) xwv3010",fontsize=16,color="burlywood",shape="box"];4400[label="xwv3010/Succ xwv30100",fontsize=10,color="white",style="solid",shape="box"];1924 -> 4400[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4400 -> 2170[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4401[label="xwv3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1924 -> 4401[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4401 -> 2171[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1925[label="primMulNat Zero xwv3010",fontsize=16,color="burlywood",shape="box"];4402[label="xwv3010/Succ xwv30100",fontsize=10,color="white",style="solid",shape="box"];1925 -> 4402[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4402 -> 2172[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4403[label="xwv3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1925 -> 4403[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4403 -> 2173[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 1926[label="xwv3010",fontsize=16,color="green",shape="box"];1927[label="xwv400",fontsize=16,color="green",shape="box"];1928[label="xwv400",fontsize=16,color="green",shape="box"];1929[label="xwv3010",fontsize=16,color="green",shape="box"];1945[label="xwv119 == xwv121",fontsize=16,color="blue",shape="box"];4404[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1945 -> 4404[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4404 -> 2174[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4405[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1945 -> 4405[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4405 -> 2175[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4406[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1945 -> 4406[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4406 -> 2176[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4407[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1945 -> 4407[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4407 -> 2177[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4408[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1945 -> 4408[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4408 -> 2178[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4409[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1945 -> 4409[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4409 -> 2179[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4410[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1945 -> 4410[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4410 -> 2180[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4411[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1945 -> 4411[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4411 -> 2181[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4412[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1945 -> 4412[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4412 -> 2182[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4413[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1945 -> 4413[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4413 -> 2183[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4414[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1945 -> 4414[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4414 -> 2184[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4415[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1945 -> 4415[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4415 -> 2185[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4416[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1945 -> 4416[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4416 -> 2186[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4417[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1945 -> 4417[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4417 -> 2187[label="",style="solid", color="blue", weight=3]; 31.03/14.62 1946[label="xwv120 <= xwv122",fontsize=16,color="blue",shape="box"];4418[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1946 -> 4418[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4418 -> 2188[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4419[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1946 -> 4419[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4419 -> 2189[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4420[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1946 -> 4420[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4420 -> 2190[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4421[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1946 -> 4421[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4421 -> 2191[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4422[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1946 -> 4422[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4422 -> 2192[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4423[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1946 -> 4423[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4423 -> 2193[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4424[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1946 -> 4424[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4424 -> 2194[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4425[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1946 -> 4425[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4425 -> 2195[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4426[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1946 -> 4426[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4426 -> 2196[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4427[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1946 -> 4427[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4427 -> 2197[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4428[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1946 -> 4428[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4428 -> 2198[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4429[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1946 -> 4429[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4429 -> 2199[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4430[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1946 -> 4430[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4430 -> 2200[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4431[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1946 -> 4431[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4431 -> 2201[label="",style="solid", color="blue", weight=3]; 31.03/14.62 1947 -> 95[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1947[label="xwv119 < xwv121",fontsize=16,color="magenta"];1947 -> 2202[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1947 -> 2203[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1948 -> 96[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1948[label="xwv119 < xwv121",fontsize=16,color="magenta"];1948 -> 2204[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1948 -> 2205[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1949 -> 97[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1949[label="xwv119 < xwv121",fontsize=16,color="magenta"];1949 -> 2206[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1949 -> 2207[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1950 -> 98[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1950[label="xwv119 < xwv121",fontsize=16,color="magenta"];1950 -> 2208[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1950 -> 2209[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1951 -> 99[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1951[label="xwv119 < xwv121",fontsize=16,color="magenta"];1951 -> 2210[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1951 -> 2211[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1952 -> 100[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1952[label="xwv119 < xwv121",fontsize=16,color="magenta"];1952 -> 2212[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1952 -> 2213[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1953 -> 101[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1953[label="xwv119 < xwv121",fontsize=16,color="magenta"];1953 -> 2214[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1953 -> 2215[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1954 -> 102[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1954[label="xwv119 < xwv121",fontsize=16,color="magenta"];1954 -> 2216[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1954 -> 2217[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1955 -> 103[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1955[label="xwv119 < xwv121",fontsize=16,color="magenta"];1955 -> 2218[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1955 -> 2219[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1956 -> 104[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1956[label="xwv119 < xwv121",fontsize=16,color="magenta"];1956 -> 2220[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1956 -> 2221[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1957 -> 105[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1957[label="xwv119 < xwv121",fontsize=16,color="magenta"];1957 -> 2222[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1957 -> 2223[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1958 -> 106[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1958[label="xwv119 < xwv121",fontsize=16,color="magenta"];1958 -> 2224[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1958 -> 2225[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1959 -> 107[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1959[label="xwv119 < xwv121",fontsize=16,color="magenta"];1959 -> 2226[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1959 -> 2227[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1960 -> 108[label="",style="dashed", color="red", weight=0]; 31.03/14.62 1960[label="xwv119 < xwv121",fontsize=16,color="magenta"];1960 -> 2228[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1960 -> 2229[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 1961[label="compare1 (xwv187,xwv188) (xwv189,xwv190) (False || xwv192)",fontsize=16,color="black",shape="box"];1961 -> 2230[label="",style="solid", color="black", weight=3]; 31.03/14.62 1962[label="compare1 (xwv187,xwv188) (xwv189,xwv190) (True || xwv192)",fontsize=16,color="black",shape="box"];1962 -> 2231[label="",style="solid", color="black", weight=3]; 31.03/14.62 1963[label="xwv281",fontsize=16,color="green",shape="box"];1964[label="xwv331",fontsize=16,color="green",shape="box"];1965[label="xwv281",fontsize=16,color="green",shape="box"];1966[label="xwv331",fontsize=16,color="green",shape="box"];1967[label="xwv281",fontsize=16,color="green",shape="box"];1968[label="xwv331",fontsize=16,color="green",shape="box"];1969[label="xwv281",fontsize=16,color="green",shape="box"];1970[label="xwv331",fontsize=16,color="green",shape="box"];1971[label="xwv281",fontsize=16,color="green",shape="box"];1972[label="xwv331",fontsize=16,color="green",shape="box"];1973[label="xwv281",fontsize=16,color="green",shape="box"];1974[label="xwv331",fontsize=16,color="green",shape="box"];1975[label="xwv281",fontsize=16,color="green",shape="box"];1976[label="xwv331",fontsize=16,color="green",shape="box"];1977[label="xwv281",fontsize=16,color="green",shape="box"];1978[label="xwv331",fontsize=16,color="green",shape="box"];1979[label="xwv281",fontsize=16,color="green",shape="box"];1980[label="xwv331",fontsize=16,color="green",shape="box"];1981[label="xwv281",fontsize=16,color="green",shape="box"];1982[label="xwv331",fontsize=16,color="green",shape="box"];1983[label="xwv281",fontsize=16,color="green",shape="box"];1984[label="xwv331",fontsize=16,color="green",shape="box"];1985[label="xwv281",fontsize=16,color="green",shape="box"];1986[label="xwv331",fontsize=16,color="green",shape="box"];1987[label="xwv281",fontsize=16,color="green",shape="box"];1988[label="xwv331",fontsize=16,color="green",shape="box"];1989[label="xwv281",fontsize=16,color="green",shape="box"];1990[label="xwv331",fontsize=16,color="green",shape="box"];1991[label="xwv282",fontsize=16,color="green",shape="box"];1992[label="xwv332",fontsize=16,color="green",shape="box"];1993[label="xwv282",fontsize=16,color="green",shape="box"];1994[label="xwv332",fontsize=16,color="green",shape="box"];1995[label="xwv282",fontsize=16,color="green",shape="box"];1996[label="xwv332",fontsize=16,color="green",shape="box"];1997[label="xwv282",fontsize=16,color="green",shape="box"];1998[label="xwv332",fontsize=16,color="green",shape="box"];1999[label="xwv282",fontsize=16,color="green",shape="box"];2000[label="xwv332",fontsize=16,color="green",shape="box"];2001[label="xwv282",fontsize=16,color="green",shape="box"];2002[label="xwv332",fontsize=16,color="green",shape="box"];2003[label="xwv282",fontsize=16,color="green",shape="box"];2004[label="xwv332",fontsize=16,color="green",shape="box"];2005[label="xwv282",fontsize=16,color="green",shape="box"];2006[label="xwv332",fontsize=16,color="green",shape="box"];2007[label="xwv282",fontsize=16,color="green",shape="box"];2008[label="xwv332",fontsize=16,color="green",shape="box"];2009[label="xwv282",fontsize=16,color="green",shape="box"];2010[label="xwv332",fontsize=16,color="green",shape="box"];2011[label="xwv282",fontsize=16,color="green",shape="box"];2012[label="xwv332",fontsize=16,color="green",shape="box"];2013[label="xwv282",fontsize=16,color="green",shape="box"];2014[label="xwv332",fontsize=16,color="green",shape="box"];2015[label="xwv282",fontsize=16,color="green",shape="box"];2016[label="xwv332",fontsize=16,color="green",shape="box"];2017[label="xwv282",fontsize=16,color="green",shape="box"];2018[label="xwv332",fontsize=16,color="green",shape="box"];2019 -> 1080[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2019[label="primEqNat xwv2800 xwv3300",fontsize=16,color="magenta"];2019 -> 2232[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2019 -> 2233[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2020[label="False",fontsize=16,color="green",shape="box"];2021[label="False",fontsize=16,color="green",shape="box"];2022[label="True",fontsize=16,color="green",shape="box"];2023[label="xwv2800",fontsize=16,color="green",shape="box"];2024[label="xwv3300",fontsize=16,color="green",shape="box"];2025[label="xwv2800",fontsize=16,color="green",shape="box"];2026[label="xwv3300",fontsize=16,color="green",shape="box"];2027 -> 1094[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2027[label="FiniteMap.sizeFM (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="magenta"];2027 -> 2234[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2028 -> 1094[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2028[label="FiniteMap.sizeFM (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="magenta"];2028 -> 2235[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2029[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) False",fontsize=16,color="black",shape="box"];2029 -> 2236[label="",style="solid", color="black", weight=3]; 31.03/14.62 2030[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) True",fontsize=16,color="black",shape="box"];2030 -> 2237[label="",style="solid", color="black", weight=3]; 31.03/14.62 2031[label="primPlusNat (Succ xwv16200) xwv1300",fontsize=16,color="burlywood",shape="box"];4432[label="xwv1300/Succ xwv13000",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4432[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4432 -> 2238[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4433[label="xwv1300/Zero",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4433[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4433 -> 2239[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2032[label="primPlusNat Zero xwv1300",fontsize=16,color="burlywood",shape="box"];4434[label="xwv1300/Succ xwv13000",fontsize=10,color="white",style="solid",shape="box"];2032 -> 4434[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4434 -> 2240[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4435[label="xwv1300/Zero",fontsize=10,color="white",style="solid",shape="box"];2032 -> 4435[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4435 -> 2241[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2033[label="primMinusNat (Succ xwv16200) (Succ xwv13000)",fontsize=16,color="black",shape="box"];2033 -> 2242[label="",style="solid", color="black", weight=3]; 31.03/14.62 2034[label="primMinusNat (Succ xwv16200) Zero",fontsize=16,color="black",shape="box"];2034 -> 2243[label="",style="solid", color="black", weight=3]; 31.03/14.62 2035[label="primMinusNat Zero (Succ xwv13000)",fontsize=16,color="black",shape="box"];2035 -> 2244[label="",style="solid", color="black", weight=3]; 31.03/14.62 2036[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2036 -> 2245[label="",style="solid", color="black", weight=3]; 31.03/14.62 2037[label="xwv1620",fontsize=16,color="green",shape="box"];2038[label="xwv1300",fontsize=16,color="green",shape="box"];2039 -> 1095[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2039[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2040 -> 786[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2040[label="FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];2041[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 otherwise",fontsize=16,color="black",shape="box"];2041 -> 2246[label="",style="solid", color="black", weight=3]; 31.03/14.62 2042[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv13 xwv14 xwv16 xwv35 xwv16 xwv35 xwv16",fontsize=16,color="burlywood",shape="box"];4436[label="xwv16/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2042 -> 4436[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4436 -> 2247[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4437[label="xwv16/FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164",fontsize=10,color="white",style="solid",shape="box"];2042 -> 4437[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4437 -> 2248[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2043 -> 2249[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2043[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 (FiniteMap.sizeFM xwv353 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv354)",fontsize=16,color="magenta"];2043 -> 2250[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2044[label="FiniteMap.mkBranchRight_size xwv16 xwv35 xwv13",fontsize=16,color="black",shape="box"];2044 -> 2251[label="",style="solid", color="black", weight=3]; 31.03/14.62 2045[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv35 xwv13",fontsize=16,color="black",shape="box"];2045 -> 2252[label="",style="solid", color="black", weight=3]; 31.03/14.62 2046[label="Nothing <= xwv62",fontsize=16,color="burlywood",shape="box"];4438[label="xwv62/Nothing",fontsize=10,color="white",style="solid",shape="box"];2046 -> 4438[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4438 -> 2253[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4439[label="xwv62/Just xwv620",fontsize=10,color="white",style="solid",shape="box"];2046 -> 4439[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4439 -> 2254[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2047[label="Just xwv610 <= xwv62",fontsize=16,color="burlywood",shape="box"];4440[label="xwv62/Nothing",fontsize=10,color="white",style="solid",shape="box"];2047 -> 4440[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4440 -> 2255[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4441[label="xwv62/Just xwv620",fontsize=10,color="white",style="solid",shape="box"];2047 -> 4441[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4441 -> 2256[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2048[label="False <= xwv62",fontsize=16,color="burlywood",shape="box"];4442[label="xwv62/False",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4442[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4442 -> 2257[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4443[label="xwv62/True",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4443[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4443 -> 2258[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2049[label="True <= xwv62",fontsize=16,color="burlywood",shape="box"];4444[label="xwv62/False",fontsize=10,color="white",style="solid",shape="box"];2049 -> 4444[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4444 -> 2259[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4445[label="xwv62/True",fontsize=10,color="white",style="solid",shape="box"];2049 -> 4445[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4445 -> 2260[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2050[label="(xwv610,xwv611,xwv612) <= xwv62",fontsize=16,color="burlywood",shape="box"];4446[label="xwv62/(xwv620,xwv621,xwv622)",fontsize=10,color="white",style="solid",shape="box"];2050 -> 4446[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4446 -> 2261[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2051[label="Left xwv610 <= xwv62",fontsize=16,color="burlywood",shape="box"];4447[label="xwv62/Left xwv620",fontsize=10,color="white",style="solid",shape="box"];2051 -> 4447[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4447 -> 2262[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4448[label="xwv62/Right xwv620",fontsize=10,color="white",style="solid",shape="box"];2051 -> 4448[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4448 -> 2263[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2052[label="Right xwv610 <= xwv62",fontsize=16,color="burlywood",shape="box"];4449[label="xwv62/Left xwv620",fontsize=10,color="white",style="solid",shape="box"];2052 -> 4449[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4449 -> 2264[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4450[label="xwv62/Right xwv620",fontsize=10,color="white",style="solid",shape="box"];2052 -> 4450[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4450 -> 2265[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2053 -> 2266[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2053[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2053 -> 2267[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2054[label="LT <= xwv62",fontsize=16,color="burlywood",shape="box"];4451[label="xwv62/LT",fontsize=10,color="white",style="solid",shape="box"];2054 -> 4451[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4451 -> 2275[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4452[label="xwv62/EQ",fontsize=10,color="white",style="solid",shape="box"];2054 -> 4452[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4452 -> 2276[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4453[label="xwv62/GT",fontsize=10,color="white",style="solid",shape="box"];2054 -> 4453[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4453 -> 2277[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2055[label="EQ <= xwv62",fontsize=16,color="burlywood",shape="box"];4454[label="xwv62/LT",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4454[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4454 -> 2278[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4455[label="xwv62/EQ",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4455[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4455 -> 2279[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4456[label="xwv62/GT",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4456[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4456 -> 2280[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2056[label="GT <= xwv62",fontsize=16,color="burlywood",shape="box"];4457[label="xwv62/LT",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4457[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4457 -> 2281[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4458[label="xwv62/EQ",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4458[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4458 -> 2282[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4459[label="xwv62/GT",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4459[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4459 -> 2283[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2057 -> 2266[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2057[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2057 -> 2268[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2058[label="(xwv610,xwv611) <= xwv62",fontsize=16,color="burlywood",shape="box"];4460[label="xwv62/(xwv620,xwv621)",fontsize=10,color="white",style="solid",shape="box"];2058 -> 4460[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4460 -> 2284[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2059 -> 2266[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2059[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2059 -> 2269[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2060 -> 2266[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2060[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2060 -> 2270[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2061 -> 2266[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2061[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2061 -> 2271[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2062 -> 2266[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2062[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2062 -> 2272[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2063 -> 2266[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2063[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2063 -> 2273[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2064 -> 2266[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2064[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2064 -> 2274[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2065[label="compare0 (Just xwv140) (Just xwv141) True",fontsize=16,color="black",shape="box"];2065 -> 2285[label="",style="solid", color="black", weight=3]; 31.03/14.62 2066 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2066[label="xwv72 == xwv75",fontsize=16,color="magenta"];2066 -> 2286[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2066 -> 2287[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2067 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2067[label="xwv72 == xwv75",fontsize=16,color="magenta"];2067 -> 2288[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2067 -> 2289[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2068 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2068[label="xwv72 == xwv75",fontsize=16,color="magenta"];2068 -> 2290[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2068 -> 2291[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2069 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2069[label="xwv72 == xwv75",fontsize=16,color="magenta"];2069 -> 2292[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2069 -> 2293[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2070 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2070[label="xwv72 == xwv75",fontsize=16,color="magenta"];2070 -> 2294[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2070 -> 2295[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2071 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2071[label="xwv72 == xwv75",fontsize=16,color="magenta"];2071 -> 2296[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2071 -> 2297[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2072 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2072[label="xwv72 == xwv75",fontsize=16,color="magenta"];2072 -> 2298[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2072 -> 2299[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2073 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2073[label="xwv72 == xwv75",fontsize=16,color="magenta"];2073 -> 2300[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2073 -> 2301[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2074 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2074[label="xwv72 == xwv75",fontsize=16,color="magenta"];2074 -> 2302[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2074 -> 2303[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2075 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2075[label="xwv72 == xwv75",fontsize=16,color="magenta"];2075 -> 2304[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2075 -> 2305[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2076 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2076[label="xwv72 == xwv75",fontsize=16,color="magenta"];2076 -> 2306[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2076 -> 2307[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2077 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2077[label="xwv72 == xwv75",fontsize=16,color="magenta"];2077 -> 2308[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2077 -> 2309[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2078 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2078[label="xwv72 == xwv75",fontsize=16,color="magenta"];2078 -> 2310[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2078 -> 2311[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2079 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2079[label="xwv72 == xwv75",fontsize=16,color="magenta"];2079 -> 2312[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2079 -> 2313[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2317[label="xwv73 < xwv76",fontsize=16,color="blue",shape="box"];4461[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4461[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4461 -> 2321[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4462[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4462[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4462 -> 2322[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4463[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4463[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4463 -> 2323[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4464[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4464[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4464 -> 2324[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4465[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4465[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4465 -> 2325[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4466[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4466[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4466 -> 2326[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4467[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4467[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4467 -> 2327[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4468[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4468[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4468 -> 2328[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4469[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4469[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4469 -> 2329[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4470[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4470[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4470 -> 2330[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4471[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4471[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4471 -> 2331[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4472[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4472[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4472 -> 2332[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4473[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4473[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4473 -> 2333[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4474[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4474[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4474 -> 2334[label="",style="solid", color="blue", weight=3]; 31.03/14.62 2318 -> 1161[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2318[label="xwv73 == xwv76 && xwv74 <= xwv77",fontsize=16,color="magenta"];2318 -> 2335[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2318 -> 2336[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2316[label="xwv202 || xwv203",fontsize=16,color="burlywood",shape="triangle"];4475[label="xwv202/False",fontsize=10,color="white",style="solid",shape="box"];2316 -> 4475[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4475 -> 2337[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4476[label="xwv202/True",fontsize=10,color="white",style="solid",shape="box"];2316 -> 4476[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4476 -> 2338[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2082[label="xwv75",fontsize=16,color="green",shape="box"];2083[label="xwv72",fontsize=16,color="green",shape="box"];2084[label="xwv75",fontsize=16,color="green",shape="box"];2085[label="xwv72",fontsize=16,color="green",shape="box"];2086[label="xwv75",fontsize=16,color="green",shape="box"];2087[label="xwv72",fontsize=16,color="green",shape="box"];2088[label="xwv75",fontsize=16,color="green",shape="box"];2089[label="xwv72",fontsize=16,color="green",shape="box"];2090[label="xwv75",fontsize=16,color="green",shape="box"];2091[label="xwv72",fontsize=16,color="green",shape="box"];2092[label="xwv75",fontsize=16,color="green",shape="box"];2093[label="xwv72",fontsize=16,color="green",shape="box"];2094[label="xwv75",fontsize=16,color="green",shape="box"];2095[label="xwv72",fontsize=16,color="green",shape="box"];2096[label="xwv75",fontsize=16,color="green",shape="box"];2097[label="xwv72",fontsize=16,color="green",shape="box"];2098[label="xwv75",fontsize=16,color="green",shape="box"];2099[label="xwv72",fontsize=16,color="green",shape="box"];2100[label="xwv75",fontsize=16,color="green",shape="box"];2101[label="xwv72",fontsize=16,color="green",shape="box"];2102[label="xwv75",fontsize=16,color="green",shape="box"];2103[label="xwv72",fontsize=16,color="green",shape="box"];2104[label="xwv75",fontsize=16,color="green",shape="box"];2105[label="xwv72",fontsize=16,color="green",shape="box"];2106[label="xwv75",fontsize=16,color="green",shape="box"];2107[label="xwv72",fontsize=16,color="green",shape="box"];2108[label="xwv75",fontsize=16,color="green",shape="box"];2109[label="xwv72",fontsize=16,color="green",shape="box"];2110[label="compare1 (xwv172,xwv173,xwv174) (xwv175,xwv176,xwv177) xwv179",fontsize=16,color="burlywood",shape="triangle"];4477[label="xwv179/False",fontsize=10,color="white",style="solid",shape="box"];2110 -> 4477[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4477 -> 2339[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4478[label="xwv179/True",fontsize=10,color="white",style="solid",shape="box"];2110 -> 4478[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4478 -> 2340[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2111 -> 2110[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2111[label="compare1 (xwv172,xwv173,xwv174) (xwv175,xwv176,xwv177) True",fontsize=16,color="magenta"];2111 -> 2341[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2112[label="xwv83",fontsize=16,color="green",shape="box"];2113[label="xwv84",fontsize=16,color="green",shape="box"];2114[label="xwv83",fontsize=16,color="green",shape="box"];2115[label="xwv84",fontsize=16,color="green",shape="box"];2116[label="xwv83",fontsize=16,color="green",shape="box"];2117[label="xwv84",fontsize=16,color="green",shape="box"];2118[label="xwv83",fontsize=16,color="green",shape="box"];2119[label="xwv84",fontsize=16,color="green",shape="box"];2120[label="xwv83",fontsize=16,color="green",shape="box"];2121[label="xwv84",fontsize=16,color="green",shape="box"];2122[label="xwv83",fontsize=16,color="green",shape="box"];2123[label="xwv84",fontsize=16,color="green",shape="box"];2124[label="xwv83",fontsize=16,color="green",shape="box"];2125[label="xwv84",fontsize=16,color="green",shape="box"];2126[label="xwv83",fontsize=16,color="green",shape="box"];2127[label="xwv84",fontsize=16,color="green",shape="box"];2128[label="xwv83",fontsize=16,color="green",shape="box"];2129[label="xwv84",fontsize=16,color="green",shape="box"];2130[label="xwv83",fontsize=16,color="green",shape="box"];2131[label="xwv84",fontsize=16,color="green",shape="box"];2132[label="xwv83",fontsize=16,color="green",shape="box"];2133[label="xwv84",fontsize=16,color="green",shape="box"];2134[label="xwv83",fontsize=16,color="green",shape="box"];2135[label="xwv84",fontsize=16,color="green",shape="box"];2136[label="xwv83",fontsize=16,color="green",shape="box"];2137[label="xwv84",fontsize=16,color="green",shape="box"];2138[label="xwv83",fontsize=16,color="green",shape="box"];2139[label="xwv84",fontsize=16,color="green",shape="box"];2140[label="compare0 (Left xwv149) (Left xwv150) True",fontsize=16,color="black",shape="box"];2140 -> 2342[label="",style="solid", color="black", weight=3]; 31.03/14.62 2141[label="xwv90",fontsize=16,color="green",shape="box"];2142[label="xwv91",fontsize=16,color="green",shape="box"];2143[label="xwv90",fontsize=16,color="green",shape="box"];2144[label="xwv91",fontsize=16,color="green",shape="box"];2145[label="xwv90",fontsize=16,color="green",shape="box"];2146[label="xwv91",fontsize=16,color="green",shape="box"];2147[label="xwv90",fontsize=16,color="green",shape="box"];2148[label="xwv91",fontsize=16,color="green",shape="box"];2149[label="xwv90",fontsize=16,color="green",shape="box"];2150[label="xwv91",fontsize=16,color="green",shape="box"];2151[label="xwv90",fontsize=16,color="green",shape="box"];2152[label="xwv91",fontsize=16,color="green",shape="box"];2153[label="xwv90",fontsize=16,color="green",shape="box"];2154[label="xwv91",fontsize=16,color="green",shape="box"];2155[label="xwv90",fontsize=16,color="green",shape="box"];2156[label="xwv91",fontsize=16,color="green",shape="box"];2157[label="xwv90",fontsize=16,color="green",shape="box"];2158[label="xwv91",fontsize=16,color="green",shape="box"];2159[label="xwv90",fontsize=16,color="green",shape="box"];2160[label="xwv91",fontsize=16,color="green",shape="box"];2161[label="xwv90",fontsize=16,color="green",shape="box"];2162[label="xwv91",fontsize=16,color="green",shape="box"];2163[label="xwv90",fontsize=16,color="green",shape="box"];2164[label="xwv91",fontsize=16,color="green",shape="box"];2165[label="xwv90",fontsize=16,color="green",shape="box"];2166[label="xwv91",fontsize=16,color="green",shape="box"];2167[label="xwv90",fontsize=16,color="green",shape="box"];2168[label="xwv91",fontsize=16,color="green",shape="box"];2169[label="compare0 (Right xwv156) (Right xwv157) True",fontsize=16,color="black",shape="box"];2169 -> 2343[label="",style="solid", color="black", weight=3]; 31.03/14.62 2170[label="primMulNat (Succ xwv4000) (Succ xwv30100)",fontsize=16,color="black",shape="box"];2170 -> 2344[label="",style="solid", color="black", weight=3]; 31.03/14.62 2171[label="primMulNat (Succ xwv4000) Zero",fontsize=16,color="black",shape="box"];2171 -> 2345[label="",style="solid", color="black", weight=3]; 31.03/14.62 2172[label="primMulNat Zero (Succ xwv30100)",fontsize=16,color="black",shape="box"];2172 -> 2346[label="",style="solid", color="black", weight=3]; 31.03/14.62 2173[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2173 -> 2347[label="",style="solid", color="black", weight=3]; 31.03/14.62 2174 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2174[label="xwv119 == xwv121",fontsize=16,color="magenta"];2174 -> 2348[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2174 -> 2349[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2175 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2175[label="xwv119 == xwv121",fontsize=16,color="magenta"];2175 -> 2350[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2175 -> 2351[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2176 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2176[label="xwv119 == xwv121",fontsize=16,color="magenta"];2176 -> 2352[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2176 -> 2353[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2177 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2177[label="xwv119 == xwv121",fontsize=16,color="magenta"];2177 -> 2354[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2177 -> 2355[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2178 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2178[label="xwv119 == xwv121",fontsize=16,color="magenta"];2178 -> 2356[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2178 -> 2357[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2179 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2179[label="xwv119 == xwv121",fontsize=16,color="magenta"];2179 -> 2358[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2179 -> 2359[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2180 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2180[label="xwv119 == xwv121",fontsize=16,color="magenta"];2180 -> 2360[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2180 -> 2361[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2181 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2181[label="xwv119 == xwv121",fontsize=16,color="magenta"];2181 -> 2362[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2181 -> 2363[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2182 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2182[label="xwv119 == xwv121",fontsize=16,color="magenta"];2182 -> 2364[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2182 -> 2365[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2183 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2183[label="xwv119 == xwv121",fontsize=16,color="magenta"];2183 -> 2366[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2183 -> 2367[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2184 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2184[label="xwv119 == xwv121",fontsize=16,color="magenta"];2184 -> 2368[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2184 -> 2369[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2185 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2185[label="xwv119 == xwv121",fontsize=16,color="magenta"];2185 -> 2370[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2185 -> 2371[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2186 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2186[label="xwv119 == xwv121",fontsize=16,color="magenta"];2186 -> 2372[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2186 -> 2373[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2187 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2187[label="xwv119 == xwv121",fontsize=16,color="magenta"];2187 -> 2374[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2187 -> 2375[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2188 -> 1839[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2188[label="xwv120 <= xwv122",fontsize=16,color="magenta"];2188 -> 2376[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2188 -> 2377[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2189 -> 1840[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2189[label="xwv120 <= xwv122",fontsize=16,color="magenta"];2189 -> 2378[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2189 -> 2379[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2190 -> 1841[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2190[label="xwv120 <= xwv122",fontsize=16,color="magenta"];2190 -> 2380[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2190 -> 2381[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2191 -> 1842[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2191[label="xwv120 <= xwv122",fontsize=16,color="magenta"];2191 -> 2382[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2191 -> 2383[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2192 -> 1843[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2192[label="xwv120 <= xwv122",fontsize=16,color="magenta"];2192 -> 2384[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2192 -> 2385[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2193 -> 1844[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2193[label="xwv120 <= xwv122",fontsize=16,color="magenta"];2193 -> 2386[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2193 -> 2387[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2194 -> 1845[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2194[label="xwv120 <= xwv122",fontsize=16,color="magenta"];2194 -> 2388[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2194 -> 2389[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2195 -> 1846[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2195[label="xwv120 <= xwv122",fontsize=16,color="magenta"];2195 -> 2390[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2195 -> 2391[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2196 -> 1847[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2196[label="xwv120 <= xwv122",fontsize=16,color="magenta"];2196 -> 2392[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2196 -> 2393[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2197 -> 1848[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2197[label="xwv120 <= xwv122",fontsize=16,color="magenta"];2197 -> 2394[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2197 -> 2395[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2198 -> 1849[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2198[label="xwv120 <= xwv122",fontsize=16,color="magenta"];2198 -> 2396[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2198 -> 2397[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2199 -> 1850[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2199[label="xwv120 <= xwv122",fontsize=16,color="magenta"];2199 -> 2398[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2199 -> 2399[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2200 -> 1851[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2200[label="xwv120 <= xwv122",fontsize=16,color="magenta"];2200 -> 2400[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2200 -> 2401[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2201 -> 1852[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2201[label="xwv120 <= xwv122",fontsize=16,color="magenta"];2201 -> 2402[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2201 -> 2403[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2202[label="xwv121",fontsize=16,color="green",shape="box"];2203[label="xwv119",fontsize=16,color="green",shape="box"];2204[label="xwv121",fontsize=16,color="green",shape="box"];2205[label="xwv119",fontsize=16,color="green",shape="box"];2206[label="xwv121",fontsize=16,color="green",shape="box"];2207[label="xwv119",fontsize=16,color="green",shape="box"];2208[label="xwv121",fontsize=16,color="green",shape="box"];2209[label="xwv119",fontsize=16,color="green",shape="box"];2210[label="xwv121",fontsize=16,color="green",shape="box"];2211[label="xwv119",fontsize=16,color="green",shape="box"];2212[label="xwv121",fontsize=16,color="green",shape="box"];2213[label="xwv119",fontsize=16,color="green",shape="box"];2214[label="xwv121",fontsize=16,color="green",shape="box"];2215[label="xwv119",fontsize=16,color="green",shape="box"];2216[label="xwv121",fontsize=16,color="green",shape="box"];2217[label="xwv119",fontsize=16,color="green",shape="box"];2218[label="xwv121",fontsize=16,color="green",shape="box"];2219[label="xwv119",fontsize=16,color="green",shape="box"];2220[label="xwv121",fontsize=16,color="green",shape="box"];2221[label="xwv119",fontsize=16,color="green",shape="box"];2222[label="xwv121",fontsize=16,color="green",shape="box"];2223[label="xwv119",fontsize=16,color="green",shape="box"];2224[label="xwv121",fontsize=16,color="green",shape="box"];2225[label="xwv119",fontsize=16,color="green",shape="box"];2226[label="xwv121",fontsize=16,color="green",shape="box"];2227[label="xwv119",fontsize=16,color="green",shape="box"];2228[label="xwv121",fontsize=16,color="green",shape="box"];2229[label="xwv119",fontsize=16,color="green",shape="box"];2230[label="compare1 (xwv187,xwv188) (xwv189,xwv190) xwv192",fontsize=16,color="burlywood",shape="triangle"];4479[label="xwv192/False",fontsize=10,color="white",style="solid",shape="box"];2230 -> 4479[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4479 -> 2404[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4480[label="xwv192/True",fontsize=10,color="white",style="solid",shape="box"];2230 -> 4480[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4480 -> 2405[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2231 -> 2230[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2231[label="compare1 (xwv187,xwv188) (xwv189,xwv190) True",fontsize=16,color="magenta"];2231 -> 2406[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2232[label="xwv2800",fontsize=16,color="green",shape="box"];2233[label="xwv3300",fontsize=16,color="green",shape="box"];2234[label="FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524",fontsize=16,color="green",shape="box"];2235[label="FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514",fontsize=16,color="green",shape="box"];2236[label="FiniteMap.glueBal2GlueBal0 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) otherwise",fontsize=16,color="black",shape="box"];2236 -> 2407[label="",style="solid", color="black", weight=3]; 31.03/14.62 2237 -> 75[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2237[label="FiniteMap.mkBalBranch (FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)) (FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.deleteMin (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="magenta"];2237 -> 2408[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2237 -> 2409[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2237 -> 2410[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2237 -> 2411[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2238[label="primPlusNat (Succ xwv16200) (Succ xwv13000)",fontsize=16,color="black",shape="box"];2238 -> 2412[label="",style="solid", color="black", weight=3]; 31.03/14.62 2239[label="primPlusNat (Succ xwv16200) Zero",fontsize=16,color="black",shape="box"];2239 -> 2413[label="",style="solid", color="black", weight=3]; 31.03/14.62 2240[label="primPlusNat Zero (Succ xwv13000)",fontsize=16,color="black",shape="box"];2240 -> 2414[label="",style="solid", color="black", weight=3]; 31.03/14.62 2241[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2241 -> 2415[label="",style="solid", color="black", weight=3]; 31.03/14.62 2242 -> 1553[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2242[label="primMinusNat xwv16200 xwv13000",fontsize=16,color="magenta"];2242 -> 2416[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2242 -> 2417[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2243[label="Pos (Succ xwv16200)",fontsize=16,color="green",shape="box"];2244[label="Neg (Succ xwv13000)",fontsize=16,color="green",shape="box"];2245[label="Pos Zero",fontsize=16,color="green",shape="box"];2246[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 True",fontsize=16,color="black",shape="box"];2246 -> 2418[label="",style="solid", color="black", weight=3]; 31.03/14.62 2247[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv13 xwv14 FiniteMap.EmptyFM xwv35 FiniteMap.EmptyFM xwv35 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2247 -> 2419[label="",style="solid", color="black", weight=3]; 31.03/14.62 2248[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)",fontsize=16,color="black",shape="box"];2248 -> 2420[label="",style="solid", color="black", weight=3]; 31.03/14.62 2250 -> 104[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2250[label="FiniteMap.sizeFM xwv353 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv354",fontsize=16,color="magenta"];2250 -> 2421[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2250 -> 2422[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2249[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 xwv194",fontsize=16,color="burlywood",shape="triangle"];4481[label="xwv194/False",fontsize=10,color="white",style="solid",shape="box"];2249 -> 4481[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4481 -> 2423[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4482[label="xwv194/True",fontsize=10,color="white",style="solid",shape="box"];2249 -> 4482[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4482 -> 2424[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2251 -> 1094[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2251[label="FiniteMap.sizeFM xwv35",fontsize=16,color="magenta"];2252 -> 1518[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2252[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xwv16 xwv35 xwv13)",fontsize=16,color="magenta"];2252 -> 2425[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2252 -> 2426[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2253[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2253 -> 2427[label="",style="solid", color="black", weight=3]; 31.03/14.62 2254[label="Nothing <= Just xwv620",fontsize=16,color="black",shape="box"];2254 -> 2428[label="",style="solid", color="black", weight=3]; 31.03/14.62 2255[label="Just xwv610 <= Nothing",fontsize=16,color="black",shape="box"];2255 -> 2429[label="",style="solid", color="black", weight=3]; 31.03/14.62 2256[label="Just xwv610 <= Just xwv620",fontsize=16,color="black",shape="box"];2256 -> 2430[label="",style="solid", color="black", weight=3]; 31.03/14.62 2257[label="False <= False",fontsize=16,color="black",shape="box"];2257 -> 2431[label="",style="solid", color="black", weight=3]; 31.03/14.62 2258[label="False <= True",fontsize=16,color="black",shape="box"];2258 -> 2432[label="",style="solid", color="black", weight=3]; 31.03/14.62 2259[label="True <= False",fontsize=16,color="black",shape="box"];2259 -> 2433[label="",style="solid", color="black", weight=3]; 31.03/14.62 2260[label="True <= True",fontsize=16,color="black",shape="box"];2260 -> 2434[label="",style="solid", color="black", weight=3]; 31.03/14.62 2261[label="(xwv610,xwv611,xwv612) <= (xwv620,xwv621,xwv622)",fontsize=16,color="black",shape="box"];2261 -> 2435[label="",style="solid", color="black", weight=3]; 31.03/14.62 2262[label="Left xwv610 <= Left xwv620",fontsize=16,color="black",shape="box"];2262 -> 2436[label="",style="solid", color="black", weight=3]; 31.03/14.62 2263[label="Left xwv610 <= Right xwv620",fontsize=16,color="black",shape="box"];2263 -> 2437[label="",style="solid", color="black", weight=3]; 31.03/14.62 2264[label="Right xwv610 <= Left xwv620",fontsize=16,color="black",shape="box"];2264 -> 2438[label="",style="solid", color="black", weight=3]; 31.03/14.62 2265[label="Right xwv610 <= Right xwv620",fontsize=16,color="black",shape="box"];2265 -> 2439[label="",style="solid", color="black", weight=3]; 31.03/14.62 2267 -> 187[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2267[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2267 -> 2440[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2267 -> 2441[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2266[label="xwv198 /= GT",fontsize=16,color="black",shape="triangle"];2266 -> 2442[label="",style="solid", color="black", weight=3]; 31.03/14.62 2275[label="LT <= LT",fontsize=16,color="black",shape="box"];2275 -> 2443[label="",style="solid", color="black", weight=3]; 31.03/14.62 2276[label="LT <= EQ",fontsize=16,color="black",shape="box"];2276 -> 2444[label="",style="solid", color="black", weight=3]; 31.03/14.62 2277[label="LT <= GT",fontsize=16,color="black",shape="box"];2277 -> 2445[label="",style="solid", color="black", weight=3]; 31.03/14.62 2278[label="EQ <= LT",fontsize=16,color="black",shape="box"];2278 -> 2446[label="",style="solid", color="black", weight=3]; 31.03/14.62 2279[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2279 -> 2447[label="",style="solid", color="black", weight=3]; 31.03/14.62 2280[label="EQ <= GT",fontsize=16,color="black",shape="box"];2280 -> 2448[label="",style="solid", color="black", weight=3]; 31.03/14.62 2281[label="GT <= LT",fontsize=16,color="black",shape="box"];2281 -> 2449[label="",style="solid", color="black", weight=3]; 31.03/14.62 2282[label="GT <= EQ",fontsize=16,color="black",shape="box"];2282 -> 2450[label="",style="solid", color="black", weight=3]; 31.03/14.62 2283[label="GT <= GT",fontsize=16,color="black",shape="box"];2283 -> 2451[label="",style="solid", color="black", weight=3]; 31.03/14.62 2268 -> 189[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2268[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2268 -> 2452[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2268 -> 2453[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2284[label="(xwv610,xwv611) <= (xwv620,xwv621)",fontsize=16,color="black",shape="box"];2284 -> 2454[label="",style="solid", color="black", weight=3]; 31.03/14.62 2269 -> 191[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2269[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2269 -> 2455[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2269 -> 2456[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2270 -> 192[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2270[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2270 -> 2457[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2270 -> 2458[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2271 -> 193[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2271[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2271 -> 2459[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2271 -> 2460[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2272 -> 194[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2272[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2272 -> 2461[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2272 -> 2462[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2273 -> 195[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2273[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2273 -> 2463[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2273 -> 2464[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2274 -> 196[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2274[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2274 -> 2465[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2274 -> 2466[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2285[label="GT",fontsize=16,color="green",shape="box"];2286[label="xwv72",fontsize=16,color="green",shape="box"];2287[label="xwv75",fontsize=16,color="green",shape="box"];2288[label="xwv72",fontsize=16,color="green",shape="box"];2289[label="xwv75",fontsize=16,color="green",shape="box"];2290[label="xwv72",fontsize=16,color="green",shape="box"];2291[label="xwv75",fontsize=16,color="green",shape="box"];2292[label="xwv72",fontsize=16,color="green",shape="box"];2293[label="xwv75",fontsize=16,color="green",shape="box"];2294[label="xwv72",fontsize=16,color="green",shape="box"];2295[label="xwv75",fontsize=16,color="green",shape="box"];2296[label="xwv72",fontsize=16,color="green",shape="box"];2297[label="xwv75",fontsize=16,color="green",shape="box"];2298[label="xwv72",fontsize=16,color="green",shape="box"];2299[label="xwv75",fontsize=16,color="green",shape="box"];2300[label="xwv72",fontsize=16,color="green",shape="box"];2301[label="xwv75",fontsize=16,color="green",shape="box"];2302[label="xwv72",fontsize=16,color="green",shape="box"];2303[label="xwv75",fontsize=16,color="green",shape="box"];2304[label="xwv72",fontsize=16,color="green",shape="box"];2305[label="xwv75",fontsize=16,color="green",shape="box"];2306[label="xwv72",fontsize=16,color="green",shape="box"];2307[label="xwv75",fontsize=16,color="green",shape="box"];2308[label="xwv72",fontsize=16,color="green",shape="box"];2309[label="xwv75",fontsize=16,color="green",shape="box"];2310[label="xwv72",fontsize=16,color="green",shape="box"];2311[label="xwv75",fontsize=16,color="green",shape="box"];2312[label="xwv72",fontsize=16,color="green",shape="box"];2313[label="xwv75",fontsize=16,color="green",shape="box"];2321 -> 95[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2321[label="xwv73 < xwv76",fontsize=16,color="magenta"];2321 -> 2467[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2321 -> 2468[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2322 -> 96[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2322[label="xwv73 < xwv76",fontsize=16,color="magenta"];2322 -> 2469[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2322 -> 2470[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2323 -> 97[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2323[label="xwv73 < xwv76",fontsize=16,color="magenta"];2323 -> 2471[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2323 -> 2472[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2324 -> 98[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2324[label="xwv73 < xwv76",fontsize=16,color="magenta"];2324 -> 2473[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2324 -> 2474[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2325 -> 99[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2325[label="xwv73 < xwv76",fontsize=16,color="magenta"];2325 -> 2475[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2325 -> 2476[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2326 -> 100[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2326[label="xwv73 < xwv76",fontsize=16,color="magenta"];2326 -> 2477[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2326 -> 2478[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2327 -> 101[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2327[label="xwv73 < xwv76",fontsize=16,color="magenta"];2327 -> 2479[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2327 -> 2480[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2328 -> 102[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2328[label="xwv73 < xwv76",fontsize=16,color="magenta"];2328 -> 2481[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2328 -> 2482[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2329 -> 103[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2329[label="xwv73 < xwv76",fontsize=16,color="magenta"];2329 -> 2483[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2329 -> 2484[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2330 -> 104[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2330[label="xwv73 < xwv76",fontsize=16,color="magenta"];2330 -> 2485[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2330 -> 2486[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2331 -> 105[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2331[label="xwv73 < xwv76",fontsize=16,color="magenta"];2331 -> 2487[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2331 -> 2488[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2332 -> 106[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2332[label="xwv73 < xwv76",fontsize=16,color="magenta"];2332 -> 2489[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2332 -> 2490[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2333 -> 107[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2333[label="xwv73 < xwv76",fontsize=16,color="magenta"];2333 -> 2491[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2333 -> 2492[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2334 -> 108[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2334[label="xwv73 < xwv76",fontsize=16,color="magenta"];2334 -> 2493[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2334 -> 2494[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2335[label="xwv73 == xwv76",fontsize=16,color="blue",shape="box"];4483[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4483[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4483 -> 2495[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4484[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4484[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4484 -> 2496[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4485[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4485[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4485 -> 2497[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4486[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4486[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4486 -> 2498[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4487[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4487[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4487 -> 2499[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4488[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4488[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4488 -> 2500[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4489[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4489[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4489 -> 2501[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4490[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4490[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4490 -> 2502[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4491[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4491[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4491 -> 2503[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4492[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4492[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4492 -> 2504[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4493[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4493[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4493 -> 2505[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4494[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4494[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4494 -> 2506[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4495[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4495[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4495 -> 2507[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4496[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4496[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4496 -> 2508[label="",style="solid", color="blue", weight=3]; 31.03/14.62 2336[label="xwv74 <= xwv77",fontsize=16,color="blue",shape="box"];4497[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4497[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4497 -> 2509[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4498[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4498[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4498 -> 2510[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4499[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4499[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4499 -> 2511[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4500[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4500[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4500 -> 2512[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4501[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4501[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4501 -> 2513[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4502[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4502[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4502 -> 2514[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4503[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4503[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4503 -> 2515[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4504[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4504[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4504 -> 2516[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4505[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4505[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4505 -> 2517[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4506[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4506[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4506 -> 2518[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4507[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4507[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4507 -> 2519[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4508[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4508[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4508 -> 2520[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4509[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4509[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4509 -> 2521[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4510[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4510[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4510 -> 2522[label="",style="solid", color="blue", weight=3]; 31.03/14.62 2337[label="False || xwv203",fontsize=16,color="black",shape="box"];2337 -> 2523[label="",style="solid", color="black", weight=3]; 31.03/14.62 2338[label="True || xwv203",fontsize=16,color="black",shape="box"];2338 -> 2524[label="",style="solid", color="black", weight=3]; 31.03/14.62 2339[label="compare1 (xwv172,xwv173,xwv174) (xwv175,xwv176,xwv177) False",fontsize=16,color="black",shape="box"];2339 -> 2525[label="",style="solid", color="black", weight=3]; 31.03/14.62 2340[label="compare1 (xwv172,xwv173,xwv174) (xwv175,xwv176,xwv177) True",fontsize=16,color="black",shape="box"];2340 -> 2526[label="",style="solid", color="black", weight=3]; 31.03/14.62 2341[label="True",fontsize=16,color="green",shape="box"];2342[label="GT",fontsize=16,color="green",shape="box"];2343[label="GT",fontsize=16,color="green",shape="box"];2344 -> 1826[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2344[label="primPlusNat (primMulNat xwv4000 (Succ xwv30100)) (Succ xwv30100)",fontsize=16,color="magenta"];2344 -> 2527[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2344 -> 2528[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2345[label="Zero",fontsize=16,color="green",shape="box"];2346[label="Zero",fontsize=16,color="green",shape="box"];2347[label="Zero",fontsize=16,color="green",shape="box"];2348[label="xwv119",fontsize=16,color="green",shape="box"];2349[label="xwv121",fontsize=16,color="green",shape="box"];2350[label="xwv119",fontsize=16,color="green",shape="box"];2351[label="xwv121",fontsize=16,color="green",shape="box"];2352[label="xwv119",fontsize=16,color="green",shape="box"];2353[label="xwv121",fontsize=16,color="green",shape="box"];2354[label="xwv119",fontsize=16,color="green",shape="box"];2355[label="xwv121",fontsize=16,color="green",shape="box"];2356[label="xwv119",fontsize=16,color="green",shape="box"];2357[label="xwv121",fontsize=16,color="green",shape="box"];2358[label="xwv119",fontsize=16,color="green",shape="box"];2359[label="xwv121",fontsize=16,color="green",shape="box"];2360[label="xwv119",fontsize=16,color="green",shape="box"];2361[label="xwv121",fontsize=16,color="green",shape="box"];2362[label="xwv119",fontsize=16,color="green",shape="box"];2363[label="xwv121",fontsize=16,color="green",shape="box"];2364[label="xwv119",fontsize=16,color="green",shape="box"];2365[label="xwv121",fontsize=16,color="green",shape="box"];2366[label="xwv119",fontsize=16,color="green",shape="box"];2367[label="xwv121",fontsize=16,color="green",shape="box"];2368[label="xwv119",fontsize=16,color="green",shape="box"];2369[label="xwv121",fontsize=16,color="green",shape="box"];2370[label="xwv119",fontsize=16,color="green",shape="box"];2371[label="xwv121",fontsize=16,color="green",shape="box"];2372[label="xwv119",fontsize=16,color="green",shape="box"];2373[label="xwv121",fontsize=16,color="green",shape="box"];2374[label="xwv119",fontsize=16,color="green",shape="box"];2375[label="xwv121",fontsize=16,color="green",shape="box"];2376[label="xwv120",fontsize=16,color="green",shape="box"];2377[label="xwv122",fontsize=16,color="green",shape="box"];2378[label="xwv120",fontsize=16,color="green",shape="box"];2379[label="xwv122",fontsize=16,color="green",shape="box"];2380[label="xwv120",fontsize=16,color="green",shape="box"];2381[label="xwv122",fontsize=16,color="green",shape="box"];2382[label="xwv120",fontsize=16,color="green",shape="box"];2383[label="xwv122",fontsize=16,color="green",shape="box"];2384[label="xwv120",fontsize=16,color="green",shape="box"];2385[label="xwv122",fontsize=16,color="green",shape="box"];2386[label="xwv120",fontsize=16,color="green",shape="box"];2387[label="xwv122",fontsize=16,color="green",shape="box"];2388[label="xwv120",fontsize=16,color="green",shape="box"];2389[label="xwv122",fontsize=16,color="green",shape="box"];2390[label="xwv120",fontsize=16,color="green",shape="box"];2391[label="xwv122",fontsize=16,color="green",shape="box"];2392[label="xwv120",fontsize=16,color="green",shape="box"];2393[label="xwv122",fontsize=16,color="green",shape="box"];2394[label="xwv120",fontsize=16,color="green",shape="box"];2395[label="xwv122",fontsize=16,color="green",shape="box"];2396[label="xwv120",fontsize=16,color="green",shape="box"];2397[label="xwv122",fontsize=16,color="green",shape="box"];2398[label="xwv120",fontsize=16,color="green",shape="box"];2399[label="xwv122",fontsize=16,color="green",shape="box"];2400[label="xwv120",fontsize=16,color="green",shape="box"];2401[label="xwv122",fontsize=16,color="green",shape="box"];2402[label="xwv120",fontsize=16,color="green",shape="box"];2403[label="xwv122",fontsize=16,color="green",shape="box"];2404[label="compare1 (xwv187,xwv188) (xwv189,xwv190) False",fontsize=16,color="black",shape="box"];2404 -> 2529[label="",style="solid", color="black", weight=3]; 31.03/14.62 2405[label="compare1 (xwv187,xwv188) (xwv189,xwv190) True",fontsize=16,color="black",shape="box"];2405 -> 2530[label="",style="solid", color="black", weight=3]; 31.03/14.62 2406[label="True",fontsize=16,color="green",shape="box"];2407[label="FiniteMap.glueBal2GlueBal0 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) True",fontsize=16,color="black",shape="box"];2407 -> 2531[label="",style="solid", color="black", weight=3]; 31.03/14.62 2408[label="FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="black",shape="box"];2408 -> 2532[label="",style="solid", color="black", weight=3]; 31.03/14.62 2409[label="FiniteMap.deleteMin (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="burlywood",shape="triangle"];4511[label="xwv523/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4511[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4511 -> 2533[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4512[label="xwv523/FiniteMap.Branch xwv5230 xwv5231 xwv5232 xwv5233 xwv5234",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4512[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4512 -> 2534[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2410[label="FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="black",shape="box"];2410 -> 2535[label="",style="solid", color="black", weight=3]; 31.03/14.62 2411[label="FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514",fontsize=16,color="green",shape="box"];2412[label="Succ (Succ (primPlusNat xwv16200 xwv13000))",fontsize=16,color="green",shape="box"];2412 -> 2536[label="",style="dashed", color="green", weight=3]; 31.03/14.62 2413[label="Succ xwv16200",fontsize=16,color="green",shape="box"];2414[label="Succ xwv13000",fontsize=16,color="green",shape="box"];2415[label="Zero",fontsize=16,color="green",shape="box"];2416[label="xwv16200",fontsize=16,color="green",shape="box"];2417[label="xwv13000",fontsize=16,color="green",shape="box"];2418[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="box"];2418 -> 2537[label="",style="solid", color="black", weight=3]; 31.03/14.62 2419[label="error []",fontsize=16,color="red",shape="box"];2420[label="FiniteMap.mkBalBranch6MkBalBranch12 xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)",fontsize=16,color="black",shape="box"];2420 -> 2538[label="",style="solid", color="black", weight=3]; 31.03/14.62 2421 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2421[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv354",fontsize=16,color="magenta"];2421 -> 2539[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2421 -> 2540[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2422 -> 1094[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2422[label="FiniteMap.sizeFM xwv353",fontsize=16,color="magenta"];2422 -> 2541[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2423[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 False",fontsize=16,color="black",shape="box"];2423 -> 2542[label="",style="solid", color="black", weight=3]; 31.03/14.62 2424[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 True",fontsize=16,color="black",shape="box"];2424 -> 2543[label="",style="solid", color="black", weight=3]; 31.03/14.62 2425[label="FiniteMap.mkBranchLeft_size xwv16 xwv35 xwv13",fontsize=16,color="black",shape="box"];2425 -> 2544[label="",style="solid", color="black", weight=3]; 31.03/14.62 2426[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];2427[label="True",fontsize=16,color="green",shape="box"];2428[label="True",fontsize=16,color="green",shape="box"];2429[label="False",fontsize=16,color="green",shape="box"];2430[label="xwv610 <= xwv620",fontsize=16,color="blue",shape="box"];4513[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 4513[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4513 -> 2545[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4514[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 4514[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4514 -> 2546[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4515[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 4515[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4515 -> 2547[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4516[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 4516[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4516 -> 2548[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4517[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 4517[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4517 -> 2549[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4518[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 4518[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4518 -> 2550[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4519[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 4519[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4519 -> 2551[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4520[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 4520[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4520 -> 2552[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4521[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 4521[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4521 -> 2553[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4522[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 4522[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4522 -> 2554[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4523[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 4523[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4523 -> 2555[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4524[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 4524[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4524 -> 2556[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4525[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 4525[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4525 -> 2557[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4526[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 4526[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4526 -> 2558[label="",style="solid", color="blue", weight=3]; 31.03/14.62 2431[label="True",fontsize=16,color="green",shape="box"];2432[label="True",fontsize=16,color="green",shape="box"];2433[label="False",fontsize=16,color="green",shape="box"];2434[label="True",fontsize=16,color="green",shape="box"];2435 -> 2316[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2435[label="xwv610 < xwv620 || xwv610 == xwv620 && (xwv611 < xwv621 || xwv611 == xwv621 && xwv612 <= xwv622)",fontsize=16,color="magenta"];2435 -> 2559[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2435 -> 2560[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2436[label="xwv610 <= xwv620",fontsize=16,color="blue",shape="box"];4527[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 4527[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4527 -> 2561[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4528[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 4528[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4528 -> 2562[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4529[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 4529[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4529 -> 2563[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4530[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 4530[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4530 -> 2564[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4531[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 4531[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4531 -> 2565[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4532[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 4532[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4532 -> 2566[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4533[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 4533[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4533 -> 2567[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4534[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 4534[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4534 -> 2568[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4535[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 4535[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4535 -> 2569[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4536[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 4536[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4536 -> 2570[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4537[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 4537[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4537 -> 2571[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4538[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 4538[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4538 -> 2572[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4539[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 4539[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4539 -> 2573[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4540[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 4540[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4540 -> 2574[label="",style="solid", color="blue", weight=3]; 31.03/14.62 2437[label="True",fontsize=16,color="green",shape="box"];2438[label="False",fontsize=16,color="green",shape="box"];2439[label="xwv610 <= xwv620",fontsize=16,color="blue",shape="box"];4541[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 4541[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4541 -> 2575[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4542[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 4542[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4542 -> 2576[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4543[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 4543[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4543 -> 2577[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4544[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 4544[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4544 -> 2578[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4545[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 4545[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4545 -> 2579[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4546[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 4546[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4546 -> 2580[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4547[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 4547[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4547 -> 2581[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4548[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 4548[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4548 -> 2582[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4549[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 4549[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4549 -> 2583[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4550[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 4550[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4550 -> 2584[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4551[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 4551[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4551 -> 2585[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4552[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 4552[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4552 -> 2586[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4553[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 4553[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4553 -> 2587[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4554[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2439 -> 4554[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4554 -> 2588[label="",style="solid", color="blue", weight=3]; 31.03/14.62 2440[label="xwv61",fontsize=16,color="green",shape="box"];2441[label="xwv62",fontsize=16,color="green",shape="box"];2442 -> 2589[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2442[label="not (xwv198 == GT)",fontsize=16,color="magenta"];2442 -> 2590[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2443[label="True",fontsize=16,color="green",shape="box"];2444[label="True",fontsize=16,color="green",shape="box"];2445[label="True",fontsize=16,color="green",shape="box"];2446[label="False",fontsize=16,color="green",shape="box"];2447[label="True",fontsize=16,color="green",shape="box"];2448[label="True",fontsize=16,color="green",shape="box"];2449[label="False",fontsize=16,color="green",shape="box"];2450[label="False",fontsize=16,color="green",shape="box"];2451[label="True",fontsize=16,color="green",shape="box"];2452[label="xwv61",fontsize=16,color="green",shape="box"];2453[label="xwv62",fontsize=16,color="green",shape="box"];2454 -> 2316[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2454[label="xwv610 < xwv620 || xwv610 == xwv620 && xwv611 <= xwv621",fontsize=16,color="magenta"];2454 -> 2591[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2454 -> 2592[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2455[label="xwv61",fontsize=16,color="green",shape="box"];2456[label="xwv62",fontsize=16,color="green",shape="box"];2457[label="xwv61",fontsize=16,color="green",shape="box"];2458[label="xwv62",fontsize=16,color="green",shape="box"];2459[label="xwv61",fontsize=16,color="green",shape="box"];2460[label="xwv62",fontsize=16,color="green",shape="box"];2461[label="xwv61",fontsize=16,color="green",shape="box"];2462[label="xwv62",fontsize=16,color="green",shape="box"];2463[label="xwv61",fontsize=16,color="green",shape="box"];2464[label="xwv62",fontsize=16,color="green",shape="box"];2465[label="xwv61",fontsize=16,color="green",shape="box"];2466[label="xwv62",fontsize=16,color="green",shape="box"];2467[label="xwv76",fontsize=16,color="green",shape="box"];2468[label="xwv73",fontsize=16,color="green",shape="box"];2469[label="xwv76",fontsize=16,color="green",shape="box"];2470[label="xwv73",fontsize=16,color="green",shape="box"];2471[label="xwv76",fontsize=16,color="green",shape="box"];2472[label="xwv73",fontsize=16,color="green",shape="box"];2473[label="xwv76",fontsize=16,color="green",shape="box"];2474[label="xwv73",fontsize=16,color="green",shape="box"];2475[label="xwv76",fontsize=16,color="green",shape="box"];2476[label="xwv73",fontsize=16,color="green",shape="box"];2477[label="xwv76",fontsize=16,color="green",shape="box"];2478[label="xwv73",fontsize=16,color="green",shape="box"];2479[label="xwv76",fontsize=16,color="green",shape="box"];2480[label="xwv73",fontsize=16,color="green",shape="box"];2481[label="xwv76",fontsize=16,color="green",shape="box"];2482[label="xwv73",fontsize=16,color="green",shape="box"];2483[label="xwv76",fontsize=16,color="green",shape="box"];2484[label="xwv73",fontsize=16,color="green",shape="box"];2485[label="xwv76",fontsize=16,color="green",shape="box"];2486[label="xwv73",fontsize=16,color="green",shape="box"];2487[label="xwv76",fontsize=16,color="green",shape="box"];2488[label="xwv73",fontsize=16,color="green",shape="box"];2489[label="xwv76",fontsize=16,color="green",shape="box"];2490[label="xwv73",fontsize=16,color="green",shape="box"];2491[label="xwv76",fontsize=16,color="green",shape="box"];2492[label="xwv73",fontsize=16,color="green",shape="box"];2493[label="xwv76",fontsize=16,color="green",shape="box"];2494[label="xwv73",fontsize=16,color="green",shape="box"];2495 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2495[label="xwv73 == xwv76",fontsize=16,color="magenta"];2495 -> 2593[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2495 -> 2594[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2496 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2496[label="xwv73 == xwv76",fontsize=16,color="magenta"];2496 -> 2595[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2496 -> 2596[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2497 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2497[label="xwv73 == xwv76",fontsize=16,color="magenta"];2497 -> 2597[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2497 -> 2598[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2498 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2498[label="xwv73 == xwv76",fontsize=16,color="magenta"];2498 -> 2599[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2498 -> 2600[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2499 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2499[label="xwv73 == xwv76",fontsize=16,color="magenta"];2499 -> 2601[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2499 -> 2602[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2500 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2500[label="xwv73 == xwv76",fontsize=16,color="magenta"];2500 -> 2603[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2500 -> 2604[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2501 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2501[label="xwv73 == xwv76",fontsize=16,color="magenta"];2501 -> 2605[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2501 -> 2606[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2502 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2502[label="xwv73 == xwv76",fontsize=16,color="magenta"];2502 -> 2607[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2502 -> 2608[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2503 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2503[label="xwv73 == xwv76",fontsize=16,color="magenta"];2503 -> 2609[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2503 -> 2610[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2504 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2504[label="xwv73 == xwv76",fontsize=16,color="magenta"];2504 -> 2611[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2504 -> 2612[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2505 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2505[label="xwv73 == xwv76",fontsize=16,color="magenta"];2505 -> 2613[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2505 -> 2614[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2506 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2506[label="xwv73 == xwv76",fontsize=16,color="magenta"];2506 -> 2615[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2506 -> 2616[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2507 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2507[label="xwv73 == xwv76",fontsize=16,color="magenta"];2507 -> 2617[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2507 -> 2618[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2508 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2508[label="xwv73 == xwv76",fontsize=16,color="magenta"];2508 -> 2619[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2508 -> 2620[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2509 -> 1839[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2509[label="xwv74 <= xwv77",fontsize=16,color="magenta"];2509 -> 2621[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2509 -> 2622[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2510 -> 1840[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2510[label="xwv74 <= xwv77",fontsize=16,color="magenta"];2510 -> 2623[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2510 -> 2624[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2511 -> 1841[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2511[label="xwv74 <= xwv77",fontsize=16,color="magenta"];2511 -> 2625[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2511 -> 2626[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2512 -> 1842[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2512[label="xwv74 <= xwv77",fontsize=16,color="magenta"];2512 -> 2627[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2512 -> 2628[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2513 -> 1843[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2513[label="xwv74 <= xwv77",fontsize=16,color="magenta"];2513 -> 2629[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2513 -> 2630[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2514 -> 1844[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2514[label="xwv74 <= xwv77",fontsize=16,color="magenta"];2514 -> 2631[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2514 -> 2632[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2515 -> 1845[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2515[label="xwv74 <= xwv77",fontsize=16,color="magenta"];2515 -> 2633[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2515 -> 2634[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2516 -> 1846[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2516[label="xwv74 <= xwv77",fontsize=16,color="magenta"];2516 -> 2635[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2516 -> 2636[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2517 -> 1847[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2517[label="xwv74 <= xwv77",fontsize=16,color="magenta"];2517 -> 2637[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2517 -> 2638[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2518 -> 1848[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2518[label="xwv74 <= xwv77",fontsize=16,color="magenta"];2518 -> 2639[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2518 -> 2640[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2519 -> 1849[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2519[label="xwv74 <= xwv77",fontsize=16,color="magenta"];2519 -> 2641[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2519 -> 2642[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2520 -> 1850[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2520[label="xwv74 <= xwv77",fontsize=16,color="magenta"];2520 -> 2643[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2520 -> 2644[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2521 -> 1851[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2521[label="xwv74 <= xwv77",fontsize=16,color="magenta"];2521 -> 2645[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2521 -> 2646[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2522 -> 1852[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2522[label="xwv74 <= xwv77",fontsize=16,color="magenta"];2522 -> 2647[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2522 -> 2648[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2523[label="xwv203",fontsize=16,color="green",shape="box"];2524[label="True",fontsize=16,color="green",shape="box"];2525[label="compare0 (xwv172,xwv173,xwv174) (xwv175,xwv176,xwv177) otherwise",fontsize=16,color="black",shape="box"];2525 -> 2649[label="",style="solid", color="black", weight=3]; 31.03/14.62 2526[label="LT",fontsize=16,color="green",shape="box"];2527 -> 1644[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2527[label="primMulNat xwv4000 (Succ xwv30100)",fontsize=16,color="magenta"];2527 -> 2650[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2527 -> 2651[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2528[label="Succ xwv30100",fontsize=16,color="green",shape="box"];2529[label="compare0 (xwv187,xwv188) (xwv189,xwv190) otherwise",fontsize=16,color="black",shape="box"];2529 -> 2652[label="",style="solid", color="black", weight=3]; 31.03/14.62 2530[label="LT",fontsize=16,color="green",shape="box"];2531 -> 75[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2531[label="FiniteMap.mkBalBranch (FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)) (FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)) (FiniteMap.deleteMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="magenta"];2531 -> 2653[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2531 -> 2654[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2531 -> 2655[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2531 -> 2656[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2532[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.glueBal2Vv3 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="black",shape="box"];2532 -> 2657[label="",style="solid", color="black", weight=3]; 31.03/14.62 2533[label="FiniteMap.deleteMin (FiniteMap.Branch xwv520 xwv521 xwv522 FiniteMap.EmptyFM xwv524)",fontsize=16,color="black",shape="box"];2533 -> 2658[label="",style="solid", color="black", weight=3]; 31.03/14.62 2534[label="FiniteMap.deleteMin (FiniteMap.Branch xwv520 xwv521 xwv522 (FiniteMap.Branch xwv5230 xwv5231 xwv5232 xwv5233 xwv5234) xwv524)",fontsize=16,color="black",shape="box"];2534 -> 2659[label="",style="solid", color="black", weight=3]; 31.03/14.62 2535[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.glueBal2Vv3 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="black",shape="box"];2535 -> 2660[label="",style="solid", color="black", weight=3]; 31.03/14.62 2536 -> 1826[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2536[label="primPlusNat xwv16200 xwv13000",fontsize=16,color="magenta"];2536 -> 2661[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2536 -> 2662[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2537 -> 607[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2537[label="FiniteMap.mkBranchResult xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];2538 -> 2663[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2538[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 (FiniteMap.sizeFM xwv164 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv163)",fontsize=16,color="magenta"];2538 -> 2664[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2539[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2540 -> 1094[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2540[label="FiniteMap.sizeFM xwv354",fontsize=16,color="magenta"];2540 -> 2665[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2541[label="xwv353",fontsize=16,color="green",shape="box"];2542[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 otherwise",fontsize=16,color="black",shape="box"];2542 -> 2666[label="",style="solid", color="black", weight=3]; 31.03/14.62 2543[label="FiniteMap.mkBalBranch6Single_L xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="black",shape="box"];2543 -> 2667[label="",style="solid", color="black", weight=3]; 31.03/14.62 2544 -> 1094[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2544[label="FiniteMap.sizeFM xwv16",fontsize=16,color="magenta"];2544 -> 2668[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2545 -> 1839[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2545[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2545 -> 2669[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2545 -> 2670[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2546 -> 1840[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2546[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2546 -> 2671[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2546 -> 2672[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2547 -> 1841[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2547[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2547 -> 2673[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2547 -> 2674[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2548 -> 1842[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2548[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2548 -> 2675[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2548 -> 2676[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2549 -> 1843[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2549[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2549 -> 2677[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2549 -> 2678[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2550 -> 1844[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2550[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2550 -> 2679[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2550 -> 2680[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2551 -> 1845[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2551[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2551 -> 2681[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2551 -> 2682[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2552 -> 1846[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2552[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2552 -> 2683[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2552 -> 2684[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2553 -> 1847[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2553[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2553 -> 2685[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2553 -> 2686[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2554 -> 1848[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2554[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2554 -> 2687[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2554 -> 2688[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2555 -> 1849[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2555[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2555 -> 2689[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2555 -> 2690[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2556 -> 1850[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2556[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2556 -> 2691[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2556 -> 2692[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2557 -> 1851[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2557[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2557 -> 2693[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2557 -> 2694[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2558 -> 1852[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2558[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2558 -> 2695[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2558 -> 2696[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2559[label="xwv610 < xwv620",fontsize=16,color="blue",shape="box"];4555[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4555[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4555 -> 2697[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4556[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4556[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4556 -> 2698[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4557[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4557[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4557 -> 2699[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4558[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4558[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4558 -> 2700[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4559[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4559[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4559 -> 2701[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4560[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4560[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4560 -> 2702[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4561[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4561[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4561 -> 2703[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4562[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4562[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4562 -> 2704[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4563[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4563[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4563 -> 2705[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4564[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4564[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4564 -> 2706[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4565[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4565[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4565 -> 2707[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4566[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4566[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4566 -> 2708[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4567[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4567[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4567 -> 2709[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4568[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4568[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4568 -> 2710[label="",style="solid", color="blue", weight=3]; 31.03/14.62 2560 -> 1161[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2560[label="xwv610 == xwv620 && (xwv611 < xwv621 || xwv611 == xwv621 && xwv612 <= xwv622)",fontsize=16,color="magenta"];2560 -> 2711[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2560 -> 2712[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2561 -> 1839[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2561[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2561 -> 2713[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2561 -> 2714[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2562 -> 1840[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2562[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2562 -> 2715[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2562 -> 2716[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2563 -> 1841[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2563[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2563 -> 2717[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2563 -> 2718[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2564 -> 1842[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2564[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2564 -> 2719[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2564 -> 2720[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2565 -> 1843[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2565[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2565 -> 2721[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2565 -> 2722[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2566 -> 1844[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2566[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2566 -> 2723[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2566 -> 2724[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2567 -> 1845[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2567[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2567 -> 2725[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2567 -> 2726[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2568 -> 1846[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2568[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2568 -> 2727[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2568 -> 2728[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2569 -> 1847[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2569[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2569 -> 2729[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2569 -> 2730[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2570 -> 1848[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2570[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2570 -> 2731[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2570 -> 2732[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2571 -> 1849[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2571[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2571 -> 2733[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2571 -> 2734[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2572 -> 1850[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2572[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2572 -> 2735[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2572 -> 2736[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2573 -> 1851[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2573[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2573 -> 2737[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2573 -> 2738[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2574 -> 1852[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2574[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2574 -> 2739[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2574 -> 2740[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2575 -> 1839[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2575[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2575 -> 2741[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2575 -> 2742[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2576 -> 1840[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2576[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2576 -> 2743[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2576 -> 2744[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2577 -> 1841[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2577[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2577 -> 2745[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2577 -> 2746[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2578 -> 1842[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2578[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2578 -> 2747[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2578 -> 2748[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2579 -> 1843[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2579[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2579 -> 2749[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2579 -> 2750[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2580 -> 1844[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2580[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2580 -> 2751[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2580 -> 2752[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2581 -> 1845[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2581[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2581 -> 2753[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2581 -> 2754[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2582 -> 1846[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2582[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2582 -> 2755[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2582 -> 2756[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2583 -> 1847[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2583[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2583 -> 2757[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2583 -> 2758[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2584 -> 1848[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2584[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2584 -> 2759[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2584 -> 2760[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2585 -> 1849[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2585[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2585 -> 2761[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2585 -> 2762[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2586 -> 1850[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2586[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2586 -> 2763[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2586 -> 2764[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2587 -> 1851[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2587[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2587 -> 2765[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2587 -> 2766[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2588 -> 1852[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2588[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2588 -> 2767[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2588 -> 2768[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2590 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2590[label="xwv198 == GT",fontsize=16,color="magenta"];2590 -> 2769[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2590 -> 2770[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2589[label="not xwv204",fontsize=16,color="burlywood",shape="triangle"];4569[label="xwv204/False",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4569[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4569 -> 2771[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4570[label="xwv204/True",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4570[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4570 -> 2772[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2591[label="xwv610 < xwv620",fontsize=16,color="blue",shape="box"];4571[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2591 -> 4571[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4571 -> 2773[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4572[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2591 -> 4572[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4572 -> 2774[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4573[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2591 -> 4573[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4573 -> 2775[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4574[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2591 -> 4574[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4574 -> 2776[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4575[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2591 -> 4575[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4575 -> 2777[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4576[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2591 -> 4576[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4576 -> 2778[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4577[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2591 -> 4577[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4577 -> 2779[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4578[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2591 -> 4578[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4578 -> 2780[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4579[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2591 -> 4579[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4579 -> 2781[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4580[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2591 -> 4580[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4580 -> 2782[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4581[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2591 -> 4581[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4581 -> 2783[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4582[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2591 -> 4582[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4582 -> 2784[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4583[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2591 -> 4583[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4583 -> 2785[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4584[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2591 -> 4584[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4584 -> 2786[label="",style="solid", color="blue", weight=3]; 31.03/14.62 2592 -> 1161[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2592[label="xwv610 == xwv620 && xwv611 <= xwv621",fontsize=16,color="magenta"];2592 -> 2787[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2592 -> 2788[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2593[label="xwv73",fontsize=16,color="green",shape="box"];2594[label="xwv76",fontsize=16,color="green",shape="box"];2595[label="xwv73",fontsize=16,color="green",shape="box"];2596[label="xwv76",fontsize=16,color="green",shape="box"];2597[label="xwv73",fontsize=16,color="green",shape="box"];2598[label="xwv76",fontsize=16,color="green",shape="box"];2599[label="xwv73",fontsize=16,color="green",shape="box"];2600[label="xwv76",fontsize=16,color="green",shape="box"];2601[label="xwv73",fontsize=16,color="green",shape="box"];2602[label="xwv76",fontsize=16,color="green",shape="box"];2603[label="xwv73",fontsize=16,color="green",shape="box"];2604[label="xwv76",fontsize=16,color="green",shape="box"];2605[label="xwv73",fontsize=16,color="green",shape="box"];2606[label="xwv76",fontsize=16,color="green",shape="box"];2607[label="xwv73",fontsize=16,color="green",shape="box"];2608[label="xwv76",fontsize=16,color="green",shape="box"];2609[label="xwv73",fontsize=16,color="green",shape="box"];2610[label="xwv76",fontsize=16,color="green",shape="box"];2611[label="xwv73",fontsize=16,color="green",shape="box"];2612[label="xwv76",fontsize=16,color="green",shape="box"];2613[label="xwv73",fontsize=16,color="green",shape="box"];2614[label="xwv76",fontsize=16,color="green",shape="box"];2615[label="xwv73",fontsize=16,color="green",shape="box"];2616[label="xwv76",fontsize=16,color="green",shape="box"];2617[label="xwv73",fontsize=16,color="green",shape="box"];2618[label="xwv76",fontsize=16,color="green",shape="box"];2619[label="xwv73",fontsize=16,color="green",shape="box"];2620[label="xwv76",fontsize=16,color="green",shape="box"];2621[label="xwv74",fontsize=16,color="green",shape="box"];2622[label="xwv77",fontsize=16,color="green",shape="box"];2623[label="xwv74",fontsize=16,color="green",shape="box"];2624[label="xwv77",fontsize=16,color="green",shape="box"];2625[label="xwv74",fontsize=16,color="green",shape="box"];2626[label="xwv77",fontsize=16,color="green",shape="box"];2627[label="xwv74",fontsize=16,color="green",shape="box"];2628[label="xwv77",fontsize=16,color="green",shape="box"];2629[label="xwv74",fontsize=16,color="green",shape="box"];2630[label="xwv77",fontsize=16,color="green",shape="box"];2631[label="xwv74",fontsize=16,color="green",shape="box"];2632[label="xwv77",fontsize=16,color="green",shape="box"];2633[label="xwv74",fontsize=16,color="green",shape="box"];2634[label="xwv77",fontsize=16,color="green",shape="box"];2635[label="xwv74",fontsize=16,color="green",shape="box"];2636[label="xwv77",fontsize=16,color="green",shape="box"];2637[label="xwv74",fontsize=16,color="green",shape="box"];2638[label="xwv77",fontsize=16,color="green",shape="box"];2639[label="xwv74",fontsize=16,color="green",shape="box"];2640[label="xwv77",fontsize=16,color="green",shape="box"];2641[label="xwv74",fontsize=16,color="green",shape="box"];2642[label="xwv77",fontsize=16,color="green",shape="box"];2643[label="xwv74",fontsize=16,color="green",shape="box"];2644[label="xwv77",fontsize=16,color="green",shape="box"];2645[label="xwv74",fontsize=16,color="green",shape="box"];2646[label="xwv77",fontsize=16,color="green",shape="box"];2647[label="xwv74",fontsize=16,color="green",shape="box"];2648[label="xwv77",fontsize=16,color="green",shape="box"];2649[label="compare0 (xwv172,xwv173,xwv174) (xwv175,xwv176,xwv177) True",fontsize=16,color="black",shape="box"];2649 -> 2789[label="",style="solid", color="black", weight=3]; 31.03/14.62 2650[label="xwv4000",fontsize=16,color="green",shape="box"];2651[label="Succ xwv30100",fontsize=16,color="green",shape="box"];2652[label="compare0 (xwv187,xwv188) (xwv189,xwv190) True",fontsize=16,color="black",shape="box"];2652 -> 2790[label="",style="solid", color="black", weight=3]; 31.03/14.62 2653[label="FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="black",shape="box"];2653 -> 2791[label="",style="solid", color="black", weight=3]; 31.03/14.62 2654[label="FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524",fontsize=16,color="green",shape="box"];2655[label="FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="black",shape="box"];2655 -> 2792[label="",style="solid", color="black", weight=3]; 31.03/14.62 2656[label="FiniteMap.deleteMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="burlywood",shape="triangle"];4585[label="xwv514/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2656 -> 4585[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4585 -> 2793[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4586[label="xwv514/FiniteMap.Branch xwv5140 xwv5141 xwv5142 xwv5143 xwv5144",fontsize=10,color="white",style="solid",shape="box"];2656 -> 4586[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4586 -> 2794[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2657 -> 3337[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2657[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.findMin (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="magenta"];2657 -> 3338[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2657 -> 3339[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2657 -> 3340[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2657 -> 3341[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2657 -> 3342[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2657 -> 3343[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2657 -> 3344[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2657 -> 3345[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2657 -> 3346[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2657 -> 3347[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2657 -> 3348[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2657 -> 3349[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2657 -> 3350[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2657 -> 3351[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2657 -> 3352[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2658[label="xwv524",fontsize=16,color="green",shape="box"];2659 -> 75[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2659[label="FiniteMap.mkBalBranch xwv520 xwv521 (FiniteMap.deleteMin (FiniteMap.Branch xwv5230 xwv5231 xwv5232 xwv5233 xwv5234)) xwv524",fontsize=16,color="magenta"];2659 -> 2797[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2659 -> 2798[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2659 -> 2799[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2659 -> 2800[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2660 -> 3431[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2660[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.findMin (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="magenta"];2660 -> 3432[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2660 -> 3433[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2660 -> 3434[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2660 -> 3435[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2660 -> 3436[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2660 -> 3437[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2660 -> 3438[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2660 -> 3439[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2660 -> 3440[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2660 -> 3441[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2660 -> 3442[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2660 -> 3443[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2660 -> 3444[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2660 -> 3445[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2660 -> 3446[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2661[label="xwv16200",fontsize=16,color="green",shape="box"];2662[label="xwv13000",fontsize=16,color="green",shape="box"];2664 -> 104[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2664[label="FiniteMap.sizeFM xwv164 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv163",fontsize=16,color="magenta"];2664 -> 2803[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2664 -> 2804[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2663[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 xwv205",fontsize=16,color="burlywood",shape="triangle"];4587[label="xwv205/False",fontsize=10,color="white",style="solid",shape="box"];2663 -> 4587[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4587 -> 2805[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 4588[label="xwv205/True",fontsize=10,color="white",style="solid",shape="box"];2663 -> 4588[label="",style="solid", color="burlywood", weight=9]; 31.03/14.62 4588 -> 2806[label="",style="solid", color="burlywood", weight=3]; 31.03/14.62 2665[label="xwv354",fontsize=16,color="green",shape="box"];2666[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 True",fontsize=16,color="black",shape="box"];2666 -> 2807[label="",style="solid", color="black", weight=3]; 31.03/14.62 2667[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xwv350 xwv351 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv13 xwv14 xwv16 xwv353) xwv354",fontsize=16,color="black",shape="box"];2667 -> 2808[label="",style="solid", color="black", weight=3]; 31.03/14.62 2668[label="xwv16",fontsize=16,color="green",shape="box"];2669[label="xwv610",fontsize=16,color="green",shape="box"];2670[label="xwv620",fontsize=16,color="green",shape="box"];2671[label="xwv610",fontsize=16,color="green",shape="box"];2672[label="xwv620",fontsize=16,color="green",shape="box"];2673[label="xwv610",fontsize=16,color="green",shape="box"];2674[label="xwv620",fontsize=16,color="green",shape="box"];2675[label="xwv610",fontsize=16,color="green",shape="box"];2676[label="xwv620",fontsize=16,color="green",shape="box"];2677[label="xwv610",fontsize=16,color="green",shape="box"];2678[label="xwv620",fontsize=16,color="green",shape="box"];2679[label="xwv610",fontsize=16,color="green",shape="box"];2680[label="xwv620",fontsize=16,color="green",shape="box"];2681[label="xwv610",fontsize=16,color="green",shape="box"];2682[label="xwv620",fontsize=16,color="green",shape="box"];2683[label="xwv610",fontsize=16,color="green",shape="box"];2684[label="xwv620",fontsize=16,color="green",shape="box"];2685[label="xwv610",fontsize=16,color="green",shape="box"];2686[label="xwv620",fontsize=16,color="green",shape="box"];2687[label="xwv610",fontsize=16,color="green",shape="box"];2688[label="xwv620",fontsize=16,color="green",shape="box"];2689[label="xwv610",fontsize=16,color="green",shape="box"];2690[label="xwv620",fontsize=16,color="green",shape="box"];2691[label="xwv610",fontsize=16,color="green",shape="box"];2692[label="xwv620",fontsize=16,color="green",shape="box"];2693[label="xwv610",fontsize=16,color="green",shape="box"];2694[label="xwv620",fontsize=16,color="green",shape="box"];2695[label="xwv610",fontsize=16,color="green",shape="box"];2696[label="xwv620",fontsize=16,color="green",shape="box"];2697 -> 95[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2697[label="xwv610 < xwv620",fontsize=16,color="magenta"];2697 -> 2809[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2697 -> 2810[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2698 -> 96[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2698[label="xwv610 < xwv620",fontsize=16,color="magenta"];2698 -> 2811[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2698 -> 2812[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2699 -> 97[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2699[label="xwv610 < xwv620",fontsize=16,color="magenta"];2699 -> 2813[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2699 -> 2814[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2700 -> 98[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2700[label="xwv610 < xwv620",fontsize=16,color="magenta"];2700 -> 2815[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2700 -> 2816[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2701 -> 99[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2701[label="xwv610 < xwv620",fontsize=16,color="magenta"];2701 -> 2817[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2701 -> 2818[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2702 -> 100[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2702[label="xwv610 < xwv620",fontsize=16,color="magenta"];2702 -> 2819[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2702 -> 2820[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2703 -> 101[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2703[label="xwv610 < xwv620",fontsize=16,color="magenta"];2703 -> 2821[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2703 -> 2822[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2704 -> 102[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2704[label="xwv610 < xwv620",fontsize=16,color="magenta"];2704 -> 2823[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2704 -> 2824[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2705 -> 103[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2705[label="xwv610 < xwv620",fontsize=16,color="magenta"];2705 -> 2825[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2705 -> 2826[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2706 -> 104[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2706[label="xwv610 < xwv620",fontsize=16,color="magenta"];2706 -> 2827[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2706 -> 2828[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2707 -> 105[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2707[label="xwv610 < xwv620",fontsize=16,color="magenta"];2707 -> 2829[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2707 -> 2830[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2708 -> 106[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2708[label="xwv610 < xwv620",fontsize=16,color="magenta"];2708 -> 2831[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2708 -> 2832[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2709 -> 107[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2709[label="xwv610 < xwv620",fontsize=16,color="magenta"];2709 -> 2833[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2709 -> 2834[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2710 -> 108[label="",style="dashed", color="red", weight=0]; 31.03/14.62 2710[label="xwv610 < xwv620",fontsize=16,color="magenta"];2710 -> 2835[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2710 -> 2836[label="",style="dashed", color="magenta", weight=3]; 31.03/14.62 2711[label="xwv610 == xwv620",fontsize=16,color="blue",shape="box"];4589[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4589[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4589 -> 2837[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4590[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4590[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4590 -> 2838[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4591[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4591[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4591 -> 2839[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4592[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4592[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4592 -> 2840[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4593[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4593[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4593 -> 2841[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4594[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4594[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4594 -> 2842[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4595[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4595[label="",style="solid", color="blue", weight=9]; 31.03/14.62 4595 -> 2843[label="",style="solid", color="blue", weight=3]; 31.03/14.62 4596[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4596[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4596 -> 2844[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4597[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4597[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4597 -> 2845[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4598[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4598[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4598 -> 2846[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4599[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4599[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4599 -> 2847[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4600[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4600[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4600 -> 2848[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4601[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4601[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4601 -> 2849[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4602[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4602[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4602 -> 2850[label="",style="solid", color="blue", weight=3]; 31.03/14.63 2712 -> 2316[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2712[label="xwv611 < xwv621 || xwv611 == xwv621 && xwv612 <= xwv622",fontsize=16,color="magenta"];2712 -> 2851[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2712 -> 2852[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2713[label="xwv610",fontsize=16,color="green",shape="box"];2714[label="xwv620",fontsize=16,color="green",shape="box"];2715[label="xwv610",fontsize=16,color="green",shape="box"];2716[label="xwv620",fontsize=16,color="green",shape="box"];2717[label="xwv610",fontsize=16,color="green",shape="box"];2718[label="xwv620",fontsize=16,color="green",shape="box"];2719[label="xwv610",fontsize=16,color="green",shape="box"];2720[label="xwv620",fontsize=16,color="green",shape="box"];2721[label="xwv610",fontsize=16,color="green",shape="box"];2722[label="xwv620",fontsize=16,color="green",shape="box"];2723[label="xwv610",fontsize=16,color="green",shape="box"];2724[label="xwv620",fontsize=16,color="green",shape="box"];2725[label="xwv610",fontsize=16,color="green",shape="box"];2726[label="xwv620",fontsize=16,color="green",shape="box"];2727[label="xwv610",fontsize=16,color="green",shape="box"];2728[label="xwv620",fontsize=16,color="green",shape="box"];2729[label="xwv610",fontsize=16,color="green",shape="box"];2730[label="xwv620",fontsize=16,color="green",shape="box"];2731[label="xwv610",fontsize=16,color="green",shape="box"];2732[label="xwv620",fontsize=16,color="green",shape="box"];2733[label="xwv610",fontsize=16,color="green",shape="box"];2734[label="xwv620",fontsize=16,color="green",shape="box"];2735[label="xwv610",fontsize=16,color="green",shape="box"];2736[label="xwv620",fontsize=16,color="green",shape="box"];2737[label="xwv610",fontsize=16,color="green",shape="box"];2738[label="xwv620",fontsize=16,color="green",shape="box"];2739[label="xwv610",fontsize=16,color="green",shape="box"];2740[label="xwv620",fontsize=16,color="green",shape="box"];2741[label="xwv610",fontsize=16,color="green",shape="box"];2742[label="xwv620",fontsize=16,color="green",shape="box"];2743[label="xwv610",fontsize=16,color="green",shape="box"];2744[label="xwv620",fontsize=16,color="green",shape="box"];2745[label="xwv610",fontsize=16,color="green",shape="box"];2746[label="xwv620",fontsize=16,color="green",shape="box"];2747[label="xwv610",fontsize=16,color="green",shape="box"];2748[label="xwv620",fontsize=16,color="green",shape="box"];2749[label="xwv610",fontsize=16,color="green",shape="box"];2750[label="xwv620",fontsize=16,color="green",shape="box"];2751[label="xwv610",fontsize=16,color="green",shape="box"];2752[label="xwv620",fontsize=16,color="green",shape="box"];2753[label="xwv610",fontsize=16,color="green",shape="box"];2754[label="xwv620",fontsize=16,color="green",shape="box"];2755[label="xwv610",fontsize=16,color="green",shape="box"];2756[label="xwv620",fontsize=16,color="green",shape="box"];2757[label="xwv610",fontsize=16,color="green",shape="box"];2758[label="xwv620",fontsize=16,color="green",shape="box"];2759[label="xwv610",fontsize=16,color="green",shape="box"];2760[label="xwv620",fontsize=16,color="green",shape="box"];2761[label="xwv610",fontsize=16,color="green",shape="box"];2762[label="xwv620",fontsize=16,color="green",shape="box"];2763[label="xwv610",fontsize=16,color="green",shape="box"];2764[label="xwv620",fontsize=16,color="green",shape="box"];2765[label="xwv610",fontsize=16,color="green",shape="box"];2766[label="xwv620",fontsize=16,color="green",shape="box"];2767[label="xwv610",fontsize=16,color="green",shape="box"];2768[label="xwv620",fontsize=16,color="green",shape="box"];2769[label="xwv198",fontsize=16,color="green",shape="box"];2770[label="GT",fontsize=16,color="green",shape="box"];2771[label="not False",fontsize=16,color="black",shape="box"];2771 -> 2853[label="",style="solid", color="black", weight=3]; 31.03/14.63 2772[label="not True",fontsize=16,color="black",shape="box"];2772 -> 2854[label="",style="solid", color="black", weight=3]; 31.03/14.63 2773 -> 95[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2773[label="xwv610 < xwv620",fontsize=16,color="magenta"];2773 -> 2855[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2773 -> 2856[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2774 -> 96[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2774[label="xwv610 < xwv620",fontsize=16,color="magenta"];2774 -> 2857[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2774 -> 2858[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2775 -> 97[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2775[label="xwv610 < xwv620",fontsize=16,color="magenta"];2775 -> 2859[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2775 -> 2860[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2776 -> 98[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2776[label="xwv610 < xwv620",fontsize=16,color="magenta"];2776 -> 2861[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2776 -> 2862[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2777 -> 99[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2777[label="xwv610 < xwv620",fontsize=16,color="magenta"];2777 -> 2863[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2777 -> 2864[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2778 -> 100[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2778[label="xwv610 < xwv620",fontsize=16,color="magenta"];2778 -> 2865[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2778 -> 2866[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2779 -> 101[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2779[label="xwv610 < xwv620",fontsize=16,color="magenta"];2779 -> 2867[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2779 -> 2868[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2780 -> 102[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2780[label="xwv610 < xwv620",fontsize=16,color="magenta"];2780 -> 2869[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2780 -> 2870[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2781 -> 103[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2781[label="xwv610 < xwv620",fontsize=16,color="magenta"];2781 -> 2871[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2781 -> 2872[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2782 -> 104[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2782[label="xwv610 < xwv620",fontsize=16,color="magenta"];2782 -> 2873[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2782 -> 2874[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2783 -> 105[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2783[label="xwv610 < xwv620",fontsize=16,color="magenta"];2783 -> 2875[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2783 -> 2876[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2784 -> 106[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2784[label="xwv610 < xwv620",fontsize=16,color="magenta"];2784 -> 2877[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2784 -> 2878[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2785 -> 107[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2785[label="xwv610 < xwv620",fontsize=16,color="magenta"];2785 -> 2879[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2785 -> 2880[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2786 -> 108[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2786[label="xwv610 < xwv620",fontsize=16,color="magenta"];2786 -> 2881[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2786 -> 2882[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2787[label="xwv610 == xwv620",fontsize=16,color="blue",shape="box"];4603[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2787 -> 4603[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4603 -> 2883[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4604[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2787 -> 4604[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4604 -> 2884[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4605[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2787 -> 4605[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4605 -> 2885[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4606[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2787 -> 4606[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4606 -> 2886[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4607[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2787 -> 4607[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4607 -> 2887[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4608[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2787 -> 4608[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4608 -> 2888[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4609[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2787 -> 4609[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4609 -> 2889[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4610[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2787 -> 4610[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4610 -> 2890[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4611[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2787 -> 4611[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4611 -> 2891[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4612[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2787 -> 4612[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4612 -> 2892[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4613[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2787 -> 4613[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4613 -> 2893[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4614[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2787 -> 4614[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4614 -> 2894[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4615[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2787 -> 4615[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4615 -> 2895[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4616[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2787 -> 4616[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4616 -> 2896[label="",style="solid", color="blue", weight=3]; 31.03/14.63 2788[label="xwv611 <= xwv621",fontsize=16,color="blue",shape="box"];4617[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4617[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4617 -> 2897[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4618[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4618[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4618 -> 2898[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4619[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4619[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4619 -> 2899[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4620[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4620[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4620 -> 2900[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4621[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4621[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4621 -> 2901[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4622[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4622[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4622 -> 2902[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4623[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4623[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4623 -> 2903[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4624[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4624[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4624 -> 2904[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4625[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4625[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4625 -> 2905[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4626[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4626[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4626 -> 2906[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4627[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4627[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4627 -> 2907[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4628[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4628[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4628 -> 2908[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4629[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4629[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4629 -> 2909[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4630[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2788 -> 4630[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4630 -> 2910[label="",style="solid", color="blue", weight=3]; 31.03/14.63 2789[label="GT",fontsize=16,color="green",shape="box"];2790[label="GT",fontsize=16,color="green",shape="box"];2791[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.glueBal2Vv2 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="black",shape="box"];2791 -> 2911[label="",style="solid", color="black", weight=3]; 31.03/14.63 2792[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.glueBal2Vv2 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="black",shape="box"];2792 -> 2912[label="",style="solid", color="black", weight=3]; 31.03/14.63 2793[label="FiniteMap.deleteMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 FiniteMap.EmptyFM)",fontsize=16,color="black",shape="box"];2793 -> 2913[label="",style="solid", color="black", weight=3]; 31.03/14.63 2794[label="FiniteMap.deleteMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 (FiniteMap.Branch xwv5140 xwv5141 xwv5142 xwv5143 xwv5144))",fontsize=16,color="black",shape="box"];2794 -> 2914[label="",style="solid", color="black", weight=3]; 31.03/14.63 3338[label="xwv521",fontsize=16,color="green",shape="box"];3339[label="xwv523",fontsize=16,color="green",shape="box"];3340[label="xwv510",fontsize=16,color="green",shape="box"];3341[label="xwv522",fontsize=16,color="green",shape="box"];3342[label="xwv520",fontsize=16,color="green",shape="box"];3343[label="xwv514",fontsize=16,color="green",shape="box"];3344[label="xwv524",fontsize=16,color="green",shape="box"];3345[label="xwv520",fontsize=16,color="green",shape="box"];3346[label="xwv513",fontsize=16,color="green",shape="box"];3347[label="xwv512",fontsize=16,color="green",shape="box"];3348[label="xwv522",fontsize=16,color="green",shape="box"];3349[label="xwv524",fontsize=16,color="green",shape="box"];3350[label="xwv521",fontsize=16,color="green",shape="box"];3351[label="xwv523",fontsize=16,color="green",shape="box"];3352[label="xwv511",fontsize=16,color="green",shape="box"];3337[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv241 xwv242 xwv243 xwv244 xwv245) (FiniteMap.Branch xwv246 xwv247 xwv248 xwv249 xwv250) (FiniteMap.findMin (FiniteMap.Branch xwv251 xwv252 xwv253 xwv254 xwv255))",fontsize=16,color="burlywood",shape="triangle"];4631[label="xwv254/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3337 -> 4631[label="",style="solid", color="burlywood", weight=9]; 31.03/14.63 4631 -> 3428[label="",style="solid", color="burlywood", weight=3]; 31.03/14.63 4632[label="xwv254/FiniteMap.Branch xwv2540 xwv2541 xwv2542 xwv2543 xwv2544",fontsize=10,color="white",style="solid",shape="box"];3337 -> 4632[label="",style="solid", color="burlywood", weight=9]; 31.03/14.63 4632 -> 3429[label="",style="solid", color="burlywood", weight=3]; 31.03/14.63 2797[label="xwv520",fontsize=16,color="green",shape="box"];2798[label="xwv524",fontsize=16,color="green",shape="box"];2799[label="xwv521",fontsize=16,color="green",shape="box"];2800 -> 2409[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2800[label="FiniteMap.deleteMin (FiniteMap.Branch xwv5230 xwv5231 xwv5232 xwv5233 xwv5234)",fontsize=16,color="magenta"];2800 -> 2917[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2800 -> 2918[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2800 -> 2919[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2800 -> 2920[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2800 -> 2921[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3432[label="xwv522",fontsize=16,color="green",shape="box"];3433[label="xwv521",fontsize=16,color="green",shape="box"];3434[label="xwv512",fontsize=16,color="green",shape="box"];3435[label="xwv513",fontsize=16,color="green",shape="box"];3436[label="xwv521",fontsize=16,color="green",shape="box"];3437[label="xwv511",fontsize=16,color="green",shape="box"];3438[label="xwv522",fontsize=16,color="green",shape="box"];3439[label="xwv520",fontsize=16,color="green",shape="box"];3440[label="xwv523",fontsize=16,color="green",shape="box"];3441[label="xwv510",fontsize=16,color="green",shape="box"];3442[label="xwv514",fontsize=16,color="green",shape="box"];3443[label="xwv523",fontsize=16,color="green",shape="box"];3444[label="xwv524",fontsize=16,color="green",shape="box"];3445[label="xwv524",fontsize=16,color="green",shape="box"];3446[label="xwv520",fontsize=16,color="green",shape="box"];3431[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv257 xwv258 xwv259 xwv260 xwv261) (FiniteMap.Branch xwv262 xwv263 xwv264 xwv265 xwv266) (FiniteMap.findMin (FiniteMap.Branch xwv267 xwv268 xwv269 xwv270 xwv271))",fontsize=16,color="burlywood",shape="triangle"];4633[label="xwv270/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3431 -> 4633[label="",style="solid", color="burlywood", weight=9]; 31.03/14.63 4633 -> 3522[label="",style="solid", color="burlywood", weight=3]; 31.03/14.63 4634[label="xwv270/FiniteMap.Branch xwv2700 xwv2701 xwv2702 xwv2703 xwv2704",fontsize=10,color="white",style="solid",shape="box"];3431 -> 4634[label="",style="solid", color="burlywood", weight=9]; 31.03/14.63 4634 -> 3523[label="",style="solid", color="burlywood", weight=3]; 31.03/14.63 2803 -> 434[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2803[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv163",fontsize=16,color="magenta"];2803 -> 2924[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2803 -> 2925[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2804 -> 1094[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2804[label="FiniteMap.sizeFM xwv164",fontsize=16,color="magenta"];2804 -> 2926[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2805[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 False",fontsize=16,color="black",shape="box"];2805 -> 2927[label="",style="solid", color="black", weight=3]; 31.03/14.63 2806[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 True",fontsize=16,color="black",shape="box"];2806 -> 2928[label="",style="solid", color="black", weight=3]; 31.03/14.63 2807[label="FiniteMap.mkBalBranch6Double_L xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="burlywood",shape="box"];4635[label="xwv353/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2807 -> 4635[label="",style="solid", color="burlywood", weight=9]; 31.03/14.63 4635 -> 2929[label="",style="solid", color="burlywood", weight=3]; 31.03/14.63 4636[label="xwv353/FiniteMap.Branch xwv3530 xwv3531 xwv3532 xwv3533 xwv3534",fontsize=10,color="white",style="solid",shape="box"];2807 -> 4636[label="",style="solid", color="burlywood", weight=9]; 31.03/14.63 4636 -> 2930[label="",style="solid", color="burlywood", weight=3]; 31.03/14.63 2808 -> 607[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2808[label="FiniteMap.mkBranchResult xwv350 xwv351 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv13 xwv14 xwv16 xwv353) xwv354",fontsize=16,color="magenta"];2808 -> 2931[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2808 -> 2932[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2808 -> 2933[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2808 -> 2934[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2809[label="xwv620",fontsize=16,color="green",shape="box"];2810[label="xwv610",fontsize=16,color="green",shape="box"];2811[label="xwv620",fontsize=16,color="green",shape="box"];2812[label="xwv610",fontsize=16,color="green",shape="box"];2813[label="xwv620",fontsize=16,color="green",shape="box"];2814[label="xwv610",fontsize=16,color="green",shape="box"];2815[label="xwv620",fontsize=16,color="green",shape="box"];2816[label="xwv610",fontsize=16,color="green",shape="box"];2817[label="xwv620",fontsize=16,color="green",shape="box"];2818[label="xwv610",fontsize=16,color="green",shape="box"];2819[label="xwv620",fontsize=16,color="green",shape="box"];2820[label="xwv610",fontsize=16,color="green",shape="box"];2821[label="xwv620",fontsize=16,color="green",shape="box"];2822[label="xwv610",fontsize=16,color="green",shape="box"];2823[label="xwv620",fontsize=16,color="green",shape="box"];2824[label="xwv610",fontsize=16,color="green",shape="box"];2825[label="xwv620",fontsize=16,color="green",shape="box"];2826[label="xwv610",fontsize=16,color="green",shape="box"];2827[label="xwv620",fontsize=16,color="green",shape="box"];2828[label="xwv610",fontsize=16,color="green",shape="box"];2829[label="xwv620",fontsize=16,color="green",shape="box"];2830[label="xwv610",fontsize=16,color="green",shape="box"];2831[label="xwv620",fontsize=16,color="green",shape="box"];2832[label="xwv610",fontsize=16,color="green",shape="box"];2833[label="xwv620",fontsize=16,color="green",shape="box"];2834[label="xwv610",fontsize=16,color="green",shape="box"];2835[label="xwv620",fontsize=16,color="green",shape="box"];2836[label="xwv610",fontsize=16,color="green",shape="box"];2837 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2837[label="xwv610 == xwv620",fontsize=16,color="magenta"];2837 -> 2935[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2837 -> 2936[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2838 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2838[label="xwv610 == xwv620",fontsize=16,color="magenta"];2838 -> 2937[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2838 -> 2938[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2839 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2839[label="xwv610 == xwv620",fontsize=16,color="magenta"];2839 -> 2939[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2839 -> 2940[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2840 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2840[label="xwv610 == xwv620",fontsize=16,color="magenta"];2840 -> 2941[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2840 -> 2942[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2841 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2841[label="xwv610 == xwv620",fontsize=16,color="magenta"];2841 -> 2943[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2841 -> 2944[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2842 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2842[label="xwv610 == xwv620",fontsize=16,color="magenta"];2842 -> 2945[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2842 -> 2946[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2843 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2843[label="xwv610 == xwv620",fontsize=16,color="magenta"];2843 -> 2947[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2843 -> 2948[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2844 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2844[label="xwv610 == xwv620",fontsize=16,color="magenta"];2844 -> 2949[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2844 -> 2950[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2845 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2845[label="xwv610 == xwv620",fontsize=16,color="magenta"];2845 -> 2951[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2845 -> 2952[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2846 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2846[label="xwv610 == xwv620",fontsize=16,color="magenta"];2846 -> 2953[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2846 -> 2954[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2847 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2847[label="xwv610 == xwv620",fontsize=16,color="magenta"];2847 -> 2955[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2847 -> 2956[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2848 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2848[label="xwv610 == xwv620",fontsize=16,color="magenta"];2848 -> 2957[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2848 -> 2958[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2849 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2849[label="xwv610 == xwv620",fontsize=16,color="magenta"];2849 -> 2959[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2849 -> 2960[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2850 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2850[label="xwv610 == xwv620",fontsize=16,color="magenta"];2850 -> 2961[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2850 -> 2962[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2851[label="xwv611 < xwv621",fontsize=16,color="blue",shape="box"];4637[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2851 -> 4637[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4637 -> 2963[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4638[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2851 -> 4638[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4638 -> 2964[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4639[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2851 -> 4639[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4639 -> 2965[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4640[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2851 -> 4640[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4640 -> 2966[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4641[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2851 -> 4641[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4641 -> 2967[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4642[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2851 -> 4642[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4642 -> 2968[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4643[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2851 -> 4643[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4643 -> 2969[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4644[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2851 -> 4644[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4644 -> 2970[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4645[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2851 -> 4645[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4645 -> 2971[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4646[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2851 -> 4646[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4646 -> 2972[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4647[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2851 -> 4647[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4647 -> 2973[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4648[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2851 -> 4648[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4648 -> 2974[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4649[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2851 -> 4649[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4649 -> 2975[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4650[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2851 -> 4650[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4650 -> 2976[label="",style="solid", color="blue", weight=3]; 31.03/14.63 2852 -> 1161[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2852[label="xwv611 == xwv621 && xwv612 <= xwv622",fontsize=16,color="magenta"];2852 -> 2977[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2852 -> 2978[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2853[label="True",fontsize=16,color="green",shape="box"];2854[label="False",fontsize=16,color="green",shape="box"];2855[label="xwv620",fontsize=16,color="green",shape="box"];2856[label="xwv610",fontsize=16,color="green",shape="box"];2857[label="xwv620",fontsize=16,color="green",shape="box"];2858[label="xwv610",fontsize=16,color="green",shape="box"];2859[label="xwv620",fontsize=16,color="green",shape="box"];2860[label="xwv610",fontsize=16,color="green",shape="box"];2861[label="xwv620",fontsize=16,color="green",shape="box"];2862[label="xwv610",fontsize=16,color="green",shape="box"];2863[label="xwv620",fontsize=16,color="green",shape="box"];2864[label="xwv610",fontsize=16,color="green",shape="box"];2865[label="xwv620",fontsize=16,color="green",shape="box"];2866[label="xwv610",fontsize=16,color="green",shape="box"];2867[label="xwv620",fontsize=16,color="green",shape="box"];2868[label="xwv610",fontsize=16,color="green",shape="box"];2869[label="xwv620",fontsize=16,color="green",shape="box"];2870[label="xwv610",fontsize=16,color="green",shape="box"];2871[label="xwv620",fontsize=16,color="green",shape="box"];2872[label="xwv610",fontsize=16,color="green",shape="box"];2873[label="xwv620",fontsize=16,color="green",shape="box"];2874[label="xwv610",fontsize=16,color="green",shape="box"];2875[label="xwv620",fontsize=16,color="green",shape="box"];2876[label="xwv610",fontsize=16,color="green",shape="box"];2877[label="xwv620",fontsize=16,color="green",shape="box"];2878[label="xwv610",fontsize=16,color="green",shape="box"];2879[label="xwv620",fontsize=16,color="green",shape="box"];2880[label="xwv610",fontsize=16,color="green",shape="box"];2881[label="xwv620",fontsize=16,color="green",shape="box"];2882[label="xwv610",fontsize=16,color="green",shape="box"];2883 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2883[label="xwv610 == xwv620",fontsize=16,color="magenta"];2883 -> 2979[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2883 -> 2980[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2884 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2884[label="xwv610 == xwv620",fontsize=16,color="magenta"];2884 -> 2981[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2884 -> 2982[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2885 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2885[label="xwv610 == xwv620",fontsize=16,color="magenta"];2885 -> 2983[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2885 -> 2984[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2886 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2886[label="xwv610 == xwv620",fontsize=16,color="magenta"];2886 -> 2985[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2886 -> 2986[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2887 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2887[label="xwv610 == xwv620",fontsize=16,color="magenta"];2887 -> 2987[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2887 -> 2988[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2888 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2888[label="xwv610 == xwv620",fontsize=16,color="magenta"];2888 -> 2989[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2888 -> 2990[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2889 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2889[label="xwv610 == xwv620",fontsize=16,color="magenta"];2889 -> 2991[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2889 -> 2992[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2890 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2890[label="xwv610 == xwv620",fontsize=16,color="magenta"];2890 -> 2993[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2890 -> 2994[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2891 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2891[label="xwv610 == xwv620",fontsize=16,color="magenta"];2891 -> 2995[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2891 -> 2996[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2892 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2892[label="xwv610 == xwv620",fontsize=16,color="magenta"];2892 -> 2997[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2892 -> 2998[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2893 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2893[label="xwv610 == xwv620",fontsize=16,color="magenta"];2893 -> 2999[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2893 -> 3000[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2894 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2894[label="xwv610 == xwv620",fontsize=16,color="magenta"];2894 -> 3001[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2894 -> 3002[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2895 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2895[label="xwv610 == xwv620",fontsize=16,color="magenta"];2895 -> 3003[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2895 -> 3004[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2896 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2896[label="xwv610 == xwv620",fontsize=16,color="magenta"];2896 -> 3005[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2896 -> 3006[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2897 -> 1839[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2897[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2897 -> 3007[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2897 -> 3008[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2898 -> 1840[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2898[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2898 -> 3009[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2898 -> 3010[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2899 -> 1841[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2899[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2899 -> 3011[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2899 -> 3012[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2900 -> 1842[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2900[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2900 -> 3013[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2900 -> 3014[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2901 -> 1843[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2901[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2901 -> 3015[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2901 -> 3016[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2902 -> 1844[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2902[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2902 -> 3017[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2902 -> 3018[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2903 -> 1845[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2903[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2903 -> 3019[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2903 -> 3020[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2904 -> 1846[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2904[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2904 -> 3021[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2904 -> 3022[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2905 -> 1847[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2905[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2905 -> 3023[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2905 -> 3024[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2906 -> 1848[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2906[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2906 -> 3025[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2906 -> 3026[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2907 -> 1849[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2907[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2907 -> 3027[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2907 -> 3028[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2908 -> 1850[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2908[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2908 -> 3029[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2908 -> 3030[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2909 -> 1851[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2909[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2909 -> 3031[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2909 -> 3032[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2910 -> 1852[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2910[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2910 -> 3033[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2910 -> 3034[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2911 -> 3539[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2911[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.findMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="magenta"];2911 -> 3540[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2911 -> 3541[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2911 -> 3542[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2911 -> 3543[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2911 -> 3544[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2911 -> 3545[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2911 -> 3546[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2911 -> 3547[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2911 -> 3548[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2911 -> 3549[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2911 -> 3550[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2911 -> 3551[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2911 -> 3552[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2911 -> 3553[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2911 -> 3554[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2912 -> 3639[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2912[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.findMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="magenta"];2912 -> 3640[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2912 -> 3641[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2912 -> 3642[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2912 -> 3643[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2912 -> 3644[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2912 -> 3645[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2912 -> 3646[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2912 -> 3647[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2912 -> 3648[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2912 -> 3649[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2912 -> 3650[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2912 -> 3651[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2912 -> 3652[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2912 -> 3653[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2912 -> 3654[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2913[label="xwv513",fontsize=16,color="green",shape="box"];2914 -> 75[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2914[label="FiniteMap.mkBalBranch xwv510 xwv511 xwv513 (FiniteMap.deleteMax (FiniteMap.Branch xwv5140 xwv5141 xwv5142 xwv5143 xwv5144))",fontsize=16,color="magenta"];2914 -> 3039[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2914 -> 3040[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2914 -> 3041[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2914 -> 3042[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3428[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv241 xwv242 xwv243 xwv244 xwv245) (FiniteMap.Branch xwv246 xwv247 xwv248 xwv249 xwv250) (FiniteMap.findMin (FiniteMap.Branch xwv251 xwv252 xwv253 FiniteMap.EmptyFM xwv255))",fontsize=16,color="black",shape="box"];3428 -> 3524[label="",style="solid", color="black", weight=3]; 31.03/14.63 3429[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv241 xwv242 xwv243 xwv244 xwv245) (FiniteMap.Branch xwv246 xwv247 xwv248 xwv249 xwv250) (FiniteMap.findMin (FiniteMap.Branch xwv251 xwv252 xwv253 (FiniteMap.Branch xwv2540 xwv2541 xwv2542 xwv2543 xwv2544) xwv255))",fontsize=16,color="black",shape="box"];3429 -> 3525[label="",style="solid", color="black", weight=3]; 31.03/14.63 2917[label="xwv5230",fontsize=16,color="green",shape="box"];2918[label="xwv5234",fontsize=16,color="green",shape="box"];2919[label="xwv5232",fontsize=16,color="green",shape="box"];2920[label="xwv5231",fontsize=16,color="green",shape="box"];2921[label="xwv5233",fontsize=16,color="green",shape="box"];3522[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv257 xwv258 xwv259 xwv260 xwv261) (FiniteMap.Branch xwv262 xwv263 xwv264 xwv265 xwv266) (FiniteMap.findMin (FiniteMap.Branch xwv267 xwv268 xwv269 FiniteMap.EmptyFM xwv271))",fontsize=16,color="black",shape="box"];3522 -> 3530[label="",style="solid", color="black", weight=3]; 31.03/14.63 3523[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv257 xwv258 xwv259 xwv260 xwv261) (FiniteMap.Branch xwv262 xwv263 xwv264 xwv265 xwv266) (FiniteMap.findMin (FiniteMap.Branch xwv267 xwv268 xwv269 (FiniteMap.Branch xwv2700 xwv2701 xwv2702 xwv2703 xwv2704) xwv271))",fontsize=16,color="black",shape="box"];3523 -> 3531[label="",style="solid", color="black", weight=3]; 31.03/14.63 2924[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2925 -> 1094[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2925[label="FiniteMap.sizeFM xwv163",fontsize=16,color="magenta"];2925 -> 3049[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2926[label="xwv164",fontsize=16,color="green",shape="box"];2927[label="FiniteMap.mkBalBranch6MkBalBranch10 xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 otherwise",fontsize=16,color="black",shape="box"];2927 -> 3050[label="",style="solid", color="black", weight=3]; 31.03/14.63 2928[label="FiniteMap.mkBalBranch6Single_R xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35",fontsize=16,color="black",shape="box"];2928 -> 3051[label="",style="solid", color="black", weight=3]; 31.03/14.63 2929[label="FiniteMap.mkBalBranch6Double_L xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 FiniteMap.EmptyFM xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 FiniteMap.EmptyFM xwv354)",fontsize=16,color="black",shape="box"];2929 -> 3052[label="",style="solid", color="black", weight=3]; 31.03/14.63 2930[label="FiniteMap.mkBalBranch6Double_L xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 (FiniteMap.Branch xwv3530 xwv3531 xwv3532 xwv3533 xwv3534) xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 (FiniteMap.Branch xwv3530 xwv3531 xwv3532 xwv3533 xwv3534) xwv354)",fontsize=16,color="black",shape="box"];2930 -> 3053[label="",style="solid", color="black", weight=3]; 31.03/14.63 2931[label="xwv350",fontsize=16,color="green",shape="box"];2932[label="xwv354",fontsize=16,color="green",shape="box"];2933[label="xwv351",fontsize=16,color="green",shape="box"];2934[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv13 xwv14 xwv16 xwv353",fontsize=16,color="black",shape="box"];2934 -> 3054[label="",style="solid", color="black", weight=3]; 31.03/14.63 2935[label="xwv610",fontsize=16,color="green",shape="box"];2936[label="xwv620",fontsize=16,color="green",shape="box"];2937[label="xwv610",fontsize=16,color="green",shape="box"];2938[label="xwv620",fontsize=16,color="green",shape="box"];2939[label="xwv610",fontsize=16,color="green",shape="box"];2940[label="xwv620",fontsize=16,color="green",shape="box"];2941[label="xwv610",fontsize=16,color="green",shape="box"];2942[label="xwv620",fontsize=16,color="green",shape="box"];2943[label="xwv610",fontsize=16,color="green",shape="box"];2944[label="xwv620",fontsize=16,color="green",shape="box"];2945[label="xwv610",fontsize=16,color="green",shape="box"];2946[label="xwv620",fontsize=16,color="green",shape="box"];2947[label="xwv610",fontsize=16,color="green",shape="box"];2948[label="xwv620",fontsize=16,color="green",shape="box"];2949[label="xwv610",fontsize=16,color="green",shape="box"];2950[label="xwv620",fontsize=16,color="green",shape="box"];2951[label="xwv610",fontsize=16,color="green",shape="box"];2952[label="xwv620",fontsize=16,color="green",shape="box"];2953[label="xwv610",fontsize=16,color="green",shape="box"];2954[label="xwv620",fontsize=16,color="green",shape="box"];2955[label="xwv610",fontsize=16,color="green",shape="box"];2956[label="xwv620",fontsize=16,color="green",shape="box"];2957[label="xwv610",fontsize=16,color="green",shape="box"];2958[label="xwv620",fontsize=16,color="green",shape="box"];2959[label="xwv610",fontsize=16,color="green",shape="box"];2960[label="xwv620",fontsize=16,color="green",shape="box"];2961[label="xwv610",fontsize=16,color="green",shape="box"];2962[label="xwv620",fontsize=16,color="green",shape="box"];2963 -> 95[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2963[label="xwv611 < xwv621",fontsize=16,color="magenta"];2963 -> 3055[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2963 -> 3056[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2964 -> 96[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2964[label="xwv611 < xwv621",fontsize=16,color="magenta"];2964 -> 3057[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2964 -> 3058[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2965 -> 97[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2965[label="xwv611 < xwv621",fontsize=16,color="magenta"];2965 -> 3059[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2965 -> 3060[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2966 -> 98[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2966[label="xwv611 < xwv621",fontsize=16,color="magenta"];2966 -> 3061[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2966 -> 3062[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2967 -> 99[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2967[label="xwv611 < xwv621",fontsize=16,color="magenta"];2967 -> 3063[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2967 -> 3064[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2968 -> 100[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2968[label="xwv611 < xwv621",fontsize=16,color="magenta"];2968 -> 3065[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2968 -> 3066[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2969 -> 101[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2969[label="xwv611 < xwv621",fontsize=16,color="magenta"];2969 -> 3067[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2969 -> 3068[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2970 -> 102[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2970[label="xwv611 < xwv621",fontsize=16,color="magenta"];2970 -> 3069[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2970 -> 3070[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2971 -> 103[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2971[label="xwv611 < xwv621",fontsize=16,color="magenta"];2971 -> 3071[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2971 -> 3072[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2972 -> 104[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2972[label="xwv611 < xwv621",fontsize=16,color="magenta"];2972 -> 3073[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2972 -> 3074[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2973 -> 105[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2973[label="xwv611 < xwv621",fontsize=16,color="magenta"];2973 -> 3075[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2973 -> 3076[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2974 -> 106[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2974[label="xwv611 < xwv621",fontsize=16,color="magenta"];2974 -> 3077[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2974 -> 3078[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2975 -> 107[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2975[label="xwv611 < xwv621",fontsize=16,color="magenta"];2975 -> 3079[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2975 -> 3080[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2976 -> 108[label="",style="dashed", color="red", weight=0]; 31.03/14.63 2976[label="xwv611 < xwv621",fontsize=16,color="magenta"];2976 -> 3081[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2976 -> 3082[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 2977[label="xwv611 == xwv621",fontsize=16,color="blue",shape="box"];4651[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4651[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4651 -> 3083[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4652[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4652[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4652 -> 3084[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4653[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4653[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4653 -> 3085[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4654[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4654[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4654 -> 3086[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4655[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4655[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4655 -> 3087[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4656[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4656[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4656 -> 3088[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4657[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4657[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4657 -> 3089[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4658[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4658[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4658 -> 3090[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4659[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4659[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4659 -> 3091[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4660[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4660[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4660 -> 3092[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4661[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4661[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4661 -> 3093[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4662[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4662[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4662 -> 3094[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4663[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4663[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4663 -> 3095[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4664[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4664[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4664 -> 3096[label="",style="solid", color="blue", weight=3]; 31.03/14.63 2978[label="xwv612 <= xwv622",fontsize=16,color="blue",shape="box"];4665[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2978 -> 4665[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4665 -> 3097[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4666[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2978 -> 4666[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4666 -> 3098[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4667[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2978 -> 4667[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4667 -> 3099[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4668[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2978 -> 4668[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4668 -> 3100[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4669[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2978 -> 4669[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4669 -> 3101[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4670[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2978 -> 4670[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4670 -> 3102[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4671[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2978 -> 4671[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4671 -> 3103[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4672[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2978 -> 4672[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4672 -> 3104[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4673[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2978 -> 4673[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4673 -> 3105[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4674[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2978 -> 4674[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4674 -> 3106[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4675[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2978 -> 4675[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4675 -> 3107[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4676[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2978 -> 4676[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4676 -> 3108[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4677[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2978 -> 4677[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4677 -> 3109[label="",style="solid", color="blue", weight=3]; 31.03/14.63 4678[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2978 -> 4678[label="",style="solid", color="blue", weight=9]; 31.03/14.63 4678 -> 3110[label="",style="solid", color="blue", weight=3]; 31.03/14.63 2979[label="xwv610",fontsize=16,color="green",shape="box"];2980[label="xwv620",fontsize=16,color="green",shape="box"];2981[label="xwv610",fontsize=16,color="green",shape="box"];2982[label="xwv620",fontsize=16,color="green",shape="box"];2983[label="xwv610",fontsize=16,color="green",shape="box"];2984[label="xwv620",fontsize=16,color="green",shape="box"];2985[label="xwv610",fontsize=16,color="green",shape="box"];2986[label="xwv620",fontsize=16,color="green",shape="box"];2987[label="xwv610",fontsize=16,color="green",shape="box"];2988[label="xwv620",fontsize=16,color="green",shape="box"];2989[label="xwv610",fontsize=16,color="green",shape="box"];2990[label="xwv620",fontsize=16,color="green",shape="box"];2991[label="xwv610",fontsize=16,color="green",shape="box"];2992[label="xwv620",fontsize=16,color="green",shape="box"];2993[label="xwv610",fontsize=16,color="green",shape="box"];2994[label="xwv620",fontsize=16,color="green",shape="box"];2995[label="xwv610",fontsize=16,color="green",shape="box"];2996[label="xwv620",fontsize=16,color="green",shape="box"];2997[label="xwv610",fontsize=16,color="green",shape="box"];2998[label="xwv620",fontsize=16,color="green",shape="box"];2999[label="xwv610",fontsize=16,color="green",shape="box"];3000[label="xwv620",fontsize=16,color="green",shape="box"];3001[label="xwv610",fontsize=16,color="green",shape="box"];3002[label="xwv620",fontsize=16,color="green",shape="box"];3003[label="xwv610",fontsize=16,color="green",shape="box"];3004[label="xwv620",fontsize=16,color="green",shape="box"];3005[label="xwv610",fontsize=16,color="green",shape="box"];3006[label="xwv620",fontsize=16,color="green",shape="box"];3007[label="xwv611",fontsize=16,color="green",shape="box"];3008[label="xwv621",fontsize=16,color="green",shape="box"];3009[label="xwv611",fontsize=16,color="green",shape="box"];3010[label="xwv621",fontsize=16,color="green",shape="box"];3011[label="xwv611",fontsize=16,color="green",shape="box"];3012[label="xwv621",fontsize=16,color="green",shape="box"];3013[label="xwv611",fontsize=16,color="green",shape="box"];3014[label="xwv621",fontsize=16,color="green",shape="box"];3015[label="xwv611",fontsize=16,color="green",shape="box"];3016[label="xwv621",fontsize=16,color="green",shape="box"];3017[label="xwv611",fontsize=16,color="green",shape="box"];3018[label="xwv621",fontsize=16,color="green",shape="box"];3019[label="xwv611",fontsize=16,color="green",shape="box"];3020[label="xwv621",fontsize=16,color="green",shape="box"];3021[label="xwv611",fontsize=16,color="green",shape="box"];3022[label="xwv621",fontsize=16,color="green",shape="box"];3023[label="xwv611",fontsize=16,color="green",shape="box"];3024[label="xwv621",fontsize=16,color="green",shape="box"];3025[label="xwv611",fontsize=16,color="green",shape="box"];3026[label="xwv621",fontsize=16,color="green",shape="box"];3027[label="xwv611",fontsize=16,color="green",shape="box"];3028[label="xwv621",fontsize=16,color="green",shape="box"];3029[label="xwv611",fontsize=16,color="green",shape="box"];3030[label="xwv621",fontsize=16,color="green",shape="box"];3031[label="xwv611",fontsize=16,color="green",shape="box"];3032[label="xwv621",fontsize=16,color="green",shape="box"];3033[label="xwv611",fontsize=16,color="green",shape="box"];3034[label="xwv621",fontsize=16,color="green",shape="box"];3540[label="xwv511",fontsize=16,color="green",shape="box"];3541[label="xwv510",fontsize=16,color="green",shape="box"];3542[label="xwv511",fontsize=16,color="green",shape="box"];3543[label="xwv514",fontsize=16,color="green",shape="box"];3544[label="xwv521",fontsize=16,color="green",shape="box"];3545[label="xwv520",fontsize=16,color="green",shape="box"];3546[label="xwv510",fontsize=16,color="green",shape="box"];3547[label="xwv513",fontsize=16,color="green",shape="box"];3548[label="xwv523",fontsize=16,color="green",shape="box"];3549[label="xwv522",fontsize=16,color="green",shape="box"];3550[label="xwv512",fontsize=16,color="green",shape="box"];3551[label="xwv524",fontsize=16,color="green",shape="box"];3552[label="xwv512",fontsize=16,color="green",shape="box"];3553[label="xwv514",fontsize=16,color="green",shape="box"];3554[label="xwv513",fontsize=16,color="green",shape="box"];3539[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv273 xwv274 xwv275 xwv276 xwv277) (FiniteMap.Branch xwv278 xwv279 xwv280 xwv281 xwv282) (FiniteMap.findMax (FiniteMap.Branch xwv283 xwv284 xwv285 xwv286 xwv287))",fontsize=16,color="burlywood",shape="triangle"];4679[label="xwv287/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3539 -> 4679[label="",style="solid", color="burlywood", weight=9]; 31.03/14.63 4679 -> 3630[label="",style="solid", color="burlywood", weight=3]; 31.03/14.63 4680[label="xwv287/FiniteMap.Branch xwv2870 xwv2871 xwv2872 xwv2873 xwv2874",fontsize=10,color="white",style="solid",shape="box"];3539 -> 4680[label="",style="solid", color="burlywood", weight=9]; 31.03/14.63 4680 -> 3631[label="",style="solid", color="burlywood", weight=3]; 31.03/14.63 3640[label="xwv523",fontsize=16,color="green",shape="box"];3641[label="xwv513",fontsize=16,color="green",shape="box"];3642[label="xwv511",fontsize=16,color="green",shape="box"];3643[label="xwv513",fontsize=16,color="green",shape="box"];3644[label="xwv514",fontsize=16,color="green",shape="box"];3645[label="xwv510",fontsize=16,color="green",shape="box"];3646[label="xwv512",fontsize=16,color="green",shape="box"];3647[label="xwv521",fontsize=16,color="green",shape="box"];3648[label="xwv524",fontsize=16,color="green",shape="box"];3649[label="xwv514",fontsize=16,color="green",shape="box"];3650[label="xwv512",fontsize=16,color="green",shape="box"];3651[label="xwv522",fontsize=16,color="green",shape="box"];3652[label="xwv520",fontsize=16,color="green",shape="box"];3653[label="xwv511",fontsize=16,color="green",shape="box"];3654[label="xwv510",fontsize=16,color="green",shape="box"];3639[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv289 xwv290 xwv291 xwv292 xwv293) (FiniteMap.Branch xwv294 xwv295 xwv296 xwv297 xwv298) (FiniteMap.findMax (FiniteMap.Branch xwv299 xwv300 xwv301 xwv302 xwv303))",fontsize=16,color="burlywood",shape="triangle"];4681[label="xwv303/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3639 -> 4681[label="",style="solid", color="burlywood", weight=9]; 31.03/14.63 4681 -> 3730[label="",style="solid", color="burlywood", weight=3]; 31.03/14.63 4682[label="xwv303/FiniteMap.Branch xwv3030 xwv3031 xwv3032 xwv3033 xwv3034",fontsize=10,color="white",style="solid",shape="box"];3639 -> 4682[label="",style="solid", color="burlywood", weight=9]; 31.03/14.63 4682 -> 3731[label="",style="solid", color="burlywood", weight=3]; 31.03/14.63 3039[label="xwv510",fontsize=16,color="green",shape="box"];3040 -> 2656[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3040[label="FiniteMap.deleteMax (FiniteMap.Branch xwv5140 xwv5141 xwv5142 xwv5143 xwv5144)",fontsize=16,color="magenta"];3040 -> 3115[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3040 -> 3116[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3040 -> 3117[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3040 -> 3118[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3040 -> 3119[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3041[label="xwv511",fontsize=16,color="green",shape="box"];3042[label="xwv513",fontsize=16,color="green",shape="box"];3524[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv241 xwv242 xwv243 xwv244 xwv245) (FiniteMap.Branch xwv246 xwv247 xwv248 xwv249 xwv250) (xwv251,xwv252)",fontsize=16,color="black",shape="box"];3524 -> 3532[label="",style="solid", color="black", weight=3]; 31.03/14.63 3525 -> 3337[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3525[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv241 xwv242 xwv243 xwv244 xwv245) (FiniteMap.Branch xwv246 xwv247 xwv248 xwv249 xwv250) (FiniteMap.findMin (FiniteMap.Branch xwv2540 xwv2541 xwv2542 xwv2543 xwv2544))",fontsize=16,color="magenta"];3525 -> 3533[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3525 -> 3534[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3525 -> 3535[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3525 -> 3536[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3525 -> 3537[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3530[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv257 xwv258 xwv259 xwv260 xwv261) (FiniteMap.Branch xwv262 xwv263 xwv264 xwv265 xwv266) (xwv267,xwv268)",fontsize=16,color="black",shape="box"];3530 -> 3632[label="",style="solid", color="black", weight=3]; 31.03/14.63 3531 -> 3431[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3531[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv257 xwv258 xwv259 xwv260 xwv261) (FiniteMap.Branch xwv262 xwv263 xwv264 xwv265 xwv266) (FiniteMap.findMin (FiniteMap.Branch xwv2700 xwv2701 xwv2702 xwv2703 xwv2704))",fontsize=16,color="magenta"];3531 -> 3633[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3531 -> 3634[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3531 -> 3635[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3531 -> 3636[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3531 -> 3637[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3049[label="xwv163",fontsize=16,color="green",shape="box"];3050[label="FiniteMap.mkBalBranch6MkBalBranch10 xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 True",fontsize=16,color="black",shape="box"];3050 -> 3124[label="",style="solid", color="black", weight=3]; 31.03/14.63 3051 -> 3217[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3051[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xwv160 xwv161 xwv163 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xwv13 xwv14 xwv164 xwv35)",fontsize=16,color="magenta"];3051 -> 3218[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3051 -> 3219[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3051 -> 3220[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3051 -> 3221[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3051 -> 3222[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3051 -> 3223[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3051 -> 3224[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3051 -> 3225[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3051 -> 3226[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3052[label="error []",fontsize=16,color="red",shape="box"];3053 -> 3217[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3053[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xwv3530 xwv3531 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv13 xwv14 xwv16 xwv3533) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xwv350 xwv351 xwv3534 xwv354)",fontsize=16,color="magenta"];3053 -> 3227[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3053 -> 3228[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3053 -> 3229[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3053 -> 3230[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3053 -> 3231[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3053 -> 3232[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3053 -> 3233[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3053 -> 3234[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3053 -> 3235[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3054 -> 607[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3054[label="FiniteMap.mkBranchResult xwv13 xwv14 xwv16 xwv353",fontsize=16,color="magenta"];3054 -> 3146[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3055[label="xwv621",fontsize=16,color="green",shape="box"];3056[label="xwv611",fontsize=16,color="green",shape="box"];3057[label="xwv621",fontsize=16,color="green",shape="box"];3058[label="xwv611",fontsize=16,color="green",shape="box"];3059[label="xwv621",fontsize=16,color="green",shape="box"];3060[label="xwv611",fontsize=16,color="green",shape="box"];3061[label="xwv621",fontsize=16,color="green",shape="box"];3062[label="xwv611",fontsize=16,color="green",shape="box"];3063[label="xwv621",fontsize=16,color="green",shape="box"];3064[label="xwv611",fontsize=16,color="green",shape="box"];3065[label="xwv621",fontsize=16,color="green",shape="box"];3066[label="xwv611",fontsize=16,color="green",shape="box"];3067[label="xwv621",fontsize=16,color="green",shape="box"];3068[label="xwv611",fontsize=16,color="green",shape="box"];3069[label="xwv621",fontsize=16,color="green",shape="box"];3070[label="xwv611",fontsize=16,color="green",shape="box"];3071[label="xwv621",fontsize=16,color="green",shape="box"];3072[label="xwv611",fontsize=16,color="green",shape="box"];3073[label="xwv621",fontsize=16,color="green",shape="box"];3074[label="xwv611",fontsize=16,color="green",shape="box"];3075[label="xwv621",fontsize=16,color="green",shape="box"];3076[label="xwv611",fontsize=16,color="green",shape="box"];3077[label="xwv621",fontsize=16,color="green",shape="box"];3078[label="xwv611",fontsize=16,color="green",shape="box"];3079[label="xwv621",fontsize=16,color="green",shape="box"];3080[label="xwv611",fontsize=16,color="green",shape="box"];3081[label="xwv621",fontsize=16,color="green",shape="box"];3082[label="xwv611",fontsize=16,color="green",shape="box"];3083 -> 395[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3083[label="xwv611 == xwv621",fontsize=16,color="magenta"];3083 -> 3147[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3083 -> 3148[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3084 -> 394[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3084[label="xwv611 == xwv621",fontsize=16,color="magenta"];3084 -> 3149[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3084 -> 3150[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3085 -> 397[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3085[label="xwv611 == xwv621",fontsize=16,color="magenta"];3085 -> 3151[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3085 -> 3152[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3086 -> 390[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3086[label="xwv611 == xwv621",fontsize=16,color="magenta"];3086 -> 3153[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3086 -> 3154[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3087 -> 392[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3087[label="xwv611 == xwv621",fontsize=16,color="magenta"];3087 -> 3155[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3087 -> 3156[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3088 -> 399[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3088[label="xwv611 == xwv621",fontsize=16,color="magenta"];3088 -> 3157[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3088 -> 3158[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3089 -> 398[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3089[label="xwv611 == xwv621",fontsize=16,color="magenta"];3089 -> 3159[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3089 -> 3160[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3090 -> 391[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3090[label="xwv611 == xwv621",fontsize=16,color="magenta"];3090 -> 3161[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3090 -> 3162[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3091 -> 400[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3091[label="xwv611 == xwv621",fontsize=16,color="magenta"];3091 -> 3163[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3091 -> 3164[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3092 -> 401[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3092[label="xwv611 == xwv621",fontsize=16,color="magenta"];3092 -> 3165[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3092 -> 3166[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3093 -> 388[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3093[label="xwv611 == xwv621",fontsize=16,color="magenta"];3093 -> 3167[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3093 -> 3168[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3094 -> 393[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3094[label="xwv611 == xwv621",fontsize=16,color="magenta"];3094 -> 3169[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3094 -> 3170[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3095 -> 389[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3095[label="xwv611 == xwv621",fontsize=16,color="magenta"];3095 -> 3171[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3095 -> 3172[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3096 -> 396[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3096[label="xwv611 == xwv621",fontsize=16,color="magenta"];3096 -> 3173[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3096 -> 3174[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3097 -> 1839[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3097[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3097 -> 3175[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3097 -> 3176[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3098 -> 1840[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3098[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3098 -> 3177[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3098 -> 3178[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3099 -> 1841[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3099[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3099 -> 3179[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3099 -> 3180[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3100 -> 1842[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3100[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3100 -> 3181[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3100 -> 3182[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3101 -> 1843[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3101[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3101 -> 3183[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3101 -> 3184[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3102 -> 1844[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3102[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3102 -> 3185[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3102 -> 3186[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3103 -> 1845[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3103[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3103 -> 3187[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3103 -> 3188[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3104 -> 1846[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3104[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3104 -> 3189[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3104 -> 3190[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3105 -> 1847[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3105[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3105 -> 3191[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3105 -> 3192[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3106 -> 1848[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3106[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3106 -> 3193[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3106 -> 3194[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3107 -> 1849[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3107[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3107 -> 3195[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3107 -> 3196[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3108 -> 1850[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3108[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3108 -> 3197[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3108 -> 3198[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3109 -> 1851[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3109[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3109 -> 3199[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3109 -> 3200[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3110 -> 1852[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3110[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3110 -> 3201[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3110 -> 3202[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3630[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv273 xwv274 xwv275 xwv276 xwv277) (FiniteMap.Branch xwv278 xwv279 xwv280 xwv281 xwv282) (FiniteMap.findMax (FiniteMap.Branch xwv283 xwv284 xwv285 xwv286 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];3630 -> 3732[label="",style="solid", color="black", weight=3]; 31.03/14.63 3631[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv273 xwv274 xwv275 xwv276 xwv277) (FiniteMap.Branch xwv278 xwv279 xwv280 xwv281 xwv282) (FiniteMap.findMax (FiniteMap.Branch xwv283 xwv284 xwv285 xwv286 (FiniteMap.Branch xwv2870 xwv2871 xwv2872 xwv2873 xwv2874)))",fontsize=16,color="black",shape="box"];3631 -> 3733[label="",style="solid", color="black", weight=3]; 31.03/14.63 3730[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv289 xwv290 xwv291 xwv292 xwv293) (FiniteMap.Branch xwv294 xwv295 xwv296 xwv297 xwv298) (FiniteMap.findMax (FiniteMap.Branch xwv299 xwv300 xwv301 xwv302 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];3730 -> 3734[label="",style="solid", color="black", weight=3]; 31.03/14.63 3731[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv289 xwv290 xwv291 xwv292 xwv293) (FiniteMap.Branch xwv294 xwv295 xwv296 xwv297 xwv298) (FiniteMap.findMax (FiniteMap.Branch xwv299 xwv300 xwv301 xwv302 (FiniteMap.Branch xwv3030 xwv3031 xwv3032 xwv3033 xwv3034)))",fontsize=16,color="black",shape="box"];3731 -> 3735[label="",style="solid", color="black", weight=3]; 31.03/14.63 3115[label="xwv5144",fontsize=16,color="green",shape="box"];3116[label="xwv5141",fontsize=16,color="green",shape="box"];3117[label="xwv5140",fontsize=16,color="green",shape="box"];3118[label="xwv5143",fontsize=16,color="green",shape="box"];3119[label="xwv5142",fontsize=16,color="green",shape="box"];3532[label="xwv251",fontsize=16,color="green",shape="box"];3533[label="xwv2541",fontsize=16,color="green",shape="box"];3534[label="xwv2543",fontsize=16,color="green",shape="box"];3535[label="xwv2540",fontsize=16,color="green",shape="box"];3536[label="xwv2544",fontsize=16,color="green",shape="box"];3537[label="xwv2542",fontsize=16,color="green",shape="box"];3632[label="xwv268",fontsize=16,color="green",shape="box"];3633[label="xwv2702",fontsize=16,color="green",shape="box"];3634[label="xwv2701",fontsize=16,color="green",shape="box"];3635[label="xwv2703",fontsize=16,color="green",shape="box"];3636[label="xwv2704",fontsize=16,color="green",shape="box"];3637[label="xwv2700",fontsize=16,color="green",shape="box"];3124[label="FiniteMap.mkBalBranch6Double_R xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35",fontsize=16,color="burlywood",shape="box"];4683[label="xwv164/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3124 -> 4683[label="",style="solid", color="burlywood", weight=9]; 31.03/14.63 4683 -> 3215[label="",style="solid", color="burlywood", weight=3]; 31.03/14.63 4684[label="xwv164/FiniteMap.Branch xwv1640 xwv1641 xwv1642 xwv1643 xwv1644",fontsize=10,color="white",style="solid",shape="box"];3124 -> 4684[label="",style="solid", color="burlywood", weight=9]; 31.03/14.63 4684 -> 3216[label="",style="solid", color="burlywood", weight=3]; 31.03/14.63 3218[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3219[label="xwv160",fontsize=16,color="green",shape="box"];3220[label="xwv14",fontsize=16,color="green",shape="box"];3221[label="xwv161",fontsize=16,color="green",shape="box"];3222[label="xwv163",fontsize=16,color="green",shape="box"];3223[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3224[label="xwv35",fontsize=16,color="green",shape="box"];3225[label="xwv13",fontsize=16,color="green",shape="box"];3226[label="xwv164",fontsize=16,color="green",shape="box"];3217[label="FiniteMap.mkBranch (Pos (Succ xwv231)) xwv232 xwv233 xwv234 (FiniteMap.mkBranch (Pos (Succ xwv235)) xwv236 xwv237 xwv238 xwv239)",fontsize=16,color="black",shape="triangle"];3217 -> 3254[label="",style="solid", color="black", weight=3]; 31.03/14.63 3227[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3228[label="xwv3530",fontsize=16,color="green",shape="box"];3229[label="xwv351",fontsize=16,color="green",shape="box"];3230[label="xwv3531",fontsize=16,color="green",shape="box"];3231[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv13 xwv14 xwv16 xwv3533",fontsize=16,color="black",shape="box"];3231 -> 3255[label="",style="solid", color="black", weight=3]; 31.03/14.63 3232[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3233[label="xwv354",fontsize=16,color="green",shape="box"];3234[label="xwv350",fontsize=16,color="green",shape="box"];3235[label="xwv3534",fontsize=16,color="green",shape="box"];3146[label="xwv353",fontsize=16,color="green",shape="box"];3147[label="xwv611",fontsize=16,color="green",shape="box"];3148[label="xwv621",fontsize=16,color="green",shape="box"];3149[label="xwv611",fontsize=16,color="green",shape="box"];3150[label="xwv621",fontsize=16,color="green",shape="box"];3151[label="xwv611",fontsize=16,color="green",shape="box"];3152[label="xwv621",fontsize=16,color="green",shape="box"];3153[label="xwv611",fontsize=16,color="green",shape="box"];3154[label="xwv621",fontsize=16,color="green",shape="box"];3155[label="xwv611",fontsize=16,color="green",shape="box"];3156[label="xwv621",fontsize=16,color="green",shape="box"];3157[label="xwv611",fontsize=16,color="green",shape="box"];3158[label="xwv621",fontsize=16,color="green",shape="box"];3159[label="xwv611",fontsize=16,color="green",shape="box"];3160[label="xwv621",fontsize=16,color="green",shape="box"];3161[label="xwv611",fontsize=16,color="green",shape="box"];3162[label="xwv621",fontsize=16,color="green",shape="box"];3163[label="xwv611",fontsize=16,color="green",shape="box"];3164[label="xwv621",fontsize=16,color="green",shape="box"];3165[label="xwv611",fontsize=16,color="green",shape="box"];3166[label="xwv621",fontsize=16,color="green",shape="box"];3167[label="xwv611",fontsize=16,color="green",shape="box"];3168[label="xwv621",fontsize=16,color="green",shape="box"];3169[label="xwv611",fontsize=16,color="green",shape="box"];3170[label="xwv621",fontsize=16,color="green",shape="box"];3171[label="xwv611",fontsize=16,color="green",shape="box"];3172[label="xwv621",fontsize=16,color="green",shape="box"];3173[label="xwv611",fontsize=16,color="green",shape="box"];3174[label="xwv621",fontsize=16,color="green",shape="box"];3175[label="xwv612",fontsize=16,color="green",shape="box"];3176[label="xwv622",fontsize=16,color="green",shape="box"];3177[label="xwv612",fontsize=16,color="green",shape="box"];3178[label="xwv622",fontsize=16,color="green",shape="box"];3179[label="xwv612",fontsize=16,color="green",shape="box"];3180[label="xwv622",fontsize=16,color="green",shape="box"];3181[label="xwv612",fontsize=16,color="green",shape="box"];3182[label="xwv622",fontsize=16,color="green",shape="box"];3183[label="xwv612",fontsize=16,color="green",shape="box"];3184[label="xwv622",fontsize=16,color="green",shape="box"];3185[label="xwv612",fontsize=16,color="green",shape="box"];3186[label="xwv622",fontsize=16,color="green",shape="box"];3187[label="xwv612",fontsize=16,color="green",shape="box"];3188[label="xwv622",fontsize=16,color="green",shape="box"];3189[label="xwv612",fontsize=16,color="green",shape="box"];3190[label="xwv622",fontsize=16,color="green",shape="box"];3191[label="xwv612",fontsize=16,color="green",shape="box"];3192[label="xwv622",fontsize=16,color="green",shape="box"];3193[label="xwv612",fontsize=16,color="green",shape="box"];3194[label="xwv622",fontsize=16,color="green",shape="box"];3195[label="xwv612",fontsize=16,color="green",shape="box"];3196[label="xwv622",fontsize=16,color="green",shape="box"];3197[label="xwv612",fontsize=16,color="green",shape="box"];3198[label="xwv622",fontsize=16,color="green",shape="box"];3199[label="xwv612",fontsize=16,color="green",shape="box"];3200[label="xwv622",fontsize=16,color="green",shape="box"];3201[label="xwv612",fontsize=16,color="green",shape="box"];3202[label="xwv622",fontsize=16,color="green",shape="box"];3732[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv273 xwv274 xwv275 xwv276 xwv277) (FiniteMap.Branch xwv278 xwv279 xwv280 xwv281 xwv282) (xwv283,xwv284)",fontsize=16,color="black",shape="box"];3732 -> 3736[label="",style="solid", color="black", weight=3]; 31.03/14.63 3733 -> 3539[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3733[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv273 xwv274 xwv275 xwv276 xwv277) (FiniteMap.Branch xwv278 xwv279 xwv280 xwv281 xwv282) (FiniteMap.findMax (FiniteMap.Branch xwv2870 xwv2871 xwv2872 xwv2873 xwv2874))",fontsize=16,color="magenta"];3733 -> 3737[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3733 -> 3738[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3733 -> 3739[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3733 -> 3740[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3733 -> 3741[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3734[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv289 xwv290 xwv291 xwv292 xwv293) (FiniteMap.Branch xwv294 xwv295 xwv296 xwv297 xwv298) (xwv299,xwv300)",fontsize=16,color="black",shape="box"];3734 -> 3742[label="",style="solid", color="black", weight=3]; 31.03/14.63 3735 -> 3639[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3735[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv289 xwv290 xwv291 xwv292 xwv293) (FiniteMap.Branch xwv294 xwv295 xwv296 xwv297 xwv298) (FiniteMap.findMax (FiniteMap.Branch xwv3030 xwv3031 xwv3032 xwv3033 xwv3034))",fontsize=16,color="magenta"];3735 -> 3743[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3735 -> 3744[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3735 -> 3745[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3735 -> 3746[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3735 -> 3747[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3215[label="FiniteMap.mkBalBranch6Double_R xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 FiniteMap.EmptyFM) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 FiniteMap.EmptyFM) xwv35",fontsize=16,color="black",shape="box"];3215 -> 3264[label="",style="solid", color="black", weight=3]; 31.03/14.63 3216[label="FiniteMap.mkBalBranch6Double_R xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 (FiniteMap.Branch xwv1640 xwv1641 xwv1642 xwv1643 xwv1644)) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 (FiniteMap.Branch xwv1640 xwv1641 xwv1642 xwv1643 xwv1644)) xwv35",fontsize=16,color="black",shape="box"];3216 -> 3265[label="",style="solid", color="black", weight=3]; 31.03/14.63 3254 -> 607[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3254[label="FiniteMap.mkBranchResult xwv232 xwv233 xwv234 (FiniteMap.mkBranch (Pos (Succ xwv235)) xwv236 xwv237 xwv238 xwv239)",fontsize=16,color="magenta"];3254 -> 3266[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3254 -> 3267[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3254 -> 3268[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3254 -> 3269[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3255 -> 607[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3255[label="FiniteMap.mkBranchResult xwv13 xwv14 xwv16 xwv3533",fontsize=16,color="magenta"];3255 -> 3270[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3736[label="xwv283",fontsize=16,color="green",shape="box"];3737[label="xwv2870",fontsize=16,color="green",shape="box"];3738[label="xwv2871",fontsize=16,color="green",shape="box"];3739[label="xwv2872",fontsize=16,color="green",shape="box"];3740[label="xwv2874",fontsize=16,color="green",shape="box"];3741[label="xwv2873",fontsize=16,color="green",shape="box"];3742[label="xwv300",fontsize=16,color="green",shape="box"];3743[label="xwv3033",fontsize=16,color="green",shape="box"];3744[label="xwv3031",fontsize=16,color="green",shape="box"];3745[label="xwv3032",fontsize=16,color="green",shape="box"];3746[label="xwv3034",fontsize=16,color="green",shape="box"];3747[label="xwv3030",fontsize=16,color="green",shape="box"];3264[label="error []",fontsize=16,color="red",shape="box"];3265 -> 3217[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3265[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xwv1640 xwv1641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv160 xwv161 xwv163 xwv1643) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xwv13 xwv14 xwv1644 xwv35)",fontsize=16,color="magenta"];3265 -> 3283[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3265 -> 3284[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3265 -> 3285[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3265 -> 3286[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3265 -> 3287[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3265 -> 3288[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3265 -> 3289[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3265 -> 3290[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3265 -> 3291[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3266[label="xwv232",fontsize=16,color="green",shape="box"];3267[label="FiniteMap.mkBranch (Pos (Succ xwv235)) xwv236 xwv237 xwv238 xwv239",fontsize=16,color="black",shape="triangle"];3267 -> 3292[label="",style="solid", color="black", weight=3]; 31.03/14.63 3268[label="xwv233",fontsize=16,color="green",shape="box"];3269[label="xwv234",fontsize=16,color="green",shape="box"];3270[label="xwv3533",fontsize=16,color="green",shape="box"];3283[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3284[label="xwv1640",fontsize=16,color="green",shape="box"];3285[label="xwv14",fontsize=16,color="green",shape="box"];3286[label="xwv1641",fontsize=16,color="green",shape="box"];3287 -> 3267[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3287[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv160 xwv161 xwv163 xwv1643",fontsize=16,color="magenta"];3287 -> 3301[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3287 -> 3302[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3287 -> 3303[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3287 -> 3304[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3287 -> 3305[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3288[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3289[label="xwv35",fontsize=16,color="green",shape="box"];3290[label="xwv13",fontsize=16,color="green",shape="box"];3291[label="xwv1644",fontsize=16,color="green",shape="box"];3292 -> 607[label="",style="dashed", color="red", weight=0]; 31.03/14.63 3292[label="FiniteMap.mkBranchResult xwv236 xwv237 xwv238 xwv239",fontsize=16,color="magenta"];3292 -> 3306[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3292 -> 3307[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3292 -> 3308[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3292 -> 3309[label="",style="dashed", color="magenta", weight=3]; 31.03/14.63 3301[label="xwv161",fontsize=16,color="green",shape="box"];3302[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3303[label="xwv1643",fontsize=16,color="green",shape="box"];3304[label="xwv160",fontsize=16,color="green",shape="box"];3305[label="xwv163",fontsize=16,color="green",shape="box"];3306[label="xwv236",fontsize=16,color="green",shape="box"];3307[label="xwv239",fontsize=16,color="green",shape="box"];3308[label="xwv237",fontsize=16,color="green",shape="box"];3309[label="xwv238",fontsize=16,color="green",shape="box"];} 31.03/14.63 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (16) 31.03/14.63 Complex Obligation (AND) 31.03/14.63 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (17) 31.03/14.63 Obligation: 31.03/14.63 Q DP problem: 31.03/14.63 The TRS P consists of the following rules: 31.03/14.63 31.03/14.63 new_primCmpNat(Succ(xwv400), Succ(xwv3000)) -> new_primCmpNat(xwv400, xwv3000) 31.03/14.63 31.03/14.63 R is empty. 31.03/14.63 Q is empty. 31.03/14.63 We have to consider all minimal (P,Q,R)-chains. 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (18) QDPSizeChangeProof (EQUIVALENT) 31.03/14.63 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.03/14.63 31.03/14.63 From the DPs we obtained the following set of size-change graphs: 31.03/14.63 *new_primCmpNat(Succ(xwv400), Succ(xwv3000)) -> new_primCmpNat(xwv400, xwv3000) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2 31.03/14.63 31.03/14.63 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (19) 31.03/14.63 YES 31.03/14.63 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (20) 31.03/14.63 Obligation: 31.03/14.63 Q DP problem: 31.03/14.63 The TRS P consists of the following rules: 31.03/14.63 31.03/14.63 new_esEs2(Just(xwv280), Just(xwv330), app(app(ty_@2, hg), hh)) -> new_esEs1(xwv280, xwv330, hg, hh) 31.03/14.63 new_esEs0(Left(xwv280), Left(xwv330), app(app(ty_@2, cf), cg), cc) -> new_esEs1(xwv280, xwv330, cf, cg) 31.03/14.63 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(xwv281, xwv331, ha, hb, hc) 31.03/14.63 new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(ty_Either, bah), bba), baf, bag) -> new_esEs0(xwv280, xwv330, bah, bba) 31.03/14.63 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), gb, app(app(ty_Either, gd), ge)) -> new_esEs0(xwv281, xwv331, gd, ge) 31.03/14.63 new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, app(app(ty_Either, bcb), bcc), bag) -> new_esEs0(xwv281, xwv331, bcb, bcc) 31.03/14.63 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(ty_Either, fa), fb), eh) -> new_esEs0(xwv280, xwv330, fa, fb) 31.03/14.63 new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, baf, app(app(ty_Either, bdc), bdd)) -> new_esEs0(xwv282, xwv332, bdc, bdd) 31.03/14.63 new_esEs(:(xwv280, xwv281), :(xwv330, xwv331), app(app(ty_@2, bc), bd)) -> new_esEs1(xwv280, xwv330, bc, bd) 31.03/14.63 new_esEs2(Just(xwv280), Just(xwv330), app(ty_[], hd)) -> new_esEs(xwv280, xwv330, hd) 31.03/14.63 new_esEs0(Left(xwv280), Left(xwv330), app(ty_Maybe, da), cc) -> new_esEs2(xwv280, xwv330, da) 31.03/14.63 new_esEs2(Just(xwv280), Just(xwv330), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(xwv280, xwv330, bab, bac, bad) 31.03/14.63 new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(app(ty_@3, bbe), bbf), bbg), baf, bag) -> new_esEs3(xwv280, xwv330, bbe, bbf, bbg) 31.03/14.63 new_esEs(:(xwv280, xwv281), :(xwv330, xwv331), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs3(xwv280, xwv330, bf, bg, bh) 31.03/14.63 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(ty_[], eg), eh) -> new_esEs(xwv280, xwv330, eg) 31.03/14.63 new_esEs0(Right(xwv280), Right(xwv330), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xwv280, xwv330, dg, dh) 31.03/14.63 new_esEs(:(xwv280, xwv281), :(xwv330, xwv331), ca) -> new_esEs(xwv281, xwv331, ca) 31.03/14.63 new_esEs2(Just(xwv280), Just(xwv330), app(ty_Maybe, baa)) -> new_esEs2(xwv280, xwv330, baa) 31.03/14.63 new_esEs(:(xwv280, xwv281), :(xwv330, xwv331), app(ty_[], h)) -> new_esEs(xwv280, xwv330, h) 31.03/14.63 new_esEs0(Right(xwv280), Right(xwv330), de, app(ty_[], df)) -> new_esEs(xwv280, xwv330, df) 31.03/14.63 new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, baf, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(xwv282, xwv332, bdh, bea, beb) 31.03/14.63 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), gb, app(ty_Maybe, gh)) -> new_esEs2(xwv281, xwv331, gh) 31.03/14.63 new_esEs0(Right(xwv280), Right(xwv330), de, app(ty_Maybe, ec)) -> new_esEs2(xwv280, xwv330, ec) 31.03/14.63 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(ty_Maybe, ff), eh) -> new_esEs2(xwv280, xwv330, ff) 31.03/14.63 new_esEs(:(xwv280, xwv281), :(xwv330, xwv331), app(ty_Maybe, be)) -> new_esEs2(xwv280, xwv330, be) 31.03/14.63 new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(ty_@2, bbb), bbc), baf, bag) -> new_esEs1(xwv280, xwv330, bbb, bbc) 31.03/14.63 new_esEs0(Left(xwv280), Left(xwv330), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xwv280, xwv330, cd, ce) 31.03/14.63 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(app(ty_@3, fg), fh), ga), eh) -> new_esEs3(xwv280, xwv330, fg, fh, ga) 31.03/14.63 new_esEs0(Left(xwv280), Left(xwv330), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(xwv280, xwv330, db, dc, dd) 31.03/14.63 new_esEs2(Just(xwv280), Just(xwv330), app(app(ty_Either, he), hf)) -> new_esEs0(xwv280, xwv330, he, hf) 31.03/14.63 new_esEs0(Right(xwv280), Right(xwv330), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xwv280, xwv330, ed, ee, ef) 31.03/14.63 new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, app(app(app(ty_@3, bcg), bch), bda), bag) -> new_esEs3(xwv281, xwv331, bcg, bch, bda) 31.03/14.63 new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, app(ty_[], bca), bag) -> new_esEs(xwv281, xwv331, bca) 31.03/14.63 new_esEs0(Right(xwv280), Right(xwv330), de, app(app(ty_@2, ea), eb)) -> new_esEs1(xwv280, xwv330, ea, eb) 31.03/14.63 new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, app(app(ty_@2, bcd), bce), bag) -> new_esEs1(xwv281, xwv331, bcd, bce) 31.03/14.63 new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, baf, app(ty_[], bdb)) -> new_esEs(xwv282, xwv332, bdb) 31.03/14.63 new_esEs(:(xwv280, xwv281), :(xwv330, xwv331), app(app(ty_Either, ba), bb)) -> new_esEs0(xwv280, xwv330, ba, bb) 31.03/14.63 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(ty_@2, fc), fd), eh) -> new_esEs1(xwv280, xwv330, fc, fd) 31.03/14.63 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), gb, app(ty_[], gc)) -> new_esEs(xwv281, xwv331, gc) 31.03/14.63 new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, baf, app(ty_Maybe, bdg)) -> new_esEs2(xwv282, xwv332, bdg) 31.03/14.63 new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(ty_[], bae), baf, bag) -> new_esEs(xwv280, xwv330, bae) 31.03/14.63 new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, baf, app(app(ty_@2, bde), bdf)) -> new_esEs1(xwv282, xwv332, bde, bdf) 31.03/14.63 new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(ty_Maybe, bbd), baf, bag) -> new_esEs2(xwv280, xwv330, bbd) 31.03/14.63 new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), gb, app(app(ty_@2, gf), gg)) -> new_esEs1(xwv281, xwv331, gf, gg) 31.03/14.63 new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, app(ty_Maybe, bcf), bag) -> new_esEs2(xwv281, xwv331, bcf) 31.03/14.63 new_esEs0(Left(xwv280), Left(xwv330), app(ty_[], cb), cc) -> new_esEs(xwv280, xwv330, cb) 31.03/14.63 31.03/14.63 R is empty. 31.03/14.63 Q is empty. 31.03/14.63 We have to consider all minimal (P,Q,R)-chains. 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (21) QDPSizeChangeProof (EQUIVALENT) 31.03/14.63 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.03/14.63 31.03/14.63 From the DPs we obtained the following set of size-change graphs: 31.03/14.63 *new_esEs(:(xwv280, xwv281), :(xwv330, xwv331), app(ty_Maybe, be)) -> new_esEs2(xwv280, xwv330, be) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs2(Just(xwv280), Just(xwv330), app(ty_Maybe, baa)) -> new_esEs2(xwv280, xwv330, baa) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs(:(xwv280, xwv281), :(xwv330, xwv331), app(app(ty_Either, ba), bb)) -> new_esEs0(xwv280, xwv330, ba, bb) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs2(Just(xwv280), Just(xwv330), app(app(ty_Either, he), hf)) -> new_esEs0(xwv280, xwv330, he, hf) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs(:(xwv280, xwv281), :(xwv330, xwv331), app(app(ty_@2, bc), bd)) -> new_esEs1(xwv280, xwv330, bc, bd) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs2(Just(xwv280), Just(xwv330), app(app(ty_@2, hg), hh)) -> new_esEs1(xwv280, xwv330, hg, hh) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs(:(xwv280, xwv281), :(xwv330, xwv331), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs3(xwv280, xwv330, bf, bg, bh) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs2(Just(xwv280), Just(xwv330), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(xwv280, xwv330, bab, bac, bad) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs2(Just(xwv280), Just(xwv330), app(ty_[], hd)) -> new_esEs(xwv280, xwv330, hd) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), gb, app(ty_Maybe, gh)) -> new_esEs2(xwv281, xwv331, gh) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(ty_Maybe, ff), eh) -> new_esEs2(xwv280, xwv330, ff) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), gb, app(app(ty_Either, gd), ge)) -> new_esEs0(xwv281, xwv331, gd, ge) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(ty_Either, fa), fb), eh) -> new_esEs0(xwv280, xwv330, fa, fb) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(ty_@2, fc), fd), eh) -> new_esEs1(xwv280, xwv330, fc, fd) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), gb, app(app(ty_@2, gf), gg)) -> new_esEs1(xwv281, xwv331, gf, gg) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(xwv281, xwv331, ha, hb, hc) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(app(ty_@3, fg), fh), ga), eh) -> new_esEs3(xwv280, xwv330, fg, fh, ga) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), app(ty_[], eg), eh) -> new_esEs(xwv280, xwv330, eg) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs1(@2(xwv280, xwv281), @2(xwv330, xwv331), gb, app(ty_[], gc)) -> new_esEs(xwv281, xwv331, gc) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, baf, app(ty_Maybe, bdg)) -> new_esEs2(xwv282, xwv332, bdg) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(ty_Maybe, bbd), baf, bag) -> new_esEs2(xwv280, xwv330, bbd) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, app(ty_Maybe, bcf), bag) -> new_esEs2(xwv281, xwv331, bcf) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs0(Left(xwv280), Left(xwv330), app(ty_Maybe, da), cc) -> new_esEs2(xwv280, xwv330, da) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs0(Right(xwv280), Right(xwv330), de, app(ty_Maybe, ec)) -> new_esEs2(xwv280, xwv330, ec) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(ty_Either, bah), bba), baf, bag) -> new_esEs0(xwv280, xwv330, bah, bba) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, app(app(ty_Either, bcb), bcc), bag) -> new_esEs0(xwv281, xwv331, bcb, bcc) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, baf, app(app(ty_Either, bdc), bdd)) -> new_esEs0(xwv282, xwv332, bdc, bdd) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs0(Right(xwv280), Right(xwv330), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xwv280, xwv330, dg, dh) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs0(Left(xwv280), Left(xwv330), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xwv280, xwv330, cd, ce) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(ty_@2, bbb), bbc), baf, bag) -> new_esEs1(xwv280, xwv330, bbb, bbc) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, app(app(ty_@2, bcd), bce), bag) -> new_esEs1(xwv281, xwv331, bcd, bce) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, baf, app(app(ty_@2, bde), bdf)) -> new_esEs1(xwv282, xwv332, bde, bdf) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(app(ty_@3, bbe), bbf), bbg), baf, bag) -> new_esEs3(xwv280, xwv330, bbe, bbf, bbg) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, baf, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(xwv282, xwv332, bdh, bea, beb) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, app(app(app(ty_@3, bcg), bch), bda), bag) -> new_esEs3(xwv281, xwv331, bcg, bch, bda) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, app(ty_[], bca), bag) -> new_esEs(xwv281, xwv331, bca) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), bbh, baf, app(ty_[], bdb)) -> new_esEs(xwv282, xwv332, bdb) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs3(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(ty_[], bae), baf, bag) -> new_esEs(xwv280, xwv330, bae) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs0(Left(xwv280), Left(xwv330), app(app(ty_@2, cf), cg), cc) -> new_esEs1(xwv280, xwv330, cf, cg) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs0(Right(xwv280), Right(xwv330), de, app(app(ty_@2, ea), eb)) -> new_esEs1(xwv280, xwv330, ea, eb) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs0(Left(xwv280), Left(xwv330), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(xwv280, xwv330, db, dc, dd) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs0(Right(xwv280), Right(xwv330), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xwv280, xwv330, ed, ee, ef) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs0(Right(xwv280), Right(xwv330), de, app(ty_[], df)) -> new_esEs(xwv280, xwv330, df) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs0(Left(xwv280), Left(xwv330), app(ty_[], cb), cc) -> new_esEs(xwv280, xwv330, cb) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs(:(xwv280, xwv281), :(xwv330, xwv331), ca) -> new_esEs(xwv281, xwv331, ca) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 31.03/14.63 31.03/14.63 31.03/14.63 *new_esEs(:(xwv280, xwv281), :(xwv330, xwv331), app(ty_[], h)) -> new_esEs(xwv280, xwv330, h) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.63 31.03/14.63 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (22) 31.03/14.63 YES 31.03/14.63 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (23) 31.03/14.63 Obligation: 31.03/14.63 Q DP problem: 31.03/14.63 The TRS P consists of the following rules: 31.03/14.63 31.03/14.63 new_primMulNat(Succ(xwv4000), Succ(xwv30100)) -> new_primMulNat(xwv4000, Succ(xwv30100)) 31.03/14.63 31.03/14.63 R is empty. 31.03/14.63 Q is empty. 31.03/14.63 We have to consider all minimal (P,Q,R)-chains. 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (24) QDPSizeChangeProof (EQUIVALENT) 31.03/14.63 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.03/14.63 31.03/14.63 From the DPs we obtained the following set of size-change graphs: 31.03/14.63 *new_primMulNat(Succ(xwv4000), Succ(xwv30100)) -> new_primMulNat(xwv4000, Succ(xwv30100)) 31.03/14.63 The graph contains the following edges 1 > 1, 2 >= 2 31.03/14.63 31.03/14.63 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (25) 31.03/14.63 YES 31.03/14.63 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (26) 31.03/14.63 Obligation: 31.03/14.63 Q DP problem: 31.03/14.63 The TRS P consists of the following rules: 31.03/14.63 31.03/14.63 new_primMinusNat(Succ(xwv16200), Succ(xwv13000)) -> new_primMinusNat(xwv16200, xwv13000) 31.03/14.63 31.03/14.63 R is empty. 31.03/14.63 Q is empty. 31.03/14.63 We have to consider all minimal (P,Q,R)-chains. 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (27) QDPSizeChangeProof (EQUIVALENT) 31.03/14.63 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.03/14.63 31.03/14.63 From the DPs we obtained the following set of size-change graphs: 31.03/14.63 *new_primMinusNat(Succ(xwv16200), Succ(xwv13000)) -> new_primMinusNat(xwv16200, xwv13000) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2 31.03/14.63 31.03/14.63 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (28) 31.03/14.63 YES 31.03/14.63 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (29) 31.03/14.63 Obligation: 31.03/14.63 Q DP problem: 31.03/14.63 The TRS P consists of the following rules: 31.03/14.63 31.03/14.63 new_primPlusNat(Succ(xwv16200), Succ(xwv13000)) -> new_primPlusNat(xwv16200, xwv13000) 31.03/14.63 31.03/14.63 R is empty. 31.03/14.63 Q is empty. 31.03/14.63 We have to consider all minimal (P,Q,R)-chains. 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (30) QDPSizeChangeProof (EQUIVALENT) 31.03/14.63 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.03/14.63 31.03/14.63 From the DPs we obtained the following set of size-change graphs: 31.03/14.63 *new_primPlusNat(Succ(xwv16200), Succ(xwv13000)) -> new_primPlusNat(xwv16200, xwv13000) 31.03/14.63 The graph contains the following edges 1 > 1, 2 > 2 31.03/14.63 31.03/14.63 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (31) 31.03/14.63 YES 31.03/14.63 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (32) 31.03/14.63 Obligation: 31.03/14.63 Q DP problem: 31.03/14.63 The TRS P consists of the following rules: 31.03/14.63 31.03/14.63 new_glueBal2Mid_key10(xwv273, xwv274, xwv275, xwv276, xwv277, xwv278, xwv279, xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, Branch(xwv2870, xwv2871, xwv2872, xwv2873, xwv2874), h, ba) -> new_glueBal2Mid_key10(xwv273, xwv274, xwv275, xwv276, xwv277, xwv278, xwv279, xwv280, xwv281, xwv282, xwv2870, xwv2871, xwv2872, xwv2873, xwv2874, h, ba) 31.03/14.63 31.03/14.63 R is empty. 31.03/14.63 Q is empty. 31.03/14.63 We have to consider all minimal (P,Q,R)-chains. 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (33) QDPSizeChangeProof (EQUIVALENT) 31.03/14.63 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.03/14.63 31.03/14.63 From the DPs we obtained the following set of size-change graphs: 31.03/14.63 *new_glueBal2Mid_key10(xwv273, xwv274, xwv275, xwv276, xwv277, xwv278, xwv279, xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, Branch(xwv2870, xwv2871, xwv2872, xwv2873, xwv2874), h, ba) -> new_glueBal2Mid_key10(xwv273, xwv274, xwv275, xwv276, xwv277, xwv278, xwv279, xwv280, xwv281, xwv282, xwv2870, xwv2871, xwv2872, xwv2873, xwv2874, h, ba) 31.03/14.63 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 15 > 11, 15 > 12, 15 > 13, 15 > 14, 15 > 15, 16 >= 16, 17 >= 17 31.03/14.63 31.03/14.63 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (34) 31.03/14.63 YES 31.03/14.63 31.03/14.63 ---------------------------------------- 31.03/14.63 31.03/14.63 (35) 31.03/14.63 Obligation: 31.03/14.63 Q DP problem: 31.03/14.63 The TRS P consists of the following rules: 31.03/14.63 31.03/14.63 new_primCompAux(xwv40, xwv300, xwv56, app(ty_[], cfg)) -> new_compare0(xwv40, xwv300, cfg) 31.03/14.63 new_compare23(xwv119, xwv120, xwv121, xwv122, False, app(ty_Maybe, cdd), cde) -> new_lt(xwv119, xwv121, cdd) 31.03/14.63 new_compare2(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(app(ty_@3, ge), gf), gg)), gd)) -> new_ltEs0(xwv610, xwv620, ge, gf, gg) 31.03/14.63 new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, cd, app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs0(xwv612, xwv622, fb, fc, fd) 31.03/14.63 new_compare21(xwv83, xwv84, False, app(ty_[], cbe), cae) -> new_ltEs3(xwv83, xwv84, cbe) 31.03/14.63 new_compare22(xwv90, xwv91, False, cga, app(ty_[], chb)) -> new_ltEs3(xwv90, xwv91, chb) 31.03/14.63 new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), cd), app(ty_[], gb))) -> new_ltEs3(xwv612, xwv622, gb) 31.03/14.63 new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, bca), app(ty_[], bdb))) -> new_ltEs3(xwv611, xwv621, bdb) 31.03/14.63 new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(ty_[], df)), cd), ce)) -> new_lt3(xwv610, xwv620, df) 31.03/14.63 new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(app(ty_@3, cf), cg), da), cd, ce) -> new_lt0(xwv610, xwv620, cf, cg, da) 31.03/14.63 new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, app(app(ty_@2, bfb), bfc), bed) -> new_lt2(xwv73, xwv76, bfb, bfc) 31.03/14.63 new_compare3(Left(xwv40), Left(xwv300), cab, cac) -> new_compare21(xwv40, xwv300, new_esEs8(xwv40, xwv300, cab), cab, cac) 31.03/14.63 new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(ty_Either, bbd), bbe), bah) -> new_lt1(xwv610, xwv620, bbd, bbe) 31.03/14.63 new_compare2(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(ty_Maybe, gc)), gd)) -> new_ltEs(xwv610, xwv620, gc) 31.03/14.63 new_compare21(xwv83, xwv84, False, app(app(app(ty_@3, caf), cag), cah), cae) -> new_ltEs0(xwv83, xwv84, caf, cag, cah) 31.03/14.63 new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, bfe, app(app(ty_@2, bgd), bge)) -> new_ltEs2(xwv74, xwv77, bgd, bge) 31.03/14.63 new_ltEs1(Right(xwv610), Right(xwv620), he, app(ty_Maybe, hf)) -> new_ltEs(xwv610, xwv620, hf) 31.03/14.63 new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), bca, app(app(ty_Either, bcf), bcg)) -> new_ltEs1(xwv611, xwv621, bcf, bcg) 31.03/14.63 new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(ty_@2, dd), de)), cd), ce)) -> new_lt2(xwv610, xwv620, dd, de) 31.03/14.63 new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, bfe, app(app(app(ty_@3, bfg), bfh), bga)) -> new_ltEs0(xwv74, xwv77, bfg, bfh, bga) 31.03/14.63 new_ltEs1(Right(xwv610), Right(xwv620), he, app(app(ty_Either, bab), bac)) -> new_ltEs1(xwv610, xwv620, bab, bac) 31.03/14.63 new_compare23(xwv119, xwv120, xwv121, xwv122, False, app(app(ty_@2, cec), ced), cde) -> new_lt2(xwv119, xwv121, cec, ced) 31.03/14.63 new_compare2(Right(xwv610), Right(xwv620), False, app(app(ty_Either, he), app(ty_[], baf))) -> new_ltEs3(xwv610, xwv620, baf) 31.03/14.63 new_ltEs1(Right(xwv610), Right(xwv620), he, app(ty_[], baf)) -> new_ltEs3(xwv610, xwv620, baf) 31.03/14.63 new_compare(Just(xwv40), Just(xwv300), ba) -> new_compare2(xwv40, xwv300, new_esEs4(xwv40, xwv300, ba), ba) 31.03/14.63 new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), app(app(ty_Either, ed), ee)), ce)) -> new_lt1(xwv611, xwv621, ed, ee) 31.03/14.63 new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), app(ty_Maybe, dh)), ce)) -> new_lt(xwv611, xwv621, dh) 31.03/14.63 new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(ty_[], bbh)), bah)) -> new_lt3(xwv610, xwv620, bbh) 31.03/14.63 new_compare23(xwv119, xwv120, xwv121, xwv122, False, ccb, app(app(app(ty_@3, ccd), cce), ccf)) -> new_ltEs0(xwv120, xwv122, ccd, cce, ccf) 31.03/14.63 new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, app(ty_Maybe, bgg), bfe, bed) -> new_lt(xwv72, xwv75, bgg) 31.03/14.63 new_compare4(@2(xwv40, xwv41), @2(xwv300, xwv301), cbh, cca) -> new_compare23(xwv40, xwv41, xwv300, xwv301, new_asAs(new_esEs10(xwv40, xwv300, cbh), new_esEs11(xwv41, xwv301, cca)), cbh, cca) 31.03/14.63 new_compare22(xwv90, xwv91, False, cga, app(app(ty_Either, cgf), cgg)) -> new_ltEs1(xwv90, xwv91, cgf, cgg) 31.03/14.63 new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(ty_[], df), cd, ce) -> new_lt3(xwv610, xwv620, df) 31.03/14.63 new_compare2(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(ty_Either, bf), bg))) -> new_ltEs1(xwv610, xwv620, bf, bg) 31.03/14.63 new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, cd, app(app(ty_@2, fh), ga)) -> new_ltEs2(xwv612, xwv622, fh, ga) 31.03/14.63 new_compare23(xwv119, xwv120, xwv121, xwv122, False, ccb, app(ty_Maybe, ccc)) -> new_ltEs(xwv120, xwv122, ccc) 31.03/14.63 new_compare2(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(ty_[], hd)), gd)) -> new_ltEs3(xwv610, xwv620, hd) 31.03/14.63 new_ltEs(Just(xwv610), Just(xwv620), app(app(ty_Either, bf), bg)) -> new_ltEs1(xwv610, xwv620, bf, bg) 31.03/14.63 new_ltEs1(Left(xwv610), Left(xwv620), app(ty_Maybe, gc), gd) -> new_ltEs(xwv610, xwv620, gc) 31.03/14.63 new_ltEs(Just(xwv610), Just(xwv620), app(ty_[], cb)) -> new_ltEs3(xwv610, xwv620, cb) 31.03/14.63 new_compare2(Right(xwv610), Right(xwv620), False, app(app(ty_Either, he), app(ty_Maybe, hf))) -> new_ltEs(xwv610, xwv620, hf) 31.03/14.63 new_compare2(Right(xwv610), Right(xwv620), False, app(app(ty_Either, he), app(app(app(ty_@3, hg), hh), baa))) -> new_ltEs0(xwv610, xwv620, hg, hh, baa) 31.03/14.63 new_compare23(xwv119, xwv120, xwv121, xwv122, False, ccb, app(app(ty_@2, cda), cdb)) -> new_ltEs2(xwv120, xwv122, cda, cdb) 31.03/14.63 new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(ty_Maybe, cc), cd, ce) -> new_lt(xwv610, xwv620, cc) 31.03/14.63 new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), app(ty_[], eh)), ce)) -> new_lt3(xwv611, xwv621, eh) 31.03/14.63 new_primCompAux(xwv40, xwv300, xwv56, app(ty_Maybe, ceg)) -> new_compare(xwv40, xwv300, ceg) 31.03/14.63 new_compare2(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(ty_[], cb))) -> new_ltEs3(xwv610, xwv620, cb) 31.03/14.63 new_compare2(Right(xwv610), Right(xwv620), False, app(app(ty_Either, he), app(app(ty_@2, bad), bae))) -> new_ltEs2(xwv610, xwv620, bad, bae) 31.03/14.63 new_ltEs3(xwv61, xwv62, bdc) -> new_compare0(xwv61, xwv62, bdc) 31.03/14.63 new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), bca, app(ty_Maybe, bcb)) -> new_ltEs(xwv611, xwv621, bcb) 31.03/14.63 new_compare22(xwv90, xwv91, False, cga, app(app(ty_@2, cgh), cha)) -> new_ltEs2(xwv90, xwv91, cgh, cha) 31.03/14.63 new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, app(ty_[], bhg), bfe, bed) -> new_lt3(xwv72, xwv75, bhg) 31.03/14.63 new_compare0(:(xwv40, xwv41), :(xwv300, xwv301), cef) -> new_compare0(xwv41, xwv301, cef) 31.03/14.63 new_compare2(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(ty_@2, hb), hc)), gd)) -> new_ltEs2(xwv610, xwv620, hb, hc) 31.03/14.63 new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, cd, app(app(ty_Either, ff), fg)) -> new_ltEs1(xwv612, xwv622, ff, fg) 31.03/14.63 new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, app(app(app(ty_@3, bgh), bha), bhb), bfe, bed) -> new_lt0(xwv72, xwv75, bgh, bha, bhb) 31.03/14.63 new_compare22(xwv90, xwv91, False, cga, app(ty_Maybe, cgb)) -> new_ltEs(xwv90, xwv91, cgb) 31.03/14.63 new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(app(ty_@3, cf), cg), da)), cd), ce)) -> new_lt0(xwv610, xwv620, cf, cg, da) 31.03/14.63 new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), cd), app(app(ty_Either, ff), fg))) -> new_ltEs1(xwv612, xwv622, ff, fg) 31.03/14.63 new_ltEs(Just(xwv610), Just(xwv620), app(app(ty_@2, bh), ca)) -> new_ltEs2(xwv610, xwv620, bh, ca) 31.03/14.63 new_compare23(xwv119, xwv120, xwv121, xwv122, False, app(app(app(ty_@3, cdf), cdg), cdh), cde) -> new_lt0(xwv119, xwv121, cdf, cdg, cdh) 31.03/14.63 new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, bca), app(app(app(ty_@3, bcc), bcd), bce))) -> new_ltEs0(xwv611, xwv621, bcc, bcd, bce) 31.03/14.63 new_lt2(xwv18, xwv13, cbf, cbg) -> new_compare4(xwv18, xwv13, cbf, cbg) 31.03/14.63 new_compare21(xwv83, xwv84, False, app(ty_Maybe, cad), cae) -> new_ltEs(xwv83, xwv84, cad) 31.03/14.63 new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(ty_Either, db), dc)), cd), ce)) -> new_lt1(xwv610, xwv620, db, dc) 31.03/14.63 new_compare1(@3(xwv40, xwv41, xwv42), @3(xwv300, xwv301, xwv302), bdg, bdh, bea) -> new_compare20(xwv40, xwv41, xwv42, xwv300, xwv301, xwv302, new_asAs(new_esEs5(xwv40, xwv300, bdg), new_asAs(new_esEs6(xwv41, xwv301, bdh), new_esEs7(xwv42, xwv302, bea))), bdg, bdh, bea) 31.03/14.63 new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, bfe, app(app(ty_Either, bgb), bgc)) -> new_ltEs1(xwv74, xwv77, bgb, bgc) 31.03/14.63 new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, bfe, app(ty_Maybe, bff)) -> new_ltEs(xwv74, xwv77, bff) 31.03/14.63 new_lt1(xwv18, xwv13, bhh, caa) -> new_compare3(xwv18, xwv13, bhh, caa) 31.03/14.63 new_compare21(xwv83, xwv84, False, app(app(ty_Either, cba), cbb), cae) -> new_ltEs1(xwv83, xwv84, cba, cbb) 31.03/14.63 new_lt0(xwv18, xwv13, bdd, bde, bdf) -> new_compare1(xwv18, xwv13, bdd, bde, bdf) 31.03/14.63 new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), bca, app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs0(xwv611, xwv621, bcc, bcd, bce) 31.03/14.63 new_compare3(Right(xwv40), Right(xwv300), cab, cac) -> new_compare22(xwv40, xwv300, new_esEs9(xwv40, xwv300, cac), cab, cac) 31.03/14.63 new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(app(ty_@3, bba), bbb), bbc), bah) -> new_lt0(xwv610, xwv620, bba, bbb, bbc) 31.03/14.63 new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, app(app(ty_Either, bhc), bhd), bfe, bed) -> new_lt1(xwv72, xwv75, bhc, bhd) 31.03/14.63 new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, app(app(ty_Either, ed), ee), ce) -> new_lt1(xwv611, xwv621, ed, ee) 31.03/14.63 new_compare2(xwv61, xwv62, False, app(ty_[], bdc)) -> new_compare0(xwv61, xwv62, bdc) 31.03/14.63 new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, cd, app(ty_Maybe, fa)) -> new_ltEs(xwv612, xwv622, fa) 31.03/14.63 new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, bca), app(app(ty_@2, bch), bda))) -> new_ltEs2(xwv611, xwv621, bch, bda) 31.03/14.63 new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), cd), app(app(ty_@2, fh), ga))) -> new_ltEs2(xwv612, xwv622, fh, ga) 31.03/14.63 new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), app(app(ty_@2, ef), eg)), ce)) -> new_lt2(xwv611, xwv621, ef, eg) 31.03/14.63 new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(ty_@2, bbf), bbg)), bah)) -> new_lt2(xwv610, xwv620, bbf, bbg) 31.03/14.63 new_ltEs1(Left(xwv610), Left(xwv620), app(app(app(ty_@3, ge), gf), gg), gd) -> new_ltEs0(xwv610, xwv620, ge, gf, gg) 31.03/14.63 new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, app(app(app(ty_@3, ea), eb), ec), ce) -> new_lt0(xwv611, xwv621, ea, eb, ec) 31.03/14.63 new_lt3(xwv18, xwv13, cfh) -> new_compare0(xwv18, xwv13, cfh) 31.03/14.63 new_lt(xwv18, xwv13, h) -> new_compare(xwv18, xwv13, h) 31.03/14.63 new_compare23(xwv119, xwv120, xwv121, xwv122, False, app(app(ty_Either, cea), ceb), cde) -> new_lt1(xwv119, xwv121, cea, ceb) 31.03/14.63 new_compare2(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(app(ty_@3, bc), bd), be))) -> new_ltEs0(xwv610, xwv620, bc, bd, be) 31.03/14.63 new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(ty_Either, db), dc), cd, ce) -> new_lt1(xwv610, xwv620, db, dc) 31.03/14.63 new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, bfe, app(ty_[], bgf)) -> new_ltEs3(xwv74, xwv77, bgf) 31.03/14.63 new_ltEs1(Right(xwv610), Right(xwv620), he, app(app(ty_@2, bad), bae)) -> new_ltEs2(xwv610, xwv620, bad, bae) 31.03/14.63 new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(ty_@2, bbf), bbg), bah) -> new_lt2(xwv610, xwv620, bbf, bbg) 31.03/14.63 new_compare23(xwv119, xwv120, xwv121, xwv122, False, ccb, app(app(ty_Either, ccg), cch)) -> new_ltEs1(xwv120, xwv122, ccg, cch) 31.03/14.63 new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, app(ty_Maybe, bec), bed) -> new_lt(xwv73, xwv76, bec) 31.03/14.63 new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), bca, app(app(ty_@2, bch), bda)) -> new_ltEs2(xwv611, xwv621, bch, bda) 31.03/14.63 new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, app(ty_[], eh), ce) -> new_lt3(xwv611, xwv621, eh) 31.03/14.63 new_ltEs1(Left(xwv610), Left(xwv620), app(app(ty_Either, gh), ha), gd) -> new_ltEs1(xwv610, xwv620, gh, ha) 31.03/14.63 new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, app(app(ty_@2, bhe), bhf), bfe, bed) -> new_lt2(xwv72, xwv75, bhe, bhf) 31.03/14.63 new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), cd), app(app(app(ty_@3, fb), fc), fd))) -> new_ltEs0(xwv612, xwv622, fb, fc, fd) 31.03/14.63 new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(ty_@2, dd), de), cd, ce) -> new_lt2(xwv610, xwv620, dd, de) 31.03/14.63 new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), bca, app(ty_[], bdb)) -> new_ltEs3(xwv611, xwv621, bdb) 31.03/14.63 new_compare2(Right(xwv610), Right(xwv620), False, app(app(ty_Either, he), app(app(ty_Either, bab), bac))) -> new_ltEs1(xwv610, xwv620, bab, bac) 31.03/14.63 new_ltEs(Just(xwv610), Just(xwv620), app(app(app(ty_@3, bc), bd), be)) -> new_ltEs0(xwv610, xwv620, bc, bd, be) 31.03/14.63 new_compare22(xwv90, xwv91, False, cga, app(app(app(ty_@3, cgc), cgd), cge)) -> new_ltEs0(xwv90, xwv91, cgc, cgd, cge) 31.03/14.63 new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, cd, app(ty_[], gb)) -> new_ltEs3(xwv612, xwv622, gb) 31.03/14.63 new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, app(ty_[], bfd), bed) -> new_lt3(xwv73, xwv76, bfd) 31.03/14.63 new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(ty_Maybe, bag)), bah)) -> new_lt(xwv610, xwv620, bag) 31.03/14.63 new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(ty_Either, bbd), bbe)), bah)) -> new_lt1(xwv610, xwv620, bbd, bbe) 31.03/14.63 new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, bca), app(ty_Maybe, bcb))) -> new_ltEs(xwv611, xwv621, bcb) 31.03/14.63 new_ltEs1(Left(xwv610), Left(xwv620), app(ty_[], hd), gd) -> new_ltEs3(xwv610, xwv620, hd) 31.03/14.63 new_compare2(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(ty_@2, bh), ca))) -> new_ltEs2(xwv610, xwv620, bh, ca) 31.03/14.63 new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), cd), app(ty_Maybe, fa))) -> new_ltEs(xwv612, xwv622, fa) 31.03/14.63 new_ltEs1(Right(xwv610), Right(xwv620), he, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs0(xwv610, xwv620, hg, hh, baa) 31.03/14.63 new_ltEs(Just(xwv610), Just(xwv620), app(ty_Maybe, bb)) -> new_ltEs(xwv610, xwv620, bb) 31.03/14.63 new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(ty_[], bbh), bah) -> new_lt3(xwv610, xwv620, bbh) 31.03/14.63 new_primCompAux(xwv40, xwv300, xwv56, app(app(ty_@2, cfe), cff)) -> new_compare4(xwv40, xwv300, cfe, cff) 31.03/14.63 new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, app(ty_Maybe, dh), ce) -> new_lt(xwv611, xwv621, dh) 31.03/14.63 new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(ty_Maybe, bag), bah) -> new_lt(xwv610, xwv620, bag) 31.03/14.63 new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(ty_Maybe, cc)), cd), ce)) -> new_lt(xwv610, xwv620, cc) 31.03/14.63 new_primCompAux(xwv40, xwv300, xwv56, app(app(ty_Either, cfc), cfd)) -> new_compare3(xwv40, xwv300, cfc, cfd) 31.03/14.63 new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, app(app(ty_Either, beh), bfa), bed) -> new_lt1(xwv73, xwv76, beh, bfa) 31.03/14.63 new_compare21(xwv83, xwv84, False, app(app(ty_@2, cbc), cbd), cae) -> new_ltEs2(xwv83, xwv84, cbc, cbd) 31.03/14.63 new_compare2(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(ty_Maybe, bb))) -> new_ltEs(xwv610, xwv620, bb) 31.03/14.63 new_compare23(xwv119, xwv120, xwv121, xwv122, False, app(ty_[], cee), cde) -> new_lt3(xwv119, xwv121, cee) 31.03/14.63 new_compare2(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(ty_Either, gh), ha)), gd)) -> new_ltEs1(xwv610, xwv620, gh, ha) 31.03/14.63 new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(app(ty_@3, bba), bbb), bbc)), bah)) -> new_lt0(xwv610, xwv620, bba, bbb, bbc) 31.03/14.63 new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), app(app(app(ty_@3, ea), eb), ec)), ce)) -> new_lt0(xwv611, xwv621, ea, eb, ec) 31.03/14.63 new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, app(app(ty_@2, ef), eg), ce) -> new_lt2(xwv611, xwv621, ef, eg) 31.03/14.63 new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, app(app(app(ty_@3, bee), bef), beg), bed) -> new_lt0(xwv73, xwv76, bee, bef, beg) 31.03/14.63 new_compare23(xwv119, xwv120, xwv121, xwv122, False, ccb, app(ty_[], cdc)) -> new_ltEs3(xwv120, xwv122, cdc) 31.03/14.63 new_primCompAux(xwv40, xwv300, xwv56, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_compare1(xwv40, xwv300, ceh, cfa, cfb) 31.03/14.63 new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, bca), app(app(ty_Either, bcf), bcg))) -> new_ltEs1(xwv611, xwv621, bcf, bcg) 31.03/14.63 new_ltEs1(Left(xwv610), Left(xwv620), app(app(ty_@2, hb), hc), gd) -> new_ltEs2(xwv610, xwv620, hb, hc) 31.03/14.63 new_compare0(:(xwv40, xwv41), :(xwv300, xwv301), cef) -> new_primCompAux(xwv40, xwv300, new_compare5(xwv41, xwv301, cef), cef) 31.03/14.63 31.03/14.63 The TRS R consists of the following rules: 31.03/14.63 31.03/14.63 new_esEs29(EQ) -> False 31.03/14.63 new_esEs36(xwv282, xwv332, app(ty_Maybe, fdd)) -> new_esEs20(xwv282, xwv332, fdd) 31.03/14.63 new_esEs13(xwv280, xwv330, ty_Integer) -> new_esEs17(xwv280, xwv330) 31.03/14.63 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 31.03/14.63 new_primCmpInt(Neg(Succ(xwv400)), Pos(xwv300)) -> LT 31.03/14.63 new_compare11(Float(xwv40, Pos(xwv410)), Float(xwv300, Neg(xwv3010))) -> new_compare10(new_sr(xwv40, Pos(xwv3010)), new_sr(Neg(xwv410), xwv300)) 31.03/14.63 new_compare11(Float(xwv40, Neg(xwv410)), Float(xwv300, Pos(xwv3010))) -> new_compare10(new_sr(xwv40, Neg(xwv3010)), new_sr(Pos(xwv410), xwv300)) 31.03/14.63 new_esEs20(Just(xwv280), Just(xwv330), app(ty_[], dgd)) -> new_esEs12(xwv280, xwv330, dgd) 31.03/14.63 new_esEs33(xwv281, xwv331, app(ty_Ratio, ehd)) -> new_esEs23(xwv281, xwv331, ehd) 31.03/14.63 new_primPlusNat0(Zero, Zero) -> Zero 31.03/14.63 new_lt23(xwv610, xwv620, ty_Integer) -> new_lt10(xwv610, xwv620) 31.03/14.63 new_esEs39(xwv119, xwv121, app(app(ty_Either, cea), ceb)) -> new_esEs15(xwv119, xwv121, cea, ceb) 31.03/14.63 new_pePe(True, xwv203) -> True 31.03/14.63 new_esEs9(xwv40, xwv300, app(ty_Maybe, dff)) -> new_esEs20(xwv40, xwv300, dff) 31.03/14.63 new_ltEs23(xwv611, xwv621, ty_Float) -> new_ltEs18(xwv611, xwv621) 31.03/14.63 new_ltEs6(Just(xwv610), Just(xwv620), ty_Double) -> new_ltEs16(xwv610, xwv620) 31.03/14.63 new_esEs15(Left(xwv280), Left(xwv330), ty_Integer, fgh) -> new_esEs17(xwv280, xwv330) 31.03/14.63 new_esEs38(xwv73, xwv76, ty_Bool) -> new_esEs19(xwv73, xwv76) 31.03/14.63 new_lt4(xwv610, xwv620, ty_Int) -> new_lt15(xwv610, xwv620) 31.03/14.63 new_ltEs23(xwv611, xwv621, ty_Integer) -> new_ltEs9(xwv611, xwv621) 31.03/14.63 new_ltEs6(Just(xwv610), Just(xwv620), app(ty_[], cb)) -> new_ltEs17(xwv610, xwv620, cb) 31.03/14.63 new_esEs17(Integer(xwv280), Integer(xwv330)) -> new_primEqInt(xwv280, xwv330) 31.03/14.63 new_ltEs5(xwv612, xwv622, ty_@0) -> new_ltEs15(xwv612, xwv622) 31.03/14.63 new_esEs19(False, True) -> False 31.03/14.63 new_esEs19(True, False) -> False 31.03/14.63 new_ltEs23(xwv611, xwv621, app(ty_Maybe, bcb)) -> new_ltEs6(xwv611, xwv621, bcb) 31.03/14.63 new_esEs15(Left(xwv280), Right(xwv330), gac, fgh) -> False 31.03/14.63 new_esEs15(Right(xwv280), Left(xwv330), gac, fgh) -> False 31.03/14.63 new_esEs34(xwv280, xwv330, ty_Ordering) -> new_esEs24(xwv280, xwv330) 31.03/14.63 new_compare112(xwv140, xwv141, True, fef) -> LT 31.03/14.63 new_esEs39(xwv119, xwv121, ty_Double) -> new_esEs18(xwv119, xwv121) 31.03/14.63 new_esEs35(xwv281, xwv331, app(ty_[], fbe)) -> new_esEs12(xwv281, xwv331, fbe) 31.03/14.63 new_ltEs8(Left(xwv610), Left(xwv620), app(ty_Ratio, dba), gd) -> new_ltEs11(xwv610, xwv620, dba) 31.03/14.63 new_esEs29(GT) -> False 31.03/14.63 new_esEs28(xwv611, xwv621, ty_Ordering) -> new_esEs24(xwv611, xwv621) 31.03/14.63 new_compare16(GT, LT) -> GT 31.03/14.63 new_ltEs19(xwv90, xwv91, ty_Bool) -> new_ltEs7(xwv90, xwv91) 31.03/14.63 new_esEs7(xwv42, xwv302, ty_Ordering) -> new_esEs24(xwv42, xwv302) 31.03/14.63 new_esEs8(xwv40, xwv300, app(ty_[], ede)) -> new_esEs12(xwv40, xwv300, ede) 31.03/14.63 new_esEs37(xwv72, xwv75, ty_Char) -> new_esEs25(xwv72, xwv75) 31.03/14.63 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 31.03/14.63 new_esEs12(:(xwv280, xwv281), [], chc) -> False 31.03/14.63 new_esEs12([], :(xwv330, xwv331), chc) -> False 31.03/14.63 new_compare24(xwv119, xwv120, xwv121, xwv122, True, ccb, cde) -> EQ 31.03/14.63 new_primCmpInt(Pos(Zero), Neg(Succ(xwv3000))) -> GT 31.03/14.63 new_esEs11(xwv41, xwv301, app(ty_Maybe, ded)) -> new_esEs20(xwv41, xwv301, ded) 31.03/14.63 new_esEs13(xwv280, xwv330, ty_Bool) -> new_esEs19(xwv280, xwv330) 31.03/14.63 new_compare26(xwv83, xwv84, True, eda, cae) -> EQ 31.03/14.63 new_lt4(xwv610, xwv620, app(ty_Ratio, daf)) -> new_lt12(xwv610, xwv620, daf) 31.03/14.63 new_ltEs8(Left(xwv610), Left(xwv620), ty_Double, gd) -> new_ltEs16(xwv610, xwv620) 31.03/14.63 new_lt8(xwv18, xwv13, bdd, bde, bdf) -> new_esEs29(new_compare29(xwv18, xwv13, bdd, bde, bdf)) 31.03/14.63 new_ltEs19(xwv90, xwv91, app(app(ty_@2, cgh), cha)) -> new_ltEs12(xwv90, xwv91, cgh, cha) 31.03/14.63 new_ltEs22(xwv120, xwv122, app(ty_Ratio, fgb)) -> new_ltEs11(xwv120, xwv122, fgb) 31.03/14.63 new_esEs26(xwv28, xwv33) -> new_primEqInt(xwv28, xwv33) 31.03/14.63 new_primCmpInt(Neg(Succ(xwv400)), Neg(xwv300)) -> new_primCmpNat0(xwv300, Succ(xwv400)) 31.03/14.63 new_esEs28(xwv611, xwv621, ty_Integer) -> new_esEs17(xwv611, xwv621) 31.03/14.63 new_compare211(xwv61, xwv62, True, gbf) -> EQ 31.03/14.63 new_ltEs8(Right(xwv610), Right(xwv620), he, app(ty_Ratio, dbb)) -> new_ltEs11(xwv610, xwv620, dbb) 31.03/14.63 new_compare16(EQ, LT) -> GT 31.03/14.63 new_esEs11(xwv41, xwv301, ty_@0) -> new_esEs14(xwv41, xwv301) 31.03/14.63 new_compare27(xwv40, xwv300, app(app(ty_Either, cfc), cfd)) -> new_compare30(xwv40, xwv300, cfc, cfd) 31.03/14.63 new_esEs38(xwv73, xwv76, ty_Integer) -> new_esEs17(xwv73, xwv76) 31.03/14.63 new_esEs15(Left(xwv280), Left(xwv330), ty_Bool, fgh) -> new_esEs19(xwv280, xwv330) 31.03/14.63 new_ltEs10(GT, LT) -> False 31.03/14.63 new_esEs6(xwv41, xwv301, app(app(ty_@2, ead), eae)) -> new_esEs16(xwv41, xwv301, ead, eae) 31.03/14.63 new_esEs33(xwv281, xwv331, app(app(ty_@2, egf), egg)) -> new_esEs16(xwv281, xwv331, egf, egg) 31.03/14.63 new_esEs36(xwv282, xwv332, ty_@0) -> new_esEs14(xwv282, xwv332) 31.03/14.63 new_compare30(Left(xwv40), Left(xwv300), cab, cac) -> new_compare26(xwv40, xwv300, new_esEs8(xwv40, xwv300, cab), cab, cac) 31.03/14.63 new_esEs40(xwv610, xwv620, ty_Ordering) -> new_esEs24(xwv610, xwv620) 31.03/14.63 new_ltEs24(xwv61, xwv62, app(app(app(ty_@3, dg), cd), ce)) -> new_ltEs4(xwv61, xwv62, dg, cd, ce) 31.03/14.63 new_lt22(xwv119, xwv121, ty_Float) -> new_lt19(xwv119, xwv121) 31.03/14.63 new_esEs24(EQ, EQ) -> True 31.03/14.63 new_esEs9(xwv40, xwv300, ty_@0) -> new_esEs14(xwv40, xwv300) 31.03/14.63 new_esEs20(Just(xwv280), Just(xwv330), app(app(ty_Either, dge), dgf)) -> new_esEs15(xwv280, xwv330, dge, dgf) 31.03/14.63 new_primEqInt(Pos(Succ(xwv2800)), Pos(Zero)) -> False 31.03/14.63 new_primEqInt(Pos(Zero), Pos(Succ(xwv3300))) -> False 31.03/14.63 new_ltEs10(EQ, LT) -> False 31.03/14.63 new_lt20(xwv73, xwv76, app(app(ty_@2, bfb), bfc)) -> new_lt13(xwv73, xwv76, bfb, bfc) 31.03/14.63 new_esEs27(xwv610, xwv620, app(app(ty_@2, dd), de)) -> new_esEs16(xwv610, xwv620, dd, de) 31.03/14.63 new_ltEs11(xwv61, xwv62, fgc) -> new_fsEs(new_compare8(xwv61, xwv62, fgc)) 31.03/14.63 new_lt21(xwv72, xwv75, ty_Ordering) -> new_lt11(xwv72, xwv75) 31.03/14.63 new_esEs39(xwv119, xwv121, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_esEs22(xwv119, xwv121, cdf, cdg, cdh) 31.03/14.63 new_compare27(xwv40, xwv300, ty_Double) -> new_compare6(xwv40, xwv300) 31.03/14.63 new_compare19(xwv149, xwv150, True, fea, feb) -> LT 31.03/14.63 new_lt22(xwv119, xwv121, ty_Bool) -> new_lt7(xwv119, xwv121) 31.03/14.63 new_lt23(xwv610, xwv620, ty_Double) -> new_lt17(xwv610, xwv620) 31.03/14.63 new_primEqNat0(Succ(xwv2800), Succ(xwv3300)) -> new_primEqNat0(xwv2800, xwv3300) 31.03/14.63 new_esEs37(xwv72, xwv75, app(ty_Ratio, fec)) -> new_esEs23(xwv72, xwv75, fec) 31.03/14.63 new_esEs28(xwv611, xwv621, ty_Float) -> new_esEs21(xwv611, xwv621) 31.03/14.63 new_esEs32(xwv280, xwv330, app(ty_Maybe, eff)) -> new_esEs20(xwv280, xwv330, eff) 31.03/14.63 new_ltEs6(Just(xwv610), Just(xwv620), app(app(app(ty_@3, bc), bd), be)) -> new_ltEs4(xwv610, xwv620, bc, bd, be) 31.03/14.63 new_esEs5(xwv40, xwv300, app(ty_Maybe, ecb)) -> new_esEs20(xwv40, xwv300, ecb) 31.03/14.63 new_esEs40(xwv610, xwv620, ty_Double) -> new_esEs18(xwv610, xwv620) 31.03/14.63 new_esEs6(xwv41, xwv301, ty_Int) -> new_esEs26(xwv41, xwv301) 31.03/14.63 new_esEs27(xwv610, xwv620, ty_Int) -> new_esEs26(xwv610, xwv620) 31.03/14.63 new_esEs33(xwv281, xwv331, ty_Int) -> new_esEs26(xwv281, xwv331) 31.03/14.63 new_lt22(xwv119, xwv121, ty_@0) -> new_lt16(xwv119, xwv121) 31.03/14.63 new_ltEs20(xwv83, xwv84, app(app(ty_Either, cba), cbb)) -> new_ltEs8(xwv83, xwv84, cba, cbb) 31.03/14.63 new_lt21(xwv72, xwv75, ty_Int) -> new_lt15(xwv72, xwv75) 31.03/14.63 new_not(True) -> False 31.03/14.63 new_esEs24(GT, GT) -> True 31.03/14.63 new_ltEs5(xwv612, xwv622, ty_Float) -> new_ltEs18(xwv612, xwv622) 31.03/14.63 new_lt21(xwv72, xwv75, app(app(ty_Either, bhc), bhd)) -> new_lt9(xwv72, xwv75, bhc, bhd) 31.03/14.63 new_ltEs6(Just(xwv610), Just(xwv620), ty_Float) -> new_ltEs18(xwv610, xwv620) 31.03/14.63 new_ltEs8(Right(xwv610), Right(xwv620), he, ty_Ordering) -> new_ltEs10(xwv610, xwv620) 31.03/14.63 new_esEs33(xwv281, xwv331, ty_Bool) -> new_esEs19(xwv281, xwv331) 31.03/14.63 new_primCompAux00(xwv107, LT) -> LT 31.03/14.63 new_primCmpNat0(Zero, Zero) -> EQ 31.03/14.63 new_esEs38(xwv73, xwv76, app(ty_Ratio, fed)) -> new_esEs23(xwv73, xwv76, fed) 31.03/14.63 new_esEs10(xwv40, xwv300, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs22(xwv40, xwv300, ddc, ddd, dde) 31.03/14.63 new_esEs4(xwv40, xwv300, app(ty_[], dbc)) -> new_esEs12(xwv40, xwv300, dbc) 31.03/14.63 new_esEs40(xwv610, xwv620, ty_Bool) -> new_esEs19(xwv610, xwv620) 31.03/14.63 new_ltEs8(Left(xwv610), Left(xwv620), app(app(app(ty_@3, ge), gf), gg), gd) -> new_ltEs4(xwv610, xwv620, ge, gf, gg) 31.03/14.63 new_ltEs5(xwv612, xwv622, app(ty_Ratio, dah)) -> new_ltEs11(xwv612, xwv622, dah) 31.03/14.63 new_ltEs24(xwv61, xwv62, app(ty_[], bdc)) -> new_ltEs17(xwv61, xwv62, bdc) 31.03/14.63 new_esEs6(xwv41, xwv301, ty_Char) -> new_esEs25(xwv41, xwv301) 31.03/14.63 new_lt4(xwv610, xwv620, ty_Bool) -> new_lt7(xwv610, xwv620) 31.03/14.63 new_lt22(xwv119, xwv121, app(app(ty_Either, cea), ceb)) -> new_lt9(xwv119, xwv121, cea, ceb) 31.03/14.63 new_lt21(xwv72, xwv75, ty_Char) -> new_lt14(xwv72, xwv75) 31.03/14.63 new_esEs7(xwv42, xwv302, app(app(app(ty_@3, ffe), fff), ffg)) -> new_esEs22(xwv42, xwv302, ffe, fff, ffg) 31.03/14.63 new_esEs7(xwv42, xwv302, app(app(ty_Either, feh), ffa)) -> new_esEs15(xwv42, xwv302, feh, ffa) 31.03/14.63 new_ltEs8(Left(xwv610), Left(xwv620), app(app(ty_Either, gh), ha), gd) -> new_ltEs8(xwv610, xwv620, gh, ha) 31.03/14.63 new_esEs5(xwv40, xwv300, app(app(ty_@2, ebh), eca)) -> new_esEs16(xwv40, xwv300, ebh, eca) 31.03/14.63 new_esEs11(xwv41, xwv301, ty_Char) -> new_esEs25(xwv41, xwv301) 31.03/14.63 new_compare6(Double(xwv40, Pos(xwv410)), Double(xwv300, Neg(xwv3010))) -> new_compare10(new_sr(xwv40, Pos(xwv3010)), new_sr(Neg(xwv410), xwv300)) 31.03/14.63 new_compare6(Double(xwv40, Neg(xwv410)), Double(xwv300, Pos(xwv3010))) -> new_compare10(new_sr(xwv40, Neg(xwv3010)), new_sr(Pos(xwv410), xwv300)) 31.03/14.63 new_lt10(xwv18, xwv13) -> new_esEs29(new_compare9(xwv18, xwv13)) 31.03/14.63 new_esEs27(xwv610, xwv620, ty_Bool) -> new_esEs19(xwv610, xwv620) 31.03/14.63 new_ltEs8(Left(xwv610), Left(xwv620), ty_Float, gd) -> new_ltEs18(xwv610, xwv620) 31.03/14.63 new_esEs15(Left(xwv280), Left(xwv330), app(app(ty_Either, fhb), fhc), fgh) -> new_esEs15(xwv280, xwv330, fhb, fhc) 31.03/14.63 new_primEqNat0(Succ(xwv2800), Zero) -> False 31.03/14.63 new_primEqNat0(Zero, Succ(xwv3300)) -> False 31.03/14.63 new_esEs14(@0, @0) -> True 31.03/14.63 new_compare111(xwv187, xwv188, xwv189, xwv190, False, xwv192, ebc, ebd) -> new_compare15(xwv187, xwv188, xwv189, xwv190, xwv192, ebc, ebd) 31.03/14.63 new_ltEs22(xwv120, xwv122, ty_Ordering) -> new_ltEs10(xwv120, xwv122) 31.03/14.63 new_ltEs21(xwv74, xwv77, app(app(ty_@2, bgd), bge)) -> new_ltEs12(xwv74, xwv77, bgd, bge) 31.03/14.63 new_esEs39(xwv119, xwv121, ty_Ordering) -> new_esEs24(xwv119, xwv121) 31.03/14.63 new_ltEs6(Just(xwv610), Just(xwv620), app(ty_Maybe, bb)) -> new_ltEs6(xwv610, xwv620, bb) 31.03/14.63 new_ltEs24(xwv61, xwv62, ty_Double) -> new_ltEs16(xwv61, xwv62) 31.03/14.63 new_lt22(xwv119, xwv121, app(ty_[], cee)) -> new_lt18(xwv119, xwv121, cee) 31.03/14.63 new_lt4(xwv610, xwv620, ty_Char) -> new_lt14(xwv610, xwv620) 31.03/14.63 new_compare28(Just(xwv40), Nothing, ba) -> GT 31.03/14.63 new_esEs23(:%(xwv280, xwv281), :%(xwv330, xwv331), edd) -> new_asAs(new_esEs30(xwv280, xwv330, edd), new_esEs31(xwv281, xwv331, edd)) 31.03/14.63 new_esEs34(xwv280, xwv330, ty_Integer) -> new_esEs17(xwv280, xwv330) 31.03/14.63 new_compare14(xwv172, xwv173, xwv174, xwv175, xwv176, xwv177, True, dhf, dhg, dhh) -> LT 31.03/14.63 new_ltEs23(xwv611, xwv621, ty_@0) -> new_ltEs15(xwv611, xwv621) 31.03/14.63 new_ltEs8(Right(xwv610), Right(xwv620), he, ty_Int) -> new_ltEs14(xwv610, xwv620) 31.03/14.63 new_ltEs20(xwv83, xwv84, ty_Bool) -> new_ltEs7(xwv83, xwv84) 31.03/14.63 new_lt5(xwv611, xwv621, app(app(ty_Either, ed), ee)) -> new_lt9(xwv611, xwv621, ed, ee) 31.03/14.63 new_esEs8(xwv40, xwv300, app(app(ty_Either, edf), edg)) -> new_esEs15(xwv40, xwv300, edf, edg) 31.03/14.63 new_esEs40(xwv610, xwv620, app(ty_[], bbh)) -> new_esEs12(xwv610, xwv620, bbh) 31.03/14.63 new_lt5(xwv611, xwv621, app(app(app(ty_@3, ea), eb), ec)) -> new_lt8(xwv611, xwv621, ea, eb, ec) 31.03/14.63 new_ltEs8(Left(xwv610), Left(xwv620), ty_Integer, gd) -> new_ltEs9(xwv610, xwv620) 31.03/14.63 new_primCompAux00(xwv107, GT) -> GT 31.03/14.63 new_esEs40(xwv610, xwv620, ty_Integer) -> new_esEs17(xwv610, xwv620) 31.03/14.63 new_ltEs22(xwv120, xwv122, ty_Int) -> new_ltEs14(xwv120, xwv122) 31.03/14.63 new_compare7(True, True) -> EQ 31.03/14.63 new_ltEs8(Left(xwv610), Left(xwv620), app(app(ty_@2, hb), hc), gd) -> new_ltEs12(xwv610, xwv620, hb, hc) 31.03/14.63 new_ltEs18(xwv61, xwv62) -> new_fsEs(new_compare11(xwv61, xwv62)) 31.03/14.63 new_esEs39(xwv119, xwv121, ty_Integer) -> new_esEs17(xwv119, xwv121) 31.03/14.63 new_fsEs(xwv198) -> new_not(new_esEs24(xwv198, GT)) 31.03/14.63 new_ltEs21(xwv74, xwv77, ty_Char) -> new_ltEs13(xwv74, xwv77) 31.03/14.63 new_esEs27(xwv610, xwv620, ty_Integer) -> new_esEs17(xwv610, xwv620) 31.03/14.63 new_esEs32(xwv280, xwv330, ty_Int) -> new_esEs26(xwv280, xwv330) 31.03/14.63 new_esEs21(Float(xwv280, xwv281), Float(xwv330, xwv331)) -> new_esEs26(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) 31.03/14.63 new_compare110(xwv172, xwv173, xwv174, xwv175, xwv176, xwv177, True, xwv179, dhf, dhg, dhh) -> new_compare14(xwv172, xwv173, xwv174, xwv175, xwv176, xwv177, True, dhf, dhg, dhh) 31.03/14.63 new_compare210(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, True, beb, bfe, bed) -> EQ 31.03/14.63 new_esEs20(Just(xwv280), Just(xwv330), ty_Double) -> new_esEs18(xwv280, xwv330) 31.03/14.63 new_esEs32(xwv280, xwv330, ty_@0) -> new_esEs14(xwv280, xwv330) 31.03/14.63 new_esEs19(False, False) -> True 31.03/14.63 new_primCmpInt(Pos(Succ(xwv400)), Neg(xwv300)) -> GT 31.03/14.63 new_esEs6(xwv41, xwv301, ty_Float) -> new_esEs21(xwv41, xwv301) 31.03/14.63 new_esEs15(Left(xwv280), Left(xwv330), app(ty_Ratio, gab), fgh) -> new_esEs23(xwv280, xwv330, gab) 31.03/14.63 new_esEs38(xwv73, xwv76, ty_Ordering) -> new_esEs24(xwv73, xwv76) 31.03/14.63 new_lt23(xwv610, xwv620, app(ty_[], bbh)) -> new_lt18(xwv610, xwv620, bbh) 31.03/14.63 new_esEs28(xwv611, xwv621, ty_Bool) -> new_esEs19(xwv611, xwv621) 31.03/14.63 new_esEs37(xwv72, xwv75, ty_@0) -> new_esEs14(xwv72, xwv75) 31.03/14.63 new_compare16(LT, GT) -> LT 31.03/14.63 new_esEs10(xwv40, xwv300, app(ty_[], dce)) -> new_esEs12(xwv40, xwv300, dce) 31.03/14.63 new_esEs13(xwv280, xwv330, ty_Float) -> new_esEs21(xwv280, xwv330) 31.03/14.63 new_ltEs10(GT, EQ) -> False 31.03/14.63 new_esEs39(xwv119, xwv121, app(ty_[], cee)) -> new_esEs12(xwv119, xwv121, cee) 31.03/14.63 new_esEs39(xwv119, xwv121, ty_Bool) -> new_esEs19(xwv119, xwv121) 31.03/14.63 new_lt23(xwv610, xwv620, ty_Float) -> new_lt19(xwv610, xwv620) 31.03/14.63 new_esEs27(xwv610, xwv620, app(ty_Ratio, daf)) -> new_esEs23(xwv610, xwv620, daf) 31.03/14.63 new_esEs33(xwv281, xwv331, ty_Integer) -> new_esEs17(xwv281, xwv331) 31.03/14.63 new_esEs34(xwv280, xwv330, ty_Bool) -> new_esEs19(xwv280, xwv330) 31.03/14.63 new_esEs35(xwv281, xwv331, ty_Double) -> new_esEs18(xwv281, xwv331) 31.03/14.63 new_compare5(:(xwv40, xwv41), [], cef) -> GT 31.03/14.63 new_primCmpNat0(Zero, Succ(xwv3000)) -> LT 31.03/14.63 new_ltEs22(xwv120, xwv122, ty_Integer) -> new_ltEs9(xwv120, xwv122) 31.03/14.63 new_ltEs23(xwv611, xwv621, app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs4(xwv611, xwv621, bcc, bcd, bce) 31.03/14.63 new_ltEs23(xwv611, xwv621, app(ty_[], bdb)) -> new_ltEs17(xwv611, xwv621, bdb) 31.03/14.63 new_esEs5(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) 31.03/14.63 new_esEs15(Left(xwv280), Left(xwv330), ty_Ordering, fgh) -> new_esEs24(xwv280, xwv330) 31.03/14.63 new_ltEs5(xwv612, xwv622, app(ty_Maybe, fa)) -> new_ltEs6(xwv612, xwv622, fa) 31.03/14.63 new_esEs24(LT, LT) -> True 31.03/14.63 new_lt20(xwv73, xwv76, ty_Char) -> new_lt14(xwv73, xwv76) 31.03/14.63 new_esEs33(xwv281, xwv331, ty_Ordering) -> new_esEs24(xwv281, xwv331) 31.03/14.63 new_esEs37(xwv72, xwv75, ty_Int) -> new_esEs26(xwv72, xwv75) 31.03/14.63 new_compare28(Nothing, Nothing, ba) -> EQ 31.03/14.63 new_esEs8(xwv40, xwv300, app(app(app(ty_@3, eec), eed), eee)) -> new_esEs22(xwv40, xwv300, eec, eed, eee) 31.03/14.63 new_esEs27(xwv610, xwv620, ty_Ordering) -> new_esEs24(xwv610, xwv620) 31.03/14.63 new_esEs36(xwv282, xwv332, app(ty_[], fcg)) -> new_esEs12(xwv282, xwv332, fcg) 31.03/14.63 new_primCmpNat0(Succ(xwv400), Zero) -> GT 31.03/14.63 new_esEs38(xwv73, xwv76, app(app(app(ty_@3, bee), bef), beg)) -> new_esEs22(xwv73, xwv76, bee, bef, beg) 31.03/14.63 new_ltEs21(xwv74, xwv77, app(app(ty_Either, bgb), bgc)) -> new_ltEs8(xwv74, xwv77, bgb, bgc) 31.03/14.63 new_esEs9(xwv40, xwv300, app(ty_[], dfa)) -> new_esEs12(xwv40, xwv300, dfa) 31.03/14.63 new_esEs27(xwv610, xwv620, ty_@0) -> new_esEs14(xwv610, xwv620) 31.03/14.63 new_ltEs8(Right(xwv610), Right(xwv620), he, app(ty_Maybe, hf)) -> new_ltEs6(xwv610, xwv620, hf) 31.03/14.63 new_pePe(False, xwv203) -> xwv203 31.03/14.63 new_lt22(xwv119, xwv121, ty_Ordering) -> new_lt11(xwv119, xwv121) 31.03/14.63 new_lt5(xwv611, xwv621, ty_Ordering) -> new_lt11(xwv611, xwv621) 31.03/14.63 new_ltEs23(xwv611, xwv621, app(ty_Ratio, fge)) -> new_ltEs11(xwv611, xwv621, fge) 31.03/14.63 new_esEs28(xwv611, xwv621, ty_Int) -> new_esEs26(xwv611, xwv621) 31.03/14.63 new_esEs11(xwv41, xwv301, app(app(ty_@2, deb), dec)) -> new_esEs16(xwv41, xwv301, deb, dec) 31.03/14.63 new_lt22(xwv119, xwv121, ty_Int) -> new_lt15(xwv119, xwv121) 31.03/14.63 new_esEs38(xwv73, xwv76, app(app(ty_Either, beh), bfa)) -> new_esEs15(xwv73, xwv76, beh, bfa) 31.03/14.63 new_esEs7(xwv42, xwv302, ty_Int) -> new_esEs26(xwv42, xwv302) 31.03/14.63 new_compare25(xwv90, xwv91, True, cga, ecg) -> EQ 31.03/14.63 new_ltEs20(xwv83, xwv84, ty_Char) -> new_ltEs13(xwv83, xwv84) 31.03/14.63 new_esEs37(xwv72, xwv75, app(ty_Maybe, bgg)) -> new_esEs20(xwv72, xwv75, bgg) 31.03/14.63 new_ltEs24(xwv61, xwv62, ty_Float) -> new_ltEs18(xwv61, xwv62) 31.03/14.63 new_lt20(xwv73, xwv76, ty_Int) -> new_lt15(xwv73, xwv76) 31.03/14.63 new_lt22(xwv119, xwv121, ty_Integer) -> new_lt10(xwv119, xwv121) 31.03/14.63 new_esEs15(Left(xwv280), Left(xwv330), ty_Double, fgh) -> new_esEs18(xwv280, xwv330) 31.03/14.63 new_esEs34(xwv280, xwv330, app(ty_Ratio, fbd)) -> new_esEs23(xwv280, xwv330, fbd) 31.03/14.63 new_ltEs19(xwv90, xwv91, ty_Double) -> new_ltEs16(xwv90, xwv91) 31.03/14.63 new_esEs11(xwv41, xwv301, app(ty_Ratio, deh)) -> new_esEs23(xwv41, xwv301, deh) 31.03/14.63 new_lt21(xwv72, xwv75, ty_Float) -> new_lt19(xwv72, xwv75) 31.03/14.63 new_lt4(xwv610, xwv620, ty_Float) -> new_lt19(xwv610, xwv620) 31.03/14.63 new_primEqInt(Pos(Zero), Neg(Succ(xwv3300))) -> False 31.03/14.63 new_primEqInt(Neg(Zero), Pos(Succ(xwv3300))) -> False 31.03/14.63 new_esEs9(xwv40, xwv300, app(app(ty_@2, dfd), dfe)) -> new_esEs16(xwv40, xwv300, dfd, dfe) 31.03/14.63 new_esEs34(xwv280, xwv330, app(ty_[], fac)) -> new_esEs12(xwv280, xwv330, fac) 31.03/14.63 new_esEs4(xwv40, xwv300, app(app(ty_Either, dbd), dbe)) -> new_esEs15(xwv40, xwv300, dbd, dbe) 31.03/14.63 new_esEs11(xwv41, xwv301, app(ty_[], ddg)) -> new_esEs12(xwv41, xwv301, ddg) 31.03/14.63 new_lt5(xwv611, xwv621, ty_Int) -> new_lt15(xwv611, xwv621) 31.03/14.63 new_esEs8(xwv40, xwv300, ty_Ordering) -> new_esEs24(xwv40, xwv300) 31.03/14.63 new_esEs15(Right(xwv280), Right(xwv330), gac, app(app(ty_@2, gag), gah)) -> new_esEs16(xwv280, xwv330, gag, gah) 31.03/14.63 new_esEs38(xwv73, xwv76, app(ty_[], bfd)) -> new_esEs12(xwv73, xwv76, bfd) 31.03/14.63 new_esEs4(xwv40, xwv300, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs22(xwv40, xwv300, dca, dcb, dcc) 31.03/14.63 new_esEs9(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) 31.03/14.63 new_compare16(EQ, EQ) -> EQ 31.03/14.63 new_compare5([], :(xwv300, xwv301), cef) -> LT 31.03/14.63 new_ltEs19(xwv90, xwv91, ty_Char) -> new_ltEs13(xwv90, xwv91) 31.03/14.63 new_lt12(xwv18, xwv13, ehg) -> new_esEs29(new_compare8(xwv18, xwv13, ehg)) 31.03/14.63 new_primEqInt(Neg(Succ(xwv2800)), Neg(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) 31.03/14.63 new_ltEs20(xwv83, xwv84, ty_Double) -> new_ltEs16(xwv83, xwv84) 31.03/14.63 new_esEs32(xwv280, xwv330, ty_Float) -> new_esEs21(xwv280, xwv330) 31.03/14.63 new_lt23(xwv610, xwv620, app(app(ty_@2, bbf), bbg)) -> new_lt13(xwv610, xwv620, bbf, bbg) 31.03/14.63 new_esEs9(xwv40, xwv300, ty_Double) -> new_esEs18(xwv40, xwv300) 31.03/14.63 new_primCmpInt(Neg(Zero), Pos(Succ(xwv3000))) -> LT 31.03/14.63 new_compare13(Char(xwv40), Char(xwv300)) -> new_primCmpNat0(xwv40, xwv300) 31.03/14.63 new_esEs8(xwv40, xwv300, ty_Integer) -> new_esEs17(xwv40, xwv300) 31.03/14.63 new_primMulInt(Pos(xwv400), Pos(xwv3010)) -> Pos(new_primMulNat0(xwv400, xwv3010)) 31.03/14.63 new_esEs5(xwv40, xwv300, ty_Bool) -> new_esEs19(xwv40, xwv300) 31.03/14.63 new_esEs28(xwv611, xwv621, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs22(xwv611, xwv621, ea, eb, ec) 31.03/14.63 new_esEs38(xwv73, xwv76, ty_Int) -> new_esEs26(xwv73, xwv76) 31.03/14.63 new_compare18(xwv156, xwv157, False, ehe, ehf) -> GT 31.03/14.63 new_esEs11(xwv41, xwv301, ty_Double) -> new_esEs18(xwv41, xwv301) 31.03/14.63 new_esEs6(xwv41, xwv301, ty_@0) -> new_esEs14(xwv41, xwv301) 31.03/14.63 new_esEs15(Left(xwv280), Left(xwv330), ty_Char, fgh) -> new_esEs25(xwv280, xwv330) 31.03/14.63 new_ltEs5(xwv612, xwv622, ty_Char) -> new_ltEs13(xwv612, xwv622) 31.03/14.63 new_ltEs5(xwv612, xwv622, app(ty_[], gb)) -> new_ltEs17(xwv612, xwv622, gb) 31.03/14.63 new_ltEs8(Right(xwv610), Left(xwv620), he, gd) -> False 31.03/14.63 new_ltEs8(Right(xwv610), Right(xwv620), he, app(app(ty_@2, bad), bae)) -> new_ltEs12(xwv610, xwv620, bad, bae) 31.03/14.63 new_primMulNat0(Succ(xwv4000), Zero) -> Zero 31.03/14.63 new_primMulNat0(Zero, Succ(xwv30100)) -> Zero 31.03/14.63 new_esEs7(xwv42, xwv302, ty_Float) -> new_esEs21(xwv42, xwv302) 31.03/14.63 new_ltEs15(xwv61, xwv62) -> new_fsEs(new_compare17(xwv61, xwv62)) 31.03/14.63 new_esEs34(xwv280, xwv330, ty_Double) -> new_esEs18(xwv280, xwv330) 31.03/14.63 new_compare5(:(xwv40, xwv41), :(xwv300, xwv301), cef) -> new_primCompAux0(xwv40, xwv300, new_compare5(xwv41, xwv301, cef), cef) 31.03/14.63 new_esEs8(xwv40, xwv300, ty_Bool) -> new_esEs19(xwv40, xwv300) 31.03/14.63 new_ltEs12(@2(xwv610, xwv611), @2(xwv620, xwv621), bca, bah) -> new_pePe(new_lt23(xwv610, xwv620, bca), new_asAs(new_esEs40(xwv610, xwv620, bca), new_ltEs23(xwv611, xwv621, bah))) 31.03/14.63 new_esEs6(xwv41, xwv301, app(app(ty_Either, eab), eac)) -> new_esEs15(xwv41, xwv301, eab, eac) 31.03/14.63 new_lt18(xwv18, xwv13, cfh) -> new_esEs29(new_compare5(xwv18, xwv13, cfh)) 31.03/14.63 new_esEs15(Right(xwv280), Right(xwv330), gac, ty_@0) -> new_esEs14(xwv280, xwv330) 31.03/14.63 new_esEs10(xwv40, xwv300, ty_Double) -> new_esEs18(xwv40, xwv300) 31.03/14.63 new_ltEs22(xwv120, xwv122, ty_@0) -> new_ltEs15(xwv120, xwv122) 31.03/14.63 new_esEs15(Left(xwv280), Left(xwv330), app(ty_Maybe, fhf), fgh) -> new_esEs20(xwv280, xwv330, fhf) 31.03/14.63 new_esEs11(xwv41, xwv301, ty_Float) -> new_esEs21(xwv41, xwv301) 31.03/14.63 new_esEs30(xwv280, xwv330, ty_Int) -> new_esEs26(xwv280, xwv330) 31.03/14.63 new_esEs10(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) 31.03/14.63 new_primPlusNat0(Succ(xwv16200), Zero) -> Succ(xwv16200) 31.03/14.63 new_primPlusNat0(Zero, Succ(xwv13000)) -> Succ(xwv13000) 31.03/14.63 new_esEs40(xwv610, xwv620, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs22(xwv610, xwv620, bba, bbb, bbc) 31.03/14.63 new_esEs7(xwv42, xwv302, ty_Double) -> new_esEs18(xwv42, xwv302) 31.03/14.63 new_ltEs22(xwv120, xwv122, ty_Double) -> new_ltEs16(xwv120, xwv122) 31.03/14.63 new_ltEs20(xwv83, xwv84, app(app(ty_@2, cbc), cbd)) -> new_ltEs12(xwv83, xwv84, cbc, cbd) 31.03/14.63 new_ltEs8(Right(xwv610), Right(xwv620), he, app(app(ty_Either, bab), bac)) -> new_ltEs8(xwv610, xwv620, bab, bac) 31.03/14.63 new_esEs5(xwv40, xwv300, ty_Integer) -> new_esEs17(xwv40, xwv300) 31.03/14.63 new_esEs34(xwv280, xwv330, ty_Float) -> new_esEs21(xwv280, xwv330) 31.03/14.63 new_esEs33(xwv281, xwv331, ty_Double) -> new_esEs18(xwv281, xwv331) 31.03/14.63 new_esEs8(xwv40, xwv300, ty_Float) -> new_esEs21(xwv40, xwv300) 31.03/14.63 new_compare29(@3(xwv40, xwv41, xwv42), @3(xwv300, xwv301, xwv302), bdg, bdh, bea) -> new_compare210(xwv40, xwv41, xwv42, xwv300, xwv301, xwv302, new_asAs(new_esEs5(xwv40, xwv300, bdg), new_asAs(new_esEs6(xwv41, xwv301, bdh), new_esEs7(xwv42, xwv302, bea))), bdg, bdh, bea) 31.03/14.63 new_compare25(xwv90, xwv91, False, cga, ecg) -> new_compare18(xwv90, xwv91, new_ltEs19(xwv90, xwv91, ecg), cga, ecg) 31.03/14.63 new_compare18(xwv156, xwv157, True, ehe, ehf) -> LT 31.03/14.63 new_esEs7(xwv42, xwv302, ty_Bool) -> new_esEs19(xwv42, xwv302) 31.03/14.63 new_ltEs19(xwv90, xwv91, app(app(ty_Either, cgf), cgg)) -> new_ltEs8(xwv90, xwv91, cgf, cgg) 31.03/14.63 new_esEs4(xwv40, xwv300, app(ty_Maybe, dbh)) -> new_esEs20(xwv40, xwv300, dbh) 31.03/14.63 new_ltEs23(xwv611, xwv621, ty_Double) -> new_ltEs16(xwv611, xwv621) 31.03/14.63 new_esEs39(xwv119, xwv121, ty_@0) -> new_esEs14(xwv119, xwv121) 31.03/14.63 new_lt4(xwv610, xwv620, app(app(ty_Either, db), dc)) -> new_lt9(xwv610, xwv620, db, dc) 31.03/14.63 new_compare26(xwv83, xwv84, False, eda, cae) -> new_compare19(xwv83, xwv84, new_ltEs20(xwv83, xwv84, eda), eda, cae) 31.03/14.63 new_ltEs6(Nothing, Just(xwv620), fgf) -> True 31.03/14.63 new_esEs28(xwv611, xwv621, app(app(ty_Either, ed), ee)) -> new_esEs15(xwv611, xwv621, ed, ee) 31.03/14.63 new_esEs33(xwv281, xwv331, ty_Char) -> new_esEs25(xwv281, xwv331) 31.03/14.63 new_ltEs7(False, True) -> True 31.03/14.63 new_ltEs9(xwv61, xwv62) -> new_fsEs(new_compare9(xwv61, xwv62)) 31.03/14.63 new_esEs40(xwv610, xwv620, app(app(ty_Either, bbd), bbe)) -> new_esEs15(xwv610, xwv620, bbd, bbe) 31.03/14.63 new_ltEs16(xwv61, xwv62) -> new_fsEs(new_compare6(xwv61, xwv62)) 31.03/14.63 new_esEs31(xwv281, xwv331, ty_Integer) -> new_esEs17(xwv281, xwv331) 31.03/14.63 new_esEs32(xwv280, xwv330, ty_Bool) -> new_esEs19(xwv280, xwv330) 31.03/14.63 new_esEs32(xwv280, xwv330, app(app(ty_@2, efd), efe)) -> new_esEs16(xwv280, xwv330, efd, efe) 31.03/14.63 new_esEs32(xwv280, xwv330, ty_Double) -> new_esEs18(xwv280, xwv330) 31.03/14.63 new_compare8(:%(xwv40, xwv41), :%(xwv300, xwv301), ty_Integer) -> new_compare9(new_sr0(xwv40, xwv301), new_sr0(xwv300, xwv41)) 31.03/14.63 new_lt6(xwv18, xwv13, h) -> new_esEs29(new_compare28(xwv18, xwv13, h)) 31.03/14.63 new_ltEs21(xwv74, xwv77, ty_Double) -> new_ltEs16(xwv74, xwv77) 31.03/14.63 new_esEs4(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) 31.03/14.63 new_esEs9(xwv40, xwv300, ty_Float) -> new_esEs21(xwv40, xwv300) 31.03/14.63 new_ltEs8(Left(xwv610), Left(xwv620), ty_Bool, gd) -> new_ltEs7(xwv610, xwv620) 31.03/14.63 new_lt22(xwv119, xwv121, ty_Char) -> new_lt14(xwv119, xwv121) 31.03/14.63 new_esEs7(xwv42, xwv302, ty_Integer) -> new_esEs17(xwv42, xwv302) 31.03/14.63 new_esEs12(:(xwv280, xwv281), :(xwv330, xwv331), chc) -> new_asAs(new_esEs13(xwv280, xwv330, chc), new_esEs12(xwv281, xwv331, chc)) 31.03/14.63 new_ltEs5(xwv612, xwv622, app(app(ty_Either, ff), fg)) -> new_ltEs8(xwv612, xwv622, ff, fg) 31.03/14.63 new_esEs4(xwv40, xwv300, ty_@0) -> new_esEs14(xwv40, xwv300) 31.03/14.63 new_esEs30(xwv280, xwv330, ty_Integer) -> new_esEs17(xwv280, xwv330) 31.03/14.63 new_esEs15(Right(xwv280), Right(xwv330), gac, ty_Int) -> new_esEs26(xwv280, xwv330) 31.03/14.63 new_esEs6(xwv41, xwv301, app(app(app(ty_@3, eag), eah), eba)) -> new_esEs22(xwv41, xwv301, eag, eah, eba) 31.03/14.63 new_esEs7(xwv42, xwv302, ty_Char) -> new_esEs25(xwv42, xwv302) 31.03/14.63 new_esEs6(xwv41, xwv301, ty_Bool) -> new_esEs19(xwv41, xwv301) 31.03/14.63 new_ltEs7(True, False) -> False 31.03/14.63 new_ltEs20(xwv83, xwv84, ty_Integer) -> new_ltEs9(xwv83, xwv84) 31.03/14.63 new_esEs39(xwv119, xwv121, ty_Int) -> new_esEs26(xwv119, xwv121) 31.03/14.63 new_ltEs8(Right(xwv610), Right(xwv620), he, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs4(xwv610, xwv620, hg, hh, baa) 31.03/14.63 new_compare7(False, False) -> EQ 31.03/14.63 new_esEs5(xwv40, xwv300, app(app(ty_Either, ebf), ebg)) -> new_esEs15(xwv40, xwv300, ebf, ebg) 31.03/14.63 new_ltEs19(xwv90, xwv91, ty_Integer) -> new_ltEs9(xwv90, xwv91) 31.03/14.63 new_compare19(xwv149, xwv150, False, fea, feb) -> GT 31.03/14.63 new_ltEs14(xwv61, xwv62) -> new_fsEs(new_compare10(xwv61, xwv62)) 31.03/14.63 new_esEs15(Left(xwv280), Left(xwv330), ty_Float, fgh) -> new_esEs21(xwv280, xwv330) 31.03/14.63 new_esEs5(xwv40, xwv300, ty_@0) -> new_esEs14(xwv40, xwv300) 31.03/14.63 new_ltEs19(xwv90, xwv91, app(ty_[], chb)) -> new_ltEs17(xwv90, xwv91, chb) 31.03/14.63 new_ltEs21(xwv74, xwv77, app(ty_Ratio, fee)) -> new_ltEs11(xwv74, xwv77, fee) 31.03/14.63 new_lt20(xwv73, xwv76, ty_Ordering) -> new_lt11(xwv73, xwv76) 31.03/14.63 new_esEs5(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) 31.03/14.63 new_lt5(xwv611, xwv621, ty_Float) -> new_lt19(xwv611, xwv621) 31.03/14.63 new_compare28(Just(xwv40), Just(xwv300), ba) -> new_compare211(xwv40, xwv300, new_esEs4(xwv40, xwv300, ba), ba) 31.03/14.63 new_primMulInt(Neg(xwv400), Neg(xwv3010)) -> Pos(new_primMulNat0(xwv400, xwv3010)) 31.03/14.63 new_ltEs7(False, False) -> True 31.03/14.63 new_primCmpInt(Pos(Zero), Pos(Succ(xwv3000))) -> new_primCmpNat0(Zero, Succ(xwv3000)) 31.03/14.63 new_esEs40(xwv610, xwv620, app(ty_Maybe, bag)) -> new_esEs20(xwv610, xwv620, bag) 31.03/14.63 new_esEs27(xwv610, xwv620, app(ty_Maybe, cc)) -> new_esEs20(xwv610, xwv620, cc) 31.03/14.63 new_esEs36(xwv282, xwv332, app(ty_Ratio, fdh)) -> new_esEs23(xwv282, xwv332, fdh) 31.03/14.63 new_lt23(xwv610, xwv620, ty_Char) -> new_lt14(xwv610, xwv620) 31.03/14.63 new_esEs20(Just(xwv280), Just(xwv330), app(ty_Ratio, dhe)) -> new_esEs23(xwv280, xwv330, dhe) 31.03/14.63 new_compare111(xwv187, xwv188, xwv189, xwv190, True, xwv192, ebc, ebd) -> new_compare15(xwv187, xwv188, xwv189, xwv190, True, ebc, ebd) 31.03/14.63 new_esEs5(xwv40, xwv300, app(app(app(ty_@3, ecc), ecd), ece)) -> new_esEs22(xwv40, xwv300, ecc, ecd, ece) 31.03/14.63 new_esEs40(xwv610, xwv620, ty_Int) -> new_esEs26(xwv610, xwv620) 31.03/14.63 new_esEs8(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) 31.03/14.63 new_compare27(xwv40, xwv300, app(ty_Maybe, ceg)) -> new_compare28(xwv40, xwv300, ceg) 31.03/14.63 new_compare9(Integer(xwv40), Integer(xwv300)) -> new_primCmpInt(xwv40, xwv300) 31.03/14.63 new_esEs13(xwv280, xwv330, app(ty_Ratio, dae)) -> new_esEs23(xwv280, xwv330, dae) 31.03/14.63 new_ltEs20(xwv83, xwv84, app(ty_[], cbe)) -> new_ltEs17(xwv83, xwv84, cbe) 31.03/14.63 new_ltEs5(xwv612, xwv622, ty_Integer) -> new_ltEs9(xwv612, xwv622) 31.03/14.63 new_lt14(xwv18, xwv13) -> new_esEs29(new_compare13(xwv18, xwv13)) 31.03/14.63 new_lt20(xwv73, xwv76, ty_Integer) -> new_lt10(xwv73, xwv76) 31.03/14.63 new_ltEs21(xwv74, xwv77, ty_@0) -> new_ltEs15(xwv74, xwv77) 31.03/14.63 new_esEs33(xwv281, xwv331, ty_Float) -> new_esEs21(xwv281, xwv331) 31.03/14.63 new_lt5(xwv611, xwv621, ty_Integer) -> new_lt10(xwv611, xwv621) 31.03/14.63 new_esEs6(xwv41, xwv301, ty_Integer) -> new_esEs17(xwv41, xwv301) 31.03/14.63 new_esEs8(xwv40, xwv300, ty_Double) -> new_esEs18(xwv40, xwv300) 31.03/14.63 new_lt4(xwv610, xwv620, ty_Ordering) -> new_lt11(xwv610, xwv620) 31.03/14.63 new_esEs13(xwv280, xwv330, app(ty_[], chd)) -> new_esEs12(xwv280, xwv330, chd) 31.03/14.63 new_compare7(True, False) -> GT 31.03/14.63 new_lt20(xwv73, xwv76, ty_Float) -> new_lt19(xwv73, xwv76) 31.03/14.63 new_esEs39(xwv119, xwv121, app(ty_Maybe, cdd)) -> new_esEs20(xwv119, xwv121, cdd) 31.03/14.63 new_esEs10(xwv40, xwv300, ty_Float) -> new_esEs21(xwv40, xwv300) 31.03/14.63 new_esEs7(xwv42, xwv302, app(app(ty_@2, ffb), ffc)) -> new_esEs16(xwv42, xwv302, ffb, ffc) 31.03/14.63 new_ltEs5(xwv612, xwv622, app(app(ty_@2, fh), ga)) -> new_ltEs12(xwv612, xwv622, fh, ga) 31.03/14.63 new_compare16(LT, LT) -> EQ 31.03/14.63 new_esEs6(xwv41, xwv301, ty_Ordering) -> new_esEs24(xwv41, xwv301) 31.03/14.63 new_esEs32(xwv280, xwv330, ty_Char) -> new_esEs25(xwv280, xwv330) 31.03/14.63 new_esEs7(xwv42, xwv302, ty_@0) -> new_esEs14(xwv42, xwv302) 31.03/14.63 new_esEs15(Left(xwv280), Left(xwv330), app(app(ty_@2, fhd), fhe), fgh) -> new_esEs16(xwv280, xwv330, fhd, fhe) 31.03/14.63 new_compare8(:%(xwv40, xwv41), :%(xwv300, xwv301), ty_Int) -> new_compare10(new_sr(xwv40, xwv301), new_sr(xwv300, xwv41)) 31.03/14.63 new_esEs8(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) 31.03/14.63 new_lt17(xwv18, xwv13) -> new_esEs29(new_compare6(xwv18, xwv13)) 31.03/14.63 new_esEs35(xwv281, xwv331, app(app(ty_@2, fbh), fca)) -> new_esEs16(xwv281, xwv331, fbh, fca) 31.03/14.63 new_esEs34(xwv280, xwv330, ty_@0) -> new_esEs14(xwv280, xwv330) 31.03/14.63 new_primMulInt(Pos(xwv400), Neg(xwv3010)) -> Neg(new_primMulNat0(xwv400, xwv3010)) 31.03/14.63 new_primMulInt(Neg(xwv400), Pos(xwv3010)) -> Neg(new_primMulNat0(xwv400, xwv3010)) 31.03/14.63 new_esEs11(xwv41, xwv301, ty_Ordering) -> new_esEs24(xwv41, xwv301) 31.03/14.63 new_esEs10(xwv40, xwv300, app(ty_Ratio, ddf)) -> new_esEs23(xwv40, xwv300, ddf) 31.03/14.63 new_esEs13(xwv280, xwv330, app(ty_Maybe, daa)) -> new_esEs20(xwv280, xwv330, daa) 31.03/14.63 new_esEs8(xwv40, xwv300, app(app(ty_@2, edh), eea)) -> new_esEs16(xwv40, xwv300, edh, eea) 31.03/14.63 new_ltEs6(Just(xwv610), Just(xwv620), ty_Char) -> new_ltEs13(xwv610, xwv620) 31.03/14.63 new_compare27(xwv40, xwv300, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_compare29(xwv40, xwv300, ceh, cfa, cfb) 31.03/14.63 new_esEs9(xwv40, xwv300, ty_Ordering) -> new_esEs24(xwv40, xwv300) 31.03/14.63 new_ltEs8(Left(xwv610), Left(xwv620), ty_Char, gd) -> new_ltEs13(xwv610, xwv620) 31.03/14.63 new_esEs37(xwv72, xwv75, app(ty_[], bhg)) -> new_esEs12(xwv72, xwv75, bhg) 31.03/14.63 new_esEs37(xwv72, xwv75, ty_Double) -> new_esEs18(xwv72, xwv75) 31.03/14.63 new_ltEs22(xwv120, xwv122, app(app(ty_Either, ccg), cch)) -> new_ltEs8(xwv120, xwv122, ccg, cch) 31.03/14.63 new_esEs4(xwv40, xwv300, ty_Float) -> new_esEs21(xwv40, xwv300) 31.03/14.63 new_compare5([], [], cef) -> EQ 31.03/14.63 new_esEs40(xwv610, xwv620, ty_@0) -> new_esEs14(xwv610, xwv620) 31.03/14.63 new_lt23(xwv610, xwv620, ty_Ordering) -> new_lt11(xwv610, xwv620) 31.03/14.63 new_lt22(xwv119, xwv121, app(app(ty_@2, cec), ced)) -> new_lt13(xwv119, xwv121, cec, ced) 31.03/14.63 new_sr0(Integer(xwv400), Integer(xwv3010)) -> Integer(new_primMulInt(xwv400, xwv3010)) 31.03/14.63 new_esEs28(xwv611, xwv621, app(ty_Maybe, dh)) -> new_esEs20(xwv611, xwv621, dh) 31.03/14.63 new_compare30(Left(xwv40), Right(xwv300), cab, cac) -> LT 31.03/14.63 new_esEs28(xwv611, xwv621, ty_@0) -> new_esEs14(xwv611, xwv621) 31.03/14.63 new_esEs8(xwv40, xwv300, app(ty_Ratio, eef)) -> new_esEs23(xwv40, xwv300, eef) 31.03/14.63 new_ltEs21(xwv74, xwv77, ty_Float) -> new_ltEs18(xwv74, xwv77) 31.03/14.63 new_esEs15(Right(xwv280), Right(xwv330), gac, ty_Float) -> new_esEs21(xwv280, xwv330) 31.03/14.63 new_esEs35(xwv281, xwv331, ty_Int) -> new_esEs26(xwv281, xwv331) 31.03/14.63 new_lt9(xwv18, xwv13, bhh, caa) -> new_esEs29(new_compare30(xwv18, xwv13, bhh, caa)) 31.03/14.63 new_esEs37(xwv72, xwv75, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs22(xwv72, xwv75, bgh, bha, bhb) 31.03/14.63 new_esEs11(xwv41, xwv301, ty_Integer) -> new_esEs17(xwv41, xwv301) 31.03/14.63 new_lt11(xwv18, xwv13) -> new_esEs29(new_compare16(xwv18, xwv13)) 31.03/14.63 new_lt23(xwv610, xwv620, ty_Int) -> new_lt15(xwv610, xwv620) 31.03/14.63 new_esEs4(xwv40, xwv300, app(ty_Ratio, dcd)) -> new_esEs23(xwv40, xwv300, dcd) 31.03/14.63 new_lt21(xwv72, xwv75, ty_Integer) -> new_lt10(xwv72, xwv75) 31.03/14.63 new_ltEs21(xwv74, xwv77, app(ty_Maybe, bff)) -> new_ltEs6(xwv74, xwv77, bff) 31.03/14.63 new_esEs20(Nothing, Just(xwv330), dgc) -> False 31.03/14.63 new_esEs20(Just(xwv280), Nothing, dgc) -> False 31.03/14.63 new_ltEs21(xwv74, xwv77, app(ty_[], bgf)) -> new_ltEs17(xwv74, xwv77, bgf) 31.03/14.63 new_esEs38(xwv73, xwv76, app(ty_Maybe, bec)) -> new_esEs20(xwv73, xwv76, bec) 31.03/14.63 new_ltEs6(Just(xwv610), Just(xwv620), ty_Ordering) -> new_ltEs10(xwv610, xwv620) 31.03/14.63 new_lt4(xwv610, xwv620, ty_Integer) -> new_lt10(xwv610, xwv620) 31.03/14.63 new_asAs(True, xwv128) -> xwv128 31.03/14.63 new_esEs35(xwv281, xwv331, app(ty_Ratio, fcf)) -> new_esEs23(xwv281, xwv331, fcf) 31.03/14.63 new_esEs22(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), ehh, faa, fab) -> new_asAs(new_esEs34(xwv280, xwv330, ehh), new_asAs(new_esEs35(xwv281, xwv331, faa), new_esEs36(xwv282, xwv332, fab))) 31.03/14.63 new_compare27(xwv40, xwv300, app(ty_Ratio, edc)) -> new_compare8(xwv40, xwv300, edc) 31.03/14.63 new_esEs20(Nothing, Nothing, dgc) -> True 31.03/14.63 new_esEs32(xwv280, xwv330, ty_Ordering) -> new_esEs24(xwv280, xwv330) 31.03/14.63 new_ltEs10(LT, LT) -> True 31.03/14.63 new_ltEs20(xwv83, xwv84, ty_@0) -> new_ltEs15(xwv83, xwv84) 31.03/14.63 new_ltEs21(xwv74, xwv77, ty_Integer) -> new_ltEs9(xwv74, xwv77) 31.03/14.63 new_esEs5(xwv40, xwv300, ty_Ordering) -> new_esEs24(xwv40, xwv300) 31.03/14.63 new_ltEs23(xwv611, xwv621, ty_Bool) -> new_ltEs7(xwv611, xwv621) 31.03/14.63 new_compare14(xwv172, xwv173, xwv174, xwv175, xwv176, xwv177, False, dhf, dhg, dhh) -> GT 31.03/14.63 new_compare30(Right(xwv40), Right(xwv300), cab, cac) -> new_compare25(xwv40, xwv300, new_esEs9(xwv40, xwv300, cac), cab, cac) 31.03/14.63 new_esEs20(Just(xwv280), Just(xwv330), ty_Int) -> new_esEs26(xwv280, xwv330) 31.03/14.63 new_ltEs8(Right(xwv610), Right(xwv620), he, ty_Double) -> new_ltEs16(xwv610, xwv620) 31.03/14.63 new_esEs39(xwv119, xwv121, ty_Char) -> new_esEs25(xwv119, xwv121) 31.03/14.63 new_ltEs23(xwv611, xwv621, app(app(ty_@2, bch), bda)) -> new_ltEs12(xwv611, xwv621, bch, bda) 31.03/14.63 new_lt21(xwv72, xwv75, app(ty_[], bhg)) -> new_lt18(xwv72, xwv75, bhg) 31.03/14.63 new_esEs15(Right(xwv280), Right(xwv330), gac, app(app(app(ty_@3, gbb), gbc), gbd)) -> new_esEs22(xwv280, xwv330, gbb, gbc, gbd) 31.03/14.63 new_ltEs24(xwv61, xwv62, ty_Ordering) -> new_ltEs10(xwv61, xwv62) 31.03/14.63 new_ltEs20(xwv83, xwv84, app(ty_Ratio, edb)) -> new_ltEs11(xwv83, xwv84, edb) 31.03/14.63 new_lt22(xwv119, xwv121, app(ty_Maybe, cdd)) -> new_lt6(xwv119, xwv121, cdd) 31.03/14.63 new_ltEs24(xwv61, xwv62, ty_Int) -> new_ltEs14(xwv61, xwv62) 31.03/14.63 new_lt5(xwv611, xwv621, app(app(ty_@2, ef), eg)) -> new_lt13(xwv611, xwv621, ef, eg) 31.03/14.63 new_ltEs6(Just(xwv610), Just(xwv620), ty_Int) -> new_ltEs14(xwv610, xwv620) 31.03/14.63 new_esEs10(xwv40, xwv300, app(app(ty_@2, dch), dda)) -> new_esEs16(xwv40, xwv300, dch, dda) 31.03/14.63 new_ltEs19(xwv90, xwv91, ty_@0) -> new_ltEs15(xwv90, xwv91) 31.03/14.63 new_primCmpInt(Pos(Succ(xwv400)), Pos(xwv300)) -> new_primCmpNat0(Succ(xwv400), xwv300) 31.03/14.63 new_esEs20(Just(xwv280), Just(xwv330), app(app(ty_@2, dgg), dgh)) -> new_esEs16(xwv280, xwv330, dgg, dgh) 31.03/14.63 new_ltEs8(Right(xwv610), Right(xwv620), he, ty_Integer) -> new_ltEs9(xwv610, xwv620) 31.03/14.63 new_esEs15(Left(xwv280), Left(xwv330), ty_@0, fgh) -> new_esEs14(xwv280, xwv330) 31.03/14.63 new_lt16(xwv18, xwv13) -> new_esEs29(new_compare17(xwv18, xwv13)) 31.03/14.63 new_esEs10(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) 31.03/14.63 new_primCompAux00(xwv107, EQ) -> xwv107 31.03/14.63 new_esEs13(xwv280, xwv330, ty_@0) -> new_esEs14(xwv280, xwv330) 31.03/14.63 new_esEs27(xwv610, xwv620, app(app(ty_Either, db), dc)) -> new_esEs15(xwv610, xwv620, db, dc) 31.03/14.63 new_sr(xwv40, xwv301) -> new_primMulInt(xwv40, xwv301) 31.03/14.63 new_compare7(False, True) -> LT 31.03/14.63 new_esEs15(Left(xwv280), Left(xwv330), app(ty_[], fha), fgh) -> new_esEs12(xwv280, xwv330, fha) 31.03/14.63 new_esEs33(xwv281, xwv331, app(app(app(ty_@3, eha), ehb), ehc)) -> new_esEs22(xwv281, xwv331, eha, ehb, ehc) 31.03/14.63 new_esEs32(xwv280, xwv330, ty_Integer) -> new_esEs17(xwv280, xwv330) 31.03/14.63 new_compare30(Right(xwv40), Left(xwv300), cab, cac) -> GT 31.03/14.63 new_ltEs8(Right(xwv610), Right(xwv620), he, app(ty_[], baf)) -> new_ltEs17(xwv610, xwv620, baf) 31.03/14.63 new_primMulNat0(Zero, Zero) -> Zero 31.03/14.63 new_ltEs6(Just(xwv610), Just(xwv620), app(ty_Ratio, fgg)) -> new_ltEs11(xwv610, xwv620, fgg) 31.03/14.63 new_esEs10(xwv40, xwv300, ty_Bool) -> new_esEs19(xwv40, xwv300) 31.03/14.63 new_ltEs22(xwv120, xwv122, app(app(app(ty_@3, ccd), cce), ccf)) -> new_ltEs4(xwv120, xwv122, ccd, cce, ccf) 31.03/14.63 new_ltEs8(Left(xwv610), Left(xwv620), app(ty_[], hd), gd) -> new_ltEs17(xwv610, xwv620, hd) 31.03/14.63 new_primMulNat0(Succ(xwv4000), Succ(xwv30100)) -> new_primPlusNat0(new_primMulNat0(xwv4000, Succ(xwv30100)), Succ(xwv30100)) 31.03/14.63 new_esEs4(xwv40, xwv300, app(app(ty_@2, dbf), dbg)) -> new_esEs16(xwv40, xwv300, dbf, dbg) 31.03/14.63 new_lt4(xwv610, xwv620, app(app(app(ty_@3, cf), cg), da)) -> new_lt8(xwv610, xwv620, cf, cg, da) 31.03/14.63 new_esEs4(xwv40, xwv300, ty_Integer) -> new_esEs17(xwv40, xwv300) 31.03/14.63 new_esEs31(xwv281, xwv331, ty_Int) -> new_esEs26(xwv281, xwv331) 31.03/14.63 new_esEs32(xwv280, xwv330, app(app(app(ty_@3, efg), efh), ega)) -> new_esEs22(xwv280, xwv330, efg, efh, ega) 31.03/14.63 new_esEs15(Right(xwv280), Right(xwv330), gac, ty_Ordering) -> new_esEs24(xwv280, xwv330) 31.03/14.63 new_compare11(Float(xwv40, Pos(xwv410)), Float(xwv300, Pos(xwv3010))) -> new_compare10(new_sr(xwv40, Pos(xwv3010)), new_sr(Pos(xwv410), xwv300)) 31.03/14.63 new_compare27(xwv40, xwv300, ty_Int) -> new_compare10(xwv40, xwv300) 31.03/14.63 new_lt20(xwv73, xwv76, app(app(ty_Either, beh), bfa)) -> new_lt9(xwv73, xwv76, beh, bfa) 31.03/14.63 new_lt20(xwv73, xwv76, app(app(app(ty_@3, bee), bef), beg)) -> new_lt8(xwv73, xwv76, bee, bef, beg) 31.03/14.63 new_ltEs22(xwv120, xwv122, app(ty_[], cdc)) -> new_ltEs17(xwv120, xwv122, cdc) 31.03/14.63 new_esEs39(xwv119, xwv121, app(app(ty_@2, cec), ced)) -> new_esEs16(xwv119, xwv121, cec, ced) 31.03/14.63 new_lt23(xwv610, xwv620, app(ty_Ratio, fgd)) -> new_lt12(xwv610, xwv620, fgd) 31.03/14.63 new_ltEs20(xwv83, xwv84, app(ty_Maybe, cad)) -> new_ltEs6(xwv83, xwv84, cad) 31.03/14.63 new_esEs15(Right(xwv280), Right(xwv330), gac, app(ty_[], gad)) -> new_esEs12(xwv280, xwv330, gad) 31.03/14.63 new_ltEs19(xwv90, xwv91, app(ty_Ratio, ech)) -> new_ltEs11(xwv90, xwv91, ech) 31.03/14.63 new_esEs39(xwv119, xwv121, app(ty_Ratio, fga)) -> new_esEs23(xwv119, xwv121, fga) 31.03/14.63 new_esEs35(xwv281, xwv331, ty_Float) -> new_esEs21(xwv281, xwv331) 31.03/14.63 new_lt23(xwv610, xwv620, ty_Bool) -> new_lt7(xwv610, xwv620) 31.03/14.63 new_esEs34(xwv280, xwv330, ty_Char) -> new_esEs25(xwv280, xwv330) 31.03/14.63 new_esEs4(xwv40, xwv300, ty_Ordering) -> new_esEs24(xwv40, xwv300) 31.03/14.63 new_esEs6(xwv41, xwv301, ty_Double) -> new_esEs18(xwv41, xwv301) 31.03/14.63 new_esEs38(xwv73, xwv76, ty_@0) -> new_esEs14(xwv73, xwv76) 31.03/14.63 new_esEs40(xwv610, xwv620, ty_Char) -> new_esEs25(xwv610, xwv620) 31.03/14.63 new_esEs28(xwv611, xwv621, ty_Char) -> new_esEs25(xwv611, xwv621) 31.03/14.63 new_esEs27(xwv610, xwv620, app(app(app(ty_@3, cf), cg), da)) -> new_esEs22(xwv610, xwv620, cf, cg, da) 31.03/14.63 new_esEs20(Just(xwv280), Just(xwv330), ty_Char) -> new_esEs25(xwv280, xwv330) 31.03/14.63 new_esEs4(xwv40, xwv300, ty_Bool) -> new_esEs19(xwv40, xwv300) 31.03/14.63 new_esEs24(EQ, GT) -> False 31.03/14.63 new_esEs24(GT, EQ) -> False 31.03/14.63 new_ltEs23(xwv611, xwv621, ty_Ordering) -> new_ltEs10(xwv611, xwv621) 31.03/14.63 new_compare16(EQ, GT) -> LT 31.03/14.63 new_ltEs19(xwv90, xwv91, app(ty_Maybe, cgb)) -> new_ltEs6(xwv90, xwv91, cgb) 31.03/14.63 new_compare6(Double(xwv40, Neg(xwv410)), Double(xwv300, Neg(xwv3010))) -> new_compare10(new_sr(xwv40, Neg(xwv3010)), new_sr(Neg(xwv410), xwv300)) 31.03/14.63 new_esEs7(xwv42, xwv302, app(ty_Maybe, ffd)) -> new_esEs20(xwv42, xwv302, ffd) 31.03/14.63 new_ltEs8(Right(xwv610), Right(xwv620), he, ty_Float) -> new_ltEs18(xwv610, xwv620) 31.03/14.63 new_esEs18(Double(xwv280, xwv281), Double(xwv330, xwv331)) -> new_esEs26(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) 31.03/14.63 new_ltEs22(xwv120, xwv122, app(app(ty_@2, cda), cdb)) -> new_ltEs12(xwv120, xwv122, cda, cdb) 31.03/14.63 new_esEs40(xwv610, xwv620, app(app(ty_@2, bbf), bbg)) -> new_esEs16(xwv610, xwv620, bbf, bbg) 31.03/14.63 new_lt4(xwv610, xwv620, ty_Double) -> new_lt17(xwv610, xwv620) 31.03/14.63 new_esEs5(xwv40, xwv300, ty_Double) -> new_esEs18(xwv40, xwv300) 31.03/14.63 new_primEqInt(Neg(Succ(xwv2800)), Neg(Zero)) -> False 31.03/14.63 new_primEqInt(Neg(Zero), Neg(Succ(xwv3300))) -> False 31.03/14.63 new_esEs24(LT, GT) -> False 31.03/14.63 new_esEs24(GT, LT) -> False 31.03/14.63 new_esEs27(xwv610, xwv620, app(ty_[], df)) -> new_esEs12(xwv610, xwv620, df) 31.03/14.63 new_ltEs7(True, True) -> True 31.03/14.63 new_esEs9(xwv40, xwv300, app(ty_Ratio, dgb)) -> new_esEs23(xwv40, xwv300, dgb) 31.03/14.63 new_esEs15(Right(xwv280), Right(xwv330), gac, ty_Integer) -> new_esEs17(xwv280, xwv330) 31.03/14.63 new_esEs6(xwv41, xwv301, app(ty_Maybe, eaf)) -> new_esEs20(xwv41, xwv301, eaf) 31.03/14.63 new_esEs36(xwv282, xwv332, ty_Float) -> new_esEs21(xwv282, xwv332) 31.03/14.63 new_esEs33(xwv281, xwv331, app(ty_[], egc)) -> new_esEs12(xwv281, xwv331, egc) 31.03/14.63 new_lt5(xwv611, xwv621, ty_Char) -> new_lt14(xwv611, xwv621) 31.03/14.63 new_esEs9(xwv40, xwv300, ty_Bool) -> new_esEs19(xwv40, xwv300) 31.03/14.63 new_lt13(xwv18, xwv13, cbf, cbg) -> new_esEs29(new_compare12(xwv18, xwv13, cbf, cbg)) 31.03/14.63 new_primEqInt(Pos(Succ(xwv2800)), Pos(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) 31.03/14.63 new_esEs32(xwv280, xwv330, app(app(ty_Either, efb), efc)) -> new_esEs15(xwv280, xwv330, efb, efc) 31.03/14.63 new_ltEs10(GT, GT) -> True 31.03/14.63 new_esEs35(xwv281, xwv331, ty_Char) -> new_esEs25(xwv281, xwv331) 31.03/14.63 new_esEs10(xwv40, xwv300, ty_Integer) -> new_esEs17(xwv40, xwv300) 31.03/14.63 new_ltEs23(xwv611, xwv621, ty_Int) -> new_ltEs14(xwv611, xwv621) 31.03/14.63 new_ltEs24(xwv61, xwv62, ty_@0) -> new_ltEs15(xwv61, xwv62) 31.03/14.63 new_ltEs8(Right(xwv610), Right(xwv620), he, ty_@0) -> new_ltEs15(xwv610, xwv620) 31.03/14.63 new_esEs34(xwv280, xwv330, app(app(ty_@2, faf), fag)) -> new_esEs16(xwv280, xwv330, faf, fag) 31.03/14.63 new_esEs15(Left(xwv280), Left(xwv330), app(app(app(ty_@3, fhg), fhh), gaa), fgh) -> new_esEs22(xwv280, xwv330, fhg, fhh, gaa) 31.03/14.63 new_compare210(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, bfe, bed) -> new_compare110(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, new_lt21(xwv72, xwv75, beb), new_asAs(new_esEs37(xwv72, xwv75, beb), new_pePe(new_lt20(xwv73, xwv76, bfe), new_asAs(new_esEs38(xwv73, xwv76, bfe), new_ltEs21(xwv74, xwv77, bed)))), beb, bfe, bed) 31.03/14.63 new_ltEs6(Nothing, Nothing, fgf) -> True 31.03/14.63 new_ltEs24(xwv61, xwv62, app(ty_Ratio, fgc)) -> new_ltEs11(xwv61, xwv62, fgc) 31.03/14.63 new_ltEs8(Left(xwv610), Left(xwv620), ty_Ordering, gd) -> new_ltEs10(xwv610, xwv620) 31.03/14.63 new_lt19(xwv18, xwv13) -> new_esEs29(new_compare11(xwv18, xwv13)) 31.03/14.63 new_esEs11(xwv41, xwv301, ty_Bool) -> new_esEs19(xwv41, xwv301) 31.03/14.63 new_ltEs5(xwv612, xwv622, ty_Bool) -> new_ltEs7(xwv612, xwv622) 31.03/14.63 new_esEs20(Just(xwv280), Just(xwv330), ty_Float) -> new_esEs21(xwv280, xwv330) 31.03/14.63 new_esEs10(xwv40, xwv300, ty_Ordering) -> new_esEs24(xwv40, xwv300) 31.03/14.63 new_compare27(xwv40, xwv300, ty_Integer) -> new_compare9(xwv40, xwv300) 31.03/14.63 new_primEqInt(Pos(Succ(xwv2800)), Neg(xwv330)) -> False 31.03/14.63 new_primEqInt(Neg(Succ(xwv2800)), Pos(xwv330)) -> False 31.03/14.63 new_esEs37(xwv72, xwv75, app(app(ty_Either, bhc), bhd)) -> new_esEs15(xwv72, xwv75, bhc, bhd) 31.03/14.63 new_primCmpInt(Neg(Zero), Neg(Succ(xwv3000))) -> new_primCmpNat0(Succ(xwv3000), Zero) 31.03/14.63 new_ltEs6(Just(xwv610), Nothing, fgf) -> False 31.03/14.63 new_esEs15(Right(xwv280), Right(xwv330), gac, ty_Bool) -> new_esEs19(xwv280, xwv330) 31.03/14.63 new_ltEs8(Left(xwv610), Left(xwv620), ty_Int, gd) -> new_ltEs14(xwv610, xwv620) 31.03/14.63 new_esEs9(xwv40, xwv300, ty_Integer) -> new_esEs17(xwv40, xwv300) 31.03/14.63 new_compare27(xwv40, xwv300, ty_@0) -> new_compare17(xwv40, xwv300) 31.03/14.63 new_ltEs5(xwv612, xwv622, ty_Double) -> new_ltEs16(xwv612, xwv622) 31.03/14.63 new_ltEs10(LT, EQ) -> True 31.03/14.63 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 31.03/14.63 new_esEs16(@2(xwv280, xwv281), @2(xwv330, xwv331), eeg, eeh) -> new_asAs(new_esEs32(xwv280, xwv330, eeg), new_esEs33(xwv281, xwv331, eeh)) 31.03/14.63 new_esEs11(xwv41, xwv301, ty_Int) -> new_esEs26(xwv41, xwv301) 31.03/14.63 new_ltEs19(xwv90, xwv91, app(app(app(ty_@3, cgc), cgd), cge)) -> new_ltEs4(xwv90, xwv91, cgc, cgd, cge) 31.03/14.63 new_esEs38(xwv73, xwv76, ty_Double) -> new_esEs18(xwv73, xwv76) 31.03/14.63 new_lt20(xwv73, xwv76, app(ty_Ratio, fed)) -> new_lt12(xwv73, xwv76, fed) 31.03/14.63 new_esEs39(xwv119, xwv121, ty_Float) -> new_esEs21(xwv119, xwv121) 31.03/14.63 new_esEs35(xwv281, xwv331, ty_Ordering) -> new_esEs24(xwv281, xwv331) 31.03/14.63 new_esEs28(xwv611, xwv621, app(app(ty_@2, ef), eg)) -> new_esEs16(xwv611, xwv621, ef, eg) 31.03/14.63 new_esEs38(xwv73, xwv76, ty_Char) -> new_esEs25(xwv73, xwv76) 31.03/14.63 new_compare6(Double(xwv40, Pos(xwv410)), Double(xwv300, Pos(xwv3010))) -> new_compare10(new_sr(xwv40, Pos(xwv3010)), new_sr(Pos(xwv410), xwv300)) 31.03/14.63 new_ltEs24(xwv61, xwv62, app(app(ty_@2, bca), bah)) -> new_ltEs12(xwv61, xwv62, bca, bah) 31.03/14.63 new_esEs20(Just(xwv280), Just(xwv330), app(ty_Maybe, dha)) -> new_esEs20(xwv280, xwv330, dha) 31.03/14.63 new_lt21(xwv72, xwv75, app(app(ty_@2, bhe), bhf)) -> new_lt13(xwv72, xwv75, bhe, bhf) 31.03/14.63 new_esEs40(xwv610, xwv620, app(ty_Ratio, fgd)) -> new_esEs23(xwv610, xwv620, fgd) 31.03/14.63 new_esEs15(Right(xwv280), Right(xwv330), gac, ty_Double) -> new_esEs18(xwv280, xwv330) 31.03/14.63 new_lt4(xwv610, xwv620, app(app(ty_@2, dd), de)) -> new_lt13(xwv610, xwv620, dd, de) 31.03/14.63 new_lt7(xwv18, xwv13) -> new_esEs29(new_compare7(xwv18, xwv13)) 31.03/14.63 new_esEs34(xwv280, xwv330, ty_Int) -> new_esEs26(xwv280, xwv330) 31.03/14.63 new_ltEs6(Just(xwv610), Just(xwv620), ty_@0) -> new_ltEs15(xwv610, xwv620) 31.03/14.63 new_lt23(xwv610, xwv620, ty_@0) -> new_lt16(xwv610, xwv620) 31.03/14.63 new_lt23(xwv610, xwv620, app(ty_Maybe, bag)) -> new_lt6(xwv610, xwv620, bag) 31.03/14.63 new_esEs10(xwv40, xwv300, ty_@0) -> new_esEs14(xwv40, xwv300) 31.03/14.63 new_esEs20(Just(xwv280), Just(xwv330), ty_Ordering) -> new_esEs24(xwv280, xwv330) 31.03/14.63 new_esEs7(xwv42, xwv302, app(ty_Ratio, ffh)) -> new_esEs23(xwv42, xwv302, ffh) 31.03/14.63 new_compare27(xwv40, xwv300, app(ty_[], cfg)) -> new_compare5(xwv40, xwv300, cfg) 31.03/14.63 new_esEs15(Right(xwv280), Right(xwv330), gac, ty_Char) -> new_esEs25(xwv280, xwv330) 31.03/14.63 new_compare27(xwv40, xwv300, ty_Float) -> new_compare11(xwv40, xwv300) 31.03/14.63 new_esEs37(xwv72, xwv75, ty_Integer) -> new_esEs17(xwv72, xwv75) 31.03/14.63 new_compare12(@2(xwv40, xwv41), @2(xwv300, xwv301), cbh, cca) -> new_compare24(xwv40, xwv41, xwv300, xwv301, new_asAs(new_esEs10(xwv40, xwv300, cbh), new_esEs11(xwv41, xwv301, cca)), cbh, cca) 31.03/14.63 new_esEs35(xwv281, xwv331, ty_@0) -> new_esEs14(xwv281, xwv331) 31.03/14.63 new_esEs13(xwv280, xwv330, app(app(ty_@2, chg), chh)) -> new_esEs16(xwv280, xwv330, chg, chh) 31.03/14.63 new_ltEs4(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, cd, ce) -> new_pePe(new_lt4(xwv610, xwv620, dg), new_asAs(new_esEs27(xwv610, xwv620, dg), new_pePe(new_lt5(xwv611, xwv621, cd), new_asAs(new_esEs28(xwv611, xwv621, cd), new_ltEs5(xwv612, xwv622, ce))))) 31.03/14.63 new_ltEs8(Left(xwv610), Right(xwv620), he, gd) -> True 31.03/14.63 new_not(False) -> True 31.03/14.63 new_esEs9(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) 31.03/14.63 new_esEs28(xwv611, xwv621, app(ty_[], eh)) -> new_esEs12(xwv611, xwv621, eh) 31.03/14.63 new_compare27(xwv40, xwv300, ty_Char) -> new_compare13(xwv40, xwv300) 31.03/14.63 new_esEs36(xwv282, xwv332, app(app(ty_@2, fdb), fdc)) -> new_esEs16(xwv282, xwv332, fdb, fdc) 31.03/14.63 new_esEs13(xwv280, xwv330, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs22(xwv280, xwv330, dab, dac, dad) 31.03/14.63 new_esEs8(xwv40, xwv300, ty_@0) -> new_esEs14(xwv40, xwv300) 31.03/14.63 new_esEs37(xwv72, xwv75, ty_Bool) -> new_esEs19(xwv72, xwv75) 31.03/14.63 new_lt22(xwv119, xwv121, ty_Double) -> new_lt17(xwv119, xwv121) 31.03/14.63 new_ltEs24(xwv61, xwv62, app(ty_Maybe, fgf)) -> new_ltEs6(xwv61, xwv62, fgf) 31.03/14.63 new_ltEs8(Left(xwv610), Left(xwv620), app(ty_Maybe, gc), gd) -> new_ltEs6(xwv610, xwv620, gc) 31.03/14.63 new_ltEs24(xwv61, xwv62, ty_Integer) -> new_ltEs9(xwv61, xwv62) 31.03/14.63 new_esEs20(Just(xwv280), Just(xwv330), ty_Integer) -> new_esEs17(xwv280, xwv330) 31.03/14.63 new_primPlusNat0(Succ(xwv16200), Succ(xwv13000)) -> Succ(Succ(new_primPlusNat0(xwv16200, xwv13000))) 31.03/14.63 new_esEs15(Right(xwv280), Right(xwv330), gac, app(ty_Ratio, gbe)) -> new_esEs23(xwv280, xwv330, gbe) 31.03/14.63 new_esEs13(xwv280, xwv330, ty_Double) -> new_esEs18(xwv280, xwv330) 31.03/14.63 new_ltEs6(Just(xwv610), Just(xwv620), ty_Bool) -> new_ltEs7(xwv610, xwv620) 31.03/14.63 new_ltEs24(xwv61, xwv62, ty_Bool) -> new_ltEs7(xwv61, xwv62) 31.03/14.63 new_ltEs5(xwv612, xwv622, ty_Ordering) -> new_ltEs10(xwv612, xwv622) 31.03/14.63 new_ltEs10(EQ, GT) -> True 31.03/14.63 new_compare15(xwv187, xwv188, xwv189, xwv190, False, ebc, ebd) -> GT 31.03/14.63 new_esEs15(Left(xwv280), Left(xwv330), ty_Int, fgh) -> new_esEs26(xwv280, xwv330) 31.03/14.63 new_esEs7(xwv42, xwv302, app(ty_[], feg)) -> new_esEs12(xwv42, xwv302, feg) 31.03/14.63 new_esEs36(xwv282, xwv332, ty_Double) -> new_esEs18(xwv282, xwv332) 31.03/14.63 new_compare24(xwv119, xwv120, xwv121, xwv122, False, ccb, cde) -> new_compare111(xwv119, xwv120, xwv121, xwv122, new_lt22(xwv119, xwv121, ccb), new_asAs(new_esEs39(xwv119, xwv121, ccb), new_ltEs22(xwv120, xwv122, cde)), ccb, cde) 31.03/14.63 new_primCompAux0(xwv40, xwv300, xwv56, cef) -> new_primCompAux00(xwv56, new_compare27(xwv40, xwv300, cef)) 31.03/14.63 new_esEs37(xwv72, xwv75, ty_Float) -> new_esEs21(xwv72, xwv75) 31.03/14.63 new_esEs20(Just(xwv280), Just(xwv330), ty_Bool) -> new_esEs19(xwv280, xwv330) 31.03/14.63 new_esEs5(xwv40, xwv300, ty_Float) -> new_esEs21(xwv40, xwv300) 31.03/14.63 new_esEs37(xwv72, xwv75, ty_Ordering) -> new_esEs24(xwv72, xwv75) 31.03/14.63 new_lt5(xwv611, xwv621, ty_Double) -> new_lt17(xwv611, xwv621) 31.03/14.63 new_lt22(xwv119, xwv121, app(ty_Ratio, fga)) -> new_lt12(xwv119, xwv121, fga) 31.03/14.63 new_esEs13(xwv280, xwv330, app(app(ty_Either, che), chf)) -> new_esEs15(xwv280, xwv330, che, chf) 31.03/14.63 new_esEs20(Just(xwv280), Just(xwv330), ty_@0) -> new_esEs14(xwv280, xwv330) 31.03/14.63 new_esEs38(xwv73, xwv76, app(app(ty_@2, bfb), bfc)) -> new_esEs16(xwv73, xwv76, bfb, bfc) 31.03/14.63 new_lt5(xwv611, xwv621, app(ty_Ratio, dag)) -> new_lt12(xwv611, xwv621, dag) 31.03/14.63 new_ltEs5(xwv612, xwv622, ty_Int) -> new_ltEs14(xwv612, xwv622) 31.03/14.63 new_ltEs8(Left(xwv610), Left(xwv620), ty_@0, gd) -> new_ltEs15(xwv610, xwv620) 31.03/14.63 new_ltEs10(EQ, EQ) -> True 31.03/14.63 new_esEs9(xwv40, xwv300, app(app(ty_Either, dfb), dfc)) -> new_esEs15(xwv40, xwv300, dfb, dfc) 31.03/14.63 new_compare15(xwv187, xwv188, xwv189, xwv190, True, ebc, ebd) -> LT 31.03/14.63 new_esEs40(xwv610, xwv620, ty_Float) -> new_esEs21(xwv610, xwv620) 31.03/14.63 new_esEs36(xwv282, xwv332, app(app(ty_Either, fch), fda)) -> new_esEs15(xwv282, xwv332, fch, fda) 31.03/14.63 new_esEs36(xwv282, xwv332, app(app(app(ty_@3, fde), fdf), fdg)) -> new_esEs22(xwv282, xwv332, fde, fdf, fdg) 31.03/14.63 new_ltEs22(xwv120, xwv122, ty_Char) -> new_ltEs13(xwv120, xwv122) 31.03/14.63 new_esEs13(xwv280, xwv330, ty_Int) -> new_esEs26(xwv280, xwv330) 31.03/14.63 new_esEs4(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) 31.03/14.63 new_esEs36(xwv282, xwv332, ty_Int) -> new_esEs26(xwv282, xwv332) 31.03/14.63 new_esEs28(xwv611, xwv621, app(ty_Ratio, dag)) -> new_esEs23(xwv611, xwv621, dag) 31.03/14.63 new_esEs9(xwv40, xwv300, app(app(app(ty_@3, dfg), dfh), dga)) -> new_esEs22(xwv40, xwv300, dfg, dfh, dga) 31.03/14.63 new_ltEs23(xwv611, xwv621, app(app(ty_Either, bcf), bcg)) -> new_ltEs8(xwv611, xwv621, bcf, bcg) 31.03/14.63 new_esEs35(xwv281, xwv331, ty_Integer) -> new_esEs17(xwv281, xwv331) 31.03/14.63 new_esEs5(xwv40, xwv300, app(ty_Ratio, ecf)) -> new_esEs23(xwv40, xwv300, ecf) 31.03/14.63 new_compare211(xwv61, xwv62, False, gbf) -> new_compare112(xwv61, xwv62, new_ltEs24(xwv61, xwv62, gbf), gbf) 31.03/14.63 new_esEs8(xwv40, xwv300, app(ty_Maybe, eeb)) -> new_esEs20(xwv40, xwv300, eeb) 31.03/14.63 new_ltEs5(xwv612, xwv622, app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs4(xwv612, xwv622, fb, fc, fd) 31.03/14.63 new_esEs33(xwv281, xwv331, app(app(ty_Either, egd), ege)) -> new_esEs15(xwv281, xwv331, egd, ege) 31.03/14.63 new_esEs32(xwv280, xwv330, app(ty_Ratio, egb)) -> new_esEs23(xwv280, xwv330, egb) 31.03/14.63 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 31.03/14.63 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 31.03/14.63 new_ltEs17(xwv61, xwv62, bdc) -> new_fsEs(new_compare5(xwv61, xwv62, bdc)) 31.03/14.63 new_esEs35(xwv281, xwv331, app(ty_Maybe, fcb)) -> new_esEs20(xwv281, xwv331, fcb) 31.03/14.63 new_esEs11(xwv41, xwv301, app(app(app(ty_@3, dee), def), deg)) -> new_esEs22(xwv41, xwv301, dee, def, deg) 31.03/14.63 new_esEs33(xwv281, xwv331, ty_@0) -> new_esEs14(xwv281, xwv331) 31.03/14.63 new_lt20(xwv73, xwv76, ty_Double) -> new_lt17(xwv73, xwv76) 31.03/14.63 new_esEs28(xwv611, xwv621, ty_Double) -> new_esEs18(xwv611, xwv621) 31.03/14.63 new_esEs13(xwv280, xwv330, ty_Char) -> new_esEs25(xwv280, xwv330) 31.03/14.63 new_compare10(xwv4, xwv30) -> new_primCmpInt(xwv4, xwv30) 31.03/14.63 new_ltEs22(xwv120, xwv122, ty_Float) -> new_ltEs18(xwv120, xwv122) 31.03/14.63 new_esEs10(xwv40, xwv300, app(app(ty_Either, dcf), dcg)) -> new_esEs15(xwv40, xwv300, dcf, dcg) 31.03/14.64 new_esEs35(xwv281, xwv331, ty_Bool) -> new_esEs19(xwv281, xwv331) 31.03/14.64 new_lt4(xwv610, xwv620, ty_@0) -> new_lt16(xwv610, xwv620) 31.03/14.64 new_lt4(xwv610, xwv620, app(ty_Maybe, cc)) -> new_lt6(xwv610, xwv620, cc) 31.03/14.64 new_esEs4(xwv40, xwv300, ty_Double) -> new_esEs18(xwv40, xwv300) 31.03/14.64 new_esEs32(xwv280, xwv330, app(ty_[], efa)) -> new_esEs12(xwv280, xwv330, efa) 31.03/14.64 new_compare16(GT, GT) -> EQ 31.03/14.64 new_esEs36(xwv282, xwv332, ty_Char) -> new_esEs25(xwv282, xwv332) 31.03/14.64 new_lt21(xwv72, xwv75, app(app(app(ty_@3, bgh), bha), bhb)) -> new_lt8(xwv72, xwv75, bgh, bha, bhb) 31.03/14.64 new_ltEs8(Right(xwv610), Right(xwv620), he, ty_Bool) -> new_ltEs7(xwv610, xwv620) 31.03/14.64 new_esEs34(xwv280, xwv330, app(app(ty_Either, fad), fae)) -> new_esEs15(xwv280, xwv330, fad, fae) 31.03/14.64 new_compare27(xwv40, xwv300, ty_Ordering) -> new_compare16(xwv40, xwv300) 31.03/14.64 new_compare27(xwv40, xwv300, app(app(ty_@2, cfe), cff)) -> new_compare12(xwv40, xwv300, cfe, cff) 31.03/14.64 new_compare110(xwv172, xwv173, xwv174, xwv175, xwv176, xwv177, False, xwv179, dhf, dhg, dhh) -> new_compare14(xwv172, xwv173, xwv174, xwv175, xwv176, xwv177, xwv179, dhf, dhg, dhh) 31.03/14.64 new_esEs27(xwv610, xwv620, ty_Float) -> new_esEs21(xwv610, xwv620) 31.03/14.64 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 31.03/14.64 new_esEs11(xwv41, xwv301, app(app(ty_Either, ddh), dea)) -> new_esEs15(xwv41, xwv301, ddh, dea) 31.03/14.64 new_esEs5(xwv40, xwv300, app(ty_[], ebe)) -> new_esEs12(xwv40, xwv300, ebe) 31.03/14.64 new_lt20(xwv73, xwv76, app(ty_[], bfd)) -> new_lt18(xwv73, xwv76, bfd) 31.03/14.64 new_ltEs21(xwv74, xwv77, app(app(app(ty_@3, bfg), bfh), bga)) -> new_ltEs4(xwv74, xwv77, bfg, bfh, bga) 31.03/14.64 new_ltEs21(xwv74, xwv77, ty_Ordering) -> new_ltEs10(xwv74, xwv77) 31.03/14.64 new_lt21(xwv72, xwv75, ty_Bool) -> new_lt7(xwv72, xwv75) 31.03/14.64 new_compare17(@0, @0) -> EQ 31.03/14.64 new_esEs27(xwv610, xwv620, ty_Char) -> new_esEs25(xwv610, xwv620) 31.03/14.64 new_ltEs24(xwv61, xwv62, ty_Char) -> new_ltEs13(xwv61, xwv62) 31.03/14.64 new_esEs15(Right(xwv280), Right(xwv330), gac, app(app(ty_Either, gae), gaf)) -> new_esEs15(xwv280, xwv330, gae, gaf) 31.03/14.64 new_esEs34(xwv280, xwv330, app(app(app(ty_@3, fba), fbb), fbc)) -> new_esEs22(xwv280, xwv330, fba, fbb, fbc) 31.03/14.64 new_esEs15(Right(xwv280), Right(xwv330), gac, app(ty_Maybe, gba)) -> new_esEs20(xwv280, xwv330, gba) 31.03/14.64 new_esEs25(Char(xwv280), Char(xwv330)) -> new_primEqNat0(xwv280, xwv330) 31.03/14.64 new_primCmpNat0(Succ(xwv400), Succ(xwv3000)) -> new_primCmpNat0(xwv400, xwv3000) 31.03/14.64 new_ltEs21(xwv74, xwv77, ty_Bool) -> new_ltEs7(xwv74, xwv77) 31.03/14.64 new_ltEs21(xwv74, xwv77, ty_Int) -> new_ltEs14(xwv74, xwv77) 31.03/14.64 new_lt20(xwv73, xwv76, ty_@0) -> new_lt16(xwv73, xwv76) 31.03/14.64 new_esEs35(xwv281, xwv331, app(app(ty_Either, fbf), fbg)) -> new_esEs15(xwv281, xwv331, fbf, fbg) 31.03/14.64 new_ltEs6(Just(xwv610), Just(xwv620), app(app(ty_@2, bh), ca)) -> new_ltEs12(xwv610, xwv620, bh, ca) 31.03/14.64 new_lt15(xwv18, xwv13) -> new_esEs29(new_compare10(xwv18, xwv13)) 31.03/14.64 new_lt20(xwv73, xwv76, ty_Bool) -> new_lt7(xwv73, xwv76) 31.03/14.64 new_ltEs19(xwv90, xwv91, ty_Float) -> new_ltEs18(xwv90, xwv91) 31.03/14.64 new_lt4(xwv610, xwv620, app(ty_[], df)) -> new_lt18(xwv610, xwv620, df) 31.03/14.64 new_esEs12([], [], chc) -> True 31.03/14.64 new_esEs27(xwv610, xwv620, ty_Double) -> new_esEs18(xwv610, xwv620) 31.03/14.64 new_lt5(xwv611, xwv621, ty_Bool) -> new_lt7(xwv611, xwv621) 31.03/14.64 new_compare11(Float(xwv40, Neg(xwv410)), Float(xwv300, Neg(xwv3010))) -> new_compare10(new_sr(xwv40, Neg(xwv3010)), new_sr(Neg(xwv410), xwv300)) 31.03/14.64 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 31.03/14.64 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 31.03/14.64 new_esEs29(LT) -> True 31.03/14.64 new_ltEs6(Just(xwv610), Just(xwv620), ty_Integer) -> new_ltEs9(xwv610, xwv620) 31.03/14.64 new_lt23(xwv610, xwv620, app(app(ty_Either, bbd), bbe)) -> new_lt9(xwv610, xwv620, bbd, bbe) 31.03/14.64 new_lt20(xwv73, xwv76, app(ty_Maybe, bec)) -> new_lt6(xwv73, xwv76, bec) 31.03/14.64 new_lt23(xwv610, xwv620, app(app(app(ty_@3, bba), bbb), bbc)) -> new_lt8(xwv610, xwv620, bba, bbb, bbc) 31.03/14.64 new_esEs10(xwv40, xwv300, app(ty_Maybe, ddb)) -> new_esEs20(xwv40, xwv300, ddb) 31.03/14.64 new_lt21(xwv72, xwv75, ty_@0) -> new_lt16(xwv72, xwv75) 31.03/14.64 new_primEqNat0(Zero, Zero) -> True 31.03/14.64 new_lt5(xwv611, xwv621, app(ty_Maybe, dh)) -> new_lt6(xwv611, xwv621, dh) 31.03/14.64 new_ltEs8(Right(xwv610), Right(xwv620), he, ty_Char) -> new_ltEs13(xwv610, xwv620) 31.03/14.64 new_ltEs20(xwv83, xwv84, ty_Float) -> new_ltEs18(xwv83, xwv84) 31.03/14.64 new_esEs34(xwv280, xwv330, app(ty_Maybe, fah)) -> new_esEs20(xwv280, xwv330, fah) 31.03/14.64 new_lt21(xwv72, xwv75, ty_Double) -> new_lt17(xwv72, xwv75) 31.03/14.64 new_esEs33(xwv281, xwv331, app(ty_Maybe, egh)) -> new_esEs20(xwv281, xwv331, egh) 31.03/14.64 new_esEs37(xwv72, xwv75, app(app(ty_@2, bhe), bhf)) -> new_esEs16(xwv72, xwv75, bhe, bhf) 31.03/14.64 new_esEs36(xwv282, xwv332, ty_Bool) -> new_esEs19(xwv282, xwv332) 31.03/14.64 new_lt5(xwv611, xwv621, ty_@0) -> new_lt16(xwv611, xwv621) 31.03/14.64 new_lt21(xwv72, xwv75, app(ty_Maybe, bgg)) -> new_lt6(xwv72, xwv75, bgg) 31.03/14.64 new_lt5(xwv611, xwv621, app(ty_[], eh)) -> new_lt18(xwv611, xwv621, eh) 31.03/14.64 new_esEs20(Just(xwv280), Just(xwv330), app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs22(xwv280, xwv330, dhb, dhc, dhd) 31.03/14.64 new_ltEs10(LT, GT) -> True 31.03/14.64 new_asAs(False, xwv128) -> False 31.03/14.64 new_ltEs13(xwv61, xwv62) -> new_fsEs(new_compare13(xwv61, xwv62)) 31.03/14.64 new_ltEs19(xwv90, xwv91, ty_Int) -> new_ltEs14(xwv90, xwv91) 31.03/14.64 new_lt21(xwv72, xwv75, app(ty_Ratio, fec)) -> new_lt12(xwv72, xwv75, fec) 31.03/14.64 new_lt22(xwv119, xwv121, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_lt8(xwv119, xwv121, cdf, cdg, cdh) 31.03/14.64 new_esEs38(xwv73, xwv76, ty_Float) -> new_esEs21(xwv73, xwv76) 31.03/14.64 new_esEs36(xwv282, xwv332, ty_Ordering) -> new_esEs24(xwv282, xwv332) 31.03/14.64 new_ltEs22(xwv120, xwv122, app(ty_Maybe, ccc)) -> new_ltEs6(xwv120, xwv122, ccc) 31.03/14.64 new_esEs6(xwv41, xwv301, app(ty_[], eaa)) -> new_esEs12(xwv41, xwv301, eaa) 31.03/14.64 new_ltEs19(xwv90, xwv91, ty_Ordering) -> new_ltEs10(xwv90, xwv91) 31.03/14.64 new_esEs13(xwv280, xwv330, ty_Ordering) -> new_esEs24(xwv280, xwv330) 31.03/14.64 new_ltEs20(xwv83, xwv84, ty_Ordering) -> new_ltEs10(xwv83, xwv84) 31.03/14.64 new_ltEs20(xwv83, xwv84, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs4(xwv83, xwv84, caf, cag, cah) 31.03/14.64 new_compare112(xwv140, xwv141, False, fef) -> GT 31.03/14.64 new_compare27(xwv40, xwv300, ty_Bool) -> new_compare7(xwv40, xwv300) 31.03/14.64 new_esEs36(xwv282, xwv332, ty_Integer) -> new_esEs17(xwv282, xwv332) 31.03/14.64 new_ltEs6(Just(xwv610), Just(xwv620), app(app(ty_Either, bf), bg)) -> new_ltEs8(xwv610, xwv620, bf, bg) 31.03/14.64 new_esEs35(xwv281, xwv331, app(app(app(ty_@3, fcc), fcd), fce)) -> new_esEs22(xwv281, xwv331, fcc, fcd, fce) 31.03/14.64 new_compare16(LT, EQ) -> LT 31.03/14.64 new_esEs24(LT, EQ) -> False 31.03/14.64 new_esEs24(EQ, LT) -> False 31.03/14.64 new_ltEs23(xwv611, xwv621, ty_Char) -> new_ltEs13(xwv611, xwv621) 31.03/14.64 new_compare16(GT, EQ) -> GT 31.03/14.64 new_esEs6(xwv41, xwv301, app(ty_Ratio, ebb)) -> new_esEs23(xwv41, xwv301, ebb) 31.03/14.64 new_esEs19(True, True) -> True 31.03/14.64 new_compare28(Nothing, Just(xwv300), ba) -> LT 31.03/14.64 new_ltEs20(xwv83, xwv84, ty_Int) -> new_ltEs14(xwv83, xwv84) 31.03/14.64 new_ltEs24(xwv61, xwv62, app(app(ty_Either, he), gd)) -> new_ltEs8(xwv61, xwv62, he, gd) 31.03/14.64 new_ltEs22(xwv120, xwv122, ty_Bool) -> new_ltEs7(xwv120, xwv122) 31.03/14.64 31.03/14.64 The set Q consists of the following terms: 31.03/14.64 31.03/14.64 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_ltEs19(x0, x1, ty_Bool) 31.03/14.64 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_lt9(x0, x1, x2, x3) 31.03/14.64 new_esEs31(x0, x1, ty_Int) 31.03/14.64 new_esEs39(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 31.03/14.64 new_esEs35(x0, x1, ty_Ordering) 31.03/14.64 new_ltEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 31.03/14.64 new_ltEs21(x0, x1, app(ty_[], x2)) 31.03/14.64 new_ltEs24(x0, x1, ty_Int) 31.03/14.64 new_esEs28(x0, x1, ty_Int) 31.03/14.64 new_esEs27(x0, x1, ty_Double) 31.03/14.64 new_ltEs6(Just(x0), Just(x1), ty_Bool) 31.03/14.64 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_esEs5(x0, x1, app(ty_[], x2)) 31.03/14.64 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_esEs4(x0, x1, app(ty_[], x2)) 31.03/14.64 new_primMulInt(Pos(x0), Pos(x1)) 31.03/14.64 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_esEs36(x0, x1, ty_Int) 31.03/14.64 new_esEs37(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_lt4(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_ltEs19(x0, x1, ty_@0) 31.03/14.64 new_ltEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_esEs11(x0, x1, ty_Integer) 31.03/14.64 new_esEs28(x0, x1, ty_Char) 31.03/14.64 new_lt17(x0, x1) 31.03/14.64 new_esEs10(x0, x1, ty_Bool) 31.03/14.64 new_esEs33(x0, x1, ty_Int) 31.03/14.64 new_lt22(x0, x1, ty_Ordering) 31.03/14.64 new_esEs32(x0, x1, ty_Double) 31.03/14.64 new_esEs35(x0, x1, ty_Int) 31.03/14.64 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_esEs8(x0, x1, ty_Bool) 31.03/14.64 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_esEs38(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_lt19(x0, x1) 31.03/14.64 new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 31.03/14.64 new_ltEs10(LT, LT) 31.03/14.64 new_esEs17(Integer(x0), Integer(x1)) 31.03/14.64 new_esEs8(x0, x1, ty_@0) 31.03/14.64 new_esEs20(Just(x0), Just(x1), app(ty_[], x2)) 31.03/14.64 new_esEs20(Nothing, Just(x0), x1) 31.03/14.64 new_ltEs21(x0, x1, ty_Char) 31.03/14.64 new_esEs13(x0, x1, app(ty_[], x2)) 31.03/14.64 new_esEs19(False, False) 31.03/14.64 new_ltEs24(x0, x1, ty_Ordering) 31.03/14.64 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 31.03/14.64 new_esEs10(x0, x1, ty_Integer) 31.03/14.64 new_lt22(x0, x1, ty_Int) 31.03/14.64 new_esEs13(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_compare10(x0, x1) 31.03/14.64 new_lt15(x0, x1) 31.03/14.64 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 31.03/14.64 new_lt8(x0, x1, x2, x3, x4) 31.03/14.64 new_compare28(Just(x0), Just(x1), x2) 31.03/14.64 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_primEqInt(Pos(Zero), Pos(Zero)) 31.03/14.64 new_pePe(True, x0) 31.03/14.64 new_esEs35(x0, x1, app(ty_[], x2)) 31.03/14.64 new_esEs7(x0, x1, ty_Double) 31.03/14.64 new_asAs(False, x0) 31.03/14.64 new_lt23(x0, x1, ty_Float) 31.03/14.64 new_esEs32(x0, x1, ty_Ordering) 31.03/14.64 new_compare16(GT, GT) 31.03/14.64 new_esEs15(Left(x0), Left(x1), ty_@0, x2) 31.03/14.64 new_primMulInt(Neg(x0), Neg(x1)) 31.03/14.64 new_esEs34(x0, x1, ty_Double) 31.03/14.64 new_ltEs22(x0, x1, ty_Double) 31.03/14.64 new_lt21(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_esEs13(x0, x1, ty_Bool) 31.03/14.64 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_esEs7(x0, x1, ty_Ordering) 31.03/14.64 new_esEs35(x0, x1, ty_Double) 31.03/14.64 new_compare5(:(x0, x1), :(x2, x3), x4) 31.03/14.64 new_esEs4(x0, x1, ty_Bool) 31.03/14.64 new_ltEs21(x0, x1, ty_Int) 31.03/14.64 new_esEs33(x0, x1, ty_Ordering) 31.03/14.64 new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 31.03/14.64 new_esEs15(Right(x0), Right(x1), x2, ty_Float) 31.03/14.64 new_esEs37(x0, x1, ty_Float) 31.03/14.64 new_esEs34(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_compare17(@0, @0) 31.03/14.64 new_esEs6(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs15(Left(x0), Left(x1), ty_Integer, x2) 31.03/14.64 new_esEs10(x0, x1, app(ty_[], x2)) 31.03/14.64 new_compare5([], :(x0, x1), x2) 31.03/14.64 new_esEs27(x0, x1, ty_Ordering) 31.03/14.64 new_esEs34(x0, x1, app(ty_[], x2)) 31.03/14.64 new_esEs39(x0, x1, ty_Bool) 31.03/14.64 new_esEs35(x0, x1, ty_Char) 31.03/14.64 new_lt20(x0, x1, app(ty_[], x2)) 31.03/14.64 new_primEqInt(Neg(Zero), Neg(Zero)) 31.03/14.64 new_esEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 31.03/14.64 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 31.03/14.64 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs36(x0, x1, ty_Char) 31.03/14.64 new_ltEs21(x0, x1, ty_Ordering) 31.03/14.64 new_esEs27(x0, x1, ty_Int) 31.03/14.64 new_esEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 31.03/14.64 new_esEs36(x0, x1, ty_Double) 31.03/14.64 new_esEs28(x0, x1, ty_Ordering) 31.03/14.64 new_compare29(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 31.03/14.64 new_esEs40(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 31.03/14.64 new_sr(x0, x1) 31.03/14.64 new_esEs38(x0, x1, ty_Float) 31.03/14.64 new_esEs29(GT) 31.03/14.64 new_ltEs23(x0, x1, ty_Ordering) 31.03/14.64 new_esEs24(EQ, EQ) 31.03/14.64 new_esEs15(Right(x0), Right(x1), x2, ty_Integer) 31.03/14.64 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_primMulNat0(Zero, Succ(x0)) 31.03/14.64 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 31.03/14.64 new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 31.03/14.64 new_ltEs5(x0, x1, ty_Float) 31.03/14.64 new_compare16(LT, LT) 31.03/14.64 new_esEs27(x0, x1, ty_Char) 31.03/14.64 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_esEs12([], :(x0, x1), x2) 31.03/14.64 new_lt4(x0, x1, ty_Double) 31.03/14.64 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_esEs9(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_ltEs11(x0, x1, x2) 31.03/14.64 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_esEs8(x0, x1, ty_Integer) 31.03/14.64 new_esEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 31.03/14.64 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_esEs36(x0, x1, ty_Bool) 31.03/14.64 new_primPlusNat0(Succ(x0), Zero) 31.03/14.64 new_esEs13(x0, x1, ty_Integer) 31.03/14.64 new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 31.03/14.64 new_ltEs10(GT, EQ) 31.03/14.64 new_ltEs16(x0, x1) 31.03/14.64 new_ltEs10(EQ, GT) 31.03/14.64 new_compare27(x0, x1, ty_Float) 31.03/14.64 new_esEs36(x0, x1, ty_Ordering) 31.03/14.64 new_lt22(x0, x1, app(ty_[], x2)) 31.03/14.64 new_lt7(x0, x1) 31.03/14.64 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_compare30(Left(x0), Left(x1), x2, x3) 31.03/14.64 new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_esEs4(x0, x1, ty_Char) 31.03/14.64 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 31.03/14.64 new_esEs40(x0, x1, ty_Ordering) 31.03/14.64 new_primCmpNat0(Succ(x0), Succ(x1)) 31.03/14.64 new_esEs39(x0, x1, ty_Char) 31.03/14.64 new_ltEs24(x0, x1, ty_@0) 31.03/14.64 new_esEs27(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs33(x0, x1, ty_Char) 31.03/14.64 new_primEqInt(Pos(Zero), Neg(Zero)) 31.03/14.64 new_primEqInt(Neg(Zero), Pos(Zero)) 31.03/14.64 new_esEs34(x0, x1, ty_Ordering) 31.03/14.64 new_esEs30(x0, x1, ty_Int) 31.03/14.64 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_compare9(Integer(x0), Integer(x1)) 31.03/14.64 new_ltEs19(x0, x1, ty_Integer) 31.03/14.64 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 31.03/14.64 new_esEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 31.03/14.64 new_esEs4(x0, x1, ty_@0) 31.03/14.64 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 31.03/14.64 new_ltEs22(x0, x1, ty_Ordering) 31.03/14.64 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_esEs10(x0, x1, ty_Char) 31.03/14.64 new_esEs39(x0, x1, ty_Int) 31.03/14.64 new_esEs13(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_ltEs6(Just(x0), Just(x1), ty_@0) 31.03/14.64 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_ltEs5(x0, x1, app(ty_[], x2)) 31.03/14.64 new_esEs4(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_ltEs24(x0, x1, ty_Bool) 31.03/14.64 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_esEs33(x0, x1, ty_Double) 31.03/14.64 new_primCompAux0(x0, x1, x2, x3) 31.03/14.64 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_esEs10(x0, x1, ty_@0) 31.03/14.64 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 31.03/14.64 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_ltEs7(False, True) 31.03/14.64 new_ltEs7(True, False) 31.03/14.64 new_esEs10(x0, x1, ty_Int) 31.03/14.64 new_primMulInt(Pos(x0), Neg(x1)) 31.03/14.64 new_primMulInt(Neg(x0), Pos(x1)) 31.03/14.64 new_esEs13(x0, x1, ty_Ordering) 31.03/14.64 new_lt5(x0, x1, ty_Ordering) 31.03/14.64 new_esEs4(x0, x1, ty_Float) 31.03/14.64 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 31.03/14.64 new_lt20(x0, x1, ty_Ordering) 31.03/14.64 new_compare7(True, True) 31.03/14.64 new_esEs39(x0, x1, ty_@0) 31.03/14.64 new_ltEs24(x0, x1, ty_Char) 31.03/14.64 new_ltEs6(Just(x0), Just(x1), ty_Float) 31.03/14.64 new_esEs15(Left(x0), Left(x1), ty_Bool, x2) 31.03/14.64 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_ltEs24(x0, x1, ty_Double) 31.03/14.64 new_esEs33(x0, x1, ty_Bool) 31.03/14.64 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_esEs15(Left(x0), Right(x1), x2, x3) 31.03/14.64 new_esEs15(Right(x0), Left(x1), x2, x3) 31.03/14.64 new_lt4(x0, x1, ty_Int) 31.03/14.64 new_ltEs19(x0, x1, app(ty_[], x2)) 31.03/14.64 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_compare28(Nothing, Nothing, x0) 31.03/14.64 new_compare27(x0, x1, ty_Integer) 31.03/14.64 new_esEs5(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_primPlusNat0(Succ(x0), Succ(x1)) 31.03/14.64 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 31.03/14.64 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 31.03/14.64 new_esEs4(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs11(x0, x1, ty_Char) 31.03/14.64 new_ltEs6(Just(x0), Just(x1), ty_Ordering) 31.03/14.64 new_esEs15(Left(x0), Left(x1), ty_Int, x2) 31.03/14.64 new_ltEs19(x0, x1, ty_Float) 31.03/14.64 new_compare14(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 31.03/14.64 new_ltEs6(Just(x0), Just(x1), app(ty_[], x2)) 31.03/14.64 new_lt4(x0, x1, ty_Char) 31.03/14.64 new_lt12(x0, x1, x2) 31.03/14.64 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 31.03/14.64 new_esEs10(x0, x1, ty_Ordering) 31.03/14.64 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_esEs5(x0, x1, ty_Ordering) 31.03/14.64 new_esEs37(x0, x1, ty_@0) 31.03/14.64 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 31.03/14.64 new_ltEs10(EQ, LT) 31.03/14.64 new_lt6(x0, x1, x2) 31.03/14.64 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 31.03/14.64 new_ltEs10(GT, GT) 31.03/14.64 new_ltEs10(LT, EQ) 31.03/14.64 new_ltEs24(x0, x1, ty_Integer) 31.03/14.64 new_esEs27(x0, x1, ty_Bool) 31.03/14.64 new_esEs8(x0, x1, ty_Float) 31.03/14.64 new_esEs24(EQ, GT) 31.03/14.64 new_esEs24(GT, EQ) 31.03/14.64 new_compare26(x0, x1, False, x2, x3) 31.03/14.64 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_esEs6(x0, x1, ty_Char) 31.03/14.64 new_primCmpNat0(Zero, Succ(x0)) 31.03/14.64 new_esEs35(x0, x1, ty_Bool) 31.03/14.64 new_esEs34(x0, x1, ty_@0) 31.03/14.64 new_lt21(x0, x1, ty_Int) 31.03/14.64 new_esEs4(x0, x1, ty_Int) 31.03/14.64 new_esEs20(Just(x0), Just(x1), app(ty_Maybe, x2)) 31.03/14.64 new_primCompAux00(x0, EQ) 31.03/14.64 new_esEs20(Just(x0), Just(x1), ty_Integer) 31.03/14.64 new_esEs39(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 31.03/14.64 new_esEs15(Left(x0), Left(x1), ty_Char, x2) 31.03/14.64 new_esEs12(:(x0, x1), :(x2, x3), x4) 31.03/14.64 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_ltEs6(Just(x0), Just(x1), ty_Int) 31.03/14.64 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 31.03/14.64 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 31.03/14.64 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_lt23(x0, x1, ty_Char) 31.03/14.64 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_ltEs19(x0, x1, ty_Int) 31.03/14.64 new_esEs7(x0, x1, ty_Char) 31.03/14.64 new_esEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 31.03/14.64 new_ltEs23(x0, x1, ty_Integer) 31.03/14.64 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 31.03/14.64 new_esEs32(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_esEs15(Left(x0), Left(x1), ty_Float, x2) 31.03/14.64 new_lt4(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_esEs8(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_ltEs6(Nothing, Just(x0), x1) 31.03/14.64 new_lt22(x0, x1, ty_@0) 31.03/14.64 new_esEs9(x0, x1, app(ty_[], x2)) 31.03/14.64 new_ltEs14(x0, x1) 31.03/14.64 new_esEs6(x0, x1, ty_Ordering) 31.03/14.64 new_esEs27(x0, x1, app(ty_[], x2)) 31.03/14.64 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 31.03/14.64 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_esEs19(False, True) 31.03/14.64 new_esEs19(True, False) 31.03/14.64 new_ltEs5(x0, x1, ty_Integer) 31.03/14.64 new_ltEs6(Just(x0), Just(x1), ty_Char) 31.03/14.64 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 31.03/14.64 new_primMulNat0(Succ(x0), Succ(x1)) 31.03/14.64 new_esEs38(x0, x1, ty_@0) 31.03/14.64 new_esEs8(x0, x1, ty_Int) 31.03/14.64 new_esEs6(x0, x1, ty_Int) 31.03/14.64 new_esEs5(x0, x1, ty_Double) 31.03/14.64 new_ltEs7(False, False) 31.03/14.64 new_ltEs8(Right(x0), Left(x1), x2, x3) 31.03/14.64 new_ltEs8(Left(x0), Right(x1), x2, x3) 31.03/14.64 new_lt21(x0, x1, ty_Float) 31.03/14.64 new_esEs9(x0, x1, ty_Ordering) 31.03/14.64 new_ltEs19(x0, x1, ty_Char) 31.03/14.64 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_lt23(x0, x1, ty_Int) 31.03/14.64 new_ltEs23(x0, x1, ty_Float) 31.03/14.64 new_esEs9(x0, x1, ty_Float) 31.03/14.64 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_lt21(x0, x1, ty_Ordering) 31.03/14.64 new_esEs40(x0, x1, ty_Double) 31.03/14.64 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_esEs7(x0, x1, ty_Int) 31.03/14.64 new_esEs5(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_compare30(Left(x0), Right(x1), x2, x3) 31.03/14.64 new_compare30(Right(x0), Left(x1), x2, x3) 31.03/14.64 new_esEs8(x0, x1, ty_Char) 31.03/14.64 new_ltEs21(x0, x1, ty_@0) 31.03/14.64 new_compare112(x0, x1, False, x2) 31.03/14.64 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_esEs28(x0, x1, ty_@0) 31.03/14.64 new_esEs38(x0, x1, ty_Integer) 31.03/14.64 new_primEqNat0(Succ(x0), Zero) 31.03/14.64 new_esEs40(x0, x1, ty_@0) 31.03/14.64 new_primCmpInt(Neg(Zero), Neg(Zero)) 31.03/14.64 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 31.03/14.64 new_ltEs5(x0, x1, ty_Ordering) 31.03/14.64 new_lt20(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_esEs9(x0, x1, ty_Char) 31.03/14.64 new_esEs20(Just(x0), Just(x1), ty_Float) 31.03/14.64 new_esEs11(x0, x1, app(ty_[], x2)) 31.03/14.64 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 31.03/14.64 new_esEs11(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs32(x0, x1, ty_Integer) 31.03/14.64 new_ltEs23(x0, x1, ty_Bool) 31.03/14.64 new_primCmpInt(Pos(Zero), Neg(Zero)) 31.03/14.64 new_primCmpInt(Neg(Zero), Pos(Zero)) 31.03/14.64 new_esEs20(Just(x0), Nothing, x1) 31.03/14.64 new_ltEs20(x0, x1, ty_Float) 31.03/14.64 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 31.03/14.64 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 31.03/14.64 new_esEs36(x0, x1, ty_Float) 31.03/14.64 new_esEs20(Just(x0), Just(x1), ty_Bool) 31.03/14.64 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_ltEs17(x0, x1, x2) 31.03/14.64 new_esEs32(x0, x1, ty_Int) 31.03/14.64 new_esEs6(x0, x1, ty_Bool) 31.03/14.64 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_esEs12(:(x0, x1), [], x2) 31.03/14.64 new_compare16(EQ, LT) 31.03/14.64 new_lt5(x0, x1, ty_Bool) 31.03/14.64 new_compare16(LT, EQ) 31.03/14.64 new_esEs11(x0, x1, ty_Bool) 31.03/14.64 new_esEs15(Right(x0), Right(x1), x2, ty_Int) 31.03/14.64 new_esEs18(Double(x0, x1), Double(x2, x3)) 31.03/14.64 new_esEs9(x0, x1, ty_Int) 31.03/14.64 new_compare19(x0, x1, True, x2, x3) 31.03/14.64 new_lt5(x0, x1, ty_Float) 31.03/14.64 new_lt23(x0, x1, ty_Integer) 31.03/14.64 new_esEs28(x0, x1, ty_Double) 31.03/14.64 new_lt21(x0, x1, ty_Char) 31.03/14.64 new_esEs11(x0, x1, ty_Float) 31.03/14.64 new_esEs32(x0, x1, ty_Char) 31.03/14.64 new_lt14(x0, x1) 31.03/14.64 new_ltEs23(x0, x1, ty_Int) 31.03/14.64 new_lt20(x0, x1, ty_Double) 31.03/14.64 new_lt22(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs40(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_primMulNat0(Succ(x0), Zero) 31.03/14.64 new_ltEs21(x0, x1, ty_Double) 31.03/14.64 new_esEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) 31.03/14.64 new_compare7(False, False) 31.03/14.64 new_compare27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_compare27(x0, x1, ty_Ordering) 31.03/14.64 new_esEs13(x0, x1, ty_Double) 31.03/14.64 new_ltEs6(Just(x0), Just(x1), ty_Integer) 31.03/14.64 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_lt5(x0, x1, ty_Char) 31.03/14.64 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_lt22(x0, x1, ty_Double) 31.03/14.64 new_ltEs6(Nothing, Nothing, x0) 31.03/14.64 new_lt4(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_esEs35(x0, x1, ty_Integer) 31.03/14.64 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 31.03/14.64 new_esEs4(x0, x1, ty_Integer) 31.03/14.64 new_lt20(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_ltEs23(x0, x1, ty_Char) 31.03/14.64 new_lt4(x0, x1, ty_Ordering) 31.03/14.64 new_esEs28(x0, x1, app(ty_[], x2)) 31.03/14.64 new_compare25(x0, x1, True, x2, x3) 31.03/14.64 new_ltEs15(x0, x1) 31.03/14.64 new_lt23(x0, x1, ty_Bool) 31.03/14.64 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 31.03/14.64 new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 31.03/14.64 new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 31.03/14.64 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 31.03/14.64 new_compare24(x0, x1, x2, x3, True, x4, x5) 31.03/14.64 new_ltEs22(x0, x1, ty_@0) 31.03/14.64 new_esEs15(Right(x0), Right(x1), x2, ty_Bool) 31.03/14.64 new_esEs39(x0, x1, ty_Integer) 31.03/14.64 new_esEs36(x0, x1, app(ty_[], x2)) 31.03/14.64 new_compare16(EQ, EQ) 31.03/14.64 new_esEs20(Nothing, Nothing, x0) 31.03/14.64 new_esEs32(x0, x1, ty_Bool) 31.03/14.64 new_lt21(x0, x1, ty_Bool) 31.03/14.64 new_esEs39(x0, x1, ty_Ordering) 31.03/14.64 new_lt5(x0, x1, ty_Int) 31.03/14.64 new_ltEs23(x0, x1, app(ty_[], x2)) 31.03/14.64 new_lt23(x0, x1, app(ty_[], x2)) 31.03/14.64 new_lt21(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs4(x0, x1, ty_Ordering) 31.03/14.64 new_esEs15(Right(x0), Right(x1), x2, ty_Char) 31.03/14.64 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 31.03/14.64 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 31.03/14.64 new_primCompAux00(x0, LT) 31.03/14.64 new_esEs36(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs13(x0, x1, ty_@0) 31.03/14.64 new_esEs20(Just(x0), Just(x1), ty_Int) 31.03/14.64 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 31.03/14.64 new_esEs37(x0, x1, app(ty_[], x2)) 31.03/14.64 new_compare15(x0, x1, x2, x3, True, x4, x5) 31.03/14.64 new_lt20(x0, x1, ty_@0) 31.03/14.64 new_esEs11(x0, x1, ty_Int) 31.03/14.64 new_esEs9(x0, x1, ty_Bool) 31.03/14.64 new_ltEs6(Just(x0), Nothing, x1) 31.03/14.64 new_esEs24(LT, GT) 31.03/14.64 new_esEs24(GT, LT) 31.03/14.64 new_esEs9(x0, x1, ty_@0) 31.03/14.64 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 31.03/14.64 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 31.03/14.64 new_esEs27(x0, x1, ty_Float) 31.03/14.64 new_compare14(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 31.03/14.64 new_esEs20(Just(x0), Just(x1), ty_Char) 31.03/14.64 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_compare27(x0, x1, ty_Int) 31.03/14.64 new_compare28(Nothing, Just(x0), x1) 31.03/14.64 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 31.03/14.64 new_esEs37(x0, x1, ty_Double) 31.03/14.64 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_ltEs20(x0, x1, app(ty_[], x2)) 31.03/14.64 new_esEs32(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs21(Float(x0, x1), Float(x2, x3)) 31.03/14.64 new_lt5(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_compare27(x0, x1, app(ty_[], x2)) 31.03/14.64 new_esEs38(x0, x1, ty_Ordering) 31.03/14.64 new_primMulNat0(Zero, Zero) 31.03/14.64 new_compare30(Right(x0), Right(x1), x2, x3) 31.03/14.64 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_esEs24(LT, LT) 31.03/14.64 new_sr0(Integer(x0), Integer(x1)) 31.03/14.64 new_esEs6(x0, x1, ty_Integer) 31.03/14.64 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_compare24(x0, x1, x2, x3, False, x4, x5) 31.03/14.64 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 31.03/14.64 new_esEs5(x0, x1, ty_Bool) 31.03/14.64 new_esEs38(x0, x1, ty_Int) 31.03/14.64 new_compare111(x0, x1, x2, x3, True, x4, x5, x6) 31.03/14.64 new_ltEs20(x0, x1, ty_Char) 31.03/14.64 new_esEs38(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs15(Right(x0), Right(x1), x2, ty_Ordering) 31.03/14.64 new_lt23(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs26(x0, x1) 31.03/14.64 new_compare18(x0, x1, False, x2, x3) 31.03/14.64 new_lt4(x0, x1, ty_Integer) 31.03/14.64 new_compare27(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_ltEs24(x0, x1, ty_Float) 31.03/14.64 new_ltEs10(EQ, EQ) 31.03/14.64 new_lt22(x0, x1, ty_Float) 31.03/14.64 new_lt21(x0, x1, ty_@0) 31.03/14.64 new_lt23(x0, x1, ty_Double) 31.03/14.64 new_esEs7(x0, x1, ty_Float) 31.03/14.64 new_esEs9(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_esEs5(x0, x1, ty_@0) 31.03/14.64 new_esEs7(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs6(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_esEs37(x0, x1, ty_Ordering) 31.03/14.64 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_esEs20(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 31.03/14.64 new_lt21(x0, x1, ty_Integer) 31.03/14.64 new_esEs28(x0, x1, ty_Float) 31.03/14.64 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_primEqNat0(Succ(x0), Succ(x1)) 31.03/14.64 new_esEs33(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_compare7(True, False) 31.03/14.64 new_compare7(False, True) 31.03/14.64 new_esEs29(LT) 31.03/14.64 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_esEs7(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_ltEs20(x0, x1, ty_Int) 31.03/14.64 new_esEs20(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 31.03/14.64 new_compare5([], [], x0) 31.03/14.64 new_lt23(x0, x1, ty_Ordering) 31.03/14.64 new_esEs9(x0, x1, ty_Integer) 31.03/14.64 new_ltEs24(x0, x1, app(ty_[], x2)) 31.03/14.64 new_lt5(x0, x1, app(ty_[], x2)) 31.03/14.64 new_esEs32(x0, x1, ty_Float) 31.03/14.64 new_esEs33(x0, x1, ty_Float) 31.03/14.64 new_compare26(x0, x1, True, x2, x3) 31.03/14.64 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_compare28(Just(x0), Nothing, x1) 31.03/14.64 new_esEs8(x0, x1, app(ty_[], x2)) 31.03/14.64 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 31.03/14.64 new_primPlusNat0(Zero, Zero) 31.03/14.64 new_ltEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 31.03/14.64 new_compare16(GT, LT) 31.03/14.64 new_compare16(LT, GT) 31.03/14.64 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_ltEs20(x0, x1, ty_Ordering) 31.03/14.64 new_esEs11(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_compare211(x0, x1, True, x2) 31.03/14.64 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_not(True) 31.03/14.64 new_esEs6(x0, x1, ty_@0) 31.03/14.64 new_esEs34(x0, x1, ty_Integer) 31.03/14.64 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 31.03/14.64 new_ltEs5(x0, x1, ty_Bool) 31.03/14.64 new_ltEs10(GT, LT) 31.03/14.64 new_lt10(x0, x1) 31.03/14.64 new_ltEs10(LT, GT) 31.03/14.64 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 31.03/14.64 new_compare211(x0, x1, False, x2) 31.03/14.64 new_lt4(x0, x1, ty_@0) 31.03/14.64 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 31.03/14.64 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 31.03/14.64 new_esEs10(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs40(x0, x1, ty_Bool) 31.03/14.64 new_ltEs21(x0, x1, ty_Float) 31.03/14.64 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 31.03/14.64 new_ltEs5(x0, x1, ty_@0) 31.03/14.64 new_lt4(x0, x1, ty_Float) 31.03/14.64 new_esEs7(x0, x1, ty_Integer) 31.03/14.64 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 31.03/14.64 new_esEs36(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_lt4(x0, x1, ty_Bool) 31.03/14.64 new_esEs27(x0, x1, ty_Integer) 31.03/14.64 new_lt5(x0, x1, ty_Integer) 31.03/14.64 new_compare27(x0, x1, ty_@0) 31.03/14.64 new_compare27(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs28(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_esEs35(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_ltEs20(x0, x1, ty_Double) 31.03/14.64 new_compare27(x0, x1, ty_Bool) 31.03/14.64 new_esEs40(x0, x1, app(ty_[], x2)) 31.03/14.64 new_esEs6(x0, x1, ty_Float) 31.03/14.64 new_esEs27(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 31.03/14.64 new_asAs(True, x0) 31.03/14.64 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 31.03/14.64 new_esEs38(x0, x1, ty_Char) 31.03/14.64 new_compare27(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_lt5(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_esEs5(x0, x1, ty_Integer) 31.03/14.64 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 31.03/14.64 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 31.03/14.64 new_esEs38(x0, x1, app(ty_[], x2)) 31.03/14.64 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_esEs15(Left(x0), Left(x1), ty_Double, x2) 31.03/14.64 new_lt20(x0, x1, ty_Integer) 31.03/14.64 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_esEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 31.03/14.64 new_esEs7(x0, x1, ty_Bool) 31.03/14.64 new_ltEs5(x0, x1, ty_Int) 31.03/14.64 new_esEs10(x0, x1, ty_Double) 31.03/14.64 new_esEs38(x0, x1, ty_Double) 31.03/14.64 new_lt16(x0, x1) 31.03/14.64 new_ltEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 31.03/14.64 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 31.03/14.64 new_esEs20(Just(x0), Just(x1), ty_Ordering) 31.03/14.64 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_ltEs5(x0, x1, ty_Char) 31.03/14.64 new_compare27(x0, x1, ty_Char) 31.03/14.64 new_ltEs20(x0, x1, ty_Bool) 31.03/14.64 new_esEs40(x0, x1, ty_Integer) 31.03/14.64 new_esEs35(x0, x1, ty_Float) 31.03/14.64 new_esEs38(x0, x1, ty_Bool) 31.03/14.64 new_primCmpNat0(Succ(x0), Zero) 31.03/14.64 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 31.03/14.64 new_compare27(x0, x1, ty_Double) 31.03/14.64 new_lt4(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_esEs11(x0, x1, ty_Ordering) 31.03/14.64 new_esEs19(True, True) 31.03/14.64 new_ltEs22(x0, x1, ty_Integer) 31.03/14.64 new_ltEs5(x0, x1, ty_Double) 31.03/14.64 new_primCmpInt(Pos(Zero), Pos(Zero)) 31.03/14.64 new_esEs29(EQ) 31.03/14.64 new_lt23(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_esEs8(x0, x1, ty_Double) 31.03/14.64 new_fsEs(x0) 31.03/14.64 new_esEs39(x0, x1, ty_Double) 31.03/14.64 new_lt13(x0, x1, x2, x3) 31.03/14.64 new_esEs32(x0, x1, ty_@0) 31.03/14.64 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_esEs32(x0, x1, app(ty_[], x2)) 31.03/14.64 new_esEs40(x0, x1, ty_Char) 31.03/14.64 new_esEs14(@0, @0) 31.03/14.64 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 31.03/14.64 new_esEs37(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_ltEs19(x0, x1, ty_Double) 31.03/14.64 new_esEs36(x0, x1, ty_Integer) 31.03/14.64 new_ltEs20(x0, x1, ty_Integer) 31.03/14.64 new_esEs9(x0, x1, ty_Double) 31.03/14.64 new_esEs31(x0, x1, ty_Integer) 31.03/14.64 new_ltEs19(x0, x1, ty_Ordering) 31.03/14.64 new_esEs28(x0, x1, ty_Integer) 31.03/14.64 new_esEs39(x0, x1, ty_Float) 31.03/14.64 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 31.03/14.64 new_ltEs21(x0, x1, ty_Integer) 31.03/14.64 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 31.03/14.64 new_esEs8(x0, x1, ty_Ordering) 31.03/14.64 new_esEs5(x0, x1, ty_Float) 31.03/14.64 new_esEs40(x0, x1, ty_Int) 31.03/14.64 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_lt20(x0, x1, ty_Char) 31.03/14.64 new_lt21(x0, x1, ty_Double) 31.03/14.64 new_esEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 31.03/14.64 new_compare18(x0, x1, True, x2, x3) 31.03/14.64 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_compare13(Char(x0), Char(x1)) 31.03/14.64 new_esEs15(Right(x0), Right(x1), x2, ty_@0) 31.03/14.64 new_esEs4(x0, x1, ty_Double) 31.03/14.64 new_esEs20(Just(x0), Just(x1), app(ty_Ratio, x2)) 31.03/14.64 new_esEs35(x0, x1, ty_@0) 31.03/14.64 new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 31.03/14.64 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 31.03/14.64 new_esEs10(x0, x1, ty_Float) 31.03/14.64 new_ltEs13(x0, x1) 31.03/14.64 new_esEs35(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_ltEs22(x0, x1, ty_Bool) 31.03/14.64 new_esEs33(x0, x1, ty_@0) 31.03/14.64 new_esEs34(x0, x1, ty_Bool) 31.03/14.64 new_lt23(x0, x1, ty_@0) 31.03/14.64 new_primEqNat0(Zero, Succ(x0)) 31.03/14.64 new_ltEs9(x0, x1) 31.03/14.64 new_esEs7(x0, x1, ty_@0) 31.03/14.64 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 31.03/14.64 new_esEs5(x0, x1, ty_Char) 31.03/14.64 new_esEs39(x0, x1, app(ty_[], x2)) 31.03/14.64 new_compare5(:(x0, x1), [], x2) 31.03/14.64 new_compare111(x0, x1, x2, x3, False, x4, x5, x6) 31.03/14.64 new_esEs33(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_ltEs6(Just(x0), Just(x1), ty_Double) 31.03/14.64 new_esEs8(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_esEs25(Char(x0), Char(x1)) 31.03/14.64 new_esEs33(x0, x1, ty_Integer) 31.03/14.64 new_esEs34(x0, x1, ty_Char) 31.03/14.64 new_esEs6(x0, x1, app(ty_[], x2)) 31.03/14.64 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_esEs33(x0, x1, app(ty_[], x2)) 31.03/14.64 new_esEs5(x0, x1, ty_Int) 31.03/14.64 new_esEs15(Left(x0), Left(x1), ty_Ordering, x2) 31.03/14.64 new_esEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 31.03/14.64 new_compare15(x0, x1, x2, x3, False, x4, x5) 31.03/14.64 new_esEs7(x0, x1, app(ty_[], x2)) 31.03/14.64 new_esEs27(x0, x1, ty_@0) 31.03/14.64 new_esEs37(x0, x1, ty_Integer) 31.03/14.64 new_compare25(x0, x1, False, x2, x3) 31.03/14.64 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 31.03/14.64 new_lt22(x0, x1, ty_Integer) 31.03/14.64 new_esEs34(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_ltEs20(x0, x1, ty_@0) 31.03/14.64 new_esEs10(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_ltEs22(x0, x1, ty_Int) 31.03/14.64 new_esEs11(x0, x1, ty_@0) 31.03/14.64 new_lt20(x0, x1, ty_Bool) 31.03/14.64 new_primEqNat0(Zero, Zero) 31.03/14.64 new_lt20(x0, x1, ty_Float) 31.03/14.64 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_lt18(x0, x1, x2) 31.03/14.64 new_esEs20(Just(x0), Just(x1), ty_@0) 31.03/14.64 new_esEs37(x0, x1, ty_Char) 31.03/14.64 new_esEs20(Just(x0), Just(x1), ty_Double) 31.03/14.64 new_esEs13(x0, x1, ty_Int) 31.03/14.64 new_ltEs18(x0, x1) 31.03/14.64 new_not(False) 31.03/14.64 new_lt11(x0, x1) 31.03/14.64 new_primCompAux00(x0, GT) 31.03/14.64 new_esEs15(Left(x0), Left(x1), app(ty_[], x2), x3) 31.03/14.64 new_esEs6(x0, x1, ty_Double) 31.03/14.64 new_esEs11(x0, x1, ty_Double) 31.03/14.64 new_esEs40(x0, x1, ty_Float) 31.03/14.64 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_ltEs7(True, True) 31.03/14.64 new_ltEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 31.03/14.64 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_esEs24(GT, GT) 31.03/14.64 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_lt22(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_ltEs22(x0, x1, ty_Char) 31.03/14.64 new_primPlusNat0(Zero, Succ(x0)) 31.03/14.64 new_esEs37(x0, x1, ty_Int) 31.03/14.64 new_esEs30(x0, x1, ty_Integer) 31.03/14.64 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_ltEs23(x0, x1, ty_@0) 31.03/14.64 new_esEs24(LT, EQ) 31.03/14.64 new_esEs24(EQ, LT) 31.03/14.64 new_esEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 31.03/14.64 new_compare27(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_esEs36(x0, x1, ty_@0) 31.03/14.64 new_esEs34(x0, x1, ty_Int) 31.03/14.64 new_compare19(x0, x1, False, x2, x3) 31.03/14.64 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 31.03/14.64 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_lt5(x0, x1, ty_@0) 31.03/14.64 new_esEs28(x0, x1, ty_Bool) 31.03/14.64 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_compare112(x0, x1, True, x2) 31.03/14.64 new_ltEs22(x0, x1, ty_Float) 31.03/14.64 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_lt4(x0, x1, app(ty_[], x2)) 31.03/14.64 new_pePe(False, x0) 31.03/14.64 new_lt22(x0, x1, ty_Bool) 31.03/14.64 new_esEs28(x0, x1, app(ty_Ratio, x2)) 31.03/14.64 new_esEs13(x0, x1, ty_Char) 31.03/14.64 new_esEs13(x0, x1, ty_Float) 31.03/14.64 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 31.03/14.64 new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 31.03/14.64 new_lt20(x0, x1, ty_Int) 31.03/14.64 new_lt5(x0, x1, ty_Double) 31.03/14.64 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 31.03/14.64 new_lt22(x0, x1, ty_Char) 31.03/14.64 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.64 new_esEs20(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_compare16(EQ, GT) 31.03/14.64 new_esEs12([], [], x0) 31.03/14.64 new_compare16(GT, EQ) 31.03/14.64 new_esEs37(x0, x1, ty_Bool) 31.03/14.64 new_ltEs21(x0, x1, ty_Bool) 31.03/14.64 new_ltEs22(x0, x1, app(ty_[], x2)) 31.03/14.64 new_esEs15(Right(x0), Right(x1), x2, ty_Double) 31.03/14.64 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.64 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.64 new_compare12(@2(x0, x1), @2(x2, x3), x4, x5) 31.03/14.64 new_ltEs23(x0, x1, ty_Double) 31.03/14.64 new_esEs34(x0, x1, ty_Float) 31.03/14.64 new_primCmpNat0(Zero, Zero) 31.03/14.64 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 31.03/14.64 new_lt21(x0, x1, app(ty_[], x2)) 31.03/14.64 31.03/14.64 We have to consider all minimal (P,Q,R)-chains. 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (36) QDPSizeChangeProof (EQUIVALENT) 31.03/14.64 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.03/14.64 31.03/14.64 From the DPs we obtained the following set of size-change graphs: 31.03/14.64 *new_compare0(:(xwv40, xwv41), :(xwv300, xwv301), cef) -> new_primCompAux(xwv40, xwv300, new_compare5(xwv41, xwv301, cef), cef) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare0(:(xwv40, xwv41), :(xwv300, xwv301), cef) -> new_compare0(xwv41, xwv301, cef) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_lt(xwv18, xwv13, h) -> new_compare(xwv18, xwv13, h) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare4(@2(xwv40, xwv41), @2(xwv300, xwv301), cbh, cca) -> new_compare23(xwv40, xwv41, xwv300, xwv301, new_asAs(new_esEs10(xwv40, xwv300, cbh), new_esEs11(xwv41, xwv301, cca)), cbh, cca) 31.03/14.64 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare(Just(xwv40), Just(xwv300), ba) -> new_compare2(xwv40, xwv300, new_esEs4(xwv40, xwv300, ba), ba) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, cd, app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs0(xwv612, xwv622, fb, fc, fd) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs3(xwv61, xwv62, bdc) -> new_compare0(xwv61, xwv62, bdc) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare3(Left(xwv40), Left(xwv300), cab, cac) -> new_compare21(xwv40, xwv300, new_esEs8(xwv40, xwv300, cab), cab, cac) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare3(Right(xwv40), Right(xwv300), cab, cac) -> new_compare22(xwv40, xwv300, new_esEs9(xwv40, xwv300, cac), cab, cac) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_lt3(xwv18, xwv13, cfh) -> new_compare0(xwv18, xwv13, cfh) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_lt0(xwv18, xwv13, bdd, bde, bdf) -> new_compare1(xwv18, xwv13, bdd, bde, bdf) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_lt2(xwv18, xwv13, cbf, cbg) -> new_compare4(xwv18, xwv13, cbf, cbg) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare1(@3(xwv40, xwv41, xwv42), @3(xwv300, xwv301, xwv302), bdg, bdh, bea) -> new_compare20(xwv40, xwv41, xwv42, xwv300, xwv301, xwv302, new_asAs(new_esEs5(xwv40, xwv300, bdg), new_asAs(new_esEs6(xwv41, xwv301, bdh), new_esEs7(xwv42, xwv302, bea))), bdg, bdh, bea) 31.03/14.64 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare21(xwv83, xwv84, False, app(app(app(ty_@3, caf), cag), cah), cae) -> new_ltEs0(xwv83, xwv84, caf, cag, cah) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, cd, app(app(ty_@2, fh), ga)) -> new_ltEs2(xwv612, xwv622, fh, ga) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare21(xwv83, xwv84, False, app(app(ty_@2, cbc), cbd), cae) -> new_ltEs2(xwv83, xwv84, cbc, cbd) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_lt1(xwv18, xwv13, bhh, caa) -> new_compare3(xwv18, xwv13, bhh, caa) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_primCompAux(xwv40, xwv300, xwv56, app(app(ty_Either, cfc), cfd)) -> new_compare3(xwv40, xwv300, cfc, cfd) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs(Just(xwv610), Just(xwv620), app(app(app(ty_@3, bc), bd), be)) -> new_ltEs0(xwv610, xwv620, bc, bd, be) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs(Just(xwv610), Just(xwv620), app(app(ty_@2, bh), ca)) -> new_ltEs2(xwv610, xwv620, bh, ca) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), bca, app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs0(xwv611, xwv621, bcc, bcd, bce) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), bca, app(app(ty_@2, bch), bda)) -> new_ltEs2(xwv611, xwv621, bch, bda) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, cd, app(app(ty_Either, ff), fg)) -> new_ltEs1(xwv612, xwv622, ff, fg) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare21(xwv83, xwv84, False, app(app(ty_Either, cba), cbb), cae) -> new_ltEs1(xwv83, xwv84, cba, cbb) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs(Just(xwv610), Just(xwv620), app(app(ty_Either, bf), bg)) -> new_ltEs1(xwv610, xwv620, bf, bg) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), bca, app(app(ty_Either, bcf), bcg)) -> new_ltEs1(xwv611, xwv621, bcf, bcg) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_primCompAux(xwv40, xwv300, xwv56, app(ty_Maybe, ceg)) -> new_compare(xwv40, xwv300, ceg) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare23(xwv119, xwv120, xwv121, xwv122, False, ccb, app(app(app(ty_@3, ccd), cce), ccf)) -> new_ltEs0(xwv120, xwv122, ccd, cce, ccf) 31.03/14.64 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare23(xwv119, xwv120, xwv121, xwv122, False, ccb, app(app(ty_@2, cda), cdb)) -> new_ltEs2(xwv120, xwv122, cda, cdb) 31.03/14.64 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare23(xwv119, xwv120, xwv121, xwv122, False, ccb, app(app(ty_Either, ccg), cch)) -> new_ltEs1(xwv120, xwv122, ccg, cch) 31.03/14.64 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_primCompAux(xwv40, xwv300, xwv56, app(app(ty_@2, cfe), cff)) -> new_compare4(xwv40, xwv300, cfe, cff) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, cd, app(ty_Maybe, fa)) -> new_ltEs(xwv612, xwv622, fa) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare21(xwv83, xwv84, False, app(ty_Maybe, cad), cae) -> new_ltEs(xwv83, xwv84, cad) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare21(xwv83, xwv84, False, app(ty_[], cbe), cae) -> new_ltEs3(xwv83, xwv84, cbe) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs(Just(xwv610), Just(xwv620), app(ty_Maybe, bb)) -> new_ltEs(xwv610, xwv620, bb) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs(Just(xwv610), Just(xwv620), app(ty_[], cb)) -> new_ltEs3(xwv610, xwv620, cb) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), bca, app(ty_Maybe, bcb)) -> new_ltEs(xwv611, xwv621, bcb) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare23(xwv119, xwv120, xwv121, xwv122, False, ccb, app(ty_Maybe, ccc)) -> new_ltEs(xwv120, xwv122, ccc) 31.03/14.64 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, cd, app(ty_[], gb)) -> new_ltEs3(xwv612, xwv622, gb) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), bca, app(ty_[], bdb)) -> new_ltEs3(xwv611, xwv621, bdb) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare23(xwv119, xwv120, xwv121, xwv122, False, ccb, app(ty_[], cdc)) -> new_ltEs3(xwv120, xwv122, cdc) 31.03/14.64 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(xwv61, xwv62, False, app(ty_[], bdc)) -> new_compare0(xwv61, xwv62, bdc) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_primCompAux(xwv40, xwv300, xwv56, app(ty_[], cfg)) -> new_compare0(xwv40, xwv300, cfg) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(ty_@2, bbf), bbg), bah) -> new_lt2(xwv610, xwv620, bbf, bbg) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare23(xwv119, xwv120, xwv121, xwv122, False, app(app(ty_@2, cec), ced), cde) -> new_lt2(xwv119, xwv121, cec, ced) 31.03/14.64 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, bfe, app(app(app(ty_@3, bfg), bfh), bga)) -> new_ltEs0(xwv74, xwv77, bfg, bfh, bga) 31.03/14.64 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare22(xwv90, xwv91, False, cga, app(app(app(ty_@3, cgc), cgd), cge)) -> new_ltEs0(xwv90, xwv91, cgc, cgd, cge) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, bfe, app(app(ty_@2, bgd), bge)) -> new_ltEs2(xwv74, xwv77, bgd, bge) 31.03/14.64 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare22(xwv90, xwv91, False, cga, app(app(ty_@2, cgh), cha)) -> new_ltEs2(xwv90, xwv91, cgh, cha) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, bfe, app(app(ty_Either, bgb), bgc)) -> new_ltEs1(xwv74, xwv77, bgb, bgc) 31.03/14.64 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare22(xwv90, xwv91, False, cga, app(app(ty_Either, cgf), cgg)) -> new_ltEs1(xwv90, xwv91, cgf, cgg) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, bfe, app(ty_Maybe, bff)) -> new_ltEs(xwv74, xwv77, bff) 31.03/14.64 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare22(xwv90, xwv91, False, cga, app(ty_Maybe, cgb)) -> new_ltEs(xwv90, xwv91, cgb) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, bfe, app(ty_[], bgf)) -> new_ltEs3(xwv74, xwv77, bgf) 31.03/14.64 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare22(xwv90, xwv91, False, cga, app(ty_[], chb)) -> new_ltEs3(xwv90, xwv91, chb) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_primCompAux(xwv40, xwv300, xwv56, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_compare1(xwv40, xwv300, ceh, cfa, cfb) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(ty_Either, bbd), bbe), bah) -> new_lt1(xwv610, xwv620, bbd, bbe) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare23(xwv119, xwv120, xwv121, xwv122, False, app(app(ty_Either, cea), ceb), cde) -> new_lt1(xwv119, xwv121, cea, ceb) 31.03/14.64 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(app(ty_@3, bba), bbb), bbc), bah) -> new_lt0(xwv610, xwv620, bba, bbb, bbc) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare23(xwv119, xwv120, xwv121, xwv122, False, app(app(app(ty_@3, cdf), cdg), cdh), cde) -> new_lt0(xwv119, xwv121, cdf, cdg, cdh) 31.03/14.64 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(ty_[], bbh), bah) -> new_lt3(xwv610, xwv620, bbh) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(ty_Maybe, bag), bah) -> new_lt(xwv610, xwv620, bag) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare23(xwv119, xwv120, xwv121, xwv122, False, app(ty_[], cee), cde) -> new_lt3(xwv119, xwv121, cee) 31.03/14.64 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare23(xwv119, xwv120, xwv121, xwv122, False, app(ty_Maybe, cdd), cde) -> new_lt(xwv119, xwv121, cdd) 31.03/14.64 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(ty_@2, dd), de), cd, ce) -> new_lt2(xwv610, xwv620, dd, de) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, app(app(ty_@2, ef), eg), ce) -> new_lt2(xwv611, xwv621, ef, eg) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, app(app(ty_Either, ed), ee), ce) -> new_lt1(xwv611, xwv621, ed, ee) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(ty_Either, db), dc), cd, ce) -> new_lt1(xwv610, xwv620, db, dc) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(app(ty_@3, cf), cg), da), cd, ce) -> new_lt0(xwv610, xwv620, cf, cg, da) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, app(app(app(ty_@3, ea), eb), ec), ce) -> new_lt0(xwv611, xwv621, ea, eb, ec) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(ty_[], df), cd, ce) -> new_lt3(xwv610, xwv620, df) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, app(ty_[], eh), ce) -> new_lt3(xwv611, xwv621, eh) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(ty_Maybe, cc), cd, ce) -> new_lt(xwv610, xwv620, cc) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs0(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), dg, app(ty_Maybe, dh), ce) -> new_lt(xwv611, xwv621, dh) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs1(Left(xwv610), Left(xwv620), app(app(app(ty_@3, ge), gf), gg), gd) -> new_ltEs0(xwv610, xwv620, ge, gf, gg) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs1(Right(xwv610), Right(xwv620), he, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs0(xwv610, xwv620, hg, hh, baa) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(app(ty_@3, ge), gf), gg)), gd)) -> new_ltEs0(xwv610, xwv620, ge, gf, gg) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(Right(xwv610), Right(xwv620), False, app(app(ty_Either, he), app(app(app(ty_@3, hg), hh), baa))) -> new_ltEs0(xwv610, xwv620, hg, hh, baa) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, bca), app(app(app(ty_@3, bcc), bcd), bce))) -> new_ltEs0(xwv611, xwv621, bcc, bcd, bce) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(app(ty_@3, bc), bd), be))) -> new_ltEs0(xwv610, xwv620, bc, bd, be) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), cd), app(app(app(ty_@3, fb), fc), fd))) -> new_ltEs0(xwv612, xwv622, fb, fc, fd) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs1(Right(xwv610), Right(xwv620), he, app(app(ty_@2, bad), bae)) -> new_ltEs2(xwv610, xwv620, bad, bae) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs1(Left(xwv610), Left(xwv620), app(app(ty_@2, hb), hc), gd) -> new_ltEs2(xwv610, xwv620, hb, hc) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(Right(xwv610), Right(xwv620), False, app(app(ty_Either, he), app(app(ty_@2, bad), bae))) -> new_ltEs2(xwv610, xwv620, bad, bae) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(ty_@2, hb), hc)), gd)) -> new_ltEs2(xwv610, xwv620, hb, hc) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, bca), app(app(ty_@2, bch), bda))) -> new_ltEs2(xwv611, xwv621, bch, bda) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), cd), app(app(ty_@2, fh), ga))) -> new_ltEs2(xwv612, xwv622, fh, ga) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(ty_@2, bh), ca))) -> new_ltEs2(xwv610, xwv620, bh, ca) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs1(Right(xwv610), Right(xwv620), he, app(app(ty_Either, bab), bac)) -> new_ltEs1(xwv610, xwv620, bab, bac) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs1(Left(xwv610), Left(xwv620), app(app(ty_Either, gh), ha), gd) -> new_ltEs1(xwv610, xwv620, gh, ha) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(ty_Either, bf), bg))) -> new_ltEs1(xwv610, xwv620, bf, bg) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), cd), app(app(ty_Either, ff), fg))) -> new_ltEs1(xwv612, xwv622, ff, fg) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(Right(xwv610), Right(xwv620), False, app(app(ty_Either, he), app(app(ty_Either, bab), bac))) -> new_ltEs1(xwv610, xwv620, bab, bac) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(ty_Either, gh), ha)), gd)) -> new_ltEs1(xwv610, xwv620, gh, ha) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, bca), app(app(ty_Either, bcf), bcg))) -> new_ltEs1(xwv611, xwv621, bcf, bcg) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs1(Right(xwv610), Right(xwv620), he, app(ty_Maybe, hf)) -> new_ltEs(xwv610, xwv620, hf) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs1(Left(xwv610), Left(xwv620), app(ty_Maybe, gc), gd) -> new_ltEs(xwv610, xwv620, gc) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs1(Right(xwv610), Right(xwv620), he, app(ty_[], baf)) -> new_ltEs3(xwv610, xwv620, baf) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_ltEs1(Left(xwv610), Left(xwv620), app(ty_[], hd), gd) -> new_ltEs3(xwv610, xwv620, hd) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(ty_Maybe, gc)), gd)) -> new_ltEs(xwv610, xwv620, gc) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(Right(xwv610), Right(xwv620), False, app(app(ty_Either, he), app(ty_Maybe, hf))) -> new_ltEs(xwv610, xwv620, hf) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, bca), app(ty_Maybe, bcb))) -> new_ltEs(xwv611, xwv621, bcb) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), cd), app(ty_Maybe, fa))) -> new_ltEs(xwv612, xwv622, fa) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(ty_Maybe, bb))) -> new_ltEs(xwv610, xwv620, bb) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), cd), app(ty_[], gb))) -> new_ltEs3(xwv612, xwv622, gb) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, bca), app(ty_[], bdb))) -> new_ltEs3(xwv611, xwv621, bdb) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(Right(xwv610), Right(xwv620), False, app(app(ty_Either, he), app(ty_[], baf))) -> new_ltEs3(xwv610, xwv620, baf) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(ty_[], hd)), gd)) -> new_ltEs3(xwv610, xwv620, hd) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(ty_[], cb))) -> new_ltEs3(xwv610, xwv620, cb) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(ty_@2, dd), de)), cd), ce)) -> new_lt2(xwv610, xwv620, dd, de) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), app(app(ty_@2, ef), eg)), ce)) -> new_lt2(xwv611, xwv621, ef, eg) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(ty_@2, bbf), bbg)), bah)) -> new_lt2(xwv610, xwv620, bbf, bbg) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), app(app(ty_Either, ed), ee)), ce)) -> new_lt1(xwv611, xwv621, ed, ee) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(ty_Either, db), dc)), cd), ce)) -> new_lt1(xwv610, xwv620, db, dc) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(ty_Either, bbd), bbe)), bah)) -> new_lt1(xwv610, xwv620, bbd, bbe) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(app(ty_@3, cf), cg), da)), cd), ce)) -> new_lt0(xwv610, xwv620, cf, cg, da) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(app(ty_@3, bba), bbb), bbc)), bah)) -> new_lt0(xwv610, xwv620, bba, bbb, bbc) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), app(app(app(ty_@3, ea), eb), ec)), ce)) -> new_lt0(xwv611, xwv621, ea, eb, ec) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(ty_[], df)), cd), ce)) -> new_lt3(xwv610, xwv620, df) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(ty_[], bbh)), bah)) -> new_lt3(xwv610, xwv620, bbh) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), app(ty_[], eh)), ce)) -> new_lt3(xwv611, xwv621, eh) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, dg), app(ty_Maybe, dh)), ce)) -> new_lt(xwv611, xwv621, dh) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(ty_Maybe, bag)), bah)) -> new_lt(xwv610, xwv620, bag) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare2(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(ty_Maybe, cc)), cd), ce)) -> new_lt(xwv610, xwv620, cc) 31.03/14.64 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, app(app(ty_@2, bfb), bfc), bed) -> new_lt2(xwv73, xwv76, bfb, bfc) 31.03/14.64 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, app(app(ty_@2, bhe), bhf), bfe, bed) -> new_lt2(xwv72, xwv75, bhe, bhf) 31.03/14.64 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, app(app(ty_Either, bhc), bhd), bfe, bed) -> new_lt1(xwv72, xwv75, bhc, bhd) 31.03/14.64 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, app(app(ty_Either, beh), bfa), bed) -> new_lt1(xwv73, xwv76, beh, bfa) 31.03/14.64 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, app(app(app(ty_@3, bgh), bha), bhb), bfe, bed) -> new_lt0(xwv72, xwv75, bgh, bha, bhb) 31.03/14.64 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, app(app(app(ty_@3, bee), bef), beg), bed) -> new_lt0(xwv73, xwv76, bee, bef, beg) 31.03/14.64 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, app(ty_[], bhg), bfe, bed) -> new_lt3(xwv72, xwv75, bhg) 31.03/14.64 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, app(ty_[], bfd), bed) -> new_lt3(xwv73, xwv76, bfd) 31.03/14.64 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, app(ty_Maybe, bgg), bfe, bed) -> new_lt(xwv72, xwv75, bgg) 31.03/14.64 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 31.03/14.64 31.03/14.64 31.03/14.64 *new_compare20(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, beb, app(ty_Maybe, bec), bed) -> new_lt(xwv73, xwv76, bec) 31.03/14.64 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 31.03/14.64 31.03/14.64 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (37) 31.03/14.64 YES 31.03/14.64 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (38) 31.03/14.64 Obligation: 31.03/14.64 Q DP problem: 31.03/14.64 The TRS P consists of the following rules: 31.03/14.64 31.03/14.64 new_deleteMin(xwv520, xwv521, xwv522, Branch(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234), xwv524, h, ba) -> new_deleteMin(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234, h, ba) 31.03/14.64 31.03/14.64 R is empty. 31.03/14.64 Q is empty. 31.03/14.64 We have to consider all minimal (P,Q,R)-chains. 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (39) QDPSizeChangeProof (EQUIVALENT) 31.03/14.64 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.03/14.64 31.03/14.64 From the DPs we obtained the following set of size-change graphs: 31.03/14.64 *new_deleteMin(xwv520, xwv521, xwv522, Branch(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234), xwv524, h, ba) -> new_deleteMin(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234, h, ba) 31.03/14.64 The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 6 >= 6, 7 >= 7 31.03/14.64 31.03/14.64 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (40) 31.03/14.64 YES 31.03/14.64 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (41) 31.03/14.64 Obligation: 31.03/14.64 Q DP problem: 31.03/14.64 The TRS P consists of the following rules: 31.03/14.64 31.03/14.64 new_glueBal2Mid_elt20(xwv257, xwv258, xwv259, xwv260, xwv261, xwv262, xwv263, xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, Branch(xwv2700, xwv2701, xwv2702, xwv2703, xwv2704), xwv271, h, ba) -> new_glueBal2Mid_elt20(xwv257, xwv258, xwv259, xwv260, xwv261, xwv262, xwv263, xwv264, xwv265, xwv266, xwv2700, xwv2701, xwv2702, xwv2703, xwv2704, h, ba) 31.03/14.64 31.03/14.64 R is empty. 31.03/14.64 Q is empty. 31.03/14.64 We have to consider all minimal (P,Q,R)-chains. 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (42) QDPSizeChangeProof (EQUIVALENT) 31.03/14.64 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.03/14.64 31.03/14.64 From the DPs we obtained the following set of size-change graphs: 31.03/14.64 *new_glueBal2Mid_elt20(xwv257, xwv258, xwv259, xwv260, xwv261, xwv262, xwv263, xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, Branch(xwv2700, xwv2701, xwv2702, xwv2703, xwv2704), xwv271, h, ba) -> new_glueBal2Mid_elt20(xwv257, xwv258, xwv259, xwv260, xwv261, xwv262, xwv263, xwv264, xwv265, xwv266, xwv2700, xwv2701, xwv2702, xwv2703, xwv2704, h, ba) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 14 > 11, 14 > 12, 14 > 13, 14 > 14, 14 > 15, 16 >= 16, 17 >= 17 31.03/14.64 31.03/14.64 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (43) 31.03/14.64 YES 31.03/14.64 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (44) 31.03/14.64 Obligation: 31.03/14.64 Q DP problem: 31.03/14.64 The TRS P consists of the following rules: 31.03/14.64 31.03/14.64 new_glueBal2Mid_key20(xwv241, xwv242, xwv243, xwv244, xwv245, xwv246, xwv247, xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, Branch(xwv2540, xwv2541, xwv2542, xwv2543, xwv2544), xwv255, h, ba) -> new_glueBal2Mid_key20(xwv241, xwv242, xwv243, xwv244, xwv245, xwv246, xwv247, xwv248, xwv249, xwv250, xwv2540, xwv2541, xwv2542, xwv2543, xwv2544, h, ba) 31.03/14.64 31.03/14.64 R is empty. 31.03/14.64 Q is empty. 31.03/14.64 We have to consider all minimal (P,Q,R)-chains. 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (45) QDPSizeChangeProof (EQUIVALENT) 31.03/14.64 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.03/14.64 31.03/14.64 From the DPs we obtained the following set of size-change graphs: 31.03/14.64 *new_glueBal2Mid_key20(xwv241, xwv242, xwv243, xwv244, xwv245, xwv246, xwv247, xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, Branch(xwv2540, xwv2541, xwv2542, xwv2543, xwv2544), xwv255, h, ba) -> new_glueBal2Mid_key20(xwv241, xwv242, xwv243, xwv244, xwv245, xwv246, xwv247, xwv248, xwv249, xwv250, xwv2540, xwv2541, xwv2542, xwv2543, xwv2544, h, ba) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 14 > 11, 14 > 12, 14 > 13, 14 > 14, 14 > 15, 16 >= 16, 17 >= 17 31.03/14.64 31.03/14.64 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (46) 31.03/14.64 YES 31.03/14.64 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (47) 31.03/14.64 Obligation: 31.03/14.64 Q DP problem: 31.03/14.64 The TRS P consists of the following rules: 31.03/14.64 31.03/14.64 new_deleteMax(xwv510, xwv511, xwv512, xwv513, Branch(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144), h, ba) -> new_deleteMax(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144, h, ba) 31.03/14.64 31.03/14.64 R is empty. 31.03/14.64 Q is empty. 31.03/14.64 We have to consider all minimal (P,Q,R)-chains. 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (48) QDPSizeChangeProof (EQUIVALENT) 31.03/14.64 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.03/14.64 31.03/14.64 From the DPs we obtained the following set of size-change graphs: 31.03/14.64 *new_deleteMax(xwv510, xwv511, xwv512, xwv513, Branch(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144), h, ba) -> new_deleteMax(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144, h, ba) 31.03/14.64 The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 6 >= 6, 7 >= 7 31.03/14.64 31.03/14.64 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (49) 31.03/14.64 YES 31.03/14.64 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (50) 31.03/14.64 Obligation: 31.03/14.64 Q DP problem: 31.03/14.64 The TRS P consists of the following rules: 31.03/14.64 31.03/14.64 new_glueBal2Mid_elt10(xwv289, xwv290, xwv291, xwv292, xwv293, xwv294, xwv295, xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, Branch(xwv3030, xwv3031, xwv3032, xwv3033, xwv3034), h, ba) -> new_glueBal2Mid_elt10(xwv289, xwv290, xwv291, xwv292, xwv293, xwv294, xwv295, xwv296, xwv297, xwv298, xwv3030, xwv3031, xwv3032, xwv3033, xwv3034, h, ba) 31.03/14.64 31.03/14.64 R is empty. 31.03/14.64 Q is empty. 31.03/14.64 We have to consider all minimal (P,Q,R)-chains. 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (51) QDPSizeChangeProof (EQUIVALENT) 31.03/14.64 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.03/14.64 31.03/14.64 From the DPs we obtained the following set of size-change graphs: 31.03/14.64 *new_glueBal2Mid_elt10(xwv289, xwv290, xwv291, xwv292, xwv293, xwv294, xwv295, xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, Branch(xwv3030, xwv3031, xwv3032, xwv3033, xwv3034), h, ba) -> new_glueBal2Mid_elt10(xwv289, xwv290, xwv291, xwv292, xwv293, xwv294, xwv295, xwv296, xwv297, xwv298, xwv3030, xwv3031, xwv3032, xwv3033, xwv3034, h, ba) 31.03/14.64 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 15 > 11, 15 > 12, 15 > 13, 15 > 14, 15 > 15, 16 >= 16, 17 >= 17 31.03/14.64 31.03/14.64 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (52) 31.03/14.64 YES 31.03/14.64 31.03/14.64 ---------------------------------------- 31.03/14.64 31.03/14.64 (53) 31.03/14.64 Obligation: 31.03/14.64 Q DP problem: 31.03/14.64 The TRS P consists of the following rules: 31.03/14.64 31.03/14.64 new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, h, ba) -> new_delFromFM1(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_lt24(xwv18, xwv13, h), h, ba) 31.03/14.64 new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, h, ba) -> new_delFromFM(xwv17, xwv18, h, ba) 31.03/14.64 new_delFromFM1(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, bb, bc) -> new_delFromFM(xwv31, xwv33, bb, bc) 31.03/14.64 new_delFromFM(Branch(xwv30, xwv31, xwv32, xwv33, xwv34), xwv4, bd, be) -> new_delFromFM2(xwv30, xwv31, xwv32, xwv33, xwv34, xwv4, new_gt(xwv4, xwv30, bd), bd, be) 31.03/14.64 31.03/14.64 The TRS R consists of the following rules: 31.03/14.64 31.03/14.64 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 31.03/14.64 new_esEs33(xwv281, xwv331, app(ty_Ratio, dab)) -> new_esEs23(xwv281, xwv331, dab) 31.03/14.64 new_lt24(xwv18, xwv13, app(ty_Maybe, beh)) -> new_lt6(xwv18, xwv13, beh) 31.03/14.64 new_primPlusNat0(Zero, Zero) -> Zero 31.03/14.64 new_lt23(xwv610, xwv620, ty_Integer) -> new_lt10(xwv610, xwv620) 31.03/14.64 new_esEs39(xwv119, xwv121, app(app(ty_Either, eha), ehb)) -> new_esEs15(xwv119, xwv121, eha, ehb) 31.03/14.64 new_pePe(True, xwv203) -> True 31.03/14.64 new_esEs9(xwv40, xwv300, app(ty_Maybe, ffg)) -> new_esEs20(xwv40, xwv300, ffg) 31.03/14.64 new_ltEs23(xwv611, xwv621, ty_Float) -> new_ltEs18(xwv611, xwv621) 31.03/14.64 new_ltEs6(Just(xwv610), Just(xwv620), ty_Double) -> new_ltEs16(xwv610, xwv620) 31.03/14.64 new_esEs38(xwv73, xwv76, ty_Bool) -> new_esEs19(xwv73, xwv76) 31.03/14.64 new_ltEs23(xwv611, xwv621, ty_Integer) -> new_ltEs9(xwv611, xwv621) 31.03/14.64 new_ltEs6(Just(xwv610), Just(xwv620), app(ty_[], fhf)) -> new_ltEs17(xwv610, xwv620, fhf) 31.03/14.64 new_esEs17(Integer(xwv280), Integer(xwv330)) -> new_primEqInt(xwv280, xwv330) 31.03/14.64 new_esEs19(False, True) -> False 31.03/14.64 new_esEs19(True, False) -> False 31.03/14.64 new_esEs34(xwv280, xwv330, ty_Ordering) -> new_esEs24(xwv280, xwv330) 31.03/14.64 new_esEs35(xwv281, xwv331, app(ty_[], dcb)) -> new_esEs12(xwv281, xwv331, dcb) 31.03/14.64 new_compare16(GT, LT) -> GT 31.03/14.64 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 31.03/14.64 new_compare24(xwv119, xwv120, xwv121, xwv122, True, egc, egd) -> EQ 31.03/14.64 new_esEs13(xwv280, xwv330, ty_Bool) -> new_esEs19(xwv280, xwv330) 31.03/14.64 new_compare26(xwv83, xwv84, True, ccf, ccg) -> EQ 31.03/14.64 new_lt4(xwv610, xwv620, app(ty_Ratio, cg)) -> new_lt12(xwv610, xwv620, cg) 31.03/14.64 new_ltEs19(xwv90, xwv91, app(app(ty_@2, ccc), ccd)) -> new_ltEs12(xwv90, xwv91, ccc, ccd) 31.03/14.64 new_compare211(xwv61, xwv62, True, fhg) -> EQ 31.03/14.64 new_ltEs8(Right(xwv610), Right(xwv620), bag, app(ty_Ratio, bbf)) -> new_ltEs11(xwv610, xwv620, bbf) 31.03/14.64 new_compare16(EQ, LT) -> GT 31.03/14.64 new_esEs11(xwv41, xwv301, ty_@0) -> new_esEs14(xwv41, xwv301) 31.03/14.64 new_esEs15(Left(xwv280), Left(xwv330), ty_Bool, fhh) -> new_esEs19(xwv280, xwv330) 31.03/14.64 new_ltEs10(GT, LT) -> False 31.03/14.64 new_esEs6(xwv41, xwv301, app(app(ty_@2, eeb), eec)) -> new_esEs16(xwv41, xwv301, eeb, eec) 31.03/14.64 new_esEs36(xwv282, xwv332, ty_@0) -> new_esEs14(xwv282, xwv332) 31.03/14.64 new_compare30(Left(xwv40), Left(xwv300), bgf, bgg) -> new_compare26(xwv40, xwv300, new_esEs8(xwv40, xwv300, bgf), bgf, bgg) 31.03/14.64 new_ltEs24(xwv61, xwv62, app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs4(xwv61, xwv62, bf, bg, bh) 31.03/14.64 new_lt22(xwv119, xwv121, ty_Float) -> new_lt19(xwv119, xwv121) 31.03/14.64 new_esEs20(Just(xwv280), Just(xwv330), app(app(ty_Either, bhd), bhe)) -> new_esEs15(xwv280, xwv330, bhd, bhe) 31.03/14.64 new_ltEs10(EQ, LT) -> False 31.03/14.64 new_lt20(xwv73, xwv76, app(app(ty_@2, dhd), dhe)) -> new_lt13(xwv73, xwv76, dhd, dhe) 31.03/14.64 new_esEs27(xwv610, xwv620, app(app(ty_@2, da), db)) -> new_esEs16(xwv610, xwv620, da, db) 31.03/14.64 new_ltEs11(xwv61, xwv62, fba) -> new_fsEs(new_compare8(xwv61, xwv62, fba)) 31.03/14.64 new_lt21(xwv72, xwv75, ty_Ordering) -> new_lt11(xwv72, xwv75) 31.03/14.64 new_esEs39(xwv119, xwv121, app(app(app(ty_@3, egf), egg), egh)) -> new_esEs22(xwv119, xwv121, egf, egg, egh) 31.03/14.64 new_lt22(xwv119, xwv121, ty_Bool) -> new_lt7(xwv119, xwv121) 31.03/14.64 new_lt23(xwv610, xwv620, ty_Double) -> new_lt17(xwv610, xwv620) 31.03/14.64 new_primEqNat0(Succ(xwv2800), Succ(xwv3300)) -> new_primEqNat0(xwv2800, xwv3300) 31.03/14.64 new_esEs28(xwv611, xwv621, ty_Float) -> new_esEs21(xwv611, xwv621) 31.03/14.64 new_esEs32(xwv280, xwv330, app(ty_Maybe, cgd)) -> new_esEs20(xwv280, xwv330, cgd) 31.03/14.64 new_ltEs6(Just(xwv610), Just(xwv620), app(app(app(ty_@3, fgf), fgg), fgh)) -> new_ltEs4(xwv610, xwv620, fgf, fgg, fgh) 31.03/14.64 new_esEs40(xwv610, xwv620, ty_Double) -> new_esEs18(xwv610, xwv620) 31.03/14.64 new_esEs6(xwv41, xwv301, ty_Int) -> new_esEs26(xwv41, xwv301) 31.03/14.64 new_esEs27(xwv610, xwv620, ty_Int) -> new_esEs26(xwv610, xwv620) 31.03/14.64 new_lt22(xwv119, xwv121, ty_@0) -> new_lt16(xwv119, xwv121) 31.03/14.64 new_lt21(xwv72, xwv75, ty_Int) -> new_lt15(xwv72, xwv75) 31.03/14.64 new_not(True) -> False 31.03/14.64 new_ltEs8(Right(xwv610), Right(xwv620), bag, ty_Ordering) -> new_ltEs10(xwv610, xwv620) 31.03/14.64 new_esEs33(xwv281, xwv331, ty_Bool) -> new_esEs19(xwv281, xwv331) 31.03/14.64 new_primCompAux00(xwv107, LT) -> LT 31.03/14.64 new_esEs38(xwv73, xwv76, app(ty_Ratio, dhc)) -> new_esEs23(xwv73, xwv76, dhc) 31.03/14.64 new_esEs4(xwv40, xwv300, app(ty_[], ebb)) -> new_esEs12(xwv40, xwv300, ebb) 31.03/14.64 new_esEs40(xwv610, xwv620, ty_Bool) -> new_esEs19(xwv610, xwv620) 31.03/14.64 new_ltEs24(xwv61, xwv62, app(ty_[], eba)) -> new_ltEs17(xwv61, xwv62, eba) 31.03/14.64 new_lt4(xwv610, xwv620, ty_Bool) -> new_lt7(xwv610, xwv620) 31.03/14.64 new_lt22(xwv119, xwv121, app(app(ty_Either, eha), ehb)) -> new_lt9(xwv119, xwv121, eha, ehb) 31.03/14.64 new_ltEs8(Left(xwv610), Left(xwv620), app(app(ty_Either, baa), bab), he) -> new_ltEs8(xwv610, xwv620, baa, bab) 31.03/14.64 new_esEs11(xwv41, xwv301, ty_Char) -> new_esEs25(xwv41, xwv301) 31.03/14.64 new_compare6(Double(xwv40, Pos(xwv410)), Double(xwv300, Neg(xwv3010))) -> new_compare10(new_sr(xwv40, Pos(xwv3010)), new_sr(Neg(xwv410), xwv300)) 31.03/14.64 new_compare6(Double(xwv40, Neg(xwv410)), Double(xwv300, Pos(xwv3010))) -> new_compare10(new_sr(xwv40, Neg(xwv3010)), new_sr(Pos(xwv410), xwv300)) 31.03/14.64 new_lt10(xwv18, xwv13) -> new_esEs29(new_compare9(xwv18, xwv13)) 31.03/14.64 new_ltEs8(Left(xwv610), Left(xwv620), ty_Float, he) -> new_ltEs18(xwv610, xwv620) 31.03/14.64 new_esEs15(Left(xwv280), Left(xwv330), app(app(ty_Either, gab), gac), fhh) -> new_esEs15(xwv280, xwv330, gab, gac) 31.03/14.64 new_primEqNat0(Succ(xwv2800), Zero) -> False 31.03/14.64 new_primEqNat0(Zero, Succ(xwv3300)) -> False 31.03/14.64 new_esEs14(@0, @0) -> True 31.03/14.64 new_compare111(xwv187, xwv188, xwv189, xwv190, False, xwv192, cah, cba) -> new_compare15(xwv187, xwv188, xwv189, xwv190, xwv192, cah, cba) 31.03/14.64 new_ltEs22(xwv120, xwv122, ty_Ordering) -> new_ltEs10(xwv120, xwv122) 31.03/14.64 new_ltEs21(xwv74, xwv77, app(app(ty_@2, eaf), eag)) -> new_ltEs12(xwv74, xwv77, eaf, eag) 31.03/14.64 new_esEs39(xwv119, xwv121, ty_Ordering) -> new_esEs24(xwv119, xwv121) 31.03/14.64 new_ltEs6(Just(xwv610), Just(xwv620), app(ty_Maybe, fge)) -> new_ltEs6(xwv610, xwv620, fge) 31.03/14.64 new_ltEs24(xwv61, xwv62, ty_Double) -> new_ltEs16(xwv61, xwv62) 31.03/14.64 new_lt4(xwv610, xwv620, ty_Char) -> new_lt14(xwv610, xwv620) 31.03/14.64 new_esEs34(xwv280, xwv330, ty_Integer) -> new_esEs17(xwv280, xwv330) 31.03/14.64 new_compare14(xwv172, xwv173, xwv174, xwv175, xwv176, xwv177, True, cae, caf, cag) -> LT 31.03/14.64 new_ltEs23(xwv611, xwv621, ty_@0) -> new_ltEs15(xwv611, xwv621) 31.03/14.64 new_ltEs8(Right(xwv610), Right(xwv620), bag, ty_Int) -> new_ltEs14(xwv610, xwv620) 31.03/14.64 new_ltEs20(xwv83, xwv84, ty_Bool) -> new_ltEs7(xwv83, xwv84) 31.03/14.64 new_esEs40(xwv610, xwv620, app(ty_[], fce)) -> new_esEs12(xwv610, xwv620, fce) 31.03/14.64 new_esEs8(xwv40, xwv300, app(app(ty_Either, fea), feb)) -> new_esEs15(xwv40, xwv300, fea, feb) 31.03/14.64 new_lt5(xwv611, xwv621, app(app(app(ty_@3, de), df), dg)) -> new_lt8(xwv611, xwv621, de, df, dg) 31.03/14.64 new_ltEs8(Left(xwv610), Left(xwv620), ty_Integer, he) -> new_ltEs9(xwv610, xwv620) 31.03/14.64 new_ltEs22(xwv120, xwv122, ty_Int) -> new_ltEs14(xwv120, xwv122) 31.03/14.64 new_compare7(True, True) -> EQ 31.03/14.64 new_ltEs8(Left(xwv610), Left(xwv620), app(app(ty_@2, bad), bae), he) -> new_ltEs12(xwv610, xwv620, bad, bae) 31.03/14.64 new_ltEs18(xwv61, xwv62) -> new_fsEs(new_compare11(xwv61, xwv62)) 31.03/14.64 new_esEs39(xwv119, xwv121, ty_Integer) -> new_esEs17(xwv119, xwv121) 31.03/14.64 new_ltEs21(xwv74, xwv77, ty_Char) -> new_ltEs13(xwv74, xwv77) 31.03/14.64 new_esEs27(xwv610, xwv620, ty_Integer) -> new_esEs17(xwv610, xwv620) 31.03/14.64 new_esEs32(xwv280, xwv330, ty_Int) -> new_esEs26(xwv280, xwv330) 31.03/14.64 new_compare110(xwv172, xwv173, xwv174, xwv175, xwv176, xwv177, True, xwv179, cae, caf, cag) -> new_compare14(xwv172, xwv173, xwv174, xwv175, xwv176, xwv177, True, cae, caf, cag) 31.03/14.64 new_compare210(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, True, deh, dfa, dfb) -> EQ 31.03/14.64 new_esEs19(False, False) -> True 31.03/14.64 new_primCmpInt(Pos(Succ(xwv400)), Neg(xwv300)) -> GT 31.03/14.64 new_lt23(xwv610, xwv620, app(ty_[], fce)) -> new_lt18(xwv610, xwv620, fce) 31.03/14.64 new_esEs28(xwv611, xwv621, ty_Bool) -> new_esEs19(xwv611, xwv621) 31.03/14.64 new_esEs10(xwv40, xwv300, app(ty_[], bcd)) -> new_esEs12(xwv40, xwv300, bcd) 31.03/14.64 new_esEs13(xwv280, xwv330, ty_Float) -> new_esEs21(xwv280, xwv330) 31.03/14.64 new_ltEs10(GT, EQ) -> False 31.03/14.64 new_esEs35(xwv281, xwv331, ty_Double) -> new_esEs18(xwv281, xwv331) 31.03/14.64 new_compare5(:(xwv40, xwv41), [], bha) -> GT 31.03/14.64 new_primCmpNat0(Zero, Succ(xwv3000)) -> LT 31.03/14.64 new_esEs5(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) 31.03/14.64 new_gt(xwv4, xwv30, ty_Ordering) -> new_esEs41(new_compare16(xwv4, xwv30)) 31.03/14.64 new_ltEs5(xwv612, xwv622, app(ty_Maybe, ef)) -> new_ltEs6(xwv612, xwv622, ef) 31.03/14.64 new_lt20(xwv73, xwv76, ty_Char) -> new_lt14(xwv73, xwv76) 31.03/14.64 new_esEs37(xwv72, xwv75, ty_Int) -> new_esEs26(xwv72, xwv75) 31.03/14.64 new_esEs8(xwv40, xwv300, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs22(xwv40, xwv300, fef, feg, feh) 31.03/14.64 new_esEs27(xwv610, xwv620, ty_Ordering) -> new_esEs24(xwv610, xwv620) 31.03/14.64 new_ltEs21(xwv74, xwv77, app(app(ty_Either, eac), ead)) -> new_ltEs8(xwv74, xwv77, eac, ead) 31.03/14.64 new_esEs9(xwv40, xwv300, app(ty_[], ffb)) -> new_esEs12(xwv40, xwv300, ffb) 31.03/14.64 new_lt5(xwv611, xwv621, ty_Ordering) -> new_lt11(xwv611, xwv621) 31.03/14.64 new_ltEs23(xwv611, xwv621, app(ty_Ratio, fdd)) -> new_ltEs11(xwv611, xwv621, fdd) 31.03/14.64 new_esEs37(xwv72, xwv75, app(ty_Maybe, dfc)) -> new_esEs20(xwv72, xwv75, dfc) 31.03/14.64 new_esEs15(Left(xwv280), Left(xwv330), ty_Double, fhh) -> new_esEs18(xwv280, xwv330) 31.03/14.64 new_ltEs19(xwv90, xwv91, ty_Double) -> new_ltEs16(xwv90, xwv91) 31.03/14.64 new_esEs11(xwv41, xwv301, app(ty_Ratio, beg)) -> new_esEs23(xwv41, xwv301, beg) 31.03/14.64 new_lt4(xwv610, xwv620, ty_Float) -> new_lt19(xwv610, xwv620) 31.03/14.64 new_esEs9(xwv40, xwv300, app(app(ty_@2, ffe), fff)) -> new_esEs16(xwv40, xwv300, ffe, fff) 31.03/14.64 new_lt5(xwv611, xwv621, ty_Int) -> new_lt15(xwv611, xwv621) 31.03/14.64 new_esEs8(xwv40, xwv300, ty_Ordering) -> new_esEs24(xwv40, xwv300) 31.03/14.64 new_esEs38(xwv73, xwv76, app(ty_[], dhf)) -> new_esEs12(xwv73, xwv76, dhf) 31.03/14.64 new_ltEs19(xwv90, xwv91, ty_Char) -> new_ltEs13(xwv90, xwv91) 31.03/14.64 new_primEqInt(Neg(Succ(xwv2800)), Neg(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) 31.03/14.64 new_lt23(xwv610, xwv620, app(app(ty_@2, fcc), fcd)) -> new_lt13(xwv610, xwv620, fcc, fcd) 31.03/14.64 new_esEs9(xwv40, xwv300, ty_Double) -> new_esEs18(xwv40, xwv300) 31.03/14.64 new_primCmpInt(Neg(Zero), Pos(Succ(xwv3000))) -> LT 31.03/14.64 new_compare13(Char(xwv40), Char(xwv300)) -> new_primCmpNat0(xwv40, xwv300) 31.03/14.64 new_esEs8(xwv40, xwv300, ty_Integer) -> new_esEs17(xwv40, xwv300) 31.03/14.64 new_primMulInt(Pos(xwv400), Pos(xwv3010)) -> Pos(new_primMulNat0(xwv400, xwv3010)) 31.03/14.64 new_esEs5(xwv40, xwv300, ty_Bool) -> new_esEs19(xwv40, xwv300) 31.03/14.64 new_esEs15(Left(xwv280), Left(xwv330), ty_Char, fhh) -> new_esEs25(xwv280, xwv330) 31.03/14.64 new_ltEs5(xwv612, xwv622, app(ty_[], fh)) -> new_ltEs17(xwv612, xwv622, fh) 31.03/14.64 new_ltEs8(Right(xwv610), Left(xwv620), bag, he) -> False 31.03/14.64 new_primMulNat0(Succ(xwv4000), Zero) -> Zero 31.03/14.64 new_primMulNat0(Zero, Succ(xwv30100)) -> Zero 31.03/14.64 new_esEs7(xwv42, xwv302, ty_Float) -> new_esEs21(xwv42, xwv302) 31.03/14.64 new_ltEs15(xwv61, xwv62) -> new_fsEs(new_compare17(xwv61, xwv62)) 31.03/14.64 new_esEs6(xwv41, xwv301, app(app(ty_Either, edh), eea)) -> new_esEs15(xwv41, xwv301, edh, eea) 31.03/14.64 new_lt18(xwv18, xwv13, bga) -> new_esEs29(new_compare5(xwv18, xwv13, bga)) 31.03/14.64 new_esEs10(xwv40, xwv300, ty_Double) -> new_esEs18(xwv40, xwv300) 31.03/14.64 new_esEs15(Left(xwv280), Left(xwv330), app(ty_Maybe, gaf), fhh) -> new_esEs20(xwv280, xwv330, gaf) 31.03/14.64 new_esEs11(xwv41, xwv301, ty_Float) -> new_esEs21(xwv41, xwv301) 31.03/14.64 new_primPlusNat0(Succ(xwv16200), Zero) -> Succ(xwv16200) 31.03/14.64 new_primPlusNat0(Zero, Succ(xwv13000)) -> Succ(xwv13000) 31.03/14.64 new_esEs7(xwv42, xwv302, ty_Double) -> new_esEs18(xwv42, xwv302) 31.03/14.64 new_ltEs22(xwv120, xwv122, ty_Double) -> new_ltEs16(xwv120, xwv122) 31.03/14.64 new_gt(xwv4, xwv30, ty_@0) -> new_esEs41(new_compare17(xwv4, xwv30)) 31.03/14.64 new_esEs33(xwv281, xwv331, ty_Double) -> new_esEs18(xwv281, xwv331) 31.03/14.64 new_compare29(@3(xwv40, xwv41, xwv42), @3(xwv300, xwv301, xwv302), bgc, bgd, bge) -> new_compare210(xwv40, xwv41, xwv42, xwv300, xwv301, xwv302, new_asAs(new_esEs5(xwv40, xwv300, bgc), new_asAs(new_esEs6(xwv41, xwv301, bgd), new_esEs7(xwv42, xwv302, bge))), bgc, bgd, bge) 31.03/14.64 new_compare25(xwv90, xwv91, False, cbb, cbc) -> new_compare18(xwv90, xwv91, new_ltEs19(xwv90, xwv91, cbc), cbb, cbc) 31.03/14.64 new_compare18(xwv156, xwv157, True, dac, dad) -> LT 31.03/14.64 new_esEs7(xwv42, xwv302, ty_Bool) -> new_esEs19(xwv42, xwv302) 31.03/14.64 new_ltEs19(xwv90, xwv91, app(app(ty_Either, cbh), cca)) -> new_ltEs8(xwv90, xwv91, cbh, cca) 31.03/14.64 new_esEs4(xwv40, xwv300, app(ty_Maybe, ebg)) -> new_esEs20(xwv40, xwv300, ebg) 31.03/14.64 new_esEs39(xwv119, xwv121, ty_@0) -> new_esEs14(xwv119, xwv121) 31.03/14.64 new_lt4(xwv610, xwv620, app(app(ty_Either, ce), cf)) -> new_lt9(xwv610, xwv620, ce, cf) 31.03/14.64 new_ltEs6(Nothing, Just(xwv620), fgd) -> True 31.03/14.64 new_esEs33(xwv281, xwv331, ty_Char) -> new_esEs25(xwv281, xwv331) 31.03/14.64 new_ltEs16(xwv61, xwv62) -> new_fsEs(new_compare6(xwv61, xwv62)) 31.03/14.64 new_esEs31(xwv281, xwv331, ty_Integer) -> new_esEs17(xwv281, xwv331) 31.03/14.64 new_esEs32(xwv280, xwv330, app(app(ty_@2, cgb), cgc)) -> new_esEs16(xwv280, xwv330, cgb, cgc) 31.03/14.64 new_esEs32(xwv280, xwv330, ty_Double) -> new_esEs18(xwv280, xwv330) 31.03/14.64 new_compare8(:%(xwv40, xwv41), :%(xwv300, xwv301), ty_Integer) -> new_compare9(new_sr0(xwv40, xwv301), new_sr0(xwv300, xwv41)) 31.03/14.64 new_lt6(xwv18, xwv13, beh) -> new_esEs29(new_compare28(xwv18, xwv13, beh)) 31.03/14.64 new_ltEs21(xwv74, xwv77, ty_Double) -> new_ltEs16(xwv74, xwv77) 31.03/14.64 new_esEs4(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) 31.03/14.64 new_ltEs8(Left(xwv610), Left(xwv620), ty_Bool, he) -> new_ltEs7(xwv610, xwv620) 31.03/14.64 new_lt22(xwv119, xwv121, ty_Char) -> new_lt14(xwv119, xwv121) 31.03/14.64 new_ltEs5(xwv612, xwv622, app(app(ty_Either, fb), fc)) -> new_ltEs8(xwv612, xwv622, fb, fc) 31.03/14.64 new_esEs15(Right(xwv280), Right(xwv330), gbc, ty_Int) -> new_esEs26(xwv280, xwv330) 31.03/14.64 new_esEs6(xwv41, xwv301, app(app(app(ty_@3, eee), eef), eeg)) -> new_esEs22(xwv41, xwv301, eee, eef, eeg) 31.03/14.64 new_esEs7(xwv42, xwv302, ty_Char) -> new_esEs25(xwv42, xwv302) 31.03/14.64 new_ltEs20(xwv83, xwv84, ty_Integer) -> new_ltEs9(xwv83, xwv84) 31.03/14.64 new_esEs39(xwv119, xwv121, ty_Int) -> new_esEs26(xwv119, xwv121) 31.03/14.64 new_ltEs8(Right(xwv610), Right(xwv620), bag, app(app(app(ty_@3, bba), bbb), bbc)) -> new_ltEs4(xwv610, xwv620, bba, bbb, bbc) 31.03/14.64 new_esEs5(xwv40, xwv300, app(app(ty_Either, ecf), ecg)) -> new_esEs15(xwv40, xwv300, ecf, ecg) 31.03/14.64 new_ltEs14(xwv61, xwv62) -> new_fsEs(new_compare10(xwv61, xwv62)) 31.03/14.64 new_esEs15(Left(xwv280), Left(xwv330), ty_Float, fhh) -> new_esEs21(xwv280, xwv330) 31.03/14.64 new_ltEs19(xwv90, xwv91, app(ty_[], cce)) -> new_ltEs17(xwv90, xwv91, cce) 31.03/14.64 new_esEs5(xwv40, xwv300, ty_@0) -> new_esEs14(xwv40, xwv300) 31.03/14.64 new_ltEs21(xwv74, xwv77, app(ty_Ratio, eae)) -> new_ltEs11(xwv74, xwv77, eae) 31.03/14.64 new_compare28(Just(xwv40), Just(xwv300), bgb) -> new_compare211(xwv40, xwv300, new_esEs4(xwv40, xwv300, bgb), bgb) 31.03/14.64 new_esEs40(xwv610, xwv620, app(ty_Maybe, fbd)) -> new_esEs20(xwv610, xwv620, fbd) 31.03/14.64 new_esEs27(xwv610, xwv620, app(ty_Maybe, ca)) -> new_esEs20(xwv610, xwv620, ca) 31.03/14.64 new_esEs36(xwv282, xwv332, app(ty_Ratio, dee)) -> new_esEs23(xwv282, xwv332, dee) 31.03/14.64 new_lt23(xwv610, xwv620, ty_Char) -> new_lt14(xwv610, xwv620) 31.03/14.64 new_compare111(xwv187, xwv188, xwv189, xwv190, True, xwv192, cah, cba) -> new_compare15(xwv187, xwv188, xwv189, xwv190, True, cah, cba) 31.03/14.64 new_esEs5(xwv40, xwv300, app(app(app(ty_@3, edc), edd), ede)) -> new_esEs22(xwv40, xwv300, edc, edd, ede) 31.03/14.64 new_esEs8(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) 31.03/14.64 new_compare9(Integer(xwv40), Integer(xwv300)) -> new_primCmpInt(xwv40, xwv300) 31.03/14.64 new_esEs13(xwv280, xwv330, app(ty_Ratio, hc)) -> new_esEs23(xwv280, xwv330, hc) 31.03/14.64 new_lt20(xwv73, xwv76, ty_Integer) -> new_lt10(xwv73, xwv76) 31.03/14.64 new_ltEs21(xwv74, xwv77, ty_@0) -> new_ltEs15(xwv74, xwv77) 31.03/14.64 new_esEs33(xwv281, xwv331, ty_Float) -> new_esEs21(xwv281, xwv331) 31.03/14.64 new_lt5(xwv611, xwv621, ty_Integer) -> new_lt10(xwv611, xwv621) 31.03/14.64 new_esEs6(xwv41, xwv301, ty_Integer) -> new_esEs17(xwv41, xwv301) 31.03/14.64 new_esEs13(xwv280, xwv330, app(ty_[], gb)) -> new_esEs12(xwv280, xwv330, gb) 31.03/14.64 new_esEs10(xwv40, xwv300, ty_Float) -> new_esEs21(xwv40, xwv300) 31.03/14.64 new_compare16(LT, LT) -> EQ 31.03/14.64 new_esEs6(xwv41, xwv301, ty_Ordering) -> new_esEs24(xwv41, xwv301) 31.03/14.64 new_esEs15(Left(xwv280), Left(xwv330), app(app(ty_@2, gad), gae), fhh) -> new_esEs16(xwv280, xwv330, gad, gae) 31.03/14.64 new_compare8(:%(xwv40, xwv41), :%(xwv300, xwv301), ty_Int) -> new_compare10(new_sr(xwv40, xwv301), new_sr(xwv300, xwv41)) 31.03/14.64 new_lt17(xwv18, xwv13) -> new_esEs29(new_compare6(xwv18, xwv13)) 31.03/14.64 new_esEs34(xwv280, xwv330, ty_@0) -> new_esEs14(xwv280, xwv330) 31.03/14.64 new_esEs11(xwv41, xwv301, ty_Ordering) -> new_esEs24(xwv41, xwv301) 31.03/14.64 new_esEs10(xwv40, xwv300, app(ty_Ratio, bde)) -> new_esEs23(xwv40, xwv300, bde) 31.03/14.64 new_esEs13(xwv280, xwv330, app(ty_Maybe, gg)) -> new_esEs20(xwv280, xwv330, gg) 31.03/14.64 new_esEs8(xwv40, xwv300, app(app(ty_@2, fec), fed)) -> new_esEs16(xwv40, xwv300, fec, fed) 31.03/14.64 new_ltEs6(Just(xwv610), Just(xwv620), ty_Char) -> new_ltEs13(xwv610, xwv620) 31.03/14.64 new_ltEs8(Left(xwv610), Left(xwv620), ty_Char, he) -> new_ltEs13(xwv610, xwv620) 31.03/14.64 new_esEs37(xwv72, xwv75, app(ty_[], dgd)) -> new_esEs12(xwv72, xwv75, dgd) 31.03/14.64 new_esEs4(xwv40, xwv300, ty_Float) -> new_esEs21(xwv40, xwv300) 31.03/14.64 new_compare5([], [], bha) -> EQ 31.03/14.64 new_esEs40(xwv610, xwv620, ty_@0) -> new_esEs14(xwv610, xwv620) 31.03/14.64 new_esEs28(xwv611, xwv621, app(ty_Maybe, dd)) -> new_esEs20(xwv611, xwv621, dd) 31.03/14.64 new_compare30(Left(xwv40), Right(xwv300), bgf, bgg) -> LT 31.03/14.64 new_ltEs21(xwv74, xwv77, ty_Float) -> new_ltEs18(xwv74, xwv77) 31.03/14.64 new_esEs15(Right(xwv280), Right(xwv330), gbc, ty_Float) -> new_esEs21(xwv280, xwv330) 31.03/14.64 new_lt24(xwv18, xwv13, ty_@0) -> new_lt16(xwv18, xwv13) 31.03/14.64 new_esEs35(xwv281, xwv331, ty_Int) -> new_esEs26(xwv281, xwv331) 31.03/14.64 new_lt9(xwv18, xwv13, bfd, bfe) -> new_esEs29(new_compare30(xwv18, xwv13, bfd, bfe)) 31.03/14.64 new_esEs37(xwv72, xwv75, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs22(xwv72, xwv75, dfd, dfe, dff) 31.03/14.64 new_esEs11(xwv41, xwv301, ty_Integer) -> new_esEs17(xwv41, xwv301) 31.03/14.64 new_ltEs21(xwv74, xwv77, app(ty_[], eah)) -> new_ltEs17(xwv74, xwv77, eah) 31.03/14.64 new_esEs38(xwv73, xwv76, app(ty_Maybe, dge)) -> new_esEs20(xwv73, xwv76, dge) 31.03/14.64 new_ltEs6(Just(xwv610), Just(xwv620), ty_Ordering) -> new_ltEs10(xwv610, xwv620) 31.03/14.64 new_lt4(xwv610, xwv620, ty_Integer) -> new_lt10(xwv610, xwv620) 31.03/14.64 new_esEs35(xwv281, xwv331, app(ty_Ratio, ddc)) -> new_esEs23(xwv281, xwv331, ddc) 31.03/14.64 new_esEs22(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), dae, daf, dag) -> new_asAs(new_esEs34(xwv280, xwv330, dae), new_asAs(new_esEs35(xwv281, xwv331, daf), new_esEs36(xwv282, xwv332, dag))) 31.03/14.64 new_compare27(xwv40, xwv300, app(ty_Ratio, ceh)) -> new_compare8(xwv40, xwv300, ceh) 31.03/14.64 new_esEs32(xwv280, xwv330, ty_Ordering) -> new_esEs24(xwv280, xwv330) 31.03/14.64 new_ltEs10(LT, LT) -> True 31.03/14.64 new_ltEs20(xwv83, xwv84, ty_@0) -> new_ltEs15(xwv83, xwv84) 31.03/14.64 new_esEs5(xwv40, xwv300, ty_Ordering) -> new_esEs24(xwv40, xwv300) 31.03/14.64 new_compare14(xwv172, xwv173, xwv174, xwv175, xwv176, xwv177, False, cae, caf, cag) -> GT 31.03/14.64 new_esEs20(Just(xwv280), Just(xwv330), ty_Int) -> new_esEs26(xwv280, xwv330) 31.03/14.64 new_ltEs8(Right(xwv610), Right(xwv620), bag, ty_Double) -> new_ltEs16(xwv610, xwv620) 31.03/14.64 new_esEs39(xwv119, xwv121, ty_Char) -> new_esEs25(xwv119, xwv121) 31.03/14.64 new_ltEs23(xwv611, xwv621, app(app(ty_@2, fde), fdf)) -> new_ltEs12(xwv611, xwv621, fde, fdf) 31.03/14.64 new_lt22(xwv119, xwv121, app(ty_Maybe, ege)) -> new_lt6(xwv119, xwv121, ege) 31.03/14.64 new_ltEs6(Just(xwv610), Just(xwv620), ty_Int) -> new_ltEs14(xwv610, xwv620) 31.03/14.64 new_ltEs19(xwv90, xwv91, ty_@0) -> new_ltEs15(xwv90, xwv91) 31.03/14.64 new_primCmpInt(Pos(Succ(xwv400)), Pos(xwv300)) -> new_primCmpNat0(Succ(xwv400), xwv300) 31.03/14.64 new_esEs15(Left(xwv280), Left(xwv330), ty_@0, fhh) -> new_esEs14(xwv280, xwv330) 31.03/14.64 new_esEs10(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) 31.03/14.64 new_primCompAux00(xwv107, EQ) -> xwv107 31.03/14.64 new_esEs13(xwv280, xwv330, ty_@0) -> new_esEs14(xwv280, xwv330) 31.03/14.64 new_compare7(False, True) -> LT 31.03/14.64 new_esEs33(xwv281, xwv331, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs22(xwv281, xwv331, chg, chh, daa) 31.03/14.64 new_esEs32(xwv280, xwv330, ty_Integer) -> new_esEs17(xwv280, xwv330) 31.03/14.64 new_ltEs8(Right(xwv610), Right(xwv620), bag, app(ty_[], bca)) -> new_ltEs17(xwv610, xwv620, bca) 31.03/14.64 new_esEs10(xwv40, xwv300, ty_Bool) -> new_esEs19(xwv40, xwv300) 31.03/14.64 new_lt24(xwv18, xwv13, ty_Float) -> new_lt19(xwv18, xwv13) 31.03/14.64 new_primMulNat0(Succ(xwv4000), Succ(xwv30100)) -> new_primPlusNat0(new_primMulNat0(xwv4000, Succ(xwv30100)), Succ(xwv30100)) 31.03/14.64 new_lt4(xwv610, xwv620, app(app(app(ty_@3, cb), cc), cd)) -> new_lt8(xwv610, xwv620, cb, cc, cd) 31.03/14.64 new_esEs31(xwv281, xwv331, ty_Int) -> new_esEs26(xwv281, xwv331) 31.03/14.64 new_esEs4(xwv40, xwv300, ty_Integer) -> new_esEs17(xwv40, xwv300) 31.03/14.64 new_esEs32(xwv280, xwv330, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs22(xwv280, xwv330, cge, cgf, cgg) 31.03/14.64 new_esEs15(Right(xwv280), Right(xwv330), gbc, ty_Ordering) -> new_esEs24(xwv280, xwv330) 31.03/14.64 new_compare11(Float(xwv40, Pos(xwv410)), Float(xwv300, Pos(xwv3010))) -> new_compare10(new_sr(xwv40, Pos(xwv3010)), new_sr(Pos(xwv410), xwv300)) 31.03/14.64 new_lt20(xwv73, xwv76, app(app(ty_Either, dha), dhb)) -> new_lt9(xwv73, xwv76, dha, dhb) 31.03/14.64 new_lt20(xwv73, xwv76, app(app(app(ty_@3, dgf), dgg), dgh)) -> new_lt8(xwv73, xwv76, dgf, dgg, dgh) 31.03/14.64 new_ltEs22(xwv120, xwv122, app(ty_[], fah)) -> new_ltEs17(xwv120, xwv122, fah) 31.03/14.64 new_esEs15(Right(xwv280), Right(xwv330), gbc, app(ty_[], gbd)) -> new_esEs12(xwv280, xwv330, gbd) 31.03/14.64 new_esEs35(xwv281, xwv331, ty_Float) -> new_esEs21(xwv281, xwv331) 31.03/14.64 new_lt23(xwv610, xwv620, ty_Bool) -> new_lt7(xwv610, xwv620) 31.03/14.64 new_esEs34(xwv280, xwv330, ty_Char) -> new_esEs25(xwv280, xwv330) 31.03/14.64 new_esEs4(xwv40, xwv300, ty_Ordering) -> new_esEs24(xwv40, xwv300) 31.03/14.64 new_esEs38(xwv73, xwv76, ty_@0) -> new_esEs14(xwv73, xwv76) 31.03/14.64 new_esEs40(xwv610, xwv620, ty_Char) -> new_esEs25(xwv610, xwv620) 31.03/14.64 new_esEs20(Just(xwv280), Just(xwv330), ty_Char) -> new_esEs25(xwv280, xwv330) 31.03/14.64 new_esEs4(xwv40, xwv300, ty_Bool) -> new_esEs19(xwv40, xwv300) 31.03/14.64 new_compare6(Double(xwv40, Neg(xwv410)), Double(xwv300, Neg(xwv3010))) -> new_compare10(new_sr(xwv40, Neg(xwv3010)), new_sr(Neg(xwv410), xwv300)) 31.03/14.64 new_ltEs8(Right(xwv610), Right(xwv620), bag, ty_Float) -> new_ltEs18(xwv610, xwv620) 31.03/14.64 new_lt24(xwv18, xwv13, ty_Bool) -> new_lt7(xwv18, xwv13) 31.03/14.64 new_gt(xwv4, xwv30, app(app(ty_@2, bcb), bcc)) -> new_esEs41(new_compare12(xwv4, xwv30, bcb, bcc)) 31.03/14.64 new_ltEs22(xwv120, xwv122, app(app(ty_@2, faf), fag)) -> new_ltEs12(xwv120, xwv122, faf, fag) 31.03/14.64 new_esEs24(LT, GT) -> False 31.03/14.64 new_esEs24(GT, LT) -> False 31.03/14.64 new_ltEs7(True, True) -> True 31.03/14.64 new_esEs15(Right(xwv280), Right(xwv330), gbc, ty_Integer) -> new_esEs17(xwv280, xwv330) 31.03/14.64 new_esEs36(xwv282, xwv332, ty_Float) -> new_esEs21(xwv282, xwv332) 31.03/14.64 new_lt5(xwv611, xwv621, ty_Char) -> new_lt14(xwv611, xwv621) 31.03/14.64 new_lt13(xwv18, xwv13, bfg, bfh) -> new_esEs29(new_compare12(xwv18, xwv13, bfg, bfh)) 31.03/14.64 new_esEs32(xwv280, xwv330, app(app(ty_Either, cfh), cga)) -> new_esEs15(xwv280, xwv330, cfh, cga) 31.03/14.64 new_ltEs10(GT, GT) -> True 31.03/14.64 new_esEs35(xwv281, xwv331, ty_Char) -> new_esEs25(xwv281, xwv331) 31.03/14.64 new_esEs10(xwv40, xwv300, ty_Integer) -> new_esEs17(xwv40, xwv300) 31.03/14.64 new_esEs15(Left(xwv280), Left(xwv330), app(app(app(ty_@3, gag), gah), gba), fhh) -> new_esEs22(xwv280, xwv330, gag, gah, gba) 31.03/14.64 new_ltEs24(xwv61, xwv62, app(ty_Ratio, fba)) -> new_ltEs11(xwv61, xwv62, fba) 31.03/14.64 new_lt19(xwv18, xwv13) -> new_esEs29(new_compare11(xwv18, xwv13)) 31.03/14.64 new_esEs11(xwv41, xwv301, ty_Bool) -> new_esEs19(xwv41, xwv301) 31.03/14.64 new_esEs20(Just(xwv280), Just(xwv330), ty_Float) -> new_esEs21(xwv280, xwv330) 31.03/14.64 new_esEs10(xwv40, xwv300, ty_Ordering) -> new_esEs24(xwv40, xwv300) 31.03/14.64 new_compare27(xwv40, xwv300, ty_Integer) -> new_compare9(xwv40, xwv300) 31.03/14.64 new_esEs41(GT) -> True 31.03/14.64 new_esEs37(xwv72, xwv75, app(app(ty_Either, dfg), dfh)) -> new_esEs15(xwv72, xwv75, dfg, dfh) 31.03/14.64 new_gt0(xwv4, xwv30) -> new_esEs41(new_compare10(xwv4, xwv30)) 31.03/14.64 new_esEs15(Right(xwv280), Right(xwv330), gbc, ty_Bool) -> new_esEs19(xwv280, xwv330) 31.03/14.64 new_compare27(xwv40, xwv300, ty_@0) -> new_compare17(xwv40, xwv300) 31.03/14.64 new_gt(xwv4, xwv30, ty_Double) -> new_esEs41(new_compare6(xwv4, xwv30)) 31.03/14.64 new_esEs11(xwv41, xwv301, ty_Int) -> new_esEs26(xwv41, xwv301) 31.03/14.64 new_esEs39(xwv119, xwv121, ty_Float) -> new_esEs21(xwv119, xwv121) 31.03/14.64 new_esEs35(xwv281, xwv331, ty_Ordering) -> new_esEs24(xwv281, xwv331) 31.03/14.64 new_esEs28(xwv611, xwv621, app(app(ty_@2, ec), ed)) -> new_esEs16(xwv611, xwv621, ec, ed) 31.03/14.64 new_esEs38(xwv73, xwv76, ty_Char) -> new_esEs25(xwv73, xwv76) 31.03/14.64 new_ltEs24(xwv61, xwv62, app(app(ty_@2, fbb), fbc)) -> new_ltEs12(xwv61, xwv62, fbb, fbc) 31.03/14.64 new_esEs20(Just(xwv280), Just(xwv330), app(ty_Maybe, bhh)) -> new_esEs20(xwv280, xwv330, bhh) 31.03/14.64 new_lt7(xwv18, xwv13) -> new_esEs29(new_compare7(xwv18, xwv13)) 31.03/14.64 new_esEs34(xwv280, xwv330, ty_Int) -> new_esEs26(xwv280, xwv330) 31.03/14.64 new_ltEs6(Just(xwv610), Just(xwv620), ty_@0) -> new_ltEs15(xwv610, xwv620) 31.03/14.64 new_lt23(xwv610, xwv620, ty_@0) -> new_lt16(xwv610, xwv620) 31.03/14.64 new_lt23(xwv610, xwv620, app(ty_Maybe, fbd)) -> new_lt6(xwv610, xwv620, fbd) 31.03/14.64 new_esEs10(xwv40, xwv300, ty_@0) -> new_esEs14(xwv40, xwv300) 31.03/14.64 new_esEs20(Just(xwv280), Just(xwv330), ty_Ordering) -> new_esEs24(xwv280, xwv330) 31.03/14.64 new_esEs15(Right(xwv280), Right(xwv330), gbc, ty_Char) -> new_esEs25(xwv280, xwv330) 31.03/14.64 new_compare27(xwv40, xwv300, ty_Float) -> new_compare11(xwv40, xwv300) 31.03/14.64 new_esEs37(xwv72, xwv75, ty_Integer) -> new_esEs17(xwv72, xwv75) 31.03/14.64 new_esEs35(xwv281, xwv331, ty_@0) -> new_esEs14(xwv281, xwv331) 31.03/14.64 new_ltEs8(Left(xwv610), Right(xwv620), bag, he) -> True 31.03/14.64 new_compare27(xwv40, xwv300, ty_Char) -> new_compare13(xwv40, xwv300) 31.03/14.64 new_esEs13(xwv280, xwv330, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs22(xwv280, xwv330, gh, ha, hb) 31.03/14.64 new_esEs37(xwv72, xwv75, ty_Bool) -> new_esEs19(xwv72, xwv75) 31.03/14.64 new_ltEs8(Left(xwv610), Left(xwv620), app(ty_Maybe, hd), he) -> new_ltEs6(xwv610, xwv620, hd) 31.03/14.64 new_esEs20(Just(xwv280), Just(xwv330), ty_Integer) -> new_esEs17(xwv280, xwv330) 31.03/14.64 new_primPlusNat0(Succ(xwv16200), Succ(xwv13000)) -> Succ(Succ(new_primPlusNat0(xwv16200, xwv13000))) 31.03/14.64 new_ltEs6(Just(xwv610), Just(xwv620), ty_Bool) -> new_ltEs7(xwv610, xwv620) 31.03/14.64 new_ltEs10(EQ, GT) -> True 31.03/14.64 new_esEs15(Left(xwv280), Left(xwv330), ty_Int, fhh) -> new_esEs26(xwv280, xwv330) 31.03/14.64 new_esEs7(xwv42, xwv302, app(ty_[], efa)) -> new_esEs12(xwv42, xwv302, efa) 31.03/14.64 new_primCompAux0(xwv40, xwv300, xwv56, bha) -> new_primCompAux00(xwv56, new_compare27(xwv40, xwv300, bha)) 31.03/14.64 new_esEs37(xwv72, xwv75, ty_Float) -> new_esEs21(xwv72, xwv75) 31.03/14.64 new_esEs20(Just(xwv280), Just(xwv330), ty_Bool) -> new_esEs19(xwv280, xwv330) 31.03/14.64 new_esEs5(xwv40, xwv300, ty_Float) -> new_esEs21(xwv40, xwv300) 31.03/14.64 new_esEs37(xwv72, xwv75, ty_Ordering) -> new_esEs24(xwv72, xwv75) 31.03/14.64 new_esEs13(xwv280, xwv330, app(app(ty_Either, gc), gd)) -> new_esEs15(xwv280, xwv330, gc, gd) 31.03/14.64 new_esEs20(Just(xwv280), Just(xwv330), ty_@0) -> new_esEs14(xwv280, xwv330) 31.03/14.64 new_ltEs8(Left(xwv610), Left(xwv620), ty_@0, he) -> new_ltEs15(xwv610, xwv620) 31.03/14.64 new_ltEs10(EQ, EQ) -> True 31.03/14.64 new_esEs40(xwv610, xwv620, ty_Float) -> new_esEs21(xwv610, xwv620) 31.03/14.64 new_esEs36(xwv282, xwv332, app(app(ty_Either, dde), ddf)) -> new_esEs15(xwv282, xwv332, dde, ddf) 31.03/14.64 new_esEs36(xwv282, xwv332, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs22(xwv282, xwv332, deb, dec, ded) 31.03/14.64 new_esEs13(xwv280, xwv330, ty_Int) -> new_esEs26(xwv280, xwv330) 31.03/14.64 new_esEs36(xwv282, xwv332, ty_Int) -> new_esEs26(xwv282, xwv332) 31.03/14.64 new_esEs4(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) 31.03/14.64 new_esEs28(xwv611, xwv621, app(ty_Ratio, eb)) -> new_esEs23(xwv611, xwv621, eb) 31.03/14.64 new_esEs35(xwv281, xwv331, ty_Integer) -> new_esEs17(xwv281, xwv331) 31.03/14.64 new_lt24(xwv18, xwv13, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_lt8(xwv18, xwv13, bfa, bfb, bfc) 31.03/14.64 new_compare211(xwv61, xwv62, False, fhg) -> new_compare112(xwv61, xwv62, new_ltEs24(xwv61, xwv62, fhg), fhg) 31.03/14.64 new_esEs33(xwv281, xwv331, app(app(ty_Either, chb), chc)) -> new_esEs15(xwv281, xwv331, chb, chc) 31.03/14.64 new_esEs32(xwv280, xwv330, app(ty_Ratio, cgh)) -> new_esEs23(xwv280, xwv330, cgh) 31.03/14.64 new_esEs35(xwv281, xwv331, app(ty_Maybe, dcg)) -> new_esEs20(xwv281, xwv331, dcg) 31.03/14.64 new_esEs11(xwv41, xwv301, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs22(xwv41, xwv301, bed, bee, bef) 31.03/14.64 new_esEs33(xwv281, xwv331, ty_@0) -> new_esEs14(xwv281, xwv331) 31.03/14.64 new_esEs28(xwv611, xwv621, ty_Double) -> new_esEs18(xwv611, xwv621) 31.03/14.64 new_esEs13(xwv280, xwv330, ty_Char) -> new_esEs25(xwv280, xwv330) 31.03/14.64 new_compare10(xwv4, xwv30) -> new_primCmpInt(xwv4, xwv30) 31.03/14.64 new_ltEs22(xwv120, xwv122, ty_Float) -> new_ltEs18(xwv120, xwv122) 31.03/14.64 new_esEs10(xwv40, xwv300, app(app(ty_Either, bce), bcf)) -> new_esEs15(xwv40, xwv300, bce, bcf) 31.03/14.64 new_esEs35(xwv281, xwv331, ty_Bool) -> new_esEs19(xwv281, xwv331) 31.03/14.64 new_lt4(xwv610, xwv620, ty_@0) -> new_lt16(xwv610, xwv620) 31.03/14.64 new_lt4(xwv610, xwv620, app(ty_Maybe, ca)) -> new_lt6(xwv610, xwv620, ca) 31.03/14.64 new_compare16(GT, GT) -> EQ 31.03/14.64 new_esEs36(xwv282, xwv332, ty_Char) -> new_esEs25(xwv282, xwv332) 31.03/14.64 new_lt21(xwv72, xwv75, app(app(app(ty_@3, dfd), dfe), dff)) -> new_lt8(xwv72, xwv75, dfd, dfe, dff) 31.03/14.64 new_esEs34(xwv280, xwv330, app(app(ty_Either, dba), dbb)) -> new_esEs15(xwv280, xwv330, dba, dbb) 31.03/14.64 new_compare27(xwv40, xwv300, ty_Ordering) -> new_compare16(xwv40, xwv300) 31.03/14.64 new_compare110(xwv172, xwv173, xwv174, xwv175, xwv176, xwv177, False, xwv179, cae, caf, cag) -> new_compare14(xwv172, xwv173, xwv174, xwv175, xwv176, xwv177, xwv179, cae, caf, cag) 31.03/14.64 new_esEs11(xwv41, xwv301, app(app(ty_Either, bdg), bdh)) -> new_esEs15(xwv41, xwv301, bdg, bdh) 31.03/14.64 new_esEs5(xwv40, xwv300, app(ty_[], ece)) -> new_esEs12(xwv40, xwv300, ece) 31.03/14.64 new_lt21(xwv72, xwv75, ty_Bool) -> new_lt7(xwv72, xwv75) 31.03/14.64 new_compare17(@0, @0) -> EQ 31.03/14.64 new_gt(xwv4, xwv30, app(ty_Ratio, bgh)) -> new_esEs41(new_compare8(xwv4, xwv30, bgh)) 31.03/14.64 new_esEs34(xwv280, xwv330, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs22(xwv280, xwv330, dbf, dbg, dbh) 31.03/14.64 new_primCmpNat0(Succ(xwv400), Succ(xwv3000)) -> new_primCmpNat0(xwv400, xwv3000) 31.03/14.64 new_lt20(xwv73, xwv76, ty_@0) -> new_lt16(xwv73, xwv76) 31.03/14.64 new_esEs35(xwv281, xwv331, app(app(ty_Either, dcc), dcd)) -> new_esEs15(xwv281, xwv331, dcc, dcd) 31.03/14.64 new_lt15(xwv18, xwv13) -> new_esEs29(new_compare10(xwv18, xwv13)) 31.03/14.64 new_lt20(xwv73, xwv76, ty_Bool) -> new_lt7(xwv73, xwv76) 31.03/14.64 new_ltEs19(xwv90, xwv91, ty_Float) -> new_ltEs18(xwv90, xwv91) 31.03/14.64 new_esEs27(xwv610, xwv620, ty_Double) -> new_esEs18(xwv610, xwv620) 31.03/14.64 new_lt5(xwv611, xwv621, ty_Bool) -> new_lt7(xwv611, xwv621) 31.03/14.64 new_esEs29(LT) -> True 31.03/14.64 new_ltEs6(Just(xwv610), Just(xwv620), ty_Integer) -> new_ltEs9(xwv610, xwv620) 31.03/14.64 new_lt23(xwv610, xwv620, app(app(ty_Either, fbh), fca)) -> new_lt9(xwv610, xwv620, fbh, fca) 31.03/14.64 new_lt20(xwv73, xwv76, app(ty_Maybe, dge)) -> new_lt6(xwv73, xwv76, dge) 31.03/14.64 new_lt23(xwv610, xwv620, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_lt8(xwv610, xwv620, fbe, fbf, fbg) 31.03/14.64 new_esEs10(xwv40, xwv300, app(ty_Maybe, bda)) -> new_esEs20(xwv40, xwv300, bda) 31.03/14.64 new_lt21(xwv72, xwv75, ty_@0) -> new_lt16(xwv72, xwv75) 31.03/14.64 new_lt5(xwv611, xwv621, app(ty_Maybe, dd)) -> new_lt6(xwv611, xwv621, dd) 31.03/14.64 new_ltEs20(xwv83, xwv84, ty_Float) -> new_ltEs18(xwv83, xwv84) 31.03/14.64 new_esEs34(xwv280, xwv330, app(ty_Maybe, dbe)) -> new_esEs20(xwv280, xwv330, dbe) 31.03/14.64 new_esEs33(xwv281, xwv331, app(ty_Maybe, chf)) -> new_esEs20(xwv281, xwv331, chf) 31.03/14.64 new_lt24(xwv18, xwv13, app(app(ty_Either, bfd), bfe)) -> new_lt9(xwv18, xwv13, bfd, bfe) 31.03/14.64 new_esEs36(xwv282, xwv332, ty_Bool) -> new_esEs19(xwv282, xwv332) 31.03/14.64 new_lt5(xwv611, xwv621, ty_@0) -> new_lt16(xwv611, xwv621) 31.03/14.64 new_lt21(xwv72, xwv75, app(ty_Maybe, dfc)) -> new_lt6(xwv72, xwv75, dfc) 31.03/14.64 new_esEs20(Just(xwv280), Just(xwv330), app(app(app(ty_@3, caa), cab), cac)) -> new_esEs22(xwv280, xwv330, caa, cab, cac) 31.03/14.64 new_ltEs13(xwv61, xwv62) -> new_fsEs(new_compare13(xwv61, xwv62)) 31.03/14.64 new_lt22(xwv119, xwv121, app(app(app(ty_@3, egf), egg), egh)) -> new_lt8(xwv119, xwv121, egf, egg, egh) 31.03/14.64 new_esEs38(xwv73, xwv76, ty_Float) -> new_esEs21(xwv73, xwv76) 31.03/14.64 new_esEs36(xwv282, xwv332, ty_Ordering) -> new_esEs24(xwv282, xwv332) 31.03/14.64 new_esEs6(xwv41, xwv301, app(ty_[], edg)) -> new_esEs12(xwv41, xwv301, edg) 31.03/14.64 new_esEs13(xwv280, xwv330, ty_Ordering) -> new_esEs24(xwv280, xwv330) 31.03/14.64 new_compare112(xwv140, xwv141, False, ecd) -> GT 31.03/14.64 new_compare27(xwv40, xwv300, ty_Bool) -> new_compare7(xwv40, xwv300) 31.03/14.64 new_esEs36(xwv282, xwv332, ty_Integer) -> new_esEs17(xwv282, xwv332) 31.03/14.64 new_ltEs6(Just(xwv610), Just(xwv620), app(app(ty_Either, fha), fhb)) -> new_ltEs8(xwv610, xwv620, fha, fhb) 31.03/14.64 new_esEs35(xwv281, xwv331, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs22(xwv281, xwv331, dch, dda, ddb) 31.03/14.64 new_compare16(LT, EQ) -> LT 31.03/14.64 new_esEs24(LT, EQ) -> False 31.03/14.64 new_esEs24(EQ, LT) -> False 31.03/14.64 new_esEs19(True, True) -> True 31.03/14.64 new_compare28(Nothing, Just(xwv300), bgb) -> LT 31.03/14.64 new_esEs29(EQ) -> False 31.03/14.64 new_esEs36(xwv282, xwv332, app(ty_Maybe, dea)) -> new_esEs20(xwv282, xwv332, dea) 31.03/14.64 new_esEs13(xwv280, xwv330, ty_Integer) -> new_esEs17(xwv280, xwv330) 31.03/14.64 new_primCmpInt(Neg(Succ(xwv400)), Pos(xwv300)) -> LT 31.03/14.64 new_compare11(Float(xwv40, Pos(xwv410)), Float(xwv300, Neg(xwv3010))) -> new_compare10(new_sr(xwv40, Pos(xwv3010)), new_sr(Neg(xwv410), xwv300)) 31.03/14.64 new_compare11(Float(xwv40, Neg(xwv410)), Float(xwv300, Pos(xwv3010))) -> new_compare10(new_sr(xwv40, Neg(xwv3010)), new_sr(Pos(xwv410), xwv300)) 31.03/14.64 new_esEs20(Just(xwv280), Just(xwv330), app(ty_[], bhc)) -> new_esEs12(xwv280, xwv330, bhc) 31.03/14.64 new_esEs15(Left(xwv280), Left(xwv330), ty_Integer, fhh) -> new_esEs17(xwv280, xwv330) 31.03/14.64 new_lt4(xwv610, xwv620, ty_Int) -> new_lt15(xwv610, xwv620) 31.03/14.64 new_gt(xwv4, xwv30, ty_Float) -> new_esEs41(new_compare11(xwv4, xwv30)) 31.03/14.64 new_ltEs5(xwv612, xwv622, ty_@0) -> new_ltEs15(xwv612, xwv622) 31.03/14.64 new_ltEs23(xwv611, xwv621, app(ty_Maybe, fcf)) -> new_ltEs6(xwv611, xwv621, fcf) 31.03/14.64 new_esEs15(Left(xwv280), Right(xwv330), gbc, fhh) -> False 31.03/14.64 new_esEs15(Right(xwv280), Left(xwv330), gbc, fhh) -> False 31.03/14.64 new_compare112(xwv140, xwv141, True, ecd) -> LT 31.03/14.64 new_esEs39(xwv119, xwv121, ty_Double) -> new_esEs18(xwv119, xwv121) 31.03/14.64 new_ltEs8(Left(xwv610), Left(xwv620), app(ty_Ratio, bac), he) -> new_ltEs11(xwv610, xwv620, bac) 31.03/14.64 new_esEs29(GT) -> False 31.03/14.64 new_esEs28(xwv611, xwv621, ty_Ordering) -> new_esEs24(xwv611, xwv621) 31.03/14.64 new_ltEs19(xwv90, xwv91, ty_Bool) -> new_ltEs7(xwv90, xwv91) 31.03/14.64 new_esEs7(xwv42, xwv302, ty_Ordering) -> new_esEs24(xwv42, xwv302) 31.03/14.64 new_esEs37(xwv72, xwv75, ty_Char) -> new_esEs25(xwv72, xwv75) 31.03/14.64 new_esEs8(xwv40, xwv300, app(ty_[], fdh)) -> new_esEs12(xwv40, xwv300, fdh) 31.03/14.65 new_esEs12(:(xwv280, xwv281), [], ga) -> False 31.03/14.65 new_esEs12([], :(xwv330, xwv331), ga) -> False 31.03/14.65 new_primCmpInt(Pos(Zero), Neg(Succ(xwv3000))) -> GT 31.03/14.65 new_esEs11(xwv41, xwv301, app(ty_Maybe, bec)) -> new_esEs20(xwv41, xwv301, bec) 31.03/14.65 new_ltEs8(Left(xwv610), Left(xwv620), ty_Double, he) -> new_ltEs16(xwv610, xwv620) 31.03/14.65 new_lt8(xwv18, xwv13, bfa, bfb, bfc) -> new_esEs29(new_compare29(xwv18, xwv13, bfa, bfb, bfc)) 31.03/14.65 new_ltEs22(xwv120, xwv122, app(ty_Ratio, fae)) -> new_ltEs11(xwv120, xwv122, fae) 31.03/14.65 new_gt(xwv4, xwv30, app(ty_Maybe, bgb)) -> new_esEs41(new_compare28(xwv4, xwv30, bgb)) 31.03/14.65 new_esEs26(xwv28, xwv33) -> new_primEqInt(xwv28, xwv33) 31.03/14.65 new_primCmpInt(Neg(Succ(xwv400)), Neg(xwv300)) -> new_primCmpNat0(xwv300, Succ(xwv400)) 31.03/14.65 new_esEs28(xwv611, xwv621, ty_Integer) -> new_esEs17(xwv611, xwv621) 31.03/14.65 new_compare27(xwv40, xwv300, app(app(ty_Either, cef), ceg)) -> new_compare30(xwv40, xwv300, cef, ceg) 31.03/14.65 new_esEs38(xwv73, xwv76, ty_Integer) -> new_esEs17(xwv73, xwv76) 31.03/14.65 new_esEs33(xwv281, xwv331, app(app(ty_@2, chd), che)) -> new_esEs16(xwv281, xwv331, chd, che) 31.03/14.65 new_esEs40(xwv610, xwv620, ty_Ordering) -> new_esEs24(xwv610, xwv620) 31.03/14.65 new_esEs41(EQ) -> False 31.03/14.65 new_esEs24(EQ, EQ) -> True 31.03/14.65 new_esEs9(xwv40, xwv300, ty_@0) -> new_esEs14(xwv40, xwv300) 31.03/14.65 new_primEqInt(Pos(Succ(xwv2800)), Pos(Zero)) -> False 31.03/14.65 new_primEqInt(Pos(Zero), Pos(Succ(xwv3300))) -> False 31.03/14.65 new_compare27(xwv40, xwv300, ty_Double) -> new_compare6(xwv40, xwv300) 31.03/14.65 new_compare19(xwv149, xwv150, True, def, deg) -> LT 31.03/14.65 new_esEs37(xwv72, xwv75, app(ty_Ratio, dga)) -> new_esEs23(xwv72, xwv75, dga) 31.03/14.65 new_esEs5(xwv40, xwv300, app(ty_Maybe, edb)) -> new_esEs20(xwv40, xwv300, edb) 31.03/14.65 new_gt(xwv4, xwv30, app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs41(new_compare29(xwv4, xwv30, bgc, bgd, bge)) 31.03/14.65 new_esEs33(xwv281, xwv331, ty_Int) -> new_esEs26(xwv281, xwv331) 31.03/14.65 new_ltEs20(xwv83, xwv84, app(app(ty_Either, cdd), cde)) -> new_ltEs8(xwv83, xwv84, cdd, cde) 31.03/14.65 new_esEs24(GT, GT) -> True 31.03/14.65 new_ltEs5(xwv612, xwv622, ty_Float) -> new_ltEs18(xwv612, xwv622) 31.03/14.65 new_lt21(xwv72, xwv75, app(app(ty_Either, dfg), dfh)) -> new_lt9(xwv72, xwv75, dfg, dfh) 31.03/14.65 new_ltEs6(Just(xwv610), Just(xwv620), ty_Float) -> new_ltEs18(xwv610, xwv620) 31.03/14.65 new_primCmpNat0(Zero, Zero) -> EQ 31.03/14.65 new_esEs10(xwv40, xwv300, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs22(xwv40, xwv300, bdb, bdc, bdd) 31.03/14.65 new_ltEs8(Left(xwv610), Left(xwv620), app(app(app(ty_@3, hf), hg), hh), he) -> new_ltEs4(xwv610, xwv620, hf, hg, hh) 31.03/14.65 new_ltEs5(xwv612, xwv622, app(ty_Ratio, fd)) -> new_ltEs11(xwv612, xwv622, fd) 31.03/14.65 new_esEs6(xwv41, xwv301, ty_Char) -> new_esEs25(xwv41, xwv301) 31.03/14.65 new_lt21(xwv72, xwv75, ty_Char) -> new_lt14(xwv72, xwv75) 31.03/14.65 new_esEs7(xwv42, xwv302, app(app(app(ty_@3, efg), efh), ega)) -> new_esEs22(xwv42, xwv302, efg, efh, ega) 31.03/14.65 new_esEs7(xwv42, xwv302, app(app(ty_Either, efb), efc)) -> new_esEs15(xwv42, xwv302, efb, efc) 31.03/14.65 new_esEs5(xwv40, xwv300, app(app(ty_@2, ech), eda)) -> new_esEs16(xwv40, xwv300, ech, eda) 31.03/14.65 new_esEs27(xwv610, xwv620, ty_Bool) -> new_esEs19(xwv610, xwv620) 31.03/14.65 new_lt22(xwv119, xwv121, app(ty_[], ehf)) -> new_lt18(xwv119, xwv121, ehf) 31.03/14.65 new_compare28(Just(xwv40), Nothing, bgb) -> GT 31.03/14.65 new_esEs23(:%(xwv280, xwv281), :%(xwv330, xwv331), cfd) -> new_asAs(new_esEs30(xwv280, xwv330, cfd), new_esEs31(xwv281, xwv331, cfd)) 31.03/14.65 new_lt5(xwv611, xwv621, app(app(ty_Either, dh), ea)) -> new_lt9(xwv611, xwv621, dh, ea) 31.03/14.65 new_primCompAux00(xwv107, GT) -> GT 31.03/14.65 new_esEs40(xwv610, xwv620, ty_Integer) -> new_esEs17(xwv610, xwv620) 31.03/14.65 new_fsEs(xwv198) -> new_not(new_esEs24(xwv198, GT)) 31.03/14.65 new_esEs21(Float(xwv280, xwv281), Float(xwv330, xwv331)) -> new_esEs26(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) 31.03/14.65 new_esEs20(Just(xwv280), Just(xwv330), ty_Double) -> new_esEs18(xwv280, xwv330) 31.03/14.65 new_esEs32(xwv280, xwv330, ty_@0) -> new_esEs14(xwv280, xwv330) 31.03/14.65 new_esEs6(xwv41, xwv301, ty_Float) -> new_esEs21(xwv41, xwv301) 31.03/14.65 new_esEs15(Left(xwv280), Left(xwv330), app(ty_Ratio, gbb), fhh) -> new_esEs23(xwv280, xwv330, gbb) 31.03/14.65 new_esEs38(xwv73, xwv76, ty_Ordering) -> new_esEs24(xwv73, xwv76) 31.03/14.65 new_esEs37(xwv72, xwv75, ty_@0) -> new_esEs14(xwv72, xwv75) 31.03/14.65 new_compare16(LT, GT) -> LT 31.03/14.65 new_esEs39(xwv119, xwv121, app(ty_[], ehf)) -> new_esEs12(xwv119, xwv121, ehf) 31.03/14.65 new_esEs39(xwv119, xwv121, ty_Bool) -> new_esEs19(xwv119, xwv121) 31.03/14.65 new_lt23(xwv610, xwv620, ty_Float) -> new_lt19(xwv610, xwv620) 31.03/14.65 new_esEs27(xwv610, xwv620, app(ty_Ratio, cg)) -> new_esEs23(xwv610, xwv620, cg) 31.03/14.65 new_esEs33(xwv281, xwv331, ty_Integer) -> new_esEs17(xwv281, xwv331) 31.03/14.65 new_esEs34(xwv280, xwv330, ty_Bool) -> new_esEs19(xwv280, xwv330) 31.03/14.65 new_ltEs22(xwv120, xwv122, ty_Integer) -> new_ltEs9(xwv120, xwv122) 31.03/14.65 new_ltEs23(xwv611, xwv621, app(app(app(ty_@3, fcg), fch), fda)) -> new_ltEs4(xwv611, xwv621, fcg, fch, fda) 31.03/14.65 new_ltEs23(xwv611, xwv621, app(ty_[], fdg)) -> new_ltEs17(xwv611, xwv621, fdg) 31.03/14.65 new_esEs15(Left(xwv280), Left(xwv330), ty_Ordering, fhh) -> new_esEs24(xwv280, xwv330) 31.03/14.65 new_esEs24(LT, LT) -> True 31.03/14.65 new_esEs33(xwv281, xwv331, ty_Ordering) -> new_esEs24(xwv281, xwv331) 31.03/14.65 new_compare28(Nothing, Nothing, bgb) -> EQ 31.03/14.65 new_esEs36(xwv282, xwv332, app(ty_[], ddd)) -> new_esEs12(xwv282, xwv332, ddd) 31.03/14.65 new_primCmpNat0(Succ(xwv400), Zero) -> GT 31.03/14.65 new_esEs38(xwv73, xwv76, app(app(app(ty_@3, dgf), dgg), dgh)) -> new_esEs22(xwv73, xwv76, dgf, dgg, dgh) 31.03/14.65 new_esEs27(xwv610, xwv620, ty_@0) -> new_esEs14(xwv610, xwv620) 31.03/14.65 new_ltEs8(Right(xwv610), Right(xwv620), bag, app(ty_Maybe, bah)) -> new_ltEs6(xwv610, xwv620, bah) 31.03/14.65 new_pePe(False, xwv203) -> xwv203 31.03/14.65 new_lt22(xwv119, xwv121, ty_Ordering) -> new_lt11(xwv119, xwv121) 31.03/14.65 new_esEs28(xwv611, xwv621, ty_Int) -> new_esEs26(xwv611, xwv621) 31.03/14.65 new_esEs11(xwv41, xwv301, app(app(ty_@2, bea), beb)) -> new_esEs16(xwv41, xwv301, bea, beb) 31.03/14.65 new_lt22(xwv119, xwv121, ty_Int) -> new_lt15(xwv119, xwv121) 31.03/14.65 new_esEs38(xwv73, xwv76, app(app(ty_Either, dha), dhb)) -> new_esEs15(xwv73, xwv76, dha, dhb) 31.03/14.65 new_esEs7(xwv42, xwv302, ty_Int) -> new_esEs26(xwv42, xwv302) 31.03/14.65 new_compare25(xwv90, xwv91, True, cbb, cbc) -> EQ 31.03/14.65 new_ltEs20(xwv83, xwv84, ty_Char) -> new_ltEs13(xwv83, xwv84) 31.03/14.65 new_ltEs24(xwv61, xwv62, ty_Float) -> new_ltEs18(xwv61, xwv62) 31.03/14.65 new_lt20(xwv73, xwv76, ty_Int) -> new_lt15(xwv73, xwv76) 31.03/14.65 new_lt22(xwv119, xwv121, ty_Integer) -> new_lt10(xwv119, xwv121) 31.03/14.65 new_esEs34(xwv280, xwv330, app(ty_Ratio, dca)) -> new_esEs23(xwv280, xwv330, dca) 31.03/14.65 new_lt21(xwv72, xwv75, ty_Float) -> new_lt19(xwv72, xwv75) 31.03/14.65 new_primEqInt(Pos(Zero), Neg(Succ(xwv3300))) -> False 31.03/14.65 new_primEqInt(Neg(Zero), Pos(Succ(xwv3300))) -> False 31.03/14.65 new_esEs34(xwv280, xwv330, app(ty_[], dah)) -> new_esEs12(xwv280, xwv330, dah) 31.03/14.65 new_esEs11(xwv41, xwv301, app(ty_[], bdf)) -> new_esEs12(xwv41, xwv301, bdf) 31.03/14.65 new_esEs4(xwv40, xwv300, app(app(ty_Either, ebc), ebd)) -> new_esEs15(xwv40, xwv300, ebc, ebd) 31.03/14.65 new_esEs15(Right(xwv280), Right(xwv330), gbc, app(app(ty_@2, gbg), gbh)) -> new_esEs16(xwv280, xwv330, gbg, gbh) 31.03/14.65 new_esEs4(xwv40, xwv300, app(app(app(ty_@3, ebh), eca), ecb)) -> new_esEs22(xwv40, xwv300, ebh, eca, ecb) 31.03/14.65 new_esEs9(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) 31.03/14.65 new_compare16(EQ, EQ) -> EQ 31.03/14.65 new_compare5([], :(xwv300, xwv301), bha) -> LT 31.03/14.65 new_lt12(xwv18, xwv13, bff) -> new_esEs29(new_compare8(xwv18, xwv13, bff)) 31.03/14.65 new_ltEs20(xwv83, xwv84, ty_Double) -> new_ltEs16(xwv83, xwv84) 31.03/14.65 new_esEs32(xwv280, xwv330, ty_Float) -> new_esEs21(xwv280, xwv330) 31.03/14.65 new_esEs28(xwv611, xwv621, app(app(app(ty_@3, de), df), dg)) -> new_esEs22(xwv611, xwv621, de, df, dg) 31.03/14.65 new_esEs38(xwv73, xwv76, ty_Int) -> new_esEs26(xwv73, xwv76) 31.03/14.65 new_compare18(xwv156, xwv157, False, dac, dad) -> GT 31.03/14.65 new_esEs11(xwv41, xwv301, ty_Double) -> new_esEs18(xwv41, xwv301) 31.03/14.65 new_esEs6(xwv41, xwv301, ty_@0) -> new_esEs14(xwv41, xwv301) 31.03/14.65 new_ltEs5(xwv612, xwv622, ty_Char) -> new_ltEs13(xwv612, xwv622) 31.03/14.65 new_lt24(xwv18, xwv13, ty_Char) -> new_lt14(xwv18, xwv13) 31.03/14.65 new_lt24(xwv18, xwv13, app(ty_[], bga)) -> new_lt18(xwv18, xwv13, bga) 31.03/14.65 new_ltEs8(Right(xwv610), Right(xwv620), bag, app(app(ty_@2, bbg), bbh)) -> new_ltEs12(xwv610, xwv620, bbg, bbh) 31.03/14.65 new_esEs34(xwv280, xwv330, ty_Double) -> new_esEs18(xwv280, xwv330) 31.03/14.65 new_compare5(:(xwv40, xwv41), :(xwv300, xwv301), bha) -> new_primCompAux0(xwv40, xwv300, new_compare5(xwv41, xwv301, bha), bha) 31.03/14.65 new_esEs8(xwv40, xwv300, ty_Bool) -> new_esEs19(xwv40, xwv300) 31.03/14.65 new_ltEs12(@2(xwv610, xwv611), @2(xwv620, xwv621), fbb, fbc) -> new_pePe(new_lt23(xwv610, xwv620, fbb), new_asAs(new_esEs40(xwv610, xwv620, fbb), new_ltEs23(xwv611, xwv621, fbc))) 31.03/14.65 new_esEs15(Right(xwv280), Right(xwv330), gbc, ty_@0) -> new_esEs14(xwv280, xwv330) 31.03/14.65 new_ltEs22(xwv120, xwv122, ty_@0) -> new_ltEs15(xwv120, xwv122) 31.03/14.65 new_esEs30(xwv280, xwv330, ty_Int) -> new_esEs26(xwv280, xwv330) 31.03/14.65 new_esEs10(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) 31.03/14.65 new_esEs40(xwv610, xwv620, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_esEs22(xwv610, xwv620, fbe, fbf, fbg) 31.03/14.65 new_ltEs20(xwv83, xwv84, app(app(ty_@2, cdg), cdh)) -> new_ltEs12(xwv83, xwv84, cdg, cdh) 31.03/14.65 new_ltEs8(Right(xwv610), Right(xwv620), bag, app(app(ty_Either, bbd), bbe)) -> new_ltEs8(xwv610, xwv620, bbd, bbe) 31.03/14.65 new_esEs34(xwv280, xwv330, ty_Float) -> new_esEs21(xwv280, xwv330) 31.03/14.65 new_esEs5(xwv40, xwv300, ty_Integer) -> new_esEs17(xwv40, xwv300) 31.03/14.65 new_esEs8(xwv40, xwv300, ty_Float) -> new_esEs21(xwv40, xwv300) 31.03/14.65 new_ltEs23(xwv611, xwv621, ty_Double) -> new_ltEs16(xwv611, xwv621) 31.03/14.65 new_compare26(xwv83, xwv84, False, ccf, ccg) -> new_compare19(xwv83, xwv84, new_ltEs20(xwv83, xwv84, ccf), ccf, ccg) 31.03/14.65 new_esEs28(xwv611, xwv621, app(app(ty_Either, dh), ea)) -> new_esEs15(xwv611, xwv621, dh, ea) 31.03/14.65 new_ltEs7(False, True) -> True 31.03/14.65 new_ltEs9(xwv61, xwv62) -> new_fsEs(new_compare9(xwv61, xwv62)) 31.03/14.65 new_esEs40(xwv610, xwv620, app(app(ty_Either, fbh), fca)) -> new_esEs15(xwv610, xwv620, fbh, fca) 31.03/14.65 new_esEs32(xwv280, xwv330, ty_Bool) -> new_esEs19(xwv280, xwv330) 31.03/14.65 new_esEs9(xwv40, xwv300, ty_Float) -> new_esEs21(xwv40, xwv300) 31.03/14.65 new_esEs7(xwv42, xwv302, ty_Integer) -> new_esEs17(xwv42, xwv302) 31.03/14.65 new_esEs12(:(xwv280, xwv281), :(xwv330, xwv331), ga) -> new_asAs(new_esEs13(xwv280, xwv330, ga), new_esEs12(xwv281, xwv331, ga)) 31.03/14.65 new_esEs30(xwv280, xwv330, ty_Integer) -> new_esEs17(xwv280, xwv330) 31.03/14.65 new_esEs4(xwv40, xwv300, ty_@0) -> new_esEs14(xwv40, xwv300) 31.03/14.65 new_esEs6(xwv41, xwv301, ty_Bool) -> new_esEs19(xwv41, xwv301) 31.03/14.65 new_ltEs7(True, False) -> False 31.03/14.65 new_compare7(False, False) -> EQ 31.03/14.65 new_ltEs19(xwv90, xwv91, ty_Integer) -> new_ltEs9(xwv90, xwv91) 31.03/14.65 new_compare19(xwv149, xwv150, False, def, deg) -> GT 31.03/14.65 new_lt20(xwv73, xwv76, ty_Ordering) -> new_lt11(xwv73, xwv76) 31.03/14.65 new_esEs5(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) 31.03/14.65 new_lt5(xwv611, xwv621, ty_Float) -> new_lt19(xwv611, xwv621) 31.03/14.65 new_lt24(xwv18, xwv13, app(app(ty_@2, bfg), bfh)) -> new_lt13(xwv18, xwv13, bfg, bfh) 31.03/14.65 new_primMulInt(Neg(xwv400), Neg(xwv3010)) -> Pos(new_primMulNat0(xwv400, xwv3010)) 31.03/14.65 new_ltEs7(False, False) -> True 31.03/14.65 new_primCmpInt(Pos(Zero), Pos(Succ(xwv3000))) -> new_primCmpNat0(Zero, Succ(xwv3000)) 31.03/14.65 new_esEs20(Just(xwv280), Just(xwv330), app(ty_Ratio, cad)) -> new_esEs23(xwv280, xwv330, cad) 31.03/14.65 new_esEs40(xwv610, xwv620, ty_Int) -> new_esEs26(xwv610, xwv620) 31.03/14.65 new_compare27(xwv40, xwv300, app(ty_Maybe, ceb)) -> new_compare28(xwv40, xwv300, ceb) 31.03/14.65 new_ltEs20(xwv83, xwv84, app(ty_[], cea)) -> new_ltEs17(xwv83, xwv84, cea) 31.03/14.65 new_ltEs5(xwv612, xwv622, ty_Integer) -> new_ltEs9(xwv612, xwv622) 31.03/14.65 new_lt14(xwv18, xwv13) -> new_esEs29(new_compare13(xwv18, xwv13)) 31.03/14.65 new_esEs8(xwv40, xwv300, ty_Double) -> new_esEs18(xwv40, xwv300) 31.03/14.65 new_lt4(xwv610, xwv620, ty_Ordering) -> new_lt11(xwv610, xwv620) 31.03/14.65 new_compare7(True, False) -> GT 31.03/14.65 new_lt20(xwv73, xwv76, ty_Float) -> new_lt19(xwv73, xwv76) 31.03/14.65 new_esEs39(xwv119, xwv121, app(ty_Maybe, ege)) -> new_esEs20(xwv119, xwv121, ege) 31.03/14.65 new_esEs7(xwv42, xwv302, app(app(ty_@2, efd), efe)) -> new_esEs16(xwv42, xwv302, efd, efe) 31.03/14.65 new_ltEs5(xwv612, xwv622, app(app(ty_@2, ff), fg)) -> new_ltEs12(xwv612, xwv622, ff, fg) 31.03/14.65 new_esEs32(xwv280, xwv330, ty_Char) -> new_esEs25(xwv280, xwv330) 31.03/14.65 new_esEs7(xwv42, xwv302, ty_@0) -> new_esEs14(xwv42, xwv302) 31.03/14.65 new_esEs8(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) 31.03/14.65 new_esEs35(xwv281, xwv331, app(app(ty_@2, dce), dcf)) -> new_esEs16(xwv281, xwv331, dce, dcf) 31.03/14.65 new_primMulInt(Pos(xwv400), Neg(xwv3010)) -> Neg(new_primMulNat0(xwv400, xwv3010)) 31.03/14.65 new_primMulInt(Neg(xwv400), Pos(xwv3010)) -> Neg(new_primMulNat0(xwv400, xwv3010)) 31.03/14.65 new_compare27(xwv40, xwv300, app(app(app(ty_@3, cec), ced), cee)) -> new_compare29(xwv40, xwv300, cec, ced, cee) 31.03/14.65 new_esEs9(xwv40, xwv300, ty_Ordering) -> new_esEs24(xwv40, xwv300) 31.03/14.65 new_esEs37(xwv72, xwv75, ty_Double) -> new_esEs18(xwv72, xwv75) 31.03/14.65 new_ltEs22(xwv120, xwv122, app(app(ty_Either, fac), fad)) -> new_ltEs8(xwv120, xwv122, fac, fad) 31.03/14.65 new_lt23(xwv610, xwv620, ty_Ordering) -> new_lt11(xwv610, xwv620) 31.03/14.65 new_lt22(xwv119, xwv121, app(app(ty_@2, ehd), ehe)) -> new_lt13(xwv119, xwv121, ehd, ehe) 31.03/14.65 new_sr0(Integer(xwv400), Integer(xwv3010)) -> Integer(new_primMulInt(xwv400, xwv3010)) 31.03/14.65 new_esEs28(xwv611, xwv621, ty_@0) -> new_esEs14(xwv611, xwv621) 31.03/14.65 new_esEs8(xwv40, xwv300, app(ty_Ratio, ffa)) -> new_esEs23(xwv40, xwv300, ffa) 31.03/14.65 new_lt11(xwv18, xwv13) -> new_esEs29(new_compare16(xwv18, xwv13)) 31.03/14.65 new_lt23(xwv610, xwv620, ty_Int) -> new_lt15(xwv610, xwv620) 31.03/14.65 new_esEs4(xwv40, xwv300, app(ty_Ratio, ecc)) -> new_esEs23(xwv40, xwv300, ecc) 31.03/14.65 new_lt21(xwv72, xwv75, ty_Integer) -> new_lt10(xwv72, xwv75) 31.03/14.65 new_ltEs21(xwv74, xwv77, app(ty_Maybe, dhg)) -> new_ltEs6(xwv74, xwv77, dhg) 31.03/14.65 new_esEs20(Nothing, Just(xwv330), bhb) -> False 31.03/14.65 new_esEs20(Just(xwv280), Nothing, bhb) -> False 31.03/14.65 new_asAs(True, xwv128) -> xwv128 31.03/14.65 new_gt(xwv4, xwv30, app(ty_[], bha)) -> new_esEs41(new_compare5(xwv4, xwv30, bha)) 31.03/14.65 new_esEs20(Nothing, Nothing, bhb) -> True 31.03/14.65 new_ltEs21(xwv74, xwv77, ty_Integer) -> new_ltEs9(xwv74, xwv77) 31.03/14.65 new_ltEs23(xwv611, xwv621, ty_Bool) -> new_ltEs7(xwv611, xwv621) 31.03/14.65 new_compare30(Right(xwv40), Right(xwv300), bgf, bgg) -> new_compare25(xwv40, xwv300, new_esEs9(xwv40, xwv300, bgg), bgf, bgg) 31.03/14.65 new_lt21(xwv72, xwv75, app(ty_[], dgd)) -> new_lt18(xwv72, xwv75, dgd) 31.03/14.65 new_ltEs24(xwv61, xwv62, ty_Ordering) -> new_ltEs10(xwv61, xwv62) 31.03/14.65 new_esEs15(Right(xwv280), Right(xwv330), gbc, app(app(app(ty_@3, gcb), gcc), gce)) -> new_esEs22(xwv280, xwv330, gcb, gcc, gce) 31.03/14.65 new_ltEs20(xwv83, xwv84, app(ty_Ratio, cdf)) -> new_ltEs11(xwv83, xwv84, cdf) 31.03/14.65 new_ltEs24(xwv61, xwv62, ty_Int) -> new_ltEs14(xwv61, xwv62) 31.03/14.65 new_lt5(xwv611, xwv621, app(app(ty_@2, ec), ed)) -> new_lt13(xwv611, xwv621, ec, ed) 31.03/14.65 new_esEs10(xwv40, xwv300, app(app(ty_@2, bcg), bch)) -> new_esEs16(xwv40, xwv300, bcg, bch) 31.03/14.65 new_gt(xwv4, xwv30, ty_Bool) -> new_esEs41(new_compare7(xwv4, xwv30)) 31.03/14.65 new_esEs20(Just(xwv280), Just(xwv330), app(app(ty_@2, bhf), bhg)) -> new_esEs16(xwv280, xwv330, bhf, bhg) 31.03/14.65 new_ltEs8(Right(xwv610), Right(xwv620), bag, ty_Integer) -> new_ltEs9(xwv610, xwv620) 31.03/14.65 new_lt16(xwv18, xwv13) -> new_esEs29(new_compare17(xwv18, xwv13)) 31.03/14.65 new_esEs27(xwv610, xwv620, app(app(ty_Either, ce), cf)) -> new_esEs15(xwv610, xwv620, ce, cf) 31.03/14.65 new_sr(xwv40, xwv301) -> new_primMulInt(xwv40, xwv301) 31.03/14.65 new_esEs15(Left(xwv280), Left(xwv330), app(ty_[], gaa), fhh) -> new_esEs12(xwv280, xwv330, gaa) 31.03/14.65 new_compare30(Right(xwv40), Left(xwv300), bgf, bgg) -> GT 31.03/14.65 new_primMulNat0(Zero, Zero) -> Zero 31.03/14.65 new_ltEs6(Just(xwv610), Just(xwv620), app(ty_Ratio, fhc)) -> new_ltEs11(xwv610, xwv620, fhc) 31.03/14.65 new_lt24(xwv18, xwv13, app(ty_Ratio, bff)) -> new_lt12(xwv18, xwv13, bff) 31.03/14.65 new_ltEs22(xwv120, xwv122, app(app(app(ty_@3, ehh), faa), fab)) -> new_ltEs4(xwv120, xwv122, ehh, faa, fab) 31.03/14.65 new_ltEs8(Left(xwv610), Left(xwv620), app(ty_[], baf), he) -> new_ltEs17(xwv610, xwv620, baf) 31.03/14.65 new_esEs4(xwv40, xwv300, app(app(ty_@2, ebe), ebf)) -> new_esEs16(xwv40, xwv300, ebe, ebf) 31.03/14.65 new_compare27(xwv40, xwv300, ty_Int) -> new_compare10(xwv40, xwv300) 31.03/14.65 new_esEs39(xwv119, xwv121, app(app(ty_@2, ehd), ehe)) -> new_esEs16(xwv119, xwv121, ehd, ehe) 31.03/14.65 new_lt23(xwv610, xwv620, app(ty_Ratio, fcb)) -> new_lt12(xwv610, xwv620, fcb) 31.03/14.65 new_ltEs20(xwv83, xwv84, app(ty_Maybe, cch)) -> new_ltEs6(xwv83, xwv84, cch) 31.03/14.65 new_ltEs19(xwv90, xwv91, app(ty_Ratio, ccb)) -> new_ltEs11(xwv90, xwv91, ccb) 31.03/14.65 new_esEs39(xwv119, xwv121, app(ty_Ratio, ehc)) -> new_esEs23(xwv119, xwv121, ehc) 31.03/14.65 new_esEs6(xwv41, xwv301, ty_Double) -> new_esEs18(xwv41, xwv301) 31.03/14.65 new_esEs28(xwv611, xwv621, ty_Char) -> new_esEs25(xwv611, xwv621) 31.03/14.65 new_esEs27(xwv610, xwv620, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs22(xwv610, xwv620, cb, cc, cd) 31.03/14.65 new_esEs24(EQ, GT) -> False 31.03/14.65 new_esEs24(GT, EQ) -> False 31.03/14.65 new_ltEs23(xwv611, xwv621, ty_Ordering) -> new_ltEs10(xwv611, xwv621) 31.03/14.65 new_compare16(EQ, GT) -> LT 31.03/14.65 new_ltEs19(xwv90, xwv91, app(ty_Maybe, cbd)) -> new_ltEs6(xwv90, xwv91, cbd) 31.03/14.65 new_esEs7(xwv42, xwv302, app(ty_Maybe, eff)) -> new_esEs20(xwv42, xwv302, eff) 31.03/14.65 new_esEs18(Double(xwv280, xwv281), Double(xwv330, xwv331)) -> new_esEs26(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) 31.03/14.65 new_esEs40(xwv610, xwv620, app(app(ty_@2, fcc), fcd)) -> new_esEs16(xwv610, xwv620, fcc, fcd) 31.03/14.65 new_lt4(xwv610, xwv620, ty_Double) -> new_lt17(xwv610, xwv620) 31.03/14.65 new_primEqInt(Neg(Succ(xwv2800)), Neg(Zero)) -> False 31.03/14.65 new_primEqInt(Neg(Zero), Neg(Succ(xwv3300))) -> False 31.03/14.65 new_esEs5(xwv40, xwv300, ty_Double) -> new_esEs18(xwv40, xwv300) 31.03/14.65 new_esEs27(xwv610, xwv620, app(ty_[], dc)) -> new_esEs12(xwv610, xwv620, dc) 31.03/14.65 new_esEs9(xwv40, xwv300, app(ty_Ratio, fgc)) -> new_esEs23(xwv40, xwv300, fgc) 31.03/14.65 new_esEs6(xwv41, xwv301, app(ty_Maybe, eed)) -> new_esEs20(xwv41, xwv301, eed) 31.03/14.65 new_esEs33(xwv281, xwv331, app(ty_[], cha)) -> new_esEs12(xwv281, xwv331, cha) 31.03/14.65 new_esEs9(xwv40, xwv300, ty_Bool) -> new_esEs19(xwv40, xwv300) 31.03/14.65 new_primEqInt(Pos(Succ(xwv2800)), Pos(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) 31.03/14.65 new_ltEs23(xwv611, xwv621, ty_Int) -> new_ltEs14(xwv611, xwv621) 31.03/14.65 new_ltEs24(xwv61, xwv62, ty_@0) -> new_ltEs15(xwv61, xwv62) 31.03/14.65 new_ltEs8(Right(xwv610), Right(xwv620), bag, ty_@0) -> new_ltEs15(xwv610, xwv620) 31.03/14.65 new_esEs34(xwv280, xwv330, app(app(ty_@2, dbc), dbd)) -> new_esEs16(xwv280, xwv330, dbc, dbd) 31.03/14.65 new_compare210(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, False, deh, dfa, dfb) -> new_compare110(xwv72, xwv73, xwv74, xwv75, xwv76, xwv77, new_lt21(xwv72, xwv75, deh), new_asAs(new_esEs37(xwv72, xwv75, deh), new_pePe(new_lt20(xwv73, xwv76, dfa), new_asAs(new_esEs38(xwv73, xwv76, dfa), new_ltEs21(xwv74, xwv77, dfb)))), deh, dfa, dfb) 31.03/14.65 new_ltEs6(Nothing, Nothing, fgd) -> True 31.03/14.65 new_ltEs8(Left(xwv610), Left(xwv620), ty_Ordering, he) -> new_ltEs10(xwv610, xwv620) 31.03/14.65 new_ltEs5(xwv612, xwv622, ty_Bool) -> new_ltEs7(xwv612, xwv622) 31.03/14.65 new_primEqInt(Pos(Succ(xwv2800)), Neg(xwv330)) -> False 31.03/14.65 new_primEqInt(Neg(Succ(xwv2800)), Pos(xwv330)) -> False 31.03/14.65 new_gt(xwv4, xwv30, ty_Int) -> new_gt0(xwv4, xwv30) 31.03/14.65 new_primCmpInt(Neg(Zero), Neg(Succ(xwv3000))) -> new_primCmpNat0(Succ(xwv3000), Zero) 31.03/14.65 new_ltEs6(Just(xwv610), Nothing, fgd) -> False 31.03/14.65 new_ltEs8(Left(xwv610), Left(xwv620), ty_Int, he) -> new_ltEs14(xwv610, xwv620) 31.03/14.65 new_gt(xwv4, xwv30, ty_Integer) -> new_esEs41(new_compare9(xwv4, xwv30)) 31.03/14.65 new_esEs9(xwv40, xwv300, ty_Integer) -> new_esEs17(xwv40, xwv300) 31.03/14.65 new_ltEs5(xwv612, xwv622, ty_Double) -> new_ltEs16(xwv612, xwv622) 31.03/14.65 new_ltEs10(LT, EQ) -> True 31.03/14.65 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 31.03/14.65 new_esEs16(@2(xwv280, xwv281), @2(xwv330, xwv331), cfe, cff) -> new_asAs(new_esEs32(xwv280, xwv330, cfe), new_esEs33(xwv281, xwv331, cff)) 31.03/14.65 new_ltEs19(xwv90, xwv91, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs4(xwv90, xwv91, cbe, cbf, cbg) 31.03/14.65 new_esEs38(xwv73, xwv76, ty_Double) -> new_esEs18(xwv73, xwv76) 31.03/14.65 new_lt20(xwv73, xwv76, app(ty_Ratio, dhc)) -> new_lt12(xwv73, xwv76, dhc) 31.03/14.65 new_lt24(xwv18, xwv13, ty_Double) -> new_lt17(xwv18, xwv13) 31.03/14.65 new_compare6(Double(xwv40, Pos(xwv410)), Double(xwv300, Pos(xwv3010))) -> new_compare10(new_sr(xwv40, Pos(xwv3010)), new_sr(Pos(xwv410), xwv300)) 31.03/14.65 new_lt21(xwv72, xwv75, app(app(ty_@2, dgb), dgc)) -> new_lt13(xwv72, xwv75, dgb, dgc) 31.03/14.65 new_esEs40(xwv610, xwv620, app(ty_Ratio, fcb)) -> new_esEs23(xwv610, xwv620, fcb) 31.03/14.65 new_esEs15(Right(xwv280), Right(xwv330), gbc, ty_Double) -> new_esEs18(xwv280, xwv330) 31.03/14.65 new_lt4(xwv610, xwv620, app(app(ty_@2, da), db)) -> new_lt13(xwv610, xwv620, da, db) 31.03/14.65 new_esEs7(xwv42, xwv302, app(ty_Ratio, egb)) -> new_esEs23(xwv42, xwv302, egb) 31.03/14.65 new_compare27(xwv40, xwv300, app(ty_[], cfc)) -> new_compare5(xwv40, xwv300, cfc) 31.03/14.65 new_compare12(@2(xwv40, xwv41), @2(xwv300, xwv301), bcb, bcc) -> new_compare24(xwv40, xwv41, xwv300, xwv301, new_asAs(new_esEs10(xwv40, xwv300, bcb), new_esEs11(xwv41, xwv301, bcc)), bcb, bcc) 31.03/14.65 new_gt(xwv4, xwv30, app(app(ty_Either, bgf), bgg)) -> new_esEs41(new_compare30(xwv4, xwv30, bgf, bgg)) 31.03/14.65 new_esEs13(xwv280, xwv330, app(app(ty_@2, ge), gf)) -> new_esEs16(xwv280, xwv330, ge, gf) 31.03/14.65 new_ltEs4(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bf, bg, bh) -> new_pePe(new_lt4(xwv610, xwv620, bf), new_asAs(new_esEs27(xwv610, xwv620, bf), new_pePe(new_lt5(xwv611, xwv621, bg), new_asAs(new_esEs28(xwv611, xwv621, bg), new_ltEs5(xwv612, xwv622, bh))))) 31.03/14.65 new_not(False) -> True 31.03/14.65 new_esEs9(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) 31.03/14.65 new_esEs28(xwv611, xwv621, app(ty_[], ee)) -> new_esEs12(xwv611, xwv621, ee) 31.03/14.65 new_esEs36(xwv282, xwv332, app(app(ty_@2, ddg), ddh)) -> new_esEs16(xwv282, xwv332, ddg, ddh) 31.03/14.65 new_esEs8(xwv40, xwv300, ty_@0) -> new_esEs14(xwv40, xwv300) 31.03/14.65 new_lt22(xwv119, xwv121, ty_Double) -> new_lt17(xwv119, xwv121) 31.03/14.65 new_ltEs24(xwv61, xwv62, app(ty_Maybe, fgd)) -> new_ltEs6(xwv61, xwv62, fgd) 31.03/14.65 new_ltEs24(xwv61, xwv62, ty_Integer) -> new_ltEs9(xwv61, xwv62) 31.03/14.65 new_esEs15(Right(xwv280), Right(xwv330), gbc, app(ty_Ratio, gcf)) -> new_esEs23(xwv280, xwv330, gcf) 31.03/14.65 new_esEs13(xwv280, xwv330, ty_Double) -> new_esEs18(xwv280, xwv330) 31.03/14.65 new_ltEs24(xwv61, xwv62, ty_Bool) -> new_ltEs7(xwv61, xwv62) 31.03/14.65 new_ltEs5(xwv612, xwv622, ty_Ordering) -> new_ltEs10(xwv612, xwv622) 31.03/14.65 new_compare15(xwv187, xwv188, xwv189, xwv190, False, cah, cba) -> GT 31.03/14.65 new_esEs36(xwv282, xwv332, ty_Double) -> new_esEs18(xwv282, xwv332) 31.03/14.65 new_compare24(xwv119, xwv120, xwv121, xwv122, False, egc, egd) -> new_compare111(xwv119, xwv120, xwv121, xwv122, new_lt22(xwv119, xwv121, egc), new_asAs(new_esEs39(xwv119, xwv121, egc), new_ltEs22(xwv120, xwv122, egd)), egc, egd) 31.03/14.65 new_esEs41(LT) -> False 31.03/14.65 new_lt5(xwv611, xwv621, ty_Double) -> new_lt17(xwv611, xwv621) 31.03/14.65 new_lt22(xwv119, xwv121, app(ty_Ratio, ehc)) -> new_lt12(xwv119, xwv121, ehc) 31.03/14.65 new_esEs38(xwv73, xwv76, app(app(ty_@2, dhd), dhe)) -> new_esEs16(xwv73, xwv76, dhd, dhe) 31.03/14.65 new_lt5(xwv611, xwv621, app(ty_Ratio, eb)) -> new_lt12(xwv611, xwv621, eb) 31.03/14.65 new_ltEs5(xwv612, xwv622, ty_Int) -> new_ltEs14(xwv612, xwv622) 31.03/14.65 new_lt24(xwv18, xwv13, ty_Ordering) -> new_lt11(xwv18, xwv13) 31.03/14.65 new_esEs9(xwv40, xwv300, app(app(ty_Either, ffc), ffd)) -> new_esEs15(xwv40, xwv300, ffc, ffd) 31.03/14.65 new_compare15(xwv187, xwv188, xwv189, xwv190, True, cah, cba) -> LT 31.03/14.65 new_ltEs22(xwv120, xwv122, ty_Char) -> new_ltEs13(xwv120, xwv122) 31.03/14.65 new_esEs9(xwv40, xwv300, app(app(app(ty_@3, ffh), fga), fgb)) -> new_esEs22(xwv40, xwv300, ffh, fga, fgb) 31.03/14.65 new_ltEs23(xwv611, xwv621, app(app(ty_Either, fdb), fdc)) -> new_ltEs8(xwv611, xwv621, fdb, fdc) 31.03/14.65 new_esEs5(xwv40, xwv300, app(ty_Ratio, edf)) -> new_esEs23(xwv40, xwv300, edf) 31.03/14.65 new_lt24(xwv18, xwv13, ty_Int) -> new_lt15(xwv18, xwv13) 31.03/14.65 new_esEs8(xwv40, xwv300, app(ty_Maybe, fee)) -> new_esEs20(xwv40, xwv300, fee) 31.03/14.65 new_ltEs5(xwv612, xwv622, app(app(app(ty_@3, eg), eh), fa)) -> new_ltEs4(xwv612, xwv622, eg, eh, fa) 31.03/14.65 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 31.03/14.65 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 31.03/14.65 new_ltEs17(xwv61, xwv62, eba) -> new_fsEs(new_compare5(xwv61, xwv62, eba)) 31.03/14.65 new_lt20(xwv73, xwv76, ty_Double) -> new_lt17(xwv73, xwv76) 31.03/14.65 new_gt(xwv4, xwv30, ty_Char) -> new_esEs41(new_compare13(xwv4, xwv30)) 31.03/14.65 new_lt24(xwv18, xwv13, ty_Integer) -> new_lt10(xwv18, xwv13) 31.03/14.65 new_esEs4(xwv40, xwv300, ty_Double) -> new_esEs18(xwv40, xwv300) 31.03/14.65 new_esEs32(xwv280, xwv330, app(ty_[], cfg)) -> new_esEs12(xwv280, xwv330, cfg) 31.03/14.65 new_ltEs8(Right(xwv610), Right(xwv620), bag, ty_Bool) -> new_ltEs7(xwv610, xwv620) 31.03/14.65 new_compare27(xwv40, xwv300, app(app(ty_@2, cfa), cfb)) -> new_compare12(xwv40, xwv300, cfa, cfb) 31.03/14.65 new_esEs27(xwv610, xwv620, ty_Float) -> new_esEs21(xwv610, xwv620) 31.03/14.65 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 31.03/14.65 new_lt20(xwv73, xwv76, app(ty_[], dhf)) -> new_lt18(xwv73, xwv76, dhf) 31.03/14.65 new_ltEs21(xwv74, xwv77, app(app(app(ty_@3, dhh), eaa), eab)) -> new_ltEs4(xwv74, xwv77, dhh, eaa, eab) 31.03/14.65 new_ltEs21(xwv74, xwv77, ty_Ordering) -> new_ltEs10(xwv74, xwv77) 31.03/14.65 new_esEs27(xwv610, xwv620, ty_Char) -> new_esEs25(xwv610, xwv620) 31.03/14.65 new_ltEs24(xwv61, xwv62, ty_Char) -> new_ltEs13(xwv61, xwv62) 31.03/14.65 new_esEs15(Right(xwv280), Right(xwv330), gbc, app(app(ty_Either, gbe), gbf)) -> new_esEs15(xwv280, xwv330, gbe, gbf) 31.03/14.65 new_esEs15(Right(xwv280), Right(xwv330), gbc, app(ty_Maybe, gca)) -> new_esEs20(xwv280, xwv330, gca) 31.03/14.65 new_esEs25(Char(xwv280), Char(xwv330)) -> new_primEqNat0(xwv280, xwv330) 31.03/14.65 new_ltEs21(xwv74, xwv77, ty_Bool) -> new_ltEs7(xwv74, xwv77) 31.03/14.65 new_ltEs21(xwv74, xwv77, ty_Int) -> new_ltEs14(xwv74, xwv77) 31.03/14.65 new_ltEs6(Just(xwv610), Just(xwv620), app(app(ty_@2, fhd), fhe)) -> new_ltEs12(xwv610, xwv620, fhd, fhe) 31.03/14.65 new_lt4(xwv610, xwv620, app(ty_[], dc)) -> new_lt18(xwv610, xwv620, dc) 31.03/14.65 new_esEs12([], [], ga) -> True 31.03/14.65 new_compare11(Float(xwv40, Neg(xwv410)), Float(xwv300, Neg(xwv3010))) -> new_compare10(new_sr(xwv40, Neg(xwv3010)), new_sr(Neg(xwv410), xwv300)) 31.03/14.65 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 31.03/14.65 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 31.03/14.65 new_primEqNat0(Zero, Zero) -> True 31.03/14.65 new_ltEs8(Right(xwv610), Right(xwv620), bag, ty_Char) -> new_ltEs13(xwv610, xwv620) 31.03/14.65 new_lt21(xwv72, xwv75, ty_Double) -> new_lt17(xwv72, xwv75) 31.03/14.65 new_esEs37(xwv72, xwv75, app(app(ty_@2, dgb), dgc)) -> new_esEs16(xwv72, xwv75, dgb, dgc) 31.03/14.65 new_lt5(xwv611, xwv621, app(ty_[], ee)) -> new_lt18(xwv611, xwv621, ee) 31.03/14.65 new_ltEs10(LT, GT) -> True 31.03/14.65 new_asAs(False, xwv128) -> False 31.03/14.65 new_ltEs19(xwv90, xwv91, ty_Int) -> new_ltEs14(xwv90, xwv91) 31.03/14.65 new_lt21(xwv72, xwv75, app(ty_Ratio, dga)) -> new_lt12(xwv72, xwv75, dga) 31.03/14.65 new_ltEs22(xwv120, xwv122, app(ty_Maybe, ehg)) -> new_ltEs6(xwv120, xwv122, ehg) 31.03/14.65 new_ltEs19(xwv90, xwv91, ty_Ordering) -> new_ltEs10(xwv90, xwv91) 31.03/14.65 new_ltEs20(xwv83, xwv84, ty_Ordering) -> new_ltEs10(xwv83, xwv84) 31.03/14.65 new_ltEs20(xwv83, xwv84, app(app(app(ty_@3, cda), cdb), cdc)) -> new_ltEs4(xwv83, xwv84, cda, cdb, cdc) 31.03/14.65 new_ltEs23(xwv611, xwv621, ty_Char) -> new_ltEs13(xwv611, xwv621) 31.03/14.65 new_compare16(GT, EQ) -> GT 31.03/14.65 new_esEs6(xwv41, xwv301, app(ty_Ratio, eeh)) -> new_esEs23(xwv41, xwv301, eeh) 31.03/14.65 new_ltEs20(xwv83, xwv84, ty_Int) -> new_ltEs14(xwv83, xwv84) 31.03/14.65 new_ltEs24(xwv61, xwv62, app(app(ty_Either, bag), he)) -> new_ltEs8(xwv61, xwv62, bag, he) 31.03/14.65 new_ltEs22(xwv120, xwv122, ty_Bool) -> new_ltEs7(xwv120, xwv122) 31.03/14.65 31.03/14.65 The set Q consists of the following terms: 31.03/14.65 31.03/14.65 new_esEs4(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_esEs35(x0, x1, ty_Ordering) 31.03/14.65 new_ltEs24(x0, x1, ty_Int) 31.03/14.65 new_gt(x0, x1, ty_Float) 31.03/14.65 new_ltEs6(Just(x0), Just(x1), ty_Bool) 31.03/14.65 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_esEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 31.03/14.65 new_esEs36(x0, x1, ty_Int) 31.03/14.65 new_ltEs6(Nothing, Nothing, x0) 31.03/14.65 new_ltEs20(x0, x1, app(ty_[], x2)) 31.03/14.65 new_esEs11(x0, x1, ty_Integer) 31.03/14.65 new_esEs28(x0, x1, ty_Char) 31.03/14.65 new_lt24(x0, x1, ty_Float) 31.03/14.65 new_esEs32(x0, x1, ty_Double) 31.03/14.65 new_esEs33(x0, x1, ty_Int) 31.03/14.65 new_lt22(x0, x1, ty_Ordering) 31.03/14.65 new_compare24(x0, x1, x2, x3, False, x4, x5) 31.03/14.65 new_esEs8(x0, x1, ty_Bool) 31.03/14.65 new_lt19(x0, x1) 31.03/14.65 new_esEs17(Integer(x0), Integer(x1)) 31.03/14.65 new_lt22(x0, x1, app(ty_[], x2)) 31.03/14.65 new_esEs8(x0, x1, ty_@0) 31.03/14.65 new_ltEs21(x0, x1, ty_Char) 31.03/14.65 new_esEs19(False, False) 31.03/14.65 new_esEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 31.03/14.65 new_ltEs22(x0, x1, app(ty_[], x2)) 31.03/14.65 new_lt15(x0, x1) 31.03/14.65 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_primEqInt(Pos(Zero), Pos(Zero)) 31.03/14.65 new_ltEs6(Just(x0), Just(x1), app(ty_[], x2)) 31.03/14.65 new_pePe(True, x0) 31.03/14.65 new_esEs15(Left(x0), Left(x1), ty_Integer, x2) 31.03/14.65 new_esEs7(x0, x1, ty_Double) 31.03/14.65 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_ltEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 31.03/14.65 new_asAs(False, x0) 31.03/14.65 new_esEs32(x0, x1, ty_Ordering) 31.03/14.65 new_ltEs22(x0, x1, ty_Double) 31.03/14.65 new_lt4(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_esEs35(x0, x1, ty_Double) 31.03/14.65 new_esEs4(x0, x1, ty_Bool) 31.03/14.65 new_esEs7(x0, x1, ty_Ordering) 31.03/14.65 new_compare27(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 31.03/14.65 new_esEs39(x0, x1, ty_Bool) 31.03/14.65 new_esEs35(x0, x1, ty_Char) 31.03/14.65 new_primEqInt(Neg(Zero), Neg(Zero)) 31.03/14.65 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 31.03/14.65 new_ltEs21(x0, x1, ty_Ordering) 31.03/14.65 new_esEs27(x0, x1, ty_Int) 31.03/14.65 new_esEs28(x0, x1, ty_Ordering) 31.03/14.65 new_esEs38(x0, x1, ty_Float) 31.03/14.65 new_lt23(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_lt24(x0, x1, ty_Integer) 31.03/14.65 new_lt12(x0, x1, x2) 31.03/14.65 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_ltEs23(x0, x1, ty_Ordering) 31.03/14.65 new_primMulNat0(Zero, Succ(x0)) 31.03/14.65 new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 31.03/14.65 new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 31.03/14.65 new_ltEs8(Right(x0), Left(x1), x2, x3) 31.03/14.65 new_ltEs8(Left(x0), Right(x1), x2, x3) 31.03/14.65 new_compare16(LT, LT) 31.03/14.65 new_ltEs5(x0, x1, ty_Float) 31.03/14.65 new_esEs37(x0, x1, app(ty_[], x2)) 31.03/14.65 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_esEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 31.03/14.65 new_esEs8(x0, x1, ty_Integer) 31.03/14.65 new_esEs36(x0, x1, ty_Bool) 31.03/14.65 new_primPlusNat0(Succ(x0), Zero) 31.03/14.65 new_esEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 31.03/14.65 new_ltEs16(x0, x1) 31.03/14.65 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_compare27(x0, x1, ty_Float) 31.03/14.65 new_esEs15(Left(x0), Left(x1), ty_Float, x2) 31.03/14.65 new_lt7(x0, x1) 31.03/14.65 new_esEs10(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_compare111(x0, x1, x2, x3, False, x4, x5, x6) 31.03/14.65 new_esEs15(Left(x0), Right(x1), x2, x3) 31.03/14.65 new_esEs15(Right(x0), Left(x1), x2, x3) 31.03/14.65 new_esEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 31.03/14.65 new_esEs40(x0, x1, ty_Ordering) 31.03/14.65 new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 31.03/14.65 new_gt(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_ltEs24(x0, x1, ty_@0) 31.03/14.65 new_esEs5(x0, x1, app(ty_[], x2)) 31.03/14.65 new_primEqInt(Pos(Zero), Neg(Zero)) 31.03/14.65 new_primEqInt(Neg(Zero), Pos(Zero)) 31.03/14.65 new_esEs30(x0, x1, ty_Int) 31.03/14.65 new_esEs4(x0, x1, ty_@0) 31.03/14.65 new_lt24(x0, x1, ty_Bool) 31.03/14.65 new_ltEs22(x0, x1, ty_Ordering) 31.03/14.65 new_esEs39(x0, x1, ty_Int) 31.03/14.65 new_esEs10(x0, x1, ty_Char) 31.03/14.65 new_ltEs6(Just(x0), Just(x1), ty_@0) 31.03/14.65 new_ltEs24(x0, x1, ty_Bool) 31.03/14.65 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 31.03/14.65 new_ltEs7(False, True) 31.03/14.65 new_ltEs7(True, False) 31.03/14.65 new_esEs13(x0, x1, ty_Ordering) 31.03/14.65 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_lt5(x0, x1, ty_Ordering) 31.03/14.65 new_esEs4(x0, x1, ty_Float) 31.03/14.65 new_lt20(x0, x1, ty_Ordering) 31.03/14.65 new_compare7(True, True) 31.03/14.65 new_esEs39(x0, x1, ty_@0) 31.03/14.65 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_ltEs6(Just(x0), Just(x1), ty_Float) 31.03/14.65 new_esEs20(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 31.03/14.65 new_esEs33(x0, x1, ty_Bool) 31.03/14.65 new_lt4(x0, x1, ty_Int) 31.03/14.65 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_compare27(x0, x1, ty_Integer) 31.03/14.65 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_compare30(Left(x0), Left(x1), x2, x3) 31.03/14.65 new_esEs10(x0, x1, ty_Ordering) 31.03/14.65 new_gt(x0, x1, ty_Bool) 31.03/14.65 new_esEs5(x0, x1, ty_Ordering) 31.03/14.65 new_ltEs10(GT, GT) 31.03/14.65 new_ltEs24(x0, x1, ty_Integer) 31.03/14.65 new_esEs27(x0, x1, ty_Bool) 31.03/14.65 new_esEs8(x0, x1, ty_Float) 31.03/14.65 new_esEs24(EQ, GT) 31.03/14.65 new_esEs24(GT, EQ) 31.03/14.65 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 31.03/14.65 new_esEs34(x0, x1, ty_@0) 31.03/14.65 new_esEs4(x0, x1, ty_Int) 31.03/14.65 new_compare112(x0, x1, True, x2) 31.03/14.65 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_esEs39(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_compare18(x0, x1, False, x2, x3) 31.03/14.65 new_esEs20(Just(x0), Just(x1), ty_Integer) 31.03/14.65 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_esEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 31.03/14.65 new_ltEs6(Just(x0), Just(x1), ty_Int) 31.03/14.65 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_lt23(x0, x1, ty_Char) 31.03/14.65 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_gt0(x0, x1) 31.03/14.65 new_esEs7(x0, x1, ty_Char) 31.03/14.65 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 31.03/14.65 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 31.03/14.65 new_ltEs5(x0, x1, ty_Integer) 31.03/14.65 new_esEs38(x0, x1, ty_@0) 31.03/14.65 new_esEs8(x0, x1, ty_Int) 31.03/14.65 new_esEs6(x0, x1, ty_Int) 31.03/14.65 new_esEs5(x0, x1, ty_Double) 31.03/14.65 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 31.03/14.65 new_lt21(x0, x1, ty_Float) 31.03/14.65 new_esEs9(x0, x1, ty_Ordering) 31.03/14.65 new_ltEs19(x0, x1, ty_Char) 31.03/14.65 new_esEs15(Left(x0), Left(x1), ty_@0, x2) 31.03/14.65 new_esEs9(x0, x1, ty_Float) 31.03/14.65 new_lt24(x0, x1, ty_@0) 31.03/14.65 new_gt(x0, x1, ty_Integer) 31.03/14.65 new_esEs12([], :(x0, x1), x2) 31.03/14.65 new_lt21(x0, x1, ty_Ordering) 31.03/14.65 new_esEs40(x0, x1, ty_Double) 31.03/14.65 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs38(x0, x1, ty_Integer) 31.03/14.65 new_esEs37(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_compare30(Right(x0), Right(x1), x2, x3) 31.03/14.65 new_ltEs5(x0, x1, ty_Ordering) 31.03/14.65 new_esEs9(x0, x1, ty_Char) 31.03/14.65 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs20(Just(x0), Just(x1), ty_Float) 31.03/14.65 new_compare19(x0, x1, True, x2, x3) 31.03/14.65 new_esEs36(x0, x1, ty_Float) 31.03/14.65 new_esEs20(Just(x0), Just(x1), ty_Bool) 31.03/14.65 new_esEs6(x0, x1, ty_Bool) 31.03/14.65 new_compare16(EQ, LT) 31.03/14.65 new_compare16(LT, EQ) 31.03/14.65 new_esEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 31.03/14.65 new_esEs11(x0, x1, ty_Bool) 31.03/14.65 new_esEs18(Double(x0, x1), Double(x2, x3)) 31.03/14.65 new_lt5(x0, x1, ty_Float) 31.03/14.65 new_compare25(x0, x1, True, x2, x3) 31.03/14.65 new_esEs28(x0, x1, ty_Double) 31.03/14.65 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs11(x0, x1, ty_Float) 31.03/14.65 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_lt21(x0, x1, ty_Char) 31.03/14.65 new_esEs32(x0, x1, ty_Char) 31.03/14.65 new_esEs33(x0, x1, app(ty_[], x2)) 31.03/14.65 new_gt(x0, x1, ty_Int) 31.03/14.65 new_esEs13(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_lt14(x0, x1) 31.03/14.65 new_lt20(x0, x1, ty_Double) 31.03/14.65 new_esEs36(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_compare30(Left(x0), Right(x1), x2, x3) 31.03/14.65 new_compare30(Right(x0), Left(x1), x2, x3) 31.03/14.65 new_lt18(x0, x1, x2) 31.03/14.65 new_primMulNat0(Succ(x0), Zero) 31.03/14.65 new_ltEs21(x0, x1, ty_Double) 31.03/14.65 new_compare27(x0, x1, ty_Ordering) 31.03/14.65 new_ltEs6(Just(x0), Just(x1), ty_Integer) 31.03/14.65 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_esEs13(x0, x1, ty_Double) 31.03/14.65 new_lt5(x0, x1, ty_Char) 31.03/14.65 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_lt22(x0, x1, ty_Double) 31.03/14.65 new_esEs5(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 31.03/14.65 new_compare211(x0, x1, False, x2) 31.03/14.65 new_esEs4(x0, x1, ty_Integer) 31.03/14.65 new_ltEs23(x0, x1, ty_Char) 31.03/14.65 new_ltEs15(x0, x1) 31.03/14.65 new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 31.03/14.65 new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 31.03/14.65 new_esEs20(Just(x0), Just(x1), app(ty_[], x2)) 31.03/14.65 new_compare28(Just(x0), Nothing, x1) 31.03/14.65 new_esEs39(x0, x1, ty_Integer) 31.03/14.65 new_compare16(EQ, EQ) 31.03/14.65 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_lt20(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_esEs37(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs11(x0, x1, ty_Int) 31.03/14.65 new_esEs9(x0, x1, ty_Bool) 31.03/14.65 new_esEs24(LT, GT) 31.03/14.65 new_esEs24(GT, LT) 31.03/14.65 new_gt(x0, x1, ty_Double) 31.03/14.65 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_esEs27(x0, x1, ty_Float) 31.03/14.65 new_compare27(x0, x1, ty_Int) 31.03/14.65 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_esEs37(x0, x1, ty_Double) 31.03/14.65 new_lt22(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_esEs38(x0, x1, ty_Ordering) 31.03/14.65 new_lt24(x0, x1, ty_Double) 31.03/14.65 new_compare18(x0, x1, True, x2, x3) 31.03/14.65 new_esEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 31.03/14.65 new_gt(x0, x1, ty_Ordering) 31.03/14.65 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 31.03/14.65 new_esEs6(x0, x1, ty_Integer) 31.03/14.65 new_ltEs20(x0, x1, ty_Char) 31.03/14.65 new_esEs8(x0, x1, app(ty_[], x2)) 31.03/14.65 new_lt4(x0, x1, ty_Integer) 31.03/14.65 new_esEs26(x0, x1) 31.03/14.65 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_ltEs10(EQ, EQ) 31.03/14.65 new_esEs13(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_lt22(x0, x1, ty_Float) 31.03/14.65 new_lt21(x0, x1, ty_@0) 31.03/14.65 new_esEs7(x0, x1, ty_Float) 31.03/14.65 new_esEs5(x0, x1, ty_@0) 31.03/14.65 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 31.03/14.65 new_ltEs21(x0, x1, app(ty_[], x2)) 31.03/14.65 new_esEs37(x0, x1, ty_Ordering) 31.03/14.65 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_lt21(x0, x1, ty_Integer) 31.03/14.65 new_esEs28(x0, x1, ty_Float) 31.03/14.65 new_esEs20(Just(x0), Nothing, x1) 31.03/14.65 new_esEs28(x0, x1, app(ty_[], x2)) 31.03/14.65 new_primEqNat0(Succ(x0), Succ(x1)) 31.03/14.65 new_ltEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 31.03/14.65 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 31.03/14.65 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 31.03/14.65 new_ltEs20(x0, x1, ty_Int) 31.03/14.65 new_esEs15(Right(x0), Right(x1), x2, ty_Ordering) 31.03/14.65 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_esEs32(x0, x1, ty_Float) 31.03/14.65 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 31.03/14.65 new_lt24(x0, x1, ty_Int) 31.03/14.65 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_primPlusNat0(Zero, Zero) 31.03/14.65 new_ltEs24(x0, x1, app(ty_[], x2)) 31.03/14.65 new_compare16(GT, LT) 31.03/14.65 new_compare16(LT, GT) 31.03/14.65 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 31.03/14.65 new_esEs20(Just(x0), Just(x1), app(ty_Maybe, x2)) 31.03/14.65 new_not(True) 31.03/14.65 new_esEs6(x0, x1, ty_@0) 31.03/14.65 new_esEs34(x0, x1, ty_Integer) 31.03/14.65 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_ltEs5(x0, x1, ty_Bool) 31.03/14.65 new_ltEs10(GT, LT) 31.03/14.65 new_ltEs10(LT, GT) 31.03/14.65 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 31.03/14.65 new_lt4(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 31.03/14.65 new_lt4(x0, x1, ty_Float) 31.03/14.65 new_esEs7(x0, x1, ty_Integer) 31.03/14.65 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 31.03/14.65 new_compare12(@2(x0, x1), @2(x2, x3), x4, x5) 31.03/14.65 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 31.03/14.65 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_lt24(x0, x1, ty_Char) 31.03/14.65 new_lt4(x0, x1, ty_Bool) 31.03/14.65 new_esEs27(x0, x1, ty_Integer) 31.03/14.65 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_compare27(x0, x1, ty_Bool) 31.03/14.65 new_compare28(Just(x0), Just(x1), x2) 31.03/14.65 new_esEs33(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_compare26(x0, x1, True, x2, x3) 31.03/14.65 new_asAs(True, x0) 31.03/14.65 new_lt20(x0, x1, ty_Integer) 31.03/14.65 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs7(x0, x1, ty_Bool) 31.03/14.65 new_esEs15(Right(x0), Right(x1), x2, ty_Double) 31.03/14.65 new_lt4(x0, x1, app(ty_[], x2)) 31.03/14.65 new_gt(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_ltEs5(x0, x1, ty_Int) 31.03/14.65 new_esEs10(x0, x1, ty_Double) 31.03/14.65 new_lt16(x0, x1) 31.03/14.65 new_esEs20(Just(x0), Just(x1), ty_Ordering) 31.03/14.65 new_ltEs5(x0, x1, ty_Char) 31.03/14.65 new_compare27(x0, x1, ty_Char) 31.03/14.65 new_ltEs20(x0, x1, ty_Bool) 31.03/14.65 new_esEs35(x0, x1, ty_Float) 31.03/14.65 new_compare27(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_primCmpNat0(Succ(x0), Zero) 31.03/14.65 new_compare27(x0, x1, ty_Double) 31.03/14.65 new_esEs11(x0, x1, ty_Ordering) 31.03/14.65 new_esEs19(True, True) 31.03/14.65 new_ltEs22(x0, x1, ty_Integer) 31.03/14.65 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_ltEs5(x0, x1, ty_Double) 31.03/14.65 new_compare29(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 31.03/14.65 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_esEs29(EQ) 31.03/14.65 new_fsEs(x0) 31.03/14.65 new_esEs39(x0, x1, ty_Double) 31.03/14.65 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_esEs7(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_ltEs20(x0, x1, ty_Integer) 31.03/14.65 new_esEs9(x0, x1, ty_Double) 31.03/14.65 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs28(x0, x1, ty_Integer) 31.03/14.65 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_esEs39(x0, x1, ty_Float) 31.03/14.65 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_lt24(x0, x1, app(ty_[], x2)) 31.03/14.65 new_esEs39(x0, x1, app(ty_[], x2)) 31.03/14.65 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 31.03/14.65 new_esEs8(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_lt24(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_lt20(x0, x1, ty_Char) 31.03/14.65 new_compare13(Char(x0), Char(x1)) 31.03/14.65 new_esEs4(x0, x1, ty_Double) 31.03/14.65 new_esEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) 31.03/14.65 new_esEs10(x0, x1, ty_Float) 31.03/14.65 new_ltEs22(x0, x1, ty_Bool) 31.03/14.65 new_lt23(x0, x1, ty_@0) 31.03/14.65 new_esEs34(x0, x1, ty_Bool) 31.03/14.65 new_primEqNat0(Zero, Succ(x0)) 31.03/14.65 new_esEs7(x0, x1, ty_@0) 31.03/14.65 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 31.03/14.65 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 31.03/14.65 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs34(x0, x1, ty_Char) 31.03/14.65 new_esEs11(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs20(Nothing, Just(x0), x1) 31.03/14.65 new_esEs27(x0, x1, ty_@0) 31.03/14.65 new_compare19(x0, x1, False, x2, x3) 31.03/14.65 new_lt22(x0, x1, ty_Integer) 31.03/14.65 new_esEs11(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_ltEs20(x0, x1, ty_@0) 31.03/14.65 new_ltEs22(x0, x1, ty_Int) 31.03/14.65 new_lt20(x0, x1, ty_Bool) 31.03/14.65 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs15(Left(x0), Left(x1), ty_Ordering, x2) 31.03/14.65 new_primEqNat0(Zero, Zero) 31.03/14.65 new_lt20(x0, x1, ty_Float) 31.03/14.65 new_esEs20(Just(x0), Just(x1), ty_Double) 31.03/14.65 new_esEs13(x0, x1, ty_Int) 31.03/14.65 new_not(False) 31.03/14.65 new_lt11(x0, x1) 31.03/14.65 new_esEs11(x0, x1, ty_Double) 31.03/14.65 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_esEs24(GT, GT) 31.03/14.65 new_ltEs22(x0, x1, ty_Char) 31.03/14.65 new_ltEs23(x0, x1, ty_@0) 31.03/14.65 new_esEs24(LT, EQ) 31.03/14.65 new_esEs24(EQ, LT) 31.03/14.65 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_esEs34(x0, x1, ty_Int) 31.03/14.65 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_ltEs17(x0, x1, x2) 31.03/14.65 new_esEs12(:(x0, x1), :(x2, x3), x4) 31.03/14.65 new_esEs34(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs28(x0, x1, ty_Bool) 31.03/14.65 new_lt21(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_compare26(x0, x1, False, x2, x3) 31.03/14.65 new_ltEs22(x0, x1, ty_Float) 31.03/14.65 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_lt21(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs35(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_lt22(x0, x1, ty_Bool) 31.03/14.65 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs13(x0, x1, ty_Char) 31.03/14.65 new_esEs13(x0, x1, ty_Float) 31.03/14.65 new_lt20(x0, x1, ty_Int) 31.03/14.65 new_lt5(x0, x1, ty_Double) 31.03/14.65 new_lt22(x0, x1, ty_Char) 31.03/14.65 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_esEs41(LT) 31.03/14.65 new_esEs27(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_lt22(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_compare112(x0, x1, False, x2) 31.03/14.65 new_lt6(x0, x1, x2) 31.03/14.65 new_ltEs5(x0, x1, app(ty_[], x2)) 31.03/14.65 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs34(x0, x1, ty_Float) 31.03/14.65 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_esEs20(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 31.03/14.65 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_compare15(x0, x1, x2, x3, True, x4, x5) 31.03/14.65 new_ltEs19(x0, x1, ty_Bool) 31.03/14.65 new_esEs31(x0, x1, ty_Int) 31.03/14.65 new_esEs28(x0, x1, ty_Int) 31.03/14.65 new_compare5(:(x0, x1), [], x2) 31.03/14.65 new_esEs27(x0, x1, ty_Double) 31.03/14.65 new_esEs12([], [], x0) 31.03/14.65 new_ltEs23(x0, x1, app(ty_[], x2)) 31.03/14.65 new_primMulInt(Pos(x0), Pos(x1)) 31.03/14.65 new_ltEs19(x0, x1, ty_@0) 31.03/14.65 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_lt17(x0, x1) 31.03/14.65 new_esEs10(x0, x1, ty_Bool) 31.03/14.65 new_esEs35(x0, x1, ty_Int) 31.03/14.65 new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 31.03/14.65 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_ltEs10(LT, LT) 31.03/14.65 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs8(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs6(x0, x1, app(ty_[], x2)) 31.03/14.65 new_esEs10(x0, x1, ty_Integer) 31.03/14.65 new_ltEs24(x0, x1, ty_Ordering) 31.03/14.65 new_lt22(x0, x1, ty_Int) 31.03/14.65 new_compare10(x0, x1) 31.03/14.65 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_compare16(GT, GT) 31.03/14.65 new_lt23(x0, x1, ty_Float) 31.03/14.65 new_primMulInt(Neg(x0), Neg(x1)) 31.03/14.65 new_esEs34(x0, x1, ty_Double) 31.03/14.65 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs13(x0, x1, ty_Bool) 31.03/14.65 new_ltEs21(x0, x1, ty_Int) 31.03/14.65 new_esEs28(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 31.03/14.65 new_esEs33(x0, x1, ty_Ordering) 31.03/14.65 new_esEs37(x0, x1, ty_Float) 31.03/14.65 new_compare17(@0, @0) 31.03/14.65 new_compare211(x0, x1, True, x2) 31.03/14.65 new_esEs11(x0, x1, app(ty_[], x2)) 31.03/14.65 new_esEs27(x0, x1, ty_Ordering) 31.03/14.65 new_esEs15(Right(x0), Right(x1), x2, ty_Float) 31.03/14.65 new_esEs36(x0, x1, ty_Char) 31.03/14.65 new_esEs36(x0, x1, ty_Double) 31.03/14.65 new_sr(x0, x1) 31.03/14.65 new_esEs29(GT) 31.03/14.65 new_ltEs11(x0, x1, x2) 31.03/14.65 new_esEs24(EQ, EQ) 31.03/14.65 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_esEs27(x0, x1, ty_Char) 31.03/14.65 new_lt4(x0, x1, ty_Double) 31.03/14.65 new_esEs36(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_lt8(x0, x1, x2, x3, x4) 31.03/14.65 new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 31.03/14.65 new_esEs13(x0, x1, ty_Integer) 31.03/14.65 new_ltEs10(GT, EQ) 31.03/14.65 new_ltEs10(EQ, GT) 31.03/14.65 new_esEs36(x0, x1, ty_Ordering) 31.03/14.65 new_esEs38(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs4(x0, x1, ty_Char) 31.03/14.65 new_primCmpNat0(Succ(x0), Succ(x1)) 31.03/14.65 new_esEs12(:(x0, x1), [], x2) 31.03/14.65 new_esEs39(x0, x1, ty_Char) 31.03/14.65 new_esEs33(x0, x1, ty_Char) 31.03/14.65 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs40(x0, x1, app(ty_[], x2)) 31.03/14.65 new_esEs5(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs34(x0, x1, ty_Ordering) 31.03/14.65 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 31.03/14.65 new_compare9(Integer(x0), Integer(x1)) 31.03/14.65 new_ltEs19(x0, x1, ty_Integer) 31.03/14.65 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs32(x0, x1, app(ty_[], x2)) 31.03/14.65 new_esEs33(x0, x1, ty_Double) 31.03/14.65 new_lt21(x0, x1, app(ty_[], x2)) 31.03/14.65 new_esEs10(x0, x1, ty_@0) 31.03/14.65 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 31.03/14.65 new_ltEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 31.03/14.65 new_compare27(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs10(x0, x1, ty_Int) 31.03/14.65 new_primMulInt(Pos(x0), Neg(x1)) 31.03/14.65 new_primMulInt(Neg(x0), Pos(x1)) 31.03/14.65 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 31.03/14.65 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 31.03/14.65 new_ltEs24(x0, x1, ty_Char) 31.03/14.65 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_ltEs24(x0, x1, ty_Double) 31.03/14.65 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 31.03/14.65 new_esEs35(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_lt20(x0, x1, app(ty_[], x2)) 31.03/14.65 new_primPlusNat0(Succ(x0), Succ(x1)) 31.03/14.65 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_esEs11(x0, x1, ty_Char) 31.03/14.65 new_ltEs6(Just(x0), Just(x1), ty_Ordering) 31.03/14.65 new_compare14(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 31.03/14.65 new_ltEs19(x0, x1, ty_Float) 31.03/14.65 new_primCompAux0(x0, x1, x2, x3) 31.03/14.65 new_esEs41(GT) 31.03/14.65 new_compare28(Nothing, Just(x0), x1) 31.03/14.65 new_lt4(x0, x1, ty_Char) 31.03/14.65 new_compare28(Nothing, Nothing, x0) 31.03/14.65 new_esEs37(x0, x1, ty_@0) 31.03/14.65 new_ltEs10(EQ, LT) 31.03/14.65 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 31.03/14.65 new_ltEs10(LT, EQ) 31.03/14.65 new_esEs4(x0, x1, app(ty_[], x2)) 31.03/14.65 new_primCmpNat0(Zero, Succ(x0)) 31.03/14.65 new_esEs35(x0, x1, ty_Bool) 31.03/14.65 new_esEs6(x0, x1, ty_Char) 31.03/14.65 new_lt21(x0, x1, ty_Int) 31.03/14.65 new_esEs39(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_primCompAux00(x0, EQ) 31.03/14.65 new_esEs6(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 31.03/14.65 new_esEs15(Left(x0), Left(x1), app(ty_[], x2), x3) 31.03/14.65 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_compare5([], :(x0, x1), x2) 31.03/14.65 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 31.03/14.65 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 31.03/14.65 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_lt4(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_ltEs19(x0, x1, ty_Int) 31.03/14.65 new_ltEs23(x0, x1, ty_Integer) 31.03/14.65 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_lt22(x0, x1, ty_@0) 31.03/14.65 new_ltEs14(x0, x1) 31.03/14.65 new_esEs6(x0, x1, ty_Ordering) 31.03/14.65 new_esEs4(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_esEs19(False, True) 31.03/14.65 new_esEs19(True, False) 31.03/14.65 new_ltEs6(Just(x0), Just(x1), ty_Char) 31.03/14.65 new_esEs9(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_primMulNat0(Succ(x0), Succ(x1)) 31.03/14.65 new_ltEs7(False, False) 31.03/14.65 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_compare27(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_lt23(x0, x1, ty_Int) 31.03/14.65 new_ltEs23(x0, x1, ty_Float) 31.03/14.65 new_lt4(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_esEs7(x0, x1, ty_Int) 31.03/14.65 new_esEs8(x0, x1, ty_Char) 31.03/14.65 new_ltEs21(x0, x1, ty_@0) 31.03/14.65 new_esEs28(x0, x1, ty_@0) 31.03/14.65 new_primEqNat0(Succ(x0), Zero) 31.03/14.65 new_esEs40(x0, x1, ty_@0) 31.03/14.65 new_primCmpInt(Neg(Zero), Neg(Zero)) 31.03/14.65 new_gt(x0, x1, ty_Char) 31.03/14.65 new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 31.03/14.65 new_compare111(x0, x1, x2, x3, True, x4, x5, x6) 31.03/14.65 new_esEs13(x0, x1, app(ty_[], x2)) 31.03/14.65 new_ltEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 31.03/14.65 new_esEs32(x0, x1, ty_Integer) 31.03/14.65 new_esEs38(x0, x1, app(ty_[], x2)) 31.03/14.65 new_ltEs23(x0, x1, ty_Bool) 31.03/14.65 new_primCmpInt(Pos(Zero), Neg(Zero)) 31.03/14.65 new_primCmpInt(Neg(Zero), Pos(Zero)) 31.03/14.65 new_lt23(x0, x1, app(ty_[], x2)) 31.03/14.65 new_ltEs20(x0, x1, ty_Float) 31.03/14.65 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 31.03/14.65 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs32(x0, x1, ty_Int) 31.03/14.65 new_lt5(x0, x1, ty_Bool) 31.03/14.65 new_esEs9(x0, x1, ty_Int) 31.03/14.65 new_esEs36(x0, x1, app(ty_[], x2)) 31.03/14.65 new_lt23(x0, x1, ty_Integer) 31.03/14.65 new_esEs20(Nothing, Nothing, x0) 31.03/14.65 new_esEs15(Left(x0), Left(x1), ty_Double, x2) 31.03/14.65 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 31.03/14.65 new_ltEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_compare5([], [], x0) 31.03/14.65 new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_ltEs23(x0, x1, ty_Int) 31.03/14.65 new_lt20(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_compare7(False, False) 31.03/14.65 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 31.03/14.65 new_esEs40(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_esEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 31.03/14.65 new_esEs35(x0, x1, ty_Integer) 31.03/14.65 new_lt24(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_lt4(x0, x1, ty_Ordering) 31.03/14.65 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_lt23(x0, x1, ty_Bool) 31.03/14.65 new_ltEs22(x0, x1, ty_@0) 31.03/14.65 new_lt24(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_compare27(x0, x1, app(ty_[], x2)) 31.03/14.65 new_lt21(x0, x1, ty_Bool) 31.03/14.65 new_esEs32(x0, x1, ty_Bool) 31.03/14.65 new_esEs39(x0, x1, ty_Ordering) 31.03/14.65 new_lt5(x0, x1, ty_Int) 31.03/14.65 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 31.03/14.65 new_esEs4(x0, x1, ty_Ordering) 31.03/14.65 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 31.03/14.65 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 31.03/14.65 new_primCompAux00(x0, LT) 31.03/14.65 new_esEs13(x0, x1, ty_@0) 31.03/14.65 new_esEs20(Just(x0), Just(x1), ty_Int) 31.03/14.65 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs40(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_lt20(x0, x1, ty_@0) 31.03/14.65 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs9(x0, x1, ty_@0) 31.03/14.65 new_esEs20(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 31.03/14.65 new_gt(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs20(Just(x0), Just(x1), ty_Char) 31.03/14.65 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_esEs27(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 31.03/14.65 new_esEs21(Float(x0, x1), Float(x2, x3)) 31.03/14.65 new_primMulNat0(Zero, Zero) 31.03/14.65 new_esEs34(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_esEs15(Right(x0), Right(x1), x2, ty_Int) 31.03/14.65 new_esEs24(LT, LT) 31.03/14.65 new_sr0(Integer(x0), Integer(x1)) 31.03/14.65 new_compare27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs5(x0, x1, ty_Bool) 31.03/14.65 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs38(x0, x1, ty_Int) 31.03/14.65 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_compare14(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 31.03/14.65 new_ltEs24(x0, x1, ty_Float) 31.03/14.65 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 31.03/14.65 new_lt23(x0, x1, ty_Double) 31.03/14.65 new_lt24(x0, x1, ty_Ordering) 31.03/14.65 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 31.03/14.65 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 31.03/14.65 new_compare7(False, True) 31.03/14.65 new_compare7(True, False) 31.03/14.65 new_esEs27(x0, x1, app(ty_[], x2)) 31.03/14.65 new_esEs29(LT) 31.03/14.65 new_esEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 31.03/14.65 new_lt23(x0, x1, ty_Ordering) 31.03/14.65 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 31.03/14.65 new_esEs9(x0, x1, ty_Integer) 31.03/14.65 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 31.03/14.65 new_esEs33(x0, x1, ty_Float) 31.03/14.65 new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 31.03/14.65 new_esEs28(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_lt24(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_esEs7(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_ltEs20(x0, x1, ty_Ordering) 31.03/14.65 new_esEs35(x0, x1, app(ty_[], x2)) 31.03/14.65 new_ltEs6(Nothing, Just(x0), x1) 31.03/14.65 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 31.03/14.65 new_lt10(x0, x1) 31.03/14.65 new_gt(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_compare5(:(x0, x1), :(x2, x3), x4) 31.03/14.65 new_lt4(x0, x1, ty_@0) 31.03/14.65 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 31.03/14.65 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 31.03/14.65 new_esEs40(x0, x1, ty_Bool) 31.03/14.65 new_ltEs21(x0, x1, ty_Float) 31.03/14.65 new_ltEs5(x0, x1, ty_@0) 31.03/14.65 new_esEs32(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs38(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_esEs9(x0, x1, app(ty_[], x2)) 31.03/14.65 new_gt(x0, x1, app(ty_[], x2)) 31.03/14.65 new_lt5(x0, x1, ty_Integer) 31.03/14.65 new_compare27(x0, x1, ty_@0) 31.03/14.65 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 31.03/14.65 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 31.03/14.65 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_ltEs20(x0, x1, ty_Double) 31.03/14.65 new_esEs9(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_lt23(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs6(x0, x1, ty_Float) 31.03/14.65 new_esEs38(x0, x1, ty_Char) 31.03/14.65 new_esEs5(x0, x1, ty_Integer) 31.03/14.65 new_esEs33(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 31.03/14.65 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 31.03/14.65 new_esEs15(Right(x0), Right(x1), x2, ty_Char) 31.03/14.65 new_esEs38(x0, x1, ty_Double) 31.03/14.65 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs40(x0, x1, ty_Integer) 31.03/14.65 new_esEs38(x0, x1, ty_Bool) 31.03/14.65 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_lt13(x0, x1, x2, x3) 31.03/14.65 new_primCmpInt(Pos(Zero), Pos(Zero)) 31.03/14.65 new_esEs15(Right(x0), Right(x1), x2, ty_Bool) 31.03/14.65 new_lt5(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_esEs8(x0, x1, ty_Double) 31.03/14.65 new_compare15(x0, x1, x2, x3, False, x4, x5) 31.03/14.65 new_esEs32(x0, x1, ty_@0) 31.03/14.65 new_lt5(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs40(x0, x1, ty_Char) 31.03/14.65 new_esEs14(@0, @0) 31.03/14.65 new_ltEs19(x0, x1, ty_Double) 31.03/14.65 new_esEs36(x0, x1, ty_Integer) 31.03/14.65 new_esEs31(x0, x1, ty_Integer) 31.03/14.65 new_ltEs19(x0, x1, ty_Ordering) 31.03/14.65 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_lt5(x0, x1, app(ty_[], x2)) 31.03/14.65 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 31.03/14.65 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 31.03/14.65 new_ltEs21(x0, x1, ty_Integer) 31.03/14.65 new_esEs15(Left(x0), Left(x1), ty_Char, x2) 31.03/14.65 new_esEs8(x0, x1, ty_Ordering) 31.03/14.65 new_esEs5(x0, x1, ty_Float) 31.03/14.65 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_esEs40(x0, x1, ty_Int) 31.03/14.65 new_esEs6(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_lt21(x0, x1, ty_Double) 31.03/14.65 new_ltEs19(x0, x1, app(ty_[], x2)) 31.03/14.65 new_gt(x0, x1, ty_@0) 31.03/14.65 new_esEs35(x0, x1, ty_@0) 31.03/14.65 new_compare24(x0, x1, x2, x3, True, x4, x5) 31.03/14.65 new_lt9(x0, x1, x2, x3) 31.03/14.65 new_esEs34(x0, x1, app(ty_[], x2)) 31.03/14.65 new_ltEs13(x0, x1) 31.03/14.65 new_esEs33(x0, x1, ty_@0) 31.03/14.65 new_esEs7(x0, x1, app(ty_[], x2)) 31.03/14.65 new_esEs15(Right(x0), Right(x1), x2, ty_@0) 31.03/14.65 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_ltEs9(x0, x1) 31.03/14.65 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_esEs5(x0, x1, ty_Char) 31.03/14.65 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 31.03/14.65 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_ltEs6(Just(x0), Just(x1), ty_Double) 31.03/14.65 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 31.03/14.65 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_esEs25(Char(x0), Char(x1)) 31.03/14.65 new_esEs33(x0, x1, ty_Integer) 31.03/14.65 new_compare25(x0, x1, False, x2, x3) 31.03/14.65 new_esEs5(x0, x1, ty_Int) 31.03/14.65 new_esEs15(Right(x0), Right(x1), x2, ty_Integer) 31.03/14.65 new_esEs37(x0, x1, ty_Integer) 31.03/14.65 new_esEs15(Left(x0), Left(x1), ty_Int, x2) 31.03/14.65 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_esEs41(EQ) 31.03/14.65 new_esEs20(Just(x0), Just(x1), app(ty_Ratio, x2)) 31.03/14.65 new_esEs11(x0, x1, ty_@0) 31.03/14.65 new_esEs10(x0, x1, app(ty_Ratio, x2)) 31.03/14.65 new_esEs20(Just(x0), Just(x1), ty_@0) 31.03/14.65 new_esEs37(x0, x1, ty_Char) 31.03/14.65 new_esEs10(x0, x1, app(ty_[], x2)) 31.03/14.65 new_ltEs18(x0, x1) 31.03/14.65 new_primCompAux00(x0, GT) 31.03/14.65 new_esEs6(x0, x1, ty_Double) 31.03/14.65 new_esEs40(x0, x1, ty_Float) 31.03/14.65 new_esEs15(Left(x0), Left(x1), ty_Bool, x2) 31.03/14.65 new_ltEs7(True, True) 31.03/14.65 new_primPlusNat0(Zero, Succ(x0)) 31.03/14.65 new_esEs37(x0, x1, ty_Int) 31.03/14.65 new_esEs30(x0, x1, ty_Integer) 31.03/14.65 new_esEs36(x0, x1, ty_@0) 31.03/14.65 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 31.03/14.65 new_ltEs6(Just(x0), Nothing, x1) 31.03/14.65 new_lt5(x0, x1, ty_@0) 31.03/14.65 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 31.03/14.65 new_pePe(False, x0) 31.03/14.65 new_compare16(EQ, GT) 31.03/14.65 new_compare16(GT, EQ) 31.03/14.65 new_esEs37(x0, x1, ty_Bool) 31.03/14.65 new_ltEs21(x0, x1, ty_Bool) 31.03/14.65 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 31.03/14.65 new_ltEs23(x0, x1, ty_Double) 31.03/14.65 new_esEs32(x0, x1, app(ty_Maybe, x2)) 31.03/14.65 new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 31.03/14.65 new_primCmpNat0(Zero, Zero) 31.03/14.65 31.03/14.65 We have to consider all minimal (P,Q,R)-chains. 31.03/14.65 ---------------------------------------- 31.03/14.65 31.03/14.65 (54) QDPSizeChangeProof (EQUIVALENT) 31.03/14.65 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.03/14.65 31.03/14.65 From the DPs we obtained the following set of size-change graphs: 31.03/14.65 *new_delFromFM1(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, bb, bc) -> new_delFromFM(xwv31, xwv33, bb, bc) 31.03/14.65 The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 31.03/14.65 31.03/14.65 31.03/14.65 *new_delFromFM(Branch(xwv30, xwv31, xwv32, xwv33, xwv34), xwv4, bd, be) -> new_delFromFM2(xwv30, xwv31, xwv32, xwv33, xwv34, xwv4, new_gt(xwv4, xwv30, bd), bd, be) 31.03/14.65 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 8, 4 >= 9 31.03/14.65 31.03/14.65 31.03/14.65 *new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, h, ba) -> new_delFromFM1(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_lt24(xwv18, xwv13, h), h, ba) 31.03/14.65 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 31.03/14.65 31.03/14.65 31.03/14.65 *new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, h, ba) -> new_delFromFM(xwv17, xwv18, h, ba) 31.03/14.65 The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 31.03/14.65 31.03/14.65 31.03/14.65 ---------------------------------------- 31.03/14.65 31.03/14.65 (55) 31.03/14.65 YES 31.03/14.65 31.03/14.65 ---------------------------------------- 31.03/14.65 31.03/14.65 (56) 31.03/14.65 Obligation: 31.03/14.65 Q DP problem: 31.03/14.65 The TRS P consists of the following rules: 31.03/14.65 31.03/14.65 new_primEqNat(Succ(xwv2800), Succ(xwv3300)) -> new_primEqNat(xwv2800, xwv3300) 31.03/14.65 31.03/14.65 R is empty. 31.03/14.65 Q is empty. 31.03/14.65 We have to consider all minimal (P,Q,R)-chains. 31.03/14.65 ---------------------------------------- 31.03/14.65 31.03/14.65 (57) QDPSizeChangeProof (EQUIVALENT) 31.03/14.65 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 31.03/14.65 31.03/14.65 From the DPs we obtained the following set of size-change graphs: 31.03/14.65 *new_primEqNat(Succ(xwv2800), Succ(xwv3300)) -> new_primEqNat(xwv2800, xwv3300) 31.03/14.65 The graph contains the following edges 1 > 1, 2 > 2 31.03/14.65 31.03/14.65 31.03/14.65 ---------------------------------------- 31.03/14.65 31.03/14.65 (58) 31.03/14.65 YES 31.26/14.70 EOF