32.11/16.94 YES 34.63/17.65 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 34.63/17.65 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 34.63/17.65 34.63/17.65 34.63/17.65 H-Termination with start terms of the given HASKELL could be proven: 34.63/17.65 34.63/17.65 (0) HASKELL 34.63/17.65 (1) LR [EQUIVALENT, 0 ms] 34.63/17.65 (2) HASKELL 34.63/17.65 (3) CR [EQUIVALENT, 0 ms] 34.63/17.65 (4) HASKELL 34.63/17.65 (5) IFR [EQUIVALENT, 0 ms] 34.63/17.65 (6) HASKELL 34.63/17.65 (7) BR [EQUIVALENT, 4 ms] 34.63/17.65 (8) HASKELL 34.63/17.65 (9) COR [EQUIVALENT, 0 ms] 34.63/17.65 (10) HASKELL 34.63/17.65 (11) LetRed [EQUIVALENT, 0 ms] 34.63/17.65 (12) HASKELL 34.63/17.65 (13) NumRed [SOUND, 0 ms] 34.63/17.65 (14) HASKELL 34.63/17.65 (15) Narrow [SOUND, 0 ms] 34.63/17.65 (16) AND 34.63/17.65 (17) QDP 34.63/17.65 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 34.63/17.65 (19) YES 34.63/17.65 (20) QDP 34.63/17.65 (21) QDPSizeChangeProof [EQUIVALENT, 163 ms] 34.63/17.65 (22) YES 34.63/17.65 (23) QDP 34.63/17.65 (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] 34.63/17.65 (25) YES 34.63/17.65 (26) QDP 34.63/17.65 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 34.63/17.65 (28) YES 34.63/17.65 (29) QDP 34.63/17.65 (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] 34.63/17.65 (31) YES 34.63/17.65 (32) QDP 34.63/17.65 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 34.63/17.65 (34) YES 34.63/17.65 (35) QDP 34.63/17.65 (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] 34.63/17.65 (37) YES 34.63/17.65 (38) QDP 34.63/17.65 (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] 34.63/17.65 (40) YES 34.63/17.65 (41) QDP 34.63/17.65 (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] 34.63/17.65 (43) YES 34.63/17.65 34.63/17.65 34.63/17.65 ---------------------------------------- 34.63/17.65 34.63/17.65 (0) 34.63/17.65 Obligation: 34.63/17.65 mainModule Main 34.63/17.65 module FiniteMap where { 34.63/17.65 import qualified Main; 34.63/17.65 import qualified Maybe; 34.63/17.65 import qualified Prelude; 34.63/17.65 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 34.63/17.65 34.63/17.65 instance (Eq a, Eq b) => Eq FiniteMap a b where { 34.63/17.65 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 34.63/17.65 } 34.63/17.65 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 34.63/17.65 addListToFM fm key_elt_pairs = addListToFM_C (\old new ->new) fm key_elt_pairs; 34.63/17.65 34.63/17.65 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 34.63/17.65 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 34.63/17.65 add fmap (key,elt) = addToFM_C combiner fmap key elt; 34.63/17.65 }; 34.63/17.65 34.63/17.65 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 34.63/17.65 addToFM_C combiner EmptyFM key elt = unitFM key elt; 34.63/17.65 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 34.63/17.65 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 34.63/17.65 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 34.63/17.65 34.63/17.65 emptyFM :: FiniteMap b a; 34.63/17.65 emptyFM = EmptyFM; 34.63/17.65 34.63/17.65 findMax :: FiniteMap a b -> (a,b); 34.63/17.65 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 34.63/17.65 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 34.63/17.65 34.63/17.65 findMin :: FiniteMap a b -> (a,b); 34.63/17.65 findMin (Branch key elt _ EmptyFM _) = (key,elt); 34.63/17.65 findMin (Branch key elt _ fm_l _) = findMin fm_l; 34.63/17.65 34.63/17.65 fmToList :: FiniteMap b a -> [(b,a)]; 34.63/17.65 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 34.63/17.65 34.63/17.65 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 34.63/17.65 foldFM k z EmptyFM = z; 34.63/17.65 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 34.63/17.65 34.63/17.65 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 34.63/17.65 listToFM = addListToFM emptyFM; 34.63/17.65 34.63/17.65 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 34.63/17.65 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 34.63/17.65 | size_r > sIZE_RATIO * size_l = case fm_R of { 34.63/17.65 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 34.63/17.65 | otherwise -> double_L fm_L fm_R; 34.63/17.65 } 34.63/17.65 | size_l > sIZE_RATIO * size_r = case fm_L of { 34.63/17.65 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 34.63/17.65 | otherwise -> double_R fm_L fm_R; 34.63/17.65 } 34.63/17.65 | otherwise = mkBranch 2 key elt fm_L fm_R where { 34.63/17.65 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 34.63/17.65 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 34.63/17.65 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 34.63/17.65 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 34.63/17.65 size_l = sizeFM fm_L; 34.63/17.65 size_r = sizeFM fm_R; 34.63/17.65 }; 34.63/17.65 34.63/17.65 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 34.63/17.65 mkBranch which key elt fm_l fm_r = let { 34.63/17.65 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 34.63/17.65 } in result where { 34.63/17.65 balance_ok = True; 34.63/17.65 left_ok = case fm_l of { 34.63/17.65 EmptyFM-> True; 34.63/17.65 Branch left_key _ _ _ _-> let { 34.63/17.65 biggest_left_key = fst (findMax fm_l); 34.63/17.65 } in biggest_left_key < key; 34.63/17.65 } ; 34.63/17.65 left_size = sizeFM fm_l; 34.63/17.65 right_ok = case fm_r of { 34.63/17.65 EmptyFM-> True; 34.63/17.65 Branch right_key _ _ _ _-> let { 34.63/17.65 smallest_right_key = fst (findMin fm_r); 34.63/17.65 } in key < smallest_right_key; 34.63/17.65 } ; 34.63/17.65 right_size = sizeFM fm_r; 34.63/17.65 unbox :: Int -> Int; 34.63/17.65 unbox x = x; 34.63/17.65 }; 34.63/17.65 34.63/17.65 sIZE_RATIO :: Int; 34.63/17.65 sIZE_RATIO = 5; 34.63/17.65 34.63/17.65 sizeFM :: FiniteMap a b -> Int; 34.63/17.65 sizeFM EmptyFM = 0; 34.63/17.65 sizeFM (Branch _ _ size _ _) = size; 34.63/17.65 34.63/17.65 unitFM :: a -> b -> FiniteMap a b; 34.63/17.65 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 34.63/17.65 34.63/17.65 } 34.63/17.65 module Maybe where { 34.63/17.65 import qualified FiniteMap; 34.63/17.65 import qualified Main; 34.63/17.65 import qualified Prelude; 34.63/17.65 } 34.63/17.65 module Main where { 34.63/17.65 import qualified FiniteMap; 34.63/17.65 import qualified Maybe; 34.63/17.65 import qualified Prelude; 34.63/17.65 } 34.63/17.65 34.63/17.65 ---------------------------------------- 34.63/17.65 34.63/17.65 (1) LR (EQUIVALENT) 34.63/17.65 Lambda Reductions: 34.63/17.65 The following Lambda expression 34.63/17.65 "\oldnew->new" 34.63/17.65 is transformed to 34.63/17.65 "addListToFM0 old new = new; 34.63/17.65 " 34.63/17.65 The following Lambda expression 34.63/17.65 "\keyeltrest->(key,elt) : rest" 34.63/17.65 is transformed to 34.63/17.65 "fmToList0 key elt rest = (key,elt) : rest; 34.63/17.65 " 34.63/17.65 34.63/17.65 ---------------------------------------- 34.63/17.65 34.63/17.65 (2) 34.63/17.65 Obligation: 34.63/17.65 mainModule Main 34.63/17.65 module FiniteMap where { 34.63/17.65 import qualified Main; 34.63/17.65 import qualified Maybe; 34.63/17.65 import qualified Prelude; 34.63/17.65 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 34.63/17.65 34.63/17.65 instance (Eq a, Eq b) => Eq FiniteMap b a where { 34.63/17.65 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 34.63/17.65 } 34.63/17.65 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 34.63/17.65 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 34.63/17.65 34.63/17.65 addListToFM0 old new = new; 34.63/17.65 34.63/17.65 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 34.63/17.65 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 34.63/17.65 add fmap (key,elt) = addToFM_C combiner fmap key elt; 34.63/17.65 }; 34.63/17.65 34.63/17.65 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 34.63/17.65 addToFM_C combiner EmptyFM key elt = unitFM key elt; 34.63/17.65 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 34.63/17.65 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 34.63/17.65 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 34.63/17.65 34.63/17.65 emptyFM :: FiniteMap b a; 34.63/17.65 emptyFM = EmptyFM; 34.63/17.65 34.63/17.65 findMax :: FiniteMap a b -> (a,b); 34.63/17.65 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 34.63/17.65 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 34.63/17.65 34.63/17.65 findMin :: FiniteMap b a -> (b,a); 34.63/17.65 findMin (Branch key elt _ EmptyFM _) = (key,elt); 34.63/17.65 findMin (Branch key elt _ fm_l _) = findMin fm_l; 34.63/17.65 34.63/17.65 fmToList :: FiniteMap b a -> [(b,a)]; 34.63/17.65 fmToList fm = foldFM fmToList0 [] fm; 34.63/17.65 34.63/17.65 fmToList0 key elt rest = (key,elt) : rest; 34.63/17.65 34.63/17.65 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 34.63/17.65 foldFM k z EmptyFM = z; 34.63/17.65 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 34.63/17.65 34.63/17.65 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 34.63/17.65 listToFM = addListToFM emptyFM; 34.63/17.65 34.63/17.65 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 34.63/17.65 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 34.63/17.65 | size_r > sIZE_RATIO * size_l = case fm_R of { 34.63/17.65 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 34.63/17.65 | otherwise -> double_L fm_L fm_R; 34.63/17.65 } 34.63/17.65 | size_l > sIZE_RATIO * size_r = case fm_L of { 34.63/17.65 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 34.82/17.73 | otherwise -> double_R fm_L fm_R; 34.82/17.73 } 34.82/17.73 | otherwise = mkBranch 2 key elt fm_L fm_R where { 34.82/17.73 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); 34.82/17.73 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); 34.82/17.73 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; 34.82/17.73 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); 34.82/17.73 size_l = sizeFM fm_L; 34.82/17.73 size_r = sizeFM fm_R; 34.82/17.73 }; 34.82/17.73 34.82/17.73 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 34.82/17.73 mkBranch which key elt fm_l fm_r = let { 34.82/17.73 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 34.82/17.73 } in result where { 34.82/17.73 balance_ok = True; 34.82/17.73 left_ok = case fm_l of { 34.82/17.73 EmptyFM-> True; 34.82/17.73 Branch left_key _ _ _ _-> let { 34.82/17.73 biggest_left_key = fst (findMax fm_l); 34.82/17.73 } in biggest_left_key < key; 34.82/17.73 } ; 34.82/17.73 left_size = sizeFM fm_l; 34.82/17.73 right_ok = case fm_r of { 34.82/17.73 EmptyFM-> True; 34.82/17.73 Branch right_key _ _ _ _-> let { 34.82/17.73 smallest_right_key = fst (findMin fm_r); 34.82/17.73 } in key < smallest_right_key; 34.82/17.73 } ; 34.82/17.73 right_size = sizeFM fm_r; 34.82/17.73 unbox :: Int -> Int; 34.82/17.73 unbox x = x; 34.82/17.73 }; 34.82/17.73 34.82/17.73 sIZE_RATIO :: Int; 34.82/17.73 sIZE_RATIO = 5; 34.82/17.73 34.82/17.73 sizeFM :: FiniteMap a b -> Int; 34.82/17.73 sizeFM EmptyFM = 0; 34.82/17.73 sizeFM (Branch _ _ size _ _) = size; 34.82/17.73 34.82/17.73 unitFM :: a -> b -> FiniteMap a b; 34.82/17.73 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 34.82/17.73 34.82/17.73 } 34.82/17.73 module Maybe where { 34.82/17.73 import qualified FiniteMap; 34.82/17.73 import qualified Main; 34.82/17.73 import qualified Prelude; 34.82/17.73 } 34.82/17.73 module Main where { 34.82/17.73 import qualified FiniteMap; 34.82/17.73 import qualified Maybe; 34.82/17.73 import qualified Prelude; 34.82/17.73 } 34.82/17.73 34.82/17.73 ---------------------------------------- 34.82/17.73 34.82/17.73 (3) CR (EQUIVALENT) 34.82/17.73 Case Reductions: 34.82/17.73 The following Case expression 34.82/17.73 "case compare x y of { 34.82/17.73 EQ -> o; 34.82/17.73 LT -> LT; 34.82/17.73 GT -> GT} 34.82/17.73 " 34.82/17.73 is transformed to 34.82/17.73 "primCompAux0 o EQ = o; 34.82/17.73 primCompAux0 o LT = LT; 34.82/17.73 primCompAux0 o GT = GT; 34.82/17.73 " 34.82/17.73 The following Case expression 34.82/17.73 "case fm_r of { 34.82/17.73 EmptyFM -> True; 34.82/17.73 Branch right_key _ _ _ _ -> let { 34.82/17.73 smallest_right_key = fst (findMin fm_r); 34.82/17.73 } in key < smallest_right_key} 34.82/17.73 " 34.82/17.73 is transformed to 34.82/17.73 "right_ok0 fm_r key EmptyFM = True; 34.82/17.73 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 34.82/17.73 smallest_right_key = fst (findMin fm_r); 34.82/17.73 } in key < smallest_right_key; 34.82/17.73 " 34.82/17.73 The following Case expression 34.82/17.73 "case fm_l of { 34.82/17.73 EmptyFM -> True; 34.82/17.73 Branch left_key _ _ _ _ -> let { 34.82/17.73 biggest_left_key = fst (findMax fm_l); 34.82/17.73 } in biggest_left_key < key} 34.82/17.73 " 34.82/17.73 is transformed to 34.82/17.73 "left_ok0 fm_l key EmptyFM = True; 34.82/17.73 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 34.82/17.73 biggest_left_key = fst (findMax fm_l); 34.82/17.73 } in biggest_left_key < key; 34.82/17.73 " 34.82/17.73 The following Case expression 34.82/17.73 "case fm_R of { 34.82/17.73 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 34.82/17.73 " 34.82/17.73 is transformed to 34.82/17.73 "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; 34.82/17.73 " 34.82/17.73 The following Case expression 34.82/17.73 "case fm_L of { 34.82/17.73 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 34.82/17.73 " 34.82/17.73 is transformed to 34.82/17.73 "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; 34.82/17.73 " 34.82/17.73 34.82/17.73 ---------------------------------------- 34.82/17.73 34.82/17.73 (4) 34.82/17.73 Obligation: 34.82/17.73 mainModule Main 34.82/17.73 module FiniteMap where { 34.82/17.73 import qualified Main; 34.82/17.73 import qualified Maybe; 34.82/17.73 import qualified Prelude; 34.82/17.73 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 34.82/17.73 34.82/17.73 instance (Eq a, Eq b) => Eq FiniteMap b a where { 34.82/17.73 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 34.82/17.73 } 34.82/17.73 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 34.82/17.73 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 34.82/17.73 34.82/17.73 addListToFM0 old new = new; 34.82/17.73 34.82/17.73 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 34.82/17.73 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 34.82/17.73 add fmap (key,elt) = addToFM_C combiner fmap key elt; 34.82/17.73 }; 34.82/17.73 34.82/17.73 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 34.82/17.73 addToFM_C combiner EmptyFM key elt = unitFM key elt; 34.82/17.73 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 34.82/17.73 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 34.82/17.73 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 34.82/17.73 34.82/17.73 emptyFM :: FiniteMap a b; 34.82/17.73 emptyFM = EmptyFM; 34.82/17.73 34.82/17.73 findMax :: FiniteMap a b -> (a,b); 34.82/17.73 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 34.82/17.73 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 34.82/17.73 34.82/17.73 findMin :: FiniteMap a b -> (a,b); 34.82/17.73 findMin (Branch key elt _ EmptyFM _) = (key,elt); 34.82/17.73 findMin (Branch key elt _ fm_l _) = findMin fm_l; 34.82/17.73 34.82/17.73 fmToList :: FiniteMap b a -> [(b,a)]; 34.82/17.73 fmToList fm = foldFM fmToList0 [] fm; 34.82/17.73 34.82/17.73 fmToList0 key elt rest = (key,elt) : rest; 34.82/17.73 34.82/17.73 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 34.82/17.73 foldFM k z EmptyFM = z; 34.82/17.73 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 34.82/17.73 34.82/17.73 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 34.82/17.73 listToFM = addListToFM emptyFM; 34.82/17.73 34.82/17.73 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 34.82/17.73 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 34.82/17.73 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 34.82/17.73 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 34.82/17.73 | otherwise = mkBranch 2 key elt fm_L fm_R where { 34.82/17.73 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); 34.82/17.73 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); 34.82/17.73 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 34.82/17.75 | otherwise = double_L fm_L fm_R; 34.82/17.75 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 34.82/17.75 | otherwise = double_R fm_L fm_R; 34.82/17.75 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; 34.82/17.75 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); 34.82/17.75 size_l = sizeFM fm_L; 34.82/17.75 size_r = sizeFM fm_R; 34.82/17.75 }; 34.82/17.75 34.82/17.75 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 34.82/17.75 mkBranch which key elt fm_l fm_r = let { 34.82/17.75 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 34.82/17.75 } in result where { 34.82/17.75 balance_ok = True; 34.82/17.75 left_ok = left_ok0 fm_l key fm_l; 34.82/17.75 left_ok0 fm_l key EmptyFM = True; 34.82/17.75 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 34.82/17.75 biggest_left_key = fst (findMax fm_l); 34.82/17.75 } in biggest_left_key < key; 34.82/17.75 left_size = sizeFM fm_l; 34.82/17.75 right_ok = right_ok0 fm_r key fm_r; 34.82/17.75 right_ok0 fm_r key EmptyFM = True; 34.82/17.75 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 34.82/17.75 smallest_right_key = fst (findMin fm_r); 34.82/17.75 } in key < smallest_right_key; 34.82/17.75 right_size = sizeFM fm_r; 34.82/17.75 unbox :: Int -> Int; 34.82/17.75 unbox x = x; 34.82/17.75 }; 34.82/17.75 34.82/17.75 sIZE_RATIO :: Int; 34.82/17.75 sIZE_RATIO = 5; 34.82/17.75 34.82/17.75 sizeFM :: FiniteMap a b -> Int; 34.82/17.75 sizeFM EmptyFM = 0; 34.82/17.75 sizeFM (Branch _ _ size _ _) = size; 34.82/17.75 34.82/17.75 unitFM :: a -> b -> FiniteMap a b; 34.82/17.75 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 34.82/17.75 34.82/17.75 } 34.82/17.75 module Maybe where { 34.82/17.75 import qualified FiniteMap; 34.82/17.75 import qualified Main; 34.82/17.75 import qualified Prelude; 34.82/17.75 } 34.82/17.75 module Main where { 34.82/17.75 import qualified FiniteMap; 34.82/17.75 import qualified Maybe; 34.82/17.75 import qualified Prelude; 34.82/17.75 } 34.82/17.75 34.82/17.75 ---------------------------------------- 34.82/17.75 34.82/17.75 (5) IFR (EQUIVALENT) 34.82/17.75 If Reductions: 34.82/17.75 The following If expression 34.82/17.75 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 34.82/17.75 is transformed to 34.82/17.75 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 34.82/17.75 primDivNatS0 x y False = Zero; 34.82/17.75 " 34.82/17.75 The following If expression 34.82/17.75 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 34.82/17.75 is transformed to 34.82/17.75 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 34.82/17.75 primModNatS0 x y False = Succ x; 34.82/17.75 " 34.82/17.75 34.82/17.75 ---------------------------------------- 34.82/17.75 34.82/17.75 (6) 34.82/17.75 Obligation: 34.82/17.75 mainModule Main 34.82/17.75 module FiniteMap where { 34.82/17.75 import qualified Main; 34.82/17.75 import qualified Maybe; 34.82/17.75 import qualified Prelude; 34.82/17.75 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 34.82/17.75 34.82/17.75 instance (Eq a, Eq b) => Eq FiniteMap b a where { 34.82/17.75 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 34.82/17.75 } 34.82/17.75 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 34.82/17.75 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 34.82/17.75 34.82/17.75 addListToFM0 old new = new; 34.82/17.75 34.82/17.75 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 34.82/17.75 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 34.82/17.75 add fmap (key,elt) = addToFM_C combiner fmap key elt; 34.82/17.75 }; 34.82/17.75 34.82/17.75 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 34.82/17.75 addToFM_C combiner EmptyFM key elt = unitFM key elt; 34.82/17.75 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 34.82/17.75 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 34.82/17.75 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 34.82/17.75 34.82/17.75 emptyFM :: FiniteMap a b; 34.82/17.75 emptyFM = EmptyFM; 34.82/17.75 34.82/17.75 findMax :: FiniteMap b a -> (b,a); 34.82/17.75 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 34.82/17.75 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 34.82/17.75 34.82/17.75 findMin :: FiniteMap b a -> (b,a); 34.82/17.75 findMin (Branch key elt _ EmptyFM _) = (key,elt); 34.82/17.75 findMin (Branch key elt _ fm_l _) = findMin fm_l; 34.82/17.75 34.82/17.75 fmToList :: FiniteMap b a -> [(b,a)]; 34.82/17.75 fmToList fm = foldFM fmToList0 [] fm; 34.82/17.75 34.82/17.75 fmToList0 key elt rest = (key,elt) : rest; 34.82/17.75 34.82/17.75 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 34.82/17.75 foldFM k z EmptyFM = z; 34.82/17.75 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 34.82/17.75 34.82/17.75 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 34.82/17.75 listToFM = addListToFM emptyFM; 34.82/17.75 34.82/17.75 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 34.82/17.75 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 34.82/17.75 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 34.82/17.75 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 34.82/17.75 | otherwise = mkBranch 2 key elt fm_L fm_R where { 34.82/17.75 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); 34.82/17.75 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); 34.82/17.75 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 34.82/17.75 | otherwise = double_L fm_L fm_R; 34.82/17.75 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 34.82/17.75 | otherwise = double_R fm_L fm_R; 34.82/17.75 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; 34.82/17.75 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); 34.82/17.75 size_l = sizeFM fm_L; 34.82/17.75 size_r = sizeFM fm_R; 34.82/17.75 }; 34.82/17.75 34.82/17.75 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 34.82/17.75 mkBranch which key elt fm_l fm_r = let { 34.82/17.75 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 34.82/17.75 } in result where { 34.82/17.75 balance_ok = True; 34.82/17.75 left_ok = left_ok0 fm_l key fm_l; 34.82/17.75 left_ok0 fm_l key EmptyFM = True; 34.82/17.75 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 34.82/17.75 biggest_left_key = fst (findMax fm_l); 34.82/17.75 } in biggest_left_key < key; 34.82/17.75 left_size = sizeFM fm_l; 34.82/17.75 right_ok = right_ok0 fm_r key fm_r; 34.82/17.75 right_ok0 fm_r key EmptyFM = True; 34.82/17.75 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 34.82/17.75 smallest_right_key = fst (findMin fm_r); 34.82/17.75 } in key < smallest_right_key; 34.82/17.75 right_size = sizeFM fm_r; 34.82/17.75 unbox :: Int -> Int; 34.82/17.75 unbox x = x; 34.82/17.75 }; 34.82/17.75 34.82/17.75 sIZE_RATIO :: Int; 34.82/17.75 sIZE_RATIO = 5; 34.82/17.75 34.82/17.75 sizeFM :: FiniteMap a b -> Int; 34.82/17.75 sizeFM EmptyFM = 0; 34.82/17.75 sizeFM (Branch _ _ size _ _) = size; 34.82/17.75 34.82/17.75 unitFM :: a -> b -> FiniteMap a b; 34.82/17.75 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 34.82/17.75 34.82/17.75 } 34.82/17.75 module Maybe where { 34.82/17.75 import qualified FiniteMap; 34.82/17.75 import qualified Main; 34.82/17.75 import qualified Prelude; 34.82/17.75 } 34.82/17.75 module Main where { 34.82/17.75 import qualified FiniteMap; 34.82/17.75 import qualified Maybe; 34.82/17.75 import qualified Prelude; 34.82/17.75 } 34.82/17.75 34.82/17.75 ---------------------------------------- 34.82/17.75 34.82/17.75 (7) BR (EQUIVALENT) 34.82/17.75 Replaced joker patterns by fresh variables and removed binding patterns. 34.82/17.75 ---------------------------------------- 34.82/17.75 34.82/17.75 (8) 34.82/17.75 Obligation: 34.82/17.75 mainModule Main 34.82/17.75 module FiniteMap where { 34.82/17.75 import qualified Main; 34.82/17.75 import qualified Maybe; 34.82/17.75 import qualified Prelude; 34.82/17.75 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 34.82/17.75 34.82/17.75 instance (Eq a, Eq b) => Eq FiniteMap b a where { 34.82/17.75 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 34.82/17.75 } 34.82/17.75 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 34.82/17.75 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 34.82/17.75 34.82/17.75 addListToFM0 old new = new; 34.82/17.75 34.82/17.75 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 34.82/17.75 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 34.82/17.75 add fmap (key,elt) = addToFM_C combiner fmap key elt; 34.82/17.75 }; 34.82/17.75 34.82/17.75 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 34.82/17.75 addToFM_C combiner EmptyFM key elt = unitFM key elt; 34.82/17.75 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 34.82/17.75 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 34.82/17.75 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 34.82/17.75 34.82/17.75 emptyFM :: FiniteMap a b; 34.82/17.75 emptyFM = EmptyFM; 34.82/17.75 34.82/17.75 findMax :: FiniteMap b a -> (b,a); 34.82/17.75 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 34.82/17.75 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 34.82/17.75 34.82/17.75 findMin :: FiniteMap b a -> (b,a); 34.82/17.75 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 34.82/17.75 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 34.82/17.75 34.82/17.75 fmToList :: FiniteMap a b -> [(a,b)]; 34.82/17.75 fmToList fm = foldFM fmToList0 [] fm; 34.82/17.75 34.82/17.75 fmToList0 key elt rest = (key,elt) : rest; 34.82/17.75 34.82/17.75 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 34.82/17.75 foldFM k z EmptyFM = z; 34.82/17.75 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 34.82/17.75 34.82/17.75 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 34.82/17.75 listToFM = addListToFM emptyFM; 34.82/17.75 34.82/17.75 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 34.82/17.75 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 34.82/17.75 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 34.82/17.75 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 34.82/17.75 | otherwise = mkBranch 2 key elt fm_L fm_R where { 34.82/17.75 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu 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); 34.82/17.75 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv 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); 34.82/17.75 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 34.82/17.75 | otherwise = double_L fm_L fm_R; 34.82/17.75 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 34.82/17.75 | otherwise = double_R fm_L fm_R; 34.82/17.75 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 34.82/17.75 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 34.82/17.75 size_l = sizeFM fm_L; 34.82/17.75 size_r = sizeFM fm_R; 34.82/17.75 }; 34.82/17.75 34.82/17.75 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 34.82/17.75 mkBranch which key elt fm_l fm_r = let { 34.82/17.75 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 34.82/17.75 } in result where { 34.82/17.75 balance_ok = True; 34.82/17.75 left_ok = left_ok0 fm_l key fm_l; 35.52/17.89 left_ok0 fm_l key EmptyFM = True; 35.52/17.89 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 35.52/17.89 biggest_left_key = fst (findMax fm_l); 35.52/17.89 } in biggest_left_key < key; 35.52/17.89 left_size = sizeFM fm_l; 35.52/17.89 right_ok = right_ok0 fm_r key fm_r; 35.52/17.89 right_ok0 fm_r key EmptyFM = True; 35.52/17.89 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 35.52/17.89 smallest_right_key = fst (findMin fm_r); 35.52/17.89 } in key < smallest_right_key; 35.52/17.89 right_size = sizeFM fm_r; 35.52/17.89 unbox :: Int -> Int; 35.52/17.89 unbox x = x; 35.52/17.89 }; 35.52/17.89 35.52/17.89 sIZE_RATIO :: Int; 35.52/17.89 sIZE_RATIO = 5; 35.52/17.89 35.52/17.89 sizeFM :: FiniteMap b a -> Int; 35.52/17.89 sizeFM EmptyFM = 0; 35.52/17.89 sizeFM (Branch vyu vyv size vyw vyx) = size; 35.52/17.89 35.52/17.89 unitFM :: a -> b -> FiniteMap a b; 35.52/17.89 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 35.52/17.89 35.52/17.89 } 35.52/17.89 module Maybe where { 35.52/17.89 import qualified FiniteMap; 35.52/17.89 import qualified Main; 35.52/17.89 import qualified Prelude; 35.52/17.89 } 35.52/17.89 module Main where { 35.52/17.89 import qualified FiniteMap; 35.52/17.89 import qualified Maybe; 35.52/17.89 import qualified Prelude; 35.52/17.89 } 35.52/17.89 35.52/17.89 ---------------------------------------- 35.52/17.89 35.52/17.89 (9) COR (EQUIVALENT) 35.52/17.89 Cond Reductions: 35.52/17.89 The following Function with conditions 35.52/17.89 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 35.52/17.89 " 35.52/17.89 is transformed to 35.52/17.89 "compare x y = compare3 x y; 35.52/17.89 " 35.52/17.89 "compare0 x y True = GT; 35.52/17.89 " 35.52/17.89 "compare1 x y True = LT; 35.52/17.89 compare1 x y False = compare0 x y otherwise; 35.52/17.89 " 35.52/17.89 "compare2 x y True = EQ; 35.52/17.89 compare2 x y False = compare1 x y (x <= y); 35.52/17.89 " 35.52/17.89 "compare3 x y = compare2 x y (x == y); 35.52/17.89 " 35.52/17.89 The following Function with conditions 35.52/17.89 "absReal x|x >= 0x|otherwise`negate` x; 35.52/17.89 " 35.52/17.89 is transformed to 35.52/17.89 "absReal x = absReal2 x; 35.52/17.89 " 35.52/17.89 "absReal1 x True = x; 35.52/17.89 absReal1 x False = absReal0 x otherwise; 35.52/17.89 " 35.52/17.89 "absReal0 x True = `negate` x; 35.52/17.89 " 35.52/17.89 "absReal2 x = absReal1 x (x >= 0); 35.52/17.89 " 35.52/17.89 The following Function with conditions 35.52/17.89 "gcd' x 0 = x; 35.52/17.89 gcd' x y = gcd' y (x `rem` y); 35.52/17.89 " 35.52/17.89 is transformed to 35.52/17.89 "gcd' x vzw = gcd'2 x vzw; 35.52/17.89 gcd' x y = gcd'0 x y; 35.52/17.89 " 35.52/17.89 "gcd'0 x y = gcd' y (x `rem` y); 35.52/17.89 " 35.52/17.89 "gcd'1 True x vzw = x; 35.52/17.89 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 35.52/17.89 " 35.52/17.89 "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 35.52/17.89 gcd'2 wuu wuv = gcd'0 wuu wuv; 35.52/17.89 " 35.52/17.89 The following Function with conditions 35.52/17.89 "gcd 0 0 = error []; 35.52/17.89 gcd x y = gcd' (abs x) (abs y) where { 35.52/17.89 gcd' x 0 = x; 35.52/17.89 gcd' x y = gcd' y (x `rem` y); 35.52/17.89 } 35.52/17.89 ; 35.52/17.89 " 35.52/17.89 is transformed to 35.52/17.89 "gcd wuw wux = gcd3 wuw wux; 35.52/17.89 gcd x y = gcd0 x y; 35.52/17.89 " 35.52/17.89 "gcd0 x y = gcd' (abs x) (abs y) where { 35.52/17.89 gcd' x vzw = gcd'2 x vzw; 35.52/17.89 gcd' x y = gcd'0 x y; 35.52/17.89 ; 35.52/17.89 gcd'0 x y = gcd' y (x `rem` y); 35.52/17.89 ; 35.52/17.89 gcd'1 True x vzw = x; 35.52/17.89 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 35.52/17.89 ; 35.52/17.89 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 35.52/17.89 gcd'2 wuu wuv = gcd'0 wuu wuv; 35.52/17.89 } 35.52/17.89 ; 35.52/17.89 " 35.52/17.89 "gcd1 True wuw wux = error []; 35.52/17.89 gcd1 wuy wuz wvu = gcd0 wuz wvu; 35.52/17.89 " 35.52/17.89 "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; 35.52/17.89 gcd2 wvv wvw wvx = gcd0 wvw wvx; 35.52/17.89 " 35.52/17.89 "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; 35.52/17.89 gcd3 wvy wvz = gcd0 wvy wvz; 35.52/17.89 " 35.52/17.89 The following Function with conditions 35.52/17.89 "undefined |Falseundefined; 35.52/17.89 " 35.52/17.89 is transformed to 35.52/17.89 "undefined = undefined1; 35.52/17.89 " 35.52/17.89 "undefined0 True = undefined; 35.52/17.89 " 35.52/17.89 "undefined1 = undefined0 False; 35.52/17.89 " 35.52/17.89 The following Function with conditions 35.52/17.89 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 35.52/17.89 d = gcd x y; 35.52/17.89 } 35.52/17.89 ; 35.52/17.89 " 35.52/17.89 is transformed to 35.52/17.89 "reduce x y = reduce2 x y; 35.52/17.89 " 35.52/17.89 "reduce2 x y = reduce1 x y (y == 0) where { 35.52/17.89 d = gcd x y; 35.52/17.89 ; 35.52/17.89 reduce0 x y True = x `quot` d :% (y `quot` d); 35.52/17.89 ; 35.52/17.89 reduce1 x y True = error []; 35.52/17.89 reduce1 x y False = reduce0 x y otherwise; 35.52/17.89 } 35.52/17.89 ; 35.52/17.89 " 35.52/17.89 The following Function with conditions 35.52/17.89 "addToFM_C combiner EmptyFM key elt = unitFM key elt; 35.52/17.89 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt|new_key < keymkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r|new_key > keymkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt)|otherwiseBranch new_key (combiner elt new_elt) size fm_l fm_r; 35.52/17.89 " 35.52/17.89 is transformed to 35.52/17.89 "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 35.52/17.89 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; 35.52/17.89 " 35.52/17.89 "addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; 35.52/17.89 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); 35.52/17.89 " 35.52/17.89 "addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); 35.52/17.89 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; 35.52/17.89 " 35.52/17.89 "addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; 35.52/17.89 " 35.52/17.89 "addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); 35.52/17.89 " 35.52/17.89 "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 35.52/17.89 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 35.52/17.89 " 35.52/17.89 The following Function with conditions 35.52/17.89 "mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 35.52/17.89 " 35.52/17.89 is transformed to 35.52/17.89 "mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 35.52/17.89 " 35.52/17.89 "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 35.52/17.89 " 35.52/17.89 "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 35.52/17.89 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 35.52/17.89 " 35.52/17.89 "mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 35.52/17.89 " 35.52/17.89 The following Function with conditions 35.52/17.89 "mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 35.52/17.89 " 35.52/17.89 is transformed to 35.52/17.89 "mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 35.52/17.89 " 35.52/17.89 "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 35.52/17.89 " 35.52/17.89 "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 35.52/17.89 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 35.52/17.89 " 35.52/17.89 "mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 35.52/17.89 " 35.52/17.89 The following Function with conditions 35.52/17.89 "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 { 35.52/17.89 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 35.52/17.89 ; 35.52/17.89 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 35.52/17.89 ; 35.52/17.89 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 35.52/17.89 ; 35.52/17.89 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 35.52/17.89 ; 35.52/17.89 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 35.52/17.89 ; 35.52/17.89 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 35.52/17.89 ; 35.52/17.89 size_l = sizeFM fm_L; 35.52/17.89 ; 35.52/17.89 size_r = sizeFM fm_R; 35.52/17.89 } 35.52/17.89 ; 35.52/17.89 " 35.52/17.89 is transformed to 35.52/17.89 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 35.52/17.89 " 35.52/17.89 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 35.52/17.89 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 35.52/17.89 ; 35.52/17.89 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 35.52/17.89 ; 35.52/17.89 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 35.52/17.89 ; 35.52/17.89 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 35.52/17.89 ; 35.52/17.89 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 35.52/17.89 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 35.52/17.89 ; 35.52/17.89 mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 35.52/17.89 ; 35.52/17.89 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 35.52/17.89 ; 35.52/17.89 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 35.52/17.89 ; 35.52/17.89 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 35.52/17.89 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 35.52/17.89 ; 35.52/17.89 mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 35.52/17.89 ; 35.52/17.89 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 35.52/17.89 ; 35.52/17.89 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 35.52/17.89 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 35.52/17.89 ; 35.52/17.89 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 35.52/17.89 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 35.52/17.89 ; 35.52/17.89 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 35.52/17.89 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 35.52/17.89 ; 35.52/17.89 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 35.52/17.89 ; 35.52/17.89 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 35.52/17.89 ; 35.52/17.89 size_l = sizeFM fm_L; 35.52/17.89 ; 35.52/17.89 size_r = sizeFM fm_R; 35.52/17.89 } 35.52/17.89 ; 35.52/17.89 " 35.52/17.89 35.52/17.89 ---------------------------------------- 35.52/17.89 35.52/17.89 (10) 35.52/17.89 Obligation: 35.52/17.89 mainModule Main 35.52/17.89 module FiniteMap where { 35.52/17.89 import qualified Main; 35.52/17.89 import qualified Maybe; 35.52/17.89 import qualified Prelude; 35.52/17.89 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 35.52/17.89 35.52/17.89 instance (Eq a, Eq b) => Eq FiniteMap a b where { 35.52/17.89 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 35.52/17.89 } 35.52/17.89 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 35.52/17.89 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 35.52/17.89 35.52/17.89 addListToFM0 old new = new; 35.52/17.89 35.52/17.89 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 35.52/17.89 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 35.52/17.89 add fmap (key,elt) = addToFM_C combiner fmap key elt; 35.52/17.89 }; 35.52/17.89 35.52/17.89 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 35.52/17.89 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 35.52/17.89 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; 35.52/17.89 35.52/17.89 addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; 35.52/17.89 35.52/17.89 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); 35.52/17.89 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; 35.52/17.89 35.52/17.89 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; 35.52/17.89 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); 35.52/17.89 35.52/17.89 addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); 35.52/17.89 35.52/17.89 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 35.52/17.89 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 35.52/17.89 35.52/17.89 emptyFM :: FiniteMap a b; 35.52/17.89 emptyFM = EmptyFM; 35.52/17.89 35.52/17.89 findMax :: FiniteMap a b -> (a,b); 35.52/17.89 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 35.52/17.89 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 35.52/17.89 35.52/17.89 findMin :: FiniteMap b a -> (b,a); 35.52/17.89 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 35.52/17.89 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 35.52/17.89 35.52/17.89 fmToList :: FiniteMap a b -> [(a,b)]; 35.52/17.89 fmToList fm = foldFM fmToList0 [] fm; 35.52/17.89 35.52/17.89 fmToList0 key elt rest = (key,elt) : rest; 35.52/17.89 35.52/17.89 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 35.52/17.89 foldFM k z EmptyFM = z; 35.52/17.89 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 35.52/17.89 35.52/17.89 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 35.52/17.89 listToFM = addListToFM emptyFM; 35.52/17.89 35.52/17.89 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 35.52/17.89 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 35.52/17.89 35.52/17.89 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 35.52/17.89 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 35.52/17.89 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 35.52/17.89 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 35.52/17.89 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 35.52/17.89 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 35.52/17.89 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 35.52/17.89 mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 35.52/17.89 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 35.52/17.89 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 35.52/17.89 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 35.52/17.89 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 35.52/17.89 mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 35.52/17.89 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 35.52/17.89 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 35.52/17.89 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 35.52/17.89 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 35.52/17.89 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 35.52/17.89 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 35.52/17.89 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 35.52/17.89 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 35.52/17.89 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 35.52/17.89 size_l = sizeFM fm_L; 35.52/17.89 size_r = sizeFM fm_R; 35.52/17.89 }; 35.52/17.89 35.52/17.89 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 35.52/17.89 mkBranch which key elt fm_l fm_r = let { 35.52/17.89 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 35.52/17.89 } in result where { 35.52/17.89 balance_ok = True; 35.52/17.89 left_ok = left_ok0 fm_l key fm_l; 35.52/17.89 left_ok0 fm_l key EmptyFM = True; 35.52/17.89 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 35.52/17.89 biggest_left_key = fst (findMax fm_l); 35.52/17.89 } in biggest_left_key < key; 35.52/17.89 left_size = sizeFM fm_l; 35.52/17.89 right_ok = right_ok0 fm_r key fm_r; 35.52/17.89 right_ok0 fm_r key EmptyFM = True; 35.52/17.89 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 35.52/17.89 smallest_right_key = fst (findMin fm_r); 35.52/17.89 } in key < smallest_right_key; 35.52/17.89 right_size = sizeFM fm_r; 35.52/17.89 unbox :: Int -> Int; 35.52/17.89 unbox x = x; 35.52/17.89 }; 35.52/17.89 35.52/17.89 sIZE_RATIO :: Int; 35.52/17.89 sIZE_RATIO = 5; 35.52/17.89 35.52/17.89 sizeFM :: FiniteMap a b -> Int; 35.52/17.89 sizeFM EmptyFM = 0; 35.52/17.89 sizeFM (Branch vyu vyv size vyw vyx) = size; 35.52/17.89 35.52/17.89 unitFM :: a -> b -> FiniteMap a b; 35.52/17.89 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 35.52/17.89 35.52/17.89 } 35.52/17.89 module Maybe where { 35.52/17.89 import qualified FiniteMap; 35.52/17.89 import qualified Main; 35.52/17.89 import qualified Prelude; 35.52/17.89 } 35.52/17.89 module Main where { 35.52/17.89 import qualified FiniteMap; 35.52/17.89 import qualified Maybe; 35.52/17.89 import qualified Prelude; 35.52/17.89 } 35.52/17.89 35.52/17.89 ---------------------------------------- 35.52/17.89 35.52/17.89 (11) LetRed (EQUIVALENT) 35.52/17.89 Let/Where Reductions: 35.52/17.89 The bindings of the following Let/Where expression 35.52/17.89 "gcd' (abs x) (abs y) where { 35.52/17.89 gcd' x vzw = gcd'2 x vzw; 35.52/17.89 gcd' x y = gcd'0 x y; 35.52/17.89 ; 35.52/17.89 gcd'0 x y = gcd' y (x `rem` y); 35.52/17.89 ; 35.52/17.89 gcd'1 True x vzw = x; 35.52/17.89 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 35.52/17.89 ; 35.52/17.89 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 35.52/17.89 gcd'2 wuu wuv = gcd'0 wuu wuv; 35.52/17.89 } 35.52/17.89 " 35.52/17.89 are unpacked to the following functions on top level 35.52/17.89 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 35.52/17.89 " 35.52/17.89 "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; 35.52/17.89 gcd0Gcd' x y = gcd0Gcd'0 x y; 35.52/17.89 " 35.52/17.89 "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; 35.52/17.89 gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; 35.52/17.89 " 35.52/17.89 "gcd0Gcd'1 True x vzw = x; 35.52/17.89 gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; 35.52/17.89 " 35.52/17.89 The bindings of the following Let/Where expression 35.52/17.89 "reduce1 x y (y == 0) where { 35.52/17.89 d = gcd x y; 35.52/17.89 ; 35.52/17.89 reduce0 x y True = x `quot` d :% (y `quot` d); 35.52/17.89 ; 35.52/17.89 reduce1 x y True = error []; 35.52/17.89 reduce1 x y False = reduce0 x y otherwise; 35.52/17.89 } 35.52/17.89 " 35.52/17.89 are unpacked to the following functions on top level 35.52/17.89 "reduce2D wxw wxx = gcd wxw wxx; 35.52/17.89 " 35.52/17.89 "reduce2Reduce1 wxw wxx x y True = error []; 35.52/17.89 reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; 35.52/17.89 " 35.52/17.89 "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); 35.52/17.89 " 35.52/17.89 The bindings of the following Let/Where expression 35.52/17.89 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 35.52/17.89 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 35.52/17.89 ; 35.52/17.89 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 35.52/17.89 ; 35.52/17.89 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 35.52/17.89 ; 35.52/17.89 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 35.52/17.89 ; 35.52/17.89 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 35.52/17.89 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 35.52/17.89 ; 35.52/17.89 mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 35.52/17.89 ; 35.52/17.89 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 35.52/17.89 ; 35.52/17.89 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 35.52/17.89 ; 35.52/17.89 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 35.52/17.89 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 35.52/17.89 ; 35.52/17.89 mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 35.52/17.89 ; 35.52/17.89 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 35.52/17.89 ; 35.52/17.89 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 35.52/17.89 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 35.52/17.89 ; 35.52/17.89 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 35.52/17.89 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 35.52/17.89 ; 35.52/17.89 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 35.52/17.89 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 35.52/17.89 ; 35.52/17.89 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 35.52/17.89 ; 35.52/17.89 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 35.52/17.89 ; 35.52/17.89 size_l = sizeFM fm_L; 35.52/17.89 ; 35.52/17.89 size_r = sizeFM fm_R; 35.52/17.89 } 35.52/17.89 " 35.52/17.89 are unpacked to the following functions on top level 35.52/17.89 "mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 35.52/17.89 " 35.52/17.89 "mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 35.52/17.89 " 35.52/17.89 "mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; 35.52/17.89 " 35.52/17.89 "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 35.52/17.89 " 35.52/17.89 "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 35.52/17.89 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 35.52/17.89 " 35.52/17.89 "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wxy; 35.52/17.89 " 35.52/17.89 "mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxz wyu fm_l fm_rl) fm_rr; 35.52/17.89 " 35.52/17.89 "mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; 35.52/17.89 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 35.52/17.89 " 35.52/17.89 "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 35.52/17.89 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); 35.52/17.89 " 35.52/17.89 "mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxz wyu fm_lrr fm_r); 35.52/17.89 " 35.52/17.89 "mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; 35.52/17.89 " 35.52/17.89 "mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; 35.52/17.89 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 35.52/17.89 " 35.52/17.89 "mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxz wyu fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 35.52/17.89 " 35.52/17.89 "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; 35.52/17.89 " 35.52/17.89 "mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxz wyu fm_lr fm_r); 35.52/17.89 " 35.52/17.89 "mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 35.52/17.89 " 35.52/17.89 "mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 35.52/17.89 " 35.52/17.89 "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 35.52/17.89 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); 35.52/17.89 " 35.52/17.89 The bindings of the following Let/Where expression 35.52/17.89 "foldl add fm key_elt_pairs where { 35.52/17.89 add fmap (key,elt) = addToFM_C combiner fmap key elt; 35.52/17.89 } 35.52/17.89 " 35.52/17.89 are unpacked to the following functions on top level 35.52/17.89 "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 35.52/17.89 " 35.52/17.89 The bindings of the following Let/Where expression 35.52/17.89 "let { 35.52/17.89 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 35.52/17.89 } in result where { 35.52/17.89 balance_ok = True; 35.52/17.89 ; 35.52/17.89 left_ok = left_ok0 fm_l key fm_l; 35.52/17.89 ; 35.52/17.89 left_ok0 fm_l key EmptyFM = True; 35.52/17.89 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 35.52/17.89 biggest_left_key = fst (findMax fm_l); 35.52/17.89 } in biggest_left_key < key; 35.52/17.89 ; 35.52/17.89 left_size = sizeFM fm_l; 35.52/17.89 ; 35.52/17.89 right_ok = right_ok0 fm_r key fm_r; 35.52/17.89 ; 35.52/17.89 right_ok0 fm_r key EmptyFM = True; 35.52/17.89 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 35.52/17.89 smallest_right_key = fst (findMin fm_r); 35.52/17.89 } in key < smallest_right_key; 35.52/17.89 ; 35.52/17.89 right_size = sizeFM fm_r; 35.52/17.89 ; 35.52/17.89 unbox x = x; 35.52/17.89 } 35.52/17.89 " 35.52/17.89 are unpacked to the following functions on top level 35.52/17.89 "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 35.52/17.89 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 35.52/17.89 " 35.52/17.89 "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 35.52/17.89 " 35.52/17.89 "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 35.52/17.89 " 35.52/17.89 "mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 35.52/17.89 " 35.52/17.89 "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 35.52/17.89 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 35.52/17.89 " 35.52/17.89 "mkBranchBalance_ok wyx wyy wyz = True; 35.52/17.89 " 35.52/17.89 "mkBranchRight_size wyx wyy wyz = sizeFM wyx; 35.52/17.89 " 35.52/17.89 "mkBranchUnbox wyx wyy wyz x = x; 35.52/17.89 " 35.52/17.89 The bindings of the following Let/Where expression 35.52/17.89 "let { 35.52/17.89 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 35.52/17.89 } in result" 35.52/17.89 are unpacked to the following functions on top level 35.52/17.89 "mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; 35.52/17.89 " 35.52/17.89 The bindings of the following Let/Where expression 35.52/17.89 "let { 35.52/17.89 smallest_right_key = fst (findMin fm_r); 35.52/17.89 } in key < smallest_right_key" 35.52/17.89 are unpacked to the following functions on top level 35.52/17.89 "mkBranchRight_ok0Smallest_right_key wzy = fst (findMin wzy); 35.52/17.89 " 35.52/17.89 The bindings of the following Let/Where expression 35.52/17.89 "let { 35.52/17.89 biggest_left_key = fst (findMax fm_l); 35.52/17.89 } in biggest_left_key < key" 35.52/17.89 are unpacked to the following functions on top level 35.52/17.89 "mkBranchLeft_ok0Biggest_left_key wzz = fst (findMax wzz); 35.52/17.89 " 35.52/17.89 35.52/17.89 ---------------------------------------- 35.52/17.89 35.52/17.89 (12) 35.52/17.89 Obligation: 35.52/17.89 mainModule Main 35.52/17.89 module FiniteMap where { 35.52/17.89 import qualified Main; 35.52/17.89 import qualified Maybe; 35.52/17.89 import qualified Prelude; 35.52/17.89 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 35.52/17.89 35.52/17.89 instance (Eq a, Eq b) => Eq FiniteMap a b where { 35.52/17.89 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 35.52/17.89 } 35.52/17.89 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 35.52/17.89 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 35.52/17.89 35.52/17.89 addListToFM0 old new = new; 35.52/17.89 35.52/17.89 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 35.52/17.89 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 35.52/17.89 35.52/17.89 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 35.52/17.89 35.52/17.89 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 35.52/17.89 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 35.52/17.89 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; 35.52/17.89 35.52/17.89 addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; 35.52/17.89 35.52/17.89 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); 35.52/17.89 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; 35.52/17.89 35.52/17.89 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; 35.52/17.89 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); 35.52/17.89 35.52/17.89 addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); 35.52/17.89 35.52/17.89 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 35.52/17.89 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 35.52/17.89 35.52/17.89 emptyFM :: FiniteMap b a; 35.52/17.89 emptyFM = EmptyFM; 35.52/17.89 35.52/17.89 findMax :: FiniteMap a b -> (a,b); 35.52/17.89 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 35.52/17.89 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 35.52/17.89 35.52/17.89 findMin :: FiniteMap a b -> (a,b); 35.52/17.89 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 35.52/17.89 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 35.52/17.89 35.52/17.89 fmToList :: FiniteMap b a -> [(b,a)]; 35.52/17.89 fmToList fm = foldFM fmToList0 [] fm; 35.52/17.89 35.52/17.89 fmToList0 key elt rest = (key,elt) : rest; 35.52/17.89 35.52/17.89 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 35.52/17.89 foldFM k z EmptyFM = z; 35.52/17.89 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 35.52/17.89 35.52/17.89 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 35.52/17.89 listToFM = addListToFM emptyFM; 35.52/17.89 35.52/17.89 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 35.52/17.89 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 35.52/17.89 35.52/17.89 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 fm_R key elt fm_L key elt fm_L fm_R (mkBalBranch6Size_l fm_R key elt fm_L + mkBalBranch6Size_r fm_R key elt fm_L < 2); 35.52/17.89 35.52/17.89 mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxz wyu fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 35.52/17.89 35.52/17.89 mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxz wyu fm_lrr fm_r); 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; 35.52/17.89 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; 35.52/17.89 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 35.52/17.89 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 35.52/17.89 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 35.52/17.89 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); 35.52/17.89 35.52/17.89 mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxz wyu fm_l fm_rl) fm_rr; 35.52/17.89 35.52/17.89 mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxz wyu fm_lr fm_r); 35.52/17.89 35.52/17.89 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; 35.52/17.89 35.52/17.89 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wxy; 35.52/17.89 35.52/17.89 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 35.52/17.89 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 35.52/17.89 35.52/17.89 mkBranchBalance_ok wyx wyy wyz = True; 35.52/17.89 35.52/17.89 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 35.52/17.89 35.52/17.89 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 35.52/17.89 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 35.52/17.89 35.52/17.89 mkBranchLeft_ok0Biggest_left_key wzz = fst (findMax wzz); 35.52/17.89 35.52/17.89 mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 35.52/17.89 35.52/17.89 mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; 35.52/17.89 35.52/17.89 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 35.52/17.89 35.52/17.89 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 35.52/17.89 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 35.52/17.89 35.52/17.89 mkBranchRight_ok0Smallest_right_key wzy = fst (findMin wzy); 35.52/17.89 35.52/17.89 mkBranchRight_size wyx wyy wyz = sizeFM wyx; 35.52/17.89 35.52/17.89 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 35.52/17.89 mkBranchUnbox wyx wyy wyz x = x; 35.52/17.89 35.52/17.89 sIZE_RATIO :: Int; 35.52/17.89 sIZE_RATIO = 5; 35.52/17.89 35.52/17.89 sizeFM :: FiniteMap a b -> Int; 35.52/17.89 sizeFM EmptyFM = 0; 35.52/17.89 sizeFM (Branch vyu vyv size vyw vyx) = size; 35.52/17.89 35.52/17.89 unitFM :: a -> b -> FiniteMap a b; 35.52/17.89 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 35.52/17.89 35.52/17.89 } 35.52/17.89 module Maybe where { 35.52/17.89 import qualified FiniteMap; 35.52/17.89 import qualified Main; 35.52/17.89 import qualified Prelude; 35.52/17.89 } 35.52/17.89 module Main where { 35.52/17.89 import qualified FiniteMap; 35.52/17.89 import qualified Maybe; 35.52/17.89 import qualified Prelude; 35.52/17.89 } 35.52/17.89 35.52/17.89 ---------------------------------------- 35.52/17.89 35.52/17.89 (13) NumRed (SOUND) 35.52/17.89 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 35.52/17.89 ---------------------------------------- 35.52/17.89 35.52/17.89 (14) 35.52/17.89 Obligation: 35.52/17.89 mainModule Main 35.52/17.89 module FiniteMap where { 35.52/17.89 import qualified Main; 35.52/17.89 import qualified Maybe; 35.52/17.89 import qualified Prelude; 35.52/17.89 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 35.52/17.89 35.52/17.89 instance (Eq a, Eq b) => Eq FiniteMap a b where { 35.52/17.89 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 35.52/17.89 } 35.52/17.89 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 35.52/17.89 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 35.52/17.89 35.52/17.89 addListToFM0 old new = new; 35.52/17.89 35.52/17.89 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 35.52/17.89 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 35.52/17.89 35.52/17.89 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 35.52/17.89 35.52/17.89 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 35.52/17.89 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 35.52/17.89 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; 35.52/17.89 35.52/17.89 addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; 35.52/17.89 35.52/17.89 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); 35.52/17.89 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; 35.52/17.89 35.52/17.89 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; 35.52/17.89 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); 35.52/17.89 35.52/17.89 addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); 35.52/17.89 35.52/17.89 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 35.52/17.89 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 35.52/17.89 35.52/17.89 emptyFM :: FiniteMap b a; 35.52/17.89 emptyFM = EmptyFM; 35.52/17.89 35.52/17.89 findMax :: FiniteMap b a -> (b,a); 35.52/17.89 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 35.52/17.89 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 35.52/17.89 35.52/17.89 findMin :: FiniteMap a b -> (a,b); 35.52/17.89 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 35.52/17.89 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 35.52/17.89 35.52/17.89 fmToList :: FiniteMap b a -> [(b,a)]; 35.52/17.89 fmToList fm = foldFM fmToList0 [] fm; 35.52/17.89 35.52/17.89 fmToList0 key elt rest = (key,elt) : rest; 35.52/17.89 35.52/17.89 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 35.52/17.89 foldFM k z EmptyFM = z; 35.52/17.89 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 35.52/17.89 35.52/17.89 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 35.52/17.89 listToFM = addListToFM emptyFM; 35.52/17.89 35.52/17.89 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 35.52/17.89 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 35.52/17.89 35.52/17.89 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 fm_R key elt fm_L key elt fm_L fm_R (mkBalBranch6Size_l fm_R key elt fm_L + mkBalBranch6Size_r fm_R key elt fm_L < Pos (Succ (Succ Zero))); 35.52/17.89 35.52/17.89 mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu 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))))))) wxz wyu fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); 35.52/17.89 35.52/17.89 mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv 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))))))))))))) wxz wyu fm_lrr fm_r); 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; 35.52/17.89 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; 35.52/17.89 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 35.52/17.89 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 35.52/17.89 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); 35.52/17.89 35.52/17.89 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 35.52/17.89 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); 35.52/17.89 35.52/17.89 mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) wxz wyu fm_l fm_rl) fm_rr; 35.52/17.89 35.52/17.89 mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz 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)))))))))) wxz wyu fm_lr fm_r); 35.52/17.89 35.52/17.89 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; 35.52/17.89 35.52/17.89 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wxy; 35.52/17.89 35.52/17.89 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 35.52/17.89 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 35.52/17.89 35.52/17.89 mkBranchBalance_ok wyx wyy wyz = True; 35.52/17.89 35.52/17.89 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 35.52/17.89 35.52/17.89 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 35.52/17.89 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 35.52/17.89 35.52/17.89 mkBranchLeft_ok0Biggest_left_key wzz = fst (findMax wzz); 35.52/17.89 35.52/17.89 mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 35.52/17.89 35.52/17.89 mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (Pos (Succ Zero) + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; 35.52/17.89 35.52/17.89 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 35.52/17.89 35.52/17.89 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 35.52/17.89 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 35.52/17.89 35.52/17.89 mkBranchRight_ok0Smallest_right_key wzy = fst (findMin wzy); 35.52/17.89 35.52/17.89 mkBranchRight_size wyx wyy wyz = sizeFM wyx; 35.52/17.89 35.52/17.89 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 35.52/17.89 mkBranchUnbox wyx wyy wyz x = x; 35.52/17.89 35.52/17.89 sIZE_RATIO :: Int; 35.52/17.89 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 35.52/17.89 35.52/17.89 sizeFM :: FiniteMap a b -> Int; 35.52/17.89 sizeFM EmptyFM = Pos Zero; 35.52/17.89 sizeFM (Branch vyu vyv size vyw vyx) = size; 35.52/17.89 35.52/17.89 unitFM :: a -> b -> FiniteMap a b; 35.52/17.89 unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; 35.52/17.89 35.52/17.89 } 35.52/17.89 module Maybe where { 35.52/17.89 import qualified FiniteMap; 35.52/17.89 import qualified Main; 35.52/17.89 import qualified Prelude; 35.52/17.89 } 35.52/17.89 module Main where { 35.52/17.89 import qualified FiniteMap; 35.52/17.89 import qualified Maybe; 35.52/17.89 import qualified Prelude; 35.52/17.89 } 35.52/17.89 35.52/17.89 ---------------------------------------- 35.52/17.89 35.52/17.89 (15) Narrow (SOUND) 35.52/17.89 Haskell To QDPs 35.52/17.89 35.52/17.89 digraph dp_graph { 35.52/17.89 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.listToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 35.52/17.89 3[label="FiniteMap.listToFM xuu3",fontsize=16,color="black",shape="triangle"];3 -> 4[label="",style="solid", color="black", weight=3]; 35.52/17.89 4[label="FiniteMap.addListToFM FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];4 -> 5[label="",style="solid", color="black", weight=3]; 35.52/17.89 5[label="FiniteMap.addListToFM_C FiniteMap.addListToFM0 FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 35.52/17.89 6 -> 20[label="",style="dashed", color="red", weight=0]; 35.52/17.89 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) FiniteMap.emptyFM xuu3",fontsize=16,color="magenta"];6 -> 21[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 6 -> 22[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 21[label="xuu3",fontsize=16,color="green",shape="box"];22[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];22 -> 27[label="",style="solid", color="black", weight=3]; 35.52/17.89 20[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 xuu311",fontsize=16,color="burlywood",shape="triangle"];3273[label="xuu311/xuu3110 : xuu3111",fontsize=10,color="white",style="solid",shape="box"];20 -> 3273[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3273 -> 28[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3274[label="xuu311/[]",fontsize=10,color="white",style="solid",shape="box"];20 -> 3274[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3274 -> 29[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 27[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];28[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 (xuu3110 : xuu3111)",fontsize=16,color="black",shape="box"];28 -> 30[label="",style="solid", color="black", weight=3]; 35.52/17.89 29[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 []",fontsize=16,color="black",shape="box"];29 -> 31[label="",style="solid", color="black", weight=3]; 35.52/17.89 30 -> 20[label="",style="dashed", color="red", weight=0]; 35.52/17.89 30[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 xuu3110) xuu3111",fontsize=16,color="magenta"];30 -> 32[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 30 -> 33[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 31[label="xuu6",fontsize=16,color="green",shape="box"];32[label="xuu3111",fontsize=16,color="green",shape="box"];33[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 xuu3110",fontsize=16,color="burlywood",shape="box"];3275[label="xuu3110/(xuu31100,xuu31101)",fontsize=10,color="white",style="solid",shape="box"];33 -> 3275[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3275 -> 34[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 34[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 (xuu31100,xuu31101)",fontsize=16,color="black",shape="box"];34 -> 35[label="",style="solid", color="black", weight=3]; 35.52/17.89 35[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu6 xuu31100 xuu31101",fontsize=16,color="burlywood",shape="triangle"];3276[label="xuu6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];35 -> 3276[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3276 -> 36[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3277[label="xuu6/FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64",fontsize=10,color="white",style="solid",shape="box"];35 -> 3277[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3277 -> 37[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 36[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];36 -> 38[label="",style="solid", color="black", weight=3]; 35.52/17.89 37[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];37 -> 39[label="",style="solid", color="black", weight=3]; 35.52/17.89 38[label="FiniteMap.addToFM_C4 FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];38 -> 40[label="",style="solid", color="black", weight=3]; 35.52/17.89 39[label="FiniteMap.addToFM_C3 FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];39 -> 41[label="",style="solid", color="black", weight=3]; 35.52/17.89 40[label="FiniteMap.unitFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];40 -> 42[label="",style="solid", color="black", weight=3]; 35.52/17.89 41 -> 43[label="",style="dashed", color="red", weight=0]; 35.52/17.89 41[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (xuu31100 < xuu60)",fontsize=16,color="magenta"];41 -> 44[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 41 -> 45[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 41 -> 46[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 41 -> 47[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 41 -> 48[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 41 -> 49[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 41 -> 50[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 41 -> 51[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 42[label="FiniteMap.Branch xuu31100 xuu31101 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];42 -> 52[label="",style="dashed", color="green", weight=3]; 35.52/17.89 42 -> 53[label="",style="dashed", color="green", weight=3]; 35.52/17.89 44[label="xuu31100 < xuu60",fontsize=16,color="blue",shape="box"];3278[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3278[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3278 -> 54[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3279[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3279[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3279 -> 55[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3280[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3280[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3280 -> 56[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3281[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3281[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3281 -> 57[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3282[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3282[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3282 -> 58[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3283[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3283[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3283 -> 59[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3284[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3284[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3284 -> 60[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3285[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3285[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3285 -> 61[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3286[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3286[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3286 -> 62[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3287[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3287[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3287 -> 63[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3288[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3288[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3288 -> 64[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3289[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3289[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3289 -> 65[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3290[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3290[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3290 -> 66[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3291[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3291[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3291 -> 67[label="",style="solid", color="blue", weight=3]; 35.52/17.89 45[label="xuu60",fontsize=16,color="green",shape="box"];46[label="xuu61",fontsize=16,color="green",shape="box"];47[label="xuu31101",fontsize=16,color="green",shape="box"];48[label="xuu64",fontsize=16,color="green",shape="box"];49[label="xuu31100",fontsize=16,color="green",shape="box"];50[label="xuu63",fontsize=16,color="green",shape="box"];51[label="xuu62",fontsize=16,color="green",shape="box"];43[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu17 xuu18 xuu19 xuu20 xuu21 xuu22 xuu23 xuu24",fontsize=16,color="burlywood",shape="triangle"];3292[label="xuu24/False",fontsize=10,color="white",style="solid",shape="box"];43 -> 3292[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3292 -> 68[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3293[label="xuu24/True",fontsize=10,color="white",style="solid",shape="box"];43 -> 3293[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3293 -> 69[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 52 -> 22[label="",style="dashed", color="red", weight=0]; 35.52/17.89 52[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];53 -> 22[label="",style="dashed", color="red", weight=0]; 35.52/17.89 53[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];54[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];54 -> 70[label="",style="solid", color="black", weight=3]; 35.52/17.89 55[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];55 -> 71[label="",style="solid", color="black", weight=3]; 35.52/17.89 56[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];56 -> 72[label="",style="solid", color="black", weight=3]; 35.52/17.89 57[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];57 -> 73[label="",style="solid", color="black", weight=3]; 35.52/17.89 58[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];58 -> 74[label="",style="solid", color="black", weight=3]; 35.52/17.89 59[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];59 -> 75[label="",style="solid", color="black", weight=3]; 35.52/17.89 60[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];60 -> 76[label="",style="solid", color="black", weight=3]; 35.52/17.89 61[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];61 -> 77[label="",style="solid", color="black", weight=3]; 35.52/17.89 62[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];62 -> 78[label="",style="solid", color="black", weight=3]; 35.52/17.89 63[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];63 -> 79[label="",style="solid", color="black", weight=3]; 35.52/17.89 64[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];64 -> 80[label="",style="solid", color="black", weight=3]; 35.52/17.89 65[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];65 -> 81[label="",style="solid", color="black", weight=3]; 35.52/17.89 66[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];66 -> 82[label="",style="solid", color="black", weight=3]; 35.52/17.89 67[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];67 -> 83[label="",style="solid", color="black", weight=3]; 35.52/17.89 68[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu17 xuu18 xuu19 xuu20 xuu21 xuu22 xuu23 False",fontsize=16,color="black",shape="box"];68 -> 84[label="",style="solid", color="black", weight=3]; 35.52/17.89 69[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu17 xuu18 xuu19 xuu20 xuu21 xuu22 xuu23 True",fontsize=16,color="black",shape="box"];69 -> 85[label="",style="solid", color="black", weight=3]; 35.52/17.89 70 -> 231[label="",style="dashed", color="red", weight=0]; 35.52/17.89 70[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];70 -> 232[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 71 -> 231[label="",style="dashed", color="red", weight=0]; 35.52/17.89 71[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];71 -> 233[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 72 -> 231[label="",style="dashed", color="red", weight=0]; 35.52/17.89 72[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];72 -> 234[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 73 -> 231[label="",style="dashed", color="red", weight=0]; 35.52/17.89 73[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];73 -> 235[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 74 -> 231[label="",style="dashed", color="red", weight=0]; 35.52/17.89 74[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];74 -> 236[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 75 -> 231[label="",style="dashed", color="red", weight=0]; 35.52/17.89 75[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];75 -> 237[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 76 -> 231[label="",style="dashed", color="red", weight=0]; 35.52/17.89 76[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];76 -> 238[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 77 -> 231[label="",style="dashed", color="red", weight=0]; 35.52/17.89 77[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];77 -> 239[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 78 -> 231[label="",style="dashed", color="red", weight=0]; 35.52/17.89 78[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];78 -> 240[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 79 -> 231[label="",style="dashed", color="red", weight=0]; 35.52/17.89 79[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];79 -> 241[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 80 -> 231[label="",style="dashed", color="red", weight=0]; 35.52/17.89 80[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];80 -> 242[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 81 -> 231[label="",style="dashed", color="red", weight=0]; 35.52/17.89 81[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];81 -> 243[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 82 -> 231[label="",style="dashed", color="red", weight=0]; 35.52/17.89 82[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];82 -> 244[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 83 -> 231[label="",style="dashed", color="red", weight=0]; 35.52/17.89 83[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];83 -> 245[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 84 -> 101[label="",style="dashed", color="red", weight=0]; 35.52/17.89 84[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 xuu17 xuu18 xuu19 xuu20 xuu21 xuu22 xuu23 (xuu22 > xuu17)",fontsize=16,color="magenta"];84 -> 102[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 84 -> 103[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 84 -> 104[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 84 -> 105[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 84 -> 106[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 84 -> 107[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 84 -> 108[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 84 -> 109[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 85 -> 110[label="",style="dashed", color="red", weight=0]; 35.52/17.89 85[label="FiniteMap.mkBalBranch xuu17 xuu18 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 xuu22 xuu23) xuu21",fontsize=16,color="magenta"];85 -> 111[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 232[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];232 -> 270[label="",style="solid", color="black", weight=3]; 35.52/17.89 231[label="xuu45 == LT",fontsize=16,color="burlywood",shape="triangle"];3294[label="xuu45/LT",fontsize=10,color="white",style="solid",shape="box"];231 -> 3294[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3294 -> 271[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3295[label="xuu45/EQ",fontsize=10,color="white",style="solid",shape="box"];231 -> 3295[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3295 -> 272[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3296[label="xuu45/GT",fontsize=10,color="white",style="solid",shape="box"];231 -> 3296[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3296 -> 273[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 233[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];233 -> 274[label="",style="solid", color="black", weight=3]; 35.52/17.89 234[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];234 -> 275[label="",style="solid", color="black", weight=3]; 35.52/17.89 235[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];235 -> 276[label="",style="solid", color="black", weight=3]; 35.52/17.89 236[label="compare xuu31100 xuu60",fontsize=16,color="burlywood",shape="triangle"];3297[label="xuu31100/Integer xuu311000",fontsize=10,color="white",style="solid",shape="box"];236 -> 3297[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3297 -> 277[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 237[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];237 -> 278[label="",style="solid", color="black", weight=3]; 35.52/17.89 238[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];238 -> 279[label="",style="solid", color="black", weight=3]; 35.52/17.89 239[label="compare xuu31100 xuu60",fontsize=16,color="burlywood",shape="triangle"];3298[label="xuu31100/xuu311000 : xuu311001",fontsize=10,color="white",style="solid",shape="box"];239 -> 3298[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3298 -> 280[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3299[label="xuu31100/[]",fontsize=10,color="white",style="solid",shape="box"];239 -> 3299[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3299 -> 281[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 240[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];240 -> 282[label="",style="solid", color="black", weight=3]; 35.52/17.89 241[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];241 -> 283[label="",style="solid", color="black", weight=3]; 35.52/17.89 242[label="compare xuu31100 xuu60",fontsize=16,color="burlywood",shape="triangle"];3300[label="xuu31100/xuu311000 :% xuu311001",fontsize=10,color="white",style="solid",shape="box"];242 -> 3300[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3300 -> 284[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 243[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];243 -> 285[label="",style="solid", color="black", weight=3]; 35.52/17.89 244[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];244 -> 286[label="",style="solid", color="black", weight=3]; 35.52/17.89 245[label="compare xuu31100 xuu60",fontsize=16,color="burlywood",shape="triangle"];3301[label="xuu31100/()",fontsize=10,color="white",style="solid",shape="box"];245 -> 3301[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3301 -> 287[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 102[label="xuu17",fontsize=16,color="green",shape="box"];103[label="xuu23",fontsize=16,color="green",shape="box"];104[label="xuu20",fontsize=16,color="green",shape="box"];105[label="xuu22",fontsize=16,color="green",shape="box"];106[label="xuu21",fontsize=16,color="green",shape="box"];107[label="xuu18",fontsize=16,color="green",shape="box"];108[label="xuu19",fontsize=16,color="green",shape="box"];109[label="xuu22 > xuu17",fontsize=16,color="blue",shape="box"];3302[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3302[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3302 -> 130[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3303[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3303[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3303 -> 131[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3304[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3304[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3304 -> 132[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3305[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3305[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3305 -> 133[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3306[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3306[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3306 -> 134[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3307[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3307[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3307 -> 135[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3308[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3308[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3308 -> 136[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3309[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3309[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3309 -> 137[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3310[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3310[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3310 -> 138[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3311[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3311[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3311 -> 139[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3312[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3312[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3312 -> 140[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3313[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3313[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3313 -> 141[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3314[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3314[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3314 -> 142[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3315[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3315[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3315 -> 143[label="",style="solid", color="blue", weight=3]; 35.52/17.89 101[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 xuu34 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 xuu41",fontsize=16,color="burlywood",shape="triangle"];3316[label="xuu41/False",fontsize=10,color="white",style="solid",shape="box"];101 -> 3316[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3316 -> 144[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3317[label="xuu41/True",fontsize=10,color="white",style="solid",shape="box"];101 -> 3317[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3317 -> 145[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 111 -> 35[label="",style="dashed", color="red", weight=0]; 35.52/17.89 111[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 xuu22 xuu23",fontsize=16,color="magenta"];111 -> 146[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 111 -> 147[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 111 -> 148[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 110[label="FiniteMap.mkBalBranch xuu17 xuu18 xuu42 xuu21",fontsize=16,color="black",shape="triangle"];110 -> 149[label="",style="solid", color="black", weight=3]; 35.52/17.89 270[label="compare3 xuu31100 xuu60",fontsize=16,color="black",shape="box"];270 -> 303[label="",style="solid", color="black", weight=3]; 35.52/17.89 271[label="LT == LT",fontsize=16,color="black",shape="box"];271 -> 304[label="",style="solid", color="black", weight=3]; 35.52/17.89 272[label="EQ == LT",fontsize=16,color="black",shape="box"];272 -> 305[label="",style="solid", color="black", weight=3]; 35.52/17.89 273[label="GT == LT",fontsize=16,color="black",shape="box"];273 -> 306[label="",style="solid", color="black", weight=3]; 35.52/17.89 274[label="primCmpInt xuu31100 xuu60",fontsize=16,color="burlywood",shape="triangle"];3318[label="xuu31100/Pos xuu311000",fontsize=10,color="white",style="solid",shape="box"];274 -> 3318[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3318 -> 307[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3319[label="xuu31100/Neg xuu311000",fontsize=10,color="white",style="solid",shape="box"];274 -> 3319[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3319 -> 308[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 275[label="compare3 xuu31100 xuu60",fontsize=16,color="black",shape="box"];275 -> 309[label="",style="solid", color="black", weight=3]; 35.52/17.89 276[label="primCmpDouble xuu31100 xuu60",fontsize=16,color="burlywood",shape="box"];3320[label="xuu31100/Double xuu311000 xuu311001",fontsize=10,color="white",style="solid",shape="box"];276 -> 3320[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3320 -> 310[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 277[label="compare (Integer xuu311000) xuu60",fontsize=16,color="burlywood",shape="box"];3321[label="xuu60/Integer xuu600",fontsize=10,color="white",style="solid",shape="box"];277 -> 3321[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3321 -> 311[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 278[label="primCmpFloat xuu31100 xuu60",fontsize=16,color="burlywood",shape="box"];3322[label="xuu31100/Float xuu311000 xuu311001",fontsize=10,color="white",style="solid",shape="box"];278 -> 3322[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3322 -> 312[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 279[label="compare3 xuu31100 xuu60",fontsize=16,color="black",shape="box"];279 -> 313[label="",style="solid", color="black", weight=3]; 35.52/17.89 280[label="compare (xuu311000 : xuu311001) xuu60",fontsize=16,color="burlywood",shape="box"];3323[label="xuu60/xuu600 : xuu601",fontsize=10,color="white",style="solid",shape="box"];280 -> 3323[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3323 -> 314[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3324[label="xuu60/[]",fontsize=10,color="white",style="solid",shape="box"];280 -> 3324[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3324 -> 315[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 281[label="compare [] xuu60",fontsize=16,color="burlywood",shape="box"];3325[label="xuu60/xuu600 : xuu601",fontsize=10,color="white",style="solid",shape="box"];281 -> 3325[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3325 -> 316[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3326[label="xuu60/[]",fontsize=10,color="white",style="solid",shape="box"];281 -> 3326[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3326 -> 317[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 282[label="compare3 xuu31100 xuu60",fontsize=16,color="black",shape="box"];282 -> 318[label="",style="solid", color="black", weight=3]; 35.52/17.89 283[label="compare3 xuu31100 xuu60",fontsize=16,color="black",shape="box"];283 -> 319[label="",style="solid", color="black", weight=3]; 35.52/17.89 284[label="compare (xuu311000 :% xuu311001) xuu60",fontsize=16,color="burlywood",shape="box"];3327[label="xuu60/xuu600 :% xuu601",fontsize=10,color="white",style="solid",shape="box"];284 -> 3327[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3327 -> 320[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 285[label="compare3 xuu31100 xuu60",fontsize=16,color="black",shape="box"];285 -> 321[label="",style="solid", color="black", weight=3]; 35.52/17.89 286[label="primCmpChar xuu31100 xuu60",fontsize=16,color="burlywood",shape="box"];3328[label="xuu31100/Char xuu311000",fontsize=10,color="white",style="solid",shape="box"];286 -> 3328[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3328 -> 322[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 287[label="compare () xuu60",fontsize=16,color="burlywood",shape="box"];3329[label="xuu60/()",fontsize=10,color="white",style="solid",shape="box"];287 -> 3329[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3329 -> 323[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 130[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];130 -> 177[label="",style="solid", color="black", weight=3]; 35.52/17.89 131[label="xuu22 > xuu17",fontsize=16,color="black",shape="triangle"];131 -> 178[label="",style="solid", color="black", weight=3]; 35.52/17.89 132[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];132 -> 179[label="",style="solid", color="black", weight=3]; 35.52/17.89 133[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];133 -> 180[label="",style="solid", color="black", weight=3]; 35.52/17.89 134[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];134 -> 181[label="",style="solid", color="black", weight=3]; 35.52/17.89 135[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];135 -> 182[label="",style="solid", color="black", weight=3]; 35.52/17.89 136[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];136 -> 183[label="",style="solid", color="black", weight=3]; 35.52/17.89 137[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];137 -> 184[label="",style="solid", color="black", weight=3]; 35.52/17.89 138[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];138 -> 185[label="",style="solid", color="black", weight=3]; 35.52/17.89 139[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];139 -> 186[label="",style="solid", color="black", weight=3]; 35.52/17.89 140[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];140 -> 187[label="",style="solid", color="black", weight=3]; 35.52/17.89 141[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];141 -> 188[label="",style="solid", color="black", weight=3]; 35.52/17.89 142[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];142 -> 189[label="",style="solid", color="black", weight=3]; 35.52/17.89 143[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];143 -> 190[label="",style="solid", color="black", weight=3]; 35.52/17.89 144[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 xuu34 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 False",fontsize=16,color="black",shape="box"];144 -> 191[label="",style="solid", color="black", weight=3]; 35.52/17.89 145[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 xuu34 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 True",fontsize=16,color="black",shape="box"];145 -> 192[label="",style="solid", color="black", weight=3]; 35.52/17.89 146[label="xuu22",fontsize=16,color="green",shape="box"];147[label="xuu23",fontsize=16,color="green",shape="box"];148[label="xuu20",fontsize=16,color="green",shape="box"];149[label="FiniteMap.mkBalBranch6 xuu17 xuu18 xuu42 xuu21",fontsize=16,color="black",shape="box"];149 -> 193[label="",style="solid", color="black", weight=3]; 35.52/17.89 303[label="compare2 xuu31100 xuu60 (xuu31100 == xuu60)",fontsize=16,color="burlywood",shape="box"];3330[label="xuu31100/Left xuu311000",fontsize=10,color="white",style="solid",shape="box"];303 -> 3330[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3330 -> 331[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3331[label="xuu31100/Right xuu311000",fontsize=10,color="white",style="solid",shape="box"];303 -> 3331[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3331 -> 332[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 304[label="True",fontsize=16,color="green",shape="box"];305[label="False",fontsize=16,color="green",shape="box"];306[label="False",fontsize=16,color="green",shape="box"];307[label="primCmpInt (Pos xuu311000) xuu60",fontsize=16,color="burlywood",shape="box"];3332[label="xuu311000/Succ xuu3110000",fontsize=10,color="white",style="solid",shape="box"];307 -> 3332[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3332 -> 333[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3333[label="xuu311000/Zero",fontsize=10,color="white",style="solid",shape="box"];307 -> 3333[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3333 -> 334[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 308[label="primCmpInt (Neg xuu311000) xuu60",fontsize=16,color="burlywood",shape="box"];3334[label="xuu311000/Succ xuu3110000",fontsize=10,color="white",style="solid",shape="box"];308 -> 3334[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3334 -> 335[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3335[label="xuu311000/Zero",fontsize=10,color="white",style="solid",shape="box"];308 -> 3335[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3335 -> 336[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 309[label="compare2 xuu31100 xuu60 (xuu31100 == xuu60)",fontsize=16,color="burlywood",shape="box"];3336[label="xuu31100/(xuu311000,xuu311001,xuu311002)",fontsize=10,color="white",style="solid",shape="box"];309 -> 3336[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3336 -> 337[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 310[label="primCmpDouble (Double xuu311000 xuu311001) xuu60",fontsize=16,color="burlywood",shape="box"];3337[label="xuu311001/Pos xuu3110010",fontsize=10,color="white",style="solid",shape="box"];310 -> 3337[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3337 -> 338[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3338[label="xuu311001/Neg xuu3110010",fontsize=10,color="white",style="solid",shape="box"];310 -> 3338[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3338 -> 339[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 311[label="compare (Integer xuu311000) (Integer xuu600)",fontsize=16,color="black",shape="box"];311 -> 340[label="",style="solid", color="black", weight=3]; 35.52/17.89 312[label="primCmpFloat (Float xuu311000 xuu311001) xuu60",fontsize=16,color="burlywood",shape="box"];3339[label="xuu311001/Pos xuu3110010",fontsize=10,color="white",style="solid",shape="box"];312 -> 3339[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3339 -> 341[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3340[label="xuu311001/Neg xuu3110010",fontsize=10,color="white",style="solid",shape="box"];312 -> 3340[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3340 -> 342[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 313[label="compare2 xuu31100 xuu60 (xuu31100 == xuu60)",fontsize=16,color="burlywood",shape="box"];3341[label="xuu31100/LT",fontsize=10,color="white",style="solid",shape="box"];313 -> 3341[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3341 -> 343[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3342[label="xuu31100/EQ",fontsize=10,color="white",style="solid",shape="box"];313 -> 3342[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3342 -> 344[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3343[label="xuu31100/GT",fontsize=10,color="white",style="solid",shape="box"];313 -> 3343[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3343 -> 345[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 314[label="compare (xuu311000 : xuu311001) (xuu600 : xuu601)",fontsize=16,color="black",shape="box"];314 -> 346[label="",style="solid", color="black", weight=3]; 35.52/17.89 315[label="compare (xuu311000 : xuu311001) []",fontsize=16,color="black",shape="box"];315 -> 347[label="",style="solid", color="black", weight=3]; 35.52/17.89 316[label="compare [] (xuu600 : xuu601)",fontsize=16,color="black",shape="box"];316 -> 348[label="",style="solid", color="black", weight=3]; 35.52/17.89 317[label="compare [] []",fontsize=16,color="black",shape="box"];317 -> 349[label="",style="solid", color="black", weight=3]; 35.52/17.89 318[label="compare2 xuu31100 xuu60 (xuu31100 == xuu60)",fontsize=16,color="burlywood",shape="box"];3344[label="xuu31100/Nothing",fontsize=10,color="white",style="solid",shape="box"];318 -> 3344[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3344 -> 350[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3345[label="xuu31100/Just xuu311000",fontsize=10,color="white",style="solid",shape="box"];318 -> 3345[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3345 -> 351[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 319[label="compare2 xuu31100 xuu60 (xuu31100 == xuu60)",fontsize=16,color="burlywood",shape="box"];3346[label="xuu31100/(xuu311000,xuu311001)",fontsize=10,color="white",style="solid",shape="box"];319 -> 3346[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3346 -> 352[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 320[label="compare (xuu311000 :% xuu311001) (xuu600 :% xuu601)",fontsize=16,color="black",shape="box"];320 -> 353[label="",style="solid", color="black", weight=3]; 35.52/17.89 321[label="compare2 xuu31100 xuu60 (xuu31100 == xuu60)",fontsize=16,color="burlywood",shape="box"];3347[label="xuu31100/False",fontsize=10,color="white",style="solid",shape="box"];321 -> 3347[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3347 -> 354[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3348[label="xuu31100/True",fontsize=10,color="white",style="solid",shape="box"];321 -> 3348[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3348 -> 355[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 322[label="primCmpChar (Char xuu311000) xuu60",fontsize=16,color="burlywood",shape="box"];3349[label="xuu60/Char xuu600",fontsize=10,color="white",style="solid",shape="box"];322 -> 3349[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3349 -> 356[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 323[label="compare () ()",fontsize=16,color="black",shape="box"];323 -> 357[label="",style="solid", color="black", weight=3]; 35.52/17.89 177 -> 288[label="",style="dashed", color="red", weight=0]; 35.52/17.89 177[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];177 -> 289[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 178 -> 288[label="",style="dashed", color="red", weight=0]; 35.52/17.89 178[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];178 -> 290[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 179 -> 288[label="",style="dashed", color="red", weight=0]; 35.52/17.89 179[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];179 -> 291[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 180 -> 288[label="",style="dashed", color="red", weight=0]; 35.52/17.89 180[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];180 -> 292[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 181 -> 288[label="",style="dashed", color="red", weight=0]; 35.52/17.89 181[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];181 -> 293[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 182 -> 288[label="",style="dashed", color="red", weight=0]; 35.52/17.89 182[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];182 -> 294[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 183 -> 288[label="",style="dashed", color="red", weight=0]; 35.52/17.89 183[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];183 -> 295[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 184 -> 288[label="",style="dashed", color="red", weight=0]; 35.52/17.89 184[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];184 -> 296[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 185 -> 288[label="",style="dashed", color="red", weight=0]; 35.52/17.89 185[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];185 -> 297[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 186 -> 288[label="",style="dashed", color="red", weight=0]; 35.52/17.89 186[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];186 -> 298[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 187 -> 288[label="",style="dashed", color="red", weight=0]; 35.52/17.89 187[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];187 -> 299[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 188 -> 288[label="",style="dashed", color="red", weight=0]; 35.52/17.89 188[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];188 -> 300[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 189 -> 288[label="",style="dashed", color="red", weight=0]; 35.52/17.89 189[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];189 -> 301[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 190 -> 288[label="",style="dashed", color="red", weight=0]; 35.52/17.89 190[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];190 -> 302[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 191[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 xuu34 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 otherwise",fontsize=16,color="black",shape="box"];191 -> 324[label="",style="solid", color="black", weight=3]; 35.52/17.89 192 -> 110[label="",style="dashed", color="red", weight=0]; 35.52/17.89 192[label="FiniteMap.mkBalBranch xuu34 xuu35 xuu37 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu38 xuu39 xuu40)",fontsize=16,color="magenta"];192 -> 325[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 192 -> 326[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 192 -> 327[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 192 -> 328[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 193 -> 329[label="",style="dashed", color="red", weight=0]; 35.52/17.89 193[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 (FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42 + FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];193 -> 330[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 331[label="compare2 (Left xuu311000) xuu60 (Left xuu311000 == xuu60)",fontsize=16,color="burlywood",shape="box"];3350[label="xuu60/Left xuu600",fontsize=10,color="white",style="solid",shape="box"];331 -> 3350[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3350 -> 397[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3351[label="xuu60/Right xuu600",fontsize=10,color="white",style="solid",shape="box"];331 -> 3351[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3351 -> 398[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 332[label="compare2 (Right xuu311000) xuu60 (Right xuu311000 == xuu60)",fontsize=16,color="burlywood",shape="box"];3352[label="xuu60/Left xuu600",fontsize=10,color="white",style="solid",shape="box"];332 -> 3352[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3352 -> 399[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3353[label="xuu60/Right xuu600",fontsize=10,color="white",style="solid",shape="box"];332 -> 3353[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3353 -> 400[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 333[label="primCmpInt (Pos (Succ xuu3110000)) xuu60",fontsize=16,color="burlywood",shape="box"];3354[label="xuu60/Pos xuu600",fontsize=10,color="white",style="solid",shape="box"];333 -> 3354[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3354 -> 401[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3355[label="xuu60/Neg xuu600",fontsize=10,color="white",style="solid",shape="box"];333 -> 3355[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3355 -> 402[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 334[label="primCmpInt (Pos Zero) xuu60",fontsize=16,color="burlywood",shape="box"];3356[label="xuu60/Pos xuu600",fontsize=10,color="white",style="solid",shape="box"];334 -> 3356[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3356 -> 403[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3357[label="xuu60/Neg xuu600",fontsize=10,color="white",style="solid",shape="box"];334 -> 3357[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3357 -> 404[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 335[label="primCmpInt (Neg (Succ xuu3110000)) xuu60",fontsize=16,color="burlywood",shape="box"];3358[label="xuu60/Pos xuu600",fontsize=10,color="white",style="solid",shape="box"];335 -> 3358[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3358 -> 405[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3359[label="xuu60/Neg xuu600",fontsize=10,color="white",style="solid",shape="box"];335 -> 3359[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3359 -> 406[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 336[label="primCmpInt (Neg Zero) xuu60",fontsize=16,color="burlywood",shape="box"];3360[label="xuu60/Pos xuu600",fontsize=10,color="white",style="solid",shape="box"];336 -> 3360[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3360 -> 407[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3361[label="xuu60/Neg xuu600",fontsize=10,color="white",style="solid",shape="box"];336 -> 3361[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3361 -> 408[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 337[label="compare2 (xuu311000,xuu311001,xuu311002) xuu60 ((xuu311000,xuu311001,xuu311002) == xuu60)",fontsize=16,color="burlywood",shape="box"];3362[label="xuu60/(xuu600,xuu601,xuu602)",fontsize=10,color="white",style="solid",shape="box"];337 -> 3362[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3362 -> 409[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 338[label="primCmpDouble (Double xuu311000 (Pos xuu3110010)) xuu60",fontsize=16,color="burlywood",shape="box"];3363[label="xuu60/Double xuu600 xuu601",fontsize=10,color="white",style="solid",shape="box"];338 -> 3363[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3363 -> 410[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 339[label="primCmpDouble (Double xuu311000 (Neg xuu3110010)) xuu60",fontsize=16,color="burlywood",shape="box"];3364[label="xuu60/Double xuu600 xuu601",fontsize=10,color="white",style="solid",shape="box"];339 -> 3364[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3364 -> 411[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 340 -> 274[label="",style="dashed", color="red", weight=0]; 35.52/17.89 340[label="primCmpInt xuu311000 xuu600",fontsize=16,color="magenta"];340 -> 412[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 340 -> 413[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 341[label="primCmpFloat (Float xuu311000 (Pos xuu3110010)) xuu60",fontsize=16,color="burlywood",shape="box"];3365[label="xuu60/Float xuu600 xuu601",fontsize=10,color="white",style="solid",shape="box"];341 -> 3365[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3365 -> 414[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 342[label="primCmpFloat (Float xuu311000 (Neg xuu3110010)) xuu60",fontsize=16,color="burlywood",shape="box"];3366[label="xuu60/Float xuu600 xuu601",fontsize=10,color="white",style="solid",shape="box"];342 -> 3366[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3366 -> 415[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 343[label="compare2 LT xuu60 (LT == xuu60)",fontsize=16,color="burlywood",shape="box"];3367[label="xuu60/LT",fontsize=10,color="white",style="solid",shape="box"];343 -> 3367[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3367 -> 416[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3368[label="xuu60/EQ",fontsize=10,color="white",style="solid",shape="box"];343 -> 3368[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3368 -> 417[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3369[label="xuu60/GT",fontsize=10,color="white",style="solid",shape="box"];343 -> 3369[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3369 -> 418[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 344[label="compare2 EQ xuu60 (EQ == xuu60)",fontsize=16,color="burlywood",shape="box"];3370[label="xuu60/LT",fontsize=10,color="white",style="solid",shape="box"];344 -> 3370[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3370 -> 419[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3371[label="xuu60/EQ",fontsize=10,color="white",style="solid",shape="box"];344 -> 3371[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3371 -> 420[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3372[label="xuu60/GT",fontsize=10,color="white",style="solid",shape="box"];344 -> 3372[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3372 -> 421[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 345[label="compare2 GT xuu60 (GT == xuu60)",fontsize=16,color="burlywood",shape="box"];3373[label="xuu60/LT",fontsize=10,color="white",style="solid",shape="box"];345 -> 3373[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3373 -> 422[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3374[label="xuu60/EQ",fontsize=10,color="white",style="solid",shape="box"];345 -> 3374[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3374 -> 423[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3375[label="xuu60/GT",fontsize=10,color="white",style="solid",shape="box"];345 -> 3375[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3375 -> 424[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 346 -> 425[label="",style="dashed", color="red", weight=0]; 35.52/17.89 346[label="primCompAux xuu311000 xuu600 (compare xuu311001 xuu601)",fontsize=16,color="magenta"];346 -> 426[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 347[label="GT",fontsize=16,color="green",shape="box"];348[label="LT",fontsize=16,color="green",shape="box"];349[label="EQ",fontsize=16,color="green",shape="box"];350[label="compare2 Nothing xuu60 (Nothing == xuu60)",fontsize=16,color="burlywood",shape="box"];3376[label="xuu60/Nothing",fontsize=10,color="white",style="solid",shape="box"];350 -> 3376[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3376 -> 427[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3377[label="xuu60/Just xuu600",fontsize=10,color="white",style="solid",shape="box"];350 -> 3377[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3377 -> 428[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 351[label="compare2 (Just xuu311000) xuu60 (Just xuu311000 == xuu60)",fontsize=16,color="burlywood",shape="box"];3378[label="xuu60/Nothing",fontsize=10,color="white",style="solid",shape="box"];351 -> 3378[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3378 -> 429[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3379[label="xuu60/Just xuu600",fontsize=10,color="white",style="solid",shape="box"];351 -> 3379[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3379 -> 430[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 352[label="compare2 (xuu311000,xuu311001) xuu60 ((xuu311000,xuu311001) == xuu60)",fontsize=16,color="burlywood",shape="box"];3380[label="xuu60/(xuu600,xuu601)",fontsize=10,color="white",style="solid",shape="box"];352 -> 3380[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3380 -> 431[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 353[label="compare (xuu311000 * xuu601) (xuu600 * xuu311001)",fontsize=16,color="blue",shape="box"];3381[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];353 -> 3381[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3381 -> 432[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3382[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];353 -> 3382[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3382 -> 433[label="",style="solid", color="blue", weight=3]; 35.52/17.89 354[label="compare2 False xuu60 (False == xuu60)",fontsize=16,color="burlywood",shape="box"];3383[label="xuu60/False",fontsize=10,color="white",style="solid",shape="box"];354 -> 3383[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3383 -> 434[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3384[label="xuu60/True",fontsize=10,color="white",style="solid",shape="box"];354 -> 3384[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3384 -> 435[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 355[label="compare2 True xuu60 (True == xuu60)",fontsize=16,color="burlywood",shape="box"];3385[label="xuu60/False",fontsize=10,color="white",style="solid",shape="box"];355 -> 3385[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3385 -> 436[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3386[label="xuu60/True",fontsize=10,color="white",style="solid",shape="box"];355 -> 3386[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3386 -> 437[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 356[label="primCmpChar (Char xuu311000) (Char xuu600)",fontsize=16,color="black",shape="box"];356 -> 438[label="",style="solid", color="black", weight=3]; 35.52/17.89 357[label="EQ",fontsize=16,color="green",shape="box"];289 -> 232[label="",style="dashed", color="red", weight=0]; 35.52/17.89 289[label="compare xuu22 xuu17",fontsize=16,color="magenta"];289 -> 358[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 289 -> 359[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 288[label="xuu46 == GT",fontsize=16,color="burlywood",shape="triangle"];3387[label="xuu46/LT",fontsize=10,color="white",style="solid",shape="box"];288 -> 3387[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3387 -> 360[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3388[label="xuu46/EQ",fontsize=10,color="white",style="solid",shape="box"];288 -> 3388[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3388 -> 361[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3389[label="xuu46/GT",fontsize=10,color="white",style="solid",shape="box"];288 -> 3389[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3389 -> 362[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 290 -> 233[label="",style="dashed", color="red", weight=0]; 35.52/17.89 290[label="compare xuu22 xuu17",fontsize=16,color="magenta"];290 -> 363[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 290 -> 364[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 291 -> 234[label="",style="dashed", color="red", weight=0]; 35.52/17.89 291[label="compare xuu22 xuu17",fontsize=16,color="magenta"];291 -> 365[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 291 -> 366[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 292 -> 235[label="",style="dashed", color="red", weight=0]; 35.52/17.89 292[label="compare xuu22 xuu17",fontsize=16,color="magenta"];292 -> 367[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 292 -> 368[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 293 -> 236[label="",style="dashed", color="red", weight=0]; 35.52/17.89 293[label="compare xuu22 xuu17",fontsize=16,color="magenta"];293 -> 369[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 293 -> 370[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 294 -> 237[label="",style="dashed", color="red", weight=0]; 35.52/17.89 294[label="compare xuu22 xuu17",fontsize=16,color="magenta"];294 -> 371[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 294 -> 372[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 295 -> 238[label="",style="dashed", color="red", weight=0]; 35.52/17.89 295[label="compare xuu22 xuu17",fontsize=16,color="magenta"];295 -> 373[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 295 -> 374[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 296 -> 239[label="",style="dashed", color="red", weight=0]; 35.52/17.89 296[label="compare xuu22 xuu17",fontsize=16,color="magenta"];296 -> 375[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 296 -> 376[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 297 -> 240[label="",style="dashed", color="red", weight=0]; 35.52/17.89 297[label="compare xuu22 xuu17",fontsize=16,color="magenta"];297 -> 377[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 297 -> 378[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 298 -> 241[label="",style="dashed", color="red", weight=0]; 35.52/17.89 298[label="compare xuu22 xuu17",fontsize=16,color="magenta"];298 -> 379[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 298 -> 380[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 299 -> 242[label="",style="dashed", color="red", weight=0]; 35.52/17.89 299[label="compare xuu22 xuu17",fontsize=16,color="magenta"];299 -> 381[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 299 -> 382[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 300 -> 243[label="",style="dashed", color="red", weight=0]; 35.52/17.89 300[label="compare xuu22 xuu17",fontsize=16,color="magenta"];300 -> 383[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 300 -> 384[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 301 -> 244[label="",style="dashed", color="red", weight=0]; 35.52/17.89 301[label="compare xuu22 xuu17",fontsize=16,color="magenta"];301 -> 385[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 301 -> 386[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 302 -> 245[label="",style="dashed", color="red", weight=0]; 35.52/17.89 302[label="compare xuu22 xuu17",fontsize=16,color="magenta"];302 -> 387[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 302 -> 388[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 324[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 xuu34 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 True",fontsize=16,color="black",shape="box"];324 -> 389[label="",style="solid", color="black", weight=3]; 35.52/17.89 325[label="xuu34",fontsize=16,color="green",shape="box"];326[label="xuu35",fontsize=16,color="green",shape="box"];327 -> 35[label="",style="dashed", color="red", weight=0]; 35.52/17.89 327[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu38 xuu39 xuu40",fontsize=16,color="magenta"];327 -> 390[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 327 -> 391[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 327 -> 392[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 328[label="xuu37",fontsize=16,color="green",shape="box"];330 -> 55[label="",style="dashed", color="red", weight=0]; 35.52/17.89 330[label="FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42 + FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];330 -> 393[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 330 -> 394[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 329[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 xuu47",fontsize=16,color="burlywood",shape="triangle"];3390[label="xuu47/False",fontsize=10,color="white",style="solid",shape="box"];329 -> 3390[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3390 -> 395[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3391[label="xuu47/True",fontsize=10,color="white",style="solid",shape="box"];329 -> 3391[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3391 -> 396[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 397[label="compare2 (Left xuu311000) (Left xuu600) (Left xuu311000 == Left xuu600)",fontsize=16,color="black",shape="box"];397 -> 439[label="",style="solid", color="black", weight=3]; 35.52/17.89 398[label="compare2 (Left xuu311000) (Right xuu600) (Left xuu311000 == Right xuu600)",fontsize=16,color="black",shape="box"];398 -> 440[label="",style="solid", color="black", weight=3]; 35.52/17.89 399[label="compare2 (Right xuu311000) (Left xuu600) (Right xuu311000 == Left xuu600)",fontsize=16,color="black",shape="box"];399 -> 441[label="",style="solid", color="black", weight=3]; 35.52/17.89 400[label="compare2 (Right xuu311000) (Right xuu600) (Right xuu311000 == Right xuu600)",fontsize=16,color="black",shape="box"];400 -> 442[label="",style="solid", color="black", weight=3]; 35.52/17.89 401[label="primCmpInt (Pos (Succ xuu3110000)) (Pos xuu600)",fontsize=16,color="black",shape="box"];401 -> 443[label="",style="solid", color="black", weight=3]; 35.52/17.89 402[label="primCmpInt (Pos (Succ xuu3110000)) (Neg xuu600)",fontsize=16,color="black",shape="box"];402 -> 444[label="",style="solid", color="black", weight=3]; 35.52/17.89 403[label="primCmpInt (Pos Zero) (Pos xuu600)",fontsize=16,color="burlywood",shape="box"];3392[label="xuu600/Succ xuu6000",fontsize=10,color="white",style="solid",shape="box"];403 -> 3392[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3392 -> 445[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3393[label="xuu600/Zero",fontsize=10,color="white",style="solid",shape="box"];403 -> 3393[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3393 -> 446[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 404[label="primCmpInt (Pos Zero) (Neg xuu600)",fontsize=16,color="burlywood",shape="box"];3394[label="xuu600/Succ xuu6000",fontsize=10,color="white",style="solid",shape="box"];404 -> 3394[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3394 -> 447[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3395[label="xuu600/Zero",fontsize=10,color="white",style="solid",shape="box"];404 -> 3395[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3395 -> 448[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 405[label="primCmpInt (Neg (Succ xuu3110000)) (Pos xuu600)",fontsize=16,color="black",shape="box"];405 -> 449[label="",style="solid", color="black", weight=3]; 35.52/17.89 406[label="primCmpInt (Neg (Succ xuu3110000)) (Neg xuu600)",fontsize=16,color="black",shape="box"];406 -> 450[label="",style="solid", color="black", weight=3]; 35.52/17.89 407[label="primCmpInt (Neg Zero) (Pos xuu600)",fontsize=16,color="burlywood",shape="box"];3396[label="xuu600/Succ xuu6000",fontsize=10,color="white",style="solid",shape="box"];407 -> 3396[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3396 -> 451[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3397[label="xuu600/Zero",fontsize=10,color="white",style="solid",shape="box"];407 -> 3397[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3397 -> 452[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 408[label="primCmpInt (Neg Zero) (Neg xuu600)",fontsize=16,color="burlywood",shape="box"];3398[label="xuu600/Succ xuu6000",fontsize=10,color="white",style="solid",shape="box"];408 -> 3398[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3398 -> 453[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3399[label="xuu600/Zero",fontsize=10,color="white",style="solid",shape="box"];408 -> 3399[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3399 -> 454[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 409[label="compare2 (xuu311000,xuu311001,xuu311002) (xuu600,xuu601,xuu602) ((xuu311000,xuu311001,xuu311002) == (xuu600,xuu601,xuu602))",fontsize=16,color="black",shape="box"];409 -> 455[label="",style="solid", color="black", weight=3]; 35.52/17.89 410[label="primCmpDouble (Double xuu311000 (Pos xuu3110010)) (Double xuu600 xuu601)",fontsize=16,color="burlywood",shape="box"];3400[label="xuu601/Pos xuu6010",fontsize=10,color="white",style="solid",shape="box"];410 -> 3400[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3400 -> 456[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3401[label="xuu601/Neg xuu6010",fontsize=10,color="white",style="solid",shape="box"];410 -> 3401[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3401 -> 457[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 411[label="primCmpDouble (Double xuu311000 (Neg xuu3110010)) (Double xuu600 xuu601)",fontsize=16,color="burlywood",shape="box"];3402[label="xuu601/Pos xuu6010",fontsize=10,color="white",style="solid",shape="box"];411 -> 3402[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3402 -> 458[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3403[label="xuu601/Neg xuu6010",fontsize=10,color="white",style="solid",shape="box"];411 -> 3403[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3403 -> 459[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 412[label="xuu311000",fontsize=16,color="green",shape="box"];413[label="xuu600",fontsize=16,color="green",shape="box"];414[label="primCmpFloat (Float xuu311000 (Pos xuu3110010)) (Float xuu600 xuu601)",fontsize=16,color="burlywood",shape="box"];3404[label="xuu601/Pos xuu6010",fontsize=10,color="white",style="solid",shape="box"];414 -> 3404[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3404 -> 460[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3405[label="xuu601/Neg xuu6010",fontsize=10,color="white",style="solid",shape="box"];414 -> 3405[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3405 -> 461[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 415[label="primCmpFloat (Float xuu311000 (Neg xuu3110010)) (Float xuu600 xuu601)",fontsize=16,color="burlywood",shape="box"];3406[label="xuu601/Pos xuu6010",fontsize=10,color="white",style="solid",shape="box"];415 -> 3406[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3406 -> 462[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3407[label="xuu601/Neg xuu6010",fontsize=10,color="white",style="solid",shape="box"];415 -> 3407[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3407 -> 463[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 416[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];416 -> 464[label="",style="solid", color="black", weight=3]; 35.52/17.89 417[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];417 -> 465[label="",style="solid", color="black", weight=3]; 35.52/17.89 418[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];418 -> 466[label="",style="solid", color="black", weight=3]; 35.52/17.89 419[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];419 -> 467[label="",style="solid", color="black", weight=3]; 35.52/17.89 420[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];420 -> 468[label="",style="solid", color="black", weight=3]; 35.52/17.89 421[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];421 -> 469[label="",style="solid", color="black", weight=3]; 35.52/17.89 422[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];422 -> 470[label="",style="solid", color="black", weight=3]; 35.52/17.89 423[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];423 -> 471[label="",style="solid", color="black", weight=3]; 35.52/17.89 424[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];424 -> 472[label="",style="solid", color="black", weight=3]; 35.52/17.89 426 -> 239[label="",style="dashed", color="red", weight=0]; 35.52/17.89 426[label="compare xuu311001 xuu601",fontsize=16,color="magenta"];426 -> 473[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 426 -> 474[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 425[label="primCompAux xuu311000 xuu600 xuu48",fontsize=16,color="black",shape="triangle"];425 -> 475[label="",style="solid", color="black", weight=3]; 35.52/17.89 427[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];427 -> 483[label="",style="solid", color="black", weight=3]; 35.52/17.89 428[label="compare2 Nothing (Just xuu600) (Nothing == Just xuu600)",fontsize=16,color="black",shape="box"];428 -> 484[label="",style="solid", color="black", weight=3]; 35.52/17.89 429[label="compare2 (Just xuu311000) Nothing (Just xuu311000 == Nothing)",fontsize=16,color="black",shape="box"];429 -> 485[label="",style="solid", color="black", weight=3]; 35.52/17.89 430[label="compare2 (Just xuu311000) (Just xuu600) (Just xuu311000 == Just xuu600)",fontsize=16,color="black",shape="box"];430 -> 486[label="",style="solid", color="black", weight=3]; 35.52/17.89 431[label="compare2 (xuu311000,xuu311001) (xuu600,xuu601) ((xuu311000,xuu311001) == (xuu600,xuu601))",fontsize=16,color="black",shape="box"];431 -> 487[label="",style="solid", color="black", weight=3]; 35.52/17.89 432 -> 233[label="",style="dashed", color="red", weight=0]; 35.52/17.89 432[label="compare (xuu311000 * xuu601) (xuu600 * xuu311001)",fontsize=16,color="magenta"];432 -> 488[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 432 -> 489[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 433 -> 236[label="",style="dashed", color="red", weight=0]; 35.52/17.89 433[label="compare (xuu311000 * xuu601) (xuu600 * xuu311001)",fontsize=16,color="magenta"];433 -> 490[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 433 -> 491[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 434[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];434 -> 492[label="",style="solid", color="black", weight=3]; 35.52/17.89 435[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];435 -> 493[label="",style="solid", color="black", weight=3]; 35.52/17.89 436[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];436 -> 494[label="",style="solid", color="black", weight=3]; 35.52/17.89 437[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];437 -> 495[label="",style="solid", color="black", weight=3]; 35.52/17.89 438[label="primCmpNat xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];3408[label="xuu311000/Succ xuu3110000",fontsize=10,color="white",style="solid",shape="box"];438 -> 3408[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3408 -> 496[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3409[label="xuu311000/Zero",fontsize=10,color="white",style="solid",shape="box"];438 -> 3409[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3409 -> 497[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 358[label="xuu22",fontsize=16,color="green",shape="box"];359[label="xuu17",fontsize=16,color="green",shape="box"];360[label="LT == GT",fontsize=16,color="black",shape="box"];360 -> 476[label="",style="solid", color="black", weight=3]; 35.52/17.89 361[label="EQ == GT",fontsize=16,color="black",shape="box"];361 -> 477[label="",style="solid", color="black", weight=3]; 35.52/17.89 362[label="GT == GT",fontsize=16,color="black",shape="box"];362 -> 478[label="",style="solid", color="black", weight=3]; 35.52/17.89 363[label="xuu22",fontsize=16,color="green",shape="box"];364[label="xuu17",fontsize=16,color="green",shape="box"];365[label="xuu22",fontsize=16,color="green",shape="box"];366[label="xuu17",fontsize=16,color="green",shape="box"];367[label="xuu22",fontsize=16,color="green",shape="box"];368[label="xuu17",fontsize=16,color="green",shape="box"];369[label="xuu22",fontsize=16,color="green",shape="box"];370[label="xuu17",fontsize=16,color="green",shape="box"];371[label="xuu22",fontsize=16,color="green",shape="box"];372[label="xuu17",fontsize=16,color="green",shape="box"];373[label="xuu22",fontsize=16,color="green",shape="box"];374[label="xuu17",fontsize=16,color="green",shape="box"];375[label="xuu22",fontsize=16,color="green",shape="box"];376[label="xuu17",fontsize=16,color="green",shape="box"];377[label="xuu22",fontsize=16,color="green",shape="box"];378[label="xuu17",fontsize=16,color="green",shape="box"];379[label="xuu22",fontsize=16,color="green",shape="box"];380[label="xuu17",fontsize=16,color="green",shape="box"];381[label="xuu22",fontsize=16,color="green",shape="box"];382[label="xuu17",fontsize=16,color="green",shape="box"];383[label="xuu22",fontsize=16,color="green",shape="box"];384[label="xuu17",fontsize=16,color="green",shape="box"];385[label="xuu22",fontsize=16,color="green",shape="box"];386[label="xuu17",fontsize=16,color="green",shape="box"];387[label="xuu22",fontsize=16,color="green",shape="box"];388[label="xuu17",fontsize=16,color="green",shape="box"];389[label="FiniteMap.Branch xuu39 (FiniteMap.addListToFM0 xuu35 xuu40) xuu36 xuu37 xuu38",fontsize=16,color="green",shape="box"];389 -> 479[label="",style="dashed", color="green", weight=3]; 35.52/17.89 390[label="xuu39",fontsize=16,color="green",shape="box"];391[label="xuu40",fontsize=16,color="green",shape="box"];392[label="xuu38",fontsize=16,color="green",shape="box"];393[label="FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42 + FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42",fontsize=16,color="black",shape="box"];393 -> 480[label="",style="solid", color="black", weight=3]; 35.52/17.89 394[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];395[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 False",fontsize=16,color="black",shape="box"];395 -> 481[label="",style="solid", color="black", weight=3]; 35.52/17.89 396[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 True",fontsize=16,color="black",shape="box"];396 -> 482[label="",style="solid", color="black", weight=3]; 35.52/17.89 439 -> 498[label="",style="dashed", color="red", weight=0]; 35.52/17.89 439[label="compare2 (Left xuu311000) (Left xuu600) (xuu311000 == xuu600)",fontsize=16,color="magenta"];439 -> 499[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 439 -> 500[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 439 -> 501[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 440[label="compare2 (Left xuu311000) (Right xuu600) False",fontsize=16,color="black",shape="box"];440 -> 502[label="",style="solid", color="black", weight=3]; 35.52/17.89 441[label="compare2 (Right xuu311000) (Left xuu600) False",fontsize=16,color="black",shape="box"];441 -> 503[label="",style="solid", color="black", weight=3]; 35.52/17.89 442 -> 504[label="",style="dashed", color="red", weight=0]; 35.52/17.89 442[label="compare2 (Right xuu311000) (Right xuu600) (xuu311000 == xuu600)",fontsize=16,color="magenta"];442 -> 505[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 442 -> 506[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 442 -> 507[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 443 -> 438[label="",style="dashed", color="red", weight=0]; 35.52/17.89 443[label="primCmpNat (Succ xuu3110000) xuu600",fontsize=16,color="magenta"];443 -> 508[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 443 -> 509[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 444[label="GT",fontsize=16,color="green",shape="box"];445[label="primCmpInt (Pos Zero) (Pos (Succ xuu6000))",fontsize=16,color="black",shape="box"];445 -> 510[label="",style="solid", color="black", weight=3]; 35.52/17.89 446[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];446 -> 511[label="",style="solid", color="black", weight=3]; 35.52/17.89 447[label="primCmpInt (Pos Zero) (Neg (Succ xuu6000))",fontsize=16,color="black",shape="box"];447 -> 512[label="",style="solid", color="black", weight=3]; 35.52/17.89 448[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];448 -> 513[label="",style="solid", color="black", weight=3]; 35.52/17.89 449[label="LT",fontsize=16,color="green",shape="box"];450 -> 438[label="",style="dashed", color="red", weight=0]; 35.52/17.89 450[label="primCmpNat xuu600 (Succ xuu3110000)",fontsize=16,color="magenta"];450 -> 514[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 450 -> 515[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 451[label="primCmpInt (Neg Zero) (Pos (Succ xuu6000))",fontsize=16,color="black",shape="box"];451 -> 516[label="",style="solid", color="black", weight=3]; 35.52/17.89 452[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];452 -> 517[label="",style="solid", color="black", weight=3]; 35.52/17.89 453[label="primCmpInt (Neg Zero) (Neg (Succ xuu6000))",fontsize=16,color="black",shape="box"];453 -> 518[label="",style="solid", color="black", weight=3]; 35.52/17.89 454[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];454 -> 519[label="",style="solid", color="black", weight=3]; 35.52/17.89 455 -> 1195[label="",style="dashed", color="red", weight=0]; 35.52/17.89 455[label="compare2 (xuu311000,xuu311001,xuu311002) (xuu600,xuu601,xuu602) (xuu311000 == xuu600 && xuu311001 == xuu601 && xuu311002 == xuu602)",fontsize=16,color="magenta"];455 -> 1196[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 455 -> 1197[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 455 -> 1198[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 455 -> 1199[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 455 -> 1200[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 455 -> 1201[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 455 -> 1202[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 456[label="primCmpDouble (Double xuu311000 (Pos xuu3110010)) (Double xuu600 (Pos xuu6010))",fontsize=16,color="black",shape="box"];456 -> 528[label="",style="solid", color="black", weight=3]; 35.52/17.89 457[label="primCmpDouble (Double xuu311000 (Pos xuu3110010)) (Double xuu600 (Neg xuu6010))",fontsize=16,color="black",shape="box"];457 -> 529[label="",style="solid", color="black", weight=3]; 35.52/17.89 458[label="primCmpDouble (Double xuu311000 (Neg xuu3110010)) (Double xuu600 (Pos xuu6010))",fontsize=16,color="black",shape="box"];458 -> 530[label="",style="solid", color="black", weight=3]; 35.52/17.89 459[label="primCmpDouble (Double xuu311000 (Neg xuu3110010)) (Double xuu600 (Neg xuu6010))",fontsize=16,color="black",shape="box"];459 -> 531[label="",style="solid", color="black", weight=3]; 35.52/17.89 460[label="primCmpFloat (Float xuu311000 (Pos xuu3110010)) (Float xuu600 (Pos xuu6010))",fontsize=16,color="black",shape="box"];460 -> 532[label="",style="solid", color="black", weight=3]; 35.52/17.89 461[label="primCmpFloat (Float xuu311000 (Pos xuu3110010)) (Float xuu600 (Neg xuu6010))",fontsize=16,color="black",shape="box"];461 -> 533[label="",style="solid", color="black", weight=3]; 35.52/17.89 462[label="primCmpFloat (Float xuu311000 (Neg xuu3110010)) (Float xuu600 (Pos xuu6010))",fontsize=16,color="black",shape="box"];462 -> 534[label="",style="solid", color="black", weight=3]; 35.52/17.89 463[label="primCmpFloat (Float xuu311000 (Neg xuu3110010)) (Float xuu600 (Neg xuu6010))",fontsize=16,color="black",shape="box"];463 -> 535[label="",style="solid", color="black", weight=3]; 35.52/17.89 464[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];464 -> 536[label="",style="solid", color="black", weight=3]; 35.52/17.89 465[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];465 -> 537[label="",style="solid", color="black", weight=3]; 35.52/17.89 466[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];466 -> 538[label="",style="solid", color="black", weight=3]; 35.52/17.89 467[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];467 -> 539[label="",style="solid", color="black", weight=3]; 35.52/17.89 468[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];468 -> 540[label="",style="solid", color="black", weight=3]; 35.52/17.89 469[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];469 -> 541[label="",style="solid", color="black", weight=3]; 35.52/17.89 470[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];470 -> 542[label="",style="solid", color="black", weight=3]; 35.52/17.89 471[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];471 -> 543[label="",style="solid", color="black", weight=3]; 35.52/17.89 472[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];472 -> 544[label="",style="solid", color="black", weight=3]; 35.52/17.89 473[label="xuu311001",fontsize=16,color="green",shape="box"];474[label="xuu601",fontsize=16,color="green",shape="box"];475 -> 545[label="",style="dashed", color="red", weight=0]; 35.52/17.89 475[label="primCompAux0 xuu48 (compare xuu311000 xuu600)",fontsize=16,color="magenta"];475 -> 546[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 475 -> 547[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 483[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];483 -> 548[label="",style="solid", color="black", weight=3]; 35.52/17.89 484[label="compare2 Nothing (Just xuu600) False",fontsize=16,color="black",shape="box"];484 -> 549[label="",style="solid", color="black", weight=3]; 35.52/17.89 485[label="compare2 (Just xuu311000) Nothing False",fontsize=16,color="black",shape="box"];485 -> 550[label="",style="solid", color="black", weight=3]; 35.52/17.89 486 -> 551[label="",style="dashed", color="red", weight=0]; 35.52/17.89 486[label="compare2 (Just xuu311000) (Just xuu600) (xuu311000 == xuu600)",fontsize=16,color="magenta"];486 -> 552[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 486 -> 553[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 486 -> 554[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 487 -> 1008[label="",style="dashed", color="red", weight=0]; 35.52/17.89 487[label="compare2 (xuu311000,xuu311001) (xuu600,xuu601) (xuu311000 == xuu600 && xuu311001 == xuu601)",fontsize=16,color="magenta"];487 -> 1009[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 487 -> 1010[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 487 -> 1011[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 487 -> 1012[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 487 -> 1013[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 488[label="xuu311000 * xuu601",fontsize=16,color="black",shape="triangle"];488 -> 561[label="",style="solid", color="black", weight=3]; 35.52/17.89 489 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 489[label="xuu600 * xuu311001",fontsize=16,color="magenta"];489 -> 562[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 489 -> 563[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 490[label="xuu311000 * xuu601",fontsize=16,color="burlywood",shape="triangle"];3410[label="xuu311000/Integer xuu3110000",fontsize=10,color="white",style="solid",shape="box"];490 -> 3410[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3410 -> 564[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 491 -> 490[label="",style="dashed", color="red", weight=0]; 35.52/17.89 491[label="xuu600 * xuu311001",fontsize=16,color="magenta"];491 -> 565[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 491 -> 566[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 492[label="compare2 False False True",fontsize=16,color="black",shape="box"];492 -> 567[label="",style="solid", color="black", weight=3]; 35.52/17.89 493[label="compare2 False True False",fontsize=16,color="black",shape="box"];493 -> 568[label="",style="solid", color="black", weight=3]; 35.52/17.89 494[label="compare2 True False False",fontsize=16,color="black",shape="box"];494 -> 569[label="",style="solid", color="black", weight=3]; 35.52/17.89 495[label="compare2 True True True",fontsize=16,color="black",shape="box"];495 -> 570[label="",style="solid", color="black", weight=3]; 35.52/17.89 496[label="primCmpNat (Succ xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];3411[label="xuu600/Succ xuu6000",fontsize=10,color="white",style="solid",shape="box"];496 -> 3411[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3411 -> 571[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3412[label="xuu600/Zero",fontsize=10,color="white",style="solid",shape="box"];496 -> 3412[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3412 -> 572[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 497[label="primCmpNat Zero xuu600",fontsize=16,color="burlywood",shape="box"];3413[label="xuu600/Succ xuu6000",fontsize=10,color="white",style="solid",shape="box"];497 -> 3413[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3413 -> 573[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3414[label="xuu600/Zero",fontsize=10,color="white",style="solid",shape="box"];497 -> 3414[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3414 -> 574[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 476[label="False",fontsize=16,color="green",shape="box"];477[label="False",fontsize=16,color="green",shape="box"];478[label="True",fontsize=16,color="green",shape="box"];479[label="FiniteMap.addListToFM0 xuu35 xuu40",fontsize=16,color="black",shape="box"];479 -> 575[label="",style="solid", color="black", weight=3]; 35.52/17.89 480 -> 1091[label="",style="dashed", color="red", weight=0]; 35.52/17.89 480[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42) (FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42)",fontsize=16,color="magenta"];480 -> 1092[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 480 -> 1093[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 481 -> 577[label="",style="dashed", color="red", weight=0]; 35.52/17.89 481[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 (FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42)",fontsize=16,color="magenta"];481 -> 578[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 482[label="FiniteMap.mkBranch (Pos (Succ Zero)) xuu17 xuu18 xuu42 xuu21",fontsize=16,color="black",shape="box"];482 -> 579[label="",style="solid", color="black", weight=3]; 35.52/17.89 499[label="xuu311000",fontsize=16,color="green",shape="box"];500[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];3415[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3415[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3415 -> 580[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3416[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3416[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3416 -> 581[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3417[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3417[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3417 -> 582[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3418[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3418[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3418 -> 583[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3419[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3419[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3419 -> 584[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3420[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3420[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3420 -> 585[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3421[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3421[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3421 -> 586[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3422[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3422[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3422 -> 587[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3423[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3423[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3423 -> 588[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3424[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3424[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3424 -> 589[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3425[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3425[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3425 -> 590[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3426[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3426[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3426 -> 591[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3427[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3427[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3427 -> 592[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3428[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3428[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3428 -> 593[label="",style="solid", color="blue", weight=3]; 35.52/17.89 501[label="xuu600",fontsize=16,color="green",shape="box"];498[label="compare2 (Left xuu53) (Left xuu54) xuu55",fontsize=16,color="burlywood",shape="triangle"];3429[label="xuu55/False",fontsize=10,color="white",style="solid",shape="box"];498 -> 3429[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3429 -> 594[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3430[label="xuu55/True",fontsize=10,color="white",style="solid",shape="box"];498 -> 3430[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3430 -> 595[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 502[label="compare1 (Left xuu311000) (Right xuu600) (Left xuu311000 <= Right xuu600)",fontsize=16,color="black",shape="box"];502 -> 596[label="",style="solid", color="black", weight=3]; 35.52/17.89 503[label="compare1 (Right xuu311000) (Left xuu600) (Right xuu311000 <= Left xuu600)",fontsize=16,color="black",shape="box"];503 -> 597[label="",style="solid", color="black", weight=3]; 35.52/17.89 505[label="xuu600",fontsize=16,color="green",shape="box"];506[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];3431[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3431[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3431 -> 598[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3432[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3432[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3432 -> 599[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3433[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3433[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3433 -> 600[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3434[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3434[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3434 -> 601[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3435[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3435[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3435 -> 602[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3436[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3436[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3436 -> 603[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3437[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3437[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3437 -> 604[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3438[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3438[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3438 -> 605[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3439[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3439[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3439 -> 606[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3440[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3440[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3440 -> 607[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3441[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3441[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3441 -> 608[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3442[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3442[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3442 -> 609[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3443[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3443[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3443 -> 610[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3444[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3444[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3444 -> 611[label="",style="solid", color="blue", weight=3]; 35.52/17.89 507[label="xuu311000",fontsize=16,color="green",shape="box"];504[label="compare2 (Right xuu60) (Right xuu61) xuu62",fontsize=16,color="burlywood",shape="triangle"];3445[label="xuu62/False",fontsize=10,color="white",style="solid",shape="box"];504 -> 3445[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3445 -> 612[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3446[label="xuu62/True",fontsize=10,color="white",style="solid",shape="box"];504 -> 3446[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3446 -> 613[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 508[label="Succ xuu3110000",fontsize=16,color="green",shape="box"];509[label="xuu600",fontsize=16,color="green",shape="box"];510 -> 438[label="",style="dashed", color="red", weight=0]; 35.52/17.89 510[label="primCmpNat Zero (Succ xuu6000)",fontsize=16,color="magenta"];510 -> 614[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 510 -> 615[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 511[label="EQ",fontsize=16,color="green",shape="box"];512[label="GT",fontsize=16,color="green",shape="box"];513[label="EQ",fontsize=16,color="green",shape="box"];514[label="xuu600",fontsize=16,color="green",shape="box"];515[label="Succ xuu3110000",fontsize=16,color="green",shape="box"];516[label="LT",fontsize=16,color="green",shape="box"];517[label="EQ",fontsize=16,color="green",shape="box"];518 -> 438[label="",style="dashed", color="red", weight=0]; 35.52/17.89 518[label="primCmpNat (Succ xuu6000) Zero",fontsize=16,color="magenta"];518 -> 616[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 518 -> 617[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 519[label="EQ",fontsize=16,color="green",shape="box"];1196 -> 1247[label="",style="dashed", color="red", weight=0]; 35.52/17.89 1196[label="xuu311000 == xuu600 && xuu311001 == xuu601 && xuu311002 == xuu602",fontsize=16,color="magenta"];1196 -> 1248[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 1196 -> 1249[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 1197[label="xuu602",fontsize=16,color="green",shape="box"];1198[label="xuu311000",fontsize=16,color="green",shape="box"];1199[label="xuu311001",fontsize=16,color="green",shape="box"];1200[label="xuu601",fontsize=16,color="green",shape="box"];1201[label="xuu600",fontsize=16,color="green",shape="box"];1202[label="xuu311002",fontsize=16,color="green",shape="box"];1195[label="compare2 (xuu111,xuu112,xuu113) (xuu114,xuu115,xuu116) xuu157",fontsize=16,color="burlywood",shape="triangle"];3447[label="xuu157/False",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3447[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3447 -> 1242[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3448[label="xuu157/True",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3448[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3448 -> 1243[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 528 -> 233[label="",style="dashed", color="red", weight=0]; 35.52/17.89 528[label="compare (xuu311000 * Pos xuu6010) (Pos xuu3110010 * xuu600)",fontsize=16,color="magenta"];528 -> 634[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 528 -> 635[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 529 -> 233[label="",style="dashed", color="red", weight=0]; 35.52/17.89 529[label="compare (xuu311000 * Pos xuu6010) (Neg xuu3110010 * xuu600)",fontsize=16,color="magenta"];529 -> 636[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 529 -> 637[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 530 -> 233[label="",style="dashed", color="red", weight=0]; 35.52/17.89 530[label="compare (xuu311000 * Neg xuu6010) (Pos xuu3110010 * xuu600)",fontsize=16,color="magenta"];530 -> 638[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 530 -> 639[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 531 -> 233[label="",style="dashed", color="red", weight=0]; 35.52/17.89 531[label="compare (xuu311000 * Neg xuu6010) (Neg xuu3110010 * xuu600)",fontsize=16,color="magenta"];531 -> 640[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 531 -> 641[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 532 -> 233[label="",style="dashed", color="red", weight=0]; 35.52/17.89 532[label="compare (xuu311000 * Pos xuu6010) (Pos xuu3110010 * xuu600)",fontsize=16,color="magenta"];532 -> 642[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 532 -> 643[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 533 -> 233[label="",style="dashed", color="red", weight=0]; 35.52/17.89 533[label="compare (xuu311000 * Pos xuu6010) (Neg xuu3110010 * xuu600)",fontsize=16,color="magenta"];533 -> 644[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 533 -> 645[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 534 -> 233[label="",style="dashed", color="red", weight=0]; 35.52/17.89 534[label="compare (xuu311000 * Neg xuu6010) (Pos xuu3110010 * xuu600)",fontsize=16,color="magenta"];534 -> 646[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 534 -> 647[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 535 -> 233[label="",style="dashed", color="red", weight=0]; 35.52/17.89 535[label="compare (xuu311000 * Neg xuu6010) (Neg xuu3110010 * xuu600)",fontsize=16,color="magenta"];535 -> 648[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 535 -> 649[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 536[label="EQ",fontsize=16,color="green",shape="box"];537[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];537 -> 650[label="",style="solid", color="black", weight=3]; 35.52/17.89 538[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];538 -> 651[label="",style="solid", color="black", weight=3]; 35.52/17.89 539[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];539 -> 652[label="",style="solid", color="black", weight=3]; 35.52/17.89 540[label="EQ",fontsize=16,color="green",shape="box"];541[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];541 -> 653[label="",style="solid", color="black", weight=3]; 35.52/17.89 542[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];542 -> 654[label="",style="solid", color="black", weight=3]; 35.52/17.89 543[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];543 -> 655[label="",style="solid", color="black", weight=3]; 35.52/17.89 544[label="EQ",fontsize=16,color="green",shape="box"];546[label="xuu48",fontsize=16,color="green",shape="box"];547[label="compare xuu311000 xuu600",fontsize=16,color="blue",shape="box"];3449[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];547 -> 3449[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3449 -> 656[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3450[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];547 -> 3450[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3450 -> 657[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3451[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];547 -> 3451[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3451 -> 658[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3452[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];547 -> 3452[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3452 -> 659[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3453[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];547 -> 3453[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3453 -> 660[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3454[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];547 -> 3454[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3454 -> 661[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3455[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];547 -> 3455[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3455 -> 662[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3456[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];547 -> 3456[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3456 -> 663[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3457[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];547 -> 3457[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3457 -> 664[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3458[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];547 -> 3458[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3458 -> 665[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3459[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];547 -> 3459[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3459 -> 666[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3460[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];547 -> 3460[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3460 -> 667[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3461[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];547 -> 3461[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3461 -> 668[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3462[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];547 -> 3462[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3462 -> 669[label="",style="solid", color="blue", weight=3]; 35.52/17.89 545[label="primCompAux0 xuu81 xuu82",fontsize=16,color="burlywood",shape="triangle"];3463[label="xuu82/LT",fontsize=10,color="white",style="solid",shape="box"];545 -> 3463[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3463 -> 670[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3464[label="xuu82/EQ",fontsize=10,color="white",style="solid",shape="box"];545 -> 3464[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3464 -> 671[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3465[label="xuu82/GT",fontsize=10,color="white",style="solid",shape="box"];545 -> 3465[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3465 -> 672[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 548[label="EQ",fontsize=16,color="green",shape="box"];549[label="compare1 Nothing (Just xuu600) (Nothing <= Just xuu600)",fontsize=16,color="black",shape="box"];549 -> 673[label="",style="solid", color="black", weight=3]; 35.52/17.89 550[label="compare1 (Just xuu311000) Nothing (Just xuu311000 <= Nothing)",fontsize=16,color="black",shape="box"];550 -> 674[label="",style="solid", color="black", weight=3]; 35.52/17.89 552[label="xuu311000",fontsize=16,color="green",shape="box"];553[label="xuu600",fontsize=16,color="green",shape="box"];554[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];3466[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];554 -> 3466[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3466 -> 675[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3467[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];554 -> 3467[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3467 -> 676[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3468[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];554 -> 3468[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3468 -> 677[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3469[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];554 -> 3469[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3469 -> 678[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3470[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];554 -> 3470[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3470 -> 679[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3471[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];554 -> 3471[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3471 -> 680[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3472[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];554 -> 3472[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3472 -> 681[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3473[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];554 -> 3473[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3473 -> 682[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3474[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];554 -> 3474[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3474 -> 683[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3475[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];554 -> 3475[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3475 -> 684[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3476[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];554 -> 3476[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3476 -> 685[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3477[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];554 -> 3477[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3477 -> 686[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3478[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];554 -> 3478[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3478 -> 687[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3479[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];554 -> 3479[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3479 -> 688[label="",style="solid", color="blue", weight=3]; 35.52/17.89 551[label="compare2 (Just xuu87) (Just xuu88) xuu89",fontsize=16,color="burlywood",shape="triangle"];3480[label="xuu89/False",fontsize=10,color="white",style="solid",shape="box"];551 -> 3480[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3480 -> 689[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3481[label="xuu89/True",fontsize=10,color="white",style="solid",shape="box"];551 -> 3481[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3481 -> 690[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 1009[label="xuu600",fontsize=16,color="green",shape="box"];1010[label="xuu311001",fontsize=16,color="green",shape="box"];1011 -> 1247[label="",style="dashed", color="red", weight=0]; 35.52/17.89 1011[label="xuu311000 == xuu600 && xuu311001 == xuu601",fontsize=16,color="magenta"];1011 -> 1250[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 1011 -> 1251[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 1012[label="xuu311000",fontsize=16,color="green",shape="box"];1013[label="xuu601",fontsize=16,color="green",shape="box"];1008[label="compare2 (xuu124,xuu125) (xuu126,xuu127) xuu128",fontsize=16,color="burlywood",shape="triangle"];3482[label="xuu128/False",fontsize=10,color="white",style="solid",shape="box"];1008 -> 3482[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3482 -> 1033[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3483[label="xuu128/True",fontsize=10,color="white",style="solid",shape="box"];1008 -> 3483[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3483 -> 1034[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 561[label="primMulInt xuu311000 xuu601",fontsize=16,color="burlywood",shape="triangle"];3484[label="xuu311000/Pos xuu3110000",fontsize=10,color="white",style="solid",shape="box"];561 -> 3484[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3484 -> 707[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3485[label="xuu311000/Neg xuu3110000",fontsize=10,color="white",style="solid",shape="box"];561 -> 3485[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3485 -> 708[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 562[label="xuu600",fontsize=16,color="green",shape="box"];563[label="xuu311001",fontsize=16,color="green",shape="box"];564[label="Integer xuu3110000 * xuu601",fontsize=16,color="burlywood",shape="box"];3486[label="xuu601/Integer xuu6010",fontsize=10,color="white",style="solid",shape="box"];564 -> 3486[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3486 -> 709[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 565[label="xuu600",fontsize=16,color="green",shape="box"];566[label="xuu311001",fontsize=16,color="green",shape="box"];567[label="EQ",fontsize=16,color="green",shape="box"];568[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];568 -> 710[label="",style="solid", color="black", weight=3]; 35.52/17.89 569[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];569 -> 711[label="",style="solid", color="black", weight=3]; 35.52/17.89 570[label="EQ",fontsize=16,color="green",shape="box"];571[label="primCmpNat (Succ xuu3110000) (Succ xuu6000)",fontsize=16,color="black",shape="box"];571 -> 712[label="",style="solid", color="black", weight=3]; 35.52/17.89 572[label="primCmpNat (Succ xuu3110000) Zero",fontsize=16,color="black",shape="box"];572 -> 713[label="",style="solid", color="black", weight=3]; 35.52/17.89 573[label="primCmpNat Zero (Succ xuu6000)",fontsize=16,color="black",shape="box"];573 -> 714[label="",style="solid", color="black", weight=3]; 35.52/17.89 574[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];574 -> 715[label="",style="solid", color="black", weight=3]; 35.52/17.89 575[label="xuu40",fontsize=16,color="green",shape="box"];1092 -> 719[label="",style="dashed", color="red", weight=0]; 35.52/17.89 1092[label="FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42",fontsize=16,color="magenta"];1093[label="FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42",fontsize=16,color="black",shape="triangle"];1093 -> 1101[label="",style="solid", color="black", weight=3]; 35.52/17.89 1091[label="primPlusInt xuu422 xuu137",fontsize=16,color="burlywood",shape="triangle"];3487[label="xuu422/Pos xuu4220",fontsize=10,color="white",style="solid",shape="box"];1091 -> 3487[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3487 -> 1102[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3488[label="xuu422/Neg xuu4220",fontsize=10,color="white",style="solid",shape="box"];1091 -> 3488[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3488 -> 1103[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 578 -> 131[label="",style="dashed", color="red", weight=0]; 35.52/17.89 578[label="FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42",fontsize=16,color="magenta"];578 -> 718[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 578 -> 719[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 577[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 xuu101",fontsize=16,color="burlywood",shape="triangle"];3489[label="xuu101/False",fontsize=10,color="white",style="solid",shape="box"];577 -> 3489[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3489 -> 720[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3490[label="xuu101/True",fontsize=10,color="white",style="solid",shape="box"];577 -> 3490[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3490 -> 721[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 579[label="FiniteMap.mkBranchResult xuu17 xuu18 xuu21 xuu42",fontsize=16,color="black",shape="triangle"];579 -> 722[label="",style="solid", color="black", weight=3]; 35.52/17.89 580[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3491[label="xuu311000/()",fontsize=10,color="white",style="solid",shape="box"];580 -> 3491[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3491 -> 723[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 581[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];581 -> 724[label="",style="solid", color="black", weight=3]; 35.52/17.89 582[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3492[label="xuu311000/(xuu3110000,xuu3110001)",fontsize=10,color="white",style="solid",shape="box"];582 -> 3492[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3492 -> 725[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 583[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3493[label="xuu311000/(xuu3110000,xuu3110001,xuu3110002)",fontsize=10,color="white",style="solid",shape="box"];583 -> 3493[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3493 -> 726[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 584[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];584 -> 727[label="",style="solid", color="black", weight=3]; 35.52/17.89 585[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];585 -> 728[label="",style="solid", color="black", weight=3]; 35.52/17.89 586[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3494[label="xuu311000/False",fontsize=10,color="white",style="solid",shape="box"];586 -> 3494[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3494 -> 729[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3495[label="xuu311000/True",fontsize=10,color="white",style="solid",shape="box"];586 -> 3495[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3495 -> 730[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 587[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3496[label="xuu311000/Left xuu3110000",fontsize=10,color="white",style="solid",shape="box"];587 -> 3496[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3496 -> 731[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3497[label="xuu311000/Right xuu3110000",fontsize=10,color="white",style="solid",shape="box"];587 -> 3497[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3497 -> 732[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 588[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];588 -> 733[label="",style="solid", color="black", weight=3]; 35.52/17.89 589[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3498[label="xuu311000/xuu3110000 :% xuu3110001",fontsize=10,color="white",style="solid",shape="box"];589 -> 3498[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3498 -> 734[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 590[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3499[label="xuu311000/xuu3110000 : xuu3110001",fontsize=10,color="white",style="solid",shape="box"];590 -> 3499[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3499 -> 735[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3500[label="xuu311000/[]",fontsize=10,color="white",style="solid",shape="box"];590 -> 3500[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3500 -> 736[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 591[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3501[label="xuu311000/Integer xuu3110000",fontsize=10,color="white",style="solid",shape="box"];591 -> 3501[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3501 -> 737[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 592[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3502[label="xuu311000/Nothing",fontsize=10,color="white",style="solid",shape="box"];592 -> 3502[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3502 -> 738[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3503[label="xuu311000/Just xuu3110000",fontsize=10,color="white",style="solid",shape="box"];592 -> 3503[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3503 -> 739[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 593[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3504[label="xuu311000/LT",fontsize=10,color="white",style="solid",shape="box"];593 -> 3504[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3504 -> 740[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3505[label="xuu311000/EQ",fontsize=10,color="white",style="solid",shape="box"];593 -> 3505[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3505 -> 741[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3506[label="xuu311000/GT",fontsize=10,color="white",style="solid",shape="box"];593 -> 3506[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3506 -> 742[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 594[label="compare2 (Left xuu53) (Left xuu54) False",fontsize=16,color="black",shape="box"];594 -> 743[label="",style="solid", color="black", weight=3]; 35.52/17.89 595[label="compare2 (Left xuu53) (Left xuu54) True",fontsize=16,color="black",shape="box"];595 -> 744[label="",style="solid", color="black", weight=3]; 35.52/17.89 596[label="compare1 (Left xuu311000) (Right xuu600) True",fontsize=16,color="black",shape="box"];596 -> 745[label="",style="solid", color="black", weight=3]; 35.52/17.89 597[label="compare1 (Right xuu311000) (Left xuu600) False",fontsize=16,color="black",shape="box"];597 -> 746[label="",style="solid", color="black", weight=3]; 35.52/17.89 598 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.89 598[label="xuu311000 == xuu600",fontsize=16,color="magenta"];598 -> 747[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 598 -> 748[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 599 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.89 599[label="xuu311000 == xuu600",fontsize=16,color="magenta"];599 -> 749[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 599 -> 750[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 600 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.89 600[label="xuu311000 == xuu600",fontsize=16,color="magenta"];600 -> 751[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 600 -> 752[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 601 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.89 601[label="xuu311000 == xuu600",fontsize=16,color="magenta"];601 -> 753[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 601 -> 754[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 602 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.89 602[label="xuu311000 == xuu600",fontsize=16,color="magenta"];602 -> 755[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 602 -> 756[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 603 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.89 603[label="xuu311000 == xuu600",fontsize=16,color="magenta"];603 -> 757[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 603 -> 758[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 604 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.89 604[label="xuu311000 == xuu600",fontsize=16,color="magenta"];604 -> 759[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 604 -> 760[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 605 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.89 605[label="xuu311000 == xuu600",fontsize=16,color="magenta"];605 -> 761[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 605 -> 762[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 606 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.89 606[label="xuu311000 == xuu600",fontsize=16,color="magenta"];606 -> 763[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 606 -> 764[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 607 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.89 607[label="xuu311000 == xuu600",fontsize=16,color="magenta"];607 -> 765[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 607 -> 766[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 608 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.89 608[label="xuu311000 == xuu600",fontsize=16,color="magenta"];608 -> 767[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 608 -> 768[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 609 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.89 609[label="xuu311000 == xuu600",fontsize=16,color="magenta"];609 -> 769[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 609 -> 770[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 610 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.89 610[label="xuu311000 == xuu600",fontsize=16,color="magenta"];610 -> 771[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 610 -> 772[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 611 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.89 611[label="xuu311000 == xuu600",fontsize=16,color="magenta"];611 -> 773[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 611 -> 774[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 612[label="compare2 (Right xuu60) (Right xuu61) False",fontsize=16,color="black",shape="box"];612 -> 775[label="",style="solid", color="black", weight=3]; 35.52/17.89 613[label="compare2 (Right xuu60) (Right xuu61) True",fontsize=16,color="black",shape="box"];613 -> 776[label="",style="solid", color="black", weight=3]; 35.52/17.89 614[label="Zero",fontsize=16,color="green",shape="box"];615[label="Succ xuu6000",fontsize=16,color="green",shape="box"];616[label="Succ xuu6000",fontsize=16,color="green",shape="box"];617[label="Zero",fontsize=16,color="green",shape="box"];1248[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];3507[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3507[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3507 -> 1266[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3508[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3508[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3508 -> 1267[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3509[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3509[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3509 -> 1268[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3510[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3510[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3510 -> 1269[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3511[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3511[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3511 -> 1270[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3512[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3512[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3512 -> 1271[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3513[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3513[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3513 -> 1272[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3514[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3514[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3514 -> 1273[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3515[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3515[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3515 -> 1274[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3516[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3516[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3516 -> 1275[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3517[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3517[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3517 -> 1276[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3518[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3518[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3518 -> 1277[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3519[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3519[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3519 -> 1278[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3520[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3520[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3520 -> 1279[label="",style="solid", color="blue", weight=3]; 35.52/17.89 1249 -> 1247[label="",style="dashed", color="red", weight=0]; 35.52/17.89 1249[label="xuu311001 == xuu601 && xuu311002 == xuu602",fontsize=16,color="magenta"];1249 -> 1280[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 1249 -> 1281[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 1247[label="xuu162 && xuu163",fontsize=16,color="burlywood",shape="triangle"];3521[label="xuu162/False",fontsize=10,color="white",style="solid",shape="box"];1247 -> 3521[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3521 -> 1282[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3522[label="xuu162/True",fontsize=10,color="white",style="solid",shape="box"];1247 -> 3522[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3522 -> 1283[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 1242[label="compare2 (xuu111,xuu112,xuu113) (xuu114,xuu115,xuu116) False",fontsize=16,color="black",shape="box"];1242 -> 1284[label="",style="solid", color="black", weight=3]; 35.52/17.89 1243[label="compare2 (xuu111,xuu112,xuu113) (xuu114,xuu115,xuu116) True",fontsize=16,color="black",shape="box"];1243 -> 1285[label="",style="solid", color="black", weight=3]; 35.52/17.89 634 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 634[label="xuu311000 * Pos xuu6010",fontsize=16,color="magenta"];634 -> 807[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 634 -> 808[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 635 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 635[label="Pos xuu3110010 * xuu600",fontsize=16,color="magenta"];635 -> 809[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 635 -> 810[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 636 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 636[label="xuu311000 * Pos xuu6010",fontsize=16,color="magenta"];636 -> 811[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 636 -> 812[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 637 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 637[label="Neg xuu3110010 * xuu600",fontsize=16,color="magenta"];637 -> 813[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 637 -> 814[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 638 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 638[label="xuu311000 * Neg xuu6010",fontsize=16,color="magenta"];638 -> 815[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 638 -> 816[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 639 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 639[label="Pos xuu3110010 * xuu600",fontsize=16,color="magenta"];639 -> 817[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 639 -> 818[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 640 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 640[label="xuu311000 * Neg xuu6010",fontsize=16,color="magenta"];640 -> 819[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 640 -> 820[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 641 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 641[label="Neg xuu3110010 * xuu600",fontsize=16,color="magenta"];641 -> 821[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 641 -> 822[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 642 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 642[label="xuu311000 * Pos xuu6010",fontsize=16,color="magenta"];642 -> 823[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 642 -> 824[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 643 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 643[label="Pos xuu3110010 * xuu600",fontsize=16,color="magenta"];643 -> 825[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 643 -> 826[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 644 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 644[label="xuu311000 * Pos xuu6010",fontsize=16,color="magenta"];644 -> 827[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 644 -> 828[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 645 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 645[label="Neg xuu3110010 * xuu600",fontsize=16,color="magenta"];645 -> 829[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 645 -> 830[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 646 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 646[label="xuu311000 * Neg xuu6010",fontsize=16,color="magenta"];646 -> 831[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 646 -> 832[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 647 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 647[label="Pos xuu3110010 * xuu600",fontsize=16,color="magenta"];647 -> 833[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 647 -> 834[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 648 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 648[label="xuu311000 * Neg xuu6010",fontsize=16,color="magenta"];648 -> 835[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 648 -> 836[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 649 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 649[label="Neg xuu3110010 * xuu600",fontsize=16,color="magenta"];649 -> 837[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 649 -> 838[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 650[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];650 -> 839[label="",style="solid", color="black", weight=3]; 35.52/17.89 651[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];651 -> 840[label="",style="solid", color="black", weight=3]; 35.52/17.89 652[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];652 -> 841[label="",style="solid", color="black", weight=3]; 35.52/17.89 653[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];653 -> 842[label="",style="solid", color="black", weight=3]; 35.52/17.89 654[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];654 -> 843[label="",style="solid", color="black", weight=3]; 35.52/17.89 655[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];655 -> 844[label="",style="solid", color="black", weight=3]; 35.52/17.89 656 -> 232[label="",style="dashed", color="red", weight=0]; 35.52/17.89 656[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];656 -> 845[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 656 -> 846[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 657 -> 233[label="",style="dashed", color="red", weight=0]; 35.52/17.89 657[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];657 -> 847[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 657 -> 848[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 658 -> 234[label="",style="dashed", color="red", weight=0]; 35.52/17.89 658[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];658 -> 849[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 658 -> 850[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 659 -> 235[label="",style="dashed", color="red", weight=0]; 35.52/17.89 659[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];659 -> 851[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 659 -> 852[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 660 -> 236[label="",style="dashed", color="red", weight=0]; 35.52/17.89 660[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];660 -> 853[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 660 -> 854[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 661 -> 237[label="",style="dashed", color="red", weight=0]; 35.52/17.89 661[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];661 -> 855[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 661 -> 856[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 662 -> 238[label="",style="dashed", color="red", weight=0]; 35.52/17.89 662[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];662 -> 857[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 662 -> 858[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 663 -> 239[label="",style="dashed", color="red", weight=0]; 35.52/17.89 663[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];663 -> 859[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 663 -> 860[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 664 -> 240[label="",style="dashed", color="red", weight=0]; 35.52/17.89 664[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];664 -> 861[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 664 -> 862[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 665 -> 241[label="",style="dashed", color="red", weight=0]; 35.52/17.89 665[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];665 -> 863[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 665 -> 864[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 666 -> 242[label="",style="dashed", color="red", weight=0]; 35.52/17.89 666[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];666 -> 865[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 666 -> 866[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 667 -> 243[label="",style="dashed", color="red", weight=0]; 35.52/17.89 667[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];667 -> 867[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 667 -> 868[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 668 -> 244[label="",style="dashed", color="red", weight=0]; 35.52/17.89 668[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];668 -> 869[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 668 -> 870[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 669 -> 245[label="",style="dashed", color="red", weight=0]; 35.52/17.89 669[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];669 -> 871[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 669 -> 872[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 670[label="primCompAux0 xuu81 LT",fontsize=16,color="black",shape="box"];670 -> 873[label="",style="solid", color="black", weight=3]; 35.52/17.89 671[label="primCompAux0 xuu81 EQ",fontsize=16,color="black",shape="box"];671 -> 874[label="",style="solid", color="black", weight=3]; 35.52/17.89 672[label="primCompAux0 xuu81 GT",fontsize=16,color="black",shape="box"];672 -> 875[label="",style="solid", color="black", weight=3]; 35.52/17.89 673[label="compare1 Nothing (Just xuu600) True",fontsize=16,color="black",shape="box"];673 -> 876[label="",style="solid", color="black", weight=3]; 35.52/17.89 674[label="compare1 (Just xuu311000) Nothing False",fontsize=16,color="black",shape="box"];674 -> 877[label="",style="solid", color="black", weight=3]; 35.52/17.89 675 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.89 675[label="xuu311000 == xuu600",fontsize=16,color="magenta"];675 -> 878[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 675 -> 879[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 676 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.89 676[label="xuu311000 == xuu600",fontsize=16,color="magenta"];676 -> 880[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 676 -> 881[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 677 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.89 677[label="xuu311000 == xuu600",fontsize=16,color="magenta"];677 -> 882[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 677 -> 883[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 678 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.89 678[label="xuu311000 == xuu600",fontsize=16,color="magenta"];678 -> 884[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 678 -> 885[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 679 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.89 679[label="xuu311000 == xuu600",fontsize=16,color="magenta"];679 -> 886[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 679 -> 887[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 680 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.89 680[label="xuu311000 == xuu600",fontsize=16,color="magenta"];680 -> 888[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 680 -> 889[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 681 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.89 681[label="xuu311000 == xuu600",fontsize=16,color="magenta"];681 -> 890[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 681 -> 891[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 682 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.89 682[label="xuu311000 == xuu600",fontsize=16,color="magenta"];682 -> 892[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 682 -> 893[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 683 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.89 683[label="xuu311000 == xuu600",fontsize=16,color="magenta"];683 -> 894[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 683 -> 895[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 684 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.89 684[label="xuu311000 == xuu600",fontsize=16,color="magenta"];684 -> 896[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 684 -> 897[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 685 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.89 685[label="xuu311000 == xuu600",fontsize=16,color="magenta"];685 -> 898[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 685 -> 899[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 686 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.89 686[label="xuu311000 == xuu600",fontsize=16,color="magenta"];686 -> 900[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 686 -> 901[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 687 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.89 687[label="xuu311000 == xuu600",fontsize=16,color="magenta"];687 -> 902[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 687 -> 903[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 688 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.89 688[label="xuu311000 == xuu600",fontsize=16,color="magenta"];688 -> 904[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 688 -> 905[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 689[label="compare2 (Just xuu87) (Just xuu88) False",fontsize=16,color="black",shape="box"];689 -> 906[label="",style="solid", color="black", weight=3]; 35.52/17.89 690[label="compare2 (Just xuu87) (Just xuu88) True",fontsize=16,color="black",shape="box"];690 -> 907[label="",style="solid", color="black", weight=3]; 35.52/17.89 1250[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];3523[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 3523[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3523 -> 1286[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3524[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 3524[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3524 -> 1287[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3525[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 3525[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3525 -> 1288[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3526[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 3526[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3526 -> 1289[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3527[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 3527[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3527 -> 1290[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3528[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 3528[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3528 -> 1291[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3529[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 3529[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3529 -> 1292[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3530[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 3530[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3530 -> 1293[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3531[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 3531[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3531 -> 1294[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3532[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 3532[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3532 -> 1295[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3533[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 3533[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3533 -> 1296[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3534[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 3534[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3534 -> 1297[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3535[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 3535[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3535 -> 1298[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3536[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 3536[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3536 -> 1299[label="",style="solid", color="blue", weight=3]; 35.52/17.89 1251[label="xuu311001 == xuu601",fontsize=16,color="blue",shape="box"];3537[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1251 -> 3537[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3537 -> 1300[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3538[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1251 -> 3538[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3538 -> 1301[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3539[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1251 -> 3539[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3539 -> 1302[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3540[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1251 -> 3540[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3540 -> 1303[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3541[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1251 -> 3541[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3541 -> 1304[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3542[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1251 -> 3542[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3542 -> 1305[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3543[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1251 -> 3543[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3543 -> 1306[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3544[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1251 -> 3544[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3544 -> 1307[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3545[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1251 -> 3545[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3545 -> 1308[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3546[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1251 -> 3546[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3546 -> 1309[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3547[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1251 -> 3547[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3547 -> 1310[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3548[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1251 -> 3548[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3548 -> 1311[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3549[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1251 -> 3549[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3549 -> 1312[label="",style="solid", color="blue", weight=3]; 35.52/17.89 3550[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1251 -> 3550[label="",style="solid", color="blue", weight=9]; 35.52/17.89 3550 -> 1313[label="",style="solid", color="blue", weight=3]; 35.52/17.89 1033[label="compare2 (xuu124,xuu125) (xuu126,xuu127) False",fontsize=16,color="black",shape="box"];1033 -> 1059[label="",style="solid", color="black", weight=3]; 35.52/17.89 1034[label="compare2 (xuu124,xuu125) (xuu126,xuu127) True",fontsize=16,color="black",shape="box"];1034 -> 1060[label="",style="solid", color="black", weight=3]; 35.52/17.89 707[label="primMulInt (Pos xuu3110000) xuu601",fontsize=16,color="burlywood",shape="box"];3551[label="xuu601/Pos xuu6010",fontsize=10,color="white",style="solid",shape="box"];707 -> 3551[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3551 -> 938[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3552[label="xuu601/Neg xuu6010",fontsize=10,color="white",style="solid",shape="box"];707 -> 3552[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3552 -> 939[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 708[label="primMulInt (Neg xuu3110000) xuu601",fontsize=16,color="burlywood",shape="box"];3553[label="xuu601/Pos xuu6010",fontsize=10,color="white",style="solid",shape="box"];708 -> 3553[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3553 -> 940[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3554[label="xuu601/Neg xuu6010",fontsize=10,color="white",style="solid",shape="box"];708 -> 3554[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3554 -> 941[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 709[label="Integer xuu3110000 * Integer xuu6010",fontsize=16,color="black",shape="box"];709 -> 942[label="",style="solid", color="black", weight=3]; 35.52/17.89 710[label="compare1 False True True",fontsize=16,color="black",shape="box"];710 -> 943[label="",style="solid", color="black", weight=3]; 35.52/17.89 711[label="compare1 True False False",fontsize=16,color="black",shape="box"];711 -> 944[label="",style="solid", color="black", weight=3]; 35.52/17.89 712 -> 438[label="",style="dashed", color="red", weight=0]; 35.52/17.89 712[label="primCmpNat xuu3110000 xuu6000",fontsize=16,color="magenta"];712 -> 945[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 712 -> 946[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 713[label="GT",fontsize=16,color="green",shape="box"];714[label="LT",fontsize=16,color="green",shape="box"];715[label="EQ",fontsize=16,color="green",shape="box"];719[label="FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42",fontsize=16,color="black",shape="triangle"];719 -> 951[label="",style="solid", color="black", weight=3]; 35.52/17.89 1101 -> 951[label="",style="dashed", color="red", weight=0]; 35.52/17.89 1101[label="FiniteMap.sizeFM xuu42",fontsize=16,color="magenta"];1101 -> 1110[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 1102[label="primPlusInt (Pos xuu4220) xuu137",fontsize=16,color="burlywood",shape="box"];3555[label="xuu137/Pos xuu1370",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3555[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3555 -> 1111[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3556[label="xuu137/Neg xuu1370",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3556[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3556 -> 1112[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 1103[label="primPlusInt (Neg xuu4220) xuu137",fontsize=16,color="burlywood",shape="box"];3557[label="xuu137/Pos xuu1370",fontsize=10,color="white",style="solid",shape="box"];1103 -> 3557[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3557 -> 1113[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3558[label="xuu137/Neg xuu1370",fontsize=10,color="white",style="solid",shape="box"];1103 -> 3558[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3558 -> 1114[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 718 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.89 718[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42",fontsize=16,color="magenta"];718 -> 949[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 718 -> 950[label="",style="dashed", color="magenta", weight=3]; 35.52/17.89 720[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 False",fontsize=16,color="black",shape="box"];720 -> 952[label="",style="solid", color="black", weight=3]; 35.52/17.89 721[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 True",fontsize=16,color="black",shape="box"];721 -> 953[label="",style="solid", color="black", weight=3]; 35.52/17.89 722[label="FiniteMap.Branch xuu17 xuu18 (FiniteMap.mkBranchUnbox xuu21 xuu17 xuu42 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu21 xuu17 xuu42 + FiniteMap.mkBranchRight_size xuu21 xuu17 xuu42)) xuu42 xuu21",fontsize=16,color="green",shape="box"];722 -> 954[label="",style="dashed", color="green", weight=3]; 35.52/17.89 723[label="() == xuu600",fontsize=16,color="burlywood",shape="box"];3559[label="xuu600/()",fontsize=10,color="white",style="solid",shape="box"];723 -> 3559[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3559 -> 955[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 724[label="primEqChar xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];3560[label="xuu311000/Char xuu3110000",fontsize=10,color="white",style="solid",shape="box"];724 -> 3560[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3560 -> 956[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 725[label="(xuu3110000,xuu3110001) == xuu600",fontsize=16,color="burlywood",shape="box"];3561[label="xuu600/(xuu6000,xuu6001)",fontsize=10,color="white",style="solid",shape="box"];725 -> 3561[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3561 -> 957[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 726[label="(xuu3110000,xuu3110001,xuu3110002) == xuu600",fontsize=16,color="burlywood",shape="box"];3562[label="xuu600/(xuu6000,xuu6001,xuu6002)",fontsize=10,color="white",style="solid",shape="box"];726 -> 3562[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3562 -> 958[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 727[label="primEqFloat xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];3563[label="xuu311000/Float xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];727 -> 3563[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3563 -> 959[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 728[label="primEqInt xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];3564[label="xuu311000/Pos xuu3110000",fontsize=10,color="white",style="solid",shape="box"];728 -> 3564[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3564 -> 960[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 3565[label="xuu311000/Neg xuu3110000",fontsize=10,color="white",style="solid",shape="box"];728 -> 3565[label="",style="solid", color="burlywood", weight=9]; 35.52/17.89 3565 -> 961[label="",style="solid", color="burlywood", weight=3]; 35.52/17.89 729[label="False == xuu600",fontsize=16,color="burlywood",shape="box"];3566[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];729 -> 3566[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3566 -> 962[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3567[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];729 -> 3567[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3567 -> 963[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 730[label="True == xuu600",fontsize=16,color="burlywood",shape="box"];3568[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];730 -> 3568[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3568 -> 964[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3569[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];730 -> 3569[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3569 -> 965[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 731[label="Left xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];3570[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];731 -> 3570[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3570 -> 966[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3571[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];731 -> 3571[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3571 -> 967[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 732[label="Right xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];3572[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];732 -> 3572[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3572 -> 968[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3573[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];732 -> 3573[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3573 -> 969[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 733[label="primEqDouble xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];3574[label="xuu311000/Double xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];733 -> 3574[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3574 -> 970[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 734[label="xuu3110000 :% xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];3575[label="xuu600/xuu6000 :% xuu6001",fontsize=10,color="white",style="solid",shape="box"];734 -> 3575[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3575 -> 971[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 735[label="xuu3110000 : xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];3576[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];735 -> 3576[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3576 -> 972[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3577[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];735 -> 3577[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3577 -> 973[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 736[label="[] == xuu600",fontsize=16,color="burlywood",shape="box"];3578[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];736 -> 3578[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3578 -> 974[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3579[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];736 -> 3579[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3579 -> 975[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 737[label="Integer xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];3580[label="xuu600/Integer xuu6000",fontsize=10,color="white",style="solid",shape="box"];737 -> 3580[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3580 -> 976[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 738[label="Nothing == xuu600",fontsize=16,color="burlywood",shape="box"];3581[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];738 -> 3581[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3581 -> 977[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3582[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];738 -> 3582[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3582 -> 978[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 739[label="Just xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];3583[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];739 -> 3583[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3583 -> 979[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3584[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];739 -> 3584[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3584 -> 980[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 740[label="LT == xuu600",fontsize=16,color="burlywood",shape="box"];3585[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];740 -> 3585[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3585 -> 981[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3586[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];740 -> 3586[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3586 -> 982[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3587[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];740 -> 3587[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3587 -> 983[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 741[label="EQ == xuu600",fontsize=16,color="burlywood",shape="box"];3588[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];741 -> 3588[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3588 -> 984[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3589[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];741 -> 3589[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3589 -> 985[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3590[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];741 -> 3590[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3590 -> 986[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 742[label="GT == xuu600",fontsize=16,color="burlywood",shape="box"];3591[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];742 -> 3591[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3591 -> 987[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3592[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];742 -> 3592[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3592 -> 988[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3593[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];742 -> 3593[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3593 -> 989[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 743 -> 1155[label="",style="dashed", color="red", weight=0]; 35.52/17.90 743[label="compare1 (Left xuu53) (Left xuu54) (Left xuu53 <= Left xuu54)",fontsize=16,color="magenta"];743 -> 1156[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 743 -> 1157[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 743 -> 1158[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 744[label="EQ",fontsize=16,color="green",shape="box"];745[label="LT",fontsize=16,color="green",shape="box"];746[label="compare0 (Right xuu311000) (Left xuu600) otherwise",fontsize=16,color="black",shape="box"];746 -> 991[label="",style="solid", color="black", weight=3]; 35.52/17.90 747[label="xuu311000",fontsize=16,color="green",shape="box"];748[label="xuu600",fontsize=16,color="green",shape="box"];749[label="xuu311000",fontsize=16,color="green",shape="box"];750[label="xuu600",fontsize=16,color="green",shape="box"];751[label="xuu311000",fontsize=16,color="green",shape="box"];752[label="xuu600",fontsize=16,color="green",shape="box"];753[label="xuu311000",fontsize=16,color="green",shape="box"];754[label="xuu600",fontsize=16,color="green",shape="box"];755[label="xuu311000",fontsize=16,color="green",shape="box"];756[label="xuu600",fontsize=16,color="green",shape="box"];757[label="xuu311000",fontsize=16,color="green",shape="box"];758[label="xuu600",fontsize=16,color="green",shape="box"];759[label="xuu311000",fontsize=16,color="green",shape="box"];760[label="xuu600",fontsize=16,color="green",shape="box"];761[label="xuu311000",fontsize=16,color="green",shape="box"];762[label="xuu600",fontsize=16,color="green",shape="box"];763[label="xuu311000",fontsize=16,color="green",shape="box"];764[label="xuu600",fontsize=16,color="green",shape="box"];765[label="xuu311000",fontsize=16,color="green",shape="box"];766[label="xuu600",fontsize=16,color="green",shape="box"];767[label="xuu311000",fontsize=16,color="green",shape="box"];768[label="xuu600",fontsize=16,color="green",shape="box"];769[label="xuu311000",fontsize=16,color="green",shape="box"];770[label="xuu600",fontsize=16,color="green",shape="box"];771[label="xuu311000",fontsize=16,color="green",shape="box"];772[label="xuu600",fontsize=16,color="green",shape="box"];773[label="xuu311000",fontsize=16,color="green",shape="box"];774[label="xuu600",fontsize=16,color="green",shape="box"];775 -> 1170[label="",style="dashed", color="red", weight=0]; 35.52/17.90 775[label="compare1 (Right xuu60) (Right xuu61) (Right xuu60 <= Right xuu61)",fontsize=16,color="magenta"];775 -> 1171[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 775 -> 1172[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 775 -> 1173[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 776[label="EQ",fontsize=16,color="green",shape="box"];1266 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1266[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1266 -> 1325[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1266 -> 1326[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1267 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1267[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1267 -> 1327[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1267 -> 1328[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1268 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1268[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1268 -> 1329[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1268 -> 1330[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1269 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1269[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1269 -> 1331[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1269 -> 1332[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1270 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1270[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1270 -> 1333[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1270 -> 1334[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1271 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1271[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1271 -> 1335[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1271 -> 1336[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1272 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1272[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1272 -> 1337[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1272 -> 1338[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1273 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1273[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1273 -> 1339[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1273 -> 1340[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1274 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1274[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1274 -> 1341[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1274 -> 1342[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1275 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1275[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1275 -> 1343[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1275 -> 1344[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1276 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1276[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1276 -> 1345[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1276 -> 1346[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1277 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1277[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1277 -> 1347[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1277 -> 1348[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1278 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1278[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1278 -> 1349[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1278 -> 1350[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1279 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1279[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1279 -> 1351[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1279 -> 1352[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1280[label="xuu311001 == xuu601",fontsize=16,color="blue",shape="box"];3594[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3594[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3594 -> 1353[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3595[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3595[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3595 -> 1354[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3596[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3596[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3596 -> 1355[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3597[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3597[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3597 -> 1356[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3598[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3598[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3598 -> 1357[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3599[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3599[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3599 -> 1358[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3600[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3600[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3600 -> 1359[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3601[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3601[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3601 -> 1360[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3602[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3602[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3602 -> 1361[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3603[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3603[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3603 -> 1362[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3604[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3604[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3604 -> 1363[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3605[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3605[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3605 -> 1364[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3606[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3606[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3606 -> 1365[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3607[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3607[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3607 -> 1366[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1281[label="xuu311002 == xuu602",fontsize=16,color="blue",shape="box"];3608[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3608[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3608 -> 1367[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3609[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3609[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3609 -> 1368[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3610[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3610[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3610 -> 1369[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3611[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3611[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3611 -> 1370[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3612[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3612[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3612 -> 1371[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3613[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3613[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3613 -> 1372[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3614[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3614[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3614 -> 1373[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3615[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3615[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3615 -> 1374[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3616[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3616[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3616 -> 1375[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3617[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3617[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3617 -> 1376[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3618[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3618[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3618 -> 1377[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3619[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3619[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3619 -> 1378[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3620[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3620[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3620 -> 1379[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3621[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3621[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3621 -> 1380[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1282[label="False && xuu163",fontsize=16,color="black",shape="box"];1282 -> 1381[label="",style="solid", color="black", weight=3]; 35.52/17.90 1283[label="True && xuu163",fontsize=16,color="black",shape="box"];1283 -> 1382[label="",style="solid", color="black", weight=3]; 35.52/17.90 1284[label="compare1 (xuu111,xuu112,xuu113) (xuu114,xuu115,xuu116) ((xuu111,xuu112,xuu113) <= (xuu114,xuu115,xuu116))",fontsize=16,color="black",shape="box"];1284 -> 1383[label="",style="solid", color="black", weight=3]; 35.52/17.90 1285[label="EQ",fontsize=16,color="green",shape="box"];807[label="xuu311000",fontsize=16,color="green",shape="box"];808[label="Pos xuu6010",fontsize=16,color="green",shape="box"];809[label="Pos xuu3110010",fontsize=16,color="green",shape="box"];810[label="xuu600",fontsize=16,color="green",shape="box"];811[label="xuu311000",fontsize=16,color="green",shape="box"];812[label="Pos xuu6010",fontsize=16,color="green",shape="box"];813[label="Neg xuu3110010",fontsize=16,color="green",shape="box"];814[label="xuu600",fontsize=16,color="green",shape="box"];815[label="xuu311000",fontsize=16,color="green",shape="box"];816[label="Neg xuu6010",fontsize=16,color="green",shape="box"];817[label="Pos xuu3110010",fontsize=16,color="green",shape="box"];818[label="xuu600",fontsize=16,color="green",shape="box"];819[label="xuu311000",fontsize=16,color="green",shape="box"];820[label="Neg xuu6010",fontsize=16,color="green",shape="box"];821[label="Neg xuu3110010",fontsize=16,color="green",shape="box"];822[label="xuu600",fontsize=16,color="green",shape="box"];823[label="xuu311000",fontsize=16,color="green",shape="box"];824[label="Pos xuu6010",fontsize=16,color="green",shape="box"];825[label="Pos xuu3110010",fontsize=16,color="green",shape="box"];826[label="xuu600",fontsize=16,color="green",shape="box"];827[label="xuu311000",fontsize=16,color="green",shape="box"];828[label="Pos xuu6010",fontsize=16,color="green",shape="box"];829[label="Neg xuu3110010",fontsize=16,color="green",shape="box"];830[label="xuu600",fontsize=16,color="green",shape="box"];831[label="xuu311000",fontsize=16,color="green",shape="box"];832[label="Neg xuu6010",fontsize=16,color="green",shape="box"];833[label="Pos xuu3110010",fontsize=16,color="green",shape="box"];834[label="xuu600",fontsize=16,color="green",shape="box"];835[label="xuu311000",fontsize=16,color="green",shape="box"];836[label="Neg xuu6010",fontsize=16,color="green",shape="box"];837[label="Neg xuu3110010",fontsize=16,color="green",shape="box"];838[label="xuu600",fontsize=16,color="green",shape="box"];839[label="LT",fontsize=16,color="green",shape="box"];840[label="LT",fontsize=16,color="green",shape="box"];841[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];841 -> 1002[label="",style="solid", color="black", weight=3]; 35.52/17.90 842[label="LT",fontsize=16,color="green",shape="box"];843[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];843 -> 1003[label="",style="solid", color="black", weight=3]; 35.52/17.90 844[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];844 -> 1004[label="",style="solid", color="black", weight=3]; 35.52/17.90 845[label="xuu311000",fontsize=16,color="green",shape="box"];846[label="xuu600",fontsize=16,color="green",shape="box"];847[label="xuu311000",fontsize=16,color="green",shape="box"];848[label="xuu600",fontsize=16,color="green",shape="box"];849[label="xuu311000",fontsize=16,color="green",shape="box"];850[label="xuu600",fontsize=16,color="green",shape="box"];851[label="xuu311000",fontsize=16,color="green",shape="box"];852[label="xuu600",fontsize=16,color="green",shape="box"];853[label="xuu311000",fontsize=16,color="green",shape="box"];854[label="xuu600",fontsize=16,color="green",shape="box"];855[label="xuu311000",fontsize=16,color="green",shape="box"];856[label="xuu600",fontsize=16,color="green",shape="box"];857[label="xuu311000",fontsize=16,color="green",shape="box"];858[label="xuu600",fontsize=16,color="green",shape="box"];859[label="xuu311000",fontsize=16,color="green",shape="box"];860[label="xuu600",fontsize=16,color="green",shape="box"];861[label="xuu311000",fontsize=16,color="green",shape="box"];862[label="xuu600",fontsize=16,color="green",shape="box"];863[label="xuu311000",fontsize=16,color="green",shape="box"];864[label="xuu600",fontsize=16,color="green",shape="box"];865[label="xuu311000",fontsize=16,color="green",shape="box"];866[label="xuu600",fontsize=16,color="green",shape="box"];867[label="xuu311000",fontsize=16,color="green",shape="box"];868[label="xuu600",fontsize=16,color="green",shape="box"];869[label="xuu311000",fontsize=16,color="green",shape="box"];870[label="xuu600",fontsize=16,color="green",shape="box"];871[label="xuu311000",fontsize=16,color="green",shape="box"];872[label="xuu600",fontsize=16,color="green",shape="box"];873[label="LT",fontsize=16,color="green",shape="box"];874[label="xuu81",fontsize=16,color="green",shape="box"];875[label="GT",fontsize=16,color="green",shape="box"];876[label="LT",fontsize=16,color="green",shape="box"];877[label="compare0 (Just xuu311000) Nothing otherwise",fontsize=16,color="black",shape="box"];877 -> 1005[label="",style="solid", color="black", weight=3]; 35.52/17.90 878[label="xuu311000",fontsize=16,color="green",shape="box"];879[label="xuu600",fontsize=16,color="green",shape="box"];880[label="xuu311000",fontsize=16,color="green",shape="box"];881[label="xuu600",fontsize=16,color="green",shape="box"];882[label="xuu311000",fontsize=16,color="green",shape="box"];883[label="xuu600",fontsize=16,color="green",shape="box"];884[label="xuu311000",fontsize=16,color="green",shape="box"];885[label="xuu600",fontsize=16,color="green",shape="box"];886[label="xuu311000",fontsize=16,color="green",shape="box"];887[label="xuu600",fontsize=16,color="green",shape="box"];888[label="xuu311000",fontsize=16,color="green",shape="box"];889[label="xuu600",fontsize=16,color="green",shape="box"];890[label="xuu311000",fontsize=16,color="green",shape="box"];891[label="xuu600",fontsize=16,color="green",shape="box"];892[label="xuu311000",fontsize=16,color="green",shape="box"];893[label="xuu600",fontsize=16,color="green",shape="box"];894[label="xuu311000",fontsize=16,color="green",shape="box"];895[label="xuu600",fontsize=16,color="green",shape="box"];896[label="xuu311000",fontsize=16,color="green",shape="box"];897[label="xuu600",fontsize=16,color="green",shape="box"];898[label="xuu311000",fontsize=16,color="green",shape="box"];899[label="xuu600",fontsize=16,color="green",shape="box"];900[label="xuu311000",fontsize=16,color="green",shape="box"];901[label="xuu600",fontsize=16,color="green",shape="box"];902[label="xuu311000",fontsize=16,color="green",shape="box"];903[label="xuu600",fontsize=16,color="green",shape="box"];904[label="xuu311000",fontsize=16,color="green",shape="box"];905[label="xuu600",fontsize=16,color="green",shape="box"];906 -> 1318[label="",style="dashed", color="red", weight=0]; 35.52/17.90 906[label="compare1 (Just xuu87) (Just xuu88) (Just xuu87 <= Just xuu88)",fontsize=16,color="magenta"];906 -> 1319[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 906 -> 1320[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 906 -> 1321[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 907[label="EQ",fontsize=16,color="green",shape="box"];1286 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1286[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1286 -> 1384[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1286 -> 1385[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1287 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1287[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1287 -> 1386[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1287 -> 1387[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1288 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1288[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1288 -> 1388[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1288 -> 1389[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1289 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1289[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1289 -> 1390[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1289 -> 1391[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1290 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1290[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1290 -> 1392[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1290 -> 1393[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1291 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1291[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1291 -> 1394[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1291 -> 1395[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1292 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1292[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1292 -> 1396[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1292 -> 1397[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1293 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1293[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1293 -> 1398[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1293 -> 1399[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1294 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1294[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1294 -> 1400[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1294 -> 1401[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1295 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1295[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1295 -> 1402[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1295 -> 1403[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1296 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1296[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1296 -> 1404[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1296 -> 1405[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1297 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1297[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1297 -> 1406[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1297 -> 1407[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1298 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1298[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1298 -> 1408[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1298 -> 1409[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1299 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1299[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1299 -> 1410[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1299 -> 1411[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1300 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1300[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1300 -> 1412[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1300 -> 1413[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1301 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1301[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1301 -> 1414[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1301 -> 1415[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1302 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1302[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1302 -> 1416[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1302 -> 1417[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1303 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1303[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1303 -> 1418[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1303 -> 1419[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1304 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1304[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1304 -> 1420[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1304 -> 1421[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1305 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1305[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1305 -> 1422[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1305 -> 1423[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1306 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1306[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1306 -> 1424[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1306 -> 1425[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1307 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1307[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1307 -> 1426[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1307 -> 1427[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1308 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1308[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1308 -> 1428[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1308 -> 1429[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1309 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1309[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1309 -> 1430[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1309 -> 1431[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1310 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1310[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1310 -> 1432[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1310 -> 1433[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1311 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1311[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1311 -> 1434[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1311 -> 1435[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1312 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1312[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1312 -> 1436[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1312 -> 1437[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1313 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1313[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1313 -> 1438[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1313 -> 1439[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1059[label="compare1 (xuu124,xuu125) (xuu126,xuu127) ((xuu124,xuu125) <= (xuu126,xuu127))",fontsize=16,color="black",shape="box"];1059 -> 1104[label="",style="solid", color="black", weight=3]; 35.52/17.90 1060[label="EQ",fontsize=16,color="green",shape="box"];938[label="primMulInt (Pos xuu3110000) (Pos xuu6010)",fontsize=16,color="black",shape="box"];938 -> 1051[label="",style="solid", color="black", weight=3]; 35.52/17.90 939[label="primMulInt (Pos xuu3110000) (Neg xuu6010)",fontsize=16,color="black",shape="box"];939 -> 1052[label="",style="solid", color="black", weight=3]; 35.52/17.90 940[label="primMulInt (Neg xuu3110000) (Pos xuu6010)",fontsize=16,color="black",shape="box"];940 -> 1053[label="",style="solid", color="black", weight=3]; 35.52/17.90 941[label="primMulInt (Neg xuu3110000) (Neg xuu6010)",fontsize=16,color="black",shape="box"];941 -> 1054[label="",style="solid", color="black", weight=3]; 35.52/17.90 942[label="Integer (primMulInt xuu3110000 xuu6010)",fontsize=16,color="green",shape="box"];942 -> 1055[label="",style="dashed", color="green", weight=3]; 35.52/17.90 943[label="LT",fontsize=16,color="green",shape="box"];944[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];944 -> 1056[label="",style="solid", color="black", weight=3]; 35.52/17.90 945[label="xuu3110000",fontsize=16,color="green",shape="box"];946[label="xuu6000",fontsize=16,color="green",shape="box"];951[label="FiniteMap.sizeFM xuu21",fontsize=16,color="burlywood",shape="triangle"];3622[label="xuu21/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];951 -> 3622[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3622 -> 1106[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3623[label="xuu21/FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214",fontsize=10,color="white",style="solid",shape="box"];951 -> 3623[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3623 -> 1107[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1110[label="xuu42",fontsize=16,color="green",shape="box"];1111[label="primPlusInt (Pos xuu4220) (Pos xuu1370)",fontsize=16,color="black",shape="box"];1111 -> 1162[label="",style="solid", color="black", weight=3]; 35.52/17.90 1112[label="primPlusInt (Pos xuu4220) (Neg xuu1370)",fontsize=16,color="black",shape="box"];1112 -> 1163[label="",style="solid", color="black", weight=3]; 35.52/17.90 1113[label="primPlusInt (Neg xuu4220) (Pos xuu1370)",fontsize=16,color="black",shape="box"];1113 -> 1164[label="",style="solid", color="black", weight=3]; 35.52/17.90 1114[label="primPlusInt (Neg xuu4220) (Neg xuu1370)",fontsize=16,color="black",shape="box"];1114 -> 1165[label="",style="solid", color="black", weight=3]; 35.52/17.90 949[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];949 -> 1105[label="",style="solid", color="black", weight=3]; 35.52/17.90 950 -> 1093[label="",style="dashed", color="red", weight=0]; 35.52/17.90 950[label="FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42",fontsize=16,color="magenta"];952 -> 1108[label="",style="dashed", color="red", weight=0]; 35.52/17.90 952[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 (FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42)",fontsize=16,color="magenta"];952 -> 1109[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 953[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu21 xuu17 xuu18 xuu42 xuu42 xuu21 xuu21",fontsize=16,color="burlywood",shape="box"];3624[label="xuu21/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];953 -> 3624[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3624 -> 1115[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3625[label="xuu21/FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214",fontsize=10,color="white",style="solid",shape="box"];953 -> 3625[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3625 -> 1116[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 954[label="FiniteMap.mkBranchUnbox xuu21 xuu17 xuu42 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu21 xuu17 xuu42 + FiniteMap.mkBranchRight_size xuu21 xuu17 xuu42)",fontsize=16,color="black",shape="box"];954 -> 1117[label="",style="solid", color="black", weight=3]; 35.52/17.90 955[label="() == ()",fontsize=16,color="black",shape="box"];955 -> 1118[label="",style="solid", color="black", weight=3]; 35.52/17.90 956[label="primEqChar (Char xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];3626[label="xuu600/Char xuu6000",fontsize=10,color="white",style="solid",shape="box"];956 -> 3626[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3626 -> 1119[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 957[label="(xuu3110000,xuu3110001) == (xuu6000,xuu6001)",fontsize=16,color="black",shape="box"];957 -> 1120[label="",style="solid", color="black", weight=3]; 35.52/17.90 958[label="(xuu3110000,xuu3110001,xuu3110002) == (xuu6000,xuu6001,xuu6002)",fontsize=16,color="black",shape="box"];958 -> 1121[label="",style="solid", color="black", weight=3]; 35.52/17.90 959[label="primEqFloat (Float xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];3627[label="xuu600/Float xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];959 -> 3627[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3627 -> 1122[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 960[label="primEqInt (Pos xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];3628[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];960 -> 3628[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3628 -> 1123[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3629[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];960 -> 3629[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3629 -> 1124[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 961[label="primEqInt (Neg xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];3630[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];961 -> 3630[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3630 -> 1125[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3631[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];961 -> 3631[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3631 -> 1126[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 962[label="False == False",fontsize=16,color="black",shape="box"];962 -> 1127[label="",style="solid", color="black", weight=3]; 35.52/17.90 963[label="False == True",fontsize=16,color="black",shape="box"];963 -> 1128[label="",style="solid", color="black", weight=3]; 35.52/17.90 964[label="True == False",fontsize=16,color="black",shape="box"];964 -> 1129[label="",style="solid", color="black", weight=3]; 35.52/17.90 965[label="True == True",fontsize=16,color="black",shape="box"];965 -> 1130[label="",style="solid", color="black", weight=3]; 35.52/17.90 966[label="Left xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];966 -> 1131[label="",style="solid", color="black", weight=3]; 35.52/17.90 967[label="Left xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];967 -> 1132[label="",style="solid", color="black", weight=3]; 35.52/17.90 968[label="Right xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];968 -> 1133[label="",style="solid", color="black", weight=3]; 35.52/17.90 969[label="Right xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];969 -> 1134[label="",style="solid", color="black", weight=3]; 35.52/17.90 970[label="primEqDouble (Double xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];3632[label="xuu600/Double xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];970 -> 3632[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3632 -> 1135[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 971[label="xuu3110000 :% xuu3110001 == xuu6000 :% xuu6001",fontsize=16,color="black",shape="box"];971 -> 1136[label="",style="solid", color="black", weight=3]; 35.52/17.90 972[label="xuu3110000 : xuu3110001 == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];972 -> 1137[label="",style="solid", color="black", weight=3]; 35.52/17.90 973[label="xuu3110000 : xuu3110001 == []",fontsize=16,color="black",shape="box"];973 -> 1138[label="",style="solid", color="black", weight=3]; 35.52/17.90 974[label="[] == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];974 -> 1139[label="",style="solid", color="black", weight=3]; 35.52/17.90 975[label="[] == []",fontsize=16,color="black",shape="box"];975 -> 1140[label="",style="solid", color="black", weight=3]; 35.52/17.90 976[label="Integer xuu3110000 == Integer xuu6000",fontsize=16,color="black",shape="box"];976 -> 1141[label="",style="solid", color="black", weight=3]; 35.52/17.90 977[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];977 -> 1142[label="",style="solid", color="black", weight=3]; 35.52/17.90 978[label="Nothing == Just xuu6000",fontsize=16,color="black",shape="box"];978 -> 1143[label="",style="solid", color="black", weight=3]; 35.52/17.90 979[label="Just xuu3110000 == Nothing",fontsize=16,color="black",shape="box"];979 -> 1144[label="",style="solid", color="black", weight=3]; 35.52/17.90 980[label="Just xuu3110000 == Just xuu6000",fontsize=16,color="black",shape="box"];980 -> 1145[label="",style="solid", color="black", weight=3]; 35.52/17.90 981[label="LT == LT",fontsize=16,color="black",shape="box"];981 -> 1146[label="",style="solid", color="black", weight=3]; 35.52/17.90 982[label="LT == EQ",fontsize=16,color="black",shape="box"];982 -> 1147[label="",style="solid", color="black", weight=3]; 35.52/17.90 983[label="LT == GT",fontsize=16,color="black",shape="box"];983 -> 1148[label="",style="solid", color="black", weight=3]; 35.52/17.90 984[label="EQ == LT",fontsize=16,color="black",shape="box"];984 -> 1149[label="",style="solid", color="black", weight=3]; 35.52/17.90 985[label="EQ == EQ",fontsize=16,color="black",shape="box"];985 -> 1150[label="",style="solid", color="black", weight=3]; 35.52/17.90 986[label="EQ == GT",fontsize=16,color="black",shape="box"];986 -> 1151[label="",style="solid", color="black", weight=3]; 35.52/17.90 987[label="GT == LT",fontsize=16,color="black",shape="box"];987 -> 1152[label="",style="solid", color="black", weight=3]; 35.52/17.90 988[label="GT == EQ",fontsize=16,color="black",shape="box"];988 -> 1153[label="",style="solid", color="black", weight=3]; 35.52/17.90 989[label="GT == GT",fontsize=16,color="black",shape="box"];989 -> 1154[label="",style="solid", color="black", weight=3]; 35.52/17.90 1156[label="xuu53",fontsize=16,color="green",shape="box"];1157[label="xuu54",fontsize=16,color="green",shape="box"];1158[label="Left xuu53 <= Left xuu54",fontsize=16,color="black",shape="box"];1158 -> 1166[label="",style="solid", color="black", weight=3]; 35.52/17.90 1155[label="compare1 (Left xuu147) (Left xuu148) xuu149",fontsize=16,color="burlywood",shape="triangle"];3633[label="xuu149/False",fontsize=10,color="white",style="solid",shape="box"];1155 -> 3633[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3633 -> 1167[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3634[label="xuu149/True",fontsize=10,color="white",style="solid",shape="box"];1155 -> 3634[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3634 -> 1168[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 991[label="compare0 (Right xuu311000) (Left xuu600) True",fontsize=16,color="black",shape="box"];991 -> 1169[label="",style="solid", color="black", weight=3]; 35.52/17.90 1171[label="xuu60",fontsize=16,color="green",shape="box"];1172[label="xuu61",fontsize=16,color="green",shape="box"];1173[label="Right xuu60 <= Right xuu61",fontsize=16,color="black",shape="box"];1173 -> 1177[label="",style="solid", color="black", weight=3]; 35.52/17.90 1170[label="compare1 (Right xuu154) (Right xuu155) xuu156",fontsize=16,color="burlywood",shape="triangle"];3635[label="xuu156/False",fontsize=10,color="white",style="solid",shape="box"];1170 -> 3635[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3635 -> 1178[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3636[label="xuu156/True",fontsize=10,color="white",style="solid",shape="box"];1170 -> 3636[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3636 -> 1179[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1325[label="xuu311000",fontsize=16,color="green",shape="box"];1326[label="xuu600",fontsize=16,color="green",shape="box"];1327[label="xuu311000",fontsize=16,color="green",shape="box"];1328[label="xuu600",fontsize=16,color="green",shape="box"];1329[label="xuu311000",fontsize=16,color="green",shape="box"];1330[label="xuu600",fontsize=16,color="green",shape="box"];1331[label="xuu311000",fontsize=16,color="green",shape="box"];1332[label="xuu600",fontsize=16,color="green",shape="box"];1333[label="xuu311000",fontsize=16,color="green",shape="box"];1334[label="xuu600",fontsize=16,color="green",shape="box"];1335[label="xuu311000",fontsize=16,color="green",shape="box"];1336[label="xuu600",fontsize=16,color="green",shape="box"];1337[label="xuu311000",fontsize=16,color="green",shape="box"];1338[label="xuu600",fontsize=16,color="green",shape="box"];1339[label="xuu311000",fontsize=16,color="green",shape="box"];1340[label="xuu600",fontsize=16,color="green",shape="box"];1341[label="xuu311000",fontsize=16,color="green",shape="box"];1342[label="xuu600",fontsize=16,color="green",shape="box"];1343[label="xuu311000",fontsize=16,color="green",shape="box"];1344[label="xuu600",fontsize=16,color="green",shape="box"];1345[label="xuu311000",fontsize=16,color="green",shape="box"];1346[label="xuu600",fontsize=16,color="green",shape="box"];1347[label="xuu311000",fontsize=16,color="green",shape="box"];1348[label="xuu600",fontsize=16,color="green",shape="box"];1349[label="xuu311000",fontsize=16,color="green",shape="box"];1350[label="xuu600",fontsize=16,color="green",shape="box"];1351[label="xuu311000",fontsize=16,color="green",shape="box"];1352[label="xuu600",fontsize=16,color="green",shape="box"];1353 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1353[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1353 -> 1445[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1353 -> 1446[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1354 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1354[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1354 -> 1447[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1354 -> 1448[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1355 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1355[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1355 -> 1449[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1355 -> 1450[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1356 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1356[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1356 -> 1451[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1356 -> 1452[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1357 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1357[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1357 -> 1453[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1357 -> 1454[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1358 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1358[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1358 -> 1455[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1358 -> 1456[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1359 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1359[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1359 -> 1457[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1359 -> 1458[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1360 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1360[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1360 -> 1459[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1360 -> 1460[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1361 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1361[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1361 -> 1461[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1361 -> 1462[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1362 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1362[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1362 -> 1463[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1362 -> 1464[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1363 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1363[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1363 -> 1465[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1363 -> 1466[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1364 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1364[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1364 -> 1467[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1364 -> 1468[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1365 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1365[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1365 -> 1469[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1365 -> 1470[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1366 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1366[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1366 -> 1471[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1366 -> 1472[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1367 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1367[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1367 -> 1473[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1367 -> 1474[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1368 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1368[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1368 -> 1475[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1368 -> 1476[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1369 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1369[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1369 -> 1477[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1369 -> 1478[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1370 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1370[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1370 -> 1479[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1370 -> 1480[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1371 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1371[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1371 -> 1481[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1371 -> 1482[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1372 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1372[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1372 -> 1483[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1372 -> 1484[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1373 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1373[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1373 -> 1485[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1373 -> 1486[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1374 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1374[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1374 -> 1487[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1374 -> 1488[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1375 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1375[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1375 -> 1489[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1375 -> 1490[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1376 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1376[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1376 -> 1491[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1376 -> 1492[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1377 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1377[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1377 -> 1493[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1377 -> 1494[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1378 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1378[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1378 -> 1495[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1378 -> 1496[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1379 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1379[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1379 -> 1497[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1379 -> 1498[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1380 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1380[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1380 -> 1499[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1380 -> 1500[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1381[label="False",fontsize=16,color="green",shape="box"];1382[label="xuu163",fontsize=16,color="green",shape="box"];1383 -> 1614[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1383[label="compare1 (xuu111,xuu112,xuu113) (xuu114,xuu115,xuu116) (xuu111 < xuu114 || xuu111 == xuu114 && (xuu112 < xuu115 || xuu112 == xuu115 && xuu113 <= xuu116))",fontsize=16,color="magenta"];1383 -> 1615[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1383 -> 1616[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1383 -> 1617[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1383 -> 1618[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1383 -> 1619[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1383 -> 1620[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1383 -> 1621[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1383 -> 1622[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1002[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];1002 -> 1314[label="",style="solid", color="black", weight=3]; 35.52/17.90 1003[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];1003 -> 1315[label="",style="solid", color="black", weight=3]; 35.52/17.90 1004[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];1004 -> 1316[label="",style="solid", color="black", weight=3]; 35.52/17.90 1005[label="compare0 (Just xuu311000) Nothing True",fontsize=16,color="black",shape="box"];1005 -> 1317[label="",style="solid", color="black", weight=3]; 35.52/17.90 1319[label="xuu87",fontsize=16,color="green",shape="box"];1320[label="xuu88",fontsize=16,color="green",shape="box"];1321[label="Just xuu87 <= Just xuu88",fontsize=16,color="black",shape="box"];1321 -> 1440[label="",style="solid", color="black", weight=3]; 35.52/17.90 1318[label="compare1 (Just xuu168) (Just xuu169) xuu170",fontsize=16,color="burlywood",shape="triangle"];3637[label="xuu170/False",fontsize=10,color="white",style="solid",shape="box"];1318 -> 3637[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3637 -> 1441[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3638[label="xuu170/True",fontsize=10,color="white",style="solid",shape="box"];1318 -> 3638[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3638 -> 1442[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1384[label="xuu311000",fontsize=16,color="green",shape="box"];1385[label="xuu600",fontsize=16,color="green",shape="box"];1386[label="xuu311000",fontsize=16,color="green",shape="box"];1387[label="xuu600",fontsize=16,color="green",shape="box"];1388[label="xuu311000",fontsize=16,color="green",shape="box"];1389[label="xuu600",fontsize=16,color="green",shape="box"];1390[label="xuu311000",fontsize=16,color="green",shape="box"];1391[label="xuu600",fontsize=16,color="green",shape="box"];1392[label="xuu311000",fontsize=16,color="green",shape="box"];1393[label="xuu600",fontsize=16,color="green",shape="box"];1394[label="xuu311000",fontsize=16,color="green",shape="box"];1395[label="xuu600",fontsize=16,color="green",shape="box"];1396[label="xuu311000",fontsize=16,color="green",shape="box"];1397[label="xuu600",fontsize=16,color="green",shape="box"];1398[label="xuu311000",fontsize=16,color="green",shape="box"];1399[label="xuu600",fontsize=16,color="green",shape="box"];1400[label="xuu311000",fontsize=16,color="green",shape="box"];1401[label="xuu600",fontsize=16,color="green",shape="box"];1402[label="xuu311000",fontsize=16,color="green",shape="box"];1403[label="xuu600",fontsize=16,color="green",shape="box"];1404[label="xuu311000",fontsize=16,color="green",shape="box"];1405[label="xuu600",fontsize=16,color="green",shape="box"];1406[label="xuu311000",fontsize=16,color="green",shape="box"];1407[label="xuu600",fontsize=16,color="green",shape="box"];1408[label="xuu311000",fontsize=16,color="green",shape="box"];1409[label="xuu600",fontsize=16,color="green",shape="box"];1410[label="xuu311000",fontsize=16,color="green",shape="box"];1411[label="xuu600",fontsize=16,color="green",shape="box"];1412[label="xuu311001",fontsize=16,color="green",shape="box"];1413[label="xuu601",fontsize=16,color="green",shape="box"];1414[label="xuu311001",fontsize=16,color="green",shape="box"];1415[label="xuu601",fontsize=16,color="green",shape="box"];1416[label="xuu311001",fontsize=16,color="green",shape="box"];1417[label="xuu601",fontsize=16,color="green",shape="box"];1418[label="xuu311001",fontsize=16,color="green",shape="box"];1419[label="xuu601",fontsize=16,color="green",shape="box"];1420[label="xuu311001",fontsize=16,color="green",shape="box"];1421[label="xuu601",fontsize=16,color="green",shape="box"];1422[label="xuu311001",fontsize=16,color="green",shape="box"];1423[label="xuu601",fontsize=16,color="green",shape="box"];1424[label="xuu311001",fontsize=16,color="green",shape="box"];1425[label="xuu601",fontsize=16,color="green",shape="box"];1426[label="xuu311001",fontsize=16,color="green",shape="box"];1427[label="xuu601",fontsize=16,color="green",shape="box"];1428[label="xuu311001",fontsize=16,color="green",shape="box"];1429[label="xuu601",fontsize=16,color="green",shape="box"];1430[label="xuu311001",fontsize=16,color="green",shape="box"];1431[label="xuu601",fontsize=16,color="green",shape="box"];1432[label="xuu311001",fontsize=16,color="green",shape="box"];1433[label="xuu601",fontsize=16,color="green",shape="box"];1434[label="xuu311001",fontsize=16,color="green",shape="box"];1435[label="xuu601",fontsize=16,color="green",shape="box"];1436[label="xuu311001",fontsize=16,color="green",shape="box"];1437[label="xuu601",fontsize=16,color="green",shape="box"];1438[label="xuu311001",fontsize=16,color="green",shape="box"];1439[label="xuu601",fontsize=16,color="green",shape="box"];1104 -> 1667[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1104[label="compare1 (xuu124,xuu125) (xuu126,xuu127) (xuu124 < xuu126 || xuu124 == xuu126 && xuu125 <= xuu127)",fontsize=16,color="magenta"];1104 -> 1668[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1104 -> 1669[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1104 -> 1670[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1104 -> 1671[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1104 -> 1672[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1104 -> 1673[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1051[label="Pos (primMulNat xuu3110000 xuu6010)",fontsize=16,color="green",shape="box"];1051 -> 1503[label="",style="dashed", color="green", weight=3]; 35.52/17.90 1052[label="Neg (primMulNat xuu3110000 xuu6010)",fontsize=16,color="green",shape="box"];1052 -> 1504[label="",style="dashed", color="green", weight=3]; 35.52/17.90 1053[label="Neg (primMulNat xuu3110000 xuu6010)",fontsize=16,color="green",shape="box"];1053 -> 1505[label="",style="dashed", color="green", weight=3]; 35.52/17.90 1054[label="Pos (primMulNat xuu3110000 xuu6010)",fontsize=16,color="green",shape="box"];1054 -> 1506[label="",style="dashed", color="green", weight=3]; 35.52/17.90 1055 -> 561[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1055[label="primMulInt xuu3110000 xuu6010",fontsize=16,color="magenta"];1055 -> 1507[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1055 -> 1508[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1056[label="compare0 True False True",fontsize=16,color="black",shape="box"];1056 -> 1509[label="",style="solid", color="black", weight=3]; 35.52/17.90 1106[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1106 -> 1510[label="",style="solid", color="black", weight=3]; 35.52/17.90 1107[label="FiniteMap.sizeFM (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];1107 -> 1511[label="",style="solid", color="black", weight=3]; 35.52/17.90 1162[label="Pos (primPlusNat xuu4220 xuu1370)",fontsize=16,color="green",shape="box"];1162 -> 1512[label="",style="dashed", color="green", weight=3]; 35.52/17.90 1163[label="primMinusNat xuu4220 xuu1370",fontsize=16,color="burlywood",shape="triangle"];3639[label="xuu4220/Succ xuu42200",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3639[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3639 -> 1513[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3640[label="xuu4220/Zero",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3640[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3640 -> 1514[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1164 -> 1163[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1164[label="primMinusNat xuu1370 xuu4220",fontsize=16,color="magenta"];1164 -> 1515[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1164 -> 1516[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1165[label="Neg (primPlusNat xuu4220 xuu1370)",fontsize=16,color="green",shape="box"];1165 -> 1517[label="",style="dashed", color="green", weight=3]; 35.52/17.90 1105[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1109 -> 131[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1109[label="FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42",fontsize=16,color="magenta"];1109 -> 1518[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1109 -> 1519[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1108[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 xuu138",fontsize=16,color="burlywood",shape="triangle"];3641[label="xuu138/False",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3641[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3641 -> 1520[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3642[label="xuu138/True",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3642[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3642 -> 1521[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1115[label="FiniteMap.mkBalBranch6MkBalBranch0 FiniteMap.EmptyFM xuu17 xuu18 xuu42 xuu42 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1115 -> 1522[label="",style="solid", color="black", weight=3]; 35.52/17.90 1116[label="FiniteMap.mkBalBranch6MkBalBranch0 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];1116 -> 1523[label="",style="solid", color="black", weight=3]; 35.52/17.90 1117[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu21 xuu17 xuu42 + FiniteMap.mkBranchRight_size xuu21 xuu17 xuu42",fontsize=16,color="black",shape="box"];1117 -> 1524[label="",style="solid", color="black", weight=3]; 35.52/17.90 1118[label="True",fontsize=16,color="green",shape="box"];1119[label="primEqChar (Char xuu3110000) (Char xuu6000)",fontsize=16,color="black",shape="box"];1119 -> 1525[label="",style="solid", color="black", weight=3]; 35.52/17.90 1120 -> 1247[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1120[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];1120 -> 1256[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1120 -> 1257[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1121 -> 1247[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1121[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];1121 -> 1258[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1121 -> 1259[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1122[label="primEqFloat (Float xuu3110000 xuu3110001) (Float xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];1122 -> 1526[label="",style="solid", color="black", weight=3]; 35.52/17.90 1123[label="primEqInt (Pos (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];3643[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];1123 -> 3643[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3643 -> 1527[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3644[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];1123 -> 3644[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3644 -> 1528[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1124[label="primEqInt (Pos Zero) xuu600",fontsize=16,color="burlywood",shape="box"];3645[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3645[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3645 -> 1529[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3646[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3646[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3646 -> 1530[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1125[label="primEqInt (Neg (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];3647[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];1125 -> 3647[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3647 -> 1531[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3648[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];1125 -> 3648[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3648 -> 1532[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1126[label="primEqInt (Neg Zero) xuu600",fontsize=16,color="burlywood",shape="box"];3649[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3649[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3649 -> 1533[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3650[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3650[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3650 -> 1534[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1127[label="True",fontsize=16,color="green",shape="box"];1128[label="False",fontsize=16,color="green",shape="box"];1129[label="False",fontsize=16,color="green",shape="box"];1130[label="True",fontsize=16,color="green",shape="box"];1131[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3651[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3651[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3651 -> 1535[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3652[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3652[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3652 -> 1536[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3653[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3653[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3653 -> 1537[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3654[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3654[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3654 -> 1538[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3655[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3655[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3655 -> 1539[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3656[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3656[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3656 -> 1540[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3657[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3657[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3657 -> 1541[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3658[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3658[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3658 -> 1542[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3659[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3659[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3659 -> 1543[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3660[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3660[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3660 -> 1544[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3661[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3661[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3661 -> 1545[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3662[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3662[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3662 -> 1546[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3663[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3663[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3663 -> 1547[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3664[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3664[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3664 -> 1548[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1132[label="False",fontsize=16,color="green",shape="box"];1133[label="False",fontsize=16,color="green",shape="box"];1134[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3665[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 3665[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3665 -> 1549[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3666[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 3666[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3666 -> 1550[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3667[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 3667[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3667 -> 1551[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3668[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 3668[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3668 -> 1552[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3669[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 3669[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3669 -> 1553[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3670[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 3670[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3670 -> 1554[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3671[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 3671[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3671 -> 1555[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3672[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 3672[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3672 -> 1556[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3673[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 3673[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3673 -> 1557[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3674[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 3674[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3674 -> 1558[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3675[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 3675[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3675 -> 1559[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3676[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 3676[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3676 -> 1560[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3677[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 3677[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3677 -> 1561[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3678[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 3678[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3678 -> 1562[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1135[label="primEqDouble (Double xuu3110000 xuu3110001) (Double xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];1135 -> 1563[label="",style="solid", color="black", weight=3]; 35.52/17.90 1136 -> 1247[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1136[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];1136 -> 1260[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1136 -> 1261[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1137 -> 1247[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1137[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];1137 -> 1262[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1137 -> 1263[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1138[label="False",fontsize=16,color="green",shape="box"];1139[label="False",fontsize=16,color="green",shape="box"];1140[label="True",fontsize=16,color="green",shape="box"];1141 -> 728[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1141[label="primEqInt xuu3110000 xuu6000",fontsize=16,color="magenta"];1141 -> 1564[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1141 -> 1565[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1142[label="True",fontsize=16,color="green",shape="box"];1143[label="False",fontsize=16,color="green",shape="box"];1144[label="False",fontsize=16,color="green",shape="box"];1145[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3679[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3679[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3679 -> 1566[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3680[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3680[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3680 -> 1567[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3681[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3681[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3681 -> 1568[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3682[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3682[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3682 -> 1569[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3683[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3683[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3683 -> 1570[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3684[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3684[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3684 -> 1571[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3685[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3685[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3685 -> 1572[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3686[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3686[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3686 -> 1573[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3687[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3687[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3687 -> 1574[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3688[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3688[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3688 -> 1575[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3689[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3689[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3689 -> 1576[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3690[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3690[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3690 -> 1577[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3691[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3691[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3691 -> 1578[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3692[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3692[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3692 -> 1579[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1146[label="True",fontsize=16,color="green",shape="box"];1147[label="False",fontsize=16,color="green",shape="box"];1148[label="False",fontsize=16,color="green",shape="box"];1149[label="False",fontsize=16,color="green",shape="box"];1150[label="True",fontsize=16,color="green",shape="box"];1151[label="False",fontsize=16,color="green",shape="box"];1152[label="False",fontsize=16,color="green",shape="box"];1153[label="False",fontsize=16,color="green",shape="box"];1154[label="True",fontsize=16,color="green",shape="box"];1166[label="xuu53 <= xuu54",fontsize=16,color="blue",shape="box"];3693[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 3693[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3693 -> 1580[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3694[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 3694[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3694 -> 1581[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3695[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 3695[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3695 -> 1582[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3696[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 3696[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3696 -> 1583[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3697[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 3697[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3697 -> 1584[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3698[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 3698[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3698 -> 1585[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3699[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 3699[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3699 -> 1586[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3700[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 3700[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3700 -> 1587[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3701[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 3701[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3701 -> 1588[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3702[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 3702[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3702 -> 1589[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3703[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 3703[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3703 -> 1590[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3704[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 3704[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3704 -> 1591[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3705[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 3705[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3705 -> 1592[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3706[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 3706[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3706 -> 1593[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1167[label="compare1 (Left xuu147) (Left xuu148) False",fontsize=16,color="black",shape="box"];1167 -> 1594[label="",style="solid", color="black", weight=3]; 35.52/17.90 1168[label="compare1 (Left xuu147) (Left xuu148) True",fontsize=16,color="black",shape="box"];1168 -> 1595[label="",style="solid", color="black", weight=3]; 35.52/17.90 1169[label="GT",fontsize=16,color="green",shape="box"];1177[label="xuu60 <= xuu61",fontsize=16,color="blue",shape="box"];3707[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3707[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3707 -> 1596[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3708[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3708[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3708 -> 1597[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3709[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3709[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3709 -> 1598[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3710[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3710[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3710 -> 1599[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3711[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3711[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3711 -> 1600[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3712[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3712[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3712 -> 1601[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3713[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3713[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3713 -> 1602[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3714[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3714[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3714 -> 1603[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3715[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3715[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3715 -> 1604[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3716[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3716[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3716 -> 1605[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3717[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3717[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3717 -> 1606[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3718[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3718[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3718 -> 1607[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3719[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3719[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3719 -> 1608[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3720[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3720[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3720 -> 1609[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1178[label="compare1 (Right xuu154) (Right xuu155) False",fontsize=16,color="black",shape="box"];1178 -> 1610[label="",style="solid", color="black", weight=3]; 35.52/17.90 1179[label="compare1 (Right xuu154) (Right xuu155) True",fontsize=16,color="black",shape="box"];1179 -> 1611[label="",style="solid", color="black", weight=3]; 35.52/17.90 1445[label="xuu311001",fontsize=16,color="green",shape="box"];1446[label="xuu601",fontsize=16,color="green",shape="box"];1447[label="xuu311001",fontsize=16,color="green",shape="box"];1448[label="xuu601",fontsize=16,color="green",shape="box"];1449[label="xuu311001",fontsize=16,color="green",shape="box"];1450[label="xuu601",fontsize=16,color="green",shape="box"];1451[label="xuu311001",fontsize=16,color="green",shape="box"];1452[label="xuu601",fontsize=16,color="green",shape="box"];1453[label="xuu311001",fontsize=16,color="green",shape="box"];1454[label="xuu601",fontsize=16,color="green",shape="box"];1455[label="xuu311001",fontsize=16,color="green",shape="box"];1456[label="xuu601",fontsize=16,color="green",shape="box"];1457[label="xuu311001",fontsize=16,color="green",shape="box"];1458[label="xuu601",fontsize=16,color="green",shape="box"];1459[label="xuu311001",fontsize=16,color="green",shape="box"];1460[label="xuu601",fontsize=16,color="green",shape="box"];1461[label="xuu311001",fontsize=16,color="green",shape="box"];1462[label="xuu601",fontsize=16,color="green",shape="box"];1463[label="xuu311001",fontsize=16,color="green",shape="box"];1464[label="xuu601",fontsize=16,color="green",shape="box"];1465[label="xuu311001",fontsize=16,color="green",shape="box"];1466[label="xuu601",fontsize=16,color="green",shape="box"];1467[label="xuu311001",fontsize=16,color="green",shape="box"];1468[label="xuu601",fontsize=16,color="green",shape="box"];1469[label="xuu311001",fontsize=16,color="green",shape="box"];1470[label="xuu601",fontsize=16,color="green",shape="box"];1471[label="xuu311001",fontsize=16,color="green",shape="box"];1472[label="xuu601",fontsize=16,color="green",shape="box"];1473[label="xuu311002",fontsize=16,color="green",shape="box"];1474[label="xuu602",fontsize=16,color="green",shape="box"];1475[label="xuu311002",fontsize=16,color="green",shape="box"];1476[label="xuu602",fontsize=16,color="green",shape="box"];1477[label="xuu311002",fontsize=16,color="green",shape="box"];1478[label="xuu602",fontsize=16,color="green",shape="box"];1479[label="xuu311002",fontsize=16,color="green",shape="box"];1480[label="xuu602",fontsize=16,color="green",shape="box"];1481[label="xuu311002",fontsize=16,color="green",shape="box"];1482[label="xuu602",fontsize=16,color="green",shape="box"];1483[label="xuu311002",fontsize=16,color="green",shape="box"];1484[label="xuu602",fontsize=16,color="green",shape="box"];1485[label="xuu311002",fontsize=16,color="green",shape="box"];1486[label="xuu602",fontsize=16,color="green",shape="box"];1487[label="xuu311002",fontsize=16,color="green",shape="box"];1488[label="xuu602",fontsize=16,color="green",shape="box"];1489[label="xuu311002",fontsize=16,color="green",shape="box"];1490[label="xuu602",fontsize=16,color="green",shape="box"];1491[label="xuu311002",fontsize=16,color="green",shape="box"];1492[label="xuu602",fontsize=16,color="green",shape="box"];1493[label="xuu311002",fontsize=16,color="green",shape="box"];1494[label="xuu602",fontsize=16,color="green",shape="box"];1495[label="xuu311002",fontsize=16,color="green",shape="box"];1496[label="xuu602",fontsize=16,color="green",shape="box"];1497[label="xuu311002",fontsize=16,color="green",shape="box"];1498[label="xuu602",fontsize=16,color="green",shape="box"];1499[label="xuu311002",fontsize=16,color="green",shape="box"];1500[label="xuu602",fontsize=16,color="green",shape="box"];1615[label="xuu111",fontsize=16,color="green",shape="box"];1616[label="xuu113",fontsize=16,color="green",shape="box"];1617[label="xuu111 < xuu114",fontsize=16,color="blue",shape="box"];3721[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 3721[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3721 -> 1631[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3722[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 3722[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3722 -> 1632[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3723[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 3723[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3723 -> 1633[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3724[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 3724[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3724 -> 1634[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3725[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 3725[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3725 -> 1635[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3726[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 3726[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3726 -> 1636[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3727[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 3727[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3727 -> 1637[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3728[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 3728[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3728 -> 1638[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3729[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 3729[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3729 -> 1639[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3730[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 3730[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3730 -> 1640[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3731[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 3731[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3731 -> 1641[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3732[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 3732[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3732 -> 1642[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3733[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 3733[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3733 -> 1643[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3734[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 3734[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3734 -> 1644[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1618[label="xuu112",fontsize=16,color="green",shape="box"];1619 -> 1247[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1619[label="xuu111 == xuu114 && (xuu112 < xuu115 || xuu112 == xuu115 && xuu113 <= xuu116)",fontsize=16,color="magenta"];1619 -> 1645[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1619 -> 1646[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1620[label="xuu115",fontsize=16,color="green",shape="box"];1621[label="xuu114",fontsize=16,color="green",shape="box"];1622[label="xuu116",fontsize=16,color="green",shape="box"];1614[label="compare1 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) (xuu189 || xuu190)",fontsize=16,color="burlywood",shape="triangle"];3735[label="xuu189/False",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3735[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3735 -> 1647[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3736[label="xuu189/True",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3736[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3736 -> 1648[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1314[label="GT",fontsize=16,color="green",shape="box"];1315[label="GT",fontsize=16,color="green",shape="box"];1316[label="GT",fontsize=16,color="green",shape="box"];1317[label="GT",fontsize=16,color="green",shape="box"];1440[label="xuu87 <= xuu88",fontsize=16,color="blue",shape="box"];3737[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3737[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3737 -> 1649[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3738[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3738[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3738 -> 1650[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3739[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3739[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3739 -> 1651[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3740[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3740[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3740 -> 1652[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3741[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3741[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3741 -> 1653[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3742[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3742[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3742 -> 1654[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3743[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3743[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3743 -> 1655[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3744[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3744[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3744 -> 1656[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3745[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3745[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3745 -> 1657[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3746[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3746[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3746 -> 1658[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3747[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3747[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3747 -> 1659[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3748[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3748[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3748 -> 1660[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3749[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3749[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3749 -> 1661[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3750[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3750[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3750 -> 1662[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1441[label="compare1 (Just xuu168) (Just xuu169) False",fontsize=16,color="black",shape="box"];1441 -> 1663[label="",style="solid", color="black", weight=3]; 35.52/17.90 1442[label="compare1 (Just xuu168) (Just xuu169) True",fontsize=16,color="black",shape="box"];1442 -> 1664[label="",style="solid", color="black", weight=3]; 35.52/17.90 1668[label="xuu125",fontsize=16,color="green",shape="box"];1669[label="xuu127",fontsize=16,color="green",shape="box"];1670[label="xuu124 < xuu126",fontsize=16,color="blue",shape="box"];3751[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3751[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3751 -> 1680[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3752[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3752[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3752 -> 1681[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3753[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3753[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3753 -> 1682[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3754[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3754[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3754 -> 1683[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3755[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3755[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3755 -> 1684[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3756[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3756[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3756 -> 1685[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3757[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3757[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3757 -> 1686[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3758[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3758[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3758 -> 1687[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3759[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3759[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3759 -> 1688[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3760[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3760[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3760 -> 1689[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3761[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3761[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3761 -> 1690[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3762[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3762[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3762 -> 1691[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3763[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3763[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3763 -> 1692[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3764[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3764[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3764 -> 1693[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1671[label="xuu124",fontsize=16,color="green",shape="box"];1672 -> 1247[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1672[label="xuu124 == xuu126 && xuu125 <= xuu127",fontsize=16,color="magenta"];1672 -> 1694[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1672 -> 1695[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1673[label="xuu126",fontsize=16,color="green",shape="box"];1667[label="compare1 (xuu198,xuu199) (xuu200,xuu201) (xuu202 || xuu203)",fontsize=16,color="burlywood",shape="triangle"];3765[label="xuu202/False",fontsize=10,color="white",style="solid",shape="box"];1667 -> 3765[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3765 -> 1696[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3766[label="xuu202/True",fontsize=10,color="white",style="solid",shape="box"];1667 -> 3766[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3766 -> 1697[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1503[label="primMulNat xuu3110000 xuu6010",fontsize=16,color="burlywood",shape="triangle"];3767[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3767[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3767 -> 1698[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3768[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3768[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3768 -> 1699[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1504 -> 1503[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1504[label="primMulNat xuu3110000 xuu6010",fontsize=16,color="magenta"];1504 -> 1700[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1505 -> 1503[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1505[label="primMulNat xuu3110000 xuu6010",fontsize=16,color="magenta"];1505 -> 1701[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1506 -> 1503[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1506[label="primMulNat xuu3110000 xuu6010",fontsize=16,color="magenta"];1506 -> 1702[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1506 -> 1703[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1507[label="xuu3110000",fontsize=16,color="green",shape="box"];1508[label="xuu6010",fontsize=16,color="green",shape="box"];1509[label="GT",fontsize=16,color="green",shape="box"];1510[label="Pos Zero",fontsize=16,color="green",shape="box"];1511[label="xuu212",fontsize=16,color="green",shape="box"];1512[label="primPlusNat xuu4220 xuu1370",fontsize=16,color="burlywood",shape="triangle"];3769[label="xuu4220/Succ xuu42200",fontsize=10,color="white",style="solid",shape="box"];1512 -> 3769[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3769 -> 1704[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3770[label="xuu4220/Zero",fontsize=10,color="white",style="solid",shape="box"];1512 -> 3770[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3770 -> 1705[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1513[label="primMinusNat (Succ xuu42200) xuu1370",fontsize=16,color="burlywood",shape="box"];3771[label="xuu1370/Succ xuu13700",fontsize=10,color="white",style="solid",shape="box"];1513 -> 3771[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3771 -> 1706[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3772[label="xuu1370/Zero",fontsize=10,color="white",style="solid",shape="box"];1513 -> 3772[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3772 -> 1707[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1514[label="primMinusNat Zero xuu1370",fontsize=16,color="burlywood",shape="box"];3773[label="xuu1370/Succ xuu13700",fontsize=10,color="white",style="solid",shape="box"];1514 -> 3773[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3773 -> 1708[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3774[label="xuu1370/Zero",fontsize=10,color="white",style="solid",shape="box"];1514 -> 3774[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3774 -> 1709[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1515[label="xuu1370",fontsize=16,color="green",shape="box"];1516[label="xuu4220",fontsize=16,color="green",shape="box"];1517 -> 1512[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1517[label="primPlusNat xuu4220 xuu1370",fontsize=16,color="magenta"];1517 -> 1710[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1517 -> 1711[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1518 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1518[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42",fontsize=16,color="magenta"];1518 -> 1712[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1518 -> 1713[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1519 -> 1093[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1519[label="FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42",fontsize=16,color="magenta"];1520[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 False",fontsize=16,color="black",shape="box"];1520 -> 1714[label="",style="solid", color="black", weight=3]; 35.52/17.90 1521[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 True",fontsize=16,color="black",shape="box"];1521 -> 1715[label="",style="solid", color="black", weight=3]; 35.52/17.90 1522[label="error []",fontsize=16,color="red",shape="box"];1523[label="FiniteMap.mkBalBranch6MkBalBranch02 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];1523 -> 1716[label="",style="solid", color="black", weight=3]; 35.52/17.90 1524 -> 1091[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1524[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu21 xuu17 xuu42) (FiniteMap.mkBranchRight_size xuu21 xuu17 xuu42)",fontsize=16,color="magenta"];1524 -> 1717[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1524 -> 1718[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1525[label="primEqNat xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="triangle"];3775[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];1525 -> 3775[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3775 -> 1719[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3776[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];1525 -> 3776[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3776 -> 1720[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1256[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3777[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3777[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3777 -> 1721[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3778[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3778[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3778 -> 1722[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3779[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3779[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3779 -> 1723[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3780[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3780[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3780 -> 1724[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3781[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3781[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3781 -> 1725[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3782[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3782[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3782 -> 1726[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3783[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3783[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3783 -> 1727[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3784[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3784[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3784 -> 1728[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3785[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3785[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3785 -> 1729[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3786[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3786[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3786 -> 1730[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3787[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3787[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3787 -> 1731[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3788[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3788[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3788 -> 1732[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3789[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3789[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3789 -> 1733[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3790[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3790[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3790 -> 1734[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1257[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];3791[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1257 -> 3791[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3791 -> 1735[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3792[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1257 -> 3792[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3792 -> 1736[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3793[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1257 -> 3793[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3793 -> 1737[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3794[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1257 -> 3794[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3794 -> 1738[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3795[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1257 -> 3795[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3795 -> 1739[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3796[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1257 -> 3796[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3796 -> 1740[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3797[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1257 -> 3797[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3797 -> 1741[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3798[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1257 -> 3798[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3798 -> 1742[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3799[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1257 -> 3799[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3799 -> 1743[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3800[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1257 -> 3800[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3800 -> 1744[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3801[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1257 -> 3801[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3801 -> 1745[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3802[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1257 -> 3802[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3802 -> 1746[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3803[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1257 -> 3803[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3803 -> 1747[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3804[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1257 -> 3804[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3804 -> 1748[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1258[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3805[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 3805[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3805 -> 1749[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3806[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 3806[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3806 -> 1750[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3807[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 3807[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3807 -> 1751[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3808[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 3808[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3808 -> 1752[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3809[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 3809[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3809 -> 1753[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3810[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 3810[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3810 -> 1754[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3811[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 3811[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3811 -> 1755[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3812[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 3812[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3812 -> 1756[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3813[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 3813[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3813 -> 1757[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3814[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 3814[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3814 -> 1758[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3815[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 3815[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3815 -> 1759[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3816[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 3816[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3816 -> 1760[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3817[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 3817[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3817 -> 1761[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3818[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 3818[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3818 -> 1762[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1259 -> 1247[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1259[label="xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];1259 -> 1763[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1259 -> 1764[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1526 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1526[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];1526 -> 1765[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1526 -> 1766[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1527[label="primEqInt (Pos (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];3819[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];1527 -> 3819[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3819 -> 1767[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3820[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];1527 -> 3820[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3820 -> 1768[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1528[label="primEqInt (Pos (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="black",shape="box"];1528 -> 1769[label="",style="solid", color="black", weight=3]; 35.52/17.90 1529[label="primEqInt (Pos Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];3821[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3821[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3821 -> 1770[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3822[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3822[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3822 -> 1771[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1530[label="primEqInt (Pos Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];3823[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];1530 -> 3823[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3823 -> 1772[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3824[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];1530 -> 3824[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3824 -> 1773[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1531[label="primEqInt (Neg (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="black",shape="box"];1531 -> 1774[label="",style="solid", color="black", weight=3]; 35.52/17.90 1532[label="primEqInt (Neg (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];3825[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3825[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3825 -> 1775[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3826[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3826[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3826 -> 1776[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1533[label="primEqInt (Neg Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];3827[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];1533 -> 3827[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3827 -> 1777[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3828[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];1533 -> 3828[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3828 -> 1778[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1534[label="primEqInt (Neg Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];3829[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];1534 -> 3829[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3829 -> 1779[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3830[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];1534 -> 3830[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3830 -> 1780[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1535 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1535[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1535 -> 1781[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1535 -> 1782[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1536 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1536[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1536 -> 1783[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1536 -> 1784[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1537 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1537[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1537 -> 1785[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1537 -> 1786[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1538 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1538[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1538 -> 1787[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1538 -> 1788[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1539 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1539[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1539 -> 1789[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1539 -> 1790[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1540 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1540[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1540 -> 1791[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1540 -> 1792[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1541 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1541[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1541 -> 1793[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1541 -> 1794[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1542 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1542[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1542 -> 1795[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1542 -> 1796[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1543 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1543[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1543 -> 1797[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1543 -> 1798[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1544 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1544[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1544 -> 1799[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1544 -> 1800[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1545 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1545[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1545 -> 1801[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1545 -> 1802[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1546 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1546[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1546 -> 1803[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1546 -> 1804[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1547 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1547[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1547 -> 1805[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1547 -> 1806[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1548 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1548[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1548 -> 1807[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1548 -> 1808[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1549 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1549[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1549 -> 1809[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1549 -> 1810[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1550 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1550[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1550 -> 1811[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1550 -> 1812[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1551 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1551[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1551 -> 1813[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1551 -> 1814[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1552 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1552[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1552 -> 1815[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1552 -> 1816[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1553 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1553[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1553 -> 1817[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1553 -> 1818[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1554 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1554[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1554 -> 1819[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1554 -> 1820[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1555 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1555[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1555 -> 1821[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1555 -> 1822[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1556 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1556[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1556 -> 1823[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1556 -> 1824[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1557 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1557[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1557 -> 1825[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1557 -> 1826[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1558 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1558[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1558 -> 1827[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1558 -> 1828[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1559 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1559[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1559 -> 1829[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1559 -> 1830[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1560 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1560[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1560 -> 1831[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1560 -> 1832[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1561 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1561[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1561 -> 1833[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1561 -> 1834[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1562 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1562[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1562 -> 1835[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1562 -> 1836[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1563 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1563[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];1563 -> 1837[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1563 -> 1838[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1260[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3831[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1260 -> 3831[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3831 -> 1839[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3832[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1260 -> 3832[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3832 -> 1840[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1261[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];3833[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1261 -> 3833[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3833 -> 1841[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3834[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1261 -> 3834[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3834 -> 1842[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1262[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3835[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3835[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3835 -> 1843[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3836[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3836[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3836 -> 1844[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3837[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3837[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3837 -> 1845[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3838[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3838[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3838 -> 1846[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3839[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3839[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3839 -> 1847[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3840[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3840[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3840 -> 1848[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3841[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3841[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3841 -> 1849[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3842[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3842[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3842 -> 1850[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3843[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3843[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3843 -> 1851[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3844[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3844[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3844 -> 1852[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3845[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3845[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3845 -> 1853[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3846[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3846[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3846 -> 1854[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3847[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3847[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3847 -> 1855[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3848[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3848[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3848 -> 1856[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1263 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1263[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1263 -> 1857[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1263 -> 1858[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1564[label="xuu3110000",fontsize=16,color="green",shape="box"];1565[label="xuu6000",fontsize=16,color="green",shape="box"];1566 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1566[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1566 -> 1859[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1566 -> 1860[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1567 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1567[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1567 -> 1861[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1567 -> 1862[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1568 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1568[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1568 -> 1863[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1568 -> 1864[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1569 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1569[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1569 -> 1865[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1569 -> 1866[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1570 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1570[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1570 -> 1867[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1570 -> 1868[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1571 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1571[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1571 -> 1869[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1571 -> 1870[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1572 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1572[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1572 -> 1871[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1572 -> 1872[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1573 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1573[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1573 -> 1873[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1573 -> 1874[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1574 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1574[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1574 -> 1875[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1574 -> 1876[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1575 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1575[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1575 -> 1877[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1575 -> 1878[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1576 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1576[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1576 -> 1879[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1576 -> 1880[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1577 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1577[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1577 -> 1881[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1577 -> 1882[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1578 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1578[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1578 -> 1883[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1578 -> 1884[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1579 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1579[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1579 -> 1885[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1579 -> 1886[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1580[label="xuu53 <= xuu54",fontsize=16,color="burlywood",shape="triangle"];3849[label="xuu53/Left xuu530",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3849[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3849 -> 1887[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3850[label="xuu53/Right xuu530",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3850[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3850 -> 1888[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1581[label="xuu53 <= xuu54",fontsize=16,color="black",shape="triangle"];1581 -> 1889[label="",style="solid", color="black", weight=3]; 35.52/17.90 1582[label="xuu53 <= xuu54",fontsize=16,color="burlywood",shape="triangle"];3851[label="xuu53/(xuu530,xuu531,xuu532)",fontsize=10,color="white",style="solid",shape="box"];1582 -> 3851[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3851 -> 1890[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1583[label="xuu53 <= xuu54",fontsize=16,color="black",shape="triangle"];1583 -> 1891[label="",style="solid", color="black", weight=3]; 35.52/17.90 1584[label="xuu53 <= xuu54",fontsize=16,color="black",shape="triangle"];1584 -> 1892[label="",style="solid", color="black", weight=3]; 35.52/17.90 1585[label="xuu53 <= xuu54",fontsize=16,color="black",shape="triangle"];1585 -> 1893[label="",style="solid", color="black", weight=3]; 35.52/17.90 1586[label="xuu53 <= xuu54",fontsize=16,color="burlywood",shape="triangle"];3852[label="xuu53/LT",fontsize=10,color="white",style="solid",shape="box"];1586 -> 3852[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3852 -> 1894[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3853[label="xuu53/EQ",fontsize=10,color="white",style="solid",shape="box"];1586 -> 3853[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3853 -> 1895[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3854[label="xuu53/GT",fontsize=10,color="white",style="solid",shape="box"];1586 -> 3854[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3854 -> 1896[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1587[label="xuu53 <= xuu54",fontsize=16,color="black",shape="triangle"];1587 -> 1897[label="",style="solid", color="black", weight=3]; 35.52/17.90 1588[label="xuu53 <= xuu54",fontsize=16,color="burlywood",shape="triangle"];3855[label="xuu53/Nothing",fontsize=10,color="white",style="solid",shape="box"];1588 -> 3855[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3855 -> 1898[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3856[label="xuu53/Just xuu530",fontsize=10,color="white",style="solid",shape="box"];1588 -> 3856[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3856 -> 1899[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1589[label="xuu53 <= xuu54",fontsize=16,color="burlywood",shape="triangle"];3857[label="xuu53/(xuu530,xuu531)",fontsize=10,color="white",style="solid",shape="box"];1589 -> 3857[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3857 -> 1900[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1590[label="xuu53 <= xuu54",fontsize=16,color="black",shape="triangle"];1590 -> 1901[label="",style="solid", color="black", weight=3]; 35.52/17.90 1591[label="xuu53 <= xuu54",fontsize=16,color="burlywood",shape="triangle"];3858[label="xuu53/False",fontsize=10,color="white",style="solid",shape="box"];1591 -> 3858[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3858 -> 1902[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3859[label="xuu53/True",fontsize=10,color="white",style="solid",shape="box"];1591 -> 3859[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3859 -> 1903[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1592[label="xuu53 <= xuu54",fontsize=16,color="black",shape="triangle"];1592 -> 1904[label="",style="solid", color="black", weight=3]; 35.52/17.90 1593[label="xuu53 <= xuu54",fontsize=16,color="black",shape="triangle"];1593 -> 1905[label="",style="solid", color="black", weight=3]; 35.52/17.90 1594[label="compare0 (Left xuu147) (Left xuu148) otherwise",fontsize=16,color="black",shape="box"];1594 -> 1906[label="",style="solid", color="black", weight=3]; 35.52/17.90 1595[label="LT",fontsize=16,color="green",shape="box"];1596 -> 1580[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1596[label="xuu60 <= xuu61",fontsize=16,color="magenta"];1596 -> 1907[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1596 -> 1908[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1597 -> 1581[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1597[label="xuu60 <= xuu61",fontsize=16,color="magenta"];1597 -> 1909[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1597 -> 1910[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1598 -> 1582[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1598[label="xuu60 <= xuu61",fontsize=16,color="magenta"];1598 -> 1911[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1598 -> 1912[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1599 -> 1583[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1599[label="xuu60 <= xuu61",fontsize=16,color="magenta"];1599 -> 1913[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1599 -> 1914[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1600 -> 1584[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1600[label="xuu60 <= xuu61",fontsize=16,color="magenta"];1600 -> 1915[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1600 -> 1916[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1601 -> 1585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1601[label="xuu60 <= xuu61",fontsize=16,color="magenta"];1601 -> 1917[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1601 -> 1918[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1602 -> 1586[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1602[label="xuu60 <= xuu61",fontsize=16,color="magenta"];1602 -> 1919[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1602 -> 1920[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1603 -> 1587[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1603[label="xuu60 <= xuu61",fontsize=16,color="magenta"];1603 -> 1921[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1603 -> 1922[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1604 -> 1588[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1604[label="xuu60 <= xuu61",fontsize=16,color="magenta"];1604 -> 1923[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1604 -> 1924[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1605 -> 1589[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1605[label="xuu60 <= xuu61",fontsize=16,color="magenta"];1605 -> 1925[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1605 -> 1926[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1606 -> 1590[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1606[label="xuu60 <= xuu61",fontsize=16,color="magenta"];1606 -> 1927[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1606 -> 1928[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1607 -> 1591[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1607[label="xuu60 <= xuu61",fontsize=16,color="magenta"];1607 -> 1929[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1607 -> 1930[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1608 -> 1592[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1608[label="xuu60 <= xuu61",fontsize=16,color="magenta"];1608 -> 1931[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1608 -> 1932[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1609 -> 1593[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1609[label="xuu60 <= xuu61",fontsize=16,color="magenta"];1609 -> 1933[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1609 -> 1934[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1610[label="compare0 (Right xuu154) (Right xuu155) otherwise",fontsize=16,color="black",shape="box"];1610 -> 1935[label="",style="solid", color="black", weight=3]; 35.52/17.90 1611[label="LT",fontsize=16,color="green",shape="box"];1631 -> 54[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1631[label="xuu111 < xuu114",fontsize=16,color="magenta"];1631 -> 1936[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1631 -> 1937[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1632 -> 55[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1632[label="xuu111 < xuu114",fontsize=16,color="magenta"];1632 -> 1938[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1632 -> 1939[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1633 -> 56[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1633[label="xuu111 < xuu114",fontsize=16,color="magenta"];1633 -> 1940[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1633 -> 1941[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1634 -> 57[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1634[label="xuu111 < xuu114",fontsize=16,color="magenta"];1634 -> 1942[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1634 -> 1943[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1635 -> 58[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1635[label="xuu111 < xuu114",fontsize=16,color="magenta"];1635 -> 1944[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1635 -> 1945[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1636 -> 59[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1636[label="xuu111 < xuu114",fontsize=16,color="magenta"];1636 -> 1946[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1636 -> 1947[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1637 -> 60[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1637[label="xuu111 < xuu114",fontsize=16,color="magenta"];1637 -> 1948[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1637 -> 1949[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1638 -> 61[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1638[label="xuu111 < xuu114",fontsize=16,color="magenta"];1638 -> 1950[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1638 -> 1951[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1639 -> 62[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1639[label="xuu111 < xuu114",fontsize=16,color="magenta"];1639 -> 1952[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1639 -> 1953[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1640 -> 63[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1640[label="xuu111 < xuu114",fontsize=16,color="magenta"];1640 -> 1954[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1640 -> 1955[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1641 -> 64[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1641[label="xuu111 < xuu114",fontsize=16,color="magenta"];1641 -> 1956[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1641 -> 1957[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1642 -> 65[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1642[label="xuu111 < xuu114",fontsize=16,color="magenta"];1642 -> 1958[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1642 -> 1959[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1643 -> 66[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1643[label="xuu111 < xuu114",fontsize=16,color="magenta"];1643 -> 1960[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1643 -> 1961[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1644 -> 67[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1644[label="xuu111 < xuu114",fontsize=16,color="magenta"];1644 -> 1962[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1644 -> 1963[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1645[label="xuu111 == xuu114",fontsize=16,color="blue",shape="box"];3860[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3860[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3860 -> 1964[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3861[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3861[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3861 -> 1965[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3862[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3862[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3862 -> 1966[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3863[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3863[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3863 -> 1967[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3864[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3864[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3864 -> 1968[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3865[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3865[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3865 -> 1969[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3866[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3866[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3866 -> 1970[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3867[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3867[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3867 -> 1971[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3868[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3868[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3868 -> 1972[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3869[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3869[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3869 -> 1973[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3870[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3870[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3870 -> 1974[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3871[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3871[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3871 -> 1975[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3872[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3872[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3872 -> 1976[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3873[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3873[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3873 -> 1977[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1646 -> 2324[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1646[label="xuu112 < xuu115 || xuu112 == xuu115 && xuu113 <= xuu116",fontsize=16,color="magenta"];1646 -> 2325[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1646 -> 2326[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1647[label="compare1 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) (False || xuu190)",fontsize=16,color="black",shape="box"];1647 -> 1980[label="",style="solid", color="black", weight=3]; 35.52/17.90 1648[label="compare1 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) (True || xuu190)",fontsize=16,color="black",shape="box"];1648 -> 1981[label="",style="solid", color="black", weight=3]; 35.52/17.90 1649 -> 1580[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1649[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1649 -> 1982[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1649 -> 1983[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1650 -> 1581[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1650[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1650 -> 1984[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1650 -> 1985[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1651 -> 1582[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1651[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1651 -> 1986[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1651 -> 1987[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1652 -> 1583[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1652[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1652 -> 1988[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1652 -> 1989[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1653 -> 1584[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1653[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1653 -> 1990[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1653 -> 1991[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1654 -> 1585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1654[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1654 -> 1992[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1654 -> 1993[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1655 -> 1586[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1655[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1655 -> 1994[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1655 -> 1995[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1656 -> 1587[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1656[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1656 -> 1996[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1656 -> 1997[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1657 -> 1588[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1657[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1657 -> 1998[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1657 -> 1999[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1658 -> 1589[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1658[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1658 -> 2000[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1658 -> 2001[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1659 -> 1590[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1659[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1659 -> 2002[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1659 -> 2003[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1660 -> 1591[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1660[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1660 -> 2004[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1660 -> 2005[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1661 -> 1592[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1661[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1661 -> 2006[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1661 -> 2007[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1662 -> 1593[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1662[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1662 -> 2008[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1662 -> 2009[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1663[label="compare0 (Just xuu168) (Just xuu169) otherwise",fontsize=16,color="black",shape="box"];1663 -> 2010[label="",style="solid", color="black", weight=3]; 35.52/17.90 1664[label="LT",fontsize=16,color="green",shape="box"];1680 -> 54[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1680[label="xuu124 < xuu126",fontsize=16,color="magenta"];1680 -> 2011[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1680 -> 2012[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1681 -> 55[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1681[label="xuu124 < xuu126",fontsize=16,color="magenta"];1681 -> 2013[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1681 -> 2014[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1682 -> 56[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1682[label="xuu124 < xuu126",fontsize=16,color="magenta"];1682 -> 2015[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1682 -> 2016[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1683 -> 57[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1683[label="xuu124 < xuu126",fontsize=16,color="magenta"];1683 -> 2017[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1683 -> 2018[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1684 -> 58[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1684[label="xuu124 < xuu126",fontsize=16,color="magenta"];1684 -> 2019[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1684 -> 2020[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1685 -> 59[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1685[label="xuu124 < xuu126",fontsize=16,color="magenta"];1685 -> 2021[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1685 -> 2022[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1686 -> 60[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1686[label="xuu124 < xuu126",fontsize=16,color="magenta"];1686 -> 2023[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1686 -> 2024[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1687 -> 61[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1687[label="xuu124 < xuu126",fontsize=16,color="magenta"];1687 -> 2025[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1687 -> 2026[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1688 -> 62[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1688[label="xuu124 < xuu126",fontsize=16,color="magenta"];1688 -> 2027[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1688 -> 2028[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1689 -> 63[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1689[label="xuu124 < xuu126",fontsize=16,color="magenta"];1689 -> 2029[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1689 -> 2030[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1690 -> 64[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1690[label="xuu124 < xuu126",fontsize=16,color="magenta"];1690 -> 2031[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1690 -> 2032[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1691 -> 65[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1691[label="xuu124 < xuu126",fontsize=16,color="magenta"];1691 -> 2033[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1691 -> 2034[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1692 -> 66[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1692[label="xuu124 < xuu126",fontsize=16,color="magenta"];1692 -> 2035[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1692 -> 2036[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1693 -> 67[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1693[label="xuu124 < xuu126",fontsize=16,color="magenta"];1693 -> 2037[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1693 -> 2038[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1694[label="xuu124 == xuu126",fontsize=16,color="blue",shape="box"];3874[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3874[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3874 -> 2039[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3875[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3875[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3875 -> 2040[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3876[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3876[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3876 -> 2041[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3877[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3877[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3877 -> 2042[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3878[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3878[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3878 -> 2043[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3879[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3879[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3879 -> 2044[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3880[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3880[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3880 -> 2045[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3881[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3881[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3881 -> 2046[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3882[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3882[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3882 -> 2047[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3883[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3883[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3883 -> 2048[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3884[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3884[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3884 -> 2049[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3885[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3885[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3885 -> 2050[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3886[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3886[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3886 -> 2051[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3887[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1694 -> 3887[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3887 -> 2052[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1695[label="xuu125 <= xuu127",fontsize=16,color="blue",shape="box"];3888[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3888[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3888 -> 2053[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3889[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3889[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3889 -> 2054[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3890[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3890[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3890 -> 2055[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3891[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3891[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3891 -> 2056[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3892[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3892[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3892 -> 2057[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3893[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3893[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3893 -> 2058[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3894[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3894[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3894 -> 2059[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3895[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3895[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3895 -> 2060[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3896[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3896[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3896 -> 2061[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3897[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3897[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3897 -> 2062[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3898[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3898[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3898 -> 2063[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3899[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3899[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3899 -> 2064[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3900[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3900[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3900 -> 2065[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3901[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1695 -> 3901[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3901 -> 2066[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1696[label="compare1 (xuu198,xuu199) (xuu200,xuu201) (False || xuu203)",fontsize=16,color="black",shape="box"];1696 -> 2067[label="",style="solid", color="black", weight=3]; 35.52/17.90 1697[label="compare1 (xuu198,xuu199) (xuu200,xuu201) (True || xuu203)",fontsize=16,color="black",shape="box"];1697 -> 2068[label="",style="solid", color="black", weight=3]; 35.52/17.90 1698[label="primMulNat (Succ xuu31100000) xuu6010",fontsize=16,color="burlywood",shape="box"];3902[label="xuu6010/Succ xuu60100",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3902[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3902 -> 2069[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3903[label="xuu6010/Zero",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3903[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3903 -> 2070[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1699[label="primMulNat Zero xuu6010",fontsize=16,color="burlywood",shape="box"];3904[label="xuu6010/Succ xuu60100",fontsize=10,color="white",style="solid",shape="box"];1699 -> 3904[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3904 -> 2071[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3905[label="xuu6010/Zero",fontsize=10,color="white",style="solid",shape="box"];1699 -> 3905[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3905 -> 2072[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1700[label="xuu6010",fontsize=16,color="green",shape="box"];1701[label="xuu3110000",fontsize=16,color="green",shape="box"];1702[label="xuu3110000",fontsize=16,color="green",shape="box"];1703[label="xuu6010",fontsize=16,color="green",shape="box"];1704[label="primPlusNat (Succ xuu42200) xuu1370",fontsize=16,color="burlywood",shape="box"];3906[label="xuu1370/Succ xuu13700",fontsize=10,color="white",style="solid",shape="box"];1704 -> 3906[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3906 -> 2073[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3907[label="xuu1370/Zero",fontsize=10,color="white",style="solid",shape="box"];1704 -> 3907[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3907 -> 2074[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1705[label="primPlusNat Zero xuu1370",fontsize=16,color="burlywood",shape="box"];3908[label="xuu1370/Succ xuu13700",fontsize=10,color="white",style="solid",shape="box"];1705 -> 3908[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3908 -> 2075[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3909[label="xuu1370/Zero",fontsize=10,color="white",style="solid",shape="box"];1705 -> 3909[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3909 -> 2076[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1706[label="primMinusNat (Succ xuu42200) (Succ xuu13700)",fontsize=16,color="black",shape="box"];1706 -> 2077[label="",style="solid", color="black", weight=3]; 35.52/17.90 1707[label="primMinusNat (Succ xuu42200) Zero",fontsize=16,color="black",shape="box"];1707 -> 2078[label="",style="solid", color="black", weight=3]; 35.52/17.90 1708[label="primMinusNat Zero (Succ xuu13700)",fontsize=16,color="black",shape="box"];1708 -> 2079[label="",style="solid", color="black", weight=3]; 35.52/17.90 1709[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];1709 -> 2080[label="",style="solid", color="black", weight=3]; 35.52/17.90 1710[label="xuu4220",fontsize=16,color="green",shape="box"];1711[label="xuu1370",fontsize=16,color="green",shape="box"];1712 -> 949[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1712[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1713 -> 719[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1713[label="FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42",fontsize=16,color="magenta"];1714[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 otherwise",fontsize=16,color="black",shape="box"];1714 -> 2081[label="",style="solid", color="black", weight=3]; 35.52/17.90 1715[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu21 xuu17 xuu18 xuu42 xuu42 xuu21 xuu42",fontsize=16,color="burlywood",shape="box"];3910[label="xuu42/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1715 -> 3910[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3910 -> 2082[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3911[label="xuu42/FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424",fontsize=10,color="white",style="solid",shape="box"];1715 -> 3911[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3911 -> 2083[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1716 -> 2084[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1716[label="FiniteMap.mkBalBranch6MkBalBranch01 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 (FiniteMap.sizeFM xuu213 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu214)",fontsize=16,color="magenta"];1716 -> 2085[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1717[label="FiniteMap.mkBranchRight_size xuu21 xuu17 xuu42",fontsize=16,color="black",shape="box"];1717 -> 2086[label="",style="solid", color="black", weight=3]; 35.52/17.90 1718[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu21 xuu17 xuu42",fontsize=16,color="black",shape="box"];1718 -> 2087[label="",style="solid", color="black", weight=3]; 35.52/17.90 1719[label="primEqNat (Succ xuu31100000) xuu6000",fontsize=16,color="burlywood",shape="box"];3912[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];1719 -> 3912[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3912 -> 2088[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3913[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];1719 -> 3913[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3913 -> 2089[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1720[label="primEqNat Zero xuu6000",fontsize=16,color="burlywood",shape="box"];3914[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];1720 -> 3914[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3914 -> 2090[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3915[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];1720 -> 3915[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3915 -> 2091[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1721 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1721[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1721 -> 2092[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1721 -> 2093[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1722 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1722[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1722 -> 2094[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1722 -> 2095[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1723 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1723[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1723 -> 2096[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1723 -> 2097[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1724 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1724[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1724 -> 2098[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1724 -> 2099[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1725 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1725[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1725 -> 2100[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1725 -> 2101[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1726 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1726[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1726 -> 2102[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1726 -> 2103[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1727 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1727[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1727 -> 2104[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1727 -> 2105[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1728 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1728[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1728 -> 2106[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1728 -> 2107[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1729 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1729[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1729 -> 2108[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1729 -> 2109[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1730 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1730[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1730 -> 2110[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1730 -> 2111[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1731 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1731[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1731 -> 2112[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1731 -> 2113[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1732 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1732[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1732 -> 2114[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1732 -> 2115[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1733 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1733[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1733 -> 2116[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1733 -> 2117[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1734 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1734[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1734 -> 2118[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1734 -> 2119[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1735 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1735[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1735 -> 2120[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1735 -> 2121[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1736 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1736[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1736 -> 2122[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1736 -> 2123[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1737 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1737[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1737 -> 2124[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1737 -> 2125[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1738 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1738[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1738 -> 2126[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1738 -> 2127[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1739 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1739[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1739 -> 2128[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1739 -> 2129[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1740 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1740[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1740 -> 2130[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1740 -> 2131[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1741 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1741[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1741 -> 2132[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1741 -> 2133[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1742 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1742[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1742 -> 2134[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1742 -> 2135[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1743 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1743[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1743 -> 2136[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1743 -> 2137[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1744 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1744[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1744 -> 2138[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1744 -> 2139[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1745 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1745[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1745 -> 2140[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1745 -> 2141[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1746 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1746[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1746 -> 2142[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1746 -> 2143[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1747 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1747[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1747 -> 2144[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1747 -> 2145[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1748 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1748[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1748 -> 2146[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1748 -> 2147[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1749 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1749[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1749 -> 2148[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1749 -> 2149[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1750 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1750[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1750 -> 2150[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1750 -> 2151[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1751 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1751[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1751 -> 2152[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1751 -> 2153[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1752 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1752[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1752 -> 2154[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1752 -> 2155[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1753 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1753[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1753 -> 2156[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1753 -> 2157[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1754 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1754[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1754 -> 2158[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1754 -> 2159[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1755 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1755[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1755 -> 2160[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1755 -> 2161[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1756 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1756[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1756 -> 2162[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1756 -> 2163[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1757 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1757[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1757 -> 2164[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1757 -> 2165[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1758 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1758[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1758 -> 2166[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1758 -> 2167[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1759 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1759[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1759 -> 2168[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1759 -> 2169[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1760 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1760[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1760 -> 2170[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1760 -> 2171[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1761 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1761[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1761 -> 2172[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1761 -> 2173[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1762 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1762[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1762 -> 2174[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1762 -> 2175[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1763[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];3916[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1763 -> 3916[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3916 -> 2176[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3917[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1763 -> 3917[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3917 -> 2177[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3918[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1763 -> 3918[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3918 -> 2178[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3919[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1763 -> 3919[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3919 -> 2179[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3920[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1763 -> 3920[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3920 -> 2180[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3921[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1763 -> 3921[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3921 -> 2181[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3922[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1763 -> 3922[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3922 -> 2182[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3923[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1763 -> 3923[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3923 -> 2183[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3924[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1763 -> 3924[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3924 -> 2184[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3925[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1763 -> 3925[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3925 -> 2185[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3926[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1763 -> 3926[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3926 -> 2186[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3927[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1763 -> 3927[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3927 -> 2187[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3928[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1763 -> 3928[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3928 -> 2188[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3929[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1763 -> 3929[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3929 -> 2189[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1764[label="xuu3110002 == xuu6002",fontsize=16,color="blue",shape="box"];3930[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1764 -> 3930[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3930 -> 2190[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3931[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1764 -> 3931[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3931 -> 2191[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3932[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1764 -> 3932[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3932 -> 2192[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3933[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1764 -> 3933[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3933 -> 2193[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3934[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1764 -> 3934[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3934 -> 2194[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3935[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1764 -> 3935[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3935 -> 2195[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3936[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1764 -> 3936[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3936 -> 2196[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3937[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1764 -> 3937[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3937 -> 2197[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3938[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1764 -> 3938[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3938 -> 2198[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3939[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1764 -> 3939[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3939 -> 2199[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3940[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1764 -> 3940[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3940 -> 2200[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3941[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1764 -> 3941[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3941 -> 2201[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3942[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1764 -> 3942[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3942 -> 2202[label="",style="solid", color="blue", weight=3]; 35.52/17.90 3943[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1764 -> 3943[label="",style="solid", color="blue", weight=9]; 35.52/17.90 3943 -> 2203[label="",style="solid", color="blue", weight=3]; 35.52/17.90 1765 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1765[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];1765 -> 2204[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1765 -> 2205[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1766 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1766[label="xuu3110001 * xuu6000",fontsize=16,color="magenta"];1766 -> 2206[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1766 -> 2207[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1767[label="primEqInt (Pos (Succ xuu31100000)) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];1767 -> 2208[label="",style="solid", color="black", weight=3]; 35.52/17.90 1768[label="primEqInt (Pos (Succ xuu31100000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1768 -> 2209[label="",style="solid", color="black", weight=3]; 35.52/17.90 1769[label="False",fontsize=16,color="green",shape="box"];1770[label="primEqInt (Pos Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];1770 -> 2210[label="",style="solid", color="black", weight=3]; 35.52/17.90 1771[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1771 -> 2211[label="",style="solid", color="black", weight=3]; 35.52/17.90 1772[label="primEqInt (Pos Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];1772 -> 2212[label="",style="solid", color="black", weight=3]; 35.52/17.90 1773[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1773 -> 2213[label="",style="solid", color="black", weight=3]; 35.52/17.90 1774[label="False",fontsize=16,color="green",shape="box"];1775[label="primEqInt (Neg (Succ xuu31100000)) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];1775 -> 2214[label="",style="solid", color="black", weight=3]; 35.52/17.90 1776[label="primEqInt (Neg (Succ xuu31100000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1776 -> 2215[label="",style="solid", color="black", weight=3]; 35.52/17.90 1777[label="primEqInt (Neg Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];1777 -> 2216[label="",style="solid", color="black", weight=3]; 35.52/17.90 1778[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1778 -> 2217[label="",style="solid", color="black", weight=3]; 35.52/17.90 1779[label="primEqInt (Neg Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];1779 -> 2218[label="",style="solid", color="black", weight=3]; 35.52/17.90 1780[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1780 -> 2219[label="",style="solid", color="black", weight=3]; 35.52/17.90 1781[label="xuu3110000",fontsize=16,color="green",shape="box"];1782[label="xuu6000",fontsize=16,color="green",shape="box"];1783[label="xuu3110000",fontsize=16,color="green",shape="box"];1784[label="xuu6000",fontsize=16,color="green",shape="box"];1785[label="xuu3110000",fontsize=16,color="green",shape="box"];1786[label="xuu6000",fontsize=16,color="green",shape="box"];1787[label="xuu3110000",fontsize=16,color="green",shape="box"];1788[label="xuu6000",fontsize=16,color="green",shape="box"];1789[label="xuu3110000",fontsize=16,color="green",shape="box"];1790[label="xuu6000",fontsize=16,color="green",shape="box"];1791[label="xuu3110000",fontsize=16,color="green",shape="box"];1792[label="xuu6000",fontsize=16,color="green",shape="box"];1793[label="xuu3110000",fontsize=16,color="green",shape="box"];1794[label="xuu6000",fontsize=16,color="green",shape="box"];1795[label="xuu3110000",fontsize=16,color="green",shape="box"];1796[label="xuu6000",fontsize=16,color="green",shape="box"];1797[label="xuu3110000",fontsize=16,color="green",shape="box"];1798[label="xuu6000",fontsize=16,color="green",shape="box"];1799[label="xuu3110000",fontsize=16,color="green",shape="box"];1800[label="xuu6000",fontsize=16,color="green",shape="box"];1801[label="xuu3110000",fontsize=16,color="green",shape="box"];1802[label="xuu6000",fontsize=16,color="green",shape="box"];1803[label="xuu3110000",fontsize=16,color="green",shape="box"];1804[label="xuu6000",fontsize=16,color="green",shape="box"];1805[label="xuu3110000",fontsize=16,color="green",shape="box"];1806[label="xuu6000",fontsize=16,color="green",shape="box"];1807[label="xuu3110000",fontsize=16,color="green",shape="box"];1808[label="xuu6000",fontsize=16,color="green",shape="box"];1809[label="xuu3110000",fontsize=16,color="green",shape="box"];1810[label="xuu6000",fontsize=16,color="green",shape="box"];1811[label="xuu3110000",fontsize=16,color="green",shape="box"];1812[label="xuu6000",fontsize=16,color="green",shape="box"];1813[label="xuu3110000",fontsize=16,color="green",shape="box"];1814[label="xuu6000",fontsize=16,color="green",shape="box"];1815[label="xuu3110000",fontsize=16,color="green",shape="box"];1816[label="xuu6000",fontsize=16,color="green",shape="box"];1817[label="xuu3110000",fontsize=16,color="green",shape="box"];1818[label="xuu6000",fontsize=16,color="green",shape="box"];1819[label="xuu3110000",fontsize=16,color="green",shape="box"];1820[label="xuu6000",fontsize=16,color="green",shape="box"];1821[label="xuu3110000",fontsize=16,color="green",shape="box"];1822[label="xuu6000",fontsize=16,color="green",shape="box"];1823[label="xuu3110000",fontsize=16,color="green",shape="box"];1824[label="xuu6000",fontsize=16,color="green",shape="box"];1825[label="xuu3110000",fontsize=16,color="green",shape="box"];1826[label="xuu6000",fontsize=16,color="green",shape="box"];1827[label="xuu3110000",fontsize=16,color="green",shape="box"];1828[label="xuu6000",fontsize=16,color="green",shape="box"];1829[label="xuu3110000",fontsize=16,color="green",shape="box"];1830[label="xuu6000",fontsize=16,color="green",shape="box"];1831[label="xuu3110000",fontsize=16,color="green",shape="box"];1832[label="xuu6000",fontsize=16,color="green",shape="box"];1833[label="xuu3110000",fontsize=16,color="green",shape="box"];1834[label="xuu6000",fontsize=16,color="green",shape="box"];1835[label="xuu3110000",fontsize=16,color="green",shape="box"];1836[label="xuu6000",fontsize=16,color="green",shape="box"];1837 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1837[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];1837 -> 2220[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1837 -> 2221[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1838 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1838[label="xuu3110001 * xuu6000",fontsize=16,color="magenta"];1838 -> 2222[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1838 -> 2223[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1839 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1839[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1839 -> 2224[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1839 -> 2225[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1840 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1840[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1840 -> 2226[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1840 -> 2227[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1841 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1841[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1841 -> 2228[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1841 -> 2229[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1842 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1842[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1842 -> 2230[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1842 -> 2231[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1843 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1843[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1843 -> 2232[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1843 -> 2233[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1844 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1844[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1844 -> 2234[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1844 -> 2235[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1845 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1845[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1845 -> 2236[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1845 -> 2237[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1846 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1846[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1846 -> 2238[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1846 -> 2239[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1847 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1847[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1847 -> 2240[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1847 -> 2241[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1848 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1848[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1848 -> 2242[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1848 -> 2243[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1849 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1849[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1849 -> 2244[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1849 -> 2245[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1850 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1850[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1850 -> 2246[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1850 -> 2247[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1851 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1851[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1851 -> 2248[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1851 -> 2249[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1852 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1852[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1852 -> 2250[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1852 -> 2251[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1853 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1853[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1853 -> 2252[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1853 -> 2253[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1854 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1854[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1854 -> 2254[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1854 -> 2255[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1855 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1855[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1855 -> 2256[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1855 -> 2257[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1856 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1856[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1856 -> 2258[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1856 -> 2259[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1857[label="xuu3110001",fontsize=16,color="green",shape="box"];1858[label="xuu6001",fontsize=16,color="green",shape="box"];1859[label="xuu3110000",fontsize=16,color="green",shape="box"];1860[label="xuu6000",fontsize=16,color="green",shape="box"];1861[label="xuu3110000",fontsize=16,color="green",shape="box"];1862[label="xuu6000",fontsize=16,color="green",shape="box"];1863[label="xuu3110000",fontsize=16,color="green",shape="box"];1864[label="xuu6000",fontsize=16,color="green",shape="box"];1865[label="xuu3110000",fontsize=16,color="green",shape="box"];1866[label="xuu6000",fontsize=16,color="green",shape="box"];1867[label="xuu3110000",fontsize=16,color="green",shape="box"];1868[label="xuu6000",fontsize=16,color="green",shape="box"];1869[label="xuu3110000",fontsize=16,color="green",shape="box"];1870[label="xuu6000",fontsize=16,color="green",shape="box"];1871[label="xuu3110000",fontsize=16,color="green",shape="box"];1872[label="xuu6000",fontsize=16,color="green",shape="box"];1873[label="xuu3110000",fontsize=16,color="green",shape="box"];1874[label="xuu6000",fontsize=16,color="green",shape="box"];1875[label="xuu3110000",fontsize=16,color="green",shape="box"];1876[label="xuu6000",fontsize=16,color="green",shape="box"];1877[label="xuu3110000",fontsize=16,color="green",shape="box"];1878[label="xuu6000",fontsize=16,color="green",shape="box"];1879[label="xuu3110000",fontsize=16,color="green",shape="box"];1880[label="xuu6000",fontsize=16,color="green",shape="box"];1881[label="xuu3110000",fontsize=16,color="green",shape="box"];1882[label="xuu6000",fontsize=16,color="green",shape="box"];1883[label="xuu3110000",fontsize=16,color="green",shape="box"];1884[label="xuu6000",fontsize=16,color="green",shape="box"];1885[label="xuu3110000",fontsize=16,color="green",shape="box"];1886[label="xuu6000",fontsize=16,color="green",shape="box"];1887[label="Left xuu530 <= xuu54",fontsize=16,color="burlywood",shape="box"];3944[label="xuu54/Left xuu540",fontsize=10,color="white",style="solid",shape="box"];1887 -> 3944[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3944 -> 2260[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3945[label="xuu54/Right xuu540",fontsize=10,color="white",style="solid",shape="box"];1887 -> 3945[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3945 -> 2261[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1888[label="Right xuu530 <= xuu54",fontsize=16,color="burlywood",shape="box"];3946[label="xuu54/Left xuu540",fontsize=10,color="white",style="solid",shape="box"];1888 -> 3946[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3946 -> 2262[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3947[label="xuu54/Right xuu540",fontsize=10,color="white",style="solid",shape="box"];1888 -> 3947[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3947 -> 2263[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1889 -> 2264[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1889[label="compare xuu53 xuu54 /= GT",fontsize=16,color="magenta"];1889 -> 2265[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1890[label="(xuu530,xuu531,xuu532) <= xuu54",fontsize=16,color="burlywood",shape="box"];3948[label="xuu54/(xuu540,xuu541,xuu542)",fontsize=10,color="white",style="solid",shape="box"];1890 -> 3948[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3948 -> 2273[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1891 -> 2264[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1891[label="compare xuu53 xuu54 /= GT",fontsize=16,color="magenta"];1891 -> 2266[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1892 -> 2264[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1892[label="compare xuu53 xuu54 /= GT",fontsize=16,color="magenta"];1892 -> 2267[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1893 -> 2264[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1893[label="compare xuu53 xuu54 /= GT",fontsize=16,color="magenta"];1893 -> 2268[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1894[label="LT <= xuu54",fontsize=16,color="burlywood",shape="box"];3949[label="xuu54/LT",fontsize=10,color="white",style="solid",shape="box"];1894 -> 3949[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3949 -> 2274[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3950[label="xuu54/EQ",fontsize=10,color="white",style="solid",shape="box"];1894 -> 3950[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3950 -> 2275[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3951[label="xuu54/GT",fontsize=10,color="white",style="solid",shape="box"];1894 -> 3951[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3951 -> 2276[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1895[label="EQ <= xuu54",fontsize=16,color="burlywood",shape="box"];3952[label="xuu54/LT",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3952[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3952 -> 2277[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3953[label="xuu54/EQ",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3953[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3953 -> 2278[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3954[label="xuu54/GT",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3954[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3954 -> 2279[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1896[label="GT <= xuu54",fontsize=16,color="burlywood",shape="box"];3955[label="xuu54/LT",fontsize=10,color="white",style="solid",shape="box"];1896 -> 3955[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3955 -> 2280[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3956[label="xuu54/EQ",fontsize=10,color="white",style="solid",shape="box"];1896 -> 3956[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3956 -> 2281[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3957[label="xuu54/GT",fontsize=10,color="white",style="solid",shape="box"];1896 -> 3957[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3957 -> 2282[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1897 -> 2264[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1897[label="compare xuu53 xuu54 /= GT",fontsize=16,color="magenta"];1897 -> 2269[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1898[label="Nothing <= xuu54",fontsize=16,color="burlywood",shape="box"];3958[label="xuu54/Nothing",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3958[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3958 -> 2283[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3959[label="xuu54/Just xuu540",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3959[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3959 -> 2284[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1899[label="Just xuu530 <= xuu54",fontsize=16,color="burlywood",shape="box"];3960[label="xuu54/Nothing",fontsize=10,color="white",style="solid",shape="box"];1899 -> 3960[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3960 -> 2285[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3961[label="xuu54/Just xuu540",fontsize=10,color="white",style="solid",shape="box"];1899 -> 3961[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3961 -> 2286[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1900[label="(xuu530,xuu531) <= xuu54",fontsize=16,color="burlywood",shape="box"];3962[label="xuu54/(xuu540,xuu541)",fontsize=10,color="white",style="solid",shape="box"];1900 -> 3962[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3962 -> 2287[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1901 -> 2264[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1901[label="compare xuu53 xuu54 /= GT",fontsize=16,color="magenta"];1901 -> 2270[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1902[label="False <= xuu54",fontsize=16,color="burlywood",shape="box"];3963[label="xuu54/False",fontsize=10,color="white",style="solid",shape="box"];1902 -> 3963[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3963 -> 2288[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3964[label="xuu54/True",fontsize=10,color="white",style="solid",shape="box"];1902 -> 3964[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3964 -> 2289[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1903[label="True <= xuu54",fontsize=16,color="burlywood",shape="box"];3965[label="xuu54/False",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3965[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3965 -> 2290[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 3966[label="xuu54/True",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3966[label="",style="solid", color="burlywood", weight=9]; 35.52/17.90 3966 -> 2291[label="",style="solid", color="burlywood", weight=3]; 35.52/17.90 1904 -> 2264[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1904[label="compare xuu53 xuu54 /= GT",fontsize=16,color="magenta"];1904 -> 2271[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1905 -> 2264[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1905[label="compare xuu53 xuu54 /= GT",fontsize=16,color="magenta"];1905 -> 2272[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1906[label="compare0 (Left xuu147) (Left xuu148) True",fontsize=16,color="black",shape="box"];1906 -> 2292[label="",style="solid", color="black", weight=3]; 35.52/17.90 1907[label="xuu60",fontsize=16,color="green",shape="box"];1908[label="xuu61",fontsize=16,color="green",shape="box"];1909[label="xuu60",fontsize=16,color="green",shape="box"];1910[label="xuu61",fontsize=16,color="green",shape="box"];1911[label="xuu60",fontsize=16,color="green",shape="box"];1912[label="xuu61",fontsize=16,color="green",shape="box"];1913[label="xuu60",fontsize=16,color="green",shape="box"];1914[label="xuu61",fontsize=16,color="green",shape="box"];1915[label="xuu60",fontsize=16,color="green",shape="box"];1916[label="xuu61",fontsize=16,color="green",shape="box"];1917[label="xuu60",fontsize=16,color="green",shape="box"];1918[label="xuu61",fontsize=16,color="green",shape="box"];1919[label="xuu60",fontsize=16,color="green",shape="box"];1920[label="xuu61",fontsize=16,color="green",shape="box"];1921[label="xuu60",fontsize=16,color="green",shape="box"];1922[label="xuu61",fontsize=16,color="green",shape="box"];1923[label="xuu60",fontsize=16,color="green",shape="box"];1924[label="xuu61",fontsize=16,color="green",shape="box"];1925[label="xuu60",fontsize=16,color="green",shape="box"];1926[label="xuu61",fontsize=16,color="green",shape="box"];1927[label="xuu60",fontsize=16,color="green",shape="box"];1928[label="xuu61",fontsize=16,color="green",shape="box"];1929[label="xuu60",fontsize=16,color="green",shape="box"];1930[label="xuu61",fontsize=16,color="green",shape="box"];1931[label="xuu60",fontsize=16,color="green",shape="box"];1932[label="xuu61",fontsize=16,color="green",shape="box"];1933[label="xuu60",fontsize=16,color="green",shape="box"];1934[label="xuu61",fontsize=16,color="green",shape="box"];1935[label="compare0 (Right xuu154) (Right xuu155) True",fontsize=16,color="black",shape="box"];1935 -> 2293[label="",style="solid", color="black", weight=3]; 35.52/17.90 1936[label="xuu111",fontsize=16,color="green",shape="box"];1937[label="xuu114",fontsize=16,color="green",shape="box"];1938[label="xuu111",fontsize=16,color="green",shape="box"];1939[label="xuu114",fontsize=16,color="green",shape="box"];1940[label="xuu111",fontsize=16,color="green",shape="box"];1941[label="xuu114",fontsize=16,color="green",shape="box"];1942[label="xuu111",fontsize=16,color="green",shape="box"];1943[label="xuu114",fontsize=16,color="green",shape="box"];1944[label="xuu111",fontsize=16,color="green",shape="box"];1945[label="xuu114",fontsize=16,color="green",shape="box"];1946[label="xuu111",fontsize=16,color="green",shape="box"];1947[label="xuu114",fontsize=16,color="green",shape="box"];1948[label="xuu111",fontsize=16,color="green",shape="box"];1949[label="xuu114",fontsize=16,color="green",shape="box"];1950[label="xuu111",fontsize=16,color="green",shape="box"];1951[label="xuu114",fontsize=16,color="green",shape="box"];1952[label="xuu111",fontsize=16,color="green",shape="box"];1953[label="xuu114",fontsize=16,color="green",shape="box"];1954[label="xuu111",fontsize=16,color="green",shape="box"];1955[label="xuu114",fontsize=16,color="green",shape="box"];1956[label="xuu111",fontsize=16,color="green",shape="box"];1957[label="xuu114",fontsize=16,color="green",shape="box"];1958[label="xuu111",fontsize=16,color="green",shape="box"];1959[label="xuu114",fontsize=16,color="green",shape="box"];1960[label="xuu111",fontsize=16,color="green",shape="box"];1961[label="xuu114",fontsize=16,color="green",shape="box"];1962[label="xuu111",fontsize=16,color="green",shape="box"];1963[label="xuu114",fontsize=16,color="green",shape="box"];1964 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1964[label="xuu111 == xuu114",fontsize=16,color="magenta"];1964 -> 2294[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1964 -> 2295[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1965 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1965[label="xuu111 == xuu114",fontsize=16,color="magenta"];1965 -> 2296[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1965 -> 2297[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1966 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1966[label="xuu111 == xuu114",fontsize=16,color="magenta"];1966 -> 2298[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1966 -> 2299[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1967 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.90 1967[label="xuu111 == xuu114",fontsize=16,color="magenta"];1967 -> 2300[label="",style="dashed", color="magenta", weight=3]; 35.52/17.90 1967 -> 2301[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1968 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.91 1968[label="xuu111 == xuu114",fontsize=16,color="magenta"];1968 -> 2302[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1968 -> 2303[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1969 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.91 1969[label="xuu111 == xuu114",fontsize=16,color="magenta"];1969 -> 2304[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1969 -> 2305[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1970 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.91 1970[label="xuu111 == xuu114",fontsize=16,color="magenta"];1970 -> 2306[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1970 -> 2307[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1971 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.91 1971[label="xuu111 == xuu114",fontsize=16,color="magenta"];1971 -> 2308[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1971 -> 2309[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1972 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.91 1972[label="xuu111 == xuu114",fontsize=16,color="magenta"];1972 -> 2310[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1972 -> 2311[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1973 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.91 1973[label="xuu111 == xuu114",fontsize=16,color="magenta"];1973 -> 2312[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1973 -> 2313[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1974 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.91 1974[label="xuu111 == xuu114",fontsize=16,color="magenta"];1974 -> 2314[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1974 -> 2315[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1975 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.91 1975[label="xuu111 == xuu114",fontsize=16,color="magenta"];1975 -> 2316[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1975 -> 2317[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1976 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.91 1976[label="xuu111 == xuu114",fontsize=16,color="magenta"];1976 -> 2318[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1976 -> 2319[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1977 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.91 1977[label="xuu111 == xuu114",fontsize=16,color="magenta"];1977 -> 2320[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1977 -> 2321[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2325[label="xuu112 < xuu115",fontsize=16,color="blue",shape="box"];3967[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3967[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3967 -> 2329[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3968[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3968[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3968 -> 2330[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3969[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3969[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3969 -> 2331[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3970[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3970[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3970 -> 2332[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3971[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3971[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3971 -> 2333[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3972[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3972[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3972 -> 2334[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3973[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3973[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3973 -> 2335[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3974[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3974[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3974 -> 2336[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3975[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3975[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3975 -> 2337[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3976[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3976[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3976 -> 2338[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3977[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3977[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3977 -> 2339[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3978[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3978[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3978 -> 2340[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3979[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3979[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3979 -> 2341[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3980[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3980[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3980 -> 2342[label="",style="solid", color="blue", weight=3]; 35.52/17.91 2326 -> 1247[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2326[label="xuu112 == xuu115 && xuu113 <= xuu116",fontsize=16,color="magenta"];2326 -> 2343[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2326 -> 2344[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2324[label="xuu213 || xuu214",fontsize=16,color="burlywood",shape="triangle"];3981[label="xuu213/False",fontsize=10,color="white",style="solid",shape="box"];2324 -> 3981[label="",style="solid", color="burlywood", weight=9]; 35.52/17.91 3981 -> 2345[label="",style="solid", color="burlywood", weight=3]; 35.52/17.91 3982[label="xuu213/True",fontsize=10,color="white",style="solid",shape="box"];2324 -> 3982[label="",style="solid", color="burlywood", weight=9]; 35.52/17.91 3982 -> 2346[label="",style="solid", color="burlywood", weight=3]; 35.52/17.91 1980[label="compare1 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) xuu190",fontsize=16,color="burlywood",shape="triangle"];3983[label="xuu190/False",fontsize=10,color="white",style="solid",shape="box"];1980 -> 3983[label="",style="solid", color="burlywood", weight=9]; 35.52/17.91 3983 -> 2347[label="",style="solid", color="burlywood", weight=3]; 35.52/17.91 3984[label="xuu190/True",fontsize=10,color="white",style="solid",shape="box"];1980 -> 3984[label="",style="solid", color="burlywood", weight=9]; 35.52/17.91 3984 -> 2348[label="",style="solid", color="burlywood", weight=3]; 35.52/17.91 1981 -> 1980[label="",style="dashed", color="red", weight=0]; 35.52/17.91 1981[label="compare1 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) True",fontsize=16,color="magenta"];1981 -> 2349[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 1982[label="xuu87",fontsize=16,color="green",shape="box"];1983[label="xuu88",fontsize=16,color="green",shape="box"];1984[label="xuu87",fontsize=16,color="green",shape="box"];1985[label="xuu88",fontsize=16,color="green",shape="box"];1986[label="xuu87",fontsize=16,color="green",shape="box"];1987[label="xuu88",fontsize=16,color="green",shape="box"];1988[label="xuu87",fontsize=16,color="green",shape="box"];1989[label="xuu88",fontsize=16,color="green",shape="box"];1990[label="xuu87",fontsize=16,color="green",shape="box"];1991[label="xuu88",fontsize=16,color="green",shape="box"];1992[label="xuu87",fontsize=16,color="green",shape="box"];1993[label="xuu88",fontsize=16,color="green",shape="box"];1994[label="xuu87",fontsize=16,color="green",shape="box"];1995[label="xuu88",fontsize=16,color="green",shape="box"];1996[label="xuu87",fontsize=16,color="green",shape="box"];1997[label="xuu88",fontsize=16,color="green",shape="box"];1998[label="xuu87",fontsize=16,color="green",shape="box"];1999[label="xuu88",fontsize=16,color="green",shape="box"];2000[label="xuu87",fontsize=16,color="green",shape="box"];2001[label="xuu88",fontsize=16,color="green",shape="box"];2002[label="xuu87",fontsize=16,color="green",shape="box"];2003[label="xuu88",fontsize=16,color="green",shape="box"];2004[label="xuu87",fontsize=16,color="green",shape="box"];2005[label="xuu88",fontsize=16,color="green",shape="box"];2006[label="xuu87",fontsize=16,color="green",shape="box"];2007[label="xuu88",fontsize=16,color="green",shape="box"];2008[label="xuu87",fontsize=16,color="green",shape="box"];2009[label="xuu88",fontsize=16,color="green",shape="box"];2010[label="compare0 (Just xuu168) (Just xuu169) True",fontsize=16,color="black",shape="box"];2010 -> 2350[label="",style="solid", color="black", weight=3]; 35.52/17.91 2011[label="xuu124",fontsize=16,color="green",shape="box"];2012[label="xuu126",fontsize=16,color="green",shape="box"];2013[label="xuu124",fontsize=16,color="green",shape="box"];2014[label="xuu126",fontsize=16,color="green",shape="box"];2015[label="xuu124",fontsize=16,color="green",shape="box"];2016[label="xuu126",fontsize=16,color="green",shape="box"];2017[label="xuu124",fontsize=16,color="green",shape="box"];2018[label="xuu126",fontsize=16,color="green",shape="box"];2019[label="xuu124",fontsize=16,color="green",shape="box"];2020[label="xuu126",fontsize=16,color="green",shape="box"];2021[label="xuu124",fontsize=16,color="green",shape="box"];2022[label="xuu126",fontsize=16,color="green",shape="box"];2023[label="xuu124",fontsize=16,color="green",shape="box"];2024[label="xuu126",fontsize=16,color="green",shape="box"];2025[label="xuu124",fontsize=16,color="green",shape="box"];2026[label="xuu126",fontsize=16,color="green",shape="box"];2027[label="xuu124",fontsize=16,color="green",shape="box"];2028[label="xuu126",fontsize=16,color="green",shape="box"];2029[label="xuu124",fontsize=16,color="green",shape="box"];2030[label="xuu126",fontsize=16,color="green",shape="box"];2031[label="xuu124",fontsize=16,color="green",shape="box"];2032[label="xuu126",fontsize=16,color="green",shape="box"];2033[label="xuu124",fontsize=16,color="green",shape="box"];2034[label="xuu126",fontsize=16,color="green",shape="box"];2035[label="xuu124",fontsize=16,color="green",shape="box"];2036[label="xuu126",fontsize=16,color="green",shape="box"];2037[label="xuu124",fontsize=16,color="green",shape="box"];2038[label="xuu126",fontsize=16,color="green",shape="box"];2039 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2039[label="xuu124 == xuu126",fontsize=16,color="magenta"];2039 -> 2351[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2039 -> 2352[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2040 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2040[label="xuu124 == xuu126",fontsize=16,color="magenta"];2040 -> 2353[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2040 -> 2354[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2041 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2041[label="xuu124 == xuu126",fontsize=16,color="magenta"];2041 -> 2355[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2041 -> 2356[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2042 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2042[label="xuu124 == xuu126",fontsize=16,color="magenta"];2042 -> 2357[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2042 -> 2358[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2043 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2043[label="xuu124 == xuu126",fontsize=16,color="magenta"];2043 -> 2359[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2043 -> 2360[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2044 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2044[label="xuu124 == xuu126",fontsize=16,color="magenta"];2044 -> 2361[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2044 -> 2362[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2045 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2045[label="xuu124 == xuu126",fontsize=16,color="magenta"];2045 -> 2363[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2045 -> 2364[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2046 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2046[label="xuu124 == xuu126",fontsize=16,color="magenta"];2046 -> 2365[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2046 -> 2366[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2047 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2047[label="xuu124 == xuu126",fontsize=16,color="magenta"];2047 -> 2367[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2047 -> 2368[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2048 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2048[label="xuu124 == xuu126",fontsize=16,color="magenta"];2048 -> 2369[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2048 -> 2370[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2049 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2049[label="xuu124 == xuu126",fontsize=16,color="magenta"];2049 -> 2371[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2049 -> 2372[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2050 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2050[label="xuu124 == xuu126",fontsize=16,color="magenta"];2050 -> 2373[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2050 -> 2374[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2051 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2051[label="xuu124 == xuu126",fontsize=16,color="magenta"];2051 -> 2375[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2051 -> 2376[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2052 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2052[label="xuu124 == xuu126",fontsize=16,color="magenta"];2052 -> 2377[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2052 -> 2378[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2053 -> 1580[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2053[label="xuu125 <= xuu127",fontsize=16,color="magenta"];2053 -> 2379[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2053 -> 2380[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2054 -> 1581[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2054[label="xuu125 <= xuu127",fontsize=16,color="magenta"];2054 -> 2381[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2054 -> 2382[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2055 -> 1582[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2055[label="xuu125 <= xuu127",fontsize=16,color="magenta"];2055 -> 2383[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2055 -> 2384[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2056 -> 1583[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2056[label="xuu125 <= xuu127",fontsize=16,color="magenta"];2056 -> 2385[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2056 -> 2386[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2057 -> 1584[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2057[label="xuu125 <= xuu127",fontsize=16,color="magenta"];2057 -> 2387[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2057 -> 2388[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2058 -> 1585[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2058[label="xuu125 <= xuu127",fontsize=16,color="magenta"];2058 -> 2389[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2058 -> 2390[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2059 -> 1586[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2059[label="xuu125 <= xuu127",fontsize=16,color="magenta"];2059 -> 2391[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2059 -> 2392[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2060 -> 1587[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2060[label="xuu125 <= xuu127",fontsize=16,color="magenta"];2060 -> 2393[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2060 -> 2394[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2061 -> 1588[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2061[label="xuu125 <= xuu127",fontsize=16,color="magenta"];2061 -> 2395[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2061 -> 2396[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2062 -> 1589[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2062[label="xuu125 <= xuu127",fontsize=16,color="magenta"];2062 -> 2397[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2062 -> 2398[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2063 -> 1590[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2063[label="xuu125 <= xuu127",fontsize=16,color="magenta"];2063 -> 2399[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2063 -> 2400[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2064 -> 1591[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2064[label="xuu125 <= xuu127",fontsize=16,color="magenta"];2064 -> 2401[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2064 -> 2402[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2065 -> 1592[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2065[label="xuu125 <= xuu127",fontsize=16,color="magenta"];2065 -> 2403[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2065 -> 2404[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2066 -> 1593[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2066[label="xuu125 <= xuu127",fontsize=16,color="magenta"];2066 -> 2405[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2066 -> 2406[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2067[label="compare1 (xuu198,xuu199) (xuu200,xuu201) xuu203",fontsize=16,color="burlywood",shape="triangle"];3985[label="xuu203/False",fontsize=10,color="white",style="solid",shape="box"];2067 -> 3985[label="",style="solid", color="burlywood", weight=9]; 35.52/17.91 3985 -> 2407[label="",style="solid", color="burlywood", weight=3]; 35.52/17.91 3986[label="xuu203/True",fontsize=10,color="white",style="solid",shape="box"];2067 -> 3986[label="",style="solid", color="burlywood", weight=9]; 35.52/17.91 3986 -> 2408[label="",style="solid", color="burlywood", weight=3]; 35.52/17.91 2068 -> 2067[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2068[label="compare1 (xuu198,xuu199) (xuu200,xuu201) True",fontsize=16,color="magenta"];2068 -> 2409[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2069[label="primMulNat (Succ xuu31100000) (Succ xuu60100)",fontsize=16,color="black",shape="box"];2069 -> 2410[label="",style="solid", color="black", weight=3]; 35.52/17.91 2070[label="primMulNat (Succ xuu31100000) Zero",fontsize=16,color="black",shape="box"];2070 -> 2411[label="",style="solid", color="black", weight=3]; 35.52/17.91 2071[label="primMulNat Zero (Succ xuu60100)",fontsize=16,color="black",shape="box"];2071 -> 2412[label="",style="solid", color="black", weight=3]; 35.52/17.91 2072[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2072 -> 2413[label="",style="solid", color="black", weight=3]; 35.52/17.91 2073[label="primPlusNat (Succ xuu42200) (Succ xuu13700)",fontsize=16,color="black",shape="box"];2073 -> 2414[label="",style="solid", color="black", weight=3]; 35.52/17.91 2074[label="primPlusNat (Succ xuu42200) Zero",fontsize=16,color="black",shape="box"];2074 -> 2415[label="",style="solid", color="black", weight=3]; 35.52/17.91 2075[label="primPlusNat Zero (Succ xuu13700)",fontsize=16,color="black",shape="box"];2075 -> 2416[label="",style="solid", color="black", weight=3]; 35.52/17.91 2076[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2076 -> 2417[label="",style="solid", color="black", weight=3]; 35.52/17.91 2077 -> 1163[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2077[label="primMinusNat xuu42200 xuu13700",fontsize=16,color="magenta"];2077 -> 2418[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2077 -> 2419[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2078[label="Pos (Succ xuu42200)",fontsize=16,color="green",shape="box"];2079[label="Neg (Succ xuu13700)",fontsize=16,color="green",shape="box"];2080[label="Pos Zero",fontsize=16,color="green",shape="box"];2081[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 True",fontsize=16,color="black",shape="box"];2081 -> 2420[label="",style="solid", color="black", weight=3]; 35.52/17.91 2082[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu21 xuu17 xuu18 FiniteMap.EmptyFM FiniteMap.EmptyFM xuu21 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2082 -> 2421[label="",style="solid", color="black", weight=3]; 35.52/17.91 2083[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424)",fontsize=16,color="black",shape="box"];2083 -> 2422[label="",style="solid", color="black", weight=3]; 35.52/17.91 2085 -> 55[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2085[label="FiniteMap.sizeFM xuu213 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu214",fontsize=16,color="magenta"];2085 -> 2423[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2085 -> 2424[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2084[label="FiniteMap.mkBalBranch6MkBalBranch01 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 xuu205",fontsize=16,color="burlywood",shape="triangle"];3987[label="xuu205/False",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3987[label="",style="solid", color="burlywood", weight=9]; 35.52/17.91 3987 -> 2425[label="",style="solid", color="burlywood", weight=3]; 35.52/17.91 3988[label="xuu205/True",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3988[label="",style="solid", color="burlywood", weight=9]; 35.52/17.91 3988 -> 2426[label="",style="solid", color="burlywood", weight=3]; 35.52/17.91 2086 -> 951[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2086[label="FiniteMap.sizeFM xuu21",fontsize=16,color="magenta"];2087 -> 1091[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2087[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu21 xuu17 xuu42)",fontsize=16,color="magenta"];2087 -> 2427[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2087 -> 2428[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2088[label="primEqNat (Succ xuu31100000) (Succ xuu60000)",fontsize=16,color="black",shape="box"];2088 -> 2429[label="",style="solid", color="black", weight=3]; 35.52/17.91 2089[label="primEqNat (Succ xuu31100000) Zero",fontsize=16,color="black",shape="box"];2089 -> 2430[label="",style="solid", color="black", weight=3]; 35.52/17.91 2090[label="primEqNat Zero (Succ xuu60000)",fontsize=16,color="black",shape="box"];2090 -> 2431[label="",style="solid", color="black", weight=3]; 35.52/17.91 2091[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2091 -> 2432[label="",style="solid", color="black", weight=3]; 35.52/17.91 2092[label="xuu3110000",fontsize=16,color="green",shape="box"];2093[label="xuu6000",fontsize=16,color="green",shape="box"];2094[label="xuu3110000",fontsize=16,color="green",shape="box"];2095[label="xuu6000",fontsize=16,color="green",shape="box"];2096[label="xuu3110000",fontsize=16,color="green",shape="box"];2097[label="xuu6000",fontsize=16,color="green",shape="box"];2098[label="xuu3110000",fontsize=16,color="green",shape="box"];2099[label="xuu6000",fontsize=16,color="green",shape="box"];2100[label="xuu3110000",fontsize=16,color="green",shape="box"];2101[label="xuu6000",fontsize=16,color="green",shape="box"];2102[label="xuu3110000",fontsize=16,color="green",shape="box"];2103[label="xuu6000",fontsize=16,color="green",shape="box"];2104[label="xuu3110000",fontsize=16,color="green",shape="box"];2105[label="xuu6000",fontsize=16,color="green",shape="box"];2106[label="xuu3110000",fontsize=16,color="green",shape="box"];2107[label="xuu6000",fontsize=16,color="green",shape="box"];2108[label="xuu3110000",fontsize=16,color="green",shape="box"];2109[label="xuu6000",fontsize=16,color="green",shape="box"];2110[label="xuu3110000",fontsize=16,color="green",shape="box"];2111[label="xuu6000",fontsize=16,color="green",shape="box"];2112[label="xuu3110000",fontsize=16,color="green",shape="box"];2113[label="xuu6000",fontsize=16,color="green",shape="box"];2114[label="xuu3110000",fontsize=16,color="green",shape="box"];2115[label="xuu6000",fontsize=16,color="green",shape="box"];2116[label="xuu3110000",fontsize=16,color="green",shape="box"];2117[label="xuu6000",fontsize=16,color="green",shape="box"];2118[label="xuu3110000",fontsize=16,color="green",shape="box"];2119[label="xuu6000",fontsize=16,color="green",shape="box"];2120[label="xuu3110001",fontsize=16,color="green",shape="box"];2121[label="xuu6001",fontsize=16,color="green",shape="box"];2122[label="xuu3110001",fontsize=16,color="green",shape="box"];2123[label="xuu6001",fontsize=16,color="green",shape="box"];2124[label="xuu3110001",fontsize=16,color="green",shape="box"];2125[label="xuu6001",fontsize=16,color="green",shape="box"];2126[label="xuu3110001",fontsize=16,color="green",shape="box"];2127[label="xuu6001",fontsize=16,color="green",shape="box"];2128[label="xuu3110001",fontsize=16,color="green",shape="box"];2129[label="xuu6001",fontsize=16,color="green",shape="box"];2130[label="xuu3110001",fontsize=16,color="green",shape="box"];2131[label="xuu6001",fontsize=16,color="green",shape="box"];2132[label="xuu3110001",fontsize=16,color="green",shape="box"];2133[label="xuu6001",fontsize=16,color="green",shape="box"];2134[label="xuu3110001",fontsize=16,color="green",shape="box"];2135[label="xuu6001",fontsize=16,color="green",shape="box"];2136[label="xuu3110001",fontsize=16,color="green",shape="box"];2137[label="xuu6001",fontsize=16,color="green",shape="box"];2138[label="xuu3110001",fontsize=16,color="green",shape="box"];2139[label="xuu6001",fontsize=16,color="green",shape="box"];2140[label="xuu3110001",fontsize=16,color="green",shape="box"];2141[label="xuu6001",fontsize=16,color="green",shape="box"];2142[label="xuu3110001",fontsize=16,color="green",shape="box"];2143[label="xuu6001",fontsize=16,color="green",shape="box"];2144[label="xuu3110001",fontsize=16,color="green",shape="box"];2145[label="xuu6001",fontsize=16,color="green",shape="box"];2146[label="xuu3110001",fontsize=16,color="green",shape="box"];2147[label="xuu6001",fontsize=16,color="green",shape="box"];2148[label="xuu3110000",fontsize=16,color="green",shape="box"];2149[label="xuu6000",fontsize=16,color="green",shape="box"];2150[label="xuu3110000",fontsize=16,color="green",shape="box"];2151[label="xuu6000",fontsize=16,color="green",shape="box"];2152[label="xuu3110000",fontsize=16,color="green",shape="box"];2153[label="xuu6000",fontsize=16,color="green",shape="box"];2154[label="xuu3110000",fontsize=16,color="green",shape="box"];2155[label="xuu6000",fontsize=16,color="green",shape="box"];2156[label="xuu3110000",fontsize=16,color="green",shape="box"];2157[label="xuu6000",fontsize=16,color="green",shape="box"];2158[label="xuu3110000",fontsize=16,color="green",shape="box"];2159[label="xuu6000",fontsize=16,color="green",shape="box"];2160[label="xuu3110000",fontsize=16,color="green",shape="box"];2161[label="xuu6000",fontsize=16,color="green",shape="box"];2162[label="xuu3110000",fontsize=16,color="green",shape="box"];2163[label="xuu6000",fontsize=16,color="green",shape="box"];2164[label="xuu3110000",fontsize=16,color="green",shape="box"];2165[label="xuu6000",fontsize=16,color="green",shape="box"];2166[label="xuu3110000",fontsize=16,color="green",shape="box"];2167[label="xuu6000",fontsize=16,color="green",shape="box"];2168[label="xuu3110000",fontsize=16,color="green",shape="box"];2169[label="xuu6000",fontsize=16,color="green",shape="box"];2170[label="xuu3110000",fontsize=16,color="green",shape="box"];2171[label="xuu6000",fontsize=16,color="green",shape="box"];2172[label="xuu3110000",fontsize=16,color="green",shape="box"];2173[label="xuu6000",fontsize=16,color="green",shape="box"];2174[label="xuu3110000",fontsize=16,color="green",shape="box"];2175[label="xuu6000",fontsize=16,color="green",shape="box"];2176 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2176[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2176 -> 2433[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2176 -> 2434[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2177 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2177[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2177 -> 2435[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2177 -> 2436[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2178 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2178[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2178 -> 2437[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2178 -> 2438[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2179 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2179[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2179 -> 2439[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2179 -> 2440[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2180 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2180[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2180 -> 2441[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2180 -> 2442[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2181 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2181[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2181 -> 2443[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2181 -> 2444[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2182 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2182[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2182 -> 2445[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2182 -> 2446[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2183 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2183[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2183 -> 2447[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2183 -> 2448[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2184 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2184[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2184 -> 2449[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2184 -> 2450[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2185 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2185[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2185 -> 2451[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2185 -> 2452[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2186 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2186[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2186 -> 2453[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2186 -> 2454[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2187 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2187[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2187 -> 2455[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2187 -> 2456[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2188 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2188[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2188 -> 2457[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2188 -> 2458[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2189 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2189[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2189 -> 2459[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2189 -> 2460[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2190 -> 580[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2190[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2190 -> 2461[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2190 -> 2462[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2191 -> 581[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2191[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2191 -> 2463[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2191 -> 2464[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2192 -> 582[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2192[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2192 -> 2465[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2192 -> 2466[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2193 -> 583[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2193[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2193 -> 2467[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2193 -> 2468[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2194 -> 584[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2194[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2194 -> 2469[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2194 -> 2470[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2195 -> 585[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2195[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2195 -> 2471[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2195 -> 2472[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2196 -> 586[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2196[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2196 -> 2473[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2196 -> 2474[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2197 -> 587[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2197[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2197 -> 2475[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2197 -> 2476[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2198 -> 588[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2198[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2198 -> 2477[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2198 -> 2478[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2199 -> 589[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2199[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2199 -> 2479[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2199 -> 2480[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2200 -> 590[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2200[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2200 -> 2481[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2200 -> 2482[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2201 -> 591[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2201[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2201 -> 2483[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2201 -> 2484[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2202 -> 592[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2202[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2202 -> 2485[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2202 -> 2486[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2203 -> 593[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2203[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2203 -> 2487[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2203 -> 2488[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2204[label="xuu3110000",fontsize=16,color="green",shape="box"];2205[label="xuu6001",fontsize=16,color="green",shape="box"];2206[label="xuu3110001",fontsize=16,color="green",shape="box"];2207[label="xuu6000",fontsize=16,color="green",shape="box"];2208 -> 1525[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2208[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2208 -> 2489[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2208 -> 2490[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2209[label="False",fontsize=16,color="green",shape="box"];2210[label="False",fontsize=16,color="green",shape="box"];2211[label="True",fontsize=16,color="green",shape="box"];2212[label="False",fontsize=16,color="green",shape="box"];2213[label="True",fontsize=16,color="green",shape="box"];2214 -> 1525[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2214[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2214 -> 2491[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2214 -> 2492[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2215[label="False",fontsize=16,color="green",shape="box"];2216[label="False",fontsize=16,color="green",shape="box"];2217[label="True",fontsize=16,color="green",shape="box"];2218[label="False",fontsize=16,color="green",shape="box"];2219[label="True",fontsize=16,color="green",shape="box"];2220[label="xuu3110000",fontsize=16,color="green",shape="box"];2221[label="xuu6001",fontsize=16,color="green",shape="box"];2222[label="xuu3110001",fontsize=16,color="green",shape="box"];2223[label="xuu6000",fontsize=16,color="green",shape="box"];2224[label="xuu3110000",fontsize=16,color="green",shape="box"];2225[label="xuu6000",fontsize=16,color="green",shape="box"];2226[label="xuu3110000",fontsize=16,color="green",shape="box"];2227[label="xuu6000",fontsize=16,color="green",shape="box"];2228[label="xuu3110001",fontsize=16,color="green",shape="box"];2229[label="xuu6001",fontsize=16,color="green",shape="box"];2230[label="xuu3110001",fontsize=16,color="green",shape="box"];2231[label="xuu6001",fontsize=16,color="green",shape="box"];2232[label="xuu3110000",fontsize=16,color="green",shape="box"];2233[label="xuu6000",fontsize=16,color="green",shape="box"];2234[label="xuu3110000",fontsize=16,color="green",shape="box"];2235[label="xuu6000",fontsize=16,color="green",shape="box"];2236[label="xuu3110000",fontsize=16,color="green",shape="box"];2237[label="xuu6000",fontsize=16,color="green",shape="box"];2238[label="xuu3110000",fontsize=16,color="green",shape="box"];2239[label="xuu6000",fontsize=16,color="green",shape="box"];2240[label="xuu3110000",fontsize=16,color="green",shape="box"];2241[label="xuu6000",fontsize=16,color="green",shape="box"];2242[label="xuu3110000",fontsize=16,color="green",shape="box"];2243[label="xuu6000",fontsize=16,color="green",shape="box"];2244[label="xuu3110000",fontsize=16,color="green",shape="box"];2245[label="xuu6000",fontsize=16,color="green",shape="box"];2246[label="xuu3110000",fontsize=16,color="green",shape="box"];2247[label="xuu6000",fontsize=16,color="green",shape="box"];2248[label="xuu3110000",fontsize=16,color="green",shape="box"];2249[label="xuu6000",fontsize=16,color="green",shape="box"];2250[label="xuu3110000",fontsize=16,color="green",shape="box"];2251[label="xuu6000",fontsize=16,color="green",shape="box"];2252[label="xuu3110000",fontsize=16,color="green",shape="box"];2253[label="xuu6000",fontsize=16,color="green",shape="box"];2254[label="xuu3110000",fontsize=16,color="green",shape="box"];2255[label="xuu6000",fontsize=16,color="green",shape="box"];2256[label="xuu3110000",fontsize=16,color="green",shape="box"];2257[label="xuu6000",fontsize=16,color="green",shape="box"];2258[label="xuu3110000",fontsize=16,color="green",shape="box"];2259[label="xuu6000",fontsize=16,color="green",shape="box"];2260[label="Left xuu530 <= Left xuu540",fontsize=16,color="black",shape="box"];2260 -> 2493[label="",style="solid", color="black", weight=3]; 35.52/17.91 2261[label="Left xuu530 <= Right xuu540",fontsize=16,color="black",shape="box"];2261 -> 2494[label="",style="solid", color="black", weight=3]; 35.52/17.91 2262[label="Right xuu530 <= Left xuu540",fontsize=16,color="black",shape="box"];2262 -> 2495[label="",style="solid", color="black", weight=3]; 35.52/17.91 2263[label="Right xuu530 <= Right xuu540",fontsize=16,color="black",shape="box"];2263 -> 2496[label="",style="solid", color="black", weight=3]; 35.52/17.91 2265 -> 233[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2265[label="compare xuu53 xuu54",fontsize=16,color="magenta"];2265 -> 2497[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2265 -> 2498[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2264[label="xuu209 /= GT",fontsize=16,color="black",shape="triangle"];2264 -> 2499[label="",style="solid", color="black", weight=3]; 35.52/17.91 2273[label="(xuu530,xuu531,xuu532) <= (xuu540,xuu541,xuu542)",fontsize=16,color="black",shape="box"];2273 -> 2500[label="",style="solid", color="black", weight=3]; 35.52/17.91 2266 -> 235[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2266[label="compare xuu53 xuu54",fontsize=16,color="magenta"];2266 -> 2501[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2266 -> 2502[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2267 -> 236[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2267[label="compare xuu53 xuu54",fontsize=16,color="magenta"];2267 -> 2503[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2267 -> 2504[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2268 -> 237[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2268[label="compare xuu53 xuu54",fontsize=16,color="magenta"];2268 -> 2505[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2268 -> 2506[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2274[label="LT <= LT",fontsize=16,color="black",shape="box"];2274 -> 2507[label="",style="solid", color="black", weight=3]; 35.52/17.91 2275[label="LT <= EQ",fontsize=16,color="black",shape="box"];2275 -> 2508[label="",style="solid", color="black", weight=3]; 35.52/17.91 2276[label="LT <= GT",fontsize=16,color="black",shape="box"];2276 -> 2509[label="",style="solid", color="black", weight=3]; 35.52/17.91 2277[label="EQ <= LT",fontsize=16,color="black",shape="box"];2277 -> 2510[label="",style="solid", color="black", weight=3]; 35.52/17.91 2278[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2278 -> 2511[label="",style="solid", color="black", weight=3]; 35.52/17.91 2279[label="EQ <= GT",fontsize=16,color="black",shape="box"];2279 -> 2512[label="",style="solid", color="black", weight=3]; 35.52/17.91 2280[label="GT <= LT",fontsize=16,color="black",shape="box"];2280 -> 2513[label="",style="solid", color="black", weight=3]; 35.52/17.91 2281[label="GT <= EQ",fontsize=16,color="black",shape="box"];2281 -> 2514[label="",style="solid", color="black", weight=3]; 35.52/17.91 2282[label="GT <= GT",fontsize=16,color="black",shape="box"];2282 -> 2515[label="",style="solid", color="black", weight=3]; 35.52/17.91 2269 -> 239[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2269[label="compare xuu53 xuu54",fontsize=16,color="magenta"];2269 -> 2516[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2269 -> 2517[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2283[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2283 -> 2518[label="",style="solid", color="black", weight=3]; 35.52/17.91 2284[label="Nothing <= Just xuu540",fontsize=16,color="black",shape="box"];2284 -> 2519[label="",style="solid", color="black", weight=3]; 35.52/17.91 2285[label="Just xuu530 <= Nothing",fontsize=16,color="black",shape="box"];2285 -> 2520[label="",style="solid", color="black", weight=3]; 35.52/17.91 2286[label="Just xuu530 <= Just xuu540",fontsize=16,color="black",shape="box"];2286 -> 2521[label="",style="solid", color="black", weight=3]; 35.52/17.91 2287[label="(xuu530,xuu531) <= (xuu540,xuu541)",fontsize=16,color="black",shape="box"];2287 -> 2522[label="",style="solid", color="black", weight=3]; 35.52/17.91 2270 -> 242[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2270[label="compare xuu53 xuu54",fontsize=16,color="magenta"];2270 -> 2523[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2270 -> 2524[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2288[label="False <= False",fontsize=16,color="black",shape="box"];2288 -> 2525[label="",style="solid", color="black", weight=3]; 35.52/17.91 2289[label="False <= True",fontsize=16,color="black",shape="box"];2289 -> 2526[label="",style="solid", color="black", weight=3]; 35.52/17.91 2290[label="True <= False",fontsize=16,color="black",shape="box"];2290 -> 2527[label="",style="solid", color="black", weight=3]; 35.52/17.91 2291[label="True <= True",fontsize=16,color="black",shape="box"];2291 -> 2528[label="",style="solid", color="black", weight=3]; 35.52/17.91 2271 -> 244[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2271[label="compare xuu53 xuu54",fontsize=16,color="magenta"];2271 -> 2529[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2271 -> 2530[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2272 -> 245[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2272[label="compare xuu53 xuu54",fontsize=16,color="magenta"];2272 -> 2531[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2272 -> 2532[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2292[label="GT",fontsize=16,color="green",shape="box"];2293[label="GT",fontsize=16,color="green",shape="box"];2294[label="xuu111",fontsize=16,color="green",shape="box"];2295[label="xuu114",fontsize=16,color="green",shape="box"];2296[label="xuu111",fontsize=16,color="green",shape="box"];2297[label="xuu114",fontsize=16,color="green",shape="box"];2298[label="xuu111",fontsize=16,color="green",shape="box"];2299[label="xuu114",fontsize=16,color="green",shape="box"];2300[label="xuu111",fontsize=16,color="green",shape="box"];2301[label="xuu114",fontsize=16,color="green",shape="box"];2302[label="xuu111",fontsize=16,color="green",shape="box"];2303[label="xuu114",fontsize=16,color="green",shape="box"];2304[label="xuu111",fontsize=16,color="green",shape="box"];2305[label="xuu114",fontsize=16,color="green",shape="box"];2306[label="xuu111",fontsize=16,color="green",shape="box"];2307[label="xuu114",fontsize=16,color="green",shape="box"];2308[label="xuu111",fontsize=16,color="green",shape="box"];2309[label="xuu114",fontsize=16,color="green",shape="box"];2310[label="xuu111",fontsize=16,color="green",shape="box"];2311[label="xuu114",fontsize=16,color="green",shape="box"];2312[label="xuu111",fontsize=16,color="green",shape="box"];2313[label="xuu114",fontsize=16,color="green",shape="box"];2314[label="xuu111",fontsize=16,color="green",shape="box"];2315[label="xuu114",fontsize=16,color="green",shape="box"];2316[label="xuu111",fontsize=16,color="green",shape="box"];2317[label="xuu114",fontsize=16,color="green",shape="box"];2318[label="xuu111",fontsize=16,color="green",shape="box"];2319[label="xuu114",fontsize=16,color="green",shape="box"];2320[label="xuu111",fontsize=16,color="green",shape="box"];2321[label="xuu114",fontsize=16,color="green",shape="box"];2329 -> 54[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2329[label="xuu112 < xuu115",fontsize=16,color="magenta"];2329 -> 2533[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2329 -> 2534[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2330 -> 55[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2330[label="xuu112 < xuu115",fontsize=16,color="magenta"];2330 -> 2535[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2330 -> 2536[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2331 -> 56[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2331[label="xuu112 < xuu115",fontsize=16,color="magenta"];2331 -> 2537[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2331 -> 2538[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2332 -> 57[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2332[label="xuu112 < xuu115",fontsize=16,color="magenta"];2332 -> 2539[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2332 -> 2540[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2333 -> 58[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2333[label="xuu112 < xuu115",fontsize=16,color="magenta"];2333 -> 2541[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2333 -> 2542[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2334 -> 59[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2334[label="xuu112 < xuu115",fontsize=16,color="magenta"];2334 -> 2543[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2334 -> 2544[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2335 -> 60[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2335[label="xuu112 < xuu115",fontsize=16,color="magenta"];2335 -> 2545[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2335 -> 2546[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2336 -> 61[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2336[label="xuu112 < xuu115",fontsize=16,color="magenta"];2336 -> 2547[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2336 -> 2548[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2337 -> 62[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2337[label="xuu112 < xuu115",fontsize=16,color="magenta"];2337 -> 2549[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2337 -> 2550[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2338 -> 63[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2338[label="xuu112 < xuu115",fontsize=16,color="magenta"];2338 -> 2551[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2338 -> 2552[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2339 -> 64[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2339[label="xuu112 < xuu115",fontsize=16,color="magenta"];2339 -> 2553[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2339 -> 2554[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2340 -> 65[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2340[label="xuu112 < xuu115",fontsize=16,color="magenta"];2340 -> 2555[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2340 -> 2556[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2341 -> 66[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2341[label="xuu112 < xuu115",fontsize=16,color="magenta"];2341 -> 2557[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2341 -> 2558[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2342 -> 67[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2342[label="xuu112 < xuu115",fontsize=16,color="magenta"];2342 -> 2559[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2342 -> 2560[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2343[label="xuu112 == xuu115",fontsize=16,color="blue",shape="box"];3989[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2343 -> 3989[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3989 -> 2561[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3990[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2343 -> 3990[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3990 -> 2562[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3991[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2343 -> 3991[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3991 -> 2563[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3992[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2343 -> 3992[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3992 -> 2564[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3993[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2343 -> 3993[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3993 -> 2565[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3994[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2343 -> 3994[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3994 -> 2566[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3995[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2343 -> 3995[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3995 -> 2567[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3996[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2343 -> 3996[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3996 -> 2568[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3997[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2343 -> 3997[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3997 -> 2569[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3998[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2343 -> 3998[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3998 -> 2570[label="",style="solid", color="blue", weight=3]; 35.52/17.91 3999[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2343 -> 3999[label="",style="solid", color="blue", weight=9]; 35.52/17.91 3999 -> 2571[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4000[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2343 -> 4000[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4000 -> 2572[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4001[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2343 -> 4001[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4001 -> 2573[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4002[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2343 -> 4002[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4002 -> 2574[label="",style="solid", color="blue", weight=3]; 35.52/17.91 2344[label="xuu113 <= xuu116",fontsize=16,color="blue",shape="box"];4003[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2344 -> 4003[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4003 -> 2575[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4004[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2344 -> 4004[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4004 -> 2576[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4005[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2344 -> 4005[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4005 -> 2577[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4006[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2344 -> 4006[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4006 -> 2578[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4007[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2344 -> 4007[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4007 -> 2579[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4008[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2344 -> 4008[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4008 -> 2580[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4009[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2344 -> 4009[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4009 -> 2581[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4010[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2344 -> 4010[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4010 -> 2582[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4011[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2344 -> 4011[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4011 -> 2583[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4012[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2344 -> 4012[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4012 -> 2584[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4013[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2344 -> 4013[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4013 -> 2585[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4014[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2344 -> 4014[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4014 -> 2586[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4015[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2344 -> 4015[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4015 -> 2587[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4016[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2344 -> 4016[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4016 -> 2588[label="",style="solid", color="blue", weight=3]; 35.52/17.91 2345[label="False || xuu214",fontsize=16,color="black",shape="box"];2345 -> 2589[label="",style="solid", color="black", weight=3]; 35.52/17.91 2346[label="True || xuu214",fontsize=16,color="black",shape="box"];2346 -> 2590[label="",style="solid", color="black", weight=3]; 35.52/17.91 2347[label="compare1 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) False",fontsize=16,color="black",shape="box"];2347 -> 2591[label="",style="solid", color="black", weight=3]; 35.52/17.91 2348[label="compare1 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) True",fontsize=16,color="black",shape="box"];2348 -> 2592[label="",style="solid", color="black", weight=3]; 35.52/17.91 2349[label="True",fontsize=16,color="green",shape="box"];2350[label="GT",fontsize=16,color="green",shape="box"];2351[label="xuu124",fontsize=16,color="green",shape="box"];2352[label="xuu126",fontsize=16,color="green",shape="box"];2353[label="xuu124",fontsize=16,color="green",shape="box"];2354[label="xuu126",fontsize=16,color="green",shape="box"];2355[label="xuu124",fontsize=16,color="green",shape="box"];2356[label="xuu126",fontsize=16,color="green",shape="box"];2357[label="xuu124",fontsize=16,color="green",shape="box"];2358[label="xuu126",fontsize=16,color="green",shape="box"];2359[label="xuu124",fontsize=16,color="green",shape="box"];2360[label="xuu126",fontsize=16,color="green",shape="box"];2361[label="xuu124",fontsize=16,color="green",shape="box"];2362[label="xuu126",fontsize=16,color="green",shape="box"];2363[label="xuu124",fontsize=16,color="green",shape="box"];2364[label="xuu126",fontsize=16,color="green",shape="box"];2365[label="xuu124",fontsize=16,color="green",shape="box"];2366[label="xuu126",fontsize=16,color="green",shape="box"];2367[label="xuu124",fontsize=16,color="green",shape="box"];2368[label="xuu126",fontsize=16,color="green",shape="box"];2369[label="xuu124",fontsize=16,color="green",shape="box"];2370[label="xuu126",fontsize=16,color="green",shape="box"];2371[label="xuu124",fontsize=16,color="green",shape="box"];2372[label="xuu126",fontsize=16,color="green",shape="box"];2373[label="xuu124",fontsize=16,color="green",shape="box"];2374[label="xuu126",fontsize=16,color="green",shape="box"];2375[label="xuu124",fontsize=16,color="green",shape="box"];2376[label="xuu126",fontsize=16,color="green",shape="box"];2377[label="xuu124",fontsize=16,color="green",shape="box"];2378[label="xuu126",fontsize=16,color="green",shape="box"];2379[label="xuu125",fontsize=16,color="green",shape="box"];2380[label="xuu127",fontsize=16,color="green",shape="box"];2381[label="xuu125",fontsize=16,color="green",shape="box"];2382[label="xuu127",fontsize=16,color="green",shape="box"];2383[label="xuu125",fontsize=16,color="green",shape="box"];2384[label="xuu127",fontsize=16,color="green",shape="box"];2385[label="xuu125",fontsize=16,color="green",shape="box"];2386[label="xuu127",fontsize=16,color="green",shape="box"];2387[label="xuu125",fontsize=16,color="green",shape="box"];2388[label="xuu127",fontsize=16,color="green",shape="box"];2389[label="xuu125",fontsize=16,color="green",shape="box"];2390[label="xuu127",fontsize=16,color="green",shape="box"];2391[label="xuu125",fontsize=16,color="green",shape="box"];2392[label="xuu127",fontsize=16,color="green",shape="box"];2393[label="xuu125",fontsize=16,color="green",shape="box"];2394[label="xuu127",fontsize=16,color="green",shape="box"];2395[label="xuu125",fontsize=16,color="green",shape="box"];2396[label="xuu127",fontsize=16,color="green",shape="box"];2397[label="xuu125",fontsize=16,color="green",shape="box"];2398[label="xuu127",fontsize=16,color="green",shape="box"];2399[label="xuu125",fontsize=16,color="green",shape="box"];2400[label="xuu127",fontsize=16,color="green",shape="box"];2401[label="xuu125",fontsize=16,color="green",shape="box"];2402[label="xuu127",fontsize=16,color="green",shape="box"];2403[label="xuu125",fontsize=16,color="green",shape="box"];2404[label="xuu127",fontsize=16,color="green",shape="box"];2405[label="xuu125",fontsize=16,color="green",shape="box"];2406[label="xuu127",fontsize=16,color="green",shape="box"];2407[label="compare1 (xuu198,xuu199) (xuu200,xuu201) False",fontsize=16,color="black",shape="box"];2407 -> 2593[label="",style="solid", color="black", weight=3]; 35.52/17.91 2408[label="compare1 (xuu198,xuu199) (xuu200,xuu201) True",fontsize=16,color="black",shape="box"];2408 -> 2594[label="",style="solid", color="black", weight=3]; 35.52/17.91 2409[label="True",fontsize=16,color="green",shape="box"];2410 -> 1512[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2410[label="primPlusNat (primMulNat xuu31100000 (Succ xuu60100)) (Succ xuu60100)",fontsize=16,color="magenta"];2410 -> 2595[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2410 -> 2596[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2411[label="Zero",fontsize=16,color="green",shape="box"];2412[label="Zero",fontsize=16,color="green",shape="box"];2413[label="Zero",fontsize=16,color="green",shape="box"];2414[label="Succ (Succ (primPlusNat xuu42200 xuu13700))",fontsize=16,color="green",shape="box"];2414 -> 2597[label="",style="dashed", color="green", weight=3]; 35.52/17.91 2415[label="Succ xuu42200",fontsize=16,color="green",shape="box"];2416[label="Succ xuu13700",fontsize=16,color="green",shape="box"];2417[label="Zero",fontsize=16,color="green",shape="box"];2418[label="xuu42200",fontsize=16,color="green",shape="box"];2419[label="xuu13700",fontsize=16,color="green",shape="box"];2420[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) xuu17 xuu18 xuu42 xuu21",fontsize=16,color="black",shape="box"];2420 -> 2598[label="",style="solid", color="black", weight=3]; 35.52/17.91 2421[label="error []",fontsize=16,color="red",shape="box"];2422[label="FiniteMap.mkBalBranch6MkBalBranch12 xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424)",fontsize=16,color="black",shape="box"];2422 -> 2599[label="",style="solid", color="black", weight=3]; 35.52/17.91 2423 -> 951[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2423[label="FiniteMap.sizeFM xuu213",fontsize=16,color="magenta"];2423 -> 2600[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2424 -> 488[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2424[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu214",fontsize=16,color="magenta"];2424 -> 2601[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2424 -> 2602[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2425[label="FiniteMap.mkBalBranch6MkBalBranch01 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 False",fontsize=16,color="black",shape="box"];2425 -> 2603[label="",style="solid", color="black", weight=3]; 35.52/17.91 2426[label="FiniteMap.mkBalBranch6MkBalBranch01 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 True",fontsize=16,color="black",shape="box"];2426 -> 2604[label="",style="solid", color="black", weight=3]; 35.52/17.91 2427[label="FiniteMap.mkBranchLeft_size xuu21 xuu17 xuu42",fontsize=16,color="black",shape="box"];2427 -> 2605[label="",style="solid", color="black", weight=3]; 35.52/17.91 2428[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];2429 -> 1525[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2429[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2429 -> 2606[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2429 -> 2607[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2430[label="False",fontsize=16,color="green",shape="box"];2431[label="False",fontsize=16,color="green",shape="box"];2432[label="True",fontsize=16,color="green",shape="box"];2433[label="xuu3110001",fontsize=16,color="green",shape="box"];2434[label="xuu6001",fontsize=16,color="green",shape="box"];2435[label="xuu3110001",fontsize=16,color="green",shape="box"];2436[label="xuu6001",fontsize=16,color="green",shape="box"];2437[label="xuu3110001",fontsize=16,color="green",shape="box"];2438[label="xuu6001",fontsize=16,color="green",shape="box"];2439[label="xuu3110001",fontsize=16,color="green",shape="box"];2440[label="xuu6001",fontsize=16,color="green",shape="box"];2441[label="xuu3110001",fontsize=16,color="green",shape="box"];2442[label="xuu6001",fontsize=16,color="green",shape="box"];2443[label="xuu3110001",fontsize=16,color="green",shape="box"];2444[label="xuu6001",fontsize=16,color="green",shape="box"];2445[label="xuu3110001",fontsize=16,color="green",shape="box"];2446[label="xuu6001",fontsize=16,color="green",shape="box"];2447[label="xuu3110001",fontsize=16,color="green",shape="box"];2448[label="xuu6001",fontsize=16,color="green",shape="box"];2449[label="xuu3110001",fontsize=16,color="green",shape="box"];2450[label="xuu6001",fontsize=16,color="green",shape="box"];2451[label="xuu3110001",fontsize=16,color="green",shape="box"];2452[label="xuu6001",fontsize=16,color="green",shape="box"];2453[label="xuu3110001",fontsize=16,color="green",shape="box"];2454[label="xuu6001",fontsize=16,color="green",shape="box"];2455[label="xuu3110001",fontsize=16,color="green",shape="box"];2456[label="xuu6001",fontsize=16,color="green",shape="box"];2457[label="xuu3110001",fontsize=16,color="green",shape="box"];2458[label="xuu6001",fontsize=16,color="green",shape="box"];2459[label="xuu3110001",fontsize=16,color="green",shape="box"];2460[label="xuu6001",fontsize=16,color="green",shape="box"];2461[label="xuu3110002",fontsize=16,color="green",shape="box"];2462[label="xuu6002",fontsize=16,color="green",shape="box"];2463[label="xuu3110002",fontsize=16,color="green",shape="box"];2464[label="xuu6002",fontsize=16,color="green",shape="box"];2465[label="xuu3110002",fontsize=16,color="green",shape="box"];2466[label="xuu6002",fontsize=16,color="green",shape="box"];2467[label="xuu3110002",fontsize=16,color="green",shape="box"];2468[label="xuu6002",fontsize=16,color="green",shape="box"];2469[label="xuu3110002",fontsize=16,color="green",shape="box"];2470[label="xuu6002",fontsize=16,color="green",shape="box"];2471[label="xuu3110002",fontsize=16,color="green",shape="box"];2472[label="xuu6002",fontsize=16,color="green",shape="box"];2473[label="xuu3110002",fontsize=16,color="green",shape="box"];2474[label="xuu6002",fontsize=16,color="green",shape="box"];2475[label="xuu3110002",fontsize=16,color="green",shape="box"];2476[label="xuu6002",fontsize=16,color="green",shape="box"];2477[label="xuu3110002",fontsize=16,color="green",shape="box"];2478[label="xuu6002",fontsize=16,color="green",shape="box"];2479[label="xuu3110002",fontsize=16,color="green",shape="box"];2480[label="xuu6002",fontsize=16,color="green",shape="box"];2481[label="xuu3110002",fontsize=16,color="green",shape="box"];2482[label="xuu6002",fontsize=16,color="green",shape="box"];2483[label="xuu3110002",fontsize=16,color="green",shape="box"];2484[label="xuu6002",fontsize=16,color="green",shape="box"];2485[label="xuu3110002",fontsize=16,color="green",shape="box"];2486[label="xuu6002",fontsize=16,color="green",shape="box"];2487[label="xuu3110002",fontsize=16,color="green",shape="box"];2488[label="xuu6002",fontsize=16,color="green",shape="box"];2489[label="xuu31100000",fontsize=16,color="green",shape="box"];2490[label="xuu60000",fontsize=16,color="green",shape="box"];2491[label="xuu31100000",fontsize=16,color="green",shape="box"];2492[label="xuu60000",fontsize=16,color="green",shape="box"];2493[label="xuu530 <= xuu540",fontsize=16,color="blue",shape="box"];4017[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 4017[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4017 -> 2608[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4018[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 4018[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4018 -> 2609[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4019[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 4019[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4019 -> 2610[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4020[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 4020[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4020 -> 2611[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4021[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 4021[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4021 -> 2612[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4022[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 4022[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4022 -> 2613[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4023[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 4023[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4023 -> 2614[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4024[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 4024[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4024 -> 2615[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4025[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 4025[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4025 -> 2616[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4026[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 4026[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4026 -> 2617[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4027[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 4027[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4027 -> 2618[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4028[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 4028[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4028 -> 2619[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4029[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 4029[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4029 -> 2620[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4030[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2493 -> 4030[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4030 -> 2621[label="",style="solid", color="blue", weight=3]; 35.52/17.91 2494[label="True",fontsize=16,color="green",shape="box"];2495[label="False",fontsize=16,color="green",shape="box"];2496[label="xuu530 <= xuu540",fontsize=16,color="blue",shape="box"];4031[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2496 -> 4031[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4031 -> 2622[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4032[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2496 -> 4032[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4032 -> 2623[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4033[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2496 -> 4033[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4033 -> 2624[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4034[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2496 -> 4034[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4034 -> 2625[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4035[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2496 -> 4035[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4035 -> 2626[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4036[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2496 -> 4036[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4036 -> 2627[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4037[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2496 -> 4037[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4037 -> 2628[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4038[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2496 -> 4038[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4038 -> 2629[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4039[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2496 -> 4039[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4039 -> 2630[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4040[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2496 -> 4040[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4040 -> 2631[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4041[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2496 -> 4041[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4041 -> 2632[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4042[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2496 -> 4042[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4042 -> 2633[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4043[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2496 -> 4043[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4043 -> 2634[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4044[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2496 -> 4044[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4044 -> 2635[label="",style="solid", color="blue", weight=3]; 35.52/17.91 2497[label="xuu53",fontsize=16,color="green",shape="box"];2498[label="xuu54",fontsize=16,color="green",shape="box"];2499 -> 2636[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2499[label="not (xuu209 == GT)",fontsize=16,color="magenta"];2499 -> 2637[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2500 -> 2324[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2500[label="xuu530 < xuu540 || xuu530 == xuu540 && (xuu531 < xuu541 || xuu531 == xuu541 && xuu532 <= xuu542)",fontsize=16,color="magenta"];2500 -> 2638[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2500 -> 2639[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2501[label="xuu53",fontsize=16,color="green",shape="box"];2502[label="xuu54",fontsize=16,color="green",shape="box"];2503[label="xuu53",fontsize=16,color="green",shape="box"];2504[label="xuu54",fontsize=16,color="green",shape="box"];2505[label="xuu53",fontsize=16,color="green",shape="box"];2506[label="xuu54",fontsize=16,color="green",shape="box"];2507[label="True",fontsize=16,color="green",shape="box"];2508[label="True",fontsize=16,color="green",shape="box"];2509[label="True",fontsize=16,color="green",shape="box"];2510[label="False",fontsize=16,color="green",shape="box"];2511[label="True",fontsize=16,color="green",shape="box"];2512[label="True",fontsize=16,color="green",shape="box"];2513[label="False",fontsize=16,color="green",shape="box"];2514[label="False",fontsize=16,color="green",shape="box"];2515[label="True",fontsize=16,color="green",shape="box"];2516[label="xuu53",fontsize=16,color="green",shape="box"];2517[label="xuu54",fontsize=16,color="green",shape="box"];2518[label="True",fontsize=16,color="green",shape="box"];2519[label="True",fontsize=16,color="green",shape="box"];2520[label="False",fontsize=16,color="green",shape="box"];2521[label="xuu530 <= xuu540",fontsize=16,color="blue",shape="box"];4045[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 4045[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4045 -> 2640[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4046[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 4046[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4046 -> 2641[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4047[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 4047[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4047 -> 2642[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4048[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 4048[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4048 -> 2643[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4049[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 4049[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4049 -> 2644[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4050[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 4050[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4050 -> 2645[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4051[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 4051[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4051 -> 2646[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4052[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 4052[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4052 -> 2647[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4053[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 4053[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4053 -> 2648[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4054[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 4054[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4054 -> 2649[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4055[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 4055[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4055 -> 2650[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4056[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 4056[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4056 -> 2651[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4057[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 4057[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4057 -> 2652[label="",style="solid", color="blue", weight=3]; 35.52/17.91 4058[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 4058[label="",style="solid", color="blue", weight=9]; 35.52/17.91 4058 -> 2653[label="",style="solid", color="blue", weight=3]; 35.52/17.91 2522 -> 2324[label="",style="dashed", color="red", weight=0]; 35.52/17.91 2522[label="xuu530 < xuu540 || xuu530 == xuu540 && xuu531 <= xuu541",fontsize=16,color="magenta"];2522 -> 2654[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2522 -> 2655[label="",style="dashed", color="magenta", weight=3]; 35.52/17.91 2523[label="xuu53",fontsize=16,color="green",shape="box"];2524[label="xuu54",fontsize=16,color="green",shape="box"];2525[label="True",fontsize=16,color="green",shape="box"];2526[label="True",fontsize=16,color="green",shape="box"];2527[label="False",fontsize=16,color="green",shape="box"];2528[label="True",fontsize=16,color="green",shape="box"];2529[label="xuu53",fontsize=16,color="green",shape="box"];2530[label="xuu54",fontsize=16,color="green",shape="box"];2531[label="xuu53",fontsize=16,color="green",shape="box"];2532[label="xuu54",fontsize=16,color="green",shape="box"];2533[label="xuu112",fontsize=16,color="green",shape="box"];2534[label="xuu115",fontsize=16,color="green",shape="box"];2535[label="xuu112",fontsize=16,color="green",shape="box"];2536[label="xuu115",fontsize=16,color="green",shape="box"];2537[label="xuu112",fontsize=16,color="green",shape="box"];2538[label="xuu115",fontsize=16,color="green",shape="box"];2539[label="xuu112",fontsize=16,color="green",shape="box"];2540[label="xuu115",fontsize=16,color="green",shape="box"];2541[label="xuu112",fontsize=16,color="green",shape="box"];2542[label="xuu115",fontsize=16,color="green",shape="box"];2543[label="xuu112",fontsize=16,color="green",shape="box"];2544[label="xuu115",fontsize=16,color="green",shape="box"];2545[label="xuu112",fontsize=16,color="green",shape="box"];2546[label="xuu115",fontsize=16,color="green",shape="box"];2547[label="xuu112",fontsize=16,color="green",shape="box"];2548[label="xuu115",fontsize=16,color="green",shape="box"];2549[label="xuu112",fontsize=16,color="green",shape="box"];2550[label="xuu115",fontsize=16,color="green",shape="box"];2551[label="xuu112",fontsize=16,color="green",shape="box"];2552[label="xuu115",fontsize=16,color="green",shape="box"];2553[label="xuu112",fontsize=16,color="green",shape="box"];2554[label="xuu115",fontsize=16,color="green",shape="box"];2555[label="xuu112",fontsize=16,color="green",shape="box"];2556[label="xuu115",fontsize=16,color="green",shape="box"];2557[label="xuu112",fontsize=16,color="green",shape="box"];2558[label="xuu115",fontsize=16,color="green",shape="box"];2559[label="xuu112",fontsize=16,color="green",shape="box"];2560[label="xuu115",fontsize=16,color="green",shape="box"];2561 -> 587[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2561[label="xuu112 == xuu115",fontsize=16,color="magenta"];2561 -> 2656[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2561 -> 2657[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2562 -> 585[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2562[label="xuu112 == xuu115",fontsize=16,color="magenta"];2562 -> 2658[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2562 -> 2659[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2563 -> 583[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2563[label="xuu112 == xuu115",fontsize=16,color="magenta"];2563 -> 2660[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2563 -> 2661[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2564 -> 588[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2564[label="xuu112 == xuu115",fontsize=16,color="magenta"];2564 -> 2662[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2564 -> 2663[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2565 -> 591[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2565[label="xuu112 == xuu115",fontsize=16,color="magenta"];2565 -> 2664[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2565 -> 2665[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2566 -> 584[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2566[label="xuu112 == xuu115",fontsize=16,color="magenta"];2566 -> 2666[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2566 -> 2667[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2567 -> 593[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2567[label="xuu112 == xuu115",fontsize=16,color="magenta"];2567 -> 2668[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2567 -> 2669[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2568 -> 590[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2568[label="xuu112 == xuu115",fontsize=16,color="magenta"];2568 -> 2670[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2568 -> 2671[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2569 -> 592[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2569[label="xuu112 == xuu115",fontsize=16,color="magenta"];2569 -> 2672[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2569 -> 2673[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2570 -> 582[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2570[label="xuu112 == xuu115",fontsize=16,color="magenta"];2570 -> 2674[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2570 -> 2675[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2571 -> 589[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2571[label="xuu112 == xuu115",fontsize=16,color="magenta"];2571 -> 2676[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2571 -> 2677[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2572 -> 586[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2572[label="xuu112 == xuu115",fontsize=16,color="magenta"];2572 -> 2678[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2572 -> 2679[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2573 -> 581[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2573[label="xuu112 == xuu115",fontsize=16,color="magenta"];2573 -> 2680[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2573 -> 2681[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2574 -> 580[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2574[label="xuu112 == xuu115",fontsize=16,color="magenta"];2574 -> 2682[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2574 -> 2683[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2575 -> 1580[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2575[label="xuu113 <= xuu116",fontsize=16,color="magenta"];2575 -> 2684[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2575 -> 2685[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2576 -> 1581[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2576[label="xuu113 <= xuu116",fontsize=16,color="magenta"];2576 -> 2686[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2576 -> 2687[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2577 -> 1582[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2577[label="xuu113 <= xuu116",fontsize=16,color="magenta"];2577 -> 2688[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2577 -> 2689[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2578 -> 1583[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2578[label="xuu113 <= xuu116",fontsize=16,color="magenta"];2578 -> 2690[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2578 -> 2691[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2579 -> 1584[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2579[label="xuu113 <= xuu116",fontsize=16,color="magenta"];2579 -> 2692[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2579 -> 2693[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2580 -> 1585[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2580[label="xuu113 <= xuu116",fontsize=16,color="magenta"];2580 -> 2694[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2580 -> 2695[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2581 -> 1586[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2581[label="xuu113 <= xuu116",fontsize=16,color="magenta"];2581 -> 2696[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2581 -> 2697[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2582 -> 1587[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2582[label="xuu113 <= xuu116",fontsize=16,color="magenta"];2582 -> 2698[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2582 -> 2699[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2583 -> 1588[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2583[label="xuu113 <= xuu116",fontsize=16,color="magenta"];2583 -> 2700[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2583 -> 2701[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2584 -> 1589[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2584[label="xuu113 <= xuu116",fontsize=16,color="magenta"];2584 -> 2702[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2584 -> 2703[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2585 -> 1590[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2585[label="xuu113 <= xuu116",fontsize=16,color="magenta"];2585 -> 2704[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2585 -> 2705[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2586 -> 1591[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2586[label="xuu113 <= xuu116",fontsize=16,color="magenta"];2586 -> 2706[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2586 -> 2707[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2587 -> 1592[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2587[label="xuu113 <= xuu116",fontsize=16,color="magenta"];2587 -> 2708[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2587 -> 2709[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2588 -> 1593[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2588[label="xuu113 <= xuu116",fontsize=16,color="magenta"];2588 -> 2710[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2588 -> 2711[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2589[label="xuu214",fontsize=16,color="green",shape="box"];2590[label="True",fontsize=16,color="green",shape="box"];2591[label="compare0 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) otherwise",fontsize=16,color="black",shape="box"];2591 -> 2712[label="",style="solid", color="black", weight=3]; 35.72/17.91 2592[label="LT",fontsize=16,color="green",shape="box"];2593[label="compare0 (xuu198,xuu199) (xuu200,xuu201) otherwise",fontsize=16,color="black",shape="box"];2593 -> 2713[label="",style="solid", color="black", weight=3]; 35.72/17.91 2594[label="LT",fontsize=16,color="green",shape="box"];2595 -> 1503[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2595[label="primMulNat xuu31100000 (Succ xuu60100)",fontsize=16,color="magenta"];2595 -> 2714[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2595 -> 2715[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2596[label="Succ xuu60100",fontsize=16,color="green",shape="box"];2597 -> 1512[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2597[label="primPlusNat xuu42200 xuu13700",fontsize=16,color="magenta"];2597 -> 2716[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2597 -> 2717[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2598 -> 579[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2598[label="FiniteMap.mkBranchResult xuu17 xuu18 xuu21 xuu42",fontsize=16,color="magenta"];2599 -> 2718[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2599[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21 xuu420 xuu421 xuu422 xuu423 xuu424 (FiniteMap.sizeFM xuu424 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu423)",fontsize=16,color="magenta"];2599 -> 2719[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2600[label="xuu213",fontsize=16,color="green",shape="box"];2601[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2602 -> 951[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2602[label="FiniteMap.sizeFM xuu214",fontsize=16,color="magenta"];2602 -> 2720[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2603[label="FiniteMap.mkBalBranch6MkBalBranch00 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 otherwise",fontsize=16,color="black",shape="box"];2603 -> 2721[label="",style="solid", color="black", weight=3]; 35.72/17.91 2604[label="FiniteMap.mkBalBranch6Single_L (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];2604 -> 2722[label="",style="solid", color="black", weight=3]; 35.72/17.91 2605 -> 951[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2605[label="FiniteMap.sizeFM xuu42",fontsize=16,color="magenta"];2605 -> 2723[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2606[label="xuu31100000",fontsize=16,color="green",shape="box"];2607[label="xuu60000",fontsize=16,color="green",shape="box"];2608 -> 1580[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2608[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2608 -> 2724[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2608 -> 2725[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2609 -> 1581[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2609[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2609 -> 2726[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2609 -> 2727[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2610 -> 1582[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2610[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2610 -> 2728[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2610 -> 2729[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2611 -> 1583[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2611[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2611 -> 2730[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2611 -> 2731[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2612 -> 1584[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2612[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2612 -> 2732[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2612 -> 2733[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2613 -> 1585[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2613[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2613 -> 2734[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2613 -> 2735[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2614 -> 1586[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2614[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2614 -> 2736[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2614 -> 2737[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2615 -> 1587[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2615[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2615 -> 2738[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2615 -> 2739[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2616 -> 1588[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2616[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2616 -> 2740[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2616 -> 2741[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2617 -> 1589[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2617[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2617 -> 2742[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2617 -> 2743[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2618 -> 1590[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2618[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2618 -> 2744[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2618 -> 2745[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2619 -> 1591[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2619[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2619 -> 2746[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2619 -> 2747[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2620 -> 1592[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2620[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2620 -> 2748[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2620 -> 2749[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2621 -> 1593[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2621[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2621 -> 2750[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2621 -> 2751[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2622 -> 1580[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2622[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2622 -> 2752[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2622 -> 2753[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2623 -> 1581[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2623[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2623 -> 2754[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2623 -> 2755[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2624 -> 1582[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2624[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2624 -> 2756[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2624 -> 2757[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2625 -> 1583[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2625[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2625 -> 2758[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2625 -> 2759[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2626 -> 1584[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2626[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2626 -> 2760[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2626 -> 2761[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2627 -> 1585[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2627[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2627 -> 2762[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2627 -> 2763[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2628 -> 1586[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2628[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2628 -> 2764[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2628 -> 2765[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2629 -> 1587[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2629[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2629 -> 2766[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2629 -> 2767[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2630 -> 1588[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2630[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2630 -> 2768[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2630 -> 2769[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2631 -> 1589[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2631[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2631 -> 2770[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2631 -> 2771[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2632 -> 1590[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2632[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2632 -> 2772[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2632 -> 2773[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2633 -> 1591[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2633[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2633 -> 2774[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2633 -> 2775[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2634 -> 1592[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2634[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2634 -> 2776[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2634 -> 2777[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2635 -> 1593[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2635[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2635 -> 2778[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2635 -> 2779[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2637 -> 593[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2637[label="xuu209 == GT",fontsize=16,color="magenta"];2637 -> 2780[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2637 -> 2781[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2636[label="not xuu215",fontsize=16,color="burlywood",shape="triangle"];4059[label="xuu215/False",fontsize=10,color="white",style="solid",shape="box"];2636 -> 4059[label="",style="solid", color="burlywood", weight=9]; 35.72/17.91 4059 -> 2782[label="",style="solid", color="burlywood", weight=3]; 35.72/17.91 4060[label="xuu215/True",fontsize=10,color="white",style="solid",shape="box"];2636 -> 4060[label="",style="solid", color="burlywood", weight=9]; 35.72/17.91 4060 -> 2783[label="",style="solid", color="burlywood", weight=3]; 35.72/17.91 2638[label="xuu530 < xuu540",fontsize=16,color="blue",shape="box"];4061[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2638 -> 4061[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4061 -> 2784[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4062[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2638 -> 4062[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4062 -> 2785[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4063[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2638 -> 4063[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4063 -> 2786[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4064[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2638 -> 4064[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4064 -> 2787[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4065[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2638 -> 4065[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4065 -> 2788[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4066[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2638 -> 4066[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4066 -> 2789[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4067[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2638 -> 4067[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4067 -> 2790[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4068[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2638 -> 4068[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4068 -> 2791[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4069[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2638 -> 4069[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4069 -> 2792[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4070[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2638 -> 4070[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4070 -> 2793[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4071[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2638 -> 4071[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4071 -> 2794[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4072[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2638 -> 4072[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4072 -> 2795[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4073[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2638 -> 4073[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4073 -> 2796[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4074[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2638 -> 4074[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4074 -> 2797[label="",style="solid", color="blue", weight=3]; 35.72/17.91 2639 -> 1247[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2639[label="xuu530 == xuu540 && (xuu531 < xuu541 || xuu531 == xuu541 && xuu532 <= xuu542)",fontsize=16,color="magenta"];2639 -> 2798[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2639 -> 2799[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2640 -> 1580[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2640[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2640 -> 2800[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2640 -> 2801[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2641 -> 1581[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2641[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2641 -> 2802[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2641 -> 2803[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2642 -> 1582[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2642[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2642 -> 2804[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2642 -> 2805[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2643 -> 1583[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2643[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2643 -> 2806[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2643 -> 2807[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2644 -> 1584[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2644[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2644 -> 2808[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2644 -> 2809[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2645 -> 1585[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2645[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2645 -> 2810[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2645 -> 2811[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2646 -> 1586[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2646[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2646 -> 2812[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2646 -> 2813[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2647 -> 1587[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2647[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2647 -> 2814[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2647 -> 2815[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2648 -> 1588[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2648[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2648 -> 2816[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2648 -> 2817[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2649 -> 1589[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2649[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2649 -> 2818[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2649 -> 2819[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2650 -> 1590[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2650[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2650 -> 2820[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2650 -> 2821[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2651 -> 1591[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2651[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2651 -> 2822[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2651 -> 2823[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2652 -> 1592[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2652[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2652 -> 2824[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2652 -> 2825[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2653 -> 1593[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2653[label="xuu530 <= xuu540",fontsize=16,color="magenta"];2653 -> 2826[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2653 -> 2827[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2654[label="xuu530 < xuu540",fontsize=16,color="blue",shape="box"];4075[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4075[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4075 -> 2828[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4076[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4076[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4076 -> 2829[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4077[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4077[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4077 -> 2830[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4078[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4078[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4078 -> 2831[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4079[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4079[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4079 -> 2832[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4080[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4080[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4080 -> 2833[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4081[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4081[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4081 -> 2834[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4082[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4082[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4082 -> 2835[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4083[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4083[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4083 -> 2836[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4084[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4084[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4084 -> 2837[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4085[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4085[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4085 -> 2838[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4086[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4086[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4086 -> 2839[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4087[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4087[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4087 -> 2840[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4088[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4088[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4088 -> 2841[label="",style="solid", color="blue", weight=3]; 35.72/17.91 2655 -> 1247[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2655[label="xuu530 == xuu540 && xuu531 <= xuu541",fontsize=16,color="magenta"];2655 -> 2842[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2655 -> 2843[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2656[label="xuu112",fontsize=16,color="green",shape="box"];2657[label="xuu115",fontsize=16,color="green",shape="box"];2658[label="xuu112",fontsize=16,color="green",shape="box"];2659[label="xuu115",fontsize=16,color="green",shape="box"];2660[label="xuu112",fontsize=16,color="green",shape="box"];2661[label="xuu115",fontsize=16,color="green",shape="box"];2662[label="xuu112",fontsize=16,color="green",shape="box"];2663[label="xuu115",fontsize=16,color="green",shape="box"];2664[label="xuu112",fontsize=16,color="green",shape="box"];2665[label="xuu115",fontsize=16,color="green",shape="box"];2666[label="xuu112",fontsize=16,color="green",shape="box"];2667[label="xuu115",fontsize=16,color="green",shape="box"];2668[label="xuu112",fontsize=16,color="green",shape="box"];2669[label="xuu115",fontsize=16,color="green",shape="box"];2670[label="xuu112",fontsize=16,color="green",shape="box"];2671[label="xuu115",fontsize=16,color="green",shape="box"];2672[label="xuu112",fontsize=16,color="green",shape="box"];2673[label="xuu115",fontsize=16,color="green",shape="box"];2674[label="xuu112",fontsize=16,color="green",shape="box"];2675[label="xuu115",fontsize=16,color="green",shape="box"];2676[label="xuu112",fontsize=16,color="green",shape="box"];2677[label="xuu115",fontsize=16,color="green",shape="box"];2678[label="xuu112",fontsize=16,color="green",shape="box"];2679[label="xuu115",fontsize=16,color="green",shape="box"];2680[label="xuu112",fontsize=16,color="green",shape="box"];2681[label="xuu115",fontsize=16,color="green",shape="box"];2682[label="xuu112",fontsize=16,color="green",shape="box"];2683[label="xuu115",fontsize=16,color="green",shape="box"];2684[label="xuu113",fontsize=16,color="green",shape="box"];2685[label="xuu116",fontsize=16,color="green",shape="box"];2686[label="xuu113",fontsize=16,color="green",shape="box"];2687[label="xuu116",fontsize=16,color="green",shape="box"];2688[label="xuu113",fontsize=16,color="green",shape="box"];2689[label="xuu116",fontsize=16,color="green",shape="box"];2690[label="xuu113",fontsize=16,color="green",shape="box"];2691[label="xuu116",fontsize=16,color="green",shape="box"];2692[label="xuu113",fontsize=16,color="green",shape="box"];2693[label="xuu116",fontsize=16,color="green",shape="box"];2694[label="xuu113",fontsize=16,color="green",shape="box"];2695[label="xuu116",fontsize=16,color="green",shape="box"];2696[label="xuu113",fontsize=16,color="green",shape="box"];2697[label="xuu116",fontsize=16,color="green",shape="box"];2698[label="xuu113",fontsize=16,color="green",shape="box"];2699[label="xuu116",fontsize=16,color="green",shape="box"];2700[label="xuu113",fontsize=16,color="green",shape="box"];2701[label="xuu116",fontsize=16,color="green",shape="box"];2702[label="xuu113",fontsize=16,color="green",shape="box"];2703[label="xuu116",fontsize=16,color="green",shape="box"];2704[label="xuu113",fontsize=16,color="green",shape="box"];2705[label="xuu116",fontsize=16,color="green",shape="box"];2706[label="xuu113",fontsize=16,color="green",shape="box"];2707[label="xuu116",fontsize=16,color="green",shape="box"];2708[label="xuu113",fontsize=16,color="green",shape="box"];2709[label="xuu116",fontsize=16,color="green",shape="box"];2710[label="xuu113",fontsize=16,color="green",shape="box"];2711[label="xuu116",fontsize=16,color="green",shape="box"];2712[label="compare0 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) True",fontsize=16,color="black",shape="box"];2712 -> 2844[label="",style="solid", color="black", weight=3]; 35.72/17.91 2713[label="compare0 (xuu198,xuu199) (xuu200,xuu201) True",fontsize=16,color="black",shape="box"];2713 -> 2845[label="",style="solid", color="black", weight=3]; 35.72/17.91 2714[label="xuu31100000",fontsize=16,color="green",shape="box"];2715[label="Succ xuu60100",fontsize=16,color="green",shape="box"];2716[label="xuu42200",fontsize=16,color="green",shape="box"];2717[label="xuu13700",fontsize=16,color="green",shape="box"];2719 -> 55[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2719[label="FiniteMap.sizeFM xuu424 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu423",fontsize=16,color="magenta"];2719 -> 2846[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2719 -> 2847[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2718[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21 xuu420 xuu421 xuu422 xuu423 xuu424 xuu216",fontsize=16,color="burlywood",shape="triangle"];4089[label="xuu216/False",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4089[label="",style="solid", color="burlywood", weight=9]; 35.72/17.91 4089 -> 2848[label="",style="solid", color="burlywood", weight=3]; 35.72/17.91 4090[label="xuu216/True",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4090[label="",style="solid", color="burlywood", weight=9]; 35.72/17.91 4090 -> 2849[label="",style="solid", color="burlywood", weight=3]; 35.72/17.91 2720[label="xuu214",fontsize=16,color="green",shape="box"];2721[label="FiniteMap.mkBalBranch6MkBalBranch00 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 True",fontsize=16,color="black",shape="box"];2721 -> 2850[label="",style="solid", color="black", weight=3]; 35.72/17.91 2722[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu210 xuu211 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xuu17 xuu18 xuu42 xuu213) xuu214",fontsize=16,color="black",shape="box"];2722 -> 2851[label="",style="solid", color="black", weight=3]; 35.72/17.91 2723[label="xuu42",fontsize=16,color="green",shape="box"];2724[label="xuu530",fontsize=16,color="green",shape="box"];2725[label="xuu540",fontsize=16,color="green",shape="box"];2726[label="xuu530",fontsize=16,color="green",shape="box"];2727[label="xuu540",fontsize=16,color="green",shape="box"];2728[label="xuu530",fontsize=16,color="green",shape="box"];2729[label="xuu540",fontsize=16,color="green",shape="box"];2730[label="xuu530",fontsize=16,color="green",shape="box"];2731[label="xuu540",fontsize=16,color="green",shape="box"];2732[label="xuu530",fontsize=16,color="green",shape="box"];2733[label="xuu540",fontsize=16,color="green",shape="box"];2734[label="xuu530",fontsize=16,color="green",shape="box"];2735[label="xuu540",fontsize=16,color="green",shape="box"];2736[label="xuu530",fontsize=16,color="green",shape="box"];2737[label="xuu540",fontsize=16,color="green",shape="box"];2738[label="xuu530",fontsize=16,color="green",shape="box"];2739[label="xuu540",fontsize=16,color="green",shape="box"];2740[label="xuu530",fontsize=16,color="green",shape="box"];2741[label="xuu540",fontsize=16,color="green",shape="box"];2742[label="xuu530",fontsize=16,color="green",shape="box"];2743[label="xuu540",fontsize=16,color="green",shape="box"];2744[label="xuu530",fontsize=16,color="green",shape="box"];2745[label="xuu540",fontsize=16,color="green",shape="box"];2746[label="xuu530",fontsize=16,color="green",shape="box"];2747[label="xuu540",fontsize=16,color="green",shape="box"];2748[label="xuu530",fontsize=16,color="green",shape="box"];2749[label="xuu540",fontsize=16,color="green",shape="box"];2750[label="xuu530",fontsize=16,color="green",shape="box"];2751[label="xuu540",fontsize=16,color="green",shape="box"];2752[label="xuu530",fontsize=16,color="green",shape="box"];2753[label="xuu540",fontsize=16,color="green",shape="box"];2754[label="xuu530",fontsize=16,color="green",shape="box"];2755[label="xuu540",fontsize=16,color="green",shape="box"];2756[label="xuu530",fontsize=16,color="green",shape="box"];2757[label="xuu540",fontsize=16,color="green",shape="box"];2758[label="xuu530",fontsize=16,color="green",shape="box"];2759[label="xuu540",fontsize=16,color="green",shape="box"];2760[label="xuu530",fontsize=16,color="green",shape="box"];2761[label="xuu540",fontsize=16,color="green",shape="box"];2762[label="xuu530",fontsize=16,color="green",shape="box"];2763[label="xuu540",fontsize=16,color="green",shape="box"];2764[label="xuu530",fontsize=16,color="green",shape="box"];2765[label="xuu540",fontsize=16,color="green",shape="box"];2766[label="xuu530",fontsize=16,color="green",shape="box"];2767[label="xuu540",fontsize=16,color="green",shape="box"];2768[label="xuu530",fontsize=16,color="green",shape="box"];2769[label="xuu540",fontsize=16,color="green",shape="box"];2770[label="xuu530",fontsize=16,color="green",shape="box"];2771[label="xuu540",fontsize=16,color="green",shape="box"];2772[label="xuu530",fontsize=16,color="green",shape="box"];2773[label="xuu540",fontsize=16,color="green",shape="box"];2774[label="xuu530",fontsize=16,color="green",shape="box"];2775[label="xuu540",fontsize=16,color="green",shape="box"];2776[label="xuu530",fontsize=16,color="green",shape="box"];2777[label="xuu540",fontsize=16,color="green",shape="box"];2778[label="xuu530",fontsize=16,color="green",shape="box"];2779[label="xuu540",fontsize=16,color="green",shape="box"];2780[label="xuu209",fontsize=16,color="green",shape="box"];2781[label="GT",fontsize=16,color="green",shape="box"];2782[label="not False",fontsize=16,color="black",shape="box"];2782 -> 2852[label="",style="solid", color="black", weight=3]; 35.72/17.91 2783[label="not True",fontsize=16,color="black",shape="box"];2783 -> 2853[label="",style="solid", color="black", weight=3]; 35.72/17.91 2784 -> 54[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2784[label="xuu530 < xuu540",fontsize=16,color="magenta"];2784 -> 2854[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2784 -> 2855[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2785 -> 55[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2785[label="xuu530 < xuu540",fontsize=16,color="magenta"];2785 -> 2856[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2785 -> 2857[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2786 -> 56[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2786[label="xuu530 < xuu540",fontsize=16,color="magenta"];2786 -> 2858[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2786 -> 2859[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2787 -> 57[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2787[label="xuu530 < xuu540",fontsize=16,color="magenta"];2787 -> 2860[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2787 -> 2861[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2788 -> 58[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2788[label="xuu530 < xuu540",fontsize=16,color="magenta"];2788 -> 2862[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2788 -> 2863[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2789 -> 59[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2789[label="xuu530 < xuu540",fontsize=16,color="magenta"];2789 -> 2864[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2789 -> 2865[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2790 -> 60[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2790[label="xuu530 < xuu540",fontsize=16,color="magenta"];2790 -> 2866[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2790 -> 2867[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2791 -> 61[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2791[label="xuu530 < xuu540",fontsize=16,color="magenta"];2791 -> 2868[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2791 -> 2869[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2792 -> 62[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2792[label="xuu530 < xuu540",fontsize=16,color="magenta"];2792 -> 2870[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2792 -> 2871[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2793 -> 63[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2793[label="xuu530 < xuu540",fontsize=16,color="magenta"];2793 -> 2872[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2793 -> 2873[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2794 -> 64[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2794[label="xuu530 < xuu540",fontsize=16,color="magenta"];2794 -> 2874[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2794 -> 2875[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2795 -> 65[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2795[label="xuu530 < xuu540",fontsize=16,color="magenta"];2795 -> 2876[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2795 -> 2877[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2796 -> 66[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2796[label="xuu530 < xuu540",fontsize=16,color="magenta"];2796 -> 2878[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2796 -> 2879[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2797 -> 67[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2797[label="xuu530 < xuu540",fontsize=16,color="magenta"];2797 -> 2880[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2797 -> 2881[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2798[label="xuu530 == xuu540",fontsize=16,color="blue",shape="box"];4091[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4091[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4091 -> 2882[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4092[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4092[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4092 -> 2883[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4093[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4093[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4093 -> 2884[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4094[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4094[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4094 -> 2885[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4095[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4095[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4095 -> 2886[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4096[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4096[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4096 -> 2887[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4097[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4097[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4097 -> 2888[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4098[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4098[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4098 -> 2889[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4099[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4099[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4099 -> 2890[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4100[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4100[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4100 -> 2891[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4101[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4101[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4101 -> 2892[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4102[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4102[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4102 -> 2893[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4103[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4103[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4103 -> 2894[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4104[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4104[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4104 -> 2895[label="",style="solid", color="blue", weight=3]; 35.72/17.91 2799 -> 2324[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2799[label="xuu531 < xuu541 || xuu531 == xuu541 && xuu532 <= xuu542",fontsize=16,color="magenta"];2799 -> 2896[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2799 -> 2897[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2800[label="xuu530",fontsize=16,color="green",shape="box"];2801[label="xuu540",fontsize=16,color="green",shape="box"];2802[label="xuu530",fontsize=16,color="green",shape="box"];2803[label="xuu540",fontsize=16,color="green",shape="box"];2804[label="xuu530",fontsize=16,color="green",shape="box"];2805[label="xuu540",fontsize=16,color="green",shape="box"];2806[label="xuu530",fontsize=16,color="green",shape="box"];2807[label="xuu540",fontsize=16,color="green",shape="box"];2808[label="xuu530",fontsize=16,color="green",shape="box"];2809[label="xuu540",fontsize=16,color="green",shape="box"];2810[label="xuu530",fontsize=16,color="green",shape="box"];2811[label="xuu540",fontsize=16,color="green",shape="box"];2812[label="xuu530",fontsize=16,color="green",shape="box"];2813[label="xuu540",fontsize=16,color="green",shape="box"];2814[label="xuu530",fontsize=16,color="green",shape="box"];2815[label="xuu540",fontsize=16,color="green",shape="box"];2816[label="xuu530",fontsize=16,color="green",shape="box"];2817[label="xuu540",fontsize=16,color="green",shape="box"];2818[label="xuu530",fontsize=16,color="green",shape="box"];2819[label="xuu540",fontsize=16,color="green",shape="box"];2820[label="xuu530",fontsize=16,color="green",shape="box"];2821[label="xuu540",fontsize=16,color="green",shape="box"];2822[label="xuu530",fontsize=16,color="green",shape="box"];2823[label="xuu540",fontsize=16,color="green",shape="box"];2824[label="xuu530",fontsize=16,color="green",shape="box"];2825[label="xuu540",fontsize=16,color="green",shape="box"];2826[label="xuu530",fontsize=16,color="green",shape="box"];2827[label="xuu540",fontsize=16,color="green",shape="box"];2828 -> 54[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2828[label="xuu530 < xuu540",fontsize=16,color="magenta"];2828 -> 2898[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2828 -> 2899[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2829 -> 55[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2829[label="xuu530 < xuu540",fontsize=16,color="magenta"];2829 -> 2900[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2829 -> 2901[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2830 -> 56[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2830[label="xuu530 < xuu540",fontsize=16,color="magenta"];2830 -> 2902[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2830 -> 2903[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2831 -> 57[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2831[label="xuu530 < xuu540",fontsize=16,color="magenta"];2831 -> 2904[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2831 -> 2905[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2832 -> 58[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2832[label="xuu530 < xuu540",fontsize=16,color="magenta"];2832 -> 2906[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2832 -> 2907[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2833 -> 59[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2833[label="xuu530 < xuu540",fontsize=16,color="magenta"];2833 -> 2908[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2833 -> 2909[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2834 -> 60[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2834[label="xuu530 < xuu540",fontsize=16,color="magenta"];2834 -> 2910[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2834 -> 2911[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2835 -> 61[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2835[label="xuu530 < xuu540",fontsize=16,color="magenta"];2835 -> 2912[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2835 -> 2913[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2836 -> 62[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2836[label="xuu530 < xuu540",fontsize=16,color="magenta"];2836 -> 2914[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2836 -> 2915[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2837 -> 63[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2837[label="xuu530 < xuu540",fontsize=16,color="magenta"];2837 -> 2916[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2837 -> 2917[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2838 -> 64[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2838[label="xuu530 < xuu540",fontsize=16,color="magenta"];2838 -> 2918[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2838 -> 2919[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2839 -> 65[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2839[label="xuu530 < xuu540",fontsize=16,color="magenta"];2839 -> 2920[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2839 -> 2921[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2840 -> 66[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2840[label="xuu530 < xuu540",fontsize=16,color="magenta"];2840 -> 2922[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2840 -> 2923[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2841 -> 67[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2841[label="xuu530 < xuu540",fontsize=16,color="magenta"];2841 -> 2924[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2841 -> 2925[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2842[label="xuu530 == xuu540",fontsize=16,color="blue",shape="box"];4105[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2842 -> 4105[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4105 -> 2926[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4106[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2842 -> 4106[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4106 -> 2927[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4107[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2842 -> 4107[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4107 -> 2928[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4108[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2842 -> 4108[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4108 -> 2929[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4109[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2842 -> 4109[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4109 -> 2930[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4110[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2842 -> 4110[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4110 -> 2931[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4111[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2842 -> 4111[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4111 -> 2932[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4112[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2842 -> 4112[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4112 -> 2933[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4113[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2842 -> 4113[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4113 -> 2934[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4114[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2842 -> 4114[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4114 -> 2935[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4115[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2842 -> 4115[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4115 -> 2936[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4116[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2842 -> 4116[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4116 -> 2937[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4117[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2842 -> 4117[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4117 -> 2938[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4118[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2842 -> 4118[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4118 -> 2939[label="",style="solid", color="blue", weight=3]; 35.72/17.91 2843[label="xuu531 <= xuu541",fontsize=16,color="blue",shape="box"];4119[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2843 -> 4119[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4119 -> 2940[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4120[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2843 -> 4120[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4120 -> 2941[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4121[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2843 -> 4121[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4121 -> 2942[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4122[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2843 -> 4122[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4122 -> 2943[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4123[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2843 -> 4123[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4123 -> 2944[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4124[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2843 -> 4124[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4124 -> 2945[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4125[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2843 -> 4125[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4125 -> 2946[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4126[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2843 -> 4126[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4126 -> 2947[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4127[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2843 -> 4127[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4127 -> 2948[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4128[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2843 -> 4128[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4128 -> 2949[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4129[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2843 -> 4129[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4129 -> 2950[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4130[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2843 -> 4130[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4130 -> 2951[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4131[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2843 -> 4131[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4131 -> 2952[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4132[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2843 -> 4132[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4132 -> 2953[label="",style="solid", color="blue", weight=3]; 35.72/17.91 2844[label="GT",fontsize=16,color="green",shape="box"];2845[label="GT",fontsize=16,color="green",shape="box"];2846 -> 951[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2846[label="FiniteMap.sizeFM xuu424",fontsize=16,color="magenta"];2846 -> 2954[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2847 -> 488[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2847[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu423",fontsize=16,color="magenta"];2847 -> 2955[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2847 -> 2956[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2848[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21 xuu420 xuu421 xuu422 xuu423 xuu424 False",fontsize=16,color="black",shape="box"];2848 -> 2957[label="",style="solid", color="black", weight=3]; 35.72/17.91 2849[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21 xuu420 xuu421 xuu422 xuu423 xuu424 True",fontsize=16,color="black",shape="box"];2849 -> 2958[label="",style="solid", color="black", weight=3]; 35.72/17.91 2850[label="FiniteMap.mkBalBranch6Double_L (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="burlywood",shape="box"];4133[label="xuu213/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2850 -> 4133[label="",style="solid", color="burlywood", weight=9]; 35.72/17.91 4133 -> 2959[label="",style="solid", color="burlywood", weight=3]; 35.72/17.91 4134[label="xuu213/FiniteMap.Branch xuu2130 xuu2131 xuu2132 xuu2133 xuu2134",fontsize=10,color="white",style="solid",shape="box"];2850 -> 4134[label="",style="solid", color="burlywood", weight=9]; 35.72/17.91 4134 -> 2960[label="",style="solid", color="burlywood", weight=3]; 35.72/17.91 2851 -> 579[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2851[label="FiniteMap.mkBranchResult xuu210 xuu211 xuu214 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xuu17 xuu18 xuu42 xuu213)",fontsize=16,color="magenta"];2851 -> 2961[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2851 -> 2962[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2851 -> 2963[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2851 -> 2964[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2852[label="True",fontsize=16,color="green",shape="box"];2853[label="False",fontsize=16,color="green",shape="box"];2854[label="xuu530",fontsize=16,color="green",shape="box"];2855[label="xuu540",fontsize=16,color="green",shape="box"];2856[label="xuu530",fontsize=16,color="green",shape="box"];2857[label="xuu540",fontsize=16,color="green",shape="box"];2858[label="xuu530",fontsize=16,color="green",shape="box"];2859[label="xuu540",fontsize=16,color="green",shape="box"];2860[label="xuu530",fontsize=16,color="green",shape="box"];2861[label="xuu540",fontsize=16,color="green",shape="box"];2862[label="xuu530",fontsize=16,color="green",shape="box"];2863[label="xuu540",fontsize=16,color="green",shape="box"];2864[label="xuu530",fontsize=16,color="green",shape="box"];2865[label="xuu540",fontsize=16,color="green",shape="box"];2866[label="xuu530",fontsize=16,color="green",shape="box"];2867[label="xuu540",fontsize=16,color="green",shape="box"];2868[label="xuu530",fontsize=16,color="green",shape="box"];2869[label="xuu540",fontsize=16,color="green",shape="box"];2870[label="xuu530",fontsize=16,color="green",shape="box"];2871[label="xuu540",fontsize=16,color="green",shape="box"];2872[label="xuu530",fontsize=16,color="green",shape="box"];2873[label="xuu540",fontsize=16,color="green",shape="box"];2874[label="xuu530",fontsize=16,color="green",shape="box"];2875[label="xuu540",fontsize=16,color="green",shape="box"];2876[label="xuu530",fontsize=16,color="green",shape="box"];2877[label="xuu540",fontsize=16,color="green",shape="box"];2878[label="xuu530",fontsize=16,color="green",shape="box"];2879[label="xuu540",fontsize=16,color="green",shape="box"];2880[label="xuu530",fontsize=16,color="green",shape="box"];2881[label="xuu540",fontsize=16,color="green",shape="box"];2882 -> 587[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2882[label="xuu530 == xuu540",fontsize=16,color="magenta"];2882 -> 2965[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2882 -> 2966[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2883 -> 585[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2883[label="xuu530 == xuu540",fontsize=16,color="magenta"];2883 -> 2967[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2883 -> 2968[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2884 -> 583[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2884[label="xuu530 == xuu540",fontsize=16,color="magenta"];2884 -> 2969[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2884 -> 2970[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2885 -> 588[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2885[label="xuu530 == xuu540",fontsize=16,color="magenta"];2885 -> 2971[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2885 -> 2972[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2886 -> 591[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2886[label="xuu530 == xuu540",fontsize=16,color="magenta"];2886 -> 2973[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2886 -> 2974[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2887 -> 584[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2887[label="xuu530 == xuu540",fontsize=16,color="magenta"];2887 -> 2975[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2887 -> 2976[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2888 -> 593[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2888[label="xuu530 == xuu540",fontsize=16,color="magenta"];2888 -> 2977[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2888 -> 2978[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2889 -> 590[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2889[label="xuu530 == xuu540",fontsize=16,color="magenta"];2889 -> 2979[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2889 -> 2980[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2890 -> 592[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2890[label="xuu530 == xuu540",fontsize=16,color="magenta"];2890 -> 2981[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2890 -> 2982[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2891 -> 582[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2891[label="xuu530 == xuu540",fontsize=16,color="magenta"];2891 -> 2983[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2891 -> 2984[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2892 -> 589[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2892[label="xuu530 == xuu540",fontsize=16,color="magenta"];2892 -> 2985[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2892 -> 2986[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2893 -> 586[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2893[label="xuu530 == xuu540",fontsize=16,color="magenta"];2893 -> 2987[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2893 -> 2988[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2894 -> 581[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2894[label="xuu530 == xuu540",fontsize=16,color="magenta"];2894 -> 2989[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2894 -> 2990[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2895 -> 580[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2895[label="xuu530 == xuu540",fontsize=16,color="magenta"];2895 -> 2991[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2895 -> 2992[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2896[label="xuu531 < xuu541",fontsize=16,color="blue",shape="box"];4135[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4135[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4135 -> 2993[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4136[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4136[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4136 -> 2994[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4137[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4137[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4137 -> 2995[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4138[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4138[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4138 -> 2996[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4139[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4139[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4139 -> 2997[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4140[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4140[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4140 -> 2998[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4141[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4141[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4141 -> 2999[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4142[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4142[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4142 -> 3000[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4143[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4143[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4143 -> 3001[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4144[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4144[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4144 -> 3002[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4145[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4145[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4145 -> 3003[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4146[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4146[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4146 -> 3004[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4147[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4147[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4147 -> 3005[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4148[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4148[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4148 -> 3006[label="",style="solid", color="blue", weight=3]; 35.72/17.91 2897 -> 1247[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2897[label="xuu531 == xuu541 && xuu532 <= xuu542",fontsize=16,color="magenta"];2897 -> 3007[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2897 -> 3008[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2898[label="xuu530",fontsize=16,color="green",shape="box"];2899[label="xuu540",fontsize=16,color="green",shape="box"];2900[label="xuu530",fontsize=16,color="green",shape="box"];2901[label="xuu540",fontsize=16,color="green",shape="box"];2902[label="xuu530",fontsize=16,color="green",shape="box"];2903[label="xuu540",fontsize=16,color="green",shape="box"];2904[label="xuu530",fontsize=16,color="green",shape="box"];2905[label="xuu540",fontsize=16,color="green",shape="box"];2906[label="xuu530",fontsize=16,color="green",shape="box"];2907[label="xuu540",fontsize=16,color="green",shape="box"];2908[label="xuu530",fontsize=16,color="green",shape="box"];2909[label="xuu540",fontsize=16,color="green",shape="box"];2910[label="xuu530",fontsize=16,color="green",shape="box"];2911[label="xuu540",fontsize=16,color="green",shape="box"];2912[label="xuu530",fontsize=16,color="green",shape="box"];2913[label="xuu540",fontsize=16,color="green",shape="box"];2914[label="xuu530",fontsize=16,color="green",shape="box"];2915[label="xuu540",fontsize=16,color="green",shape="box"];2916[label="xuu530",fontsize=16,color="green",shape="box"];2917[label="xuu540",fontsize=16,color="green",shape="box"];2918[label="xuu530",fontsize=16,color="green",shape="box"];2919[label="xuu540",fontsize=16,color="green",shape="box"];2920[label="xuu530",fontsize=16,color="green",shape="box"];2921[label="xuu540",fontsize=16,color="green",shape="box"];2922[label="xuu530",fontsize=16,color="green",shape="box"];2923[label="xuu540",fontsize=16,color="green",shape="box"];2924[label="xuu530",fontsize=16,color="green",shape="box"];2925[label="xuu540",fontsize=16,color="green",shape="box"];2926 -> 587[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2926[label="xuu530 == xuu540",fontsize=16,color="magenta"];2926 -> 3009[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2926 -> 3010[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2927 -> 585[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2927[label="xuu530 == xuu540",fontsize=16,color="magenta"];2927 -> 3011[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2927 -> 3012[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2928 -> 583[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2928[label="xuu530 == xuu540",fontsize=16,color="magenta"];2928 -> 3013[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2928 -> 3014[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2929 -> 588[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2929[label="xuu530 == xuu540",fontsize=16,color="magenta"];2929 -> 3015[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2929 -> 3016[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2930 -> 591[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2930[label="xuu530 == xuu540",fontsize=16,color="magenta"];2930 -> 3017[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2930 -> 3018[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2931 -> 584[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2931[label="xuu530 == xuu540",fontsize=16,color="magenta"];2931 -> 3019[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2931 -> 3020[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2932 -> 593[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2932[label="xuu530 == xuu540",fontsize=16,color="magenta"];2932 -> 3021[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2932 -> 3022[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2933 -> 590[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2933[label="xuu530 == xuu540",fontsize=16,color="magenta"];2933 -> 3023[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2933 -> 3024[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2934 -> 592[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2934[label="xuu530 == xuu540",fontsize=16,color="magenta"];2934 -> 3025[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2934 -> 3026[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2935 -> 582[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2935[label="xuu530 == xuu540",fontsize=16,color="magenta"];2935 -> 3027[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2935 -> 3028[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2936 -> 589[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2936[label="xuu530 == xuu540",fontsize=16,color="magenta"];2936 -> 3029[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2936 -> 3030[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2937 -> 586[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2937[label="xuu530 == xuu540",fontsize=16,color="magenta"];2937 -> 3031[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2937 -> 3032[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2938 -> 581[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2938[label="xuu530 == xuu540",fontsize=16,color="magenta"];2938 -> 3033[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2938 -> 3034[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2939 -> 580[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2939[label="xuu530 == xuu540",fontsize=16,color="magenta"];2939 -> 3035[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2939 -> 3036[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2940 -> 1580[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2940[label="xuu531 <= xuu541",fontsize=16,color="magenta"];2940 -> 3037[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2940 -> 3038[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2941 -> 1581[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2941[label="xuu531 <= xuu541",fontsize=16,color="magenta"];2941 -> 3039[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2941 -> 3040[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2942 -> 1582[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2942[label="xuu531 <= xuu541",fontsize=16,color="magenta"];2942 -> 3041[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2942 -> 3042[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2943 -> 1583[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2943[label="xuu531 <= xuu541",fontsize=16,color="magenta"];2943 -> 3043[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2943 -> 3044[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2944 -> 1584[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2944[label="xuu531 <= xuu541",fontsize=16,color="magenta"];2944 -> 3045[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2944 -> 3046[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2945 -> 1585[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2945[label="xuu531 <= xuu541",fontsize=16,color="magenta"];2945 -> 3047[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2945 -> 3048[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2946 -> 1586[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2946[label="xuu531 <= xuu541",fontsize=16,color="magenta"];2946 -> 3049[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2946 -> 3050[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2947 -> 1587[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2947[label="xuu531 <= xuu541",fontsize=16,color="magenta"];2947 -> 3051[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2947 -> 3052[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2948 -> 1588[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2948[label="xuu531 <= xuu541",fontsize=16,color="magenta"];2948 -> 3053[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2948 -> 3054[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2949 -> 1589[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2949[label="xuu531 <= xuu541",fontsize=16,color="magenta"];2949 -> 3055[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2949 -> 3056[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2950 -> 1590[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2950[label="xuu531 <= xuu541",fontsize=16,color="magenta"];2950 -> 3057[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2950 -> 3058[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2951 -> 1591[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2951[label="xuu531 <= xuu541",fontsize=16,color="magenta"];2951 -> 3059[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2951 -> 3060[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2952 -> 1592[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2952[label="xuu531 <= xuu541",fontsize=16,color="magenta"];2952 -> 3061[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2952 -> 3062[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2953 -> 1593[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2953[label="xuu531 <= xuu541",fontsize=16,color="magenta"];2953 -> 3063[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2953 -> 3064[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2954[label="xuu424",fontsize=16,color="green",shape="box"];2955[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2956 -> 951[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2956[label="FiniteMap.sizeFM xuu423",fontsize=16,color="magenta"];2956 -> 3065[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2957[label="FiniteMap.mkBalBranch6MkBalBranch10 xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21 xuu420 xuu421 xuu422 xuu423 xuu424 otherwise",fontsize=16,color="black",shape="box"];2957 -> 3066[label="",style="solid", color="black", weight=3]; 35.72/17.91 2958[label="FiniteMap.mkBalBranch6Single_R xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21",fontsize=16,color="black",shape="box"];2958 -> 3067[label="",style="solid", color="black", weight=3]; 35.72/17.91 2959[label="FiniteMap.mkBalBranch6Double_L (FiniteMap.Branch xuu210 xuu211 xuu212 FiniteMap.EmptyFM xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 FiniteMap.EmptyFM xuu214)",fontsize=16,color="black",shape="box"];2959 -> 3068[label="",style="solid", color="black", weight=3]; 35.72/17.91 2960[label="FiniteMap.mkBalBranch6Double_L (FiniteMap.Branch xuu210 xuu211 xuu212 (FiniteMap.Branch xuu2130 xuu2131 xuu2132 xuu2133 xuu2134) xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 (FiniteMap.Branch xuu2130 xuu2131 xuu2132 xuu2133 xuu2134) xuu214)",fontsize=16,color="black",shape="box"];2960 -> 3069[label="",style="solid", color="black", weight=3]; 35.72/17.91 2961[label="xuu210",fontsize=16,color="green",shape="box"];2962[label="xuu211",fontsize=16,color="green",shape="box"];2963[label="xuu214",fontsize=16,color="green",shape="box"];2964[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xuu17 xuu18 xuu42 xuu213",fontsize=16,color="black",shape="box"];2964 -> 3070[label="",style="solid", color="black", weight=3]; 35.72/17.91 2965[label="xuu530",fontsize=16,color="green",shape="box"];2966[label="xuu540",fontsize=16,color="green",shape="box"];2967[label="xuu530",fontsize=16,color="green",shape="box"];2968[label="xuu540",fontsize=16,color="green",shape="box"];2969[label="xuu530",fontsize=16,color="green",shape="box"];2970[label="xuu540",fontsize=16,color="green",shape="box"];2971[label="xuu530",fontsize=16,color="green",shape="box"];2972[label="xuu540",fontsize=16,color="green",shape="box"];2973[label="xuu530",fontsize=16,color="green",shape="box"];2974[label="xuu540",fontsize=16,color="green",shape="box"];2975[label="xuu530",fontsize=16,color="green",shape="box"];2976[label="xuu540",fontsize=16,color="green",shape="box"];2977[label="xuu530",fontsize=16,color="green",shape="box"];2978[label="xuu540",fontsize=16,color="green",shape="box"];2979[label="xuu530",fontsize=16,color="green",shape="box"];2980[label="xuu540",fontsize=16,color="green",shape="box"];2981[label="xuu530",fontsize=16,color="green",shape="box"];2982[label="xuu540",fontsize=16,color="green",shape="box"];2983[label="xuu530",fontsize=16,color="green",shape="box"];2984[label="xuu540",fontsize=16,color="green",shape="box"];2985[label="xuu530",fontsize=16,color="green",shape="box"];2986[label="xuu540",fontsize=16,color="green",shape="box"];2987[label="xuu530",fontsize=16,color="green",shape="box"];2988[label="xuu540",fontsize=16,color="green",shape="box"];2989[label="xuu530",fontsize=16,color="green",shape="box"];2990[label="xuu540",fontsize=16,color="green",shape="box"];2991[label="xuu530",fontsize=16,color="green",shape="box"];2992[label="xuu540",fontsize=16,color="green",shape="box"];2993 -> 54[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2993[label="xuu531 < xuu541",fontsize=16,color="magenta"];2993 -> 3071[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2993 -> 3072[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2994 -> 55[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2994[label="xuu531 < xuu541",fontsize=16,color="magenta"];2994 -> 3073[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2994 -> 3074[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2995 -> 56[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2995[label="xuu531 < xuu541",fontsize=16,color="magenta"];2995 -> 3075[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2995 -> 3076[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2996 -> 57[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2996[label="xuu531 < xuu541",fontsize=16,color="magenta"];2996 -> 3077[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2996 -> 3078[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2997 -> 58[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2997[label="xuu531 < xuu541",fontsize=16,color="magenta"];2997 -> 3079[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2997 -> 3080[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2998 -> 59[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2998[label="xuu531 < xuu541",fontsize=16,color="magenta"];2998 -> 3081[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2998 -> 3082[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2999 -> 60[label="",style="dashed", color="red", weight=0]; 35.72/17.91 2999[label="xuu531 < xuu541",fontsize=16,color="magenta"];2999 -> 3083[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 2999 -> 3084[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3000 -> 61[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3000[label="xuu531 < xuu541",fontsize=16,color="magenta"];3000 -> 3085[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3000 -> 3086[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3001 -> 62[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3001[label="xuu531 < xuu541",fontsize=16,color="magenta"];3001 -> 3087[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3001 -> 3088[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3002 -> 63[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3002[label="xuu531 < xuu541",fontsize=16,color="magenta"];3002 -> 3089[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3002 -> 3090[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3003 -> 64[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3003[label="xuu531 < xuu541",fontsize=16,color="magenta"];3003 -> 3091[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3003 -> 3092[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3004 -> 65[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3004[label="xuu531 < xuu541",fontsize=16,color="magenta"];3004 -> 3093[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3004 -> 3094[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3005 -> 66[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3005[label="xuu531 < xuu541",fontsize=16,color="magenta"];3005 -> 3095[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3005 -> 3096[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3006 -> 67[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3006[label="xuu531 < xuu541",fontsize=16,color="magenta"];3006 -> 3097[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3006 -> 3098[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3007[label="xuu531 == xuu541",fontsize=16,color="blue",shape="box"];4149[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3007 -> 4149[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4149 -> 3099[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4150[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3007 -> 4150[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4150 -> 3100[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4151[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3007 -> 4151[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4151 -> 3101[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4152[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3007 -> 4152[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4152 -> 3102[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4153[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3007 -> 4153[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4153 -> 3103[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4154[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3007 -> 4154[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4154 -> 3104[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4155[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3007 -> 4155[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4155 -> 3105[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4156[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3007 -> 4156[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4156 -> 3106[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4157[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3007 -> 4157[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4157 -> 3107[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4158[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3007 -> 4158[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4158 -> 3108[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4159[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3007 -> 4159[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4159 -> 3109[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4160[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3007 -> 4160[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4160 -> 3110[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4161[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3007 -> 4161[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4161 -> 3111[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4162[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3007 -> 4162[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4162 -> 3112[label="",style="solid", color="blue", weight=3]; 35.72/17.91 3008[label="xuu532 <= xuu542",fontsize=16,color="blue",shape="box"];4163[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4163[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4163 -> 3113[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4164[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4164[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4164 -> 3114[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4165[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4165[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4165 -> 3115[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4166[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4166[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4166 -> 3116[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4167[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4167[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4167 -> 3117[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4168[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4168[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4168 -> 3118[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4169[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4169[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4169 -> 3119[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4170[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4170[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4170 -> 3120[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4171[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4171[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4171 -> 3121[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4172[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4172[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4172 -> 3122[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4173[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4173[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4173 -> 3123[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4174[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4174[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4174 -> 3124[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4175[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4175[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4175 -> 3125[label="",style="solid", color="blue", weight=3]; 35.72/17.91 4176[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4176[label="",style="solid", color="blue", weight=9]; 35.72/17.91 4176 -> 3126[label="",style="solid", color="blue", weight=3]; 35.72/17.91 3009[label="xuu530",fontsize=16,color="green",shape="box"];3010[label="xuu540",fontsize=16,color="green",shape="box"];3011[label="xuu530",fontsize=16,color="green",shape="box"];3012[label="xuu540",fontsize=16,color="green",shape="box"];3013[label="xuu530",fontsize=16,color="green",shape="box"];3014[label="xuu540",fontsize=16,color="green",shape="box"];3015[label="xuu530",fontsize=16,color="green",shape="box"];3016[label="xuu540",fontsize=16,color="green",shape="box"];3017[label="xuu530",fontsize=16,color="green",shape="box"];3018[label="xuu540",fontsize=16,color="green",shape="box"];3019[label="xuu530",fontsize=16,color="green",shape="box"];3020[label="xuu540",fontsize=16,color="green",shape="box"];3021[label="xuu530",fontsize=16,color="green",shape="box"];3022[label="xuu540",fontsize=16,color="green",shape="box"];3023[label="xuu530",fontsize=16,color="green",shape="box"];3024[label="xuu540",fontsize=16,color="green",shape="box"];3025[label="xuu530",fontsize=16,color="green",shape="box"];3026[label="xuu540",fontsize=16,color="green",shape="box"];3027[label="xuu530",fontsize=16,color="green",shape="box"];3028[label="xuu540",fontsize=16,color="green",shape="box"];3029[label="xuu530",fontsize=16,color="green",shape="box"];3030[label="xuu540",fontsize=16,color="green",shape="box"];3031[label="xuu530",fontsize=16,color="green",shape="box"];3032[label="xuu540",fontsize=16,color="green",shape="box"];3033[label="xuu530",fontsize=16,color="green",shape="box"];3034[label="xuu540",fontsize=16,color="green",shape="box"];3035[label="xuu530",fontsize=16,color="green",shape="box"];3036[label="xuu540",fontsize=16,color="green",shape="box"];3037[label="xuu531",fontsize=16,color="green",shape="box"];3038[label="xuu541",fontsize=16,color="green",shape="box"];3039[label="xuu531",fontsize=16,color="green",shape="box"];3040[label="xuu541",fontsize=16,color="green",shape="box"];3041[label="xuu531",fontsize=16,color="green",shape="box"];3042[label="xuu541",fontsize=16,color="green",shape="box"];3043[label="xuu531",fontsize=16,color="green",shape="box"];3044[label="xuu541",fontsize=16,color="green",shape="box"];3045[label="xuu531",fontsize=16,color="green",shape="box"];3046[label="xuu541",fontsize=16,color="green",shape="box"];3047[label="xuu531",fontsize=16,color="green",shape="box"];3048[label="xuu541",fontsize=16,color="green",shape="box"];3049[label="xuu531",fontsize=16,color="green",shape="box"];3050[label="xuu541",fontsize=16,color="green",shape="box"];3051[label="xuu531",fontsize=16,color="green",shape="box"];3052[label="xuu541",fontsize=16,color="green",shape="box"];3053[label="xuu531",fontsize=16,color="green",shape="box"];3054[label="xuu541",fontsize=16,color="green",shape="box"];3055[label="xuu531",fontsize=16,color="green",shape="box"];3056[label="xuu541",fontsize=16,color="green",shape="box"];3057[label="xuu531",fontsize=16,color="green",shape="box"];3058[label="xuu541",fontsize=16,color="green",shape="box"];3059[label="xuu531",fontsize=16,color="green",shape="box"];3060[label="xuu541",fontsize=16,color="green",shape="box"];3061[label="xuu531",fontsize=16,color="green",shape="box"];3062[label="xuu541",fontsize=16,color="green",shape="box"];3063[label="xuu531",fontsize=16,color="green",shape="box"];3064[label="xuu541",fontsize=16,color="green",shape="box"];3065[label="xuu423",fontsize=16,color="green",shape="box"];3066[label="FiniteMap.mkBalBranch6MkBalBranch10 xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21 xuu420 xuu421 xuu422 xuu423 xuu424 True",fontsize=16,color="black",shape="box"];3066 -> 3127[label="",style="solid", color="black", weight=3]; 35.72/17.91 3067 -> 3208[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3067[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu420 xuu421 xuu423 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xuu17 xuu18 xuu424 xuu21)",fontsize=16,color="magenta"];3067 -> 3209[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3067 -> 3210[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3067 -> 3211[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3067 -> 3212[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3067 -> 3213[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3067 -> 3214[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3067 -> 3215[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3067 -> 3216[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3067 -> 3217[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3068[label="error []",fontsize=16,color="red",shape="box"];3069 -> 3208[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3069[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu2130 xuu2131 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xuu17 xuu18 xuu42 xuu2133) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu210 xuu211 xuu2134 xuu214)",fontsize=16,color="magenta"];3069 -> 3218[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3069 -> 3219[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3069 -> 3220[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3069 -> 3221[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3069 -> 3222[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3069 -> 3223[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3069 -> 3224[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3069 -> 3225[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3069 -> 3226[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3070 -> 579[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3070[label="FiniteMap.mkBranchResult xuu17 xuu18 xuu213 xuu42",fontsize=16,color="magenta"];3070 -> 3149[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3071[label="xuu531",fontsize=16,color="green",shape="box"];3072[label="xuu541",fontsize=16,color="green",shape="box"];3073[label="xuu531",fontsize=16,color="green",shape="box"];3074[label="xuu541",fontsize=16,color="green",shape="box"];3075[label="xuu531",fontsize=16,color="green",shape="box"];3076[label="xuu541",fontsize=16,color="green",shape="box"];3077[label="xuu531",fontsize=16,color="green",shape="box"];3078[label="xuu541",fontsize=16,color="green",shape="box"];3079[label="xuu531",fontsize=16,color="green",shape="box"];3080[label="xuu541",fontsize=16,color="green",shape="box"];3081[label="xuu531",fontsize=16,color="green",shape="box"];3082[label="xuu541",fontsize=16,color="green",shape="box"];3083[label="xuu531",fontsize=16,color="green",shape="box"];3084[label="xuu541",fontsize=16,color="green",shape="box"];3085[label="xuu531",fontsize=16,color="green",shape="box"];3086[label="xuu541",fontsize=16,color="green",shape="box"];3087[label="xuu531",fontsize=16,color="green",shape="box"];3088[label="xuu541",fontsize=16,color="green",shape="box"];3089[label="xuu531",fontsize=16,color="green",shape="box"];3090[label="xuu541",fontsize=16,color="green",shape="box"];3091[label="xuu531",fontsize=16,color="green",shape="box"];3092[label="xuu541",fontsize=16,color="green",shape="box"];3093[label="xuu531",fontsize=16,color="green",shape="box"];3094[label="xuu541",fontsize=16,color="green",shape="box"];3095[label="xuu531",fontsize=16,color="green",shape="box"];3096[label="xuu541",fontsize=16,color="green",shape="box"];3097[label="xuu531",fontsize=16,color="green",shape="box"];3098[label="xuu541",fontsize=16,color="green",shape="box"];3099 -> 587[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3099[label="xuu531 == xuu541",fontsize=16,color="magenta"];3099 -> 3150[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3099 -> 3151[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3100 -> 585[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3100[label="xuu531 == xuu541",fontsize=16,color="magenta"];3100 -> 3152[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3100 -> 3153[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3101 -> 583[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3101[label="xuu531 == xuu541",fontsize=16,color="magenta"];3101 -> 3154[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3101 -> 3155[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3102 -> 588[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3102[label="xuu531 == xuu541",fontsize=16,color="magenta"];3102 -> 3156[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3102 -> 3157[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3103 -> 591[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3103[label="xuu531 == xuu541",fontsize=16,color="magenta"];3103 -> 3158[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3103 -> 3159[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3104 -> 584[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3104[label="xuu531 == xuu541",fontsize=16,color="magenta"];3104 -> 3160[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3104 -> 3161[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3105 -> 593[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3105[label="xuu531 == xuu541",fontsize=16,color="magenta"];3105 -> 3162[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3105 -> 3163[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3106 -> 590[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3106[label="xuu531 == xuu541",fontsize=16,color="magenta"];3106 -> 3164[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3106 -> 3165[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3107 -> 592[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3107[label="xuu531 == xuu541",fontsize=16,color="magenta"];3107 -> 3166[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3107 -> 3167[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3108 -> 582[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3108[label="xuu531 == xuu541",fontsize=16,color="magenta"];3108 -> 3168[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3108 -> 3169[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3109 -> 589[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3109[label="xuu531 == xuu541",fontsize=16,color="magenta"];3109 -> 3170[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3109 -> 3171[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3110 -> 586[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3110[label="xuu531 == xuu541",fontsize=16,color="magenta"];3110 -> 3172[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3110 -> 3173[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3111 -> 581[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3111[label="xuu531 == xuu541",fontsize=16,color="magenta"];3111 -> 3174[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3111 -> 3175[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3112 -> 580[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3112[label="xuu531 == xuu541",fontsize=16,color="magenta"];3112 -> 3176[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3112 -> 3177[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3113 -> 1580[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3113[label="xuu532 <= xuu542",fontsize=16,color="magenta"];3113 -> 3178[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3113 -> 3179[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3114 -> 1581[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3114[label="xuu532 <= xuu542",fontsize=16,color="magenta"];3114 -> 3180[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3114 -> 3181[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3115 -> 1582[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3115[label="xuu532 <= xuu542",fontsize=16,color="magenta"];3115 -> 3182[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3115 -> 3183[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3116 -> 1583[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3116[label="xuu532 <= xuu542",fontsize=16,color="magenta"];3116 -> 3184[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3116 -> 3185[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3117 -> 1584[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3117[label="xuu532 <= xuu542",fontsize=16,color="magenta"];3117 -> 3186[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3117 -> 3187[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3118 -> 1585[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3118[label="xuu532 <= xuu542",fontsize=16,color="magenta"];3118 -> 3188[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3118 -> 3189[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3119 -> 1586[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3119[label="xuu532 <= xuu542",fontsize=16,color="magenta"];3119 -> 3190[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3119 -> 3191[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3120 -> 1587[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3120[label="xuu532 <= xuu542",fontsize=16,color="magenta"];3120 -> 3192[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3120 -> 3193[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3121 -> 1588[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3121[label="xuu532 <= xuu542",fontsize=16,color="magenta"];3121 -> 3194[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3121 -> 3195[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3122 -> 1589[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3122[label="xuu532 <= xuu542",fontsize=16,color="magenta"];3122 -> 3196[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3122 -> 3197[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3123 -> 1590[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3123[label="xuu532 <= xuu542",fontsize=16,color="magenta"];3123 -> 3198[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3123 -> 3199[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3124 -> 1591[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3124[label="xuu532 <= xuu542",fontsize=16,color="magenta"];3124 -> 3200[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3124 -> 3201[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3125 -> 1592[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3125[label="xuu532 <= xuu542",fontsize=16,color="magenta"];3125 -> 3202[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3125 -> 3203[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3126 -> 1593[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3126[label="xuu532 <= xuu542",fontsize=16,color="magenta"];3126 -> 3204[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3126 -> 3205[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3127[label="FiniteMap.mkBalBranch6Double_R xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21",fontsize=16,color="burlywood",shape="box"];4177[label="xuu424/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3127 -> 4177[label="",style="solid", color="burlywood", weight=9]; 35.72/17.91 4177 -> 3206[label="",style="solid", color="burlywood", weight=3]; 35.72/17.91 4178[label="xuu424/FiniteMap.Branch xuu4240 xuu4241 xuu4242 xuu4243 xuu4244",fontsize=10,color="white",style="solid",shape="box"];3127 -> 4178[label="",style="solid", color="burlywood", weight=9]; 35.72/17.91 4178 -> 3207[label="",style="solid", color="burlywood", weight=3]; 35.72/17.91 3209[label="xuu423",fontsize=16,color="green",shape="box"];3210[label="xuu421",fontsize=16,color="green",shape="box"];3211[label="xuu420",fontsize=16,color="green",shape="box"];3212[label="xuu17",fontsize=16,color="green",shape="box"];3213[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3214[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3215[label="xuu424",fontsize=16,color="green",shape="box"];3216[label="xuu21",fontsize=16,color="green",shape="box"];3217[label="xuu18",fontsize=16,color="green",shape="box"];3208[label="FiniteMap.mkBranch (Pos (Succ xuu242)) xuu243 xuu244 xuu245 (FiniteMap.mkBranch (Pos (Succ xuu246)) xuu247 xuu248 xuu249 xuu250)",fontsize=16,color="black",shape="triangle"];3208 -> 3245[label="",style="solid", color="black", weight=3]; 35.72/17.91 3218[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xuu17 xuu18 xuu42 xuu2133",fontsize=16,color="black",shape="box"];3218 -> 3246[label="",style="solid", color="black", weight=3]; 35.72/17.91 3219[label="xuu2131",fontsize=16,color="green",shape="box"];3220[label="xuu2130",fontsize=16,color="green",shape="box"];3221[label="xuu210",fontsize=16,color="green",shape="box"];3222[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3223[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3224[label="xuu2134",fontsize=16,color="green",shape="box"];3225[label="xuu214",fontsize=16,color="green",shape="box"];3226[label="xuu211",fontsize=16,color="green",shape="box"];3149[label="xuu213",fontsize=16,color="green",shape="box"];3150[label="xuu531",fontsize=16,color="green",shape="box"];3151[label="xuu541",fontsize=16,color="green",shape="box"];3152[label="xuu531",fontsize=16,color="green",shape="box"];3153[label="xuu541",fontsize=16,color="green",shape="box"];3154[label="xuu531",fontsize=16,color="green",shape="box"];3155[label="xuu541",fontsize=16,color="green",shape="box"];3156[label="xuu531",fontsize=16,color="green",shape="box"];3157[label="xuu541",fontsize=16,color="green",shape="box"];3158[label="xuu531",fontsize=16,color="green",shape="box"];3159[label="xuu541",fontsize=16,color="green",shape="box"];3160[label="xuu531",fontsize=16,color="green",shape="box"];3161[label="xuu541",fontsize=16,color="green",shape="box"];3162[label="xuu531",fontsize=16,color="green",shape="box"];3163[label="xuu541",fontsize=16,color="green",shape="box"];3164[label="xuu531",fontsize=16,color="green",shape="box"];3165[label="xuu541",fontsize=16,color="green",shape="box"];3166[label="xuu531",fontsize=16,color="green",shape="box"];3167[label="xuu541",fontsize=16,color="green",shape="box"];3168[label="xuu531",fontsize=16,color="green",shape="box"];3169[label="xuu541",fontsize=16,color="green",shape="box"];3170[label="xuu531",fontsize=16,color="green",shape="box"];3171[label="xuu541",fontsize=16,color="green",shape="box"];3172[label="xuu531",fontsize=16,color="green",shape="box"];3173[label="xuu541",fontsize=16,color="green",shape="box"];3174[label="xuu531",fontsize=16,color="green",shape="box"];3175[label="xuu541",fontsize=16,color="green",shape="box"];3176[label="xuu531",fontsize=16,color="green",shape="box"];3177[label="xuu541",fontsize=16,color="green",shape="box"];3178[label="xuu532",fontsize=16,color="green",shape="box"];3179[label="xuu542",fontsize=16,color="green",shape="box"];3180[label="xuu532",fontsize=16,color="green",shape="box"];3181[label="xuu542",fontsize=16,color="green",shape="box"];3182[label="xuu532",fontsize=16,color="green",shape="box"];3183[label="xuu542",fontsize=16,color="green",shape="box"];3184[label="xuu532",fontsize=16,color="green",shape="box"];3185[label="xuu542",fontsize=16,color="green",shape="box"];3186[label="xuu532",fontsize=16,color="green",shape="box"];3187[label="xuu542",fontsize=16,color="green",shape="box"];3188[label="xuu532",fontsize=16,color="green",shape="box"];3189[label="xuu542",fontsize=16,color="green",shape="box"];3190[label="xuu532",fontsize=16,color="green",shape="box"];3191[label="xuu542",fontsize=16,color="green",shape="box"];3192[label="xuu532",fontsize=16,color="green",shape="box"];3193[label="xuu542",fontsize=16,color="green",shape="box"];3194[label="xuu532",fontsize=16,color="green",shape="box"];3195[label="xuu542",fontsize=16,color="green",shape="box"];3196[label="xuu532",fontsize=16,color="green",shape="box"];3197[label="xuu542",fontsize=16,color="green",shape="box"];3198[label="xuu532",fontsize=16,color="green",shape="box"];3199[label="xuu542",fontsize=16,color="green",shape="box"];3200[label="xuu532",fontsize=16,color="green",shape="box"];3201[label="xuu542",fontsize=16,color="green",shape="box"];3202[label="xuu532",fontsize=16,color="green",shape="box"];3203[label="xuu542",fontsize=16,color="green",shape="box"];3204[label="xuu532",fontsize=16,color="green",shape="box"];3205[label="xuu542",fontsize=16,color="green",shape="box"];3206[label="FiniteMap.mkBalBranch6Double_R xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 FiniteMap.EmptyFM) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 FiniteMap.EmptyFM) xuu21",fontsize=16,color="black",shape="box"];3206 -> 3247[label="",style="solid", color="black", weight=3]; 35.72/17.91 3207[label="FiniteMap.mkBalBranch6Double_R xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 (FiniteMap.Branch xuu4240 xuu4241 xuu4242 xuu4243 xuu4244)) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 (FiniteMap.Branch xuu4240 xuu4241 xuu4242 xuu4243 xuu4244)) xuu21",fontsize=16,color="black",shape="box"];3207 -> 3248[label="",style="solid", color="black", weight=3]; 35.72/17.91 3245 -> 579[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3245[label="FiniteMap.mkBranchResult xuu243 xuu244 (FiniteMap.mkBranch (Pos (Succ xuu246)) xuu247 xuu248 xuu249 xuu250) xuu245",fontsize=16,color="magenta"];3245 -> 3249[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3245 -> 3250[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3245 -> 3251[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3245 -> 3252[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3246 -> 579[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3246[label="FiniteMap.mkBranchResult xuu17 xuu18 xuu2133 xuu42",fontsize=16,color="magenta"];3246 -> 3253[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3247[label="error []",fontsize=16,color="red",shape="box"];3248 -> 3208[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3248[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu4240 xuu4241 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu420 xuu421 xuu423 xuu4243) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xuu17 xuu18 xuu4244 xuu21)",fontsize=16,color="magenta"];3248 -> 3254[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3248 -> 3255[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3248 -> 3256[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3248 -> 3257[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3248 -> 3258[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3248 -> 3259[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3248 -> 3260[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3248 -> 3261[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3248 -> 3262[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3249[label="xuu243",fontsize=16,color="green",shape="box"];3250[label="xuu244",fontsize=16,color="green",shape="box"];3251[label="FiniteMap.mkBranch (Pos (Succ xuu246)) xuu247 xuu248 xuu249 xuu250",fontsize=16,color="black",shape="triangle"];3251 -> 3263[label="",style="solid", color="black", weight=3]; 35.72/17.91 3252[label="xuu245",fontsize=16,color="green",shape="box"];3253[label="xuu2133",fontsize=16,color="green",shape="box"];3254 -> 3251[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3254[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu420 xuu421 xuu423 xuu4243",fontsize=16,color="magenta"];3254 -> 3264[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3254 -> 3265[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3254 -> 3266[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3254 -> 3267[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3254 -> 3268[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3255[label="xuu4241",fontsize=16,color="green",shape="box"];3256[label="xuu4240",fontsize=16,color="green",shape="box"];3257[label="xuu17",fontsize=16,color="green",shape="box"];3258[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3259[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3260[label="xuu4244",fontsize=16,color="green",shape="box"];3261[label="xuu21",fontsize=16,color="green",shape="box"];3262[label="xuu18",fontsize=16,color="green",shape="box"];3263 -> 579[label="",style="dashed", color="red", weight=0]; 35.72/17.91 3263[label="FiniteMap.mkBranchResult xuu247 xuu248 xuu250 xuu249",fontsize=16,color="magenta"];3263 -> 3269[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3263 -> 3270[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3263 -> 3271[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3263 -> 3272[label="",style="dashed", color="magenta", weight=3]; 35.72/17.91 3264[label="xuu420",fontsize=16,color="green",shape="box"];3265[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3266[label="xuu423",fontsize=16,color="green",shape="box"];3267[label="xuu4243",fontsize=16,color="green",shape="box"];3268[label="xuu421",fontsize=16,color="green",shape="box"];3269[label="xuu247",fontsize=16,color="green",shape="box"];3270[label="xuu248",fontsize=16,color="green",shape="box"];3271[label="xuu250",fontsize=16,color="green",shape="box"];3272[label="xuu249",fontsize=16,color="green",shape="box"];} 35.72/17.91 35.72/17.91 ---------------------------------------- 35.72/17.91 35.72/17.91 (16) 35.72/17.91 Complex Obligation (AND) 35.72/17.91 35.72/17.91 ---------------------------------------- 35.72/17.91 35.72/17.91 (17) 35.72/17.91 Obligation: 35.72/17.91 Q DP problem: 35.72/17.91 The TRS P consists of the following rules: 35.72/17.91 35.72/17.91 new_primCmpNat(Succ(xuu3110000), Succ(xuu6000)) -> new_primCmpNat(xuu3110000, xuu6000) 35.72/17.91 35.72/17.91 R is empty. 35.72/17.91 Q is empty. 35.72/17.91 We have to consider all minimal (P,Q,R)-chains. 35.72/17.91 ---------------------------------------- 35.72/17.91 35.72/17.91 (18) QDPSizeChangeProof (EQUIVALENT) 35.72/17.91 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 35.72/17.91 35.72/17.91 From the DPs we obtained the following set of size-change graphs: 35.72/17.91 *new_primCmpNat(Succ(xuu3110000), Succ(xuu6000)) -> new_primCmpNat(xuu3110000, xuu6000) 35.72/17.91 The graph contains the following edges 1 > 1, 2 > 2 35.72/17.91 35.72/17.91 35.72/17.91 ---------------------------------------- 35.72/17.91 35.72/17.91 (19) 35.72/17.91 YES 35.72/17.91 35.72/17.91 ---------------------------------------- 35.72/17.91 35.72/17.91 (20) 35.72/17.91 Obligation: 35.72/17.91 Q DP problem: 35.72/17.91 The TRS P consists of the following rules: 35.72/17.91 35.72/17.91 new_compare2(Just(xuu530), Just(xuu540), False, app(ty_Maybe, app(app(app(ty_@3, bab), bac), bad)), be) -> new_ltEs0(xuu530, xuu540, bab, bac, bad) 35.72/17.91 new_primCompAux(xuu311000, xuu600, xuu48, app(ty_[], cad)) -> new_compare0(xuu311000, xuu600, cad) 35.72/17.91 new_primCompAux(xuu311000, xuu600, xuu48, app(ty_Maybe, cae)) -> new_compare4(xuu311000, xuu600, cae) 35.72/17.91 new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, bcc), app(ty_[], bda)), be) -> new_ltEs1(xuu531, xuu541, bda) 35.72/17.91 new_lt2(Just(xuu311000), Just(xuu600), cah) -> new_compare22(xuu311000, xuu600, new_esEs9(xuu311000, xuu600, cah), cah) 35.72/17.91 new_compare23(xuu124, xuu125, xuu126, xuu127, False, app(ty_Maybe, cdc), ccf) -> new_lt2(xuu124, xuu126, cdc) 35.72/17.91 new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, eb, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs0(xuu532, xuu542, gh, ha, hb) 35.72/17.91 new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, app(ty_[], beg), beb, bec) -> new_lt1(xuu111, xuu114, beg) 35.72/17.91 new_lt(Left(xuu311000), Left(xuu600), h, ba) -> new_compare2(xuu311000, xuu600, new_esEs4(xuu311000, xuu600, h), h, ba) 35.72/17.91 new_compare1(@3(xuu311000, xuu311001, xuu311002), @3(xuu600, xuu601, xuu602), bde, bdf, bdg) -> new_compare21(xuu311000, xuu311001, xuu311002, xuu600, xuu601, xuu602, new_asAs(new_esEs6(xuu311000, xuu600, bde), new_asAs(new_esEs7(xuu311001, xuu601, bdf), new_esEs8(xuu311002, xuu602, bdg))), bde, bdf, bdg) 35.72/17.91 new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), app(app(app(ty_@3, ed), ee), ef), eb, ec) -> new_lt0(xuu530, xuu540, ed, ee, ef) 35.72/17.91 new_ltEs(Left(xuu530), Left(xuu540), app(ty_[], ca), bd) -> new_ltEs1(xuu530, xuu540, ca) 35.72/17.91 new_lt(Right(xuu311000), Right(xuu600), h, ba) -> new_compare20(xuu311000, xuu600, new_esEs5(xuu311000, xuu600, ba), h, ba) 35.72/17.91 new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), app(app(app(ty_@3, fg), fh), ga)), ec), be) -> new_lt0(xuu531, xuu541, fg, fh, ga) 35.72/17.91 new_compare20(xuu60, xuu61, False, ceh, app(ty_Maybe, cfg)) -> new_ltEs2(xuu60, xuu61, cfg) 35.72/17.91 new_compare2(Right(xuu530), Right(xuu540), False, app(app(ty_Either, ce), app(app(app(ty_@3, da), db), dc)), be) -> new_ltEs0(xuu530, xuu540, da, db, dc) 35.72/17.91 new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, bcc), app(app(ty_Either, bcd), bce)), be) -> new_ltEs(xuu531, xuu541, bcd, bce) 35.72/17.91 new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), bcc, app(app(ty_@2, bdc), bdd)) -> new_ltEs3(xuu531, xuu541, bdc, bdd) 35.72/17.91 new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), bcc, app(app(ty_Either, bcd), bce)) -> new_ltEs(xuu531, xuu541, bcd, bce) 35.72/17.91 new_compare2(Right(xuu530), Right(xuu540), False, app(app(ty_Either, ce), app(app(ty_Either, cf), cg)), be) -> new_ltEs(xuu530, xuu540, cf, cg) 35.72/17.91 new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), app(app(ty_@2, bca), bcb), bbc) -> new_lt3(xuu530, xuu540, bca, bcb) 35.72/17.91 new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), eb), app(app(ty_@2, he), hf)), be) -> new_ltEs3(xuu532, xuu542, he, hf) 35.72/17.91 new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), bcc, app(ty_Maybe, bdb)) -> new_ltEs2(xuu531, xuu541, bdb) 35.72/17.91 new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, beb, app(app(ty_Either, bge), bgf)) -> new_ltEs(xuu113, xuu116, bge, bgf) 35.72/17.91 new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), app(ty_Maybe, eh), eb, ec) -> new_lt2(xuu530, xuu540, eh) 35.72/17.91 new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, app(app(ty_Either, fd), ff), ec) -> new_lt(xuu531, xuu541, fd, ff) 35.72/17.91 new_compare23(xuu124, xuu125, xuu126, xuu127, False, cdf, app(app(app(ty_@3, cea), ceb), cec)) -> new_ltEs0(xuu125, xuu127, cea, ceb, cec) 35.72/17.91 new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), app(app(ty_Either, fd), ff)), ec), be) -> new_lt(xuu531, xuu541, fd, ff) 35.72/17.91 new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, app(app(app(ty_@3, bbd), bbe), bbf)), bbc), be) -> new_lt0(xuu530, xuu540, bbd, bbe, bbf) 35.72/17.91 new_lt1(:(xuu311000, xuu311001), :(xuu600, xuu601), bhf) -> new_primCompAux(xuu311000, xuu600, new_compare3(xuu311001, xuu601, bhf), bhf) 35.72/17.91 new_compare(Left(xuu311000), Left(xuu600), h, ba) -> new_compare2(xuu311000, xuu600, new_esEs4(xuu311000, xuu600, h), h, ba) 35.72/17.91 new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, app(app(ty_@2, fa), fb)), eb), ec), be) -> new_lt3(xuu530, xuu540, fa, fb) 35.72/17.91 new_ltEs(Left(xuu530), Left(xuu540), app(app(ty_Either, bb), bc), bd) -> new_ltEs(xuu530, xuu540, bb, bc) 35.72/17.91 new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, beb, app(app(app(ty_@3, bgg), bgh), bha)) -> new_ltEs0(xuu113, xuu116, bgg, bgh, bha) 35.72/17.91 new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, eb, app(ty_[], hc)) -> new_ltEs1(xuu532, xuu542, hc) 35.72/17.91 new_compare22(xuu87, xuu88, False, app(app(ty_@2, cbh), cca)) -> new_ltEs3(xuu87, xuu88, cbh, cca) 35.72/17.91 new_compare2(Just(xuu530), Just(xuu540), False, app(ty_Maybe, app(app(ty_Either, hh), baa)), be) -> new_ltEs(xuu530, xuu540, hh, baa) 35.72/17.91 new_lt0(@3(xuu311000, xuu311001, xuu311002), @3(xuu600, xuu601, xuu602), bde, bdf, bdg) -> new_compare21(xuu311000, xuu311001, xuu311002, xuu600, xuu601, xuu602, new_asAs(new_esEs6(xuu311000, xuu600, bde), new_asAs(new_esEs7(xuu311001, xuu601, bdf), new_esEs8(xuu311002, xuu602, bdg))), bde, bdf, bdg) 35.72/17.91 new_compare23(xuu124, xuu125, xuu126, xuu127, False, cdf, app(ty_[], ced)) -> new_ltEs1(xuu125, xuu127, ced) 35.72/17.91 new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, app(app(ty_Either, bba), bbb)), bbc), be) -> new_lt(xuu530, xuu540, bba, bbb) 35.72/17.91 new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, app(ty_[], gb), ec) -> new_lt1(xuu531, xuu541, gb) 35.72/17.91 new_compare2(Left(xuu530), Left(xuu540), False, app(app(ty_Either, app(app(app(ty_@3, bf), bg), bh)), bd), be) -> new_ltEs0(xuu530, xuu540, bf, bg, bh) 35.72/17.91 new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), app(app(ty_Either, dh), ea), eb, ec) -> new_lt(xuu530, xuu540, dh, ea) 35.72/17.91 new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), bcc, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs0(xuu531, xuu541, bcf, bcg, bch) 35.72/17.91 new_compare0(:(xuu311000, xuu311001), :(xuu600, xuu601), bhf) -> new_compare0(xuu311001, xuu601, bhf) 35.72/17.91 new_ltEs(Left(xuu530), Left(xuu540), app(app(app(ty_@3, bf), bg), bh), bd) -> new_ltEs0(xuu530, xuu540, bf, bg, bh) 35.72/17.91 new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, beb, app(ty_Maybe, bhc)) -> new_ltEs2(xuu113, xuu116, bhc) 35.72/17.91 new_compare2(Right(xuu530), Right(xuu540), False, app(app(ty_Either, ce), app(ty_Maybe, de)), be) -> new_ltEs2(xuu530, xuu540, de) 35.72/17.91 new_compare23(xuu124, xuu125, xuu126, xuu127, False, app(ty_[], cdb), ccf) -> new_lt1(xuu124, xuu126, cdb) 35.72/17.91 new_compare20(xuu60, xuu61, False, ceh, app(app(ty_@2, cfh), cga)) -> new_ltEs3(xuu60, xuu61, cfh, cga) 35.72/17.91 new_compare2(Just(xuu530), Just(xuu540), False, app(ty_Maybe, app(app(ty_@2, bag), bah)), be) -> new_ltEs3(xuu530, xuu540, bag, bah) 35.72/17.91 new_ltEs(Right(xuu530), Right(xuu540), ce, app(ty_[], dd)) -> new_ltEs1(xuu530, xuu540, dd) 35.72/17.91 new_ltEs2(Just(xuu530), Just(xuu540), app(ty_Maybe, baf)) -> new_ltEs2(xuu530, xuu540, baf) 35.72/17.91 new_compare23(xuu124, xuu125, xuu126, xuu127, False, app(app(app(ty_@3, ccg), cch), cda), ccf) -> new_lt0(xuu124, xuu126, ccg, cch, cda) 35.72/17.91 new_compare23(xuu124, xuu125, xuu126, xuu127, False, app(app(ty_Either, ccd), cce), ccf) -> new_lt(xuu124, xuu126, ccd, cce) 35.72/17.91 new_compare23(xuu124, xuu125, xuu126, xuu127, False, app(app(ty_@2, cdd), cde), ccf) -> new_lt3(xuu124, xuu126, cdd, cde) 35.72/17.91 new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), app(app(ty_@2, fa), fb), eb, ec) -> new_lt3(xuu530, xuu540, fa, fb) 35.72/17.91 new_compare22(xuu87, xuu88, False, app(ty_Maybe, cbg)) -> new_ltEs2(xuu87, xuu88, cbg) 35.72/17.91 new_compare23(xuu124, xuu125, xuu126, xuu127, False, cdf, app(app(ty_Either, cdg), cdh)) -> new_ltEs(xuu125, xuu127, cdg, cdh) 35.72/17.91 new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, app(ty_Maybe, bgb), bec) -> new_lt2(xuu112, xuu115, bgb) 35.72/17.91 new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), app(ty_[], gb)), ec), be) -> new_lt1(xuu531, xuu541, gb) 35.72/17.91 new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, beb, app(ty_[], bhb)) -> new_ltEs1(xuu113, xuu116, bhb) 35.72/17.91 new_ltEs2(Just(xuu530), Just(xuu540), app(ty_[], bae)) -> new_ltEs1(xuu530, xuu540, bae) 35.72/17.91 new_compare22(xuu87, xuu88, False, app(app(ty_Either, cba), cbb)) -> new_ltEs(xuu87, xuu88, cba, cbb) 35.72/17.91 new_primCompAux(xuu311000, xuu600, xuu48, app(app(ty_Either, bhg), bhh)) -> new_compare(xuu311000, xuu600, bhg, bhh) 35.72/17.91 new_ltEs2(Just(xuu530), Just(xuu540), app(app(ty_@2, bag), bah)) -> new_ltEs3(xuu530, xuu540, bag, bah) 35.72/17.91 new_compare2(Left(xuu530), Left(xuu540), False, app(app(ty_Either, app(app(ty_Either, bb), bc)), bd), be) -> new_ltEs(xuu530, xuu540, bb, bc) 35.72/17.91 new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), app(app(ty_@2, gd), ge)), ec), be) -> new_lt3(xuu531, xuu541, gd, ge) 35.72/17.91 new_lt3(@2(xuu311000, xuu311001), @2(xuu600, xuu601), ccb, ccc) -> new_compare23(xuu311000, xuu311001, xuu600, xuu601, new_asAs(new_esEs10(xuu311000, xuu600, ccb), new_esEs11(xuu311001, xuu601, ccc)), ccb, ccc) 35.72/17.91 new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, app(app(ty_@2, gd), ge), ec) -> new_lt3(xuu531, xuu541, gd, ge) 35.72/17.91 new_ltEs(Right(xuu530), Right(xuu540), ce, app(ty_Maybe, de)) -> new_ltEs2(xuu530, xuu540, de) 35.72/17.91 new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, app(app(app(ty_@3, bff), bfg), bfh), bec) -> new_lt0(xuu112, xuu115, bff, bfg, bfh) 35.72/17.91 new_compare2(xuu53, xuu54, False, app(ty_[], hg), be) -> new_compare0(xuu53, xuu54, hg) 35.72/17.91 new_ltEs(Right(xuu530), Right(xuu540), ce, app(app(ty_Either, cf), cg)) -> new_ltEs(xuu530, xuu540, cf, cg) 35.72/17.91 new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), eb), app(app(ty_Either, gf), gg)), be) -> new_ltEs(xuu532, xuu542, gf, gg) 35.72/17.91 new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, app(app(ty_Either, dh), ea)), eb), ec), be) -> new_lt(xuu530, xuu540, dh, ea) 35.72/17.91 new_compare20(xuu60, xuu61, False, ceh, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs0(xuu60, xuu61, cfc, cfd, cfe) 35.72/17.91 new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, app(ty_[], bga), bec) -> new_lt1(xuu112, xuu115, bga) 35.72/17.91 new_compare2(Left(xuu530), Left(xuu540), False, app(app(ty_Either, app(ty_[], ca)), bd), be) -> new_ltEs1(xuu530, xuu540, ca) 35.72/17.91 new_compare2(Left(xuu530), Left(xuu540), False, app(app(ty_Either, app(app(ty_@2, cc), cd)), bd), be) -> new_ltEs3(xuu530, xuu540, cc, cd) 35.72/17.91 new_ltEs1(xuu53, xuu54, hg) -> new_compare0(xuu53, xuu54, hg) 35.72/17.91 new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), eb), app(app(app(ty_@3, gh), ha), hb)), be) -> new_ltEs0(xuu532, xuu542, gh, ha, hb) 35.72/17.91 new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, eb, app(app(ty_Either, gf), gg)) -> new_ltEs(xuu532, xuu542, gf, gg) 35.72/17.91 new_ltEs2(Just(xuu530), Just(xuu540), app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs0(xuu530, xuu540, bab, bac, bad) 35.72/17.91 new_compare2(Just(xuu530), Just(xuu540), False, app(ty_Maybe, app(ty_Maybe, baf)), be) -> new_ltEs2(xuu530, xuu540, baf) 35.72/17.91 new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, bcc), app(app(ty_@2, bdc), bdd)), be) -> new_ltEs3(xuu531, xuu541, bdc, bdd) 35.72/17.91 new_ltEs(Left(xuu530), Left(xuu540), app(app(ty_@2, cc), cd), bd) -> new_ltEs3(xuu530, xuu540, cc, cd) 35.72/17.91 new_lt1(:(xuu311000, xuu311001), :(xuu600, xuu601), bhf) -> new_compare0(xuu311001, xuu601, bhf) 35.72/17.91 new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), eb), app(ty_Maybe, hd)), be) -> new_ltEs2(xuu532, xuu542, hd) 35.72/17.91 new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), app(app(ty_Either, bba), bbb), bbc) -> new_lt(xuu530, xuu540, bba, bbb) 35.72/17.91 new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, app(app(app(ty_@3, fg), fh), ga), ec) -> new_lt0(xuu531, xuu541, fg, fh, ga) 35.72/17.91 new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, app(ty_[], eg)), eb), ec), be) -> new_lt1(xuu530, xuu540, eg) 35.72/17.91 new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, eb, app(app(ty_@2, he), hf)) -> new_ltEs3(xuu532, xuu542, he, hf) 35.72/17.91 new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), eb), app(ty_[], hc)), be) -> new_ltEs1(xuu532, xuu542, hc) 35.72/17.91 new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, app(app(ty_@2, bgc), bgd), bec) -> new_lt3(xuu112, xuu115, bgc, bgd) 35.72/17.91 new_compare2(Just(xuu530), Just(xuu540), False, app(ty_Maybe, app(ty_[], bae)), be) -> new_ltEs1(xuu530, xuu540, bae) 35.72/17.91 new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, app(ty_Maybe, beh), beb, bec) -> new_lt2(xuu111, xuu114, beh) 35.72/17.91 new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, app(app(ty_Either, bfd), bfe), bec) -> new_lt(xuu112, xuu115, bfd, bfe) 35.72/17.91 new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, app(ty_Maybe, bbh)), bbc), be) -> new_lt2(xuu530, xuu540, bbh) 35.72/17.91 new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), app(app(app(ty_@3, bbd), bbe), bbf), bbc) -> new_lt0(xuu530, xuu540, bbd, bbe, bbf) 35.72/17.91 new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, beb, app(app(ty_@2, bhd), bhe)) -> new_ltEs3(xuu113, xuu116, bhd, bhe) 35.72/17.91 new_ltEs(Right(xuu530), Right(xuu540), ce, app(app(ty_@2, df), dg)) -> new_ltEs3(xuu530, xuu540, df, dg) 35.72/17.91 new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, bcc), app(app(app(ty_@3, bcf), bcg), bch)), be) -> new_ltEs0(xuu531, xuu541, bcf, bcg, bch) 35.72/17.91 new_primCompAux(xuu311000, xuu600, xuu48, app(app(ty_@2, caf), cag)) -> new_compare5(xuu311000, xuu600, caf, cag) 35.72/17.91 new_compare0(:(xuu311000, xuu311001), :(xuu600, xuu601), bhf) -> new_primCompAux(xuu311000, xuu600, new_compare3(xuu311001, xuu601, bhf), bhf) 35.72/17.91 new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), app(ty_[], bbg), bbc) -> new_lt1(xuu530, xuu540, bbg) 35.72/17.91 new_compare20(xuu60, xuu61, False, ceh, app(ty_[], cff)) -> new_ltEs1(xuu60, xuu61, cff) 35.72/17.91 new_compare20(xuu60, xuu61, False, ceh, app(app(ty_Either, cfa), cfb)) -> new_ltEs(xuu60, xuu61, cfa, cfb) 35.72/17.91 new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, eb, app(ty_Maybe, hd)) -> new_ltEs2(xuu532, xuu542, hd) 35.72/17.91 new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), app(ty_Maybe, bbh), bbc) -> new_lt2(xuu530, xuu540, bbh) 35.72/17.91 new_compare22(xuu87, xuu88, False, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs0(xuu87, xuu88, cbc, cbd, cbe) 35.72/17.91 new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, app(app(app(ty_@3, ed), ee), ef)), eb), ec), be) -> new_lt0(xuu530, xuu540, ed, ee, ef) 35.72/17.91 new_compare22(xuu87, xuu88, False, app(ty_[], cbf)) -> new_ltEs1(xuu87, xuu88, cbf) 35.72/17.91 new_compare(Right(xuu311000), Right(xuu600), h, ba) -> new_compare20(xuu311000, xuu600, new_esEs5(xuu311000, xuu600, ba), h, ba) 35.72/17.91 new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), app(ty_[], eg), eb, ec) -> new_lt1(xuu530, xuu540, eg) 35.72/17.91 new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), app(ty_Maybe, gc)), ec), be) -> new_lt2(xuu531, xuu541, gc) 35.72/17.91 new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, app(app(app(ty_@3, bed), bee), bef), beb, bec) -> new_lt0(xuu111, xuu114, bed, bee, bef) 35.72/17.91 new_compare5(@2(xuu311000, xuu311001), @2(xuu600, xuu601), ccb, ccc) -> new_compare23(xuu311000, xuu311001, xuu600, xuu601, new_asAs(new_esEs10(xuu311000, xuu600, ccb), new_esEs11(xuu311001, xuu601, ccc)), ccb, ccc) 35.72/17.91 new_compare4(Just(xuu311000), Just(xuu600), cah) -> new_compare22(xuu311000, xuu600, new_esEs9(xuu311000, xuu600, cah), cah) 35.72/17.91 new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, app(ty_[], bbg)), bbc), be) -> new_lt1(xuu530, xuu540, bbg) 35.72/17.91 new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, bcc), app(ty_Maybe, bdb)), be) -> new_ltEs2(xuu531, xuu541, bdb) 35.72/17.91 new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, app(ty_Maybe, gc), ec) -> new_lt2(xuu531, xuu541, gc) 35.72/17.91 new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), bcc, app(ty_[], bda)) -> new_ltEs1(xuu531, xuu541, bda) 35.72/17.91 new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, app(app(ty_@2, bca), bcb)), bbc), be) -> new_lt3(xuu530, xuu540, bca, bcb) 35.72/17.91 new_compare2(Right(xuu530), Right(xuu540), False, app(app(ty_Either, ce), app(app(ty_@2, df), dg)), be) -> new_ltEs3(xuu530, xuu540, df, dg) 35.72/17.91 new_ltEs2(Just(xuu530), Just(xuu540), app(app(ty_Either, hh), baa)) -> new_ltEs(xuu530, xuu540, hh, baa) 35.72/17.91 new_compare23(xuu124, xuu125, xuu126, xuu127, False, cdf, app(app(ty_@2, cef), ceg)) -> new_ltEs3(xuu125, xuu127, cef, ceg) 35.72/17.91 new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, app(ty_Maybe, eh)), eb), ec), be) -> new_lt2(xuu530, xuu540, eh) 35.72/17.91 new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, app(app(ty_Either, bdh), bea), beb, bec) -> new_lt(xuu111, xuu114, bdh, bea) 35.72/17.91 new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, app(app(ty_@2, bfa), bfb), beb, bec) -> new_lt3(xuu111, xuu114, bfa, bfb) 35.72/17.91 new_compare2(Right(xuu530), Right(xuu540), False, app(app(ty_Either, ce), app(ty_[], dd)), be) -> new_ltEs1(xuu530, xuu540, dd) 35.72/17.91 new_primCompAux(xuu311000, xuu600, xuu48, app(app(app(ty_@3, caa), cab), cac)) -> new_compare1(xuu311000, xuu600, caa, cab, cac) 35.72/17.91 new_compare23(xuu124, xuu125, xuu126, xuu127, False, cdf, app(ty_Maybe, cee)) -> new_ltEs2(xuu125, xuu127, cee) 35.72/17.91 new_ltEs(Right(xuu530), Right(xuu540), ce, app(app(app(ty_@3, da), db), dc)) -> new_ltEs0(xuu530, xuu540, da, db, dc) 35.72/17.91 new_compare2(Left(xuu530), Left(xuu540), False, app(app(ty_Either, app(ty_Maybe, cb)), bd), be) -> new_ltEs2(xuu530, xuu540, cb) 35.72/17.91 new_ltEs(Left(xuu530), Left(xuu540), app(ty_Maybe, cb), bd) -> new_ltEs2(xuu530, xuu540, cb) 35.72/17.91 35.72/17.91 The TRS R consists of the following rules: 35.72/17.91 35.72/17.91 new_esEs28(xuu531, xuu541, app(ty_Maybe, gc)) -> new_esEs24(xuu531, xuu541, gc) 35.72/17.91 new_esEs30(xuu112, xuu115, ty_Ordering) -> new_esEs25(xuu112, xuu115) 35.72/17.91 new_ltEs20(xuu60, xuu61, app(ty_[], cff)) -> new_ltEs11(xuu60, xuu61, cff) 35.72/17.91 new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, chg), chh), daa), chd) -> new_esEs17(xuu3110000, xuu6000, chg, chh, daa) 35.72/17.91 new_lt21(xuu112, xuu115, app(app(ty_@2, bgc), bgd)) -> new_lt15(xuu112, xuu115, bgc, bgd) 35.72/17.91 new_primCmpInt(Neg(Succ(xuu3110000)), Pos(xuu600)) -> LT 35.72/17.91 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 35.72/17.91 new_primPlusNat0(Zero, Zero) -> Zero 35.72/17.91 new_lt23(xuu530, xuu540, ty_Integer) -> new_lt10(xuu530, xuu540) 35.72/17.91 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.91 new_lt13(xuu31100, xuu60, bhf) -> new_esEs26(new_compare3(xuu31100, xuu60, bhf)) 35.72/17.91 new_pePe(True, xuu214) -> True 35.72/17.91 new_ltEs19(xuu113, xuu116, app(app(app(ty_@3, bgg), bgh), bha)) -> new_ltEs6(xuu113, xuu116, bgg, bgh, bha) 35.72/17.91 new_ltEs7(xuu53, xuu54) -> new_fsEs(new_compare19(xuu53, xuu54)) 35.72/17.91 new_esEs8(xuu311002, xuu602, app(ty_[], ega)) -> new_esEs22(xuu311002, xuu602, ega) 35.72/17.91 new_ltEs23(xuu531, xuu541, ty_Char) -> new_ltEs16(xuu531, xuu541) 35.72/17.91 new_esEs6(xuu311000, xuu600, app(app(app(ty_@3, eea), eeb), eec)) -> new_esEs17(xuu311000, xuu600, eea, eeb, eec) 35.72/17.91 new_esEs20(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs13(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 35.72/17.91 new_esEs33(xuu3110002, xuu6002, app(app(app(ty_@3, dgf), dgg), dgh)) -> new_esEs17(xuu3110002, xuu6002, dgf, dgg, dgh) 35.72/17.91 new_ltEs24(xuu87, xuu88, ty_Int) -> new_ltEs4(xuu87, xuu88) 35.72/17.91 new_esEs39(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.91 new_esEs27(xuu530, xuu540, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs17(xuu530, xuu540, ed, ee, ef) 35.72/17.91 new_esEs30(xuu112, xuu115, ty_Double) -> new_esEs20(xuu112, xuu115) 35.72/17.91 new_esEs9(xuu311000, xuu600, ty_Integer) -> new_esEs23(xuu311000, xuu600) 35.72/17.91 new_esEs18(True, True) -> True 35.72/17.91 new_lt22(xuu124, xuu126, ty_Float) -> new_lt11(xuu124, xuu126) 35.72/17.91 new_esEs36(xuu124, xuu126, ty_Integer) -> new_esEs23(xuu124, xuu126) 35.72/17.91 new_lt6(xuu531, xuu541, app(app(ty_Either, fd), ff)) -> new_lt4(xuu531, xuu541, fd, ff) 35.72/17.91 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 35.72/17.91 new_compare14(xuu154, xuu155, True, ebc, ebd) -> LT 35.72/17.91 new_ltEs5(Right(xuu530), Right(xuu540), ce, ty_Integer) -> new_ltEs8(xuu530, xuu540) 35.72/17.91 new_primCmpInt(Pos(Zero), Neg(Succ(xuu6000))) -> GT 35.72/17.91 new_lt23(xuu530, xuu540, app(app(ty_Either, bba), bbb)) -> new_lt4(xuu530, xuu540, bba, bbb) 35.72/17.91 new_esEs16(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), ebe, ebf) -> new_asAs(new_esEs39(xuu3110000, xuu6000, ebe), new_esEs40(xuu3110001, xuu6001, ebf)) 35.72/17.91 new_compare28(LT, LT) -> EQ 35.72/17.91 new_esEs32(xuu3110001, xuu6001, app(ty_Ratio, dga)) -> new_esEs21(xuu3110001, xuu6001, dga) 35.72/17.91 new_ltEs22(xuu125, xuu127, ty_Double) -> new_ltEs7(xuu125, xuu127) 35.72/17.91 new_esEs29(xuu111, xuu114, app(ty_[], beg)) -> new_esEs22(xuu111, xuu114, beg) 35.72/17.91 new_primCmpInt(Neg(Succ(xuu3110000)), Neg(xuu600)) -> new_primCmpNat0(xuu600, Succ(xuu3110000)) 35.72/17.91 new_esEs5(xuu311000, xuu600, app(ty_Ratio, ehb)) -> new_esEs21(xuu311000, xuu600, ehb) 35.72/17.91 new_ltEs12(Just(xuu530), Just(xuu540), ty_Integer) -> new_ltEs8(xuu530, xuu540) 35.72/17.91 new_compare17(xuu311000, xuu600, ty_Float) -> new_compare27(xuu311000, xuu600) 35.72/17.91 new_lt20(xuu111, xuu114, ty_Double) -> new_lt9(xuu111, xuu114) 35.72/17.91 new_esEs11(xuu311001, xuu601, ty_@0) -> new_esEs14(xuu311001, xuu601) 35.72/17.91 new_esEs37(xuu3110000, xuu6000, app(app(ty_Either, fag), fah)) -> new_esEs19(xuu3110000, xuu6000, fag, fah) 35.72/17.91 new_lt6(xuu531, xuu541, ty_Char) -> new_lt18(xuu531, xuu541) 35.72/17.91 new_esEs10(xuu311000, xuu600, ty_Int) -> new_esEs13(xuu311000, xuu600) 35.72/17.91 new_ltEs10(GT, LT) -> False 35.72/17.91 new_esEs9(xuu311000, xuu600, app(ty_Ratio, eae)) -> new_esEs21(xuu311000, xuu600, eae) 35.72/17.91 new_esEs6(xuu311000, xuu600, app(app(ty_@2, edg), edh)) -> new_esEs16(xuu311000, xuu600, edg, edh) 35.72/17.91 new_ltEs8(xuu53, xuu54) -> new_fsEs(new_compare8(xuu53, xuu54)) 35.72/17.91 new_esEs33(xuu3110002, xuu6002, app(app(ty_@2, dgd), dge)) -> new_esEs16(xuu3110002, xuu6002, dgd, dge) 35.72/17.91 new_esEs36(xuu124, xuu126, ty_@0) -> new_esEs14(xuu124, xuu126) 35.72/17.91 new_lt21(xuu112, xuu115, ty_Bool) -> new_lt17(xuu112, xuu115) 35.72/17.91 new_ltEs24(xuu87, xuu88, ty_@0) -> new_ltEs17(xuu87, xuu88) 35.72/17.91 new_esEs36(xuu124, xuu126, app(ty_Ratio, ehh)) -> new_esEs21(xuu124, xuu126, ehh) 35.72/17.91 new_esEs40(xuu3110001, xuu6001, ty_Float) -> new_esEs12(xuu3110001, xuu6001) 35.72/17.91 new_compare16(False, True) -> LT 35.72/17.91 new_ltEs4(xuu53, xuu54) -> new_fsEs(new_compare7(xuu53, xuu54)) 35.72/17.91 new_primCompAux0(xuu81, GT) -> GT 35.72/17.91 new_esEs9(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) 35.72/17.91 new_ltEs5(Left(xuu530), Right(xuu540), ce, bd) -> True 35.72/17.91 new_esEs5(xuu311000, xuu600, ty_Char) -> new_esEs15(xuu311000, xuu600) 35.72/17.91 new_compare3([], [], bhf) -> EQ 35.72/17.91 new_compare28(EQ, GT) -> LT 35.72/17.91 new_ltEs19(xuu113, xuu116, app(ty_[], bhb)) -> new_ltEs11(xuu113, xuu116, bhb) 35.72/17.91 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 35.72/17.91 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 35.72/17.91 new_ltEs21(xuu53, xuu54, app(app(ty_@2, bcc), bbc)) -> new_ltEs13(xuu53, xuu54, bcc, bbc) 35.72/17.91 new_esEs26(LT) -> True 35.72/17.91 new_ltEs5(Left(xuu530), Left(xuu540), app(ty_Ratio, dcd), bd) -> new_ltEs14(xuu530, xuu540, dcd) 35.72/17.91 new_esEs32(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 35.72/17.91 new_compare210(xuu53, xuu54, True, edd, be) -> EQ 35.72/17.91 new_lt6(xuu531, xuu541, app(app(app(ty_@3, fg), fh), ga)) -> new_lt8(xuu531, xuu541, fg, fh, ga) 35.72/17.91 new_ltEs10(EQ, LT) -> False 35.72/17.91 new_lt20(xuu111, xuu114, app(ty_[], beg)) -> new_lt13(xuu111, xuu114, beg) 35.72/17.91 new_esEs10(xuu311000, xuu600, app(ty_[], eda)) -> new_esEs22(xuu311000, xuu600, eda) 35.72/17.91 new_esEs27(xuu530, xuu540, app(app(ty_@2, fa), fb)) -> new_esEs16(xuu530, xuu540, fa, fb) 35.72/17.91 new_ltEs20(xuu60, xuu61, ty_Int) -> new_ltEs4(xuu60, xuu61) 35.72/17.91 new_ltEs18(xuu532, xuu542, ty_@0) -> new_ltEs17(xuu532, xuu542) 35.72/17.91 new_lt6(xuu531, xuu541, app(ty_Maybe, gc)) -> new_lt14(xuu531, xuu541, gc) 35.72/17.91 new_esEs35(xuu3110001, xuu6001, ty_Int) -> new_esEs13(xuu3110001, xuu6001) 35.72/17.91 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.91 new_ltEs11(xuu53, xuu54, hg) -> new_fsEs(new_compare3(xuu53, xuu54, hg)) 35.72/17.91 new_ltEs23(xuu531, xuu541, app(app(ty_Either, bcd), bce)) -> new_ltEs5(xuu531, xuu541, bcd, bce) 35.72/17.91 new_ltEs5(Right(xuu530), Right(xuu540), ce, ty_Double) -> new_ltEs7(xuu530, xuu540) 35.72/17.91 new_esEs8(xuu311002, xuu602, ty_Int) -> new_esEs13(xuu311002, xuu602) 35.72/17.91 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 35.72/17.91 new_esEs37(xuu3110000, xuu6000, app(app(app(ty_@3, fad), fae), faf)) -> new_esEs17(xuu3110000, xuu6000, fad, fae, faf) 35.72/17.91 new_esEs29(xuu111, xuu114, ty_Ordering) -> new_esEs25(xuu111, xuu114) 35.72/17.91 new_lt6(xuu531, xuu541, ty_Integer) -> new_lt10(xuu531, xuu541) 35.72/17.91 new_esEs39(xuu3110000, xuu6000, ty_Double) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.91 new_esEs38(xuu530, xuu540, app(ty_Maybe, bbh)) -> new_esEs24(xuu530, xuu540, bbh) 35.72/17.91 new_lt5(xuu530, xuu540, ty_Float) -> new_lt11(xuu530, xuu540) 35.72/17.91 new_primCompAux0(xuu81, LT) -> LT 35.72/17.91 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Bool, chd) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.91 new_compare16(False, False) -> EQ 35.72/17.91 new_ltEs9(xuu53, xuu54) -> new_fsEs(new_compare27(xuu53, xuu54)) 35.72/17.91 new_esEs19(Right(xuu3110000), Right(xuu6000), dag, ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.91 new_not(True) -> False 35.72/17.91 new_lt23(xuu530, xuu540, app(ty_Ratio, fbd)) -> new_lt16(xuu530, xuu540, fbd) 35.72/17.91 new_esEs28(xuu531, xuu541, ty_Float) -> new_esEs12(xuu531, xuu541) 35.72/17.91 new_esEs37(xuu3110000, xuu6000, ty_Bool) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.91 new_esEs7(xuu311001, xuu601, ty_Float) -> new_esEs12(xuu311001, xuu601) 35.72/17.91 new_fsEs(xuu209) -> new_not(new_esEs25(xuu209, GT)) 35.72/17.91 new_lt5(xuu530, xuu540, app(ty_Maybe, eh)) -> new_lt14(xuu530, xuu540, eh) 35.72/17.91 new_esEs38(xuu530, xuu540, ty_Bool) -> new_esEs18(xuu530, xuu540) 35.72/17.91 new_esEs7(xuu311001, xuu601, ty_Double) -> new_esEs20(xuu311001, xuu601) 35.72/17.91 new_lt22(xuu124, xuu126, ty_Ordering) -> new_lt12(xuu124, xuu126) 35.72/17.91 new_lt6(xuu531, xuu541, ty_@0) -> new_lt19(xuu531, xuu541) 35.72/17.91 new_primCmpNat0(Zero, Zero) -> EQ 35.72/17.91 new_esEs24(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, fhc)) -> new_esEs24(xuu3110000, xuu6000, fhc) 35.72/17.91 new_esEs29(xuu111, xuu114, ty_Int) -> new_esEs13(xuu111, xuu114) 35.72/17.91 new_esEs10(xuu311000, xuu600, ty_Double) -> new_esEs20(xuu311000, xuu600) 35.72/17.91 new_compare210(xuu53, xuu54, False, edd, be) -> new_compare110(xuu53, xuu54, new_ltEs21(xuu53, xuu54, edd), edd, be) 35.72/17.91 new_esEs38(xuu530, xuu540, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs17(xuu530, xuu540, bbd, bbe, bbf) 35.72/17.91 new_ltEs12(Just(xuu530), Just(xuu540), ty_Char) -> new_ltEs16(xuu530, xuu540) 35.72/17.91 new_esEs28(xuu531, xuu541, ty_Ordering) -> new_esEs25(xuu531, xuu541) 35.72/17.91 new_ltEs21(xuu53, xuu54, ty_Float) -> new_ltEs9(xuu53, xuu54) 35.72/17.91 new_ltEs22(xuu125, xuu127, ty_Bool) -> new_ltEs15(xuu125, xuu127) 35.72/17.91 new_lt6(xuu531, xuu541, ty_Int) -> new_lt7(xuu531, xuu541) 35.72/17.91 new_ltEs5(Left(xuu530), Left(xuu540), app(ty_Maybe, cb), bd) -> new_ltEs12(xuu530, xuu540, cb) 35.72/17.91 new_esEs5(xuu311000, xuu600, ty_Integer) -> new_esEs23(xuu311000, xuu600) 35.72/17.91 new_esEs36(xuu124, xuu126, ty_Int) -> new_esEs13(xuu124, xuu126) 35.72/17.91 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Float, chd) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.91 new_compare17(xuu311000, xuu600, ty_Bool) -> new_compare16(xuu311000, xuu600) 35.72/17.91 new_esEs10(xuu311000, xuu600, ty_Ordering) -> new_esEs25(xuu311000, xuu600) 35.72/17.91 new_compare17(xuu311000, xuu600, ty_Ordering) -> new_compare28(xuu311000, xuu600) 35.72/17.91 new_esEs39(xuu3110000, xuu6000, ty_Float) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.91 new_esEs5(xuu311000, xuu600, app(app(ty_@2, egc), egd)) -> new_esEs16(xuu311000, xuu600, egc, egd) 35.72/17.91 new_ltEs20(xuu60, xuu61, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs6(xuu60, xuu61, cfc, cfd, cfe) 35.72/17.91 new_esEs36(xuu124, xuu126, ty_Char) -> new_esEs15(xuu124, xuu126) 35.72/17.91 new_lt6(xuu531, xuu541, app(ty_Ratio, dcg)) -> new_lt16(xuu531, xuu541, dcg) 35.72/17.91 new_primEqNat0(Succ(xuu31100000), Zero) -> False 35.72/17.91 new_primEqNat0(Zero, Succ(xuu60000)) -> False 35.72/17.91 new_esEs14(@0, @0) -> True 35.72/17.91 new_esEs39(xuu3110000, xuu6000, app(ty_Maybe, fee)) -> new_esEs24(xuu3110000, xuu6000, fee) 35.72/17.91 new_ltEs21(xuu53, xuu54, ty_Bool) -> new_ltEs15(xuu53, xuu54) 35.72/17.91 new_ltEs22(xuu125, xuu127, ty_Ordering) -> new_ltEs10(xuu125, xuu127) 35.72/17.91 new_esEs31(xuu3110000, xuu6000, app(ty_[], deh)) -> new_esEs22(xuu3110000, xuu6000, deh) 35.72/17.91 new_ltEs24(xuu87, xuu88, app(ty_[], cbf)) -> new_ltEs11(xuu87, xuu88, cbf) 35.72/17.91 new_esEs6(xuu311000, xuu600, app(app(ty_Either, eed), eee)) -> new_esEs19(xuu311000, xuu600, eed, eee) 35.72/17.91 new_ltEs18(xuu532, xuu542, app(ty_[], hc)) -> new_ltEs11(xuu532, xuu542, hc) 35.72/17.91 new_ltEs22(xuu125, xuu127, ty_Integer) -> new_ltEs8(xuu125, xuu127) 35.72/17.91 new_esEs6(xuu311000, xuu600, ty_Char) -> new_esEs15(xuu311000, xuu600) 35.72/17.91 new_lt5(xuu530, xuu540, app(app(app(ty_@3, ed), ee), ef)) -> new_lt8(xuu530, xuu540, ed, ee, ef) 35.72/17.91 new_ltEs22(xuu125, xuu127, app(app(ty_@2, cef), ceg)) -> new_ltEs13(xuu125, xuu127, cef, ceg) 35.72/17.91 new_ltEs5(Right(xuu530), Right(xuu540), ce, app(ty_Maybe, de)) -> new_ltEs12(xuu530, xuu540, de) 35.72/17.91 new_ltEs5(Left(xuu530), Left(xuu540), app(app(ty_Either, bb), bc), bd) -> new_ltEs5(xuu530, xuu540, bb, bc) 35.72/17.91 new_esEs31(xuu3110000, xuu6000, app(ty_Ratio, deg)) -> new_esEs21(xuu3110000, xuu6000, deg) 35.72/17.91 new_esEs37(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.91 new_ltEs12(Just(xuu530), Just(xuu540), ty_Ordering) -> new_ltEs10(xuu530, xuu540) 35.72/17.91 new_esEs33(xuu3110002, xuu6002, ty_Float) -> new_esEs12(xuu3110002, xuu6002) 35.72/17.91 new_esEs38(xuu530, xuu540, ty_Float) -> new_esEs12(xuu530, xuu540) 35.72/17.91 new_esEs40(xuu3110001, xuu6001, app(ty_Maybe, ffg)) -> new_esEs24(xuu3110001, xuu6001, ffg) 35.72/17.91 new_esEs32(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 35.72/17.91 new_compare28(LT, GT) -> LT 35.72/17.91 new_lt20(xuu111, xuu114, ty_@0) -> new_lt19(xuu111, xuu114) 35.72/17.91 new_primCmpInt(Pos(Succ(xuu3110000)), Neg(xuu600)) -> GT 35.72/17.91 new_esEs11(xuu311001, xuu601, ty_Integer) -> new_esEs23(xuu311001, xuu601) 35.72/17.91 new_ltEs12(Just(xuu530), Just(xuu540), ty_Double) -> new_ltEs7(xuu530, xuu540) 35.72/17.91 new_esEs19(Right(xuu3110000), Right(xuu6000), dag, app(ty_Ratio, dbg)) -> new_esEs21(xuu3110000, xuu6000, dbg) 35.72/17.91 new_lt6(xuu531, xuu541, ty_Float) -> new_lt11(xuu531, xuu541) 35.72/17.91 new_esEs37(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.91 new_compare15(Just(xuu311000), Just(xuu600), cah) -> new_compare26(xuu311000, xuu600, new_esEs9(xuu311000, xuu600, cah), cah) 35.72/17.91 new_compare110(xuu147, xuu148, True, ffh, fga) -> LT 35.72/17.91 new_esEs27(xuu530, xuu540, ty_Float) -> new_esEs12(xuu530, xuu540) 35.72/17.91 new_ltEs10(GT, EQ) -> False 35.72/17.91 new_esEs23(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 35.72/17.91 new_lt23(xuu530, xuu540, ty_Char) -> new_lt18(xuu530, xuu540) 35.72/17.91 new_esEs37(xuu3110000, xuu6000, app(ty_Ratio, fba)) -> new_esEs21(xuu3110000, xuu6000, fba) 35.72/17.91 new_lt9(xuu31100, xuu60) -> new_esEs26(new_compare19(xuu31100, xuu60)) 35.72/17.91 new_esEs5(xuu311000, xuu600, app(app(ty_Either, egh), eha)) -> new_esEs19(xuu311000, xuu600, egh, eha) 35.72/17.91 new_ltEs18(xuu532, xuu542, ty_Int) -> new_ltEs4(xuu532, xuu542) 35.72/17.91 new_lt5(xuu530, xuu540, ty_Int) -> new_lt7(xuu530, xuu540) 35.72/17.91 new_esEs7(xuu311001, xuu601, app(ty_[], chb)) -> new_esEs22(xuu311001, xuu601, chb) 35.72/17.91 new_ltEs5(Right(xuu530), Right(xuu540), ce, ty_Float) -> new_ltEs9(xuu530, xuu540) 35.72/17.91 new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_[], dae), chd) -> new_esEs22(xuu3110000, xuu6000, dae) 35.72/17.91 new_esEs19(Right(xuu3110000), Right(xuu6000), dag, ty_Double) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.91 new_primCmpNat0(Zero, Succ(xuu6000)) -> LT 35.72/17.91 new_esEs31(xuu3110000, xuu6000, ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.91 new_ltEs20(xuu60, xuu61, ty_@0) -> new_ltEs17(xuu60, xuu61) 35.72/17.91 new_esEs4(xuu311000, xuu600, ty_Ordering) -> new_esEs25(xuu311000, xuu600) 35.72/17.91 new_ltEs5(Left(xuu530), Left(xuu540), app(app(app(ty_@3, bf), bg), bh), bd) -> new_ltEs6(xuu530, xuu540, bf, bg, bh) 35.72/17.91 new_esEs4(xuu311000, xuu600, ty_Integer) -> new_esEs23(xuu311000, xuu600) 35.72/17.91 new_esEs40(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) 35.72/17.91 new_esEs27(xuu530, xuu540, ty_Bool) -> new_esEs18(xuu530, xuu540) 35.72/17.91 new_lt22(xuu124, xuu126, ty_Bool) -> new_lt17(xuu124, xuu126) 35.72/17.91 new_esEs33(xuu3110002, xuu6002, ty_Bool) -> new_esEs18(xuu3110002, xuu6002) 35.72/17.91 new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, dad), chd) -> new_esEs21(xuu3110000, xuu6000, dad) 35.72/17.91 new_esEs8(xuu311002, xuu602, ty_Double) -> new_esEs20(xuu311002, xuu602) 35.72/17.91 new_esEs29(xuu111, xuu114, ty_Integer) -> new_esEs23(xuu111, xuu114) 35.72/17.91 new_ltEs21(xuu53, xuu54, ty_Double) -> new_ltEs7(xuu53, xuu54) 35.72/17.91 new_ltEs5(Left(xuu530), Left(xuu540), ty_Ordering, bd) -> new_ltEs10(xuu530, xuu540) 35.72/17.91 new_esEs10(xuu311000, xuu600, app(ty_Ratio, ech)) -> new_esEs21(xuu311000, xuu600, ech) 35.72/17.91 new_primCmpNat0(Succ(xuu3110000), Zero) -> GT 35.72/17.91 new_ltEs18(xuu532, xuu542, app(ty_Maybe, hd)) -> new_ltEs12(xuu532, xuu542, hd) 35.72/17.91 new_compare19(Double(xuu311000, Neg(xuu3110010)), Double(xuu600, Neg(xuu6010))) -> new_compare7(new_sr(xuu311000, Neg(xuu6010)), new_sr(Neg(xuu3110010), xuu600)) 35.72/17.91 new_esEs27(xuu530, xuu540, ty_@0) -> new_esEs14(xuu530, xuu540) 35.72/17.91 new_esEs32(xuu3110001, xuu6001, ty_Int) -> new_esEs13(xuu3110001, xuu6001) 35.72/17.91 new_pePe(False, xuu214) -> xuu214 35.72/17.91 new_compare3([], :(xuu600, xuu601), bhf) -> LT 35.72/17.91 new_lt21(xuu112, xuu115, app(ty_[], bga)) -> new_lt13(xuu112, xuu115, bga) 35.72/17.91 new_esEs33(xuu3110002, xuu6002, app(ty_Ratio, dhc)) -> new_esEs21(xuu3110002, xuu6002, dhc) 35.72/17.91 new_esEs22(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), ebg) -> new_asAs(new_esEs37(xuu3110000, xuu6000, ebg), new_esEs22(xuu3110001, xuu6001, ebg)) 35.72/17.91 new_esEs28(xuu531, xuu541, app(ty_[], gb)) -> new_esEs22(xuu531, xuu541, gb) 35.72/17.91 new_esEs40(xuu3110001, xuu6001, app(app(app(ty_@3, feh), ffa), ffb)) -> new_esEs17(xuu3110001, xuu6001, feh, ffa, ffb) 35.72/17.91 new_ltEs5(Right(xuu530), Right(xuu540), ce, ty_Bool) -> new_ltEs15(xuu530, xuu540) 35.72/17.91 new_ltEs18(xuu532, xuu542, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs6(xuu532, xuu542, gh, ha, hb) 35.72/17.91 new_esEs29(xuu111, xuu114, ty_Float) -> new_esEs12(xuu111, xuu114) 35.72/17.91 new_esEs11(xuu311001, xuu601, app(app(ty_@2, fbf), fbg)) -> new_esEs16(xuu311001, xuu601, fbf, fbg) 35.72/17.91 new_ltEs5(Left(xuu530), Left(xuu540), ty_Float, bd) -> new_ltEs9(xuu530, xuu540) 35.72/17.91 new_esEs38(xuu530, xuu540, ty_Double) -> new_esEs20(xuu530, xuu540) 35.72/17.91 new_compare25(xuu60, xuu61, True, ceh, eba) -> EQ 35.72/17.91 new_esEs7(xuu311001, xuu601, ty_Bool) -> new_esEs18(xuu311001, xuu601) 35.72/17.91 new_compare24(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, beb, bec) -> new_compare11(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, new_lt20(xuu111, xuu114, bfc), new_asAs(new_esEs29(xuu111, xuu114, bfc), new_pePe(new_lt21(xuu112, xuu115, beb), new_asAs(new_esEs30(xuu112, xuu115, beb), new_ltEs19(xuu113, xuu116, bec)))), bfc, beb, bec) 35.72/17.91 new_esEs8(xuu311002, xuu602, app(ty_Maybe, egb)) -> new_esEs24(xuu311002, xuu602, egb) 35.72/17.91 new_ltEs5(Right(xuu530), Right(xuu540), ce, app(ty_[], dd)) -> new_ltEs11(xuu530, xuu540, dd) 35.72/17.91 new_esEs29(xuu111, xuu114, app(ty_Maybe, beh)) -> new_esEs24(xuu111, xuu114, beh) 35.72/17.91 new_esEs8(xuu311002, xuu602, ty_Float) -> new_esEs12(xuu311002, xuu602) 35.72/17.91 new_esEs40(xuu3110001, xuu6001, ty_Bool) -> new_esEs18(xuu3110001, xuu6001) 35.72/17.91 new_lt20(xuu111, xuu114, app(ty_Ratio, dda)) -> new_lt16(xuu111, xuu114, dda) 35.72/17.91 new_lt21(xuu112, xuu115, ty_Double) -> new_lt9(xuu112, xuu115) 35.72/17.91 new_esEs32(xuu3110001, xuu6001, ty_Bool) -> new_esEs18(xuu3110001, xuu6001) 35.72/17.91 new_lt22(xuu124, xuu126, ty_Integer) -> new_lt10(xuu124, xuu126) 35.72/17.91 new_ltEs5(Right(xuu530), Right(xuu540), ce, ty_@0) -> new_ltEs17(xuu530, xuu540) 35.72/17.91 new_esEs32(xuu3110001, xuu6001, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs17(xuu3110001, xuu6001, dfd, dfe, dff) 35.72/17.91 new_esEs8(xuu311002, xuu602, app(ty_Ratio, efh)) -> new_esEs21(xuu311002, xuu602, efh) 35.72/17.91 new_esEs5(xuu311000, xuu600, ty_Bool) -> new_esEs18(xuu311000, xuu600) 35.72/17.91 new_compare112(xuu198, xuu199, xuu200, xuu201, False, xuu203, dcb, dcc) -> new_compare10(xuu198, xuu199, xuu200, xuu201, xuu203, dcb, dcc) 35.72/17.91 new_compare6(Left(xuu311000), Right(xuu600), h, ba) -> LT 35.72/17.91 new_ltEs12(Just(xuu530), Just(xuu540), ty_Bool) -> new_ltEs15(xuu530, xuu540) 35.72/17.91 new_compare11(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, False, xuu190, ehe, ehf, ehg) -> new_compare111(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, xuu190, ehe, ehf, ehg) 35.72/17.91 new_ltEs19(xuu113, xuu116, ty_Bool) -> new_ltEs15(xuu113, xuu116) 35.72/17.91 new_ltEs22(xuu125, xuu127, ty_Char) -> new_ltEs16(xuu125, xuu127) 35.72/17.91 new_lt6(xuu531, xuu541, ty_Double) -> new_lt9(xuu531, xuu541) 35.72/17.91 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 35.72/17.91 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 35.72/17.91 new_esEs25(LT, GT) -> False 35.72/17.91 new_esEs25(GT, LT) -> False 35.72/17.91 new_esEs5(xuu311000, xuu600, app(app(app(ty_@3, ege), egf), egg)) -> new_esEs17(xuu311000, xuu600, ege, egf, egg) 35.72/17.91 new_esEs9(xuu311000, xuu600, app(app(ty_@2, dhf), dhg)) -> new_esEs16(xuu311000, xuu600, dhf, dhg) 35.72/17.91 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Char, chd) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.91 new_primCompAux1(xuu311000, xuu600, xuu48, bhf) -> new_primCompAux0(xuu48, new_compare17(xuu311000, xuu600, bhf)) 35.72/17.91 new_compare211(xuu124, xuu125, xuu126, xuu127, True, cdf, ccf) -> EQ 35.72/17.91 new_lt21(xuu112, xuu115, ty_Int) -> new_lt7(xuu112, xuu115) 35.72/17.91 new_esEs6(xuu311000, xuu600, app(ty_Maybe, eeh)) -> new_esEs24(xuu311000, xuu600, eeh) 35.72/17.91 new_esEs31(xuu3110000, xuu6000, app(app(ty_Either, dee), def)) -> new_esEs19(xuu3110000, xuu6000, dee, def) 35.72/17.91 new_ltEs20(xuu60, xuu61, ty_Bool) -> new_ltEs15(xuu60, xuu61) 35.72/17.91 new_esEs9(xuu311000, xuu600, app(app(ty_Either, eac), ead)) -> new_esEs19(xuu311000, xuu600, eac, ead) 35.72/17.91 new_esEs10(xuu311000, xuu600, ty_Integer) -> new_esEs23(xuu311000, xuu600) 35.72/17.91 new_ltEs19(xuu113, xuu116, ty_Int) -> new_ltEs4(xuu113, xuu116) 35.72/17.91 new_esEs6(xuu311000, xuu600, ty_Ordering) -> new_esEs25(xuu311000, xuu600) 35.72/17.91 new_ltEs18(xuu532, xuu542, ty_Char) -> new_ltEs16(xuu532, xuu542) 35.72/17.91 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 35.72/17.91 new_esEs31(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.91 new_esEs28(xuu531, xuu541, ty_Bool) -> new_esEs18(xuu531, xuu541) 35.72/17.91 new_esEs33(xuu3110002, xuu6002, ty_Ordering) -> new_esEs25(xuu3110002, xuu6002) 35.72/17.91 new_primCmpInt(Neg(Zero), Pos(Succ(xuu6000))) -> LT 35.72/17.91 new_lt23(xuu530, xuu540, app(ty_[], bbg)) -> new_lt13(xuu530, xuu540, bbg) 35.72/17.91 new_esEs19(Right(xuu3110000), Right(xuu6000), dag, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.91 new_primMulInt(Pos(xuu3110000), Pos(xuu6010)) -> Pos(new_primMulNat0(xuu3110000, xuu6010)) 35.72/17.91 new_esEs30(xuu112, xuu115, ty_Integer) -> new_esEs23(xuu112, xuu115) 35.72/17.91 new_lt17(xuu31100, xuu60) -> new_esEs26(new_compare16(xuu31100, xuu60)) 35.72/17.91 new_ltEs6(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, eb, ec) -> new_pePe(new_lt5(xuu530, xuu540, fc), new_asAs(new_esEs27(xuu530, xuu540, fc), new_pePe(new_lt6(xuu531, xuu541, eb), new_asAs(new_esEs28(xuu531, xuu541, eb), new_ltEs18(xuu532, xuu542, ec))))) 35.72/17.91 new_esEs33(xuu3110002, xuu6002, app(ty_Maybe, dhe)) -> new_esEs24(xuu3110002, xuu6002, dhe) 35.72/17.91 new_esEs38(xuu530, xuu540, app(ty_[], bbg)) -> new_esEs22(xuu530, xuu540, bbg) 35.72/17.91 new_esEs28(xuu531, xuu541, ty_Double) -> new_esEs20(xuu531, xuu541) 35.72/17.91 new_compare29(:%(xuu311000, xuu311001), :%(xuu600, xuu601), ty_Integer) -> new_compare8(new_sr0(xuu311000, xuu601), new_sr0(xuu600, xuu311001)) 35.72/17.91 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.91 new_esEs11(xuu311001, xuu601, app(app(ty_Either, fcc), fcd)) -> new_esEs19(xuu311001, xuu601, fcc, fcd) 35.72/17.91 new_ltEs5(Right(xuu530), Right(xuu540), ce, ty_Int) -> new_ltEs4(xuu530, xuu540) 35.72/17.91 new_esEs6(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) 35.72/17.91 new_esEs25(EQ, GT) -> False 35.72/17.91 new_esEs25(GT, EQ) -> False 35.72/17.91 new_compare12(xuu168, xuu169, False, ddd) -> GT 35.72/17.91 new_esEs38(xuu530, xuu540, ty_Char) -> new_esEs15(xuu530, xuu540) 35.72/17.91 new_esEs24(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, fgd), fge), fgf)) -> new_esEs17(xuu3110000, xuu6000, fgd, fge, fgf) 35.72/17.91 new_esEs10(xuu311000, xuu600, app(ty_Maybe, edb)) -> new_esEs24(xuu311000, xuu600, edb) 35.72/17.91 new_primMulNat0(Succ(xuu31100000), Zero) -> Zero 35.72/17.91 new_primMulNat0(Zero, Succ(xuu60100)) -> Zero 35.72/17.91 new_esEs4(xuu311000, xuu600, ty_Double) -> new_esEs20(xuu311000, xuu600) 35.72/17.91 new_ltEs23(xuu531, xuu541, ty_Int) -> new_ltEs4(xuu531, xuu541) 35.72/17.91 new_esEs19(Right(xuu3110000), Right(xuu6000), dag, ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.91 new_compare29(:%(xuu311000, xuu311001), :%(xuu600, xuu601), ty_Int) -> new_compare7(new_sr(xuu311000, xuu601), new_sr(xuu600, xuu311001)) 35.72/17.91 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.91 new_esEs7(xuu311001, xuu601, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs17(xuu311001, xuu601, cgd, cge, cgf) 35.72/17.91 new_esEs28(xuu531, xuu541, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs17(xuu531, xuu541, fg, fh, ga) 35.72/17.91 new_compare16(True, False) -> GT 35.72/17.91 new_lt5(xuu530, xuu540, app(ty_Ratio, dcf)) -> new_lt16(xuu530, xuu540, dcf) 35.72/17.91 new_compare26(xuu87, xuu88, True, fch) -> EQ 35.72/17.91 new_esEs8(xuu311002, xuu602, ty_Integer) -> new_esEs23(xuu311002, xuu602) 35.72/17.91 new_lt23(xuu530, xuu540, ty_Float) -> new_lt11(xuu530, xuu540) 35.72/17.91 new_lt12(xuu31100, xuu60) -> new_esEs26(new_compare28(xuu31100, xuu60)) 35.72/17.91 new_esEs30(xuu112, xuu115, app(ty_Maybe, bgb)) -> new_esEs24(xuu112, xuu115, bgb) 35.72/17.91 new_lt18(xuu31100, xuu60) -> new_esEs26(new_compare30(xuu31100, xuu60)) 35.72/17.91 new_esEs31(xuu3110000, xuu6000, ty_Double) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.91 new_compare26(xuu87, xuu88, False, fch) -> new_compare12(xuu87, xuu88, new_ltEs24(xuu87, xuu88, fch), fch) 35.72/17.91 new_primPlusNat0(Succ(xuu42200), Zero) -> Succ(xuu42200) 35.72/17.91 new_primPlusNat0(Zero, Succ(xuu13700)) -> Succ(xuu13700) 35.72/17.91 new_lt22(xuu124, xuu126, app(ty_Maybe, cdc)) -> new_lt14(xuu124, xuu126, cdc) 35.72/17.91 new_ltEs22(xuu125, xuu127, ty_@0) -> new_ltEs17(xuu125, xuu127) 35.72/17.91 new_ltEs19(xuu113, xuu116, ty_Double) -> new_ltEs7(xuu113, xuu116) 35.72/17.91 new_compare27(Float(xuu311000, Pos(xuu3110010)), Float(xuu600, Neg(xuu6010))) -> new_compare7(new_sr(xuu311000, Pos(xuu6010)), new_sr(Neg(xuu3110010), xuu600)) 35.72/17.91 new_compare27(Float(xuu311000, Neg(xuu3110010)), Float(xuu600, Pos(xuu6010))) -> new_compare7(new_sr(xuu311000, Neg(xuu6010)), new_sr(Pos(xuu3110010), xuu600)) 35.72/17.91 new_ltEs22(xuu125, xuu127, ty_Float) -> new_ltEs9(xuu125, xuu127) 35.72/17.91 new_lt4(xuu31100, xuu60, h, ba) -> new_esEs26(new_compare6(xuu31100, xuu60, h, ba)) 35.72/17.91 new_esEs8(xuu311002, xuu602, ty_Ordering) -> new_esEs25(xuu311002, xuu602) 35.72/17.91 new_ltEs5(Right(xuu530), Right(xuu540), ce, ty_Char) -> new_ltEs16(xuu530, xuu540) 35.72/17.91 new_esEs30(xuu112, xuu115, app(ty_[], bga)) -> new_esEs22(xuu112, xuu115, bga) 35.72/17.91 new_lt23(xuu530, xuu540, ty_Int) -> new_lt7(xuu530, xuu540) 35.72/17.91 new_esEs9(xuu311000, xuu600, ty_Int) -> new_esEs13(xuu311000, xuu600) 35.72/17.91 new_esEs31(xuu3110000, xuu6000, app(ty_Maybe, dfa)) -> new_esEs24(xuu3110000, xuu6000, dfa) 35.72/17.91 new_esEs32(xuu3110001, xuu6001, ty_Integer) -> new_esEs23(xuu3110001, xuu6001) 35.72/17.91 new_esEs7(xuu311001, xuu601, app(app(ty_Either, cgg), cgh)) -> new_esEs19(xuu311001, xuu601, cgg, cgh) 35.72/17.91 new_ltEs18(xuu532, xuu542, ty_Double) -> new_ltEs7(xuu532, xuu542) 35.72/17.91 new_compare7(xuu31100, xuu60) -> new_primCmpInt(xuu31100, xuu60) 35.72/17.91 new_esEs4(xuu311000, xuu600, app(ty_[], ebg)) -> new_esEs22(xuu311000, xuu600, ebg) 35.72/17.91 new_esEs39(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.91 new_esEs31(xuu3110000, xuu6000, app(app(ty_@2, ddh), dea)) -> new_esEs16(xuu3110000, xuu6000, ddh, dea) 35.72/17.91 new_ltEs23(xuu531, xuu541, app(ty_Ratio, fbe)) -> new_ltEs14(xuu531, xuu541, fbe) 35.72/17.91 new_esEs40(xuu3110001, xuu6001, ty_Double) -> new_esEs20(xuu3110001, xuu6001) 35.72/17.91 new_esEs24(Just(xuu3110000), Just(xuu6000), app(ty_[], fhb)) -> new_esEs22(xuu3110000, xuu6000, fhb) 35.72/17.91 new_esEs25(GT, GT) -> True 35.72/17.91 new_esEs28(xuu531, xuu541, ty_Char) -> new_esEs15(xuu531, xuu541) 35.72/17.91 new_compare11(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, True, xuu190, ehe, ehf, ehg) -> new_compare111(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, True, ehe, ehf, ehg) 35.72/17.91 new_esEs31(xuu3110000, xuu6000, ty_Float) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.91 new_lt6(xuu531, xuu541, ty_Ordering) -> new_lt12(xuu531, xuu541) 35.72/17.91 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.91 new_compare17(xuu311000, xuu600, app(ty_[], cad)) -> new_compare3(xuu311000, xuu600, cad) 35.72/17.91 new_ltEs23(xuu531, xuu541, ty_@0) -> new_ltEs17(xuu531, xuu541) 35.72/17.91 new_esEs6(xuu311000, xuu600, ty_Integer) -> new_esEs23(xuu311000, xuu600) 35.72/17.91 new_esEs32(xuu3110001, xuu6001, app(app(ty_@2, dfb), dfc)) -> new_esEs16(xuu3110001, xuu6001, dfb, dfc) 35.72/17.91 new_esEs30(xuu112, xuu115, ty_@0) -> new_esEs14(xuu112, xuu115) 35.72/17.91 new_lt22(xuu124, xuu126, ty_Int) -> new_lt7(xuu124, xuu126) 35.72/17.91 new_ltEs19(xuu113, xuu116, ty_Char) -> new_ltEs16(xuu113, xuu116) 35.72/17.91 new_esEs27(xuu530, xuu540, ty_Char) -> new_esEs15(xuu530, xuu540) 35.72/17.91 new_esEs5(xuu311000, xuu600, app(ty_[], ehc)) -> new_esEs22(xuu311000, xuu600, ehc) 35.72/17.91 new_ltEs5(Right(xuu530), Right(xuu540), ce, app(ty_Ratio, dce)) -> new_ltEs14(xuu530, xuu540, dce) 35.72/17.91 new_esEs29(xuu111, xuu114, ty_Bool) -> new_esEs18(xuu111, xuu114) 35.72/17.91 new_esEs4(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) 35.72/17.91 new_esEs22(:(xuu3110000, xuu3110001), [], ebg) -> False 35.72/17.91 new_esEs22([], :(xuu6000, xuu6001), ebg) -> False 35.72/17.91 new_lt7(xuu31100, xuu60) -> new_esEs26(new_compare7(xuu31100, xuu60)) 35.72/17.91 new_esEs33(xuu3110002, xuu6002, app(app(ty_Either, dha), dhb)) -> new_esEs19(xuu3110002, xuu6002, dha, dhb) 35.72/17.91 new_compare10(xuu198, xuu199, xuu200, xuu201, False, dcb, dcc) -> GT 35.72/17.91 new_lt21(xuu112, xuu115, ty_Ordering) -> new_lt12(xuu112, xuu115) 35.72/17.91 new_esEs10(xuu311000, xuu600, app(app(ty_Either, ecf), ecg)) -> new_esEs19(xuu311000, xuu600, ecf, ecg) 35.72/17.91 new_esEs6(xuu311000, xuu600, ty_Double) -> new_esEs20(xuu311000, xuu600) 35.72/17.91 new_esEs32(xuu3110001, xuu6001, app(ty_Maybe, dgc)) -> new_esEs24(xuu3110001, xuu6001, dgc) 35.72/17.91 new_esEs39(xuu3110000, xuu6000, app(ty_[], fed)) -> new_esEs22(xuu3110000, xuu6000, fed) 35.72/17.91 new_esEs5(xuu311000, xuu600, ty_Float) -> new_esEs12(xuu311000, xuu600) 35.72/17.91 new_compare17(xuu311000, xuu600, ty_Int) -> new_compare7(xuu311000, xuu600) 35.72/17.91 new_esEs7(xuu311001, xuu601, ty_Integer) -> new_esEs23(xuu311001, xuu601) 35.72/17.91 new_esEs29(xuu111, xuu114, ty_Double) -> new_esEs20(xuu111, xuu114) 35.72/17.91 new_esEs34(xuu3110000, xuu6000, ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.91 new_esEs5(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) 35.72/17.91 new_ltEs12(Just(xuu530), Just(xuu540), app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs6(xuu530, xuu540, bab, bac, bad) 35.72/17.91 new_esEs29(xuu111, xuu114, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs17(xuu111, xuu114, bed, bee, bef) 35.72/17.91 new_ltEs21(xuu53, xuu54, ty_Int) -> new_ltEs4(xuu53, xuu54) 35.72/17.91 new_ltEs18(xuu532, xuu542, ty_Bool) -> new_ltEs15(xuu532, xuu542) 35.72/17.91 new_ltEs12(Just(xuu530), Just(xuu540), app(ty_Maybe, baf)) -> new_ltEs12(xuu530, xuu540, baf) 35.72/17.91 new_esEs29(xuu111, xuu114, ty_@0) -> new_esEs14(xuu111, xuu114) 35.72/17.91 new_compare111(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, True, ehe, ehf, ehg) -> LT 35.72/17.91 new_primMulInt(Neg(xuu3110000), Neg(xuu6010)) -> Pos(new_primMulNat0(xuu3110000, xuu6010)) 35.72/17.91 new_primCmpInt(Pos(Zero), Pos(Succ(xuu6000))) -> new_primCmpNat0(Zero, Succ(xuu6000)) 35.72/17.91 new_esEs11(xuu311001, xuu601, ty_Int) -> new_esEs13(xuu311001, xuu601) 35.72/17.91 new_esEs40(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 35.72/17.91 new_ltEs12(Just(xuu530), Just(xuu540), app(app(ty_Either, hh), baa)) -> new_ltEs5(xuu530, xuu540, hh, baa) 35.72/17.91 new_esEs40(xuu3110001, xuu6001, app(ty_[], fff)) -> new_esEs22(xuu3110001, xuu6001, fff) 35.72/17.91 new_lt20(xuu111, xuu114, ty_Ordering) -> new_lt12(xuu111, xuu114) 35.72/17.91 new_esEs5(xuu311000, xuu600, ty_Double) -> new_esEs20(xuu311000, xuu600) 35.72/17.91 new_ltEs19(xuu113, xuu116, app(app(ty_@2, bhd), bhe)) -> new_ltEs13(xuu113, xuu116, bhd, bhe) 35.72/17.91 new_esEs6(xuu311000, xuu600, ty_Float) -> new_esEs12(xuu311000, xuu600) 35.72/17.91 new_ltEs18(xuu532, xuu542, ty_Integer) -> new_ltEs8(xuu532, xuu542) 35.72/17.91 new_lt20(xuu111, xuu114, ty_Integer) -> new_lt10(xuu111, xuu114) 35.72/17.91 new_esEs30(xuu112, xuu115, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs17(xuu112, xuu115, bff, bfg, bfh) 35.72/17.91 new_lt23(xuu530, xuu540, app(ty_Maybe, bbh)) -> new_lt14(xuu530, xuu540, bbh) 35.72/17.91 new_esEs30(xuu112, xuu115, ty_Bool) -> new_esEs18(xuu112, xuu115) 35.72/17.91 new_esEs32(xuu3110001, xuu6001, app(app(ty_Either, dfg), dfh)) -> new_esEs19(xuu3110001, xuu6001, dfg, dfh) 35.72/17.91 new_esEs11(xuu311001, xuu601, app(ty_Ratio, fce)) -> new_esEs21(xuu311001, xuu601, fce) 35.72/17.91 new_ltEs23(xuu531, xuu541, ty_Float) -> new_ltEs9(xuu531, xuu541) 35.72/17.91 new_esEs8(xuu311002, xuu602, app(app(ty_Either, eff), efg)) -> new_esEs19(xuu311002, xuu602, eff, efg) 35.72/17.91 new_esEs7(xuu311001, xuu601, ty_Ordering) -> new_esEs25(xuu311001, xuu601) 35.72/17.91 new_lt5(xuu530, xuu540, ty_Integer) -> new_lt10(xuu530, xuu540) 35.72/17.91 new_esEs31(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.91 new_ltEs20(xuu60, xuu61, ty_Char) -> new_ltEs16(xuu60, xuu61) 35.72/17.91 new_ltEs20(xuu60, xuu61, app(app(ty_@2, cfh), cga)) -> new_ltEs13(xuu60, xuu61, cfh, cga) 35.72/17.91 new_lt6(xuu531, xuu541, app(ty_[], gb)) -> new_lt13(xuu531, xuu541, gb) 35.72/17.91 new_esEs6(xuu311000, xuu600, ty_Bool) -> new_esEs18(xuu311000, xuu600) 35.72/17.91 new_esEs7(xuu311001, xuu601, app(app(ty_@2, cgb), cgc)) -> new_esEs16(xuu311001, xuu601, cgb, cgc) 35.72/17.91 new_ltEs24(xuu87, xuu88, app(ty_Ratio, fda)) -> new_ltEs14(xuu87, xuu88, fda) 35.72/17.91 new_lt5(xuu530, xuu540, ty_Ordering) -> new_lt12(xuu530, xuu540) 35.72/17.91 new_esEs31(xuu3110000, xuu6000, ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.91 new_esEs4(xuu311000, xuu600, ty_Char) -> new_esEs15(xuu311000, xuu600) 35.72/17.91 new_esEs30(xuu112, xuu115, ty_Float) -> new_esEs12(xuu112, xuu115) 35.72/17.91 new_esEs7(xuu311001, xuu601, app(ty_Maybe, chc)) -> new_esEs24(xuu311001, xuu601, chc) 35.72/17.91 new_esEs30(xuu112, xuu115, ty_Char) -> new_esEs15(xuu112, xuu115) 35.72/17.91 new_esEs7(xuu311001, xuu601, ty_@0) -> new_esEs14(xuu311001, xuu601) 35.72/17.91 new_ltEs19(xuu113, xuu116, app(app(ty_Either, bge), bgf)) -> new_ltEs5(xuu113, xuu116, bge, bgf) 35.72/17.91 new_esEs10(xuu311000, xuu600, app(app(app(ty_@3, ecc), ecd), ece)) -> new_esEs17(xuu311000, xuu600, ecc, ecd, ece) 35.72/17.91 new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, daf), chd) -> new_esEs24(xuu3110000, xuu6000, daf) 35.72/17.91 new_ltEs18(xuu532, xuu542, ty_Ordering) -> new_ltEs10(xuu532, xuu542) 35.72/17.91 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.91 new_compare8(Integer(xuu311000), Integer(xuu600)) -> new_primCmpInt(xuu311000, xuu600) 35.72/17.91 new_compare15(Nothing, Nothing, cah) -> EQ 35.72/17.91 new_primMulInt(Pos(xuu3110000), Neg(xuu6010)) -> Neg(new_primMulNat0(xuu3110000, xuu6010)) 35.72/17.91 new_primMulInt(Neg(xuu3110000), Pos(xuu6010)) -> Neg(new_primMulNat0(xuu3110000, xuu6010)) 35.72/17.91 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Int, chd) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.91 new_esEs39(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.91 new_lt5(xuu530, xuu540, app(ty_[], eg)) -> new_lt13(xuu530, xuu540, eg) 35.72/17.91 new_ltEs15(True, True) -> True 35.72/17.91 new_esEs40(xuu3110001, xuu6001, app(ty_Ratio, ffe)) -> new_esEs21(xuu3110001, xuu6001, ffe) 35.72/17.91 new_lt5(xuu530, xuu540, ty_Double) -> new_lt9(xuu530, xuu540) 35.72/17.91 new_esEs8(xuu311002, xuu602, app(app(ty_@2, efa), efb)) -> new_esEs16(xuu311002, xuu602, efa, efb) 35.72/17.91 new_esEs28(xuu531, xuu541, ty_Integer) -> new_esEs23(xuu531, xuu541) 35.72/17.91 new_esEs19(Right(xuu3110000), Right(xuu6000), dag, app(ty_Maybe, dca)) -> new_esEs24(xuu3110000, xuu6000, dca) 35.72/17.91 new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, dab), dac), chd) -> new_esEs19(xuu3110000, xuu6000, dab, dac) 35.72/17.91 new_lt20(xuu111, xuu114, ty_Float) -> new_lt11(xuu111, xuu114) 35.72/17.91 new_lt16(xuu31100, xuu60, fdb) -> new_esEs26(new_compare29(xuu31100, xuu60, fdb)) 35.72/17.91 new_esEs33(xuu3110002, xuu6002, ty_Int) -> new_esEs13(xuu3110002, xuu6002) 35.72/17.91 new_lt14(xuu31100, xuu60, cah) -> new_esEs26(new_compare15(xuu31100, xuu60, cah)) 35.72/17.91 new_esEs8(xuu311002, xuu602, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs17(xuu311002, xuu602, efc, efd, efe) 35.72/17.91 new_esEs37(xuu3110000, xuu6000, ty_Double) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.91 new_esEs40(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 35.72/17.91 new_esEs29(xuu111, xuu114, app(app(ty_@2, bfa), bfb)) -> new_esEs16(xuu111, xuu114, bfa, bfb) 35.72/17.91 new_esEs36(xuu124, xuu126, app(ty_Maybe, cdc)) -> new_esEs24(xuu124, xuu126, cdc) 35.72/17.91 new_sr0(Integer(xuu3110000), Integer(xuu6010)) -> Integer(new_primMulInt(xuu3110000, xuu6010)) 35.72/17.91 new_lt22(xuu124, xuu126, app(ty_[], cdb)) -> new_lt13(xuu124, xuu126, cdb) 35.72/17.91 new_esEs30(xuu112, xuu115, app(app(ty_Either, bfd), bfe)) -> new_esEs19(xuu112, xuu115, bfd, bfe) 35.72/17.91 new_ltEs22(xuu125, xuu127, ty_Int) -> new_ltEs4(xuu125, xuu127) 35.72/17.91 new_esEs28(xuu531, xuu541, ty_@0) -> new_esEs14(xuu531, xuu541) 35.72/17.91 new_esEs6(xuu311000, xuu600, ty_Int) -> new_esEs13(xuu311000, xuu600) 35.72/17.91 new_esEs9(xuu311000, xuu600, app(ty_Maybe, eag)) -> new_esEs24(xuu311000, xuu600, eag) 35.72/17.91 new_compare15(Just(xuu311000), Nothing, cah) -> GT 35.72/17.91 new_esEs36(xuu124, xuu126, ty_Float) -> new_esEs12(xuu124, xuu126) 35.72/17.91 new_lt11(xuu31100, xuu60) -> new_esEs26(new_compare27(xuu31100, xuu60)) 35.72/17.91 new_esEs13(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 35.72/17.91 new_esEs9(xuu311000, xuu600, ty_Float) -> new_esEs12(xuu311000, xuu600) 35.72/17.91 new_esEs8(xuu311002, xuu602, ty_Bool) -> new_esEs18(xuu311002, xuu602) 35.72/17.91 new_esEs19(Right(xuu3110000), Right(xuu6000), dag, ty_Bool) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.91 new_lt21(xuu112, xuu115, app(ty_Ratio, ddb)) -> new_lt16(xuu112, xuu115, ddb) 35.72/17.91 new_lt21(xuu112, xuu115, ty_Integer) -> new_lt10(xuu112, xuu115) 35.72/17.91 new_esEs31(xuu3110000, xuu6000, ty_Bool) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.91 new_esEs25(LT, LT) -> True 35.72/17.91 new_ltEs24(xuu87, xuu88, ty_Float) -> new_ltEs9(xuu87, xuu88) 35.72/17.91 new_ltEs19(xuu113, xuu116, ty_Integer) -> new_ltEs8(xuu113, xuu116) 35.72/17.91 new_esEs31(xuu3110000, xuu6000, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs17(xuu3110000, xuu6000, deb, dec, ded) 35.72/17.91 new_ltEs22(xuu125, xuu127, app(ty_[], ced)) -> new_ltEs11(xuu125, xuu127, ced) 35.72/17.91 new_lt6(xuu531, xuu541, app(app(ty_@2, gd), ge)) -> new_lt15(xuu531, xuu541, gd, ge) 35.72/17.91 new_asAs(True, xuu163) -> xuu163 35.72/17.91 new_ltEs5(Right(xuu530), Left(xuu540), ce, bd) -> False 35.72/17.91 new_esEs4(xuu311000, xuu600, ty_Bool) -> new_esEs18(xuu311000, xuu600) 35.72/17.91 new_ltEs21(xuu53, xuu54, ty_Char) -> new_ltEs16(xuu53, xuu54) 35.72/17.91 new_esEs6(xuu311000, xuu600, app(ty_[], eeg)) -> new_esEs22(xuu311000, xuu600, eeg) 35.72/17.91 new_ltEs23(xuu531, xuu541, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs6(xuu531, xuu541, bcf, bcg, bch) 35.72/17.91 new_esEs32(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) 35.72/17.91 new_compare19(Double(xuu311000, Pos(xuu3110010)), Double(xuu600, Pos(xuu6010))) -> new_compare7(new_sr(xuu311000, Pos(xuu6010)), new_sr(Pos(xuu3110010), xuu600)) 35.72/17.91 new_esEs5(xuu311000, xuu600, ty_Ordering) -> new_esEs25(xuu311000, xuu600) 35.72/17.91 new_esEs24(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, fgg), fgh)) -> new_esEs19(xuu3110000, xuu6000, fgg, fgh) 35.72/17.91 new_ltEs10(LT, LT) -> True 35.72/17.91 new_esEs38(xuu530, xuu540, ty_Integer) -> new_esEs23(xuu530, xuu540) 35.72/17.91 new_esEs4(xuu311000, xuu600, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs17(xuu311000, xuu600, dde, ddf, ddg) 35.72/17.91 new_compare18(@3(xuu311000, xuu311001, xuu311002), @3(xuu600, xuu601, xuu602), bde, bdf, bdg) -> new_compare24(xuu311000, xuu311001, xuu311002, xuu600, xuu601, xuu602, new_asAs(new_esEs6(xuu311000, xuu600, bde), new_asAs(new_esEs7(xuu311001, xuu601, bdf), new_esEs8(xuu311002, xuu602, bdg))), bde, bdf, bdg) 35.72/17.91 new_esEs38(xuu530, xuu540, ty_Int) -> new_esEs13(xuu530, xuu540) 35.72/17.91 new_compare6(Right(xuu311000), Right(xuu600), h, ba) -> new_compare25(xuu311000, xuu600, new_esEs5(xuu311000, xuu600, ba), h, ba) 35.72/17.91 new_esEs30(xuu112, xuu115, app(ty_Ratio, ddb)) -> new_esEs21(xuu112, xuu115, ddb) 35.72/17.91 new_lt21(xuu112, xuu115, app(app(ty_Either, bfd), bfe)) -> new_lt4(xuu112, xuu115, bfd, bfe) 35.72/17.91 new_ltEs20(xuu60, xuu61, app(app(ty_Either, cfa), cfb)) -> new_ltEs5(xuu60, xuu61, cfa, cfb) 35.72/17.91 new_ltEs12(Just(xuu530), Just(xuu540), app(ty_[], bae)) -> new_ltEs11(xuu530, xuu540, bae) 35.72/17.91 new_ltEs20(xuu60, xuu61, ty_Integer) -> new_ltEs8(xuu60, xuu61) 35.72/17.91 new_esEs18(False, False) -> True 35.72/17.91 new_ltEs24(xuu87, xuu88, ty_Ordering) -> new_ltEs10(xuu87, xuu88) 35.72/17.91 new_ltEs20(xuu60, xuu61, ty_Double) -> new_ltEs7(xuu60, xuu61) 35.72/17.91 new_esEs11(xuu311001, xuu601, ty_Float) -> new_esEs12(xuu311001, xuu601) 35.72/17.91 new_esEs27(xuu530, xuu540, app(ty_[], eg)) -> new_esEs22(xuu530, xuu540, eg) 35.72/17.91 new_ltEs18(xuu532, xuu542, ty_Float) -> new_ltEs9(xuu532, xuu542) 35.72/17.91 new_compare25(xuu60, xuu61, False, ceh, eba) -> new_compare14(xuu60, xuu61, new_ltEs20(xuu60, xuu61, eba), ceh, eba) 35.72/17.91 new_esEs30(xuu112, xuu115, app(app(ty_@2, bgc), bgd)) -> new_esEs16(xuu112, xuu115, bgc, bgd) 35.72/17.91 new_ltEs5(Left(xuu530), Left(xuu540), ty_Integer, bd) -> new_ltEs8(xuu530, xuu540) 35.72/17.91 new_esEs10(xuu311000, xuu600, app(app(ty_@2, eca), ecb)) -> new_esEs16(xuu311000, xuu600, eca, ecb) 35.72/17.91 new_esEs33(xuu3110002, xuu6002, app(ty_[], dhd)) -> new_esEs22(xuu3110002, xuu6002, dhd) 35.72/17.91 new_primCmpInt(Pos(Succ(xuu3110000)), Pos(xuu600)) -> new_primCmpNat0(Succ(xuu3110000), xuu600) 35.72/17.91 new_ltEs21(xuu53, xuu54, app(ty_Maybe, ede)) -> new_ltEs12(xuu53, xuu54, ede) 35.72/17.91 new_ltEs5(Right(xuu530), Right(xuu540), ce, app(app(ty_Either, cf), cg)) -> new_ltEs5(xuu530, xuu540, cf, cg) 35.72/17.91 new_compare6(Right(xuu311000), Left(xuu600), h, ba) -> GT 35.72/17.91 new_ltEs18(xuu532, xuu542, app(app(ty_@2, he), hf)) -> new_ltEs13(xuu532, xuu542, he, hf) 35.72/17.91 new_esEs29(xuu111, xuu114, ty_Char) -> new_esEs15(xuu111, xuu114) 35.72/17.91 new_esEs39(xuu3110000, xuu6000, app(app(ty_Either, fea), feb)) -> new_esEs19(xuu3110000, xuu6000, fea, feb) 35.72/17.91 new_compare10(xuu198, xuu199, xuu200, xuu201, True, dcb, dcc) -> LT 35.72/17.91 new_sr(xuu311000, xuu601) -> new_primMulInt(xuu311000, xuu601) 35.72/17.91 new_esEs8(xuu311002, xuu602, ty_Char) -> new_esEs15(xuu311002, xuu602) 35.72/17.91 new_esEs38(xuu530, xuu540, app(ty_Ratio, fbd)) -> new_esEs21(xuu530, xuu540, fbd) 35.72/17.91 new_esEs4(xuu311000, xuu600, ty_Float) -> new_esEs12(xuu311000, xuu600) 35.72/17.91 new_esEs21(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), eah) -> new_asAs(new_esEs34(xuu3110000, xuu6000, eah), new_esEs35(xuu3110001, xuu6001, eah)) 35.72/17.91 new_primMulNat0(Zero, Zero) -> Zero 35.72/17.91 new_compare28(EQ, LT) -> GT 35.72/17.91 new_esEs24(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, fgb), fgc)) -> new_esEs16(xuu3110000, xuu6000, fgb, fgc) 35.72/17.91 new_ltEs21(xuu53, xuu54, ty_@0) -> new_ltEs17(xuu53, xuu54) 35.72/17.91 new_lt23(xuu530, xuu540, ty_Bool) -> new_lt17(xuu530, xuu540) 35.72/17.91 new_ltEs20(xuu60, xuu61, app(ty_Maybe, cfg)) -> new_ltEs12(xuu60, xuu61, cfg) 35.72/17.91 new_primMulNat0(Succ(xuu31100000), Succ(xuu60100)) -> new_primPlusNat0(new_primMulNat0(xuu31100000, Succ(xuu60100)), Succ(xuu60100)) 35.72/17.91 new_compare17(xuu311000, xuu600, ty_Double) -> new_compare19(xuu311000, xuu600) 35.72/17.91 new_esEs7(xuu311001, xuu601, ty_Char) -> new_esEs15(xuu311001, xuu601) 35.72/17.91 new_esEs4(xuu311000, xuu600, app(app(ty_@2, ebe), ebf)) -> new_esEs16(xuu311000, xuu600, ebe, ebf) 35.72/17.91 new_compare16(True, True) -> EQ 35.72/17.91 new_compare9(@0, @0) -> EQ 35.72/17.91 new_esEs4(xuu311000, xuu600, app(ty_Maybe, ebh)) -> new_esEs24(xuu311000, xuu600, ebh) 35.72/17.91 new_esEs40(xuu3110001, xuu6001, app(app(ty_Either, ffc), ffd)) -> new_esEs19(xuu3110001, xuu6001, ffc, ffd) 35.72/17.91 new_esEs32(xuu3110001, xuu6001, ty_Float) -> new_esEs12(xuu3110001, xuu6001) 35.72/17.91 new_lt20(xuu111, xuu114, app(app(app(ty_@3, bed), bee), bef)) -> new_lt8(xuu111, xuu114, bed, bee, bef) 35.72/17.91 new_compare3(:(xuu311000, xuu311001), :(xuu600, xuu601), bhf) -> new_primCompAux1(xuu311000, xuu600, new_compare3(xuu311001, xuu601, bhf), bhf) 35.72/17.91 new_compare17(xuu311000, xuu600, app(ty_Maybe, cae)) -> new_compare15(xuu311000, xuu600, cae) 35.72/17.91 new_esEs39(xuu3110000, xuu6000, app(app(app(ty_@3, fdf), fdg), fdh)) -> new_esEs17(xuu3110000, xuu6000, fdf, fdg, fdh) 35.72/17.91 new_esEs39(xuu3110000, xuu6000, app(app(ty_@2, fdd), fde)) -> new_esEs16(xuu3110000, xuu6000, fdd, fde) 35.72/17.91 new_esEs9(xuu311000, xuu600, ty_Ordering) -> new_esEs25(xuu311000, xuu600) 35.72/17.91 new_esEs27(xuu530, xuu540, ty_Ordering) -> new_esEs25(xuu530, xuu540) 35.72/17.91 new_esEs37(xuu3110000, xuu6000, ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.91 new_lt21(xuu112, xuu115, app(ty_Maybe, bgb)) -> new_lt14(xuu112, xuu115, bgb) 35.72/17.91 new_ltEs22(xuu125, xuu127, app(ty_Ratio, faa)) -> new_ltEs14(xuu125, xuu127, faa) 35.72/17.91 new_esEs38(xuu530, xuu540, ty_@0) -> new_esEs14(xuu530, xuu540) 35.72/17.91 new_esEs27(xuu530, xuu540, ty_Double) -> new_esEs20(xuu530, xuu540) 35.72/17.91 new_esEs39(xuu3110000, xuu6000, ty_Bool) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.91 new_lt21(xuu112, xuu115, ty_@0) -> new_lt19(xuu112, xuu115) 35.72/17.91 new_esEs33(xuu3110002, xuu6002, ty_Double) -> new_esEs20(xuu3110002, xuu6002) 35.72/17.91 new_esEs5(xuu311000, xuu600, app(ty_Maybe, ehd)) -> new_esEs24(xuu311000, xuu600, ehd) 35.72/17.91 new_esEs33(xuu3110002, xuu6002, ty_Integer) -> new_esEs23(xuu3110002, xuu6002) 35.72/17.91 new_lt6(xuu531, xuu541, ty_Bool) -> new_lt17(xuu531, xuu541) 35.72/17.91 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_@0, chd) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.91 new_esEs19(Right(xuu3110000), Right(xuu6000), dag, ty_Float) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.91 new_esEs9(xuu311000, xuu600, app(app(app(ty_@3, dhh), eaa), eab)) -> new_esEs17(xuu311000, xuu600, dhh, eaa, eab) 35.72/17.91 new_ltEs14(xuu53, xuu54, edf) -> new_fsEs(new_compare29(xuu53, xuu54, edf)) 35.72/17.91 new_ltEs23(xuu531, xuu541, ty_Ordering) -> new_ltEs10(xuu531, xuu541) 35.72/17.91 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Double, chd) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.91 new_primCompAux0(xuu81, EQ) -> xuu81 35.72/17.91 new_esEs9(xuu311000, xuu600, ty_Bool) -> new_esEs18(xuu311000, xuu600) 35.72/17.91 new_lt23(xuu530, xuu540, app(app(ty_@2, bca), bcb)) -> new_lt15(xuu530, xuu540, bca, bcb) 35.72/17.91 new_compare28(EQ, EQ) -> EQ 35.72/17.91 new_esEs37(xuu3110000, xuu6000, app(ty_[], fbb)) -> new_esEs22(xuu3110000, xuu6000, fbb) 35.72/17.91 new_lt10(xuu31100, xuu60) -> new_esEs26(new_compare8(xuu31100, xuu60)) 35.72/17.91 new_ltEs24(xuu87, xuu88, app(app(ty_Either, cba), cbb)) -> new_ltEs5(xuu87, xuu88, cba, cbb) 35.72/17.91 new_compare111(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, False, ehe, ehf, ehg) -> GT 35.72/17.91 new_esEs7(xuu311001, xuu601, ty_Int) -> new_esEs13(xuu311001, xuu601) 35.72/17.91 new_esEs32(xuu3110001, xuu6001, app(ty_[], dgb)) -> new_esEs22(xuu3110001, xuu6001, dgb) 35.72/17.91 new_esEs10(xuu311000, xuu600, ty_Float) -> new_esEs12(xuu311000, xuu600) 35.72/17.91 new_esEs40(xuu3110001, xuu6001, app(app(ty_@2, fef), feg)) -> new_esEs16(xuu3110001, xuu6001, fef, feg) 35.72/17.91 new_lt20(xuu111, xuu114, app(ty_Maybe, beh)) -> new_lt14(xuu111, xuu114, beh) 35.72/17.91 new_esEs32(xuu3110001, xuu6001, ty_Double) -> new_esEs20(xuu3110001, xuu6001) 35.72/17.91 new_lt22(xuu124, xuu126, app(ty_Ratio, ehh)) -> new_lt16(xuu124, xuu126, ehh) 35.72/17.91 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 35.72/17.91 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 35.72/17.91 new_ltEs23(xuu531, xuu541, app(ty_[], bda)) -> new_ltEs11(xuu531, xuu541, bda) 35.72/17.91 new_ltEs21(xuu53, xuu54, ty_Integer) -> new_ltEs8(xuu53, xuu54) 35.72/17.91 new_esEs17(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), dde, ddf, ddg) -> new_asAs(new_esEs31(xuu3110000, xuu6000, dde), new_asAs(new_esEs32(xuu3110001, xuu6001, ddf), new_esEs33(xuu3110002, xuu6002, ddg))) 35.72/17.91 new_compare24(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, True, bfc, beb, bec) -> EQ 35.72/17.91 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 35.72/17.91 new_esEs40(xuu3110001, xuu6001, ty_Integer) -> new_esEs23(xuu3110001, xuu6001) 35.72/17.91 new_ltEs10(GT, GT) -> True 35.72/17.91 new_esEs34(xuu3110000, xuu6000, ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.91 new_ltEs23(xuu531, xuu541, app(app(ty_@2, bdc), bdd)) -> new_ltEs13(xuu531, xuu541, bdc, bdd) 35.72/17.91 new_lt5(xuu530, xuu540, ty_@0) -> new_lt19(xuu530, xuu540) 35.72/17.91 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.91 new_lt23(xuu530, xuu540, ty_Ordering) -> new_lt12(xuu530, xuu540) 35.72/17.91 new_ltEs5(Left(xuu530), Left(xuu540), ty_@0, bd) -> new_ltEs17(xuu530, xuu540) 35.72/17.91 new_ltEs21(xuu53, xuu54, app(ty_Ratio, edf)) -> new_ltEs14(xuu53, xuu54, edf) 35.72/17.91 new_lt20(xuu111, xuu114, ty_Int) -> new_lt7(xuu111, xuu114) 35.72/17.91 new_ltEs19(xuu113, xuu116, app(ty_Maybe, bhc)) -> new_ltEs12(xuu113, xuu116, bhc) 35.72/17.91 new_ltEs18(xuu532, xuu542, app(app(ty_Either, gf), gg)) -> new_ltEs5(xuu532, xuu542, gf, gg) 35.72/17.91 new_compare13(@2(xuu311000, xuu311001), @2(xuu600, xuu601), ccb, ccc) -> new_compare211(xuu311000, xuu311001, xuu600, xuu601, new_asAs(new_esEs10(xuu311000, xuu600, ccb), new_esEs11(xuu311001, xuu601, ccc)), ccb, ccc) 35.72/17.91 new_ltEs20(xuu60, xuu61, ty_Float) -> new_ltEs9(xuu60, xuu61) 35.72/17.91 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 35.72/17.91 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 35.72/17.91 new_esEs11(xuu311001, xuu601, app(ty_Maybe, fcg)) -> new_esEs24(xuu311001, xuu601, fcg) 35.72/17.91 new_primCmpInt(Neg(Zero), Neg(Succ(xuu6000))) -> new_primCmpNat0(Succ(xuu6000), Zero) 35.72/17.91 new_esEs7(xuu311001, xuu601, app(ty_Ratio, cha)) -> new_esEs21(xuu311001, xuu601, cha) 35.72/17.91 new_esEs39(xuu3110000, xuu6000, ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.91 new_esEs29(xuu111, xuu114, app(app(ty_Either, bdh), bea)) -> new_esEs19(xuu111, xuu114, bdh, bea) 35.72/17.91 new_esEs10(xuu311000, xuu600, ty_Bool) -> new_esEs18(xuu311000, xuu600) 35.72/17.91 new_esEs31(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.91 new_esEs11(xuu311001, xuu601, ty_Ordering) -> new_esEs25(xuu311001, xuu601) 35.72/17.91 new_ltEs10(LT, EQ) -> True 35.72/17.91 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 35.72/17.91 new_lt22(xuu124, xuu126, ty_Double) -> new_lt9(xuu124, xuu126) 35.72/17.91 new_esEs19(Right(xuu3110000), Right(xuu6000), dag, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs17(xuu3110000, xuu6000, dbb, dbc, dbd) 35.72/17.91 new_lt22(xuu124, xuu126, app(app(ty_Either, ccd), cce)) -> new_lt4(xuu124, xuu126, ccd, cce) 35.72/17.91 new_lt21(xuu112, xuu115, ty_Float) -> new_lt11(xuu112, xuu115) 35.72/17.91 new_ltEs5(Left(xuu530), Left(xuu540), app(ty_[], ca), bd) -> new_ltEs11(xuu530, xuu540, ca) 35.72/17.91 new_esEs28(xuu531, xuu541, app(app(ty_@2, gd), ge)) -> new_esEs16(xuu531, xuu541, gd, ge) 35.72/17.91 new_ltEs19(xuu113, xuu116, ty_@0) -> new_ltEs17(xuu113, xuu116) 35.72/17.91 new_compare17(xuu311000, xuu600, app(app(app(ty_@3, caa), cab), cac)) -> new_compare18(xuu311000, xuu600, caa, cab, cac) 35.72/17.91 new_esEs19(Right(xuu3110000), Right(xuu6000), dag, app(app(ty_Either, dbe), dbf)) -> new_esEs19(xuu3110000, xuu6000, dbe, dbf) 35.72/17.91 new_ltEs19(xuu113, xuu116, ty_Float) -> new_ltEs9(xuu113, xuu116) 35.72/17.91 new_compare12(xuu168, xuu169, True, ddd) -> LT 35.72/17.91 new_esEs5(xuu311000, xuu600, ty_Int) -> new_esEs13(xuu311000, xuu600) 35.72/17.91 new_esEs27(xuu530, xuu540, app(ty_Ratio, dcf)) -> new_esEs21(xuu530, xuu540, dcf) 35.72/17.91 new_lt20(xuu111, xuu114, app(app(ty_@2, bfa), bfb)) -> new_lt15(xuu111, xuu114, bfa, bfb) 35.72/17.91 new_esEs19(Right(xuu3110000), Right(xuu6000), dag, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.91 new_compare17(xuu311000, xuu600, ty_@0) -> new_compare9(xuu311000, xuu600) 35.72/17.91 new_esEs6(xuu311000, xuu600, app(ty_Ratio, eef)) -> new_esEs21(xuu311000, xuu600, eef) 35.72/17.91 new_esEs10(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) 35.72/17.91 new_esEs27(xuu530, xuu540, app(ty_Maybe, eh)) -> new_esEs24(xuu530, xuu540, eh) 35.72/17.91 new_esEs11(xuu311001, xuu601, app(ty_[], fcf)) -> new_esEs22(xuu311001, xuu601, fcf) 35.72/17.91 new_esEs38(xuu530, xuu540, app(app(ty_Either, bba), bbb)) -> new_esEs19(xuu530, xuu540, bba, bbb) 35.72/17.91 new_ltEs12(Just(xuu530), Just(xuu540), app(app(ty_@2, bag), bah)) -> new_ltEs13(xuu530, xuu540, bag, bah) 35.72/17.91 new_esEs40(xuu3110001, xuu6001, ty_Int) -> new_esEs13(xuu3110001, xuu6001) 35.72/17.91 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.91 new_not(False) -> True 35.72/17.91 new_esEs11(xuu311001, xuu601, ty_Bool) -> new_esEs18(xuu311001, xuu601) 35.72/17.91 new_lt20(xuu111, xuu114, ty_Bool) -> new_lt17(xuu111, xuu114) 35.72/17.91 new_esEs36(xuu124, xuu126, app(ty_[], cdb)) -> new_esEs22(xuu124, xuu126, cdb) 35.72/17.91 new_ltEs12(Just(xuu530), Just(xuu540), ty_@0) -> new_ltEs17(xuu530, xuu540) 35.72/17.91 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Ordering, chd) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.91 new_ltEs12(Just(xuu530), Just(xuu540), ty_Float) -> new_ltEs9(xuu530, xuu540) 35.72/17.91 new_esEs19(Right(xuu3110000), Right(xuu6000), dag, app(ty_[], dbh)) -> new_esEs22(xuu3110000, xuu6000, dbh) 35.72/17.91 new_esEs9(xuu311000, xuu600, app(ty_[], eaf)) -> new_esEs22(xuu311000, xuu600, eaf) 35.72/17.91 new_esEs36(xuu124, xuu126, app(app(ty_@2, cdd), cde)) -> new_esEs16(xuu124, xuu126, cdd, cde) 35.72/17.91 new_esEs8(xuu311002, xuu602, ty_@0) -> new_esEs14(xuu311002, xuu602) 35.72/17.91 new_compare28(GT, EQ) -> GT 35.72/17.91 new_ltEs24(xuu87, xuu88, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs6(xuu87, xuu88, cbc, cbd, cbe) 35.72/17.91 new_compare6(Left(xuu311000), Left(xuu600), h, ba) -> new_compare210(xuu311000, xuu600, new_esEs4(xuu311000, xuu600, h), h, ba) 35.72/17.92 new_ltEs12(Just(xuu530), Just(xuu540), app(ty_Ratio, fdc)) -> new_ltEs14(xuu530, xuu540, fdc) 35.72/17.92 new_esEs18(False, True) -> False 35.72/17.92 new_esEs18(True, False) -> False 35.72/17.92 new_esEs27(xuu530, xuu540, ty_Integer) -> new_esEs23(xuu530, xuu540) 35.72/17.92 new_esEs37(xuu3110000, xuu6000, ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.92 new_primPlusNat0(Succ(xuu42200), Succ(xuu13700)) -> Succ(Succ(new_primPlusNat0(xuu42200, xuu13700))) 35.72/17.92 new_lt5(xuu530, xuu540, app(app(ty_Either, dh), ea)) -> new_lt4(xuu530, xuu540, dh, ea) 35.72/17.92 new_ltEs16(xuu53, xuu54) -> new_fsEs(new_compare30(xuu53, xuu54)) 35.72/17.92 new_ltEs10(EQ, GT) -> True 35.72/17.92 new_lt19(xuu31100, xuu60) -> new_esEs26(new_compare9(xuu31100, xuu60)) 35.72/17.92 new_lt22(xuu124, xuu126, ty_Char) -> new_lt18(xuu124, xuu126) 35.72/17.92 new_esEs36(xuu124, xuu126, ty_Double) -> new_esEs20(xuu124, xuu126) 35.72/17.92 new_esEs25(LT, EQ) -> False 35.72/17.92 new_esEs25(EQ, LT) -> False 35.72/17.92 new_esEs29(xuu111, xuu114, app(ty_Ratio, dda)) -> new_esEs21(xuu111, xuu114, dda) 35.72/17.92 new_ltEs20(xuu60, xuu61, app(ty_Ratio, ebb)) -> new_ltEs14(xuu60, xuu61, ebb) 35.72/17.92 new_ltEs13(@2(xuu530, xuu531), @2(xuu540, xuu541), bcc, bbc) -> new_pePe(new_lt23(xuu530, xuu540, bcc), new_asAs(new_esEs38(xuu530, xuu540, bcc), new_ltEs23(xuu531, xuu541, bbc))) 35.72/17.92 new_esEs4(xuu311000, xuu600, app(app(ty_Either, dag), chd)) -> new_esEs19(xuu311000, xuu600, dag, chd) 35.72/17.92 new_esEs38(xuu530, xuu540, app(app(ty_@2, bca), bcb)) -> new_esEs16(xuu530, xuu540, bca, bcb) 35.72/17.92 new_compare28(GT, GT) -> EQ 35.72/17.92 new_ltEs10(EQ, EQ) -> True 35.72/17.92 new_ltEs15(False, True) -> True 35.72/17.92 new_lt5(xuu530, xuu540, ty_Bool) -> new_lt17(xuu530, xuu540) 35.72/17.92 new_esEs28(xuu531, xuu541, app(app(ty_Either, fd), ff)) -> new_esEs19(xuu531, xuu541, fd, ff) 35.72/17.92 new_esEs30(xuu112, xuu115, ty_Int) -> new_esEs13(xuu112, xuu115) 35.72/17.92 new_esEs26(EQ) -> False 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), ty_Int, bd) -> new_ltEs4(xuu530, xuu540) 35.72/17.92 new_esEs9(xuu311000, xuu600, ty_Double) -> new_esEs20(xuu311000, xuu600) 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), ty_Bool, bd) -> new_ltEs15(xuu530, xuu540) 35.72/17.92 new_compare17(xuu311000, xuu600, app(app(ty_Either, bhg), bhh)) -> new_compare6(xuu311000, xuu600, bhg, bhh) 35.72/17.92 new_esEs36(xuu124, xuu126, app(app(ty_Either, ccd), cce)) -> new_esEs19(xuu124, xuu126, ccd, cce) 35.72/17.92 new_lt23(xuu530, xuu540, ty_Double) -> new_lt9(xuu530, xuu540) 35.72/17.92 new_esEs35(xuu3110001, xuu6001, ty_Integer) -> new_esEs23(xuu3110001, xuu6001) 35.72/17.92 new_esEs11(xuu311001, xuu601, app(app(app(ty_@3, fbh), fca), fcb)) -> new_esEs17(xuu311001, xuu601, fbh, fca, fcb) 35.72/17.92 new_ltEs24(xuu87, xuu88, app(ty_Maybe, cbg)) -> new_ltEs12(xuu87, xuu88, cbg) 35.72/17.92 new_compare27(Float(xuu311000, Pos(xuu3110010)), Float(xuu600, Pos(xuu6010))) -> new_compare7(new_sr(xuu311000, Pos(xuu6010)), new_sr(Pos(xuu3110010), xuu600)) 35.72/17.92 new_ltEs19(xuu113, xuu116, app(ty_Ratio, ddc)) -> new_ltEs14(xuu113, xuu116, ddc) 35.72/17.92 new_lt22(xuu124, xuu126, app(app(ty_@2, cdd), cde)) -> new_lt15(xuu124, xuu126, cdd, cde) 35.72/17.92 new_lt8(xuu31100, xuu60, bde, bdf, bdg) -> new_esEs26(new_compare18(xuu31100, xuu60, bde, bdf, bdg)) 35.72/17.92 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 35.72/17.92 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 35.72/17.92 new_esEs38(xuu530, xuu540, ty_Ordering) -> new_esEs25(xuu530, xuu540) 35.72/17.92 new_esEs33(xuu3110002, xuu6002, ty_@0) -> new_esEs14(xuu3110002, xuu6002) 35.72/17.92 new_compare15(Nothing, Just(xuu600), cah) -> LT 35.72/17.92 new_esEs37(xuu3110000, xuu6000, ty_Float) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.92 new_esEs19(Right(xuu3110000), Right(xuu6000), dag, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.92 new_esEs11(xuu311001, xuu601, ty_Double) -> new_esEs20(xuu311001, xuu601) 35.72/17.92 new_ltEs23(xuu531, xuu541, ty_Bool) -> new_ltEs15(xuu531, xuu541) 35.72/17.92 new_ltEs24(xuu87, xuu88, ty_Char) -> new_ltEs16(xuu87, xuu88) 35.72/17.92 new_ltEs5(Right(xuu530), Right(xuu540), ce, app(app(app(ty_@3, da), db), dc)) -> new_ltEs6(xuu530, xuu540, da, db, dc) 35.72/17.92 new_ltEs23(xuu531, xuu541, ty_Double) -> new_ltEs7(xuu531, xuu541) 35.72/17.92 new_compare211(xuu124, xuu125, xuu126, xuu127, False, cdf, ccf) -> new_compare112(xuu124, xuu125, xuu126, xuu127, new_lt22(xuu124, xuu126, cdf), new_asAs(new_esEs36(xuu124, xuu126, cdf), new_ltEs22(xuu125, xuu127, ccf)), cdf, ccf) 35.72/17.92 new_esEs26(GT) -> False 35.72/17.92 new_ltEs24(xuu87, xuu88, app(app(ty_@2, cbh), cca)) -> new_ltEs13(xuu87, xuu88, cbh, cca) 35.72/17.92 new_compare17(xuu311000, xuu600, app(app(ty_@2, caf), cag)) -> new_compare13(xuu311000, xuu600, caf, cag) 35.72/17.92 new_ltEs21(xuu53, xuu54, app(app(app(ty_@3, fc), eb), ec)) -> new_ltEs6(xuu53, xuu54, fc, eb, ec) 35.72/17.92 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Integer, chd) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.92 new_lt21(xuu112, xuu115, app(app(app(ty_@3, bff), bfg), bfh)) -> new_lt8(xuu112, xuu115, bff, bfg, bfh) 35.72/17.92 new_compare17(xuu311000, xuu600, ty_Char) -> new_compare30(xuu311000, xuu600) 35.72/17.92 new_ltEs12(Nothing, Just(xuu540), ede) -> True 35.72/17.92 new_ltEs24(xuu87, xuu88, ty_Integer) -> new_ltEs8(xuu87, xuu88) 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), ty_Double, bd) -> new_ltEs7(xuu530, xuu540) 35.72/17.92 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 35.72/17.92 new_ltEs21(xuu53, xuu54, app(app(ty_Either, ce), bd)) -> new_ltEs5(xuu53, xuu54, ce, bd) 35.72/17.92 new_esEs11(xuu311001, xuu601, ty_Char) -> new_esEs15(xuu311001, xuu601) 35.72/17.92 new_ltEs21(xuu53, xuu54, ty_Ordering) -> new_ltEs10(xuu53, xuu54) 35.72/17.92 new_compare28(GT, LT) -> GT 35.72/17.92 new_ltEs22(xuu125, xuu127, app(app(ty_Either, cdg), cdh)) -> new_ltEs5(xuu125, xuu127, cdg, cdh) 35.72/17.92 new_ltEs12(Just(xuu530), Just(xuu540), ty_Int) -> new_ltEs4(xuu530, xuu540) 35.72/17.92 new_ltEs23(xuu531, xuu541, ty_Integer) -> new_ltEs8(xuu531, xuu541) 35.72/17.92 new_primCmpNat0(Succ(xuu3110000), Succ(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) 35.72/17.92 new_lt22(xuu124, xuu126, ty_@0) -> new_lt19(xuu124, xuu126) 35.72/17.92 new_esEs22([], [], ebg) -> True 35.72/17.92 new_ltEs17(xuu53, xuu54) -> new_fsEs(new_compare9(xuu53, xuu54)) 35.72/17.92 new_compare17(xuu311000, xuu600, app(ty_Ratio, edc)) -> new_compare29(xuu311000, xuu600, edc) 35.72/17.92 new_esEs9(xuu311000, xuu600, ty_Char) -> new_esEs15(xuu311000, xuu600) 35.72/17.92 new_compare30(Char(xuu311000), Char(xuu600)) -> new_primCmpNat0(xuu311000, xuu600) 35.72/17.92 new_esEs28(xuu531, xuu541, ty_Int) -> new_esEs13(xuu531, xuu541) 35.72/17.92 new_esEs36(xuu124, xuu126, ty_Ordering) -> new_esEs25(xuu124, xuu126) 35.72/17.92 new_esEs39(xuu3110000, xuu6000, app(ty_Ratio, fec)) -> new_esEs21(xuu3110000, xuu6000, fec) 35.72/17.92 new_esEs27(xuu530, xuu540, app(app(ty_Either, dh), ea)) -> new_esEs19(xuu530, xuu540, dh, ea) 35.72/17.92 new_esEs24(Nothing, Nothing, ebh) -> True 35.72/17.92 new_ltEs22(xuu125, xuu127, app(ty_Maybe, cee)) -> new_ltEs12(xuu125, xuu127, cee) 35.72/17.92 new_compare3(:(xuu311000, xuu311001), [], bhf) -> GT 35.72/17.92 new_ltEs12(Nothing, Nothing, ede) -> True 35.72/17.92 new_esEs10(xuu311000, xuu600, ty_Char) -> new_esEs15(xuu311000, xuu600) 35.72/17.92 new_compare17(xuu311000, xuu600, ty_Integer) -> new_compare8(xuu311000, xuu600) 35.72/17.92 new_ltEs12(Just(xuu530), Nothing, ede) -> False 35.72/17.92 new_lt20(xuu111, xuu114, ty_Char) -> new_lt18(xuu111, xuu114) 35.72/17.92 new_esEs33(xuu3110002, xuu6002, ty_Char) -> new_esEs15(xuu3110002, xuu6002) 35.72/17.92 new_compare19(Double(xuu311000, Pos(xuu3110010)), Double(xuu600, Neg(xuu6010))) -> new_compare7(new_sr(xuu311000, Pos(xuu6010)), new_sr(Neg(xuu3110010), xuu600)) 35.72/17.92 new_compare19(Double(xuu311000, Neg(xuu3110010)), Double(xuu600, Pos(xuu6010))) -> new_compare7(new_sr(xuu311000, Neg(xuu6010)), new_sr(Pos(xuu3110010), xuu600)) 35.72/17.92 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 35.72/17.92 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 35.72/17.92 new_compare112(xuu198, xuu199, xuu200, xuu201, True, xuu203, dcb, dcc) -> new_compare10(xuu198, xuu199, xuu200, xuu201, True, dcb, dcc) 35.72/17.92 new_lt23(xuu530, xuu540, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt8(xuu530, xuu540, bbd, bbe, bbf) 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), app(app(ty_@2, cc), cd), bd) -> new_ltEs13(xuu530, xuu540, cc, cd) 35.72/17.92 new_compare110(xuu147, xuu148, False, ffh, fga) -> GT 35.72/17.92 new_lt5(xuu530, xuu540, ty_Char) -> new_lt18(xuu530, xuu540) 35.72/17.92 new_esEs27(xuu530, xuu540, ty_Int) -> new_esEs13(xuu530, xuu540) 35.72/17.92 new_esEs19(Right(xuu3110000), Right(xuu6000), dag, app(app(ty_@2, dah), dba)) -> new_esEs16(xuu3110000, xuu6000, dah, dba) 35.72/17.92 new_primEqNat0(Zero, Zero) -> True 35.72/17.92 new_esEs37(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.92 new_compare28(LT, EQ) -> LT 35.72/17.92 new_ltEs18(xuu532, xuu542, app(ty_Ratio, dch)) -> new_ltEs14(xuu532, xuu542, dch) 35.72/17.92 new_lt20(xuu111, xuu114, app(app(ty_Either, bdh), bea)) -> new_lt4(xuu111, xuu114, bdh, bea) 35.72/17.92 new_ltEs15(True, False) -> False 35.72/17.92 new_ltEs5(Right(xuu530), Right(xuu540), ce, app(app(ty_@2, df), dg)) -> new_ltEs13(xuu530, xuu540, df, dg) 35.72/17.92 new_ltEs23(xuu531, xuu541, app(ty_Maybe, bdb)) -> new_ltEs12(xuu531, xuu541, bdb) 35.72/17.92 new_esEs15(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 35.72/17.92 new_ltEs5(Right(xuu530), Right(xuu540), ce, ty_Ordering) -> new_ltEs10(xuu530, xuu540) 35.72/17.92 new_esEs36(xuu124, xuu126, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs17(xuu124, xuu126, ccg, cch, cda) 35.72/17.92 new_esEs37(xuu3110000, xuu6000, app(app(ty_@2, fab), fac)) -> new_esEs16(xuu3110000, xuu6000, fab, fac) 35.72/17.92 new_esEs12(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs13(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 35.72/17.92 new_ltEs24(xuu87, xuu88, ty_Double) -> new_ltEs7(xuu87, xuu88) 35.72/17.92 new_esEs24(Nothing, Just(xuu6000), ebh) -> False 35.72/17.92 new_esEs24(Just(xuu3110000), Nothing, ebh) -> False 35.72/17.92 new_ltEs24(xuu87, xuu88, ty_Bool) -> new_ltEs15(xuu87, xuu88) 35.72/17.92 new_compare14(xuu154, xuu155, False, ebc, ebd) -> GT 35.72/17.92 new_esEs37(xuu3110000, xuu6000, app(ty_Maybe, fbc)) -> new_esEs24(xuu3110000, xuu6000, fbc) 35.72/17.92 new_lt21(xuu112, xuu115, ty_Char) -> new_lt18(xuu112, xuu115) 35.72/17.92 new_esEs4(xuu311000, xuu600, app(ty_Ratio, eah)) -> new_esEs21(xuu311000, xuu600, eah) 35.72/17.92 new_ltEs10(LT, GT) -> True 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), ty_Char, bd) -> new_ltEs16(xuu530, xuu540) 35.72/17.92 new_asAs(False, xuu163) -> False 35.72/17.92 new_esEs36(xuu124, xuu126, ty_Bool) -> new_esEs18(xuu124, xuu126) 35.72/17.92 new_esEs19(Left(xuu3110000), Right(xuu6000), dag, chd) -> False 35.72/17.92 new_esEs19(Right(xuu3110000), Left(xuu6000), dag, chd) -> False 35.72/17.92 new_lt22(xuu124, xuu126, app(app(app(ty_@3, ccg), cch), cda)) -> new_lt8(xuu124, xuu126, ccg, cch, cda) 35.72/17.92 new_lt15(xuu31100, xuu60, ccb, ccc) -> new_esEs26(new_compare13(xuu31100, xuu60, ccb, ccc)) 35.72/17.92 new_ltEs21(xuu53, xuu54, app(ty_[], hg)) -> new_ltEs11(xuu53, xuu54, hg) 35.72/17.92 new_esEs4(xuu311000, xuu600, ty_Int) -> new_esEs13(xuu311000, xuu600) 35.72/17.92 new_lt5(xuu530, xuu540, app(app(ty_@2, fa), fb)) -> new_lt15(xuu530, xuu540, fa, fb) 35.72/17.92 new_ltEs19(xuu113, xuu116, ty_Ordering) -> new_ltEs10(xuu113, xuu116) 35.72/17.92 new_ltEs20(xuu60, xuu61, ty_Ordering) -> new_ltEs10(xuu60, xuu61) 35.72/17.92 new_ltEs22(xuu125, xuu127, app(app(app(ty_@3, cea), ceb), cec)) -> new_ltEs6(xuu125, xuu127, cea, ceb, cec) 35.72/17.92 new_esEs24(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, fha)) -> new_esEs21(xuu3110000, xuu6000, fha) 35.72/17.92 new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, che), chf), chd) -> new_esEs16(xuu3110000, xuu6000, che, chf) 35.72/17.92 new_esEs25(EQ, EQ) -> True 35.72/17.92 new_compare27(Float(xuu311000, Neg(xuu3110010)), Float(xuu600, Neg(xuu6010))) -> new_compare7(new_sr(xuu311000, Neg(xuu6010)), new_sr(Neg(xuu3110010), xuu600)) 35.72/17.92 new_ltEs15(False, False) -> True 35.72/17.92 new_esEs28(xuu531, xuu541, app(ty_Ratio, dcg)) -> new_esEs21(xuu531, xuu541, dcg) 35.72/17.92 new_esEs39(xuu3110000, xuu6000, ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.92 new_lt23(xuu530, xuu540, ty_@0) -> new_lt19(xuu530, xuu540) 35.72/17.92 35.72/17.92 The set Q consists of the following terms: 35.72/17.92 35.72/17.92 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs26(LT) 35.72/17.92 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_primCompAux0(x0, EQ) 35.72/17.92 new_esEs32(x0, x1, app(ty_[], x2)) 35.72/17.92 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs39(x0, x1, ty_Bool) 35.72/17.92 new_lt22(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs29(x0, x1, ty_Integer) 35.72/17.92 new_primMulInt(Pos(x0), Pos(x1)) 35.72/17.92 new_ltEs21(x0, x1, ty_Char) 35.72/17.92 new_compare14(x0, x1, False, x2, x3) 35.72/17.92 new_esEs11(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_compare15(Just(x0), Nothing, x1) 35.72/17.92 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_primMulInt(Pos(x0), Neg(x1)) 35.72/17.92 new_primMulInt(Neg(x0), Pos(x1)) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 35.72/17.92 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs24(Just(x0), Just(x1), ty_Char) 35.72/17.92 new_lt20(x0, x1, ty_Integer) 35.72/17.92 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_lt23(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_compare28(EQ, LT) 35.72/17.92 new_compare28(LT, EQ) 35.72/17.92 new_esEs21(:%(x0, x1), :%(x2, x3), x4) 35.72/17.92 new_esEs27(x0, x1, ty_Char) 35.72/17.92 new_esEs33(x0, x1, ty_Float) 35.72/17.92 new_esEs19(Left(x0), Left(x1), ty_@0, x2) 35.72/17.92 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs24(Just(x0), Just(x1), ty_Int) 35.72/17.92 new_lt22(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 35.72/17.92 new_esEs31(x0, x1, ty_Integer) 35.72/17.92 new_esEs37(x0, x1, ty_Bool) 35.72/17.92 new_ltEs20(x0, x1, ty_Int) 35.72/17.92 new_ltEs10(LT, LT) 35.72/17.92 new_compare17(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_lt23(x0, x1, ty_Float) 35.72/17.92 new_ltEs20(x0, x1, ty_Ordering) 35.72/17.92 new_esEs37(x0, x1, ty_@0) 35.72/17.92 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs19(Left(x0), Left(x1), ty_Bool, x2) 35.72/17.92 new_esEs18(True, True) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 35.72/17.92 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) 35.72/17.92 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_primEqInt(Pos(Zero), Pos(Zero)) 35.72/17.92 new_lt21(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs6(x0, x1, app(ty_[], x2)) 35.72/17.92 new_lt20(x0, x1, ty_Bool) 35.72/17.92 new_esEs9(x0, x1, ty_@0) 35.72/17.92 new_esEs24(Just(x0), Just(x1), ty_Ordering) 35.72/17.92 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs28(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs20(Double(x0, x1), Double(x2, x3)) 35.72/17.92 new_ltEs18(x0, x1, ty_Bool) 35.72/17.92 new_esEs28(x0, x1, ty_Bool) 35.72/17.92 new_compare28(GT, GT) 35.72/17.92 new_compare211(x0, x1, x2, x3, False, x4, x5) 35.72/17.92 new_esEs37(x0, x1, ty_Integer) 35.72/17.92 new_esEs39(x0, x1, ty_@0) 35.72/17.92 new_lt5(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs29(x0, x1, ty_@0) 35.72/17.92 new_lt5(x0, x1, ty_Float) 35.72/17.92 new_esEs9(x0, x1, ty_Int) 35.72/17.92 new_compare3(:(x0, x1), [], x2) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), ty_Bool) 35.72/17.92 new_ltEs20(x0, x1, ty_Double) 35.72/17.92 new_lt4(x0, x1, x2, x3) 35.72/17.92 new_primEqNat0(Zero, Succ(x0)) 35.72/17.92 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_lt6(x0, x1, ty_Float) 35.72/17.92 new_primMulInt(Neg(x0), Neg(x1)) 35.72/17.92 new_ltEs23(x0, x1, ty_Bool) 35.72/17.92 new_ltEs20(x0, x1, ty_Char) 35.72/17.92 new_esEs9(x0, x1, ty_Char) 35.72/17.92 new_ltEs19(x0, x1, ty_Double) 35.72/17.92 new_primEqInt(Neg(Zero), Neg(Zero)) 35.72/17.92 new_esEs25(LT, LT) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 35.72/17.92 new_esEs5(x0, x1, ty_Bool) 35.72/17.92 new_lt20(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs5(x0, x1, app(ty_[], x2)) 35.72/17.92 new_lt21(x0, x1, ty_Bool) 35.72/17.92 new_esEs12(Float(x0, x1), Float(x2, x3)) 35.72/17.92 new_lt5(x0, x1, ty_Integer) 35.72/17.92 new_esEs5(x0, x1, ty_Integer) 35.72/17.92 new_ltEs15(False, True) 35.72/17.92 new_ltEs15(True, False) 35.72/17.92 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_lt10(x0, x1) 35.72/17.92 new_lt21(x0, x1, ty_Float) 35.72/17.92 new_esEs40(x0, x1, app(ty_[], x2)) 35.72/17.92 new_ltEs22(x0, x1, ty_Float) 35.72/17.92 new_ltEs15(True, True) 35.72/17.92 new_esEs27(x0, x1, ty_Ordering) 35.72/17.92 new_esEs9(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_compare17(x0, x1, ty_Ordering) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), ty_Integer) 35.72/17.92 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 35.72/17.92 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 35.72/17.92 new_esEs30(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_lt22(x0, x1, ty_Int) 35.72/17.92 new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) 35.72/17.92 new_esEs28(x0, x1, ty_Char) 35.72/17.92 new_esEs39(x0, x1, app(ty_[], x2)) 35.72/17.92 new_ltEs10(GT, EQ) 35.72/17.92 new_ltEs10(EQ, GT) 35.72/17.92 new_ltEs11(x0, x1, x2) 35.72/17.92 new_esEs40(x0, x1, ty_Float) 35.72/17.92 new_compare7(x0, x1) 35.72/17.92 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs4(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs39(x0, x1, ty_Integer) 35.72/17.92 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 35.72/17.92 new_compare110(x0, x1, True, x2, x3) 35.72/17.92 new_ltEs18(x0, x1, ty_@0) 35.72/17.92 new_ltEs18(x0, x1, ty_Char) 35.72/17.92 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_compare27(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 35.72/17.92 new_esEs5(x0, x1, ty_Ordering) 35.72/17.92 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_primEqInt(Pos(Zero), Neg(Zero)) 35.72/17.92 new_primEqInt(Neg(Zero), Pos(Zero)) 35.72/17.92 new_fsEs(x0) 35.72/17.92 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 35.72/17.92 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 35.72/17.92 new_esEs32(x0, x1, ty_Float) 35.72/17.92 new_esEs26(EQ) 35.72/17.92 new_esEs19(Left(x0), Left(x1), ty_Integer, x2) 35.72/17.92 new_compare211(x0, x1, x2, x3, True, x4, x5) 35.72/17.92 new_esEs37(x0, x1, app(ty_[], x2)) 35.72/17.92 new_lt22(x0, x1, ty_Char) 35.72/17.92 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_ltEs18(x0, x1, ty_Double) 35.72/17.92 new_ltEs24(x0, x1, ty_Integer) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 35.72/17.92 new_esEs8(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs25(GT, GT) 35.72/17.92 new_ltEs23(x0, x1, ty_@0) 35.72/17.92 new_primCompAux0(x0, LT) 35.72/17.92 new_esEs25(LT, EQ) 35.72/17.92 new_esEs25(EQ, LT) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 35.72/17.92 new_primCmpNat0(Succ(x0), Succ(x1)) 35.72/17.92 new_esEs33(x0, x1, ty_Integer) 35.72/17.92 new_ltEs23(x0, x1, ty_Float) 35.72/17.92 new_esEs28(x0, x1, ty_@0) 35.72/17.92 new_lt21(x0, x1, ty_@0) 35.72/17.92 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_ltEs21(x0, x1, ty_Ordering) 35.72/17.92 new_esEs25(EQ, GT) 35.72/17.92 new_esEs25(GT, EQ) 35.72/17.92 new_ltEs18(x0, x1, ty_Int) 35.72/17.92 new_esEs40(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_primCmpNat0(Zero, Succ(x0)) 35.72/17.92 new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 35.72/17.92 new_esEs22([], [], x0) 35.72/17.92 new_esEs35(x0, x1, ty_Int) 35.72/17.92 new_compare28(EQ, EQ) 35.72/17.92 new_esEs32(x0, x1, ty_@0) 35.72/17.92 new_lt22(x0, x1, ty_Double) 35.72/17.92 new_esEs28(x0, x1, ty_Int) 35.72/17.92 new_primEqNat0(Succ(x0), Succ(x1)) 35.72/17.92 new_esEs29(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 35.72/17.92 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs7(x0, x1, ty_Ordering) 35.72/17.92 new_esEs39(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_compare25(x0, x1, False, x2, x3) 35.72/17.92 new_esEs40(x0, x1, ty_Integer) 35.72/17.92 new_esEs33(x0, x1, ty_Bool) 35.72/17.92 new_esEs10(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_compare17(x0, x1, ty_Char) 35.72/17.92 new_lt6(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs34(x0, x1, ty_Int) 35.72/17.92 new_lt5(x0, x1, ty_@0) 35.72/17.92 new_esEs11(x0, x1, ty_Ordering) 35.72/17.92 new_esEs38(x0, x1, ty_Double) 35.72/17.92 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_ltEs23(x0, x1, ty_Ordering) 35.72/17.92 new_ltEs20(x0, x1, ty_Bool) 35.72/17.92 new_compare6(Left(x0), Left(x1), x2, x3) 35.72/17.92 new_ltEs10(EQ, LT) 35.72/17.92 new_esEs29(x0, x1, ty_Int) 35.72/17.92 new_ltEs10(GT, GT) 35.72/17.92 new_ltEs10(LT, EQ) 35.72/17.92 new_ltEs7(x0, x1) 35.72/17.92 new_lt6(x0, x1, ty_Bool) 35.72/17.92 new_lt23(x0, x1, ty_Integer) 35.72/17.92 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs29(x0, x1, ty_Char) 35.72/17.92 new_lt15(x0, x1, x2, x3) 35.72/17.92 new_compare17(x0, x1, app(ty_[], x2)) 35.72/17.92 new_esEs36(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_ltEs8(x0, x1) 35.72/17.92 new_lt21(x0, x1, ty_Char) 35.72/17.92 new_esEs28(x0, x1, ty_Double) 35.72/17.92 new_esEs7(x0, x1, ty_Double) 35.72/17.92 new_ltEs24(x0, x1, ty_Char) 35.72/17.92 new_esEs19(Left(x0), Left(x1), ty_Float, x2) 35.72/17.92 new_esEs8(x0, x1, ty_Char) 35.72/17.92 new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) 35.72/17.92 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_lt23(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs36(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_lt14(x0, x1, x2) 35.72/17.92 new_esEs5(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs39(x0, x1, ty_Float) 35.72/17.92 new_ltEs23(x0, x1, ty_Int) 35.72/17.92 new_esEs27(x0, x1, ty_Integer) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), ty_Double) 35.72/17.92 new_esEs11(x0, x1, ty_Int) 35.72/17.92 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 35.72/17.92 new_compare12(x0, x1, False, x2) 35.72/17.92 new_esEs31(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_lt21(x0, x1, app(ty_[], x2)) 35.72/17.92 new_esEs18(False, True) 35.72/17.92 new_esEs18(True, False) 35.72/17.92 new_esEs38(x0, x1, app(ty_[], x2)) 35.72/17.92 new_lt20(x0, x1, ty_Double) 35.72/17.92 new_esEs19(Left(x0), Left(x1), ty_Int, x2) 35.72/17.92 new_lt6(x0, x1, ty_@0) 35.72/17.92 new_esEs39(x0, x1, ty_Int) 35.72/17.92 new_esEs29(x0, x1, ty_Ordering) 35.72/17.92 new_lt6(x0, x1, ty_Integer) 35.72/17.92 new_esEs32(x0, x1, ty_Bool) 35.72/17.92 new_lt23(x0, x1, ty_Bool) 35.72/17.92 new_compare17(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 35.72/17.92 new_esEs6(x0, x1, ty_Double) 35.72/17.92 new_esEs29(x0, x1, ty_Float) 35.72/17.92 new_lt9(x0, x1) 35.72/17.92 new_esEs5(x0, x1, ty_Double) 35.72/17.92 new_ltEs16(x0, x1) 35.72/17.92 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs10(x0, x1, ty_Ordering) 35.72/17.92 new_ltEs19(x0, x1, ty_Int) 35.72/17.92 new_ltEs23(x0, x1, ty_Char) 35.72/17.92 new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 35.72/17.92 new_esEs11(x0, x1, ty_Float) 35.72/17.92 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs19(Left(x0), Left(x1), ty_Char, x2) 35.72/17.92 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_ltEs24(x0, x1, app(ty_[], x2)) 35.72/17.92 new_esEs39(x0, x1, ty_Char) 35.72/17.92 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_primMulNat0(Succ(x0), Succ(x1)) 35.72/17.92 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs8(x0, x1, ty_Int) 35.72/17.92 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs6(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs24(Just(x0), Just(x1), ty_Integer) 35.72/17.92 new_ltEs9(x0, x1) 35.72/17.92 new_ltEs18(x0, x1, app(ty_[], x2)) 35.72/17.92 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs8(x0, x1, ty_Ordering) 35.72/17.92 new_ltEs19(x0, x1, ty_Char) 35.72/17.92 new_compare3([], [], x0) 35.72/17.92 new_ltEs24(x0, x1, ty_Bool) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 35.72/17.92 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 35.72/17.92 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 35.72/17.92 new_ltEs19(x0, x1, ty_Bool) 35.72/17.92 new_esEs36(x0, x1, ty_Float) 35.72/17.92 new_primCmpInt(Neg(Zero), Neg(Zero)) 35.72/17.92 new_esEs27(x0, x1, ty_Float) 35.72/17.92 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_compare17(x0, x1, ty_Float) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 35.72/17.92 new_esEs4(x0, x1, ty_Integer) 35.72/17.92 new_ltEs21(x0, x1, ty_Double) 35.72/17.92 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs10(x0, x1, app(ty_[], x2)) 35.72/17.92 new_lt21(x0, x1, ty_Ordering) 35.72/17.92 new_compare28(LT, GT) 35.72/17.92 new_compare28(GT, LT) 35.72/17.92 new_ltEs19(x0, x1, ty_Ordering) 35.72/17.92 new_esEs31(x0, x1, ty_Double) 35.72/17.92 new_esEs27(x0, x1, ty_Bool) 35.72/17.92 new_esEs31(x0, x1, ty_@0) 35.72/17.92 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs9(x0, x1, ty_Ordering) 35.72/17.92 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_primCmpInt(Pos(Zero), Neg(Zero)) 35.72/17.92 new_primCmpInt(Neg(Zero), Pos(Zero)) 35.72/17.92 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 35.72/17.92 new_compare10(x0, x1, x2, x3, False, x4, x5) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 35.72/17.92 new_esEs7(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs32(x0, x1, ty_Integer) 35.72/17.92 new_ltEs17(x0, x1) 35.72/17.92 new_ltEs24(x0, x1, ty_Int) 35.72/17.92 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs31(x0, x1, app(ty_[], x2)) 35.72/17.92 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_compare15(Just(x0), Just(x1), x2) 35.72/17.92 new_ltEs18(x0, x1, ty_Integer) 35.72/17.92 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs29(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 35.72/17.92 new_compare18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 35.72/17.92 new_esEs30(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs24(Just(x0), Nothing, x1) 35.72/17.92 new_lt21(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs9(x0, x1, ty_Bool) 35.72/17.92 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_compare210(x0, x1, True, x2, x3) 35.72/17.92 new_esEs30(x0, x1, ty_Double) 35.72/17.92 new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 35.72/17.92 new_esEs33(x0, x1, ty_Char) 35.72/17.92 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_ltEs15(False, False) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, ty_Double) 35.72/17.92 new_esEs33(x0, x1, ty_Int) 35.72/17.92 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 35.72/17.92 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 35.72/17.92 new_esEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 35.72/17.92 new_esEs4(x0, x1, ty_Ordering) 35.72/17.92 new_esEs29(x0, x1, ty_Bool) 35.72/17.92 new_compare16(False, True) 35.72/17.92 new_esEs40(x0, x1, ty_Ordering) 35.72/17.92 new_compare16(True, False) 35.72/17.92 new_ltEs20(x0, x1, ty_Integer) 35.72/17.92 new_esEs27(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_compare27(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 35.72/17.92 new_asAs(False, x0) 35.72/17.92 new_esEs9(x0, x1, ty_Integer) 35.72/17.92 new_compare17(x0, x1, ty_Int) 35.72/17.92 new_lt21(x0, x1, ty_Integer) 35.72/17.92 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 35.72/17.92 new_primCmpNat0(Succ(x0), Zero) 35.72/17.92 new_esEs11(x0, x1, ty_Char) 35.72/17.92 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 35.72/17.92 new_esEs8(x0, x1, ty_Bool) 35.72/17.92 new_compare6(Left(x0), Right(x1), x2, x3) 35.72/17.92 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_ltEs19(x0, x1, ty_Integer) 35.72/17.92 new_compare6(Right(x0), Left(x1), x2, x3) 35.72/17.92 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_lt5(x0, x1, ty_Double) 35.72/17.92 new_lt23(x0, x1, ty_Ordering) 35.72/17.92 new_esEs32(x0, x1, ty_Ordering) 35.72/17.92 new_esEs5(x0, x1, ty_@0) 35.72/17.92 new_ltEs18(x0, x1, ty_Ordering) 35.72/17.92 new_esEs24(Just(x0), Just(x1), ty_Bool) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs11(x0, x1, ty_Bool) 35.72/17.92 new_compare3([], :(x0, x1), x2) 35.72/17.92 new_ltEs24(x0, x1, ty_Float) 35.72/17.92 new_esEs28(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_lt20(x0, x1, ty_@0) 35.72/17.92 new_esEs4(x0, x1, app(ty_[], x2)) 35.72/17.92 new_ltEs21(x0, x1, ty_@0) 35.72/17.92 new_compare6(Right(x0), Right(x1), x2, x3) 35.72/17.92 new_compare3(:(x0, x1), :(x2, x3), x4) 35.72/17.92 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 35.72/17.92 new_esEs30(x0, x1, ty_@0) 35.72/17.92 new_ltEs23(x0, x1, ty_Integer) 35.72/17.92 new_esEs37(x0, x1, ty_Double) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), ty_@0) 35.72/17.92 new_esEs27(x0, x1, ty_Int) 35.72/17.92 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) 35.72/17.92 new_esEs8(x0, x1, ty_Integer) 35.72/17.92 new_compare26(x0, x1, False, x2) 35.72/17.92 new_esEs38(x0, x1, ty_Bool) 35.72/17.92 new_esEs22(:(x0, x1), [], x2) 35.72/17.92 new_compare25(x0, x1, True, x2, x3) 35.72/17.92 new_esEs36(x0, x1, ty_Char) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 35.72/17.92 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs7(x0, x1, ty_Bool) 35.72/17.92 new_esEs10(x0, x1, ty_@0) 35.72/17.92 new_lt6(x0, x1, ty_Int) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 35.72/17.92 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_primMulNat0(Zero, Zero) 35.72/17.92 new_lt20(x0, x1, app(ty_[], x2)) 35.72/17.92 new_esEs38(x0, x1, ty_@0) 35.72/17.92 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_sr0(Integer(x0), Integer(x1)) 35.72/17.92 new_ltEs22(x0, x1, ty_Char) 35.72/17.92 new_compare15(Nothing, Just(x0), x1) 35.72/17.92 new_esEs30(x0, x1, ty_Char) 35.72/17.92 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs29(x0, x1, app(ty_[], x2)) 35.72/17.92 new_esEs4(x0, x1, ty_@0) 35.72/17.92 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs4(x0, x1, ty_Bool) 35.72/17.92 new_esEs34(x0, x1, ty_Integer) 35.72/17.92 new_lt6(x0, x1, ty_Ordering) 35.72/17.92 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 35.72/17.92 new_esEs36(x0, x1, ty_Int) 35.72/17.92 new_esEs33(x0, x1, ty_Double) 35.72/17.92 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 35.72/17.92 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_ltEs21(x0, x1, app(ty_[], x2)) 35.72/17.92 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 35.72/17.92 new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 35.72/17.92 new_esEs10(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs35(x0, x1, ty_Integer) 35.72/17.92 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_ltEs10(EQ, EQ) 35.72/17.92 new_compare110(x0, x1, False, x2, x3) 35.72/17.92 new_compare9(@0, @0) 35.72/17.92 new_esEs11(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_lt5(x0, x1, ty_Ordering) 35.72/17.92 new_lt20(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, ty_@0) 35.72/17.92 new_esEs7(x0, x1, ty_Integer) 35.72/17.92 new_lt22(x0, x1, ty_Integer) 35.72/17.92 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs11(x0, x1, ty_@0) 35.72/17.92 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_asAs(True, x0) 35.72/17.92 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) 35.72/17.92 new_esEs6(x0, x1, ty_@0) 35.72/17.92 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 35.72/17.92 new_esEs7(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs6(x0, x1, ty_Char) 35.72/17.92 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_primMulNat0(Succ(x0), Zero) 35.72/17.92 new_esEs24(Just(x0), Just(x1), ty_Float) 35.72/17.92 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 35.72/17.92 new_compare8(Integer(x0), Integer(x1)) 35.72/17.92 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_lt22(x0, x1, ty_Float) 35.72/17.92 new_esEs30(x0, x1, ty_Bool) 35.72/17.92 new_esEs40(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs9(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs30(x0, x1, app(ty_[], x2)) 35.72/17.92 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs7(x0, x1, ty_@0) 35.72/17.92 new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 35.72/17.92 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs38(x0, x1, ty_Integer) 35.72/17.92 new_esEs8(x0, x1, ty_@0) 35.72/17.92 new_esEs15(Char(x0), Char(x1)) 35.72/17.92 new_esEs11(x0, x1, ty_Integer) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 35.72/17.92 new_primPlusNat0(Zero, Zero) 35.72/17.92 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_compare17(x0, x1, ty_Bool) 35.72/17.92 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 35.72/17.92 new_esEs6(x0, x1, ty_Int) 35.72/17.92 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs25(EQ, EQ) 35.72/17.92 new_esEs10(x0, x1, ty_Integer) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 35.72/17.92 new_not(True) 35.72/17.92 new_ltEs19(x0, x1, ty_Float) 35.72/17.92 new_compare112(x0, x1, x2, x3, False, x4, x5, x6) 35.72/17.92 new_esEs36(x0, x1, ty_Bool) 35.72/17.92 new_ltEs10(GT, LT) 35.72/17.92 new_ltEs10(LT, GT) 35.72/17.92 new_compare210(x0, x1, False, x2, x3) 35.72/17.92 new_esEs28(x0, x1, app(ty_[], x2)) 35.72/17.92 new_esEs32(x0, x1, ty_Int) 35.72/17.92 new_lt21(x0, x1, ty_Double) 35.72/17.92 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs40(x0, x1, ty_@0) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 35.72/17.92 new_ltEs24(x0, x1, ty_Ordering) 35.72/17.92 new_esEs33(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs4(x0, x1, ty_Int) 35.72/17.92 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_ltEs13(@2(x0, x1), @2(x2, x3), x4, x5) 35.72/17.92 new_lt11(x0, x1) 35.72/17.92 new_ltEs22(x0, x1, ty_Bool) 35.72/17.92 new_esEs9(x0, x1, ty_Float) 35.72/17.92 new_esEs7(x0, x1, ty_Char) 35.72/17.92 new_esEs26(GT) 35.72/17.92 new_lt22(x0, x1, ty_Bool) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 35.72/17.92 new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 35.72/17.92 new_esEs10(x0, x1, ty_Char) 35.72/17.92 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs8(x0, x1, ty_Float) 35.72/17.92 new_ltEs22(x0, x1, ty_Double) 35.72/17.92 new_compare30(Char(x0), Char(x1)) 35.72/17.92 new_esEs22(:(x0, x1), :(x2, x3), x4) 35.72/17.92 new_lt5(x0, x1, app(ty_[], x2)) 35.72/17.92 new_ltEs19(x0, x1, ty_@0) 35.72/17.92 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs36(x0, x1, ty_Ordering) 35.72/17.92 new_ltEs18(x0, x1, ty_Float) 35.72/17.92 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 35.72/17.92 new_esEs4(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs10(x0, x1, ty_Int) 35.72/17.92 new_esEs25(LT, GT) 35.72/17.92 new_esEs25(GT, LT) 35.72/17.92 new_sr(x0, x1) 35.72/17.92 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs40(x0, x1, ty_Bool) 35.72/17.92 new_lt22(x0, x1, ty_@0) 35.72/17.92 new_pePe(False, x0) 35.72/17.92 new_esEs18(False, False) 35.72/17.92 new_lt23(x0, x1, ty_Double) 35.72/17.92 new_lt21(x0, x1, ty_Int) 35.72/17.92 new_esEs32(x0, x1, ty_Double) 35.72/17.92 new_esEs32(x0, x1, ty_Char) 35.72/17.92 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs6(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_lt23(x0, x1, ty_@0) 35.72/17.92 new_compare28(EQ, GT) 35.72/17.92 new_ltEs22(x0, x1, ty_Int) 35.72/17.92 new_compare28(GT, EQ) 35.72/17.92 new_lt6(x0, x1, ty_Char) 35.72/17.92 new_esEs28(x0, x1, ty_Float) 35.72/17.92 new_primEqNat0(Succ(x0), Zero) 35.72/17.92 new_esEs27(x0, x1, app(ty_[], x2)) 35.72/17.92 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_compare29(:%(x0, x1), :%(x2, x3), ty_Integer) 35.72/17.92 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 35.72/17.92 new_esEs30(x0, x1, ty_Integer) 35.72/17.92 new_esEs13(x0, x1) 35.72/17.92 new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs19(Left(x0), Right(x1), x2, x3) 35.72/17.92 new_esEs19(Right(x0), Left(x1), x2, x3) 35.72/17.92 new_esEs31(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_lt23(x0, x1, ty_Char) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 35.72/17.92 new_esEs7(x0, x1, app(ty_[], x2)) 35.72/17.92 new_esEs10(x0, x1, ty_Double) 35.72/17.92 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_ltEs20(x0, x1, ty_Float) 35.72/17.92 new_esEs4(x0, x1, ty_Double) 35.72/17.92 new_ltEs22(x0, x1, ty_@0) 35.72/17.92 new_esEs40(x0, x1, ty_Int) 35.72/17.92 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs31(x0, x1, ty_Ordering) 35.72/17.92 new_compare17(x0, x1, ty_Integer) 35.72/17.92 new_lt7(x0, x1) 35.72/17.92 new_lt20(x0, x1, ty_Ordering) 35.72/17.92 new_lt6(x0, x1, ty_Double) 35.72/17.92 new_lt22(x0, x1, app(ty_[], x2)) 35.72/17.92 new_lt6(x0, x1, app(ty_[], x2)) 35.72/17.92 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 35.72/17.92 new_esEs40(x0, x1, ty_Double) 35.72/17.92 new_esEs33(x0, x1, ty_Ordering) 35.72/17.92 new_lt23(x0, x1, ty_Int) 35.72/17.92 new_primPlusNat0(Succ(x0), Succ(x1)) 35.72/17.92 new_esEs40(x0, x1, ty_Char) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 35.72/17.92 new_ltEs5(Left(x0), Right(x1), x2, x3) 35.72/17.92 new_esEs4(x0, x1, ty_Char) 35.72/17.92 new_ltEs5(Right(x0), Left(x1), x2, x3) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 35.72/17.92 new_ltEs22(x0, x1, app(ty_[], x2)) 35.72/17.92 new_esEs10(x0, x1, ty_Bool) 35.72/17.92 new_esEs36(x0, x1, ty_Integer) 35.72/17.92 new_primCompAux0(x0, GT) 35.72/17.92 new_primCmpInt(Pos(Zero), Pos(Zero)) 35.72/17.92 new_ltEs12(Nothing, Nothing, x0) 35.72/17.92 new_ltEs20(x0, x1, app(ty_[], x2)) 35.72/17.92 new_esEs30(x0, x1, ty_Ordering) 35.72/17.92 new_ltEs14(x0, x1, x2) 35.72/17.92 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 35.72/17.92 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 35.72/17.92 new_esEs38(x0, x1, ty_Float) 35.72/17.92 new_esEs31(x0, x1, ty_Char) 35.72/17.92 new_ltEs4(x0, x1) 35.72/17.92 new_lt13(x0, x1, x2) 35.72/17.92 new_esEs14(@0, @0) 35.72/17.92 new_lt19(x0, x1) 35.72/17.92 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 35.72/17.92 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs38(x0, x1, ty_Ordering) 35.72/17.92 new_lt5(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs19(Left(x0), Left(x1), ty_Double, x2) 35.72/17.92 new_esEs9(x0, x1, app(ty_[], x2)) 35.72/17.92 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs39(x0, x1, ty_Ordering) 35.72/17.92 new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) 35.72/17.92 new_esEs39(x0, x1, ty_Double) 35.72/17.92 new_compare26(x0, x1, True, x2) 35.72/17.92 new_lt20(x0, x1, ty_Int) 35.72/17.92 new_esEs37(x0, x1, ty_Int) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), ty_Float) 35.72/17.92 new_compare28(LT, LT) 35.72/17.92 new_primMulNat0(Zero, Succ(x0)) 35.72/17.92 new_ltEs21(x0, x1, ty_Integer) 35.72/17.92 new_esEs4(x0, x1, ty_Float) 35.72/17.92 new_esEs7(x0, x1, ty_Float) 35.72/17.92 new_esEs37(x0, x1, ty_Ordering) 35.72/17.92 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_lt20(x0, x1, ty_Char) 35.72/17.92 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_compare14(x0, x1, True, x2, x3) 35.72/17.92 new_ltEs20(x0, x1, ty_@0) 35.72/17.92 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs24(Nothing, Just(x0), x1) 35.72/17.92 new_lt18(x0, x1) 35.72/17.92 new_esEs5(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 35.72/17.92 new_primPlusNat0(Succ(x0), Zero) 35.72/17.92 new_esEs6(x0, x1, ty_Float) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, ty_Float) 35.72/17.92 new_compare27(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 35.72/17.92 new_compare27(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 35.72/17.92 new_esEs23(Integer(x0), Integer(x1)) 35.72/17.92 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs27(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs6(x0, x1, ty_Ordering) 35.72/17.92 new_esEs39(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_compare16(False, False) 35.72/17.92 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_ltEs23(x0, x1, ty_Double) 35.72/17.92 new_esEs38(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs8(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs32(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs37(x0, x1, ty_Float) 35.72/17.92 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 35.72/17.92 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_lt17(x0, x1) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, ty_Integer) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 35.72/17.92 new_compare13(@2(x0, x1), @2(x2, x3), x4, x5) 35.72/17.92 new_esEs37(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 35.72/17.92 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 35.72/17.92 new_esEs9(x0, x1, ty_Double) 35.72/17.92 new_esEs36(x0, x1, app(ty_[], x2)) 35.72/17.92 new_esEs7(x0, x1, ty_Int) 35.72/17.92 new_compare16(True, True) 35.72/17.92 new_esEs10(x0, x1, ty_Float) 35.72/17.92 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs22([], :(x0, x1), x2) 35.72/17.92 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_primEqNat0(Zero, Zero) 35.72/17.92 new_compare10(x0, x1, x2, x3, True, x4, x5) 35.72/17.92 new_ltEs22(x0, x1, ty_Ordering) 35.72/17.92 new_compare17(x0, x1, ty_Double) 35.72/17.92 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs28(x0, x1, ty_Integer) 35.72/17.92 new_esEs36(x0, x1, ty_Double) 35.72/17.92 new_ltEs21(x0, x1, ty_Float) 35.72/17.92 new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 35.72/17.92 new_esEs24(Just(x0), Just(x1), ty_@0) 35.72/17.92 new_esEs5(x0, x1, ty_Int) 35.72/17.92 new_not(False) 35.72/17.92 new_lt6(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_ltEs21(x0, x1, ty_Bool) 35.72/17.92 new_lt23(x0, x1, app(ty_[], x2)) 35.72/17.92 new_compare17(x0, x1, ty_@0) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, ty_Int) 35.72/17.92 new_esEs27(x0, x1, ty_@0) 35.72/17.92 new_ltEs12(Just(x0), Nothing, x1) 35.72/17.92 new_esEs32(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs27(x0, x1, ty_Double) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 35.72/17.92 new_lt5(x0, x1, ty_Char) 35.72/17.92 new_esEs38(x0, x1, ty_Char) 35.72/17.92 new_compare112(x0, x1, x2, x3, True, x4, x5, x6) 35.72/17.92 new_esEs5(x0, x1, ty_Char) 35.72/17.92 new_esEs30(x0, x1, ty_Float) 35.72/17.92 new_ltEs12(Nothing, Just(x0), x1) 35.72/17.92 new_compare29(:%(x0, x1), :%(x2, x3), ty_Int) 35.72/17.92 new_esEs31(x0, x1, ty_Bool) 35.72/17.92 new_esEs8(x0, x1, app(ty_[], x2)) 35.72/17.92 new_esEs8(x0, x1, ty_Double) 35.72/17.92 new_primPlusNat0(Zero, Succ(x0)) 35.72/17.92 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 35.72/17.92 new_esEs29(x0, x1, ty_Double) 35.72/17.92 new_esEs24(Nothing, Nothing, x0) 35.72/17.92 new_esEs31(x0, x1, ty_Float) 35.72/17.92 new_esEs36(x0, x1, ty_@0) 35.72/17.92 new_ltEs24(x0, x1, ty_Double) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), ty_Char) 35.72/17.92 new_lt22(x0, x1, ty_Ordering) 35.72/17.92 new_esEs6(x0, x1, ty_Integer) 35.72/17.92 new_compare15(Nothing, Nothing, x0) 35.72/17.92 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_lt8(x0, x1, x2, x3, x4) 35.72/17.92 new_lt5(x0, x1, ty_Int) 35.72/17.92 new_primCompAux1(x0, x1, x2, x3) 35.72/17.92 new_esEs38(x0, x1, ty_Int) 35.72/17.92 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 35.72/17.92 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 35.72/17.92 new_esEs33(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_lt20(x0, x1, ty_Float) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, ty_Char) 35.72/17.92 new_esEs28(x0, x1, ty_Ordering) 35.72/17.92 new_compare12(x0, x1, True, x2) 35.72/17.92 new_ltEs22(x0, x1, ty_Integer) 35.72/17.92 new_esEs6(x0, x1, ty_Bool) 35.72/17.92 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 35.72/17.92 new_esEs37(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_ltEs21(x0, x1, ty_Int) 35.72/17.92 new_ltEs24(x0, x1, ty_@0) 35.72/17.92 new_lt5(x0, x1, ty_Bool) 35.72/17.92 new_pePe(True, x0) 35.72/17.92 new_ltEs23(x0, x1, app(ty_[], x2)) 35.72/17.92 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs11(x0, x1, ty_Double) 35.72/17.92 new_esEs33(x0, x1, app(ty_[], x2)) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 35.72/17.92 new_ltEs19(x0, x1, app(ty_[], x2)) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 35.72/17.92 new_lt16(x0, x1, x2) 35.72/17.92 new_esEs30(x0, x1, ty_Int) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), ty_Int) 35.72/17.92 new_esEs24(Just(x0), Just(x1), ty_Double) 35.72/17.92 new_lt12(x0, x1) 35.72/17.92 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs11(x0, x1, app(ty_[], x2)) 35.72/17.92 new_compare17(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, ty_Bool) 35.72/17.92 new_esEs5(x0, x1, ty_Float) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 35.72/17.92 new_compare17(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_primCmpNat0(Zero, Zero) 35.72/17.92 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs31(x0, x1, ty_Int) 35.72/17.92 new_esEs38(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs33(x0, x1, ty_@0) 35.72/17.92 new_esEs37(x0, x1, ty_Char) 35.72/17.92 35.72/17.92 We have to consider all minimal (P,Q,R)-chains. 35.72/17.92 ---------------------------------------- 35.72/17.92 35.72/17.92 (21) QDPSizeChangeProof (EQUIVALENT) 35.72/17.92 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 35.72/17.92 35.72/17.92 From the DPs we obtained the following set of size-change graphs: 35.72/17.92 *new_compare0(:(xuu311000, xuu311001), :(xuu600, xuu601), bhf) -> new_primCompAux(xuu311000, xuu600, new_compare3(xuu311001, xuu601, bhf), bhf) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare0(:(xuu311000, xuu311001), :(xuu600, xuu601), bhf) -> new_compare0(xuu311001, xuu601, bhf) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_lt1(:(xuu311000, xuu311001), :(xuu600, xuu601), bhf) -> new_primCompAux(xuu311000, xuu600, new_compare3(xuu311001, xuu601, bhf), bhf) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare4(Just(xuu311000), Just(xuu600), cah) -> new_compare22(xuu311000, xuu600, new_esEs9(xuu311000, xuu600, cah), cah) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs1(xuu53, xuu54, hg) -> new_compare0(xuu53, xuu54, hg) 35.72/17.92 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_lt2(Just(xuu311000), Just(xuu600), cah) -> new_compare22(xuu311000, xuu600, new_esEs9(xuu311000, xuu600, cah), cah) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, eb, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs0(xuu532, xuu542, gh, ha, hb) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare22(xuu87, xuu88, False, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs0(xuu87, xuu88, cbc, cbd, cbe) 35.72/17.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_lt1(:(xuu311000, xuu311001), :(xuu600, xuu601), bhf) -> new_compare0(xuu311001, xuu601, bhf) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, beb, app(app(app(ty_@3, bgg), bgh), bha)) -> new_ltEs0(xuu113, xuu116, bgg, bgh, bha) 35.72/17.92 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_primCompAux(xuu311000, xuu600, xuu48, app(app(app(ty_@3, caa), cab), cac)) -> new_compare1(xuu311000, xuu600, caa, cab, cac) 35.72/17.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_lt0(@3(xuu311000, xuu311001, xuu311002), @3(xuu600, xuu601, xuu602), bde, bdf, bdg) -> new_compare21(xuu311000, xuu311001, xuu311002, xuu600, xuu601, xuu602, new_asAs(new_esEs6(xuu311000, xuu600, bde), new_asAs(new_esEs7(xuu311001, xuu601, bdf), new_esEs8(xuu311002, xuu602, bdg))), bde, bdf, bdg) 35.72/17.92 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare1(@3(xuu311000, xuu311001, xuu311002), @3(xuu600, xuu601, xuu602), bde, bdf, bdg) -> new_compare21(xuu311000, xuu311001, xuu311002, xuu600, xuu601, xuu602, new_asAs(new_esEs6(xuu311000, xuu600, bde), new_asAs(new_esEs7(xuu311001, xuu601, bdf), new_esEs8(xuu311002, xuu602, bdg))), bde, bdf, bdg) 35.72/17.92 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, eb, app(app(ty_Either, gf), gg)) -> new_ltEs(xuu532, xuu542, gf, gg) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare22(xuu87, xuu88, False, app(app(ty_Either, cba), cbb)) -> new_ltEs(xuu87, xuu88, cba, cbb) 35.72/17.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, beb, app(app(ty_Either, bge), bgf)) -> new_ltEs(xuu113, xuu116, bge, bgf) 35.72/17.92 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare20(xuu60, xuu61, False, ceh, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs0(xuu60, xuu61, cfc, cfd, cfe) 35.72/17.92 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare20(xuu60, xuu61, False, ceh, app(app(ty_Either, cfa), cfb)) -> new_ltEs(xuu60, xuu61, cfa, cfb) 35.72/17.92 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs2(Just(xuu530), Just(xuu540), app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs0(xuu530, xuu540, bab, bac, bad) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs2(Just(xuu530), Just(xuu540), app(app(ty_Either, hh), baa)) -> new_ltEs(xuu530, xuu540, hh, baa) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, eb, app(app(ty_@2, he), hf)) -> new_ltEs3(xuu532, xuu542, he, hf) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare22(xuu87, xuu88, False, app(app(ty_@2, cbh), cca)) -> new_ltEs3(xuu87, xuu88, cbh, cca) 35.72/17.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), app(ty_Maybe, bbh), bbc) -> new_lt2(xuu530, xuu540, bbh) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare23(xuu124, xuu125, xuu126, xuu127, False, app(ty_Maybe, cdc), ccf) -> new_lt2(xuu124, xuu126, cdc) 35.72/17.92 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), bcc, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs0(xuu531, xuu541, bcf, bcg, bch) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare23(xuu124, xuu125, xuu126, xuu127, False, cdf, app(app(app(ty_@3, cea), ceb), cec)) -> new_ltEs0(xuu125, xuu127, cea, ceb, cec) 35.72/17.92 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), app(app(ty_Either, bba), bbb), bbc) -> new_lt(xuu530, xuu540, bba, bbb) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare23(xuu124, xuu125, xuu126, xuu127, False, app(app(ty_Either, ccd), cce), ccf) -> new_lt(xuu124, xuu126, ccd, cce) 35.72/17.92 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, beb, app(app(ty_@2, bhd), bhe)) -> new_ltEs3(xuu113, xuu116, bhd, bhe) 35.72/17.92 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), bcc, app(app(ty_Either, bcd), bce)) -> new_ltEs(xuu531, xuu541, bcd, bce) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare23(xuu124, xuu125, xuu126, xuu127, False, cdf, app(app(ty_Either, cdg), cdh)) -> new_ltEs(xuu125, xuu127, cdg, cdh) 35.72/17.92 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare20(xuu60, xuu61, False, ceh, app(app(ty_@2, cfh), cga)) -> new_ltEs3(xuu60, xuu61, cfh, cga) 35.72/17.92 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs2(Just(xuu530), Just(xuu540), app(app(ty_@2, bag), bah)) -> new_ltEs3(xuu530, xuu540, bag, bah) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), bcc, app(app(ty_@2, bdc), bdd)) -> new_ltEs3(xuu531, xuu541, bdc, bdd) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare23(xuu124, xuu125, xuu126, xuu127, False, cdf, app(app(ty_@2, cef), ceg)) -> new_ltEs3(xuu125, xuu127, cef, ceg) 35.72/17.92 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_lt3(@2(xuu311000, xuu311001), @2(xuu600, xuu601), ccb, ccc) -> new_compare23(xuu311000, xuu311001, xuu600, xuu601, new_asAs(new_esEs10(xuu311000, xuu600, ccb), new_esEs11(xuu311001, xuu601, ccc)), ccb, ccc) 35.72/17.92 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare5(@2(xuu311000, xuu311001), @2(xuu600, xuu601), ccb, ccc) -> new_compare23(xuu311000, xuu311001, xuu600, xuu601, new_asAs(new_esEs10(xuu311000, xuu600, ccb), new_esEs11(xuu311001, xuu601, ccc)), ccb, ccc) 35.72/17.92 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 35.72/17.92 35.72/17.92 35.72/17.92 *new_lt(Left(xuu311000), Left(xuu600), h, ba) -> new_compare2(xuu311000, xuu600, new_esEs4(xuu311000, xuu600, h), h, ba) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare(Left(xuu311000), Left(xuu600), h, ba) -> new_compare2(xuu311000, xuu600, new_esEs4(xuu311000, xuu600, h), h, ba) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_lt(Right(xuu311000), Right(xuu600), h, ba) -> new_compare20(xuu311000, xuu600, new_esEs5(xuu311000, xuu600, ba), h, ba) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare(Right(xuu311000), Right(xuu600), h, ba) -> new_compare20(xuu311000, xuu600, new_esEs5(xuu311000, xuu600, ba), h, ba) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), app(ty_[], bbg), bbc) -> new_lt1(xuu530, xuu540, bbg) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare23(xuu124, xuu125, xuu126, xuu127, False, app(ty_[], cdb), ccf) -> new_lt1(xuu124, xuu126, cdb) 35.72/17.92 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_primCompAux(xuu311000, xuu600, xuu48, app(app(ty_Either, bhg), bhh)) -> new_compare(xuu311000, xuu600, bhg, bhh) 35.72/17.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), app(app(app(ty_@3, bbd), bbe), bbf), bbc) -> new_lt0(xuu530, xuu540, bbd, bbe, bbf) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare23(xuu124, xuu125, xuu126, xuu127, False, app(app(app(ty_@3, ccg), cch), cda), ccf) -> new_lt0(xuu124, xuu126, ccg, cch, cda) 35.72/17.92 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(xuu53, xuu54, False, app(ty_[], hg), be) -> new_compare0(xuu53, xuu54, hg) 35.72/17.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_primCompAux(xuu311000, xuu600, xuu48, app(ty_[], cad)) -> new_compare0(xuu311000, xuu600, cad) 35.72/17.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, eb, app(ty_Maybe, hd)) -> new_ltEs2(xuu532, xuu542, hd) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare22(xuu87, xuu88, False, app(ty_Maybe, cbg)) -> new_ltEs2(xuu87, xuu88, cbg) 35.72/17.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare22(xuu87, xuu88, False, app(ty_[], cbf)) -> new_ltEs1(xuu87, xuu88, cbf) 35.72/17.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, beb, app(ty_Maybe, bhc)) -> new_ltEs2(xuu113, xuu116, bhc) 35.72/17.92 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare20(xuu60, xuu61, False, ceh, app(ty_Maybe, cfg)) -> new_ltEs2(xuu60, xuu61, cfg) 35.72/17.92 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare20(xuu60, xuu61, False, ceh, app(ty_[], cff)) -> new_ltEs1(xuu60, xuu61, cff) 35.72/17.92 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs2(Just(xuu530), Just(xuu540), app(ty_Maybe, baf)) -> new_ltEs2(xuu530, xuu540, baf) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs2(Just(xuu530), Just(xuu540), app(ty_[], bae)) -> new_ltEs1(xuu530, xuu540, bae) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), bcc, app(ty_Maybe, bdb)) -> new_ltEs2(xuu531, xuu541, bdb) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare23(xuu124, xuu125, xuu126, xuu127, False, cdf, app(ty_Maybe, cee)) -> new_ltEs2(xuu125, xuu127, cee) 35.72/17.92 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, eb, app(ty_[], hc)) -> new_ltEs1(xuu532, xuu542, hc) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, beb, app(ty_[], bhb)) -> new_ltEs1(xuu113, xuu116, bhb) 35.72/17.92 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), app(app(ty_@2, bca), bcb), bbc) -> new_lt3(xuu530, xuu540, bca, bcb) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs3(@2(xuu530, xuu531), @2(xuu540, xuu541), bcc, app(ty_[], bda)) -> new_ltEs1(xuu531, xuu541, bda) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare23(xuu124, xuu125, xuu126, xuu127, False, app(app(ty_@2, cdd), cde), ccf) -> new_lt3(xuu124, xuu126, cdd, cde) 35.72/17.92 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare23(xuu124, xuu125, xuu126, xuu127, False, cdf, app(ty_[], ced)) -> new_ltEs1(xuu125, xuu127, ced) 35.72/17.92 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_primCompAux(xuu311000, xuu600, xuu48, app(app(ty_@2, caf), cag)) -> new_compare5(xuu311000, xuu600, caf, cag) 35.72/17.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_primCompAux(xuu311000, xuu600, xuu48, app(ty_Maybe, cae)) -> new_compare4(xuu311000, xuu600, cae) 35.72/17.92 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), app(ty_Maybe, eh), eb, ec) -> new_lt2(xuu530, xuu540, eh) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, app(ty_Maybe, gc), ec) -> new_lt2(xuu531, xuu541, gc) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, app(app(ty_Either, fd), ff), ec) -> new_lt(xuu531, xuu541, fd, ff) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), app(app(ty_Either, dh), ea), eb, ec) -> new_lt(xuu530, xuu540, dh, ea) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, app(ty_[], gb), ec) -> new_lt1(xuu531, xuu541, gb) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), app(ty_[], eg), eb, ec) -> new_lt1(xuu530, xuu540, eg) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), app(app(app(ty_@3, ed), ee), ef), eb, ec) -> new_lt0(xuu530, xuu540, ed, ee, ef) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, app(app(app(ty_@3, fg), fh), ga), ec) -> new_lt0(xuu531, xuu541, fg, fh, ga) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), app(app(ty_@2, fa), fb), eb, ec) -> new_lt3(xuu530, xuu540, fa, fb) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs0(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), fc, app(app(ty_@2, gd), ge), ec) -> new_lt3(xuu531, xuu541, gd, ge) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, app(ty_Maybe, bbh)), bbc), be) -> new_lt2(xuu530, xuu540, bbh) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), app(ty_Maybe, gc)), ec), be) -> new_lt2(xuu531, xuu541, gc) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, app(ty_Maybe, eh)), eb), ec), be) -> new_lt2(xuu530, xuu540, eh) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, app(ty_Maybe, bgb), bec) -> new_lt2(xuu112, xuu115, bgb) 35.72/17.92 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, app(ty_Maybe, beh), beb, bec) -> new_lt2(xuu111, xuu114, beh) 35.72/17.92 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(Just(xuu530), Just(xuu540), False, app(ty_Maybe, app(app(app(ty_@3, bab), bac), bad)), be) -> new_ltEs0(xuu530, xuu540, bab, bac, bad) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(Right(xuu530), Right(xuu540), False, app(app(ty_Either, ce), app(app(app(ty_@3, da), db), dc)), be) -> new_ltEs0(xuu530, xuu540, da, db, dc) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(Left(xuu530), Left(xuu540), False, app(app(ty_Either, app(app(app(ty_@3, bf), bg), bh)), bd), be) -> new_ltEs0(xuu530, xuu540, bf, bg, bh) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), eb), app(app(app(ty_@3, gh), ha), hb)), be) -> new_ltEs0(xuu532, xuu542, gh, ha, hb) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, bcc), app(app(app(ty_@3, bcf), bcg), bch)), be) -> new_ltEs0(xuu531, xuu541, bcf, bcg, bch) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs(Left(xuu530), Left(xuu540), app(app(app(ty_@3, bf), bg), bh), bd) -> new_ltEs0(xuu530, xuu540, bf, bg, bh) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs(Right(xuu530), Right(xuu540), ce, app(app(app(ty_@3, da), db), dc)) -> new_ltEs0(xuu530, xuu540, da, db, dc) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), app(app(ty_Either, fd), ff)), ec), be) -> new_lt(xuu531, xuu541, fd, ff) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, app(app(ty_Either, bba), bbb)), bbc), be) -> new_lt(xuu530, xuu540, bba, bbb) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, app(app(ty_Either, dh), ea)), eb), ec), be) -> new_lt(xuu530, xuu540, dh, ea) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, bcc), app(app(ty_Either, bcd), bce)), be) -> new_ltEs(xuu531, xuu541, bcd, bce) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(Right(xuu530), Right(xuu540), False, app(app(ty_Either, ce), app(app(ty_Either, cf), cg)), be) -> new_ltEs(xuu530, xuu540, cf, cg) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(Just(xuu530), Just(xuu540), False, app(ty_Maybe, app(app(ty_Either, hh), baa)), be) -> new_ltEs(xuu530, xuu540, hh, baa) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(Left(xuu530), Left(xuu540), False, app(app(ty_Either, app(app(ty_Either, bb), bc)), bd), be) -> new_ltEs(xuu530, xuu540, bb, bc) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), eb), app(app(ty_Either, gf), gg)), be) -> new_ltEs(xuu532, xuu542, gf, gg) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), eb), app(app(ty_@2, he), hf)), be) -> new_ltEs3(xuu532, xuu542, he, hf) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(Just(xuu530), Just(xuu540), False, app(ty_Maybe, app(app(ty_@2, bag), bah)), be) -> new_ltEs3(xuu530, xuu540, bag, bah) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(Left(xuu530), Left(xuu540), False, app(app(ty_Either, app(app(ty_@2, cc), cd)), bd), be) -> new_ltEs3(xuu530, xuu540, cc, cd) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, bcc), app(app(ty_@2, bdc), bdd)), be) -> new_ltEs3(xuu531, xuu541, bdc, bdd) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(Right(xuu530), Right(xuu540), False, app(app(ty_Either, ce), app(app(ty_@2, df), dg)), be) -> new_ltEs3(xuu530, xuu540, df, dg) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), app(ty_[], gb)), ec), be) -> new_lt1(xuu531, xuu541, gb) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, app(ty_[], eg)), eb), ec), be) -> new_lt1(xuu530, xuu540, eg) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, app(ty_[], bbg)), bbc), be) -> new_lt1(xuu530, xuu540, bbg) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), app(app(app(ty_@3, fg), fh), ga)), ec), be) -> new_lt0(xuu531, xuu541, fg, fh, ga) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, app(app(app(ty_@3, bbd), bbe), bbf)), bbc), be) -> new_lt0(xuu530, xuu540, bbd, bbe, bbf) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, app(app(app(ty_@3, ed), ee), ef)), eb), ec), be) -> new_lt0(xuu530, xuu540, ed, ee, ef) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(Right(xuu530), Right(xuu540), False, app(app(ty_Either, ce), app(ty_Maybe, de)), be) -> new_ltEs2(xuu530, xuu540, de) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(Just(xuu530), Just(xuu540), False, app(ty_Maybe, app(ty_Maybe, baf)), be) -> new_ltEs2(xuu530, xuu540, baf) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), eb), app(ty_Maybe, hd)), be) -> new_ltEs2(xuu532, xuu542, hd) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, bcc), app(ty_Maybe, bdb)), be) -> new_ltEs2(xuu531, xuu541, bdb) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(Left(xuu530), Left(xuu540), False, app(app(ty_Either, app(ty_Maybe, cb)), bd), be) -> new_ltEs2(xuu530, xuu540, cb) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, app(app(ty_@2, fa), fb)), eb), ec), be) -> new_lt3(xuu530, xuu540, fa, fb) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), app(app(ty_@2, gd), ge)), ec), be) -> new_lt3(xuu531, xuu541, gd, ge) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, app(app(ty_@2, bca), bcb)), bbc), be) -> new_lt3(xuu530, xuu540, bca, bcb) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@2(xuu530, xuu531), @2(xuu540, xuu541), False, app(app(ty_@2, bcc), app(ty_[], bda)), be) -> new_ltEs1(xuu531, xuu541, bda) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(Left(xuu530), Left(xuu540), False, app(app(ty_Either, app(ty_[], ca)), bd), be) -> new_ltEs1(xuu530, xuu540, ca) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), False, app(app(app(ty_@3, fc), eb), app(ty_[], hc)), be) -> new_ltEs1(xuu532, xuu542, hc) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(Just(xuu530), Just(xuu540), False, app(ty_Maybe, app(ty_[], bae)), be) -> new_ltEs1(xuu530, xuu540, bae) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare2(Right(xuu530), Right(xuu540), False, app(app(ty_Either, ce), app(ty_[], dd)), be) -> new_ltEs1(xuu530, xuu540, dd) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, app(app(ty_Either, bfd), bfe), bec) -> new_lt(xuu112, xuu115, bfd, bfe) 35.72/17.92 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, app(app(ty_Either, bdh), bea), beb, bec) -> new_lt(xuu111, xuu114, bdh, bea) 35.72/17.92 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, app(ty_[], beg), beb, bec) -> new_lt1(xuu111, xuu114, beg) 35.72/17.92 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, app(ty_[], bga), bec) -> new_lt1(xuu112, xuu115, bga) 35.72/17.92 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, app(app(app(ty_@3, bff), bfg), bfh), bec) -> new_lt0(xuu112, xuu115, bff, bfg, bfh) 35.72/17.92 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, app(app(app(ty_@3, bed), bee), bef), beb, bec) -> new_lt0(xuu111, xuu114, bed, bee, bef) 35.72/17.92 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bfc, app(app(ty_@2, bgc), bgd), bec) -> new_lt3(xuu112, xuu115, bgc, bgd) 35.72/17.92 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_compare21(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, app(app(ty_@2, bfa), bfb), beb, bec) -> new_lt3(xuu111, xuu114, bfa, bfb) 35.72/17.92 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs(Left(xuu530), Left(xuu540), app(app(ty_Either, bb), bc), bd) -> new_ltEs(xuu530, xuu540, bb, bc) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs(Right(xuu530), Right(xuu540), ce, app(app(ty_Either, cf), cg)) -> new_ltEs(xuu530, xuu540, cf, cg) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs(Left(xuu530), Left(xuu540), app(app(ty_@2, cc), cd), bd) -> new_ltEs3(xuu530, xuu540, cc, cd) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs(Right(xuu530), Right(xuu540), ce, app(app(ty_@2, df), dg)) -> new_ltEs3(xuu530, xuu540, df, dg) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs(Right(xuu530), Right(xuu540), ce, app(ty_Maybe, de)) -> new_ltEs2(xuu530, xuu540, de) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs(Left(xuu530), Left(xuu540), app(ty_Maybe, cb), bd) -> new_ltEs2(xuu530, xuu540, cb) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs(Left(xuu530), Left(xuu540), app(ty_[], ca), bd) -> new_ltEs1(xuu530, xuu540, ca) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.92 35.72/17.92 35.72/17.92 *new_ltEs(Right(xuu530), Right(xuu540), ce, app(ty_[], dd)) -> new_ltEs1(xuu530, xuu540, dd) 35.72/17.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.92 35.72/17.92 35.72/17.92 ---------------------------------------- 35.72/17.92 35.72/17.92 (22) 35.72/17.92 YES 35.72/17.92 35.72/17.92 ---------------------------------------- 35.72/17.92 35.72/17.92 (23) 35.72/17.92 Obligation: 35.72/17.92 Q DP problem: 35.72/17.92 The TRS P consists of the following rules: 35.72/17.92 35.72/17.92 new_foldl(xuu6, :(xuu3110, xuu3111), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba), xuu3111, h, ba) 35.72/17.92 35.72/17.92 The TRS R consists of the following rules: 35.72/17.92 35.72/17.92 new_esEs30(xuu112, xuu115, ty_Ordering) -> new_esEs25(xuu112, xuu115) 35.72/17.92 new_ltEs20(xuu60, xuu61, app(ty_[], fef)) -> new_ltEs11(xuu60, xuu61, fef) 35.72/17.92 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 35.72/17.92 new_primPlusNat0(Zero, Zero) -> Zero 35.72/17.92 new_lt23(xuu530, xuu540, ty_Integer) -> new_lt10(xuu530, xuu540) 35.72/17.92 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.92 new_pePe(True, xuu214) -> True 35.72/17.92 new_ltEs19(xuu113, xuu116, app(app(app(ty_@3, egh), eha), ehb)) -> new_ltEs6(xuu113, xuu116, egh, eha, ehb) 35.72/17.92 new_esEs8(xuu311002, xuu602, app(ty_[], bdh)) -> new_esEs22(xuu311002, xuu602, bdh) 35.72/17.92 new_esEs20(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs13(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 35.72/17.92 new_esEs33(xuu3110002, xuu6002, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs17(xuu3110002, xuu6002, fcg, fch, fda) 35.72/17.92 new_esEs18(True, True) -> True 35.72/17.92 new_esEs30(xuu112, xuu115, ty_Double) -> new_esEs20(xuu112, xuu115) 35.72/17.92 new_esEs36(xuu124, xuu126, ty_Integer) -> new_esEs23(xuu124, xuu126) 35.72/17.92 new_lt6(xuu531, xuu541, app(app(ty_Either, ebc), ebd)) -> new_lt4(xuu531, xuu541, ebc, ebd) 35.72/17.92 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 35.72/17.92 new_addToFM_C20(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_mkBalBranch(xuu17, xuu18, new_addToFM_C0(xuu20, xuu22, xuu23, bb, bc), xuu21, bb, bc) 35.72/17.92 new_ltEs5(Right(xuu530), Right(xuu540), dgc, ty_Integer) -> new_ltEs8(xuu530, xuu540) 35.72/17.92 new_mkBalBranch6MkBalBranch3(xuu21, xuu17, xuu18, xuu42, False, bb, bc) -> new_mkBranchResult(xuu17, xuu18, xuu21, xuu42, bb, bc) 35.72/17.92 new_compare28(LT, LT) -> EQ 35.72/17.92 new_gt(xuu22, xuu17, app(ty_Ratio, deg)) -> new_esEs41(new_compare29(xuu22, xuu17, deg)) 35.72/17.92 new_esEs29(xuu111, xuu114, app(ty_[], eeg)) -> new_esEs22(xuu111, xuu114, eeg) 35.72/17.92 new_emptyFM(h, ba) -> EmptyFM 35.72/17.92 new_esEs5(xuu311000, xuu600, app(ty_Ratio, cch)) -> new_esEs21(xuu311000, xuu600, cch) 35.72/17.92 new_compare17(xuu311000, xuu600, ty_Float) -> new_compare27(xuu311000, xuu600) 35.72/17.92 new_esEs11(xuu311001, xuu601, ty_@0) -> new_esEs14(xuu311001, xuu601) 35.72/17.92 new_lt20(xuu111, xuu114, ty_Double) -> new_lt9(xuu111, xuu114) 35.72/17.92 new_lt6(xuu531, xuu541, ty_Char) -> new_lt18(xuu531, xuu541) 35.72/17.92 new_esEs10(xuu311000, xuu600, ty_Int) -> new_esEs13(xuu311000, xuu600) 35.72/17.92 new_ltEs10(GT, LT) -> False 35.72/17.92 new_esEs6(xuu311000, xuu600, app(app(ty_@2, bad), bae)) -> new_esEs16(xuu311000, xuu600, bad, bae) 35.72/17.92 new_esEs36(xuu124, xuu126, ty_@0) -> new_esEs14(xuu124, xuu126) 35.72/17.92 new_esEs40(xuu3110001, xuu6001, ty_Float) -> new_esEs12(xuu3110001, xuu6001) 35.72/17.92 new_esEs36(xuu124, xuu126, app(ty_Ratio, fgh)) -> new_esEs21(xuu124, xuu126, fgh) 35.72/17.92 new_ltEs5(Left(xuu530), Right(xuu540), dgc, dfb) -> True 35.72/17.92 new_compare3([], [], gf) -> EQ 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), app(ty_Ratio, dgb), dfb) -> new_ltEs14(xuu530, xuu540, dgb) 35.72/17.92 new_esEs32(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 35.72/17.92 new_ltEs10(EQ, LT) -> False 35.72/17.92 new_lt20(xuu111, xuu114, app(ty_[], eeg)) -> new_lt13(xuu111, xuu114, eeg) 35.72/17.92 new_esEs27(xuu530, xuu540, app(app(ty_@2, eah), eba)) -> new_esEs16(xuu530, xuu540, eah, eba) 35.72/17.92 new_ltEs20(xuu60, xuu61, ty_Int) -> new_ltEs4(xuu60, xuu61) 35.72/17.92 new_ltEs18(xuu532, xuu542, ty_@0) -> new_ltEs17(xuu532, xuu542) 35.72/17.92 new_lt6(xuu531, xuu541, app(ty_Maybe, eca)) -> new_lt14(xuu531, xuu541, eca) 35.72/17.92 new_esEs35(xuu3110001, xuu6001, ty_Int) -> new_esEs13(xuu3110001, xuu6001) 35.72/17.92 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.92 new_ltEs23(xuu531, xuu541, app(app(ty_Either, bhg), bhh)) -> new_ltEs5(xuu531, xuu541, bhg, bhh) 35.72/17.92 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 35.72/17.92 new_lt5(xuu530, xuu540, ty_Float) -> new_lt11(xuu530, xuu540) 35.72/17.92 new_primCompAux0(xuu81, LT) -> LT 35.72/17.92 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Bool, bf) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.92 new_gt(xuu22, xuu17, ty_Char) -> new_esEs41(new_compare30(xuu22, xuu17)) 35.72/17.92 new_compare16(False, False) -> EQ 35.72/17.92 new_ltEs9(xuu53, xuu54) -> new_fsEs(new_compare27(xuu53, xuu54)) 35.72/17.92 new_not(True) -> False 35.72/17.92 new_esEs37(xuu3110000, xuu6000, ty_Bool) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.92 new_esEs28(xuu531, xuu541, ty_Float) -> new_esEs12(xuu531, xuu541) 35.72/17.92 new_esEs7(xuu311001, xuu601, ty_Float) -> new_esEs12(xuu311001, xuu601) 35.72/17.92 new_fsEs(xuu209) -> new_not(new_esEs25(xuu209, GT)) 35.72/17.92 new_esEs7(xuu311001, xuu601, ty_Double) -> new_esEs20(xuu311001, xuu601) 35.72/17.92 new_mkBalBranch6MkBalBranch11(xuu21, xuu17, xuu18, xuu420, xuu421, xuu422, xuu423, Branch(xuu4240, xuu4241, xuu4242, xuu4243, xuu4244), False, bb, bc) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu4240, xuu4241, new_mkBranch0(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu420, xuu421, xuu423, xuu4243, bb, bc), Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), xuu17, xuu18, xuu4244, xuu21, bb, bc) 35.72/17.92 new_lt22(xuu124, xuu126, ty_Ordering) -> new_lt12(xuu124, xuu126) 35.72/17.92 new_esEs10(xuu311000, xuu600, ty_Double) -> new_esEs20(xuu311000, xuu600) 35.72/17.92 new_esEs38(xuu530, xuu540, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs17(xuu530, xuu540, bgg, bgh, bha) 35.72/17.92 new_esEs28(xuu531, xuu541, ty_Ordering) -> new_esEs25(xuu531, xuu541) 35.72/17.92 new_ltEs22(xuu125, xuu127, ty_Bool) -> new_ltEs15(xuu125, xuu127) 35.72/17.92 new_esEs5(xuu311000, xuu600, ty_Integer) -> new_esEs23(xuu311000, xuu600) 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), app(ty_Maybe, dfg), dfb) -> new_ltEs12(xuu530, xuu540, dfg) 35.72/17.92 new_mkBalBranch(xuu17, xuu18, xuu42, xuu21, bb, bc) -> new_mkBalBranch6MkBalBranch5(xuu21, xuu17, xuu18, xuu42, new_lt7(new_primPlusInt(new_mkBalBranch6Size_l(xuu21, xuu17, xuu18, xuu42, bb, bc), new_mkBalBranch6Size_r(xuu21, xuu17, xuu18, xuu42, bb, bc)), Pos(Succ(Succ(Zero)))), bb, bc) 35.72/17.92 new_compare17(xuu311000, xuu600, ty_Bool) -> new_compare16(xuu311000, xuu600) 35.72/17.92 new_esEs10(xuu311000, xuu600, ty_Ordering) -> new_esEs25(xuu311000, xuu600) 35.72/17.92 new_lt6(xuu531, xuu541, app(ty_Ratio, ecd)) -> new_lt16(xuu531, xuu541, ecd) 35.72/17.92 new_primEqNat0(Succ(xuu31100000), Zero) -> False 35.72/17.92 new_primEqNat0(Zero, Succ(xuu60000)) -> False 35.72/17.92 new_esEs39(xuu3110000, xuu6000, app(ty_Maybe, dag)) -> new_esEs24(xuu3110000, xuu6000, dag) 35.72/17.92 new_esEs14(@0, @0) -> True 35.72/17.92 new_ltEs22(xuu125, xuu127, ty_Ordering) -> new_ltEs10(xuu125, xuu127) 35.72/17.92 new_esEs31(xuu3110000, xuu6000, app(ty_[], fba)) -> new_esEs22(xuu3110000, xuu6000, fba) 35.72/17.92 new_ltEs18(xuu532, xuu542, app(ty_[], edb)) -> new_ltEs11(xuu532, xuu542, edb) 35.72/17.92 new_ltEs22(xuu125, xuu127, ty_Integer) -> new_ltEs8(xuu125, xuu127) 35.72/17.92 new_esEs6(xuu311000, xuu600, ty_Char) -> new_esEs15(xuu311000, xuu600) 35.72/17.92 new_lt5(xuu530, xuu540, app(app(app(ty_@3, eac), ead), eae)) -> new_lt8(xuu530, xuu540, eac, ead, eae) 35.72/17.92 new_ltEs22(xuu125, xuu127, app(app(ty_@2, fhh), gaa)) -> new_ltEs13(xuu125, xuu127, fhh, gaa) 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), app(app(ty_Either, deh), dfa), dfb) -> new_ltEs5(xuu530, xuu540, deh, dfa) 35.72/17.92 new_esEs31(xuu3110000, xuu6000, app(ty_Ratio, fah)) -> new_esEs21(xuu3110000, xuu6000, fah) 35.72/17.92 new_esEs37(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.92 new_esEs38(xuu530, xuu540, ty_Float) -> new_esEs12(xuu530, xuu540) 35.72/17.92 new_esEs33(xuu3110002, xuu6002, ty_Float) -> new_esEs12(xuu3110002, xuu6002) 35.72/17.92 new_gt0(xuu22, xuu17) -> new_esEs41(new_compare7(xuu22, xuu17)) 35.72/17.92 new_primPlusInt(Pos(xuu4220), Pos(xuu1370)) -> Pos(new_primPlusNat0(xuu4220, xuu1370)) 35.72/17.92 new_lt20(xuu111, xuu114, ty_@0) -> new_lt19(xuu111, xuu114) 35.72/17.92 new_primCmpInt(Pos(Succ(xuu3110000)), Neg(xuu600)) -> GT 35.72/17.92 new_esEs11(xuu311001, xuu601, ty_Integer) -> new_esEs23(xuu311001, xuu601) 35.72/17.92 new_ltEs12(Just(xuu530), Just(xuu540), ty_Double) -> new_ltEs7(xuu530, xuu540) 35.72/17.92 new_ltEs10(GT, EQ) -> False 35.72/17.92 new_mkBalBranch6MkBalBranch5(xuu21, xuu17, xuu18, xuu42, True, bb, bc) -> new_mkBranchResult(xuu17, xuu18, xuu21, xuu42, bb, bc) 35.72/17.92 new_gt(xuu22, xuu17, ty_Bool) -> new_esEs41(new_compare16(xuu22, xuu17)) 35.72/17.92 new_lt9(xuu31100, xuu60) -> new_esEs26(new_compare19(xuu31100, xuu60)) 35.72/17.92 new_esEs5(xuu311000, xuu600, app(app(ty_Either, ccf), ccg)) -> new_esEs19(xuu311000, xuu600, ccf, ccg) 35.72/17.92 new_ltEs18(xuu532, xuu542, ty_Int) -> new_ltEs4(xuu532, xuu542) 35.72/17.92 new_lt5(xuu530, xuu540, ty_Int) -> new_lt7(xuu530, xuu540) 35.72/17.92 new_ltEs5(Right(xuu530), Right(xuu540), dgc, ty_Float) -> new_ltEs9(xuu530, xuu540) 35.72/17.92 new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_[], cg), bf) -> new_esEs22(xuu3110000, xuu6000, cg) 35.72/17.92 new_primCmpNat0(Zero, Succ(xuu6000)) -> LT 35.72/17.92 new_ltEs20(xuu60, xuu61, ty_@0) -> new_ltEs17(xuu60, xuu61) 35.72/17.92 new_esEs4(xuu311000, xuu600, ty_Ordering) -> new_esEs25(xuu311000, xuu600) 35.72/17.92 new_esEs40(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) 35.72/17.92 new_esEs27(xuu530, xuu540, ty_Bool) -> new_esEs18(xuu530, xuu540) 35.72/17.92 new_sizeFM(EmptyFM, bb, bc) -> Pos(Zero) 35.72/17.92 new_lt22(xuu124, xuu126, ty_Bool) -> new_lt17(xuu124, xuu126) 35.72/17.92 new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, cf), bf) -> new_esEs21(xuu3110000, xuu6000, cf) 35.72/17.92 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 35.72/17.92 new_esEs29(xuu111, xuu114, ty_Integer) -> new_esEs23(xuu111, xuu114) 35.72/17.92 new_ltEs21(xuu53, xuu54, ty_Double) -> new_ltEs7(xuu53, xuu54) 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), ty_Ordering, dfb) -> new_ltEs10(xuu530, xuu540) 35.72/17.92 new_esEs32(xuu3110001, xuu6001, ty_Int) -> new_esEs13(xuu3110001, xuu6001) 35.72/17.92 new_compare3([], :(xuu600, xuu601), gf) -> LT 35.72/17.92 new_esEs33(xuu3110002, xuu6002, app(ty_Ratio, fdd)) -> new_esEs21(xuu3110002, xuu6002, fdd) 35.72/17.92 new_esEs40(xuu3110001, xuu6001, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs17(xuu3110001, xuu6001, dbb, dbc, dbd) 35.72/17.92 new_ltEs5(Right(xuu530), Right(xuu540), dgc, ty_Bool) -> new_ltEs15(xuu530, xuu540) 35.72/17.92 new_esEs38(xuu530, xuu540, ty_Double) -> new_esEs20(xuu530, xuu540) 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), ty_Float, dfb) -> new_ltEs9(xuu530, xuu540) 35.72/17.92 new_esEs8(xuu311002, xuu602, app(ty_Maybe, bea)) -> new_esEs24(xuu311002, xuu602, bea) 35.72/17.92 new_ltEs5(Right(xuu530), Right(xuu540), dgc, app(ty_[], dha)) -> new_ltEs11(xuu530, xuu540, dha) 35.72/17.92 new_esEs29(xuu111, xuu114, app(ty_Maybe, eeh)) -> new_esEs24(xuu111, xuu114, eeh) 35.72/17.92 new_esEs32(xuu3110001, xuu6001, ty_Bool) -> new_esEs18(xuu3110001, xuu6001) 35.72/17.92 new_esEs8(xuu311002, xuu602, app(ty_Ratio, bdg)) -> new_esEs21(xuu311002, xuu602, bdg) 35.72/17.92 new_compare6(Left(xuu311000), Right(xuu600), cba, cbb) -> LT 35.72/17.92 new_ltEs22(xuu125, xuu127, ty_Char) -> new_ltEs16(xuu125, xuu127) 35.72/17.92 new_esEs5(xuu311000, xuu600, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs17(xuu311000, xuu600, ccc, ccd, cce) 35.72/17.92 new_esEs9(xuu311000, xuu600, app(app(ty_@2, fa), fb)) -> new_esEs16(xuu311000, xuu600, fa, fb) 35.72/17.92 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Char, bf) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.92 new_lt24(xuu31100, xuu60, ty_Char) -> new_lt18(xuu31100, xuu60) 35.72/17.92 new_esEs6(xuu311000, xuu600, app(ty_Maybe, bbe)) -> new_esEs24(xuu311000, xuu600, bbe) 35.72/17.92 new_lt21(xuu112, xuu115, ty_Int) -> new_lt7(xuu112, xuu115) 35.72/17.92 new_esEs31(xuu3110000, xuu6000, app(app(ty_Either, faf), fag)) -> new_esEs19(xuu3110000, xuu6000, faf, fag) 35.72/17.92 new_ltEs20(xuu60, xuu61, ty_Bool) -> new_ltEs15(xuu60, xuu61) 35.72/17.92 new_mkBalBranch6MkBalBranch01(xuu210, xuu211, xuu212, EmptyFM, xuu214, xuu17, xuu18, xuu42, False, bb, bc) -> error([]) 35.72/17.92 new_lt24(xuu31100, xuu60, app(ty_Maybe, eh)) -> new_lt14(xuu31100, xuu60, eh) 35.72/17.92 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 35.72/17.92 new_esEs31(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.92 new_primCmpInt(Neg(Zero), Pos(Succ(xuu6000))) -> LT 35.72/17.92 new_esEs33(xuu3110002, xuu6002, ty_Ordering) -> new_esEs25(xuu3110002, xuu6002) 35.72/17.92 new_lt23(xuu530, xuu540, app(ty_[], bhb)) -> new_lt13(xuu530, xuu540, bhb) 35.72/17.92 new_mkBalBranch6MkBalBranch3(xuu21, xuu17, xuu18, Branch(xuu420, xuu421, xuu422, xuu423, xuu424), True, bb, bc) -> new_mkBalBranch6MkBalBranch11(xuu21, xuu17, xuu18, xuu420, xuu421, xuu422, xuu423, xuu424, new_lt7(new_sizeFM(xuu424, bb, bc), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu423, bb, bc))), bb, bc) 35.72/17.92 new_primMulInt(Pos(xuu3110000), Pos(xuu6010)) -> Pos(new_primMulNat0(xuu3110000, xuu6010)) 35.72/17.92 new_ltEs6(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), dhf, dhg, dhh) -> new_pePe(new_lt5(xuu530, xuu540, dhf), new_asAs(new_esEs27(xuu530, xuu540, dhf), new_pePe(new_lt6(xuu531, xuu541, dhg), new_asAs(new_esEs28(xuu531, xuu541, dhg), new_ltEs18(xuu532, xuu542, dhh))))) 35.72/17.92 new_lt24(xuu31100, xuu60, app(app(ty_Either, cba), cbb)) -> new_lt4(xuu31100, xuu60, cba, cbb) 35.72/17.92 new_esEs28(xuu531, xuu541, ty_Double) -> new_esEs20(xuu531, xuu541) 35.72/17.92 new_esEs11(xuu311001, xuu601, app(app(ty_Either, cfd), cfe)) -> new_esEs19(xuu311001, xuu601, cfd, cfe) 35.72/17.92 new_compare12(xuu168, xuu169, False, ehh) -> GT 35.72/17.92 new_esEs24(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs17(xuu3110000, xuu6000, dcf, dcg, dch) 35.72/17.92 new_primMulNat0(Succ(xuu31100000), Zero) -> Zero 35.72/17.92 new_primMulNat0(Zero, Succ(xuu60100)) -> Zero 35.72/17.92 new_ltEs23(xuu531, xuu541, ty_Int) -> new_ltEs4(xuu531, xuu541) 35.72/17.92 new_esEs4(xuu311000, xuu600, ty_Double) -> new_esEs20(xuu311000, xuu600) 35.72/17.92 new_esEs19(Right(xuu3110000), Right(xuu6000), db, ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.92 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.92 new_esEs7(xuu311001, xuu601, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs17(xuu311001, xuu601, bbh, bca, bcb) 35.72/17.92 new_esEs28(xuu531, xuu541, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_esEs17(xuu531, xuu541, ebe, ebf, ebg) 35.72/17.92 new_compare16(True, False) -> GT 35.72/17.92 new_addListToFM_CAdd(xuu6, @2(xuu31100, xuu31101), h, ba) -> new_addToFM_C0(xuu6, xuu31100, xuu31101, h, ba) 35.72/17.92 new_compare26(xuu87, xuu88, True, gac) -> EQ 35.72/17.92 new_esEs8(xuu311002, xuu602, ty_Integer) -> new_esEs23(xuu311002, xuu602) 35.72/17.92 new_lt23(xuu530, xuu540, ty_Float) -> new_lt11(xuu530, xuu540) 35.72/17.92 new_lt12(xuu31100, xuu60) -> new_esEs26(new_compare28(xuu31100, xuu60)) 35.72/17.92 new_lt18(xuu31100, xuu60) -> new_esEs26(new_compare30(xuu31100, xuu60)) 35.72/17.92 new_compare26(xuu87, xuu88, False, gac) -> new_compare12(xuu87, xuu88, new_ltEs24(xuu87, xuu88, gac), gac) 35.72/17.92 new_primPlusNat0(Succ(xuu42200), Zero) -> Succ(xuu42200) 35.72/17.92 new_primPlusNat0(Zero, Succ(xuu13700)) -> Succ(xuu13700) 35.72/17.92 new_lt22(xuu124, xuu126, app(ty_Maybe, fge)) -> new_lt14(xuu124, xuu126, fge) 35.72/17.92 new_ltEs19(xuu113, xuu116, ty_Double) -> new_ltEs7(xuu113, xuu116) 35.72/17.92 new_ltEs22(xuu125, xuu127, ty_Float) -> new_ltEs9(xuu125, xuu127) 35.72/17.92 new_lt4(xuu31100, xuu60, cba, cbb) -> new_esEs26(new_compare6(xuu31100, xuu60, cba, cbb)) 35.72/17.92 new_lt23(xuu530, xuu540, ty_Int) -> new_lt7(xuu530, xuu540) 35.72/17.92 new_ltEs5(Right(xuu530), Right(xuu540), dgc, ty_Char) -> new_ltEs16(xuu530, xuu540) 35.72/17.92 new_esEs9(xuu311000, xuu600, ty_Int) -> new_esEs13(xuu311000, xuu600) 35.72/17.92 new_esEs31(xuu3110000, xuu6000, app(ty_Maybe, fbb)) -> new_esEs24(xuu3110000, xuu6000, fbb) 35.72/17.92 new_esEs7(xuu311001, xuu601, app(app(ty_Either, bcc), bcd)) -> new_esEs19(xuu311001, xuu601, bcc, bcd) 35.72/17.92 new_ltEs18(xuu532, xuu542, ty_Double) -> new_ltEs7(xuu532, xuu542) 35.72/17.92 new_compare7(xuu31100, xuu60) -> new_primCmpInt(xuu31100, xuu60) 35.72/17.92 new_esEs39(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.92 new_esEs40(xuu3110001, xuu6001, ty_Double) -> new_esEs20(xuu3110001, xuu6001) 35.72/17.92 new_esEs25(GT, GT) -> True 35.72/17.92 new_compare11(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, True, xuu190, bee, bef, beg) -> new_compare111(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, True, bee, bef, beg) 35.72/17.92 new_lt6(xuu531, xuu541, ty_Ordering) -> new_lt12(xuu531, xuu541) 35.72/17.92 new_compare17(xuu311000, xuu600, app(ty_[], hd)) -> new_compare3(xuu311000, xuu600, hd) 35.72/17.92 new_ltEs23(xuu531, xuu541, ty_@0) -> new_ltEs17(xuu531, xuu541) 35.72/17.92 new_esEs32(xuu3110001, xuu6001, app(app(ty_@2, fbc), fbd)) -> new_esEs16(xuu3110001, xuu6001, fbc, fbd) 35.72/17.92 new_ltEs19(xuu113, xuu116, ty_Char) -> new_ltEs16(xuu113, xuu116) 35.72/17.92 new_esEs5(xuu311000, xuu600, app(ty_[], cda)) -> new_esEs22(xuu311000, xuu600, cda) 35.72/17.92 new_esEs27(xuu530, xuu540, ty_Char) -> new_esEs15(xuu530, xuu540) 35.72/17.92 new_esEs29(xuu111, xuu114, ty_Bool) -> new_esEs18(xuu111, xuu114) 35.72/17.92 new_esEs33(xuu3110002, xuu6002, app(app(ty_Either, fdb), fdc)) -> new_esEs19(xuu3110002, xuu6002, fdb, fdc) 35.72/17.92 new_compare10(xuu198, xuu199, xuu200, xuu201, False, bd, be) -> GT 35.72/17.92 new_esEs39(xuu3110000, xuu6000, app(ty_[], daf)) -> new_esEs22(xuu3110000, xuu6000, daf) 35.72/17.92 new_esEs32(xuu3110001, xuu6001, app(ty_Maybe, fcd)) -> new_esEs24(xuu3110001, xuu6001, fcd) 35.72/17.92 new_esEs5(xuu311000, xuu600, ty_Float) -> new_esEs12(xuu311000, xuu600) 35.72/17.92 new_compare17(xuu311000, xuu600, ty_Int) -> new_compare7(xuu311000, xuu600) 35.72/17.92 new_esEs5(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) 35.72/17.92 new_ltEs12(Just(xuu530), Just(xuu540), app(app(app(ty_@3, cgf), cgg), cgh)) -> new_ltEs6(xuu530, xuu540, cgf, cgg, cgh) 35.72/17.92 new_ltEs18(xuu532, xuu542, ty_Bool) -> new_ltEs15(xuu532, xuu542) 35.72/17.92 new_esEs29(xuu111, xuu114, ty_@0) -> new_esEs14(xuu111, xuu114) 35.72/17.92 new_ltEs12(Just(xuu530), Just(xuu540), app(app(ty_Either, cgd), cge)) -> new_ltEs5(xuu530, xuu540, cgd, cge) 35.72/17.92 new_lt20(xuu111, xuu114, ty_Ordering) -> new_lt12(xuu111, xuu114) 35.72/17.92 new_lt20(xuu111, xuu114, ty_Integer) -> new_lt10(xuu111, xuu114) 35.72/17.92 new_esEs30(xuu112, xuu115, app(app(app(ty_@3, eff), efg), efh)) -> new_esEs17(xuu112, xuu115, eff, efg, efh) 35.72/17.92 new_esEs11(xuu311001, xuu601, app(ty_Ratio, cff)) -> new_esEs21(xuu311001, xuu601, cff) 35.72/17.92 new_esEs8(xuu311002, xuu602, app(app(ty_Either, bde), bdf)) -> new_esEs19(xuu311002, xuu602, bde, bdf) 35.72/17.92 new_esEs7(xuu311001, xuu601, ty_Ordering) -> new_esEs25(xuu311001, xuu601) 35.72/17.92 new_lt5(xuu530, xuu540, ty_Integer) -> new_lt10(xuu530, xuu540) 35.72/17.92 new_mkBalBranch6MkBalBranch11(xuu21, xuu17, xuu18, xuu420, xuu421, xuu422, xuu423, EmptyFM, False, bb, bc) -> error([]) 35.72/17.92 new_ltEs20(xuu60, xuu61, app(app(ty_@2, feh), ffa)) -> new_ltEs13(xuu60, xuu61, feh, ffa) 35.72/17.92 new_esEs6(xuu311000, xuu600, ty_Bool) -> new_esEs18(xuu311000, xuu600) 35.72/17.92 new_ltEs24(xuu87, xuu88, app(ty_Ratio, gbe)) -> new_ltEs14(xuu87, xuu88, gbe) 35.72/17.92 new_esEs31(xuu3110000, xuu6000, ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.92 new_esEs4(xuu311000, xuu600, ty_Char) -> new_esEs15(xuu311000, xuu600) 35.72/17.92 new_esEs30(xuu112, xuu115, ty_Float) -> new_esEs12(xuu112, xuu115) 35.72/17.92 new_esEs30(xuu112, xuu115, ty_Char) -> new_esEs15(xuu112, xuu115) 35.72/17.92 new_esEs10(xuu311000, xuu600, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs17(xuu311000, xuu600, cdg, cdh, cea) 35.72/17.92 new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, da), bf) -> new_esEs24(xuu3110000, xuu6000, da) 35.72/17.92 new_compare15(Nothing, Nothing, eh) -> EQ 35.72/17.92 new_esEs39(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.92 new_ltEs15(True, True) -> True 35.72/17.92 new_addToFM_C10(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, ee, ef) -> new_mkBalBranch(xuu34, xuu35, xuu37, new_addToFM_C0(xuu38, xuu39, xuu40, ee, ef), ee, ef) 35.72/17.92 new_esEs8(xuu311002, xuu602, app(app(ty_@2, bch), bda)) -> new_esEs16(xuu311002, xuu602, bch, bda) 35.72/17.92 new_lt20(xuu111, xuu114, ty_Float) -> new_lt11(xuu111, xuu114) 35.72/17.92 new_esEs33(xuu3110002, xuu6002, ty_Int) -> new_esEs13(xuu3110002, xuu6002) 35.72/17.92 new_lt14(xuu31100, xuu60, eh) -> new_esEs26(new_compare15(xuu31100, xuu60, eh)) 35.72/17.92 new_esEs40(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 35.72/17.92 new_esEs29(xuu111, xuu114, app(app(ty_@2, efa), efb)) -> new_esEs16(xuu111, xuu114, efa, efb) 35.72/17.92 new_esEs36(xuu124, xuu126, app(ty_Maybe, fge)) -> new_esEs24(xuu124, xuu126, fge) 35.72/17.92 new_lt22(xuu124, xuu126, app(ty_[], fgd)) -> new_lt13(xuu124, xuu126, fgd) 35.72/17.92 new_primPlusInt(Neg(xuu4220), Neg(xuu1370)) -> Neg(new_primPlusNat0(xuu4220, xuu1370)) 35.72/17.92 new_ltEs22(xuu125, xuu127, ty_Int) -> new_ltEs4(xuu125, xuu127) 35.72/17.92 new_lt11(xuu31100, xuu60) -> new_esEs26(new_compare27(xuu31100, xuu60)) 35.72/17.92 new_esEs36(xuu124, xuu126, ty_Float) -> new_esEs12(xuu124, xuu126) 35.72/17.92 new_esEs13(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 35.72/17.92 new_esEs31(xuu3110000, xuu6000, ty_Bool) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.92 new_mkBranch(xuu242, xuu243, xuu244, xuu245, xuu246, xuu247, xuu248, xuu249, xuu250, beb, bec) -> new_mkBranchResult(xuu243, xuu244, new_mkBranch0(xuu246, xuu247, xuu248, xuu249, xuu250, beb, bec), xuu245, beb, bec) 35.72/17.92 new_esEs31(xuu3110000, xuu6000, app(app(app(ty_@3, fac), fad), fae)) -> new_esEs17(xuu3110000, xuu6000, fac, fad, fae) 35.72/17.92 new_ltEs22(xuu125, xuu127, app(ty_[], fhf)) -> new_ltEs11(xuu125, xuu127, fhf) 35.72/17.92 new_esEs4(xuu311000, xuu600, ty_Bool) -> new_esEs18(xuu311000, xuu600) 35.72/17.92 new_ltEs5(Right(xuu530), Left(xuu540), dgc, dfb) -> False 35.72/17.92 new_esEs6(xuu311000, xuu600, app(ty_[], bbd)) -> new_esEs22(xuu311000, xuu600, bbd) 35.72/17.92 new_esEs32(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) 35.72/17.92 new_compare19(Double(xuu311000, Pos(xuu3110010)), Double(xuu600, Pos(xuu6010))) -> new_compare7(new_sr(xuu311000, Pos(xuu6010)), new_sr(Pos(xuu3110010), xuu600)) 35.72/17.92 new_esEs5(xuu311000, xuu600, ty_Ordering) -> new_esEs25(xuu311000, xuu600) 35.72/17.92 new_esEs24(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, dda), ddb)) -> new_esEs19(xuu3110000, xuu6000, dda, ddb) 35.72/17.92 new_esEs38(xuu530, xuu540, ty_Integer) -> new_esEs23(xuu530, xuu540) 35.72/17.92 new_ltEs10(LT, LT) -> True 35.72/17.92 new_esEs4(xuu311000, xuu600, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs17(xuu311000, xuu600, cbe, cbf, cbg) 35.72/17.92 new_gt(xuu22, xuu17, app(app(ty_@2, dee), def)) -> new_esEs41(new_compare13(xuu22, xuu17, dee, def)) 35.72/17.92 new_compare18(@3(xuu311000, xuu311001, xuu311002), @3(xuu600, xuu601, xuu602), baa, bab, bac) -> new_compare24(xuu311000, xuu311001, xuu311002, xuu600, xuu601, xuu602, new_asAs(new_esEs6(xuu311000, xuu600, baa), new_asAs(new_esEs7(xuu311001, xuu601, bab), new_esEs8(xuu311002, xuu602, bac))), baa, bab, bac) 35.72/17.92 new_mkBalBranch6MkBalBranch01(xuu210, xuu211, xuu212, Branch(xuu2130, xuu2131, xuu2132, xuu2133, xuu2134), xuu214, xuu17, xuu18, xuu42, False, bb, bc) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu2130, xuu2131, new_mkBranchResult(xuu17, xuu18, xuu2133, xuu42, bb, bc), Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu210, xuu211, xuu2134, xuu214, bb, bc) 35.72/17.92 new_esEs30(xuu112, xuu115, app(ty_Ratio, ege)) -> new_esEs21(xuu112, xuu115, ege) 35.72/17.92 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 35.72/17.92 new_lt21(xuu112, xuu115, app(app(ty_Either, efd), efe)) -> new_lt4(xuu112, xuu115, efd, efe) 35.72/17.92 new_esEs18(False, False) -> True 35.72/17.92 new_ltEs20(xuu60, xuu61, ty_Double) -> new_ltEs7(xuu60, xuu61) 35.72/17.92 new_esEs11(xuu311001, xuu601, ty_Float) -> new_esEs12(xuu311001, xuu601) 35.72/17.92 new_esEs27(xuu530, xuu540, app(ty_[], eaf)) -> new_esEs22(xuu530, xuu540, eaf) 35.72/17.92 new_ltEs18(xuu532, xuu542, ty_Float) -> new_ltEs9(xuu532, xuu542) 35.72/17.92 new_esEs30(xuu112, xuu115, app(app(ty_@2, egc), egd)) -> new_esEs16(xuu112, xuu115, egc, egd) 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), ty_Integer, dfb) -> new_ltEs8(xuu530, xuu540) 35.72/17.92 new_primCmpInt(Pos(Succ(xuu3110000)), Pos(xuu600)) -> new_primCmpNat0(Succ(xuu3110000), xuu600) 35.72/17.92 new_esEs29(xuu111, xuu114, ty_Char) -> new_esEs15(xuu111, xuu114) 35.72/17.92 new_esEs39(xuu3110000, xuu6000, app(app(ty_Either, dac), dad)) -> new_esEs19(xuu3110000, xuu6000, dac, dad) 35.72/17.92 new_mkBalBranch6MkBalBranch4(EmptyFM, xuu17, xuu18, xuu42, True, bb, bc) -> error([]) 35.72/17.92 new_esEs4(xuu311000, xuu600, ty_Float) -> new_esEs12(xuu311000, xuu600) 35.72/17.92 new_esEs21(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), eg) -> new_asAs(new_esEs34(xuu3110000, xuu6000, eg), new_esEs35(xuu3110001, xuu6001, eg)) 35.72/17.92 new_lt23(xuu530, xuu540, ty_Bool) -> new_lt17(xuu530, xuu540) 35.72/17.92 new_ltEs21(xuu53, xuu54, ty_@0) -> new_ltEs17(xuu53, xuu54) 35.72/17.92 new_primMulNat0(Succ(xuu31100000), Succ(xuu60100)) -> new_primPlusNat0(new_primMulNat0(xuu31100000, Succ(xuu60100)), Succ(xuu60100)) 35.72/17.92 new_compare17(xuu311000, xuu600, ty_Double) -> new_compare19(xuu311000, xuu600) 35.72/17.92 new_esEs4(xuu311000, xuu600, app(ty_Maybe, cbh)) -> new_esEs24(xuu311000, xuu600, cbh) 35.72/17.92 new_esEs40(xuu3110001, xuu6001, app(app(ty_Either, dbe), dbf)) -> new_esEs19(xuu3110001, xuu6001, dbe, dbf) 35.72/17.92 new_esEs32(xuu3110001, xuu6001, ty_Float) -> new_esEs12(xuu3110001, xuu6001) 35.72/17.92 new_lt20(xuu111, xuu114, app(app(app(ty_@3, eed), eee), eef)) -> new_lt8(xuu111, xuu114, eed, eee, eef) 35.72/17.92 new_compare3(:(xuu311000, xuu311001), :(xuu600, xuu601), gf) -> new_primCompAux1(xuu311000, xuu600, new_compare3(xuu311001, xuu601, gf), gf) 35.72/17.92 new_esEs39(xuu3110000, xuu6000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs17(xuu3110000, xuu6000, chh, daa, dab) 35.72/17.92 new_lt21(xuu112, xuu115, app(ty_Maybe, egb)) -> new_lt14(xuu112, xuu115, egb) 35.72/17.92 new_esEs38(xuu530, xuu540, ty_@0) -> new_esEs14(xuu530, xuu540) 35.72/17.92 new_esEs27(xuu530, xuu540, ty_Double) -> new_esEs20(xuu530, xuu540) 35.72/17.92 new_gt(xuu22, xuu17, ty_Float) -> new_esEs41(new_compare27(xuu22, xuu17)) 35.72/17.92 new_esEs39(xuu3110000, xuu6000, ty_Bool) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.92 new_lt21(xuu112, xuu115, ty_@0) -> new_lt19(xuu112, xuu115) 35.72/17.92 new_esEs5(xuu311000, xuu600, app(ty_Maybe, cdb)) -> new_esEs24(xuu311000, xuu600, cdb) 35.72/17.92 new_esEs33(xuu3110002, xuu6002, ty_Integer) -> new_esEs23(xuu3110002, xuu6002) 35.72/17.92 new_lt6(xuu531, xuu541, ty_Bool) -> new_lt17(xuu531, xuu541) 35.72/17.92 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_@0, bf) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.92 new_esEs10(xuu311000, xuu600, ty_Float) -> new_esEs12(xuu311000, xuu600) 35.72/17.92 new_lt20(xuu111, xuu114, app(ty_Maybe, eeh)) -> new_lt14(xuu111, xuu114, eeh) 35.72/17.92 new_mkBalBranch6MkBalBranch3(xuu21, xuu17, xuu18, EmptyFM, True, bb, bc) -> error([]) 35.72/17.92 new_ltEs23(xuu531, xuu541, app(ty_[], cad)) -> new_ltEs11(xuu531, xuu541, cad) 35.72/17.92 new_esEs17(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), cbe, cbf, cbg) -> new_asAs(new_esEs31(xuu3110000, xuu6000, cbe), new_asAs(new_esEs32(xuu3110001, xuu6001, cbf), new_esEs33(xuu3110002, xuu6002, cbg))) 35.72/17.92 new_esEs40(xuu3110001, xuu6001, ty_Integer) -> new_esEs23(xuu3110001, xuu6001) 35.72/17.92 new_compare24(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, True, edg, edh, eea) -> EQ 35.72/17.92 new_ltEs10(GT, GT) -> True 35.72/17.92 new_esEs34(xuu3110000, xuu6000, ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.92 new_ltEs23(xuu531, xuu541, app(app(ty_@2, caf), cag)) -> new_ltEs13(xuu531, xuu541, caf, cag) 35.72/17.92 new_lt5(xuu530, xuu540, ty_@0) -> new_lt19(xuu530, xuu540) 35.72/17.92 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.92 new_mkBalBranch6Size_r(xuu21, xuu17, xuu18, xuu42, bb, bc) -> new_sizeFM(xuu21, bb, bc) 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), ty_@0, dfb) -> new_ltEs17(xuu530, xuu540) 35.72/17.92 new_lt20(xuu111, xuu114, ty_Int) -> new_lt7(xuu111, xuu114) 35.72/17.92 new_compare13(@2(xuu311000, xuu311001), @2(xuu600, xuu601), cdc, cdd) -> new_compare211(xuu311000, xuu311001, xuu600, xuu601, new_asAs(new_esEs10(xuu311000, xuu600, cdc), new_esEs11(xuu311001, xuu601, cdd)), cdc, cdd) 35.72/17.92 new_ltEs20(xuu60, xuu61, ty_Float) -> new_ltEs9(xuu60, xuu61) 35.72/17.92 new_esEs41(GT) -> True 35.72/17.92 new_esEs11(xuu311001, xuu601, app(ty_Maybe, cfh)) -> new_esEs24(xuu311001, xuu601, cfh) 35.72/17.92 new_mkBranch0(xuu246, xuu247, xuu248, xuu249, xuu250, beb, bec) -> new_mkBranchResult(xuu247, xuu248, xuu250, xuu249, beb, bec) 35.72/17.92 new_esEs39(xuu3110000, xuu6000, ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.92 new_esEs10(xuu311000, xuu600, ty_Bool) -> new_esEs18(xuu311000, xuu600) 35.72/17.92 new_esEs11(xuu311001, xuu601, ty_Ordering) -> new_esEs25(xuu311001, xuu601) 35.72/17.92 new_esEs31(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.92 new_lt22(xuu124, xuu126, app(app(ty_Either, ffg), ffh)) -> new_lt4(xuu124, xuu126, ffg, ffh) 35.72/17.92 new_lt21(xuu112, xuu115, ty_Float) -> new_lt11(xuu112, xuu115) 35.72/17.92 new_esEs28(xuu531, xuu541, app(app(ty_@2, ecb), ecc)) -> new_esEs16(xuu531, xuu541, ecb, ecc) 35.72/17.92 new_ltEs19(xuu113, xuu116, ty_@0) -> new_ltEs17(xuu113, xuu116) 35.72/17.92 new_ltEs19(xuu113, xuu116, ty_Float) -> new_ltEs9(xuu113, xuu116) 35.72/17.92 new_sizeFM(Branch(xuu210, xuu211, xuu212, xuu213, xuu214), bb, bc) -> xuu212 35.72/17.92 new_esEs27(xuu530, xuu540, app(ty_Ratio, ebb)) -> new_esEs21(xuu530, xuu540, ebb) 35.72/17.92 new_esEs10(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) 35.72/17.92 new_esEs38(xuu530, xuu540, app(app(ty_Either, bge), bgf)) -> new_esEs19(xuu530, xuu540, bge, bgf) 35.72/17.92 new_ltEs12(Just(xuu530), Just(xuu540), app(app(ty_@2, chc), chd)) -> new_ltEs13(xuu530, xuu540, chc, chd) 35.72/17.92 new_esEs11(xuu311001, xuu601, ty_Bool) -> new_esEs18(xuu311001, xuu601) 35.72/17.92 new_lt20(xuu111, xuu114, ty_Bool) -> new_lt17(xuu111, xuu114) 35.72/17.92 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Ordering, bf) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.92 new_esEs19(Right(xuu3110000), Right(xuu6000), db, app(ty_[], ec)) -> new_esEs22(xuu3110000, xuu6000, ec) 35.72/17.92 new_esEs9(xuu311000, xuu600, app(ty_[], gb)) -> new_esEs22(xuu311000, xuu600, gb) 35.72/17.92 new_compare28(GT, EQ) -> GT 35.72/17.92 new_compare6(Left(xuu311000), Left(xuu600), cba, cbb) -> new_compare210(xuu311000, xuu600, new_esEs4(xuu311000, xuu600, cba), cba, cbb) 35.72/17.92 new_ltEs12(Just(xuu530), Just(xuu540), app(ty_Ratio, che)) -> new_ltEs14(xuu530, xuu540, che) 35.72/17.92 new_esEs18(False, True) -> False 35.72/17.92 new_esEs18(True, False) -> False 35.72/17.92 new_esEs37(xuu3110000, xuu6000, ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.92 new_primPlusNat0(Succ(xuu42200), Succ(xuu13700)) -> Succ(Succ(new_primPlusNat0(xuu42200, xuu13700))) 35.72/17.92 new_lt5(xuu530, xuu540, app(app(ty_Either, eaa), eab)) -> new_lt4(xuu530, xuu540, eaa, eab) 35.72/17.92 new_ltEs16(xuu53, xuu54) -> new_fsEs(new_compare30(xuu53, xuu54)) 35.72/17.92 new_ltEs10(EQ, GT) -> True 35.72/17.92 new_lt19(xuu31100, xuu60) -> new_esEs26(new_compare9(xuu31100, xuu60)) 35.72/17.92 new_lt22(xuu124, xuu126, ty_Char) -> new_lt18(xuu124, xuu126) 35.72/17.92 new_mkBalBranch6MkBalBranch4(Branch(xuu210, xuu211, xuu212, xuu213, xuu214), xuu17, xuu18, xuu42, True, bb, bc) -> new_mkBalBranch6MkBalBranch01(xuu210, xuu211, xuu212, xuu213, xuu214, xuu17, xuu18, xuu42, new_lt7(new_sizeFM(xuu213, bb, bc), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu214, bb, bc))), bb, bc) 35.72/17.92 new_esEs25(LT, EQ) -> False 35.72/17.92 new_esEs25(EQ, LT) -> False 35.72/17.92 new_esEs29(xuu111, xuu114, app(ty_Ratio, efc)) -> new_esEs21(xuu111, xuu114, efc) 35.72/17.92 new_ltEs13(@2(xuu530, xuu531), @2(xuu540, xuu541), bgc, bgd) -> new_pePe(new_lt23(xuu530, xuu540, bgc), new_asAs(new_esEs38(xuu530, xuu540, bgc), new_ltEs23(xuu531, xuu541, bgd))) 35.72/17.92 new_esEs4(xuu311000, xuu600, app(app(ty_Either, db), bf)) -> new_esEs19(xuu311000, xuu600, db, bf) 35.72/17.92 new_ltEs10(EQ, EQ) -> True 35.72/17.92 new_ltEs15(False, True) -> True 35.72/17.92 new_lt5(xuu530, xuu540, ty_Bool) -> new_lt17(xuu530, xuu540) 35.72/17.92 new_esEs30(xuu112, xuu115, ty_Int) -> new_esEs13(xuu112, xuu115) 35.72/17.92 new_esEs9(xuu311000, xuu600, ty_Double) -> new_esEs20(xuu311000, xuu600) 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), ty_Bool, dfb) -> new_ltEs15(xuu530, xuu540) 35.72/17.92 new_esEs36(xuu124, xuu126, app(app(ty_Either, ffg), ffh)) -> new_esEs19(xuu124, xuu126, ffg, ffh) 35.72/17.92 new_lt24(xuu31100, xuu60, app(app(app(ty_@3, baa), bab), bac)) -> new_lt8(xuu31100, xuu60, baa, bab, bac) 35.72/17.92 new_esEs35(xuu3110001, xuu6001, ty_Integer) -> new_esEs23(xuu3110001, xuu6001) 35.72/17.92 new_esEs11(xuu311001, xuu601, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs17(xuu311001, xuu601, cfa, cfb, cfc) 35.72/17.92 new_esEs38(xuu530, xuu540, ty_Ordering) -> new_esEs25(xuu530, xuu540) 35.72/17.92 new_esEs37(xuu3110000, xuu6000, ty_Float) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.92 new_esEs33(xuu3110002, xuu6002, ty_@0) -> new_esEs14(xuu3110002, xuu6002) 35.72/17.92 new_ltEs23(xuu531, xuu541, ty_Double) -> new_ltEs7(xuu531, xuu541) 35.72/17.92 new_ltEs24(xuu87, xuu88, app(app(ty_@2, gbc), gbd)) -> new_ltEs13(xuu87, xuu88, gbc, gbd) 35.72/17.92 new_compare17(xuu311000, xuu600, app(app(ty_@2, hf), hg)) -> new_compare13(xuu311000, xuu600, hf, hg) 35.72/17.92 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Integer, bf) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.92 new_lt21(xuu112, xuu115, app(app(app(ty_@3, eff), efg), efh)) -> new_lt8(xuu112, xuu115, eff, efg, efh) 35.72/17.92 new_ltEs12(Nothing, Just(xuu540), cgc) -> True 35.72/17.92 new_esEs11(xuu311001, xuu601, ty_Char) -> new_esEs15(xuu311001, xuu601) 35.72/17.92 new_ltEs12(Just(xuu530), Just(xuu540), ty_Int) -> new_ltEs4(xuu530, xuu540) 35.72/17.92 new_primCmpNat0(Succ(xuu3110000), Succ(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) 35.72/17.92 new_lt22(xuu124, xuu126, ty_@0) -> new_lt19(xuu124, xuu126) 35.72/17.92 new_esEs22([], [], beh) -> True 35.72/17.92 new_ltEs17(xuu53, xuu54) -> new_fsEs(new_compare9(xuu53, xuu54)) 35.72/17.92 new_lt24(xuu31100, xuu60, ty_@0) -> new_lt19(xuu31100, xuu60) 35.72/17.92 new_esEs28(xuu531, xuu541, ty_Int) -> new_esEs13(xuu531, xuu541) 35.72/17.92 new_esEs36(xuu124, xuu126, ty_Ordering) -> new_esEs25(xuu124, xuu126) 35.72/17.92 new_primMinusNat0(Zero, Succ(xuu13700)) -> Neg(Succ(xuu13700)) 35.72/17.92 new_compare3(:(xuu311000, xuu311001), [], gf) -> GT 35.72/17.92 new_ltEs12(Nothing, Nothing, cgc) -> True 35.72/17.92 new_esEs10(xuu311000, xuu600, ty_Char) -> new_esEs15(xuu311000, xuu600) 35.72/17.92 new_ltEs12(Just(xuu530), Nothing, cgc) -> False 35.72/17.92 new_lt20(xuu111, xuu114, ty_Char) -> new_lt18(xuu111, xuu114) 35.72/17.92 new_esEs33(xuu3110002, xuu6002, ty_Char) -> new_esEs15(xuu3110002, xuu6002) 35.72/17.92 new_compare19(Double(xuu311000, Pos(xuu3110010)), Double(xuu600, Neg(xuu6010))) -> new_compare7(new_sr(xuu311000, Pos(xuu6010)), new_sr(Neg(xuu3110010), xuu600)) 35.72/17.92 new_compare19(Double(xuu311000, Neg(xuu3110010)), Double(xuu600, Pos(xuu6010))) -> new_compare7(new_sr(xuu311000, Neg(xuu6010)), new_sr(Pos(xuu3110010), xuu600)) 35.72/17.92 new_compare112(xuu198, xuu199, xuu200, xuu201, True, xuu203, bd, be) -> new_compare10(xuu198, xuu199, xuu200, xuu201, True, bd, be) 35.72/17.92 new_lt23(xuu530, xuu540, app(app(app(ty_@3, bgg), bgh), bha)) -> new_lt8(xuu530, xuu540, bgg, bgh, bha) 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), app(app(ty_@2, dfh), dga), dfb) -> new_ltEs13(xuu530, xuu540, dfh, dga) 35.72/17.92 new_lt5(xuu530, xuu540, ty_Char) -> new_lt18(xuu530, xuu540) 35.72/17.92 new_esEs27(xuu530, xuu540, ty_Int) -> new_esEs13(xuu530, xuu540) 35.72/17.92 new_esEs19(Right(xuu3110000), Right(xuu6000), db, app(app(ty_@2, dc), dd)) -> new_esEs16(xuu3110000, xuu6000, dc, dd) 35.72/17.92 new_esEs37(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.92 new_lt20(xuu111, xuu114, app(app(ty_Either, eeb), eec)) -> new_lt4(xuu111, xuu114, eeb, eec) 35.72/17.92 new_ltEs15(True, False) -> False 35.72/17.92 new_ltEs5(Right(xuu530), Right(xuu540), dgc, app(app(ty_@2, dhc), dhd)) -> new_ltEs13(xuu530, xuu540, dhc, dhd) 35.72/17.92 new_esEs15(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 35.72/17.92 new_esEs36(xuu124, xuu126, app(app(app(ty_@3, fga), fgb), fgc)) -> new_esEs17(xuu124, xuu126, fga, fgb, fgc) 35.72/17.92 new_esEs12(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs13(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 35.72/17.92 new_ltEs24(xuu87, xuu88, ty_Double) -> new_ltEs7(xuu87, xuu88) 35.72/17.92 new_compare14(xuu154, xuu155, False, gd, ge) -> GT 35.72/17.92 new_esEs37(xuu3110000, xuu6000, app(ty_Maybe, bgb)) -> new_esEs24(xuu3110000, xuu6000, bgb) 35.72/17.92 new_lt21(xuu112, xuu115, ty_Char) -> new_lt18(xuu112, xuu115) 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), ty_Char, dfb) -> new_ltEs16(xuu530, xuu540) 35.72/17.92 new_esEs36(xuu124, xuu126, ty_Bool) -> new_esEs18(xuu124, xuu126) 35.72/17.92 new_esEs19(Left(xuu3110000), Right(xuu6000), db, bf) -> False 35.72/17.92 new_esEs19(Right(xuu3110000), Left(xuu6000), db, bf) -> False 35.72/17.92 new_gt(xuu22, xuu17, ty_Ordering) -> new_esEs41(new_compare28(xuu22, xuu17)) 35.72/17.92 new_lt22(xuu124, xuu126, app(app(app(ty_@3, fga), fgb), fgc)) -> new_lt8(xuu124, xuu126, fga, fgb, fgc) 35.72/17.92 new_lt15(xuu31100, xuu60, cdc, cdd) -> new_esEs26(new_compare13(xuu31100, xuu60, cdc, cdd)) 35.72/17.92 new_ltEs21(xuu53, xuu54, app(ty_[], cga)) -> new_ltEs11(xuu53, xuu54, cga) 35.72/17.92 new_mkBalBranch6Size_l(xuu21, xuu17, xuu18, xuu42, bb, bc) -> new_sizeFM(xuu42, bb, bc) 35.72/17.92 new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, bg), bh), bf) -> new_esEs16(xuu3110000, xuu6000, bg, bh) 35.72/17.92 new_compare27(Float(xuu311000, Neg(xuu3110010)), Float(xuu600, Neg(xuu6010))) -> new_compare7(new_sr(xuu311000, Neg(xuu6010)), new_sr(Neg(xuu3110010), xuu600)) 35.72/17.92 new_ltEs15(False, False) -> True 35.72/17.92 new_esEs28(xuu531, xuu541, app(ty_Ratio, ecd)) -> new_esEs21(xuu531, xuu541, ecd) 35.72/17.92 new_lt23(xuu530, xuu540, ty_@0) -> new_lt19(xuu530, xuu540) 35.72/17.92 new_esEs28(xuu531, xuu541, app(ty_Maybe, eca)) -> new_esEs24(xuu531, xuu541, eca) 35.72/17.92 new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, ca), cb), cc), bf) -> new_esEs17(xuu3110000, xuu6000, ca, cb, cc) 35.72/17.92 new_primCmpInt(Neg(Succ(xuu3110000)), Pos(xuu600)) -> LT 35.72/17.92 new_lt21(xuu112, xuu115, app(app(ty_@2, egc), egd)) -> new_lt15(xuu112, xuu115, egc, egd) 35.72/17.92 new_lt13(xuu31100, xuu60, gf) -> new_esEs26(new_compare3(xuu31100, xuu60, gf)) 35.72/17.92 new_ltEs7(xuu53, xuu54) -> new_fsEs(new_compare19(xuu53, xuu54)) 35.72/17.92 new_ltEs23(xuu531, xuu541, ty_Char) -> new_ltEs16(xuu531, xuu541) 35.72/17.92 new_esEs6(xuu311000, xuu600, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs17(xuu311000, xuu600, baf, bag, bah) 35.72/17.92 new_ltEs24(xuu87, xuu88, ty_Int) -> new_ltEs4(xuu87, xuu88) 35.72/17.92 new_esEs39(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.92 new_esEs27(xuu530, xuu540, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs17(xuu530, xuu540, eac, ead, eae) 35.72/17.92 new_esEs9(xuu311000, xuu600, ty_Integer) -> new_esEs23(xuu311000, xuu600) 35.72/17.92 new_lt22(xuu124, xuu126, ty_Float) -> new_lt11(xuu124, xuu126) 35.72/17.92 new_compare14(xuu154, xuu155, True, gd, ge) -> LT 35.72/17.92 new_primCmpInt(Pos(Zero), Neg(Succ(xuu6000))) -> GT 35.72/17.92 new_lt23(xuu530, xuu540, app(app(ty_Either, bge), bgf)) -> new_lt4(xuu530, xuu540, bge, bgf) 35.72/17.92 new_esEs16(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cbc, cbd) -> new_asAs(new_esEs39(xuu3110000, xuu6000, cbc), new_esEs40(xuu3110001, xuu6001, cbd)) 35.72/17.92 new_esEs32(xuu3110001, xuu6001, app(ty_Ratio, fcb)) -> new_esEs21(xuu3110001, xuu6001, fcb) 35.72/17.92 new_ltEs22(xuu125, xuu127, ty_Double) -> new_ltEs7(xuu125, xuu127) 35.72/17.92 new_primCmpInt(Neg(Succ(xuu3110000)), Neg(xuu600)) -> new_primCmpNat0(xuu600, Succ(xuu3110000)) 35.72/17.92 new_ltEs12(Just(xuu530), Just(xuu540), ty_Integer) -> new_ltEs8(xuu530, xuu540) 35.72/17.92 new_esEs37(xuu3110000, xuu6000, app(app(ty_Either, bff), bfg)) -> new_esEs19(xuu3110000, xuu6000, bff, bfg) 35.72/17.92 new_esEs9(xuu311000, xuu600, app(ty_Ratio, ga)) -> new_esEs21(xuu311000, xuu600, ga) 35.72/17.92 new_ltEs8(xuu53, xuu54) -> new_fsEs(new_compare8(xuu53, xuu54)) 35.72/17.92 new_esEs33(xuu3110002, xuu6002, app(app(ty_@2, fce), fcf)) -> new_esEs16(xuu3110002, xuu6002, fce, fcf) 35.72/17.92 new_lt21(xuu112, xuu115, ty_Bool) -> new_lt17(xuu112, xuu115) 35.72/17.92 new_ltEs24(xuu87, xuu88, ty_@0) -> new_ltEs17(xuu87, xuu88) 35.72/17.92 new_compare16(False, True) -> LT 35.72/17.92 new_ltEs4(xuu53, xuu54) -> new_fsEs(new_compare7(xuu53, xuu54)) 35.72/17.92 new_esEs41(EQ) -> False 35.72/17.92 new_primCompAux0(xuu81, GT) -> GT 35.72/17.92 new_esEs9(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) 35.72/17.92 new_esEs5(xuu311000, xuu600, ty_Char) -> new_esEs15(xuu311000, xuu600) 35.72/17.92 new_compare28(EQ, GT) -> LT 35.72/17.92 new_mkBalBranch6MkBalBranch11(xuu21, xuu17, xuu18, xuu420, xuu421, xuu422, xuu423, xuu424, True, bb, bc) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu420, xuu421, xuu423, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), xuu17, xuu18, xuu424, xuu21, bb, bc) 35.72/17.92 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 35.72/17.92 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 35.72/17.92 new_ltEs19(xuu113, xuu116, app(ty_[], ehc)) -> new_ltEs11(xuu113, xuu116, ehc) 35.72/17.92 new_ltEs21(xuu53, xuu54, app(app(ty_@2, bgc), bgd)) -> new_ltEs13(xuu53, xuu54, bgc, bgd) 35.72/17.92 new_esEs26(LT) -> True 35.72/17.92 new_compare210(xuu53, xuu54, True, ffc, ffd) -> EQ 35.72/17.92 new_lt6(xuu531, xuu541, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_lt8(xuu531, xuu541, ebe, ebf, ebg) 35.72/17.92 new_esEs10(xuu311000, xuu600, app(ty_[], cee)) -> new_esEs22(xuu311000, xuu600, cee) 35.72/17.92 new_ltEs11(xuu53, xuu54, cga) -> new_fsEs(new_compare3(xuu53, xuu54, cga)) 35.72/17.92 new_esEs8(xuu311002, xuu602, ty_Int) -> new_esEs13(xuu311002, xuu602) 35.72/17.92 new_ltEs5(Right(xuu530), Right(xuu540), dgc, ty_Double) -> new_ltEs7(xuu530, xuu540) 35.72/17.92 new_esEs37(xuu3110000, xuu6000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs17(xuu3110000, xuu6000, bfc, bfd, bfe) 35.72/17.92 new_esEs29(xuu111, xuu114, ty_Ordering) -> new_esEs25(xuu111, xuu114) 35.72/17.92 new_esEs39(xuu3110000, xuu6000, ty_Double) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.92 new_lt6(xuu531, xuu541, ty_Integer) -> new_lt10(xuu531, xuu541) 35.72/17.92 new_esEs38(xuu530, xuu540, app(ty_Maybe, bhc)) -> new_esEs24(xuu530, xuu540, bhc) 35.72/17.92 new_addToFM_C20(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C10(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_gt(xuu22, xuu17, bb), bb, bc) 35.72/17.92 new_esEs19(Right(xuu3110000), Right(xuu6000), db, ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.92 new_lt23(xuu530, xuu540, app(ty_Ratio, bhf)) -> new_lt16(xuu530, xuu540, bhf) 35.72/17.92 new_esEs38(xuu530, xuu540, ty_Bool) -> new_esEs18(xuu530, xuu540) 35.72/17.92 new_lt5(xuu530, xuu540, app(ty_Maybe, eag)) -> new_lt14(xuu530, xuu540, eag) 35.72/17.92 new_lt6(xuu531, xuu541, ty_@0) -> new_lt19(xuu531, xuu541) 35.72/17.92 new_esEs24(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, dde)) -> new_esEs24(xuu3110000, xuu6000, dde) 35.72/17.92 new_primCmpNat0(Zero, Zero) -> EQ 35.72/17.92 new_esEs29(xuu111, xuu114, ty_Int) -> new_esEs13(xuu111, xuu114) 35.72/17.92 new_compare210(xuu53, xuu54, False, ffc, ffd) -> new_compare110(xuu53, xuu54, new_ltEs21(xuu53, xuu54, ffc), ffc, ffd) 35.72/17.92 new_ltEs12(Just(xuu530), Just(xuu540), ty_Char) -> new_ltEs16(xuu530, xuu540) 35.72/17.92 new_ltEs21(xuu53, xuu54, ty_Float) -> new_ltEs9(xuu53, xuu54) 35.72/17.92 new_lt6(xuu531, xuu541, ty_Int) -> new_lt7(xuu531, xuu541) 35.72/17.92 new_esEs36(xuu124, xuu126, ty_Int) -> new_esEs13(xuu124, xuu126) 35.72/17.92 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Float, bf) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.92 new_compare17(xuu311000, xuu600, ty_Ordering) -> new_compare28(xuu311000, xuu600) 35.72/17.92 new_esEs39(xuu3110000, xuu6000, ty_Float) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.92 new_esEs5(xuu311000, xuu600, app(app(ty_@2, cca), ccb)) -> new_esEs16(xuu311000, xuu600, cca, ccb) 35.72/17.92 new_ltEs20(xuu60, xuu61, app(app(app(ty_@3, fec), fed), fee)) -> new_ltEs6(xuu60, xuu61, fec, fed, fee) 35.72/17.92 new_esEs36(xuu124, xuu126, ty_Char) -> new_esEs15(xuu124, xuu126) 35.72/17.92 new_ltEs21(xuu53, xuu54, ty_Bool) -> new_ltEs15(xuu53, xuu54) 35.72/17.92 new_addToFM_C0(Branch(xuu60, xuu61, xuu62, xuu63, xuu64), xuu31100, xuu31101, h, ba) -> new_addToFM_C20(xuu60, xuu61, xuu62, xuu63, xuu64, xuu31100, xuu31101, new_lt24(xuu31100, xuu60, h), h, ba) 35.72/17.92 new_ltEs24(xuu87, xuu88, app(ty_[], gba)) -> new_ltEs11(xuu87, xuu88, gba) 35.72/17.92 new_esEs6(xuu311000, xuu600, app(app(ty_Either, bba), bbb)) -> new_esEs19(xuu311000, xuu600, bba, bbb) 35.72/17.92 new_ltEs5(Right(xuu530), Right(xuu540), dgc, app(ty_Maybe, dhb)) -> new_ltEs12(xuu530, xuu540, dhb) 35.72/17.92 new_primMinusNat0(Succ(xuu42200), Zero) -> Pos(Succ(xuu42200)) 35.72/17.92 new_ltEs12(Just(xuu530), Just(xuu540), ty_Ordering) -> new_ltEs10(xuu530, xuu540) 35.72/17.92 new_esEs40(xuu3110001, xuu6001, app(ty_Maybe, dca)) -> new_esEs24(xuu3110001, xuu6001, dca) 35.72/17.92 new_esEs32(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 35.72/17.92 new_compare28(LT, GT) -> LT 35.72/17.92 new_esEs19(Right(xuu3110000), Right(xuu6000), db, app(ty_Ratio, eb)) -> new_esEs21(xuu3110000, xuu6000, eb) 35.72/17.92 new_esEs37(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.92 new_lt6(xuu531, xuu541, ty_Float) -> new_lt11(xuu531, xuu541) 35.72/17.92 new_compare15(Just(xuu311000), Just(xuu600), eh) -> new_compare26(xuu311000, xuu600, new_esEs9(xuu311000, xuu600, eh), eh) 35.72/17.92 new_compare110(xuu147, xuu148, True, dcb, dcc) -> LT 35.72/17.92 new_esEs27(xuu530, xuu540, ty_Float) -> new_esEs12(xuu530, xuu540) 35.72/17.92 new_esEs23(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 35.72/17.92 new_lt23(xuu530, xuu540, ty_Char) -> new_lt18(xuu530, xuu540) 35.72/17.92 new_esEs37(xuu3110000, xuu6000, app(ty_Ratio, bfh)) -> new_esEs21(xuu3110000, xuu6000, bfh) 35.72/17.92 new_esEs7(xuu311001, xuu601, app(ty_[], bcf)) -> new_esEs22(xuu311001, xuu601, bcf) 35.72/17.92 new_esEs19(Right(xuu3110000), Right(xuu6000), db, ty_Double) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.92 new_esEs31(xuu3110000, xuu6000, ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.92 new_lt24(xuu31100, xuu60, app(ty_[], gf)) -> new_lt13(xuu31100, xuu60, gf) 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), app(app(app(ty_@3, dfc), dfd), dfe), dfb) -> new_ltEs6(xuu530, xuu540, dfc, dfd, dfe) 35.72/17.92 new_esEs4(xuu311000, xuu600, ty_Integer) -> new_esEs23(xuu311000, xuu600) 35.72/17.92 new_esEs33(xuu3110002, xuu6002, ty_Bool) -> new_esEs18(xuu3110002, xuu6002) 35.72/17.92 new_esEs8(xuu311002, xuu602, ty_Double) -> new_esEs20(xuu311002, xuu602) 35.72/17.92 new_esEs10(xuu311000, xuu600, app(ty_Ratio, ced)) -> new_esEs21(xuu311000, xuu600, ced) 35.72/17.92 new_primCmpNat0(Succ(xuu3110000), Zero) -> GT 35.72/17.92 new_ltEs18(xuu532, xuu542, app(ty_Maybe, edc)) -> new_ltEs12(xuu532, xuu542, edc) 35.72/17.92 new_addToFM_C10(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, False, ee, ef) -> Branch(xuu39, xuu40, xuu36, xuu37, xuu38) 35.72/17.92 new_compare19(Double(xuu311000, Neg(xuu3110010)), Double(xuu600, Neg(xuu6010))) -> new_compare7(new_sr(xuu311000, Neg(xuu6010)), new_sr(Neg(xuu3110010), xuu600)) 35.72/17.92 new_pePe(False, xuu214) -> xuu214 35.72/17.92 new_esEs27(xuu530, xuu540, ty_@0) -> new_esEs14(xuu530, xuu540) 35.72/17.92 new_lt21(xuu112, xuu115, app(ty_[], ega)) -> new_lt13(xuu112, xuu115, ega) 35.72/17.92 new_esEs22(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), beh) -> new_asAs(new_esEs37(xuu3110000, xuu6000, beh), new_esEs22(xuu3110001, xuu6001, beh)) 35.72/17.92 new_mkBalBranch6MkBalBranch4(xuu21, xuu17, xuu18, xuu42, False, bb, bc) -> new_mkBalBranch6MkBalBranch3(xuu21, xuu17, xuu18, xuu42, new_gt0(new_mkBalBranch6Size_l(xuu21, xuu17, xuu18, xuu42, bb, bc), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu21, xuu17, xuu18, xuu42, bb, bc))), bb, bc) 35.72/17.92 new_esEs28(xuu531, xuu541, app(ty_[], ebh)) -> new_esEs22(xuu531, xuu541, ebh) 35.72/17.92 new_ltEs18(xuu532, xuu542, app(app(app(ty_@3, ecg), ech), eda)) -> new_ltEs6(xuu532, xuu542, ecg, ech, eda) 35.72/17.92 new_esEs29(xuu111, xuu114, ty_Float) -> new_esEs12(xuu111, xuu114) 35.72/17.92 new_esEs11(xuu311001, xuu601, app(app(ty_@2, ceg), ceh)) -> new_esEs16(xuu311001, xuu601, ceg, ceh) 35.72/17.92 new_compare25(xuu60, xuu61, True, fdg, fdh) -> EQ 35.72/17.92 new_esEs7(xuu311001, xuu601, ty_Bool) -> new_esEs18(xuu311001, xuu601) 35.72/17.92 new_compare24(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, edg, edh, eea) -> new_compare11(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, new_lt20(xuu111, xuu114, edg), new_asAs(new_esEs29(xuu111, xuu114, edg), new_pePe(new_lt21(xuu112, xuu115, edh), new_asAs(new_esEs30(xuu112, xuu115, edh), new_ltEs19(xuu113, xuu116, eea)))), edg, edh, eea) 35.72/17.92 new_esEs8(xuu311002, xuu602, ty_Float) -> new_esEs12(xuu311002, xuu602) 35.72/17.92 new_esEs40(xuu3110001, xuu6001, ty_Bool) -> new_esEs18(xuu3110001, xuu6001) 35.72/17.92 new_lt20(xuu111, xuu114, app(ty_Ratio, efc)) -> new_lt16(xuu111, xuu114, efc) 35.72/17.92 new_primMinusNat0(Succ(xuu42200), Succ(xuu13700)) -> new_primMinusNat0(xuu42200, xuu13700) 35.72/17.92 new_lt21(xuu112, xuu115, ty_Double) -> new_lt9(xuu112, xuu115) 35.72/17.92 new_lt22(xuu124, xuu126, ty_Integer) -> new_lt10(xuu124, xuu126) 35.72/17.92 new_ltEs5(Right(xuu530), Right(xuu540), dgc, ty_@0) -> new_ltEs17(xuu530, xuu540) 35.72/17.92 new_esEs32(xuu3110001, xuu6001, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_esEs17(xuu3110001, xuu6001, fbe, fbf, fbg) 35.72/17.92 new_esEs5(xuu311000, xuu600, ty_Bool) -> new_esEs18(xuu311000, xuu600) 35.72/17.92 new_compare112(xuu198, xuu199, xuu200, xuu201, False, xuu203, bd, be) -> new_compare10(xuu198, xuu199, xuu200, xuu201, xuu203, bd, be) 35.72/17.92 new_ltEs12(Just(xuu530), Just(xuu540), ty_Bool) -> new_ltEs15(xuu530, xuu540) 35.72/17.92 new_compare11(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, False, xuu190, bee, bef, beg) -> new_compare111(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, xuu190, bee, bef, beg) 35.72/17.92 new_ltEs19(xuu113, xuu116, ty_Bool) -> new_ltEs15(xuu113, xuu116) 35.72/17.92 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 35.72/17.92 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 35.72/17.92 new_lt6(xuu531, xuu541, ty_Double) -> new_lt9(xuu531, xuu541) 35.72/17.92 new_esEs25(LT, GT) -> False 35.72/17.92 new_esEs25(GT, LT) -> False 35.72/17.92 new_primCompAux1(xuu311000, xuu600, xuu48, gf) -> new_primCompAux0(xuu48, new_compare17(xuu311000, xuu600, gf)) 35.72/17.92 new_compare211(xuu124, xuu125, xuu126, xuu127, True, ffe, fff) -> EQ 35.72/17.92 new_esEs9(xuu311000, xuu600, app(app(ty_Either, fg), fh)) -> new_esEs19(xuu311000, xuu600, fg, fh) 35.72/17.92 new_esEs10(xuu311000, xuu600, ty_Integer) -> new_esEs23(xuu311000, xuu600) 35.72/17.92 new_esEs6(xuu311000, xuu600, ty_Ordering) -> new_esEs25(xuu311000, xuu600) 35.72/17.92 new_ltEs19(xuu113, xuu116, ty_Int) -> new_ltEs4(xuu113, xuu116) 35.72/17.92 new_ltEs18(xuu532, xuu542, ty_Char) -> new_ltEs16(xuu532, xuu542) 35.72/17.92 new_gt(xuu22, xuu17, ty_@0) -> new_esEs41(new_compare9(xuu22, xuu17)) 35.72/17.92 new_esEs28(xuu531, xuu541, ty_Bool) -> new_esEs18(xuu531, xuu541) 35.72/17.92 new_esEs19(Right(xuu3110000), Right(xuu6000), db, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.92 new_esEs30(xuu112, xuu115, ty_Integer) -> new_esEs23(xuu112, xuu115) 35.72/17.92 new_lt17(xuu31100, xuu60) -> new_esEs26(new_compare16(xuu31100, xuu60)) 35.72/17.92 new_esEs38(xuu530, xuu540, app(ty_[], bhb)) -> new_esEs22(xuu530, xuu540, bhb) 35.72/17.92 new_esEs33(xuu3110002, xuu6002, app(ty_Maybe, fdf)) -> new_esEs24(xuu3110002, xuu6002, fdf) 35.72/17.92 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.92 new_compare29(:%(xuu311000, xuu311001), :%(xuu600, xuu601), ty_Integer) -> new_compare8(new_sr0(xuu311000, xuu601), new_sr0(xuu600, xuu311001)) 35.72/17.92 new_esEs6(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) 35.72/17.92 new_ltEs5(Right(xuu530), Right(xuu540), dgc, ty_Int) -> new_ltEs4(xuu530, xuu540) 35.72/17.92 new_esEs25(EQ, GT) -> False 35.72/17.92 new_esEs25(GT, EQ) -> False 35.72/17.92 new_esEs38(xuu530, xuu540, ty_Char) -> new_esEs15(xuu530, xuu540) 35.72/17.92 new_esEs10(xuu311000, xuu600, app(ty_Maybe, cef)) -> new_esEs24(xuu311000, xuu600, cef) 35.72/17.92 new_lt24(xuu31100, xuu60, ty_Int) -> new_lt7(xuu31100, xuu60) 35.72/17.92 new_compare29(:%(xuu311000, xuu311001), :%(xuu600, xuu601), ty_Int) -> new_compare7(new_sr(xuu311000, xuu601), new_sr(xuu600, xuu311001)) 35.72/17.92 new_lt5(xuu530, xuu540, app(ty_Ratio, ebb)) -> new_lt16(xuu530, xuu540, ebb) 35.72/17.92 new_esEs30(xuu112, xuu115, app(ty_Maybe, egb)) -> new_esEs24(xuu112, xuu115, egb) 35.72/17.92 new_esEs31(xuu3110000, xuu6000, ty_Double) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.92 new_ltEs22(xuu125, xuu127, ty_@0) -> new_ltEs17(xuu125, xuu127) 35.72/17.92 new_compare27(Float(xuu311000, Pos(xuu3110010)), Float(xuu600, Neg(xuu6010))) -> new_compare7(new_sr(xuu311000, Pos(xuu6010)), new_sr(Neg(xuu3110010), xuu600)) 35.72/17.92 new_compare27(Float(xuu311000, Neg(xuu3110010)), Float(xuu600, Pos(xuu6010))) -> new_compare7(new_sr(xuu311000, Neg(xuu6010)), new_sr(Pos(xuu3110010), xuu600)) 35.72/17.92 new_esEs8(xuu311002, xuu602, ty_Ordering) -> new_esEs25(xuu311002, xuu602) 35.72/17.92 new_esEs30(xuu112, xuu115, app(ty_[], ega)) -> new_esEs22(xuu112, xuu115, ega) 35.72/17.92 new_esEs32(xuu3110001, xuu6001, ty_Integer) -> new_esEs23(xuu3110001, xuu6001) 35.72/17.92 new_esEs4(xuu311000, xuu600, app(ty_[], beh)) -> new_esEs22(xuu311000, xuu600, beh) 35.72/17.92 new_ltEs23(xuu531, xuu541, app(ty_Ratio, cah)) -> new_ltEs14(xuu531, xuu541, cah) 35.72/17.92 new_esEs24(Just(xuu3110000), Just(xuu6000), app(ty_[], ddd)) -> new_esEs22(xuu3110000, xuu6000, ddd) 35.72/17.92 new_esEs31(xuu3110000, xuu6000, app(app(ty_@2, faa), fab)) -> new_esEs16(xuu3110000, xuu6000, faa, fab) 35.72/17.92 new_esEs28(xuu531, xuu541, ty_Char) -> new_esEs15(xuu531, xuu541) 35.72/17.92 new_esEs31(xuu3110000, xuu6000, ty_Float) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.92 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.92 new_esEs6(xuu311000, xuu600, ty_Integer) -> new_esEs23(xuu311000, xuu600) 35.72/17.92 new_esEs30(xuu112, xuu115, ty_@0) -> new_esEs14(xuu112, xuu115) 35.72/17.92 new_lt22(xuu124, xuu126, ty_Int) -> new_lt7(xuu124, xuu126) 35.72/17.92 new_ltEs5(Right(xuu530), Right(xuu540), dgc, app(ty_Ratio, dhe)) -> new_ltEs14(xuu530, xuu540, dhe) 35.72/17.92 new_gt(xuu22, xuu17, app(ty_Maybe, ded)) -> new_esEs41(new_compare15(xuu22, xuu17, ded)) 35.72/17.92 new_esEs4(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) 35.72/17.92 new_esEs22(:(xuu3110000, xuu3110001), [], beh) -> False 35.72/17.92 new_esEs22([], :(xuu6000, xuu6001), beh) -> False 35.72/17.92 new_lt7(xuu31100, xuu60) -> new_esEs26(new_compare7(xuu31100, xuu60)) 35.72/17.92 new_esEs10(xuu311000, xuu600, app(app(ty_Either, ceb), cec)) -> new_esEs19(xuu311000, xuu600, ceb, cec) 35.72/17.92 new_lt21(xuu112, xuu115, ty_Ordering) -> new_lt12(xuu112, xuu115) 35.72/17.92 new_esEs6(xuu311000, xuu600, ty_Double) -> new_esEs20(xuu311000, xuu600) 35.72/17.92 new_lt24(xuu31100, xuu60, ty_Bool) -> new_lt17(xuu31100, xuu60) 35.72/17.92 new_esEs34(xuu3110000, xuu6000, ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.92 new_esEs7(xuu311001, xuu601, ty_Integer) -> new_esEs23(xuu311001, xuu601) 35.72/17.92 new_esEs29(xuu111, xuu114, ty_Double) -> new_esEs20(xuu111, xuu114) 35.72/17.92 new_esEs29(xuu111, xuu114, app(app(app(ty_@3, eed), eee), eef)) -> new_esEs17(xuu111, xuu114, eed, eee, eef) 35.72/17.92 new_ltEs21(xuu53, xuu54, ty_Int) -> new_ltEs4(xuu53, xuu54) 35.72/17.92 new_ltEs12(Just(xuu530), Just(xuu540), app(ty_Maybe, chb)) -> new_ltEs12(xuu530, xuu540, chb) 35.72/17.92 new_compare111(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, True, bee, bef, beg) -> LT 35.72/17.92 new_primMulInt(Neg(xuu3110000), Neg(xuu6010)) -> Pos(new_primMulNat0(xuu3110000, xuu6010)) 35.72/17.92 new_primCmpInt(Pos(Zero), Pos(Succ(xuu6000))) -> new_primCmpNat0(Zero, Succ(xuu6000)) 35.72/17.92 new_esEs11(xuu311001, xuu601, ty_Int) -> new_esEs13(xuu311001, xuu601) 35.72/17.92 new_lt24(xuu31100, xuu60, ty_Float) -> new_lt11(xuu31100, xuu60) 35.72/17.92 new_esEs40(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 35.72/17.92 new_esEs40(xuu3110001, xuu6001, app(ty_[], dbh)) -> new_esEs22(xuu3110001, xuu6001, dbh) 35.72/17.92 new_esEs5(xuu311000, xuu600, ty_Double) -> new_esEs20(xuu311000, xuu600) 35.72/17.92 new_ltEs19(xuu113, xuu116, app(app(ty_@2, ehe), ehf)) -> new_ltEs13(xuu113, xuu116, ehe, ehf) 35.72/17.92 new_esEs6(xuu311000, xuu600, ty_Float) -> new_esEs12(xuu311000, xuu600) 35.72/17.92 new_ltEs18(xuu532, xuu542, ty_Integer) -> new_ltEs8(xuu532, xuu542) 35.72/17.92 new_lt23(xuu530, xuu540, app(ty_Maybe, bhc)) -> new_lt14(xuu530, xuu540, bhc) 35.72/17.92 new_esEs30(xuu112, xuu115, ty_Bool) -> new_esEs18(xuu112, xuu115) 35.72/17.92 new_esEs32(xuu3110001, xuu6001, app(app(ty_Either, fbh), fca)) -> new_esEs19(xuu3110001, xuu6001, fbh, fca) 35.72/17.92 new_ltEs23(xuu531, xuu541, ty_Float) -> new_ltEs9(xuu531, xuu541) 35.72/17.92 new_esEs31(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.92 new_ltEs20(xuu60, xuu61, ty_Char) -> new_ltEs16(xuu60, xuu61) 35.72/17.92 new_lt6(xuu531, xuu541, app(ty_[], ebh)) -> new_lt13(xuu531, xuu541, ebh) 35.72/17.92 new_esEs7(xuu311001, xuu601, app(app(ty_@2, bbf), bbg)) -> new_esEs16(xuu311001, xuu601, bbf, bbg) 35.72/17.92 new_lt5(xuu530, xuu540, ty_Ordering) -> new_lt12(xuu530, xuu540) 35.72/17.92 new_esEs7(xuu311001, xuu601, app(ty_Maybe, bcg)) -> new_esEs24(xuu311001, xuu601, bcg) 35.72/17.92 new_esEs7(xuu311001, xuu601, ty_@0) -> new_esEs14(xuu311001, xuu601) 35.72/17.92 new_ltEs19(xuu113, xuu116, app(app(ty_Either, egf), egg)) -> new_ltEs5(xuu113, xuu116, egf, egg) 35.72/17.92 new_gt(xuu22, xuu17, ty_Double) -> new_esEs41(new_compare19(xuu22, xuu17)) 35.72/17.92 new_ltEs18(xuu532, xuu542, ty_Ordering) -> new_ltEs10(xuu532, xuu542) 35.72/17.92 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.92 new_compare8(Integer(xuu311000), Integer(xuu600)) -> new_primCmpInt(xuu311000, xuu600) 35.72/17.92 new_primMulInt(Pos(xuu3110000), Neg(xuu6010)) -> Neg(new_primMulNat0(xuu3110000, xuu6010)) 35.72/17.92 new_primMulInt(Neg(xuu3110000), Pos(xuu6010)) -> Neg(new_primMulNat0(xuu3110000, xuu6010)) 35.72/17.92 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Int, bf) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.92 new_lt5(xuu530, xuu540, app(ty_[], eaf)) -> new_lt13(xuu530, xuu540, eaf) 35.72/17.92 new_esEs40(xuu3110001, xuu6001, app(ty_Ratio, dbg)) -> new_esEs21(xuu3110001, xuu6001, dbg) 35.72/17.92 new_lt5(xuu530, xuu540, ty_Double) -> new_lt9(xuu530, xuu540) 35.72/17.92 new_esEs28(xuu531, xuu541, ty_Integer) -> new_esEs23(xuu531, xuu541) 35.72/17.92 new_esEs19(Right(xuu3110000), Right(xuu6000), db, app(ty_Maybe, ed)) -> new_esEs24(xuu3110000, xuu6000, ed) 35.72/17.92 new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cd), ce), bf) -> new_esEs19(xuu3110000, xuu6000, cd, ce) 35.72/17.92 new_lt16(xuu31100, xuu60, cgb) -> new_esEs26(new_compare29(xuu31100, xuu60, cgb)) 35.72/17.92 new_esEs8(xuu311002, xuu602, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs17(xuu311002, xuu602, bdb, bdc, bdd) 35.72/17.92 new_esEs37(xuu3110000, xuu6000, ty_Double) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.92 new_sr0(Integer(xuu3110000), Integer(xuu6010)) -> Integer(new_primMulInt(xuu3110000, xuu6010)) 35.72/17.92 new_esEs30(xuu112, xuu115, app(app(ty_Either, efd), efe)) -> new_esEs19(xuu112, xuu115, efd, efe) 35.72/17.92 new_esEs6(xuu311000, xuu600, ty_Int) -> new_esEs13(xuu311000, xuu600) 35.72/17.92 new_esEs28(xuu531, xuu541, ty_@0) -> new_esEs14(xuu531, xuu541) 35.72/17.92 new_esEs9(xuu311000, xuu600, app(ty_Maybe, gc)) -> new_esEs24(xuu311000, xuu600, gc) 35.72/17.92 new_compare15(Just(xuu311000), Nothing, eh) -> GT 35.72/17.92 new_esEs9(xuu311000, xuu600, ty_Float) -> new_esEs12(xuu311000, xuu600) 35.72/17.92 new_esEs8(xuu311002, xuu602, ty_Bool) -> new_esEs18(xuu311002, xuu602) 35.72/17.92 new_esEs19(Right(xuu3110000), Right(xuu6000), db, ty_Bool) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.92 new_lt21(xuu112, xuu115, app(ty_Ratio, ege)) -> new_lt16(xuu112, xuu115, ege) 35.72/17.92 new_lt21(xuu112, xuu115, ty_Integer) -> new_lt10(xuu112, xuu115) 35.72/17.92 new_esEs25(LT, LT) -> True 35.72/17.92 new_ltEs24(xuu87, xuu88, ty_Float) -> new_ltEs9(xuu87, xuu88) 35.72/17.92 new_ltEs19(xuu113, xuu116, ty_Integer) -> new_ltEs8(xuu113, xuu116) 35.72/17.92 new_asAs(True, xuu163) -> xuu163 35.72/17.92 new_lt6(xuu531, xuu541, app(app(ty_@2, ecb), ecc)) -> new_lt15(xuu531, xuu541, ecb, ecc) 35.72/17.92 new_ltEs21(xuu53, xuu54, ty_Char) -> new_ltEs16(xuu53, xuu54) 35.72/17.92 new_ltEs23(xuu531, xuu541, app(app(app(ty_@3, caa), cab), cac)) -> new_ltEs6(xuu531, xuu541, caa, cab, cac) 35.72/17.92 new_gt(xuu22, xuu17, app(app(ty_Either, ddf), ddg)) -> new_esEs41(new_compare6(xuu22, xuu17, ddf, ddg)) 35.72/17.92 new_lt24(xuu31100, xuu60, ty_Ordering) -> new_lt12(xuu31100, xuu60) 35.72/17.92 new_esEs38(xuu530, xuu540, ty_Int) -> new_esEs13(xuu530, xuu540) 35.72/17.92 new_compare6(Right(xuu311000), Right(xuu600), cba, cbb) -> new_compare25(xuu311000, xuu600, new_esEs5(xuu311000, xuu600, cbb), cba, cbb) 35.72/17.92 new_ltEs20(xuu60, xuu61, app(app(ty_Either, fea), feb)) -> new_ltEs5(xuu60, xuu61, fea, feb) 35.72/17.92 new_ltEs12(Just(xuu530), Just(xuu540), app(ty_[], cha)) -> new_ltEs11(xuu530, xuu540, cha) 35.72/17.92 new_ltEs20(xuu60, xuu61, ty_Integer) -> new_ltEs8(xuu60, xuu61) 35.72/17.92 new_ltEs24(xuu87, xuu88, ty_Ordering) -> new_ltEs10(xuu87, xuu88) 35.72/17.92 new_primPlusInt(Pos(xuu4220), Neg(xuu1370)) -> new_primMinusNat0(xuu4220, xuu1370) 35.72/17.92 new_primPlusInt(Neg(xuu4220), Pos(xuu1370)) -> new_primMinusNat0(xuu1370, xuu4220) 35.72/17.92 new_compare25(xuu60, xuu61, False, fdg, fdh) -> new_compare14(xuu60, xuu61, new_ltEs20(xuu60, xuu61, fdh), fdg, fdh) 35.72/17.92 new_esEs10(xuu311000, xuu600, app(app(ty_@2, cde), cdf)) -> new_esEs16(xuu311000, xuu600, cde, cdf) 35.72/17.92 new_esEs33(xuu3110002, xuu6002, app(ty_[], fde)) -> new_esEs22(xuu3110002, xuu6002, fde) 35.72/17.92 new_gt(xuu22, xuu17, app(ty_[], dec)) -> new_esEs41(new_compare3(xuu22, xuu17, dec)) 35.72/17.92 new_ltEs21(xuu53, xuu54, app(ty_Maybe, cgc)) -> new_ltEs12(xuu53, xuu54, cgc) 35.72/17.92 new_ltEs5(Right(xuu530), Right(xuu540), dgc, app(app(ty_Either, dgd), dge)) -> new_ltEs5(xuu530, xuu540, dgd, dge) 35.72/17.92 new_compare6(Right(xuu311000), Left(xuu600), cba, cbb) -> GT 35.72/17.92 new_ltEs18(xuu532, xuu542, app(app(ty_@2, edd), ede)) -> new_ltEs13(xuu532, xuu542, edd, ede) 35.72/17.92 new_compare10(xuu198, xuu199, xuu200, xuu201, True, bd, be) -> LT 35.72/17.92 new_sr(xuu311000, xuu601) -> new_primMulInt(xuu311000, xuu601) 35.72/17.92 new_esEs8(xuu311002, xuu602, ty_Char) -> new_esEs15(xuu311002, xuu602) 35.72/17.92 new_esEs38(xuu530, xuu540, app(ty_Ratio, bhf)) -> new_esEs21(xuu530, xuu540, bhf) 35.72/17.92 new_primMulNat0(Zero, Zero) -> Zero 35.72/17.92 new_compare28(EQ, LT) -> GT 35.72/17.92 new_esEs24(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, dcd), dce)) -> new_esEs16(xuu3110000, xuu6000, dcd, dce) 35.72/17.92 new_ltEs20(xuu60, xuu61, app(ty_Maybe, feg)) -> new_ltEs12(xuu60, xuu61, feg) 35.72/17.92 new_esEs7(xuu311001, xuu601, ty_Char) -> new_esEs15(xuu311001, xuu601) 35.72/17.92 new_compare16(True, True) -> EQ 35.72/17.92 new_esEs4(xuu311000, xuu600, app(app(ty_@2, cbc), cbd)) -> new_esEs16(xuu311000, xuu600, cbc, cbd) 35.72/17.92 new_compare9(@0, @0) -> EQ 35.72/17.92 new_gt(xuu22, xuu17, app(app(app(ty_@3, ddh), dea), deb)) -> new_esEs41(new_compare18(xuu22, xuu17, ddh, dea, deb)) 35.72/17.92 new_compare17(xuu311000, xuu600, app(ty_Maybe, he)) -> new_compare15(xuu311000, xuu600, he) 35.72/17.92 new_lt24(xuu31100, xuu60, app(app(ty_@2, cdc), cdd)) -> new_lt15(xuu31100, xuu60, cdc, cdd) 35.72/17.92 new_esEs39(xuu3110000, xuu6000, app(app(ty_@2, chf), chg)) -> new_esEs16(xuu3110000, xuu6000, chf, chg) 35.72/17.92 new_esEs9(xuu311000, xuu600, ty_Ordering) -> new_esEs25(xuu311000, xuu600) 35.72/17.92 new_esEs27(xuu530, xuu540, ty_Ordering) -> new_esEs25(xuu530, xuu540) 35.72/17.92 new_esEs37(xuu3110000, xuu6000, ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.92 new_ltEs22(xuu125, xuu127, app(ty_Ratio, gab)) -> new_ltEs14(xuu125, xuu127, gab) 35.72/17.92 new_esEs33(xuu3110002, xuu6002, ty_Double) -> new_esEs20(xuu3110002, xuu6002) 35.72/17.92 new_esEs19(Right(xuu3110000), Right(xuu6000), db, ty_Float) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.92 new_esEs9(xuu311000, xuu600, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs17(xuu311000, xuu600, fc, fd, ff) 35.72/17.92 new_ltEs14(xuu53, xuu54, bed) -> new_fsEs(new_compare29(xuu53, xuu54, bed)) 35.72/17.92 new_ltEs23(xuu531, xuu541, ty_Ordering) -> new_ltEs10(xuu531, xuu541) 35.72/17.92 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Double, bf) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.92 new_primCompAux0(xuu81, EQ) -> xuu81 35.72/17.92 new_esEs9(xuu311000, xuu600, ty_Bool) -> new_esEs18(xuu311000, xuu600) 35.72/17.92 new_lt23(xuu530, xuu540, app(app(ty_@2, bhd), bhe)) -> new_lt15(xuu530, xuu540, bhd, bhe) 35.72/17.92 new_compare28(EQ, EQ) -> EQ 35.72/17.92 new_esEs37(xuu3110000, xuu6000, app(ty_[], bga)) -> new_esEs22(xuu3110000, xuu6000, bga) 35.72/17.92 new_lt10(xuu31100, xuu60) -> new_esEs26(new_compare8(xuu31100, xuu60)) 35.72/17.92 new_ltEs24(xuu87, xuu88, app(app(ty_Either, gad), gae)) -> new_ltEs5(xuu87, xuu88, gad, gae) 35.72/17.92 new_compare111(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, False, bee, bef, beg) -> GT 35.72/17.92 new_esEs7(xuu311001, xuu601, ty_Int) -> new_esEs13(xuu311001, xuu601) 35.72/17.92 new_esEs32(xuu3110001, xuu6001, app(ty_[], fcc)) -> new_esEs22(xuu3110001, xuu6001, fcc) 35.72/17.92 new_esEs40(xuu3110001, xuu6001, app(app(ty_@2, dah), dba)) -> new_esEs16(xuu3110001, xuu6001, dah, dba) 35.72/17.92 new_esEs32(xuu3110001, xuu6001, ty_Double) -> new_esEs20(xuu3110001, xuu6001) 35.72/17.92 new_lt22(xuu124, xuu126, app(ty_Ratio, fgh)) -> new_lt16(xuu124, xuu126, fgh) 35.72/17.92 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 35.72/17.92 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 35.72/17.92 new_ltEs21(xuu53, xuu54, ty_Integer) -> new_ltEs8(xuu53, xuu54) 35.72/17.92 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 35.72/17.92 new_lt23(xuu530, xuu540, ty_Ordering) -> new_lt12(xuu530, xuu540) 35.72/17.92 new_ltEs21(xuu53, xuu54, app(ty_Ratio, bed)) -> new_ltEs14(xuu53, xuu54, bed) 35.72/17.92 new_ltEs19(xuu113, xuu116, app(ty_Maybe, ehd)) -> new_ltEs12(xuu113, xuu116, ehd) 35.72/17.92 new_ltEs18(xuu532, xuu542, app(app(ty_Either, ece), ecf)) -> new_ltEs5(xuu532, xuu542, ece, ecf) 35.72/17.92 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 35.72/17.92 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 35.72/17.92 new_gt(xuu22, xuu17, ty_Int) -> new_gt0(xuu22, xuu17) 35.72/17.92 new_primCmpInt(Neg(Zero), Neg(Succ(xuu6000))) -> new_primCmpNat0(Succ(xuu6000), Zero) 35.72/17.92 new_esEs7(xuu311001, xuu601, app(ty_Ratio, bce)) -> new_esEs21(xuu311001, xuu601, bce) 35.72/17.92 new_esEs29(xuu111, xuu114, app(app(ty_Either, eeb), eec)) -> new_esEs19(xuu111, xuu114, eeb, eec) 35.72/17.92 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 35.72/17.92 new_ltEs10(LT, EQ) -> True 35.72/17.92 new_lt22(xuu124, xuu126, ty_Double) -> new_lt9(xuu124, xuu126) 35.72/17.92 new_esEs19(Right(xuu3110000), Right(xuu6000), db, app(app(app(ty_@3, de), df), dg)) -> new_esEs17(xuu3110000, xuu6000, de, df, dg) 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), app(ty_[], dff), dfb) -> new_ltEs11(xuu530, xuu540, dff) 35.72/17.92 new_compare17(xuu311000, xuu600, app(app(app(ty_@3, ha), hb), hc)) -> new_compare18(xuu311000, xuu600, ha, hb, hc) 35.72/17.92 new_esEs19(Right(xuu3110000), Right(xuu6000), db, app(app(ty_Either, dh), ea)) -> new_esEs19(xuu3110000, xuu6000, dh, ea) 35.72/17.92 new_compare12(xuu168, xuu169, True, ehh) -> LT 35.72/17.92 new_esEs5(xuu311000, xuu600, ty_Int) -> new_esEs13(xuu311000, xuu600) 35.72/17.92 new_mkBranchResult(xuu17, xuu18, xuu21, xuu42, bb, bc) -> Branch(xuu17, xuu18, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM(xuu42, bb, bc)), new_sizeFM(xuu21, bb, bc)), xuu42, xuu21) 35.72/17.92 new_lt20(xuu111, xuu114, app(app(ty_@2, efa), efb)) -> new_lt15(xuu111, xuu114, efa, efb) 35.72/17.92 new_esEs19(Right(xuu3110000), Right(xuu6000), db, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.92 new_compare17(xuu311000, xuu600, ty_@0) -> new_compare9(xuu311000, xuu600) 35.72/17.92 new_esEs6(xuu311000, xuu600, app(ty_Ratio, bbc)) -> new_esEs21(xuu311000, xuu600, bbc) 35.72/17.92 new_esEs27(xuu530, xuu540, app(ty_Maybe, eag)) -> new_esEs24(xuu530, xuu540, eag) 35.72/17.92 new_esEs11(xuu311001, xuu601, app(ty_[], cfg)) -> new_esEs22(xuu311001, xuu601, cfg) 35.72/17.92 new_esEs40(xuu3110001, xuu6001, ty_Int) -> new_esEs13(xuu3110001, xuu6001) 35.72/17.92 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.92 new_not(False) -> True 35.72/17.92 new_mkBalBranch6MkBalBranch5(xuu21, xuu17, xuu18, xuu42, False, bb, bc) -> new_mkBalBranch6MkBalBranch4(xuu21, xuu17, xuu18, xuu42, new_gt0(new_mkBalBranch6Size_r(xuu21, xuu17, xuu18, xuu42, bb, bc), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu21, xuu17, xuu18, xuu42, bb, bc))), bb, bc) 35.72/17.92 new_ltEs12(Just(xuu530), Just(xuu540), ty_@0) -> new_ltEs17(xuu530, xuu540) 35.72/17.92 new_esEs36(xuu124, xuu126, app(ty_[], fgd)) -> new_esEs22(xuu124, xuu126, fgd) 35.72/17.92 new_ltEs12(Just(xuu530), Just(xuu540), ty_Float) -> new_ltEs9(xuu530, xuu540) 35.72/17.92 new_esEs36(xuu124, xuu126, app(app(ty_@2, fgf), fgg)) -> new_esEs16(xuu124, xuu126, fgf, fgg) 35.72/17.92 new_esEs8(xuu311002, xuu602, ty_@0) -> new_esEs14(xuu311002, xuu602) 35.72/17.92 new_ltEs24(xuu87, xuu88, app(app(app(ty_@3, gaf), gag), gah)) -> new_ltEs6(xuu87, xuu88, gaf, gag, gah) 35.72/17.92 new_esEs27(xuu530, xuu540, ty_Integer) -> new_esEs23(xuu530, xuu540) 35.72/17.92 new_mkBalBranch6MkBalBranch01(xuu210, xuu211, xuu212, xuu213, xuu214, xuu17, xuu18, xuu42, True, bb, bc) -> new_mkBranchResult(xuu210, xuu211, xuu214, new_mkBranchResult(xuu17, xuu18, xuu213, xuu42, bb, bc), bb, bc) 35.72/17.92 new_esEs36(xuu124, xuu126, ty_Double) -> new_esEs20(xuu124, xuu126) 35.72/17.92 new_gt(xuu22, xuu17, ty_Integer) -> new_esEs41(new_compare8(xuu22, xuu17)) 35.72/17.92 new_esEs41(LT) -> False 35.72/17.92 new_ltEs20(xuu60, xuu61, app(ty_Ratio, ffb)) -> new_ltEs14(xuu60, xuu61, ffb) 35.72/17.92 new_esEs38(xuu530, xuu540, app(app(ty_@2, bhd), bhe)) -> new_esEs16(xuu530, xuu540, bhd, bhe) 35.72/17.92 new_compare28(GT, GT) -> EQ 35.72/17.92 new_esEs28(xuu531, xuu541, app(app(ty_Either, ebc), ebd)) -> new_esEs19(xuu531, xuu541, ebc, ebd) 35.72/17.92 new_esEs26(EQ) -> False 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), ty_Int, dfb) -> new_ltEs4(xuu530, xuu540) 35.72/17.92 new_compare17(xuu311000, xuu600, app(app(ty_Either, gg), gh)) -> new_compare6(xuu311000, xuu600, gg, gh) 35.72/17.92 new_lt23(xuu530, xuu540, ty_Double) -> new_lt9(xuu530, xuu540) 35.72/17.92 new_ltEs24(xuu87, xuu88, app(ty_Maybe, gbb)) -> new_ltEs12(xuu87, xuu88, gbb) 35.72/17.92 new_compare27(Float(xuu311000, Pos(xuu3110010)), Float(xuu600, Pos(xuu6010))) -> new_compare7(new_sr(xuu311000, Pos(xuu6010)), new_sr(Pos(xuu3110010), xuu600)) 35.72/17.92 new_ltEs19(xuu113, xuu116, app(ty_Ratio, ehg)) -> new_ltEs14(xuu113, xuu116, ehg) 35.72/17.92 new_lt22(xuu124, xuu126, app(app(ty_@2, fgf), fgg)) -> new_lt15(xuu124, xuu126, fgf, fgg) 35.72/17.92 new_lt8(xuu31100, xuu60, baa, bab, bac) -> new_esEs26(new_compare18(xuu31100, xuu60, baa, bab, bac)) 35.72/17.92 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 35.72/17.92 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 35.72/17.92 new_compare15(Nothing, Just(xuu600), eh) -> LT 35.72/17.92 new_esEs19(Right(xuu3110000), Right(xuu6000), db, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.92 new_esEs11(xuu311001, xuu601, ty_Double) -> new_esEs20(xuu311001, xuu601) 35.72/17.92 new_ltEs23(xuu531, xuu541, ty_Bool) -> new_ltEs15(xuu531, xuu541) 35.72/17.92 new_ltEs24(xuu87, xuu88, ty_Char) -> new_ltEs16(xuu87, xuu88) 35.72/17.92 new_ltEs5(Right(xuu530), Right(xuu540), dgc, app(app(app(ty_@3, dgf), dgg), dgh)) -> new_ltEs6(xuu530, xuu540, dgf, dgg, dgh) 35.72/17.92 new_lt24(xuu31100, xuu60, ty_Integer) -> new_lt10(xuu31100, xuu60) 35.72/17.92 new_compare211(xuu124, xuu125, xuu126, xuu127, False, ffe, fff) -> new_compare112(xuu124, xuu125, xuu126, xuu127, new_lt22(xuu124, xuu126, ffe), new_asAs(new_esEs36(xuu124, xuu126, ffe), new_ltEs22(xuu125, xuu127, fff)), ffe, fff) 35.72/17.92 new_esEs26(GT) -> False 35.72/17.92 new_ltEs21(xuu53, xuu54, app(app(app(ty_@3, dhf), dhg), dhh)) -> new_ltEs6(xuu53, xuu54, dhf, dhg, dhh) 35.72/17.92 new_compare17(xuu311000, xuu600, ty_Char) -> new_compare30(xuu311000, xuu600) 35.72/17.92 new_ltEs24(xuu87, xuu88, ty_Integer) -> new_ltEs8(xuu87, xuu88) 35.72/17.92 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 35.72/17.92 new_ltEs5(Left(xuu530), Left(xuu540), ty_Double, dfb) -> new_ltEs7(xuu530, xuu540) 35.72/17.92 new_ltEs21(xuu53, xuu54, app(app(ty_Either, dgc), dfb)) -> new_ltEs5(xuu53, xuu54, dgc, dfb) 35.72/17.92 new_ltEs21(xuu53, xuu54, ty_Ordering) -> new_ltEs10(xuu53, xuu54) 35.72/17.92 new_compare28(GT, LT) -> GT 35.72/17.92 new_ltEs22(xuu125, xuu127, app(app(ty_Either, fha), fhb)) -> new_ltEs5(xuu125, xuu127, fha, fhb) 35.72/17.92 new_ltEs23(xuu531, xuu541, ty_Integer) -> new_ltEs8(xuu531, xuu541) 35.72/17.92 new_lt24(xuu31100, xuu60, app(ty_Ratio, cgb)) -> new_lt16(xuu31100, xuu60, cgb) 35.72/17.92 new_compare17(xuu311000, xuu600, app(ty_Ratio, hh)) -> new_compare29(xuu311000, xuu600, hh) 35.72/17.92 new_esEs9(xuu311000, xuu600, ty_Char) -> new_esEs15(xuu311000, xuu600) 35.72/17.92 new_compare30(Char(xuu311000), Char(xuu600)) -> new_primCmpNat0(xuu311000, xuu600) 35.72/17.92 new_esEs39(xuu3110000, xuu6000, app(ty_Ratio, dae)) -> new_esEs21(xuu3110000, xuu6000, dae) 35.72/17.92 new_esEs24(Nothing, Nothing, cbh) -> True 35.72/17.92 new_esEs27(xuu530, xuu540, app(app(ty_Either, eaa), eab)) -> new_esEs19(xuu530, xuu540, eaa, eab) 35.72/17.92 new_addToFM_C0(EmptyFM, xuu31100, xuu31101, h, ba) -> Branch(xuu31100, xuu31101, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) 35.72/17.92 new_ltEs22(xuu125, xuu127, app(ty_Maybe, fhg)) -> new_ltEs12(xuu125, xuu127, fhg) 35.72/17.92 new_compare17(xuu311000, xuu600, ty_Integer) -> new_compare8(xuu311000, xuu600) 35.72/17.92 new_lt24(xuu31100, xuu60, ty_Double) -> new_lt9(xuu31100, xuu60) 35.72/17.92 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 35.72/17.92 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 35.72/17.92 new_compare110(xuu147, xuu148, False, dcb, dcc) -> GT 35.72/17.92 new_primEqNat0(Zero, Zero) -> True 35.72/17.92 new_compare28(LT, EQ) -> LT 35.72/17.92 new_ltEs18(xuu532, xuu542, app(ty_Ratio, edf)) -> new_ltEs14(xuu532, xuu542, edf) 35.72/17.92 new_ltEs23(xuu531, xuu541, app(ty_Maybe, cae)) -> new_ltEs12(xuu531, xuu541, cae) 35.72/17.92 new_ltEs5(Right(xuu530), Right(xuu540), dgc, ty_Ordering) -> new_ltEs10(xuu530, xuu540) 35.72/17.92 new_esEs37(xuu3110000, xuu6000, app(app(ty_@2, bfa), bfb)) -> new_esEs16(xuu3110000, xuu6000, bfa, bfb) 35.72/17.92 new_esEs24(Nothing, Just(xuu6000), cbh) -> False 35.72/17.92 new_esEs24(Just(xuu3110000), Nothing, cbh) -> False 35.72/17.92 new_ltEs24(xuu87, xuu88, ty_Bool) -> new_ltEs15(xuu87, xuu88) 35.72/17.92 new_esEs4(xuu311000, xuu600, app(ty_Ratio, eg)) -> new_esEs21(xuu311000, xuu600, eg) 35.72/17.92 new_ltEs10(LT, GT) -> True 35.72/17.92 new_asAs(False, xuu163) -> False 35.72/17.92 new_esEs4(xuu311000, xuu600, ty_Int) -> new_esEs13(xuu311000, xuu600) 35.72/17.92 new_lt5(xuu530, xuu540, app(app(ty_@2, eah), eba)) -> new_lt15(xuu530, xuu540, eah, eba) 35.72/17.92 new_ltEs19(xuu113, xuu116, ty_Ordering) -> new_ltEs10(xuu113, xuu116) 35.72/17.92 new_esEs24(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, ddc)) -> new_esEs21(xuu3110000, xuu6000, ddc) 35.72/17.92 new_ltEs20(xuu60, xuu61, ty_Ordering) -> new_ltEs10(xuu60, xuu61) 35.72/17.92 new_ltEs22(xuu125, xuu127, app(app(app(ty_@3, fhc), fhd), fhe)) -> new_ltEs6(xuu125, xuu127, fhc, fhd, fhe) 35.72/17.92 new_esEs25(EQ, EQ) -> True 35.72/17.92 new_esEs39(xuu3110000, xuu6000, ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.92 35.72/17.92 The set Q consists of the following terms: 35.72/17.92 35.72/17.92 new_primMinusNat0(Succ(x0), Succ(x1)) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 35.72/17.92 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_ltEs21(x0, x1, ty_Char) 35.72/17.92 new_compare25(x0, x1, False, x2, x3) 35.72/17.92 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs24(Just(x0), Just(x1), ty_Char) 35.72/17.92 new_lt20(x0, x1, ty_Integer) 35.72/17.92 new_compare28(EQ, LT) 35.72/17.92 new_compare28(LT, EQ) 35.72/17.92 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs38(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs37(x0, x1, ty_Bool) 35.72/17.92 new_esEs29(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 35.72/17.92 new_ltEs20(x0, x1, ty_Ordering) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 35.72/17.92 new_esEs37(x0, x1, ty_@0) 35.72/17.92 new_esEs18(True, True) 35.72/17.92 new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 35.72/17.92 new_esEs32(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_primEqInt(Pos(Zero), Pos(Zero)) 35.72/17.92 new_gt(x0, x1, ty_Float) 35.72/17.92 new_lt20(x0, x1, ty_Bool) 35.72/17.92 new_esEs24(Just(x0), Just(x1), ty_Ordering) 35.72/17.92 new_lt5(x0, x1, app(ty_[], x2)) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 35.72/17.92 new_esEs20(Double(x0, x1), Double(x2, x3)) 35.72/17.92 new_compare211(x0, x1, x2, x3, False, x4, x5) 35.72/17.92 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), False, x12, x13) 35.72/17.92 new_esEs37(x0, x1, ty_Integer) 35.72/17.92 new_compare6(Right(x0), Right(x1), x2, x3) 35.72/17.92 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_gt(x0, x1, ty_Integer) 35.72/17.92 new_lt5(x0, x1, ty_Float) 35.72/17.92 new_ltEs20(x0, x1, ty_Double) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), ty_Bool) 35.72/17.92 new_primEqNat0(Zero, Succ(x0)) 35.72/17.92 new_ltEs20(x0, x1, ty_Char) 35.72/17.92 new_esEs9(x0, x1, ty_Char) 35.72/17.92 new_mkBalBranch6MkBalBranch4(Branch(x0, x1, x2, x3, x4), x5, x6, x7, True, x8, x9) 35.72/17.92 new_primEqInt(Neg(Zero), Neg(Zero)) 35.72/17.92 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs25(LT, LT) 35.72/17.92 new_esEs12(Float(x0, x1), Float(x2, x3)) 35.72/17.92 new_lt5(x0, x1, ty_Integer) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 35.72/17.92 new_ltEs15(False, True) 35.72/17.92 new_ltEs15(True, False) 35.72/17.92 new_compare10(x0, x1, x2, x3, False, x4, x5) 35.72/17.92 new_ltEs22(x0, x1, ty_Float) 35.72/17.92 new_lt24(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), ty_Integer) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 35.72/17.92 new_esEs19(Left(x0), Left(x1), ty_Double, x2) 35.72/17.92 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 35.72/17.92 new_esEs28(x0, x1, ty_Char) 35.72/17.92 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs40(x0, x1, ty_Float) 35.72/17.92 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_mkBalBranch6MkBalBranch01(x0, x1, x2, Branch(x3, x4, x5, x6, x7), x8, x9, x10, x11, False, x12, x13) 35.72/17.92 new_ltEs18(x0, x1, ty_Char) 35.72/17.92 new_esEs5(x0, x1, ty_Ordering) 35.72/17.92 new_primEqInt(Pos(Zero), Neg(Zero)) 35.72/17.92 new_primEqInt(Neg(Zero), Pos(Zero)) 35.72/17.92 new_fsEs(x0) 35.72/17.92 new_esEs32(x0, x1, ty_Float) 35.72/17.92 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 35.72/17.92 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) 35.72/17.92 new_lt22(x0, x1, ty_Char) 35.72/17.92 new_ltEs18(x0, x1, ty_Double) 35.72/17.92 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_sizeFM(EmptyFM, x0, x1) 35.72/17.92 new_esEs25(LT, EQ) 35.72/17.92 new_esEs25(EQ, LT) 35.72/17.92 new_compare110(x0, x1, True, x2, x3) 35.72/17.92 new_ltEs21(x0, x1, ty_Ordering) 35.72/17.92 new_esEs25(EQ, GT) 35.72/17.92 new_esEs25(GT, EQ) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 35.72/17.92 new_esEs35(x0, x1, ty_Int) 35.72/17.92 new_compare28(EQ, EQ) 35.72/17.92 new_esEs32(x0, x1, ty_@0) 35.72/17.92 new_lt22(x0, x1, ty_Double) 35.72/17.92 new_primEqNat0(Succ(x0), Succ(x1)) 35.72/17.92 new_esEs10(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs7(x0, x1, ty_Ordering) 35.72/17.92 new_primCompAux1(x0, x1, x2, x3) 35.72/17.92 new_esEs40(x0, x1, ty_Integer) 35.72/17.92 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 35.72/17.92 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_lt5(x0, x1, ty_@0) 35.72/17.92 new_esEs11(x0, x1, ty_Ordering) 35.72/17.92 new_ltEs23(x0, x1, ty_Ordering) 35.72/17.92 new_ltEs10(GT, GT) 35.72/17.92 new_esEs19(Left(x0), Left(x1), ty_Char, x2) 35.72/17.92 new_ltEs7(x0, x1) 35.72/17.92 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs29(x0, x1, ty_Char) 35.72/17.92 new_ltEs12(Nothing, Nothing, x0) 35.72/17.92 new_compare210(x0, x1, True, x2, x3) 35.72/17.92 new_lt21(x0, x1, ty_Char) 35.72/17.92 new_esEs28(x0, x1, ty_Double) 35.72/17.92 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs7(x0, x1, ty_Double) 35.72/17.92 new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 35.72/17.92 new_ltEs24(x0, x1, ty_Char) 35.72/17.92 new_esEs40(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs27(x0, x1, ty_Integer) 35.72/17.92 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 35.72/17.92 new_mkBranch0(x0, x1, x2, x3, x4, x5, x6) 35.72/17.92 new_esEs29(x0, x1, ty_Ordering) 35.72/17.92 new_esEs32(x0, x1, ty_Bool) 35.72/17.92 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 35.72/17.92 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_lt9(x0, x1) 35.72/17.92 new_esEs5(x0, x1, ty_Double) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 35.72/17.92 new_ltEs19(x0, x1, ty_Int) 35.72/17.92 new_ltEs23(x0, x1, ty_Char) 35.72/17.92 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs11(x0, x1, ty_Float) 35.72/17.92 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs39(x0, x1, ty_Char) 35.72/17.92 new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs8(x0, x1, ty_Int) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 35.72/17.92 new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 35.72/17.92 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_lt13(x0, x1, x2) 35.72/17.92 new_lt24(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs36(x0, x1, ty_Float) 35.72/17.92 new_ltEs19(x0, x1, ty_Bool) 35.72/17.92 new_esEs27(x0, x1, ty_Float) 35.72/17.92 new_compare112(x0, x1, x2, x3, False, x4, x5, x6) 35.72/17.92 new_ltEs21(x0, x1, ty_Double) 35.72/17.92 new_esEs4(x0, x1, ty_Integer) 35.72/17.92 new_esEs24(Nothing, Nothing, x0) 35.72/17.92 new_lt21(x0, x1, ty_Ordering) 35.72/17.92 new_esEs27(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs31(x0, x1, ty_Double) 35.72/17.92 new_gt0(x0, x1) 35.72/17.92 new_esEs27(x0, x1, ty_Bool) 35.72/17.92 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs9(x0, x1, ty_Ordering) 35.72/17.92 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs6(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs32(x0, x1, ty_Integer) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 35.72/17.92 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 35.72/17.92 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 35.72/17.92 new_esEs30(x0, x1, ty_Double) 35.72/17.92 new_gt(x0, x1, ty_Int) 35.72/17.92 new_esEs33(x0, x1, ty_Char) 35.72/17.92 new_esEs19(Left(x0), Left(x1), ty_Float, x2) 35.72/17.92 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) 35.72/17.92 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 35.72/17.92 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 35.72/17.92 new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs4(x0, x1, ty_Ordering) 35.72/17.92 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs40(x0, x1, ty_Ordering) 35.72/17.92 new_asAs(False, x0) 35.72/17.92 new_compare17(x0, x1, ty_Int) 35.72/17.92 new_esEs11(x0, x1, ty_Char) 35.72/17.92 new_esEs8(x0, x1, ty_Bool) 35.72/17.92 new_gt(x0, x1, ty_Bool) 35.72/17.92 new_ltEs19(x0, x1, ty_Integer) 35.72/17.92 new_esEs6(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_ltEs18(x0, x1, ty_Ordering) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 35.72/17.92 new_lt20(x0, x1, ty_@0) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 35.72/17.92 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs31(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_compare17(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs30(x0, x1, ty_@0) 35.72/17.92 new_esEs27(x0, x1, ty_Int) 35.72/17.92 new_ltEs12(Just(x0), Just(x1), ty_@0) 35.72/17.92 new_lt8(x0, x1, x2, x3, x4) 35.72/17.92 new_lt4(x0, x1, x2, x3) 35.72/17.92 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs6(x0, x1, app(ty_[], x2)) 35.72/17.92 new_esEs21(:%(x0, x1), :%(x2, x3), x4) 35.72/17.92 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs7(x0, x1, ty_Bool) 35.72/17.92 new_ltEs20(x0, x1, app(ty_[], x2)) 35.72/17.92 new_lt6(x0, x1, ty_Int) 35.72/17.92 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs30(x0, x1, app(ty_[], x2)) 35.72/17.92 new_sr0(Integer(x0), Integer(x1)) 35.72/17.92 new_esEs30(x0, x1, ty_Char) 35.72/17.92 new_esEs4(x0, x1, ty_Bool) 35.72/17.92 new_esEs34(x0, x1, ty_Integer) 35.72/17.92 new_lt14(x0, x1, x2) 35.72/17.92 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 35.72/17.92 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 35.72/17.92 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs35(x0, x1, ty_Integer) 35.72/17.92 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_ltEs10(EQ, EQ) 35.72/17.92 new_compare9(@0, @0) 35.72/17.92 new_esEs29(x0, x1, app(ty_[], x2)) 35.72/17.92 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 35.72/17.92 new_esEs7(x0, x1, ty_Integer) 35.72/17.92 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_lt5(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_esEs7(x0, x1, app(ty_[], x2)) 35.72/17.92 new_lt16(x0, x1, x2) 35.72/17.92 new_asAs(True, x0) 35.72/17.92 new_esEs6(x0, x1, ty_@0) 35.72/17.92 new_esEs6(x0, x1, ty_Char) 35.72/17.92 new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 35.72/17.92 new_primMulNat0(Succ(x0), Zero) 35.72/17.92 new_esEs24(Just(x0), Just(x1), ty_Float) 35.72/17.92 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 35.72/17.92 new_esEs30(x0, x1, ty_Bool) 35.72/17.92 new_esEs19(Right(x0), Right(x1), x2, ty_Double) 35.72/17.92 new_esEs15(Char(x0), Char(x1)) 35.72/17.92 new_esEs32(x0, x1, app(ty_[], x2)) 35.72/17.92 new_esEs40(x0, x1, app(ty_[], x2)) 35.72/17.92 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_primPlusNat0(Zero, Zero) 35.72/17.92 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 35.72/17.92 new_ltEs21(x0, x1, app(ty_[], x2)) 35.72/17.92 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 35.72/17.92 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs6(x0, x1, ty_Int) 35.72/17.92 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_esEs25(EQ, EQ) 35.72/17.92 new_esEs10(x0, x1, ty_Integer) 35.72/17.92 new_lt24(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_not(True) 35.72/17.92 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_ltEs10(GT, LT) 35.72/17.92 new_ltEs10(LT, GT) 35.72/17.92 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_compare26(x0, x1, True, x2) 35.72/17.92 new_lt21(x0, x1, ty_Double) 35.72/17.92 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs40(x0, x1, ty_@0) 35.72/17.92 new_ltEs24(x0, x1, ty_Ordering) 35.72/17.92 new_esEs4(x0, x1, ty_Int) 35.72/17.92 new_lt11(x0, x1) 35.72/17.92 new_compare12(x0, x1, False, x2) 35.72/17.92 new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 35.72/17.92 new_esEs9(x0, x1, ty_Float) 35.72/17.92 new_esEs7(x0, x1, ty_Char) 35.72/17.92 new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) 35.72/17.92 new_esEs10(x0, x1, ty_Char) 35.72/17.92 new_esEs8(x0, x1, ty_Float) 35.72/17.92 new_ltEs22(x0, x1, ty_Double) 35.72/17.92 new_ltEs11(x0, x1, x2) 35.72/17.92 new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 35.72/17.92 new_ltEs19(x0, x1, ty_@0) 35.72/17.92 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.92 new_esEs36(x0, x1, ty_Ordering) 35.72/17.92 new_ltEs18(x0, x1, ty_Float) 35.72/17.92 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs10(x0, x1, ty_Int) 35.72/17.92 new_esEs25(LT, GT) 35.72/17.92 new_esEs25(GT, LT) 35.72/17.92 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_lt24(x0, x1, ty_Int) 35.72/17.92 new_pePe(False, x0) 35.72/17.92 new_esEs11(x0, x1, app(ty_Ratio, x2)) 35.72/17.92 new_esEs18(False, False) 35.72/17.92 new_lt23(x0, x1, ty_Double) 35.72/17.92 new_lt21(x0, x1, ty_Int) 35.72/17.92 new_lt24(x0, x1, ty_Bool) 35.72/17.92 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 35.72/17.92 new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) 35.72/17.92 new_compare28(GT, EQ) 35.72/17.92 new_compare28(EQ, GT) 35.72/17.92 new_lt6(x0, x1, ty_Char) 35.72/17.92 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 35.72/17.92 new_esEs30(x0, x1, ty_Integer) 35.72/17.92 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) 35.72/17.92 new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.92 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.92 new_lt23(x0, x1, ty_Char) 35.72/17.93 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs10(x0, x1, ty_Double) 35.72/17.93 new_mkBalBranch6MkBalBranch01(x0, x1, x2, EmptyFM, x3, x4, x5, x6, False, x7, x8) 35.72/17.93 new_ltEs20(x0, x1, ty_Float) 35.72/17.93 new_lt24(x0, x1, ty_Char) 35.72/17.93 new_esEs4(x0, x1, ty_Double) 35.72/17.93 new_mkBalBranch6MkBalBranch3(x0, x1, x2, EmptyFM, True, x3, x4) 35.72/17.93 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs31(x0, x1, ty_Ordering) 35.72/17.93 new_lt6(x0, x1, ty_Double) 35.72/17.93 new_compare17(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_lt24(x0, x1, ty_Double) 35.72/17.93 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 35.72/17.93 new_lt23(x0, x1, ty_Int) 35.72/17.93 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_lt20(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs4(x0, x1, ty_Char) 35.72/17.93 new_esEs10(x0, x1, ty_Bool) 35.72/17.93 new_gt(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_ltEs18(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs37(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 35.72/17.93 new_gt(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_gt(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs8(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs38(x0, x1, ty_Ordering) 35.72/17.93 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 35.72/17.93 new_lt20(x0, x1, ty_Int) 35.72/17.93 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs37(x0, x1, ty_Int) 35.72/17.93 new_primMulNat0(Zero, Succ(x0)) 35.72/17.93 new_esEs4(x0, x1, ty_Float) 35.72/17.93 new_esEs7(x0, x1, ty_Float) 35.72/17.93 new_lt20(x0, x1, ty_Char) 35.72/17.93 new_compare15(Nothing, Just(x0), x1) 35.72/17.93 new_lt23(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 35.72/17.93 new_lt21(x0, x1, app(ty_[], x2)) 35.72/17.93 new_lt18(x0, x1) 35.72/17.93 new_esEs10(x0, x1, app(ty_[], x2)) 35.72/17.93 new_compare3([], [], x0) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, ty_Bool) 35.72/17.93 new_esEs6(x0, x1, ty_Float) 35.72/17.93 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_compare15(Nothing, Nothing, x0) 35.72/17.93 new_esEs39(x0, x1, app(ty_[], x2)) 35.72/17.93 new_lt24(x0, x1, ty_Float) 35.72/17.93 new_compare27(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 35.72/17.93 new_compare27(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 35.72/17.93 new_esEs23(Integer(x0), Integer(x1)) 35.72/17.93 new_gt(x0, x1, ty_@0) 35.72/17.93 new_esEs19(Left(x0), Right(x1), x2, x3) 35.72/17.93 new_esEs19(Right(x0), Left(x1), x2, x3) 35.72/17.93 new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) 35.72/17.93 new_esEs29(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) 35.72/17.93 new_ltEs23(x0, x1, ty_Double) 35.72/17.93 new_esEs37(x0, x1, ty_Float) 35.72/17.93 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 35.72/17.93 new_lt23(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_lt6(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_primMinusNat0(Succ(x0), Zero) 35.72/17.93 new_esEs9(x0, x1, ty_Double) 35.72/17.93 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs33(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs7(x0, x1, ty_Int) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, ty_Char) 35.72/17.93 new_compare16(True, True) 35.72/17.93 new_esEs10(x0, x1, ty_Float) 35.72/17.93 new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) 35.72/17.93 new_lt24(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_primEqNat0(Zero, Zero) 35.72/17.93 new_ltEs22(x0, x1, ty_Ordering) 35.72/17.93 new_compare17(x0, x1, ty_Double) 35.72/17.93 new_esEs36(x0, x1, ty_Double) 35.72/17.93 new_not(False) 35.72/17.93 new_esEs27(x0, x1, ty_Double) 35.72/17.93 new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 35.72/17.93 new_esEs36(x0, x1, app(ty_[], x2)) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 35.72/17.93 new_lt5(x0, x1, ty_Char) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, ty_Int) 35.72/17.93 new_esEs30(x0, x1, ty_Float) 35.72/17.93 new_esEs9(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs8(x0, x1, ty_Double) 35.72/17.93 new_primPlusNat0(Zero, Succ(x0)) 35.72/17.93 new_esEs37(x0, x1, app(ty_[], x2)) 35.72/17.93 new_ltEs19(x0, x1, app(ty_[], x2)) 35.72/17.93 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 35.72/17.93 new_esEs29(x0, x1, ty_Double) 35.72/17.93 new_ltEs24(x0, x1, ty_Double) 35.72/17.93 new_lt22(x0, x1, app(ty_[], x2)) 35.72/17.93 new_lt22(x0, x1, ty_Ordering) 35.72/17.93 new_esEs6(x0, x1, ty_Integer) 35.72/17.93 new_compare6(Left(x0), Left(x1), x2, x3) 35.72/17.93 new_lt5(x0, x1, ty_Int) 35.72/17.93 new_lt6(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_compare17(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_lt20(x0, x1, ty_Float) 35.72/17.93 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs28(x0, x1, ty_Ordering) 35.72/17.93 new_esEs6(x0, x1, ty_Bool) 35.72/17.93 new_compare3(:(x0, x1), :(x2, x3), x4) 35.72/17.93 new_lt5(x0, x1, ty_Bool) 35.72/17.93 new_pePe(True, x0) 35.72/17.93 new_esEs41(LT) 35.72/17.93 new_esEs11(x0, x1, ty_Double) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, ty_Float) 35.72/17.93 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs33(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs24(Just(x0), Nothing, x1) 35.72/17.93 new_esEs30(x0, x1, ty_Int) 35.72/17.93 new_esEs24(Just(x0), Just(x1), ty_Double) 35.72/17.93 new_compare13(@2(x0, x1), @2(x2, x3), x4, x5) 35.72/17.93 new_esEs33(x0, x1, ty_@0) 35.72/17.93 new_esEs37(x0, x1, ty_Char) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 35.72/17.93 new_esEs26(LT) 35.72/17.93 new_primCompAux0(x0, EQ) 35.72/17.93 new_esEs39(x0, x1, ty_Bool) 35.72/17.93 new_esEs29(x0, x1, ty_Integer) 35.72/17.93 new_primMulInt(Pos(x0), Pos(x1)) 35.72/17.93 new_primMulInt(Pos(x0), Neg(x1)) 35.72/17.93 new_primMulInt(Neg(x0), Pos(x1)) 35.72/17.93 new_esEs27(x0, x1, ty_Char) 35.72/17.93 new_esEs33(x0, x1, ty_Float) 35.72/17.93 new_esEs38(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs24(Just(x0), Just(x1), ty_Int) 35.72/17.93 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs31(x0, x1, ty_Integer) 35.72/17.93 new_ltEs20(x0, x1, ty_Int) 35.72/17.93 new_lt15(x0, x1, x2, x3) 35.72/17.93 new_ltEs10(LT, LT) 35.72/17.93 new_lt23(x0, x1, ty_Float) 35.72/17.93 new_mkBalBranch6MkBalBranch3(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) 35.72/17.93 new_compare210(x0, x1, False, x2, x3) 35.72/17.93 new_lt20(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_primMinusNat0(Zero, Zero) 35.72/17.93 new_esEs9(x0, x1, ty_@0) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 35.72/17.93 new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4) 35.72/17.93 new_ltEs18(x0, x1, ty_Bool) 35.72/17.93 new_emptyFM(x0, x1) 35.72/17.93 new_esEs28(x0, x1, ty_Bool) 35.72/17.93 new_compare28(GT, GT) 35.72/17.93 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs39(x0, x1, ty_@0) 35.72/17.93 new_esEs29(x0, x1, ty_@0) 35.72/17.93 new_esEs31(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs9(x0, x1, ty_Int) 35.72/17.93 new_lt6(x0, x1, ty_Float) 35.72/17.93 new_lt6(x0, x1, app(ty_[], x2)) 35.72/17.93 new_primMulInt(Neg(x0), Neg(x1)) 35.72/17.93 new_esEs39(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_ltEs23(x0, x1, ty_Bool) 35.72/17.93 new_ltEs19(x0, x1, ty_Double) 35.72/17.93 new_esEs5(x0, x1, ty_Bool) 35.72/17.93 new_mkBalBranch(x0, x1, x2, x3, x4, x5) 35.72/17.93 new_compare110(x0, x1, False, x2, x3) 35.72/17.93 new_lt21(x0, x1, ty_Bool) 35.72/17.93 new_esEs5(x0, x1, ty_Integer) 35.72/17.93 new_sIZE_RATIO 35.72/17.93 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs30(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_lt10(x0, x1) 35.72/17.93 new_lt21(x0, x1, ty_Float) 35.72/17.93 new_ltEs15(True, True) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, ty_Integer) 35.72/17.93 new_esEs27(x0, x1, ty_Ordering) 35.72/17.93 new_compare17(x0, x1, ty_Ordering) 35.72/17.93 new_esEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 35.72/17.93 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 35.72/17.93 new_lt22(x0, x1, ty_Int) 35.72/17.93 new_esEs7(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_ltEs10(GT, EQ) 35.72/17.93 new_ltEs10(EQ, GT) 35.72/17.93 new_compare7(x0, x1) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 35.72/17.93 new_esEs39(x0, x1, ty_Integer) 35.72/17.93 new_ltEs18(x0, x1, ty_@0) 35.72/17.93 new_compare27(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 35.72/17.93 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs26(EQ) 35.72/17.93 new_lt22(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_lt20(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_ltEs24(x0, x1, ty_Integer) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 35.72/17.93 new_esEs25(GT, GT) 35.72/17.93 new_esEs22([], [], x0) 35.72/17.93 new_ltEs23(x0, x1, ty_@0) 35.72/17.93 new_primCompAux0(x0, LT) 35.72/17.93 new_primCmpNat0(Succ(x0), Succ(x1)) 35.72/17.93 new_esEs33(x0, x1, ty_Integer) 35.72/17.93 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_ltEs23(x0, x1, ty_Float) 35.72/17.93 new_esEs28(x0, x1, ty_@0) 35.72/17.93 new_lt21(x0, x1, ty_@0) 35.72/17.93 new_ltEs18(x0, x1, ty_Int) 35.72/17.93 new_primCmpNat0(Zero, Succ(x0)) 35.72/17.93 new_mkBranchResult(x0, x1, x2, x3, x4, x5) 35.72/17.93 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 35.72/17.93 new_esEs28(x0, x1, ty_Int) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 35.72/17.93 new_compare211(x0, x1, x2, x3, True, x4, x5) 35.72/17.93 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_compare25(x0, x1, True, x2, x3) 35.72/17.93 new_esEs41(GT) 35.72/17.93 new_esEs33(x0, x1, ty_Bool) 35.72/17.93 new_compare17(x0, x1, ty_Char) 35.72/17.93 new_esEs34(x0, x1, ty_Int) 35.72/17.93 new_addToFM_C0(EmptyFM, x0, x1, x2, x3) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 35.72/17.93 new_esEs22(:(x0, x1), :(x2, x3), x4) 35.72/17.93 new_esEs38(x0, x1, ty_Double) 35.72/17.93 new_ltEs20(x0, x1, ty_Bool) 35.72/17.93 new_ltEs10(EQ, LT) 35.72/17.93 new_esEs29(x0, x1, ty_Int) 35.72/17.93 new_ltEs10(LT, EQ) 35.72/17.93 new_lt6(x0, x1, ty_Bool) 35.72/17.93 new_lt23(x0, x1, ty_Integer) 35.72/17.93 new_primPlusInt(Neg(x0), Neg(x1)) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, ty_@0) 35.72/17.93 new_ltEs8(x0, x1) 35.72/17.93 new_ltEs12(Just(x0), Nothing, x1) 35.72/17.93 new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 35.72/17.93 new_esEs8(x0, x1, ty_Char) 35.72/17.93 new_ltEs23(x0, x1, ty_Int) 35.72/17.93 new_esEs39(x0, x1, ty_Float) 35.72/17.93 new_primPlusInt(Pos(x0), Neg(x1)) 35.72/17.93 new_primPlusInt(Neg(x0), Pos(x1)) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), ty_Double) 35.72/17.93 new_esEs11(x0, x1, ty_Int) 35.72/17.93 new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) 35.72/17.93 new_esEs18(False, True) 35.72/17.93 new_esEs18(True, False) 35.72/17.93 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_lt20(x0, x1, ty_Double) 35.72/17.93 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_lt6(x0, x1, ty_@0) 35.72/17.93 new_esEs39(x0, x1, ty_Int) 35.72/17.93 new_lt24(x0, x1, ty_Ordering) 35.72/17.93 new_esEs28(x0, x1, app(ty_[], x2)) 35.72/17.93 new_lt6(x0, x1, ty_Integer) 35.72/17.93 new_esEs7(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_lt23(x0, x1, ty_Bool) 35.72/17.93 new_esEs6(x0, x1, ty_Double) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 35.72/17.93 new_esEs29(x0, x1, ty_Float) 35.72/17.93 new_ltEs16(x0, x1) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 35.72/17.93 new_esEs10(x0, x1, ty_Ordering) 35.72/17.93 new_primMulNat0(Succ(x0), Succ(x1)) 35.72/17.93 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs4(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs24(Just(x0), Just(x1), ty_Integer) 35.72/17.93 new_esEs28(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs19(Left(x0), Left(x1), ty_Int, x2) 35.72/17.93 new_ltEs9(x0, x1) 35.72/17.93 new_ltEs19(x0, x1, ty_Char) 35.72/17.93 new_esEs8(x0, x1, ty_Ordering) 35.72/17.93 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, EmptyFM, False, x7, x8) 35.72/17.93 new_addToFM_C0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) 35.72/17.93 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_ltEs24(x0, x1, ty_Bool) 35.72/17.93 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 35.72/17.93 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 35.72/17.93 new_primCmpInt(Neg(Zero), Neg(Zero)) 35.72/17.93 new_compare10(x0, x1, x2, x3, True, x4, x5) 35.72/17.93 new_compare17(x0, x1, ty_Float) 35.72/17.93 new_lt24(x0, x1, ty_Integer) 35.72/17.93 new_compare28(LT, GT) 35.72/17.93 new_compare28(GT, LT) 35.72/17.93 new_ltEs19(x0, x1, ty_Ordering) 35.72/17.93 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 35.72/17.93 new_esEs31(x0, x1, ty_@0) 35.72/17.93 new_gt(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_primCmpInt(Pos(Zero), Neg(Zero)) 35.72/17.93 new_primCmpInt(Neg(Zero), Pos(Zero)) 35.72/17.93 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs5(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_ltEs17(x0, x1) 35.72/17.93 new_ltEs24(x0, x1, ty_Int) 35.72/17.93 new_esEs28(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_ltEs18(x0, x1, ty_Integer) 35.72/17.93 new_esEs31(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs9(x0, x1, ty_Bool) 35.72/17.93 new_esEs11(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_ltEs15(False, False) 35.72/17.93 new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) 35.72/17.93 new_esEs33(x0, x1, ty_Int) 35.72/17.93 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs29(x0, x1, ty_Bool) 35.72/17.93 new_compare16(True, False) 35.72/17.93 new_compare16(False, True) 35.72/17.93 new_ltEs20(x0, x1, ty_Integer) 35.72/17.93 new_compare27(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 35.72/17.93 new_esEs9(x0, x1, ty_Integer) 35.72/17.93 new_lt21(x0, x1, ty_Integer) 35.72/17.93 new_primCmpNat0(Succ(x0), Zero) 35.72/17.93 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 35.72/17.93 new_gt(x0, x1, ty_Char) 35.72/17.93 new_lt5(x0, x1, ty_Double) 35.72/17.93 new_lt23(x0, x1, ty_Ordering) 35.72/17.93 new_esEs32(x0, x1, ty_Ordering) 35.72/17.93 new_esEs5(x0, x1, ty_@0) 35.72/17.93 new_esEs22(:(x0, x1), [], x2) 35.72/17.93 new_compare12(x0, x1, True, x2) 35.72/17.93 new_esEs24(Just(x0), Just(x1), ty_Bool) 35.72/17.93 new_esEs11(x0, x1, ty_Bool) 35.72/17.93 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_ltEs24(x0, x1, ty_Float) 35.72/17.93 new_ltEs21(x0, x1, ty_@0) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 35.72/17.93 new_ltEs24(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_ltEs23(x0, x1, ty_Integer) 35.72/17.93 new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) 35.72/17.93 new_esEs37(x0, x1, ty_Double) 35.72/17.93 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs8(x0, x1, ty_Integer) 35.72/17.93 new_esEs8(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs38(x0, x1, ty_Bool) 35.72/17.93 new_esEs36(x0, x1, ty_Char) 35.72/17.93 new_esEs5(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs10(x0, x1, ty_@0) 35.72/17.93 new_lt24(x0, x1, ty_@0) 35.72/17.93 new_primMulNat0(Zero, Zero) 35.72/17.93 new_esEs38(x0, x1, ty_@0) 35.72/17.93 new_esEs33(x0, x1, app(ty_[], x2)) 35.72/17.93 new_ltEs22(x0, x1, ty_Char) 35.72/17.93 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs4(x0, x1, ty_@0) 35.72/17.93 new_esEs40(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_lt6(x0, x1, ty_Ordering) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 35.72/17.93 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 35.72/17.93 new_esEs36(x0, x1, ty_Int) 35.72/17.93 new_esEs33(x0, x1, ty_Double) 35.72/17.93 new_esEs19(Left(x0), Left(x1), ty_Integer, x2) 35.72/17.93 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_lt24(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) 35.72/17.93 new_lt5(x0, x1, ty_Ordering) 35.72/17.93 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) 35.72/17.93 new_lt22(x0, x1, ty_Integer) 35.72/17.93 new_esEs11(x0, x1, ty_@0) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 35.72/17.93 new_lt21(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_compare8(Integer(x0), Integer(x1)) 35.72/17.93 new_lt22(x0, x1, ty_Float) 35.72/17.93 new_esEs7(x0, x1, ty_@0) 35.72/17.93 new_esEs38(x0, x1, ty_Integer) 35.72/17.93 new_esEs8(x0, x1, ty_@0) 35.72/17.93 new_esEs11(x0, x1, ty_Integer) 35.72/17.93 new_esEs10(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_compare17(x0, x1, ty_Bool) 35.72/17.93 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_compare112(x0, x1, x2, x3, True, x4, x5, x6) 35.72/17.93 new_ltEs19(x0, x1, ty_Float) 35.72/17.93 new_esEs36(x0, x1, ty_Bool) 35.72/17.93 new_esEs32(x0, x1, ty_Int) 35.72/17.93 new_compare15(Just(x0), Just(x1), x2) 35.72/17.93 new_ltEs22(x0, x1, ty_Bool) 35.72/17.93 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs26(GT) 35.72/17.93 new_lt22(x0, x1, ty_Bool) 35.72/17.93 new_ltEs12(Nothing, Just(x0), x1) 35.72/17.93 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_compare30(Char(x0), Char(x1)) 35.72/17.93 new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 35.72/17.93 new_compare14(x0, x1, True, x2, x3) 35.72/17.93 new_gt(x0, x1, ty_Ordering) 35.72/17.93 new_sr(x0, x1) 35.72/17.93 new_esEs19(Left(x0), Left(x1), ty_Bool, x2) 35.72/17.93 new_compare17(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs32(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_compare26(x0, x1, False, x2) 35.72/17.93 new_esEs40(x0, x1, ty_Bool) 35.72/17.93 new_lt22(x0, x1, ty_@0) 35.72/17.93 new_esEs30(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs32(x0, x1, ty_Double) 35.72/17.93 new_esEs32(x0, x1, ty_Char) 35.72/17.93 new_lt23(x0, x1, ty_@0) 35.72/17.93 new_ltEs22(x0, x1, ty_Int) 35.72/17.93 new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs28(x0, x1, ty_Float) 35.72/17.93 new_lt5(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_primEqNat0(Succ(x0), Zero) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 35.72/17.93 new_esEs5(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs8(x0, x1, app(ty_[], x2)) 35.72/17.93 new_compare29(:%(x0, x1), :%(x2, x3), ty_Integer) 35.72/17.93 new_esEs13(x0, x1) 35.72/17.93 new_ltEs23(x0, x1, app(ty_[], x2)) 35.72/17.93 new_ltEs14(x0, x1, x2) 35.72/17.93 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 35.72/17.93 new_esEs24(Nothing, Just(x0), x1) 35.72/17.93 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs37(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_ltEs22(x0, x1, ty_@0) 35.72/17.93 new_esEs40(x0, x1, ty_Int) 35.72/17.93 new_compare17(x0, x1, ty_Integer) 35.72/17.93 new_lt20(x0, x1, ty_Ordering) 35.72/17.93 new_esEs27(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs4(x0, x1, app(ty_[], x2)) 35.72/17.93 new_lt7(x0, x1) 35.72/17.93 new_esEs40(x0, x1, ty_Double) 35.72/17.93 new_esEs33(x0, x1, ty_Ordering) 35.72/17.93 new_primPlusNat0(Succ(x0), Succ(x1)) 35.72/17.93 new_esEs27(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs40(x0, x1, ty_Char) 35.72/17.93 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs36(x0, x1, ty_Integer) 35.72/17.93 new_primCompAux0(x0, GT) 35.72/17.93 new_mkBalBranch6MkBalBranch4(EmptyFM, x0, x1, x2, True, x3, x4) 35.72/17.93 new_primCmpInt(Pos(Zero), Pos(Zero)) 35.72/17.93 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs38(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs11(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs30(x0, x1, ty_Ordering) 35.72/17.93 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 35.72/17.93 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 35.72/17.93 new_esEs38(x0, x1, ty_Float) 35.72/17.93 new_esEs31(x0, x1, ty_Char) 35.72/17.93 new_ltEs4(x0, x1) 35.72/17.93 new_esEs14(@0, @0) 35.72/17.93 new_lt19(x0, x1) 35.72/17.93 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 35.72/17.93 new_primPlusInt(Pos(x0), Pos(x1)) 35.72/17.93 new_esEs39(x0, x1, ty_Ordering) 35.72/17.93 new_esEs36(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs39(x0, x1, ty_Double) 35.72/17.93 new_compare3(:(x0, x1), [], x2) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), ty_Float) 35.72/17.93 new_compare28(LT, LT) 35.72/17.93 new_ltEs21(x0, x1, ty_Integer) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 35.72/17.93 new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) 35.72/17.93 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 35.72/17.93 new_esEs37(x0, x1, ty_Ordering) 35.72/17.93 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_ltEs20(x0, x1, ty_@0) 35.72/17.93 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_primPlusNat0(Succ(x0), Zero) 35.72/17.93 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs6(x0, x1, ty_Ordering) 35.72/17.93 new_compare16(False, False) 35.72/17.93 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs4(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_lt17(x0, x1) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 35.72/17.93 new_compare6(Left(x0), Right(x1), x2, x3) 35.72/17.93 new_compare6(Right(x0), Left(x1), x2, x3) 35.72/17.93 new_esEs9(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_lt23(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs41(EQ) 35.72/17.93 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_mkBranch(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) 35.72/17.93 new_esEs28(x0, x1, ty_Integer) 35.72/17.93 new_ltEs21(x0, x1, ty_Float) 35.72/17.93 new_primMinusNat0(Zero, Succ(x0)) 35.72/17.93 new_esEs24(Just(x0), Just(x1), ty_@0) 35.72/17.93 new_esEs5(x0, x1, ty_Int) 35.72/17.93 new_ltEs21(x0, x1, ty_Bool) 35.72/17.93 new_compare17(x0, x1, ty_@0) 35.72/17.93 new_esEs19(Left(x0), Left(x1), ty_@0, x2) 35.72/17.93 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 35.72/17.93 new_esEs27(x0, x1, ty_@0) 35.72/17.93 new_ltEs13(@2(x0, x1), @2(x2, x3), x4, x5) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 35.72/17.93 new_esEs38(x0, x1, ty_Char) 35.72/17.93 new_esEs5(x0, x1, ty_Char) 35.72/17.93 new_ltEs5(Left(x0), Right(x1), x2, x3) 35.72/17.93 new_ltEs5(Right(x0), Left(x1), x2, x3) 35.72/17.93 new_esEs31(x0, x1, ty_Bool) 35.72/17.93 new_compare29(:%(x0, x1), :%(x2, x3), ty_Int) 35.72/17.93 new_lt21(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs31(x0, x1, ty_Float) 35.72/17.93 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs36(x0, x1, ty_@0) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), ty_Char) 35.72/17.93 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs36(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_lt22(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_gt(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs38(x0, x1, ty_Int) 35.72/17.93 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 35.72/17.93 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 35.72/17.93 new_esEs9(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_gt(x0, x1, ty_Double) 35.72/17.93 new_ltEs22(x0, x1, ty_Integer) 35.72/17.93 new_compare15(Just(x0), Nothing, x1) 35.72/17.93 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 35.72/17.93 new_ltEs21(x0, x1, ty_Int) 35.72/17.93 new_ltEs22(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs39(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_compare17(x0, x1, app(ty_[], x2)) 35.72/17.93 new_ltEs24(x0, x1, ty_@0) 35.72/17.93 new_compare3([], :(x0, x1), x2) 35.72/17.93 new_esEs22([], :(x0, x1), x2) 35.72/17.93 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), ty_Int) 35.72/17.93 new_lt12(x0, x1) 35.72/17.93 new_compare14(x0, x1, False, x2, x3) 35.72/17.93 new_compare18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 35.72/17.93 new_esEs5(x0, x1, ty_Float) 35.72/17.93 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_primCmpNat0(Zero, Zero) 35.72/17.93 new_esEs31(x0, x1, ty_Int) 35.72/17.93 35.72/17.93 We have to consider all minimal (P,Q,R)-chains. 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (24) QDPSizeChangeProof (EQUIVALENT) 35.72/17.93 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. 35.72/17.93 35.72/17.93 From the DPs we obtained the following set of size-change graphs: 35.72/17.93 *new_foldl(xuu6, :(xuu3110, xuu3111), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba), xuu3111, h, ba) 35.72/17.93 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 35.72/17.93 35.72/17.93 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (25) 35.72/17.93 YES 35.72/17.93 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (26) 35.72/17.93 Obligation: 35.72/17.93 Q DP problem: 35.72/17.93 The TRS P consists of the following rules: 35.72/17.93 35.72/17.93 new_addToFM_C1(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bb, bc) -> new_addToFM_C(xuu38, xuu39, xuu40, bb, bc) 35.72/17.93 new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba) -> new_addToFM_C(xuu20, xuu22, xuu23, h, ba) 35.72/17.93 new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, h, ba) -> new_addToFM_C1(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_gt(xuu22, xuu17, h), h, ba) 35.72/17.93 new_addToFM_C(Branch(xuu60, xuu61, xuu62, xuu63, xuu64), xuu31100, xuu31101, bd, be) -> new_addToFM_C2(xuu60, xuu61, xuu62, xuu63, xuu64, xuu31100, xuu31101, new_lt24(xuu31100, xuu60, bd), bd, be) 35.72/17.93 35.72/17.93 The TRS R consists of the following rules: 35.72/17.93 35.72/17.93 new_esEs30(xuu112, xuu115, ty_Ordering) -> new_esEs25(xuu112, xuu115) 35.72/17.93 new_ltEs20(xuu60, xuu61, app(ty_[], cff)) -> new_ltEs11(xuu60, xuu61, cff) 35.72/17.93 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 35.72/17.93 new_primPlusNat0(Zero, Zero) -> Zero 35.72/17.93 new_lt23(xuu530, xuu540, ty_Integer) -> new_lt10(xuu530, xuu540) 35.72/17.93 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.93 new_pePe(True, xuu214) -> True 35.72/17.93 new_ltEs19(xuu113, xuu116, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs6(xuu113, xuu116, bhb, bhc, bhd) 35.72/17.93 new_esEs8(xuu311002, xuu602, app(ty_[], dga)) -> new_esEs22(xuu311002, xuu602, dga) 35.72/17.93 new_esEs20(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs13(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 35.72/17.93 new_esEs33(xuu3110002, xuu6002, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs17(xuu3110002, xuu6002, cdd, cde, cdf) 35.72/17.93 new_esEs30(xuu112, xuu115, ty_Double) -> new_esEs20(xuu112, xuu115) 35.72/17.93 new_esEs18(True, True) -> True 35.72/17.93 new_esEs36(xuu124, xuu126, ty_Integer) -> new_esEs23(xuu124, xuu126) 35.72/17.93 new_lt6(xuu531, xuu541, app(app(ty_Either, bbe), bbf)) -> new_lt4(xuu531, xuu541, bbe, bbf) 35.72/17.93 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 35.72/17.93 new_ltEs5(Right(xuu530), Right(xuu540), ge, ty_Integer) -> new_ltEs8(xuu530, xuu540) 35.72/17.93 new_compare28(LT, LT) -> EQ 35.72/17.93 new_esEs29(xuu111, xuu114, app(ty_[], bfa)) -> new_esEs22(xuu111, xuu114, bfa) 35.72/17.93 new_gt(xuu22, xuu17, app(ty_Ratio, dhd)) -> new_esEs41(new_compare29(xuu22, xuu17, dhd)) 35.72/17.93 new_esEs5(xuu311000, xuu600, app(ty_Ratio, ehh)) -> new_esEs21(xuu311000, xuu600, ehh) 35.72/17.93 new_compare17(xuu311000, xuu600, ty_Float) -> new_compare27(xuu311000, xuu600) 35.72/17.93 new_lt20(xuu111, xuu114, ty_Double) -> new_lt9(xuu111, xuu114) 35.72/17.93 new_esEs11(xuu311001, xuu601, ty_@0) -> new_esEs14(xuu311001, xuu601) 35.72/17.93 new_lt6(xuu531, xuu541, ty_Char) -> new_lt18(xuu531, xuu541) 35.72/17.93 new_esEs10(xuu311000, xuu600, ty_Int) -> new_esEs13(xuu311000, xuu600) 35.72/17.93 new_ltEs10(GT, LT) -> False 35.72/17.93 new_esEs6(xuu311000, xuu600, app(app(ty_@2, dce), dcf)) -> new_esEs16(xuu311000, xuu600, dce, dcf) 35.72/17.93 new_esEs36(xuu124, xuu126, ty_@0) -> new_esEs14(xuu124, xuu126) 35.72/17.93 new_esEs36(xuu124, xuu126, app(ty_Ratio, ebd)) -> new_esEs21(xuu124, xuu126, ebd) 35.72/17.93 new_esEs40(xuu3110001, xuu6001, ty_Float) -> new_esEs12(xuu3110001, xuu6001) 35.72/17.93 new_ltEs5(Left(xuu530), Right(xuu540), ge, fc) -> True 35.72/17.93 new_compare3([], [], chh) -> EQ 35.72/17.93 new_ltEs5(Left(xuu530), Left(xuu540), app(ty_Ratio, gd), fc) -> new_ltEs14(xuu530, xuu540, gd) 35.72/17.93 new_esEs32(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 35.72/17.93 new_ltEs10(EQ, LT) -> False 35.72/17.93 new_lt20(xuu111, xuu114, app(ty_[], bfa)) -> new_lt13(xuu111, xuu114, bfa) 35.72/17.93 new_esEs27(xuu530, xuu540, app(app(ty_@2, bbb), bbc)) -> new_esEs16(xuu530, xuu540, bbb, bbc) 35.72/17.93 new_ltEs20(xuu60, xuu61, ty_Int) -> new_ltEs4(xuu60, xuu61) 35.72/17.93 new_ltEs18(xuu532, xuu542, ty_@0) -> new_ltEs17(xuu532, xuu542) 35.72/17.93 new_lt6(xuu531, xuu541, app(ty_Maybe, bcc)) -> new_lt14(xuu531, xuu541, bcc) 35.72/17.93 new_esEs35(xuu3110001, xuu6001, ty_Int) -> new_esEs13(xuu3110001, xuu6001) 35.72/17.93 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.93 new_ltEs23(xuu531, xuu541, app(app(ty_Either, efd), efe)) -> new_ltEs5(xuu531, xuu541, efd, efe) 35.72/17.93 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 35.72/17.93 new_lt5(xuu530, xuu540, ty_Float) -> new_lt11(xuu530, xuu540) 35.72/17.93 new_primCompAux0(xuu81, LT) -> LT 35.72/17.93 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Bool, cb) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.93 new_gt(xuu22, xuu17, ty_Char) -> new_esEs41(new_compare30(xuu22, xuu17)) 35.72/17.93 new_compare16(False, False) -> EQ 35.72/17.93 new_ltEs9(xuu53, xuu54) -> new_fsEs(new_compare27(xuu53, xuu54)) 35.72/17.93 new_not(True) -> False 35.72/17.93 new_esEs28(xuu531, xuu541, ty_Float) -> new_esEs12(xuu531, xuu541) 35.72/17.93 new_esEs37(xuu3110000, xuu6000, ty_Bool) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.93 new_fsEs(xuu209) -> new_not(new_esEs25(xuu209, GT)) 35.72/17.93 new_esEs7(xuu311001, xuu601, ty_Float) -> new_esEs12(xuu311001, xuu601) 35.72/17.93 new_esEs7(xuu311001, xuu601, ty_Double) -> new_esEs20(xuu311001, xuu601) 35.72/17.93 new_lt22(xuu124, xuu126, ty_Ordering) -> new_lt12(xuu124, xuu126) 35.72/17.93 new_esEs10(xuu311000, xuu600, ty_Double) -> new_esEs20(xuu311000, xuu600) 35.72/17.93 new_esEs38(xuu530, xuu540, app(app(app(ty_@3, eed), eee), eef)) -> new_esEs17(xuu530, xuu540, eed, eee, eef) 35.72/17.93 new_esEs28(xuu531, xuu541, ty_Ordering) -> new_esEs25(xuu531, xuu541) 35.72/17.93 new_ltEs22(xuu125, xuu127, ty_Bool) -> new_ltEs15(xuu125, xuu127) 35.72/17.93 new_ltEs5(Left(xuu530), Left(xuu540), app(ty_Maybe, ga), fc) -> new_ltEs12(xuu530, xuu540, ga) 35.72/17.93 new_esEs5(xuu311000, xuu600, ty_Integer) -> new_esEs23(xuu311000, xuu600) 35.72/17.93 new_compare17(xuu311000, xuu600, ty_Bool) -> new_compare16(xuu311000, xuu600) 35.72/17.93 new_esEs10(xuu311000, xuu600, ty_Ordering) -> new_esEs25(xuu311000, xuu600) 35.72/17.93 new_lt6(xuu531, xuu541, app(ty_Ratio, bcf)) -> new_lt16(xuu531, xuu541, bcf) 35.72/17.93 new_primEqNat0(Succ(xuu31100000), Zero) -> False 35.72/17.93 new_primEqNat0(Zero, Succ(xuu60000)) -> False 35.72/17.93 new_esEs14(@0, @0) -> True 35.72/17.93 new_esEs39(xuu3110000, xuu6000, app(ty_Maybe, fge)) -> new_esEs24(xuu3110000, xuu6000, fge) 35.72/17.93 new_ltEs22(xuu125, xuu127, ty_Ordering) -> new_ltEs10(xuu125, xuu127) 35.72/17.93 new_esEs31(xuu3110000, xuu6000, app(ty_[], cbf)) -> new_esEs22(xuu3110000, xuu6000, cbf) 35.72/17.93 new_ltEs18(xuu532, xuu542, app(ty_[], bdd)) -> new_ltEs11(xuu532, xuu542, bdd) 35.72/17.93 new_ltEs22(xuu125, xuu127, ty_Integer) -> new_ltEs8(xuu125, xuu127) 35.72/17.93 new_esEs6(xuu311000, xuu600, ty_Char) -> new_esEs15(xuu311000, xuu600) 35.72/17.93 new_lt5(xuu530, xuu540, app(app(app(ty_@3, bae), baf), bag)) -> new_lt8(xuu530, xuu540, bae, baf, bag) 35.72/17.93 new_ltEs22(xuu125, xuu127, app(app(ty_@2, ecd), ece)) -> new_ltEs13(xuu125, xuu127, ecd, ece) 35.72/17.93 new_ltEs5(Left(xuu530), Left(xuu540), app(app(ty_Either, fa), fb), fc) -> new_ltEs5(xuu530, xuu540, fa, fb) 35.72/17.93 new_esEs31(xuu3110000, xuu6000, app(ty_Ratio, cbe)) -> new_esEs21(xuu3110000, xuu6000, cbe) 35.72/17.93 new_esEs37(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.93 new_esEs33(xuu3110002, xuu6002, ty_Float) -> new_esEs12(xuu3110002, xuu6002) 35.72/17.93 new_esEs38(xuu530, xuu540, ty_Float) -> new_esEs12(xuu530, xuu540) 35.72/17.93 new_gt0(xuu22, xuu17) -> new_esEs41(new_compare7(xuu22, xuu17)) 35.72/17.93 new_lt20(xuu111, xuu114, ty_@0) -> new_lt19(xuu111, xuu114) 35.72/17.93 new_primCmpInt(Pos(Succ(xuu3110000)), Neg(xuu600)) -> GT 35.72/17.93 new_esEs11(xuu311001, xuu601, ty_Integer) -> new_esEs23(xuu311001, xuu601) 35.72/17.93 new_ltEs12(Just(xuu530), Just(xuu540), ty_Double) -> new_ltEs7(xuu530, xuu540) 35.72/17.93 new_ltEs10(GT, EQ) -> False 35.72/17.93 new_gt(xuu22, xuu17, ty_Bool) -> new_esEs41(new_compare16(xuu22, xuu17)) 35.72/17.93 new_lt9(xuu31100, xuu60) -> new_esEs26(new_compare19(xuu31100, xuu60)) 35.72/17.93 new_esEs5(xuu311000, xuu600, app(app(ty_Either, ehf), ehg)) -> new_esEs19(xuu311000, xuu600, ehf, ehg) 35.72/17.93 new_ltEs18(xuu532, xuu542, ty_Int) -> new_ltEs4(xuu532, xuu542) 35.72/17.93 new_lt5(xuu530, xuu540, ty_Int) -> new_lt7(xuu530, xuu540) 35.72/17.93 new_ltEs5(Right(xuu530), Right(xuu540), ge, ty_Float) -> new_ltEs9(xuu530, xuu540) 35.72/17.93 new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_[], dd), cb) -> new_esEs22(xuu3110000, xuu6000, dd) 35.72/17.93 new_primCmpNat0(Zero, Succ(xuu6000)) -> LT 35.72/17.93 new_ltEs20(xuu60, xuu61, ty_@0) -> new_ltEs17(xuu60, xuu61) 35.72/17.93 new_esEs4(xuu311000, xuu600, ty_Ordering) -> new_esEs25(xuu311000, xuu600) 35.72/17.93 new_esEs40(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) 35.72/17.93 new_esEs27(xuu530, xuu540, ty_Bool) -> new_esEs18(xuu530, xuu540) 35.72/17.93 new_lt22(xuu124, xuu126, ty_Bool) -> new_lt17(xuu124, xuu126) 35.72/17.93 new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, dc), cb) -> new_esEs21(xuu3110000, xuu6000, dc) 35.72/17.93 new_esEs29(xuu111, xuu114, ty_Integer) -> new_esEs23(xuu111, xuu114) 35.72/17.93 new_ltEs21(xuu53, xuu54, ty_Double) -> new_ltEs7(xuu53, xuu54) 35.72/17.93 new_ltEs5(Left(xuu530), Left(xuu540), ty_Ordering, fc) -> new_ltEs10(xuu530, xuu540) 35.72/17.93 new_esEs32(xuu3110001, xuu6001, ty_Int) -> new_esEs13(xuu3110001, xuu6001) 35.72/17.93 new_compare3([], :(xuu600, xuu601), chh) -> LT 35.72/17.93 new_esEs33(xuu3110002, xuu6002, app(ty_Ratio, cea)) -> new_esEs21(xuu3110002, xuu6002, cea) 35.72/17.93 new_esEs40(xuu3110001, xuu6001, app(app(app(ty_@3, fgh), fha), fhb)) -> new_esEs17(xuu3110001, xuu6001, fgh, fha, fhb) 35.72/17.93 new_ltEs5(Right(xuu530), Right(xuu540), ge, ty_Bool) -> new_ltEs15(xuu530, xuu540) 35.72/17.93 new_ltEs5(Left(xuu530), Left(xuu540), ty_Float, fc) -> new_ltEs9(xuu530, xuu540) 35.72/17.93 new_esEs38(xuu530, xuu540, ty_Double) -> new_esEs20(xuu530, xuu540) 35.72/17.93 new_esEs8(xuu311002, xuu602, app(ty_Maybe, dgb)) -> new_esEs24(xuu311002, xuu602, dgb) 35.72/17.93 new_ltEs5(Right(xuu530), Right(xuu540), ge, app(ty_[], hc)) -> new_ltEs11(xuu530, xuu540, hc) 35.72/17.93 new_esEs29(xuu111, xuu114, app(ty_Maybe, bfb)) -> new_esEs24(xuu111, xuu114, bfb) 35.72/17.93 new_esEs32(xuu3110001, xuu6001, ty_Bool) -> new_esEs18(xuu3110001, xuu6001) 35.72/17.93 new_esEs8(xuu311002, xuu602, app(ty_Ratio, dfh)) -> new_esEs21(xuu311002, xuu602, dfh) 35.72/17.93 new_compare6(Left(xuu311000), Right(xuu600), bf, bg) -> LT 35.72/17.93 new_ltEs22(xuu125, xuu127, ty_Char) -> new_ltEs16(xuu125, xuu127) 35.72/17.93 new_esEs5(xuu311000, xuu600, app(app(app(ty_@3, ehc), ehd), ehe)) -> new_esEs17(xuu311000, xuu600, ehc, ehd, ehe) 35.72/17.93 new_esEs9(xuu311000, xuu600, app(app(ty_@2, cgd), cge)) -> new_esEs16(xuu311000, xuu600, cgd, cge) 35.72/17.93 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Char, cb) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.93 new_lt24(xuu31100, xuu60, ty_Char) -> new_lt18(xuu31100, xuu60) 35.72/17.93 new_lt21(xuu112, xuu115, ty_Int) -> new_lt7(xuu112, xuu115) 35.72/17.93 new_esEs6(xuu311000, xuu600, app(ty_Maybe, ddf)) -> new_esEs24(xuu311000, xuu600, ddf) 35.72/17.93 new_esEs31(xuu3110000, xuu6000, app(app(ty_Either, cbc), cbd)) -> new_esEs19(xuu3110000, xuu6000, cbc, cbd) 35.72/17.93 new_ltEs20(xuu60, xuu61, ty_Bool) -> new_ltEs15(xuu60, xuu61) 35.72/17.93 new_lt24(xuu31100, xuu60, app(ty_Maybe, cgc)) -> new_lt14(xuu31100, xuu60, cgc) 35.72/17.93 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 35.72/17.93 new_esEs31(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.93 new_esEs33(xuu3110002, xuu6002, ty_Ordering) -> new_esEs25(xuu3110002, xuu6002) 35.72/17.93 new_primCmpInt(Neg(Zero), Pos(Succ(xuu6000))) -> LT 35.72/17.93 new_lt23(xuu530, xuu540, app(ty_[], eeg)) -> new_lt13(xuu530, xuu540, eeg) 35.72/17.93 new_primMulInt(Pos(xuu3110000), Pos(xuu6010)) -> Pos(new_primMulNat0(xuu3110000, xuu6010)) 35.72/17.93 new_ltEs6(@3(xuu530, xuu531, xuu532), @3(xuu540, xuu541, xuu542), hh, baa, bab) -> new_pePe(new_lt5(xuu530, xuu540, hh), new_asAs(new_esEs27(xuu530, xuu540, hh), new_pePe(new_lt6(xuu531, xuu541, baa), new_asAs(new_esEs28(xuu531, xuu541, baa), new_ltEs18(xuu532, xuu542, bab))))) 35.72/17.93 new_lt24(xuu31100, xuu60, app(app(ty_Either, bf), bg)) -> new_lt4(xuu31100, xuu60, bf, bg) 35.72/17.93 new_esEs28(xuu531, xuu541, ty_Double) -> new_esEs20(xuu531, xuu541) 35.72/17.93 new_esEs11(xuu311001, xuu601, app(app(ty_Either, fcb), fcc)) -> new_esEs19(xuu311001, xuu601, fcb, fcc) 35.72/17.93 new_compare12(xuu168, xuu169, False, cab) -> GT 35.72/17.93 new_esEs24(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, gad), gae), gaf)) -> new_esEs17(xuu3110000, xuu6000, gad, gae, gaf) 35.72/17.93 new_primMulNat0(Succ(xuu31100000), Zero) -> Zero 35.72/17.93 new_primMulNat0(Zero, Succ(xuu60100)) -> Zero 35.72/17.93 new_ltEs23(xuu531, xuu541, ty_Int) -> new_ltEs4(xuu531, xuu541) 35.72/17.93 new_esEs4(xuu311000, xuu600, ty_Double) -> new_esEs20(xuu311000, xuu600) 35.72/17.93 new_esEs19(Right(xuu3110000), Right(xuu6000), df, ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.93 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.93 new_esEs28(xuu531, xuu541, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs17(xuu531, xuu541, bbg, bbh, bca) 35.72/17.93 new_esEs7(xuu311001, xuu601, app(app(app(ty_@3, dea), deb), dec)) -> new_esEs17(xuu311001, xuu601, dea, deb, dec) 35.72/17.93 new_compare16(True, False) -> GT 35.72/17.93 new_compare26(xuu87, xuu88, True, fcg) -> EQ 35.72/17.93 new_esEs8(xuu311002, xuu602, ty_Integer) -> new_esEs23(xuu311002, xuu602) 35.72/17.93 new_lt23(xuu530, xuu540, ty_Float) -> new_lt11(xuu530, xuu540) 35.72/17.93 new_lt12(xuu31100, xuu60) -> new_esEs26(new_compare28(xuu31100, xuu60)) 35.72/17.93 new_lt18(xuu31100, xuu60) -> new_esEs26(new_compare30(xuu31100, xuu60)) 35.72/17.93 new_compare26(xuu87, xuu88, False, fcg) -> new_compare12(xuu87, xuu88, new_ltEs24(xuu87, xuu88, fcg), fcg) 35.72/17.93 new_primPlusNat0(Succ(xuu42200), Zero) -> Succ(xuu42200) 35.72/17.93 new_primPlusNat0(Zero, Succ(xuu13700)) -> Succ(xuu13700) 35.72/17.93 new_lt22(xuu124, xuu126, app(ty_Maybe, eba)) -> new_lt14(xuu124, xuu126, eba) 35.72/17.93 new_ltEs19(xuu113, xuu116, ty_Double) -> new_ltEs7(xuu113, xuu116) 35.72/17.93 new_ltEs22(xuu125, xuu127, ty_Float) -> new_ltEs9(xuu125, xuu127) 35.72/17.93 new_lt4(xuu31100, xuu60, bf, bg) -> new_esEs26(new_compare6(xuu31100, xuu60, bf, bg)) 35.72/17.93 new_ltEs5(Right(xuu530), Right(xuu540), ge, ty_Char) -> new_ltEs16(xuu530, xuu540) 35.72/17.93 new_lt23(xuu530, xuu540, ty_Int) -> new_lt7(xuu530, xuu540) 35.72/17.93 new_esEs9(xuu311000, xuu600, ty_Int) -> new_esEs13(xuu311000, xuu600) 35.72/17.93 new_esEs31(xuu3110000, xuu6000, app(ty_Maybe, cbg)) -> new_esEs24(xuu3110000, xuu6000, cbg) 35.72/17.93 new_ltEs18(xuu532, xuu542, ty_Double) -> new_ltEs7(xuu532, xuu542) 35.72/17.93 new_esEs7(xuu311001, xuu601, app(app(ty_Either, ded), dee)) -> new_esEs19(xuu311001, xuu601, ded, dee) 35.72/17.93 new_compare7(xuu31100, xuu60) -> new_primCmpInt(xuu31100, xuu60) 35.72/17.93 new_esEs39(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.93 new_esEs40(xuu3110001, xuu6001, ty_Double) -> new_esEs20(xuu3110001, xuu6001) 35.72/17.93 new_esEs25(GT, GT) -> True 35.72/17.93 new_compare11(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, True, xuu190, dhf, dhg, dhh) -> new_compare111(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, True, dhf, dhg, dhh) 35.72/17.93 new_lt6(xuu531, xuu541, ty_Ordering) -> new_lt12(xuu531, xuu541) 35.72/17.93 new_compare17(xuu311000, xuu600, app(ty_[], daf)) -> new_compare3(xuu311000, xuu600, daf) 35.72/17.93 new_ltEs23(xuu531, xuu541, ty_@0) -> new_ltEs17(xuu531, xuu541) 35.72/17.93 new_esEs32(xuu3110001, xuu6001, app(app(ty_@2, cbh), cca)) -> new_esEs16(xuu3110001, xuu6001, cbh, cca) 35.72/17.93 new_ltEs19(xuu113, xuu116, ty_Char) -> new_ltEs16(xuu113, xuu116) 35.72/17.93 new_esEs27(xuu530, xuu540, ty_Char) -> new_esEs15(xuu530, xuu540) 35.72/17.93 new_esEs5(xuu311000, xuu600, app(ty_[], faa)) -> new_esEs22(xuu311000, xuu600, faa) 35.72/17.93 new_esEs29(xuu111, xuu114, ty_Bool) -> new_esEs18(xuu111, xuu114) 35.72/17.93 new_esEs33(xuu3110002, xuu6002, app(app(ty_Either, cdg), cdh)) -> new_esEs19(xuu3110002, xuu6002, cdg, cdh) 35.72/17.93 new_compare10(xuu198, xuu199, xuu200, xuu201, False, bh, ca) -> GT 35.72/17.93 new_esEs32(xuu3110001, xuu6001, app(ty_Maybe, cda)) -> new_esEs24(xuu3110001, xuu6001, cda) 35.72/17.93 new_esEs39(xuu3110000, xuu6000, app(ty_[], fgd)) -> new_esEs22(xuu3110000, xuu6000, fgd) 35.72/17.93 new_esEs5(xuu311000, xuu600, ty_Float) -> new_esEs12(xuu311000, xuu600) 35.72/17.93 new_compare17(xuu311000, xuu600, ty_Int) -> new_compare7(xuu311000, xuu600) 35.72/17.93 new_esEs5(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) 35.72/17.93 new_ltEs12(Just(xuu530), Just(xuu540), app(app(app(ty_@3, fed), fee), fef)) -> new_ltEs6(xuu530, xuu540, fed, fee, fef) 35.72/17.93 new_ltEs18(xuu532, xuu542, ty_Bool) -> new_ltEs15(xuu532, xuu542) 35.72/17.93 new_esEs29(xuu111, xuu114, ty_@0) -> new_esEs14(xuu111, xuu114) 35.72/17.93 new_ltEs12(Just(xuu530), Just(xuu540), app(app(ty_Either, feb), fec)) -> new_ltEs5(xuu530, xuu540, feb, fec) 35.72/17.93 new_lt20(xuu111, xuu114, ty_Ordering) -> new_lt12(xuu111, xuu114) 35.72/17.93 new_lt20(xuu111, xuu114, ty_Integer) -> new_lt10(xuu111, xuu114) 35.72/17.93 new_esEs30(xuu112, xuu115, app(app(app(ty_@3, bfh), bga), bgb)) -> new_esEs17(xuu112, xuu115, bfh, bga, bgb) 35.72/17.93 new_esEs11(xuu311001, xuu601, app(ty_Ratio, fcd)) -> new_esEs21(xuu311001, xuu601, fcd) 35.72/17.93 new_esEs8(xuu311002, xuu602, app(app(ty_Either, dff), dfg)) -> new_esEs19(xuu311002, xuu602, dff, dfg) 35.72/17.93 new_esEs7(xuu311001, xuu601, ty_Ordering) -> new_esEs25(xuu311001, xuu601) 35.72/17.93 new_lt5(xuu530, xuu540, ty_Integer) -> new_lt10(xuu530, xuu540) 35.72/17.93 new_ltEs20(xuu60, xuu61, app(app(ty_@2, cfh), cga)) -> new_ltEs13(xuu60, xuu61, cfh, cga) 35.72/17.93 new_esEs6(xuu311000, xuu600, ty_Bool) -> new_esEs18(xuu311000, xuu600) 35.72/17.93 new_ltEs24(xuu87, xuu88, app(ty_Ratio, fea)) -> new_ltEs14(xuu87, xuu88, fea) 35.72/17.93 new_esEs31(xuu3110000, xuu6000, ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.93 new_esEs4(xuu311000, xuu600, ty_Char) -> new_esEs15(xuu311000, xuu600) 35.72/17.93 new_esEs30(xuu112, xuu115, ty_Float) -> new_esEs12(xuu112, xuu115) 35.72/17.93 new_esEs30(xuu112, xuu115, ty_Char) -> new_esEs15(xuu112, xuu115) 35.72/17.93 new_esEs10(xuu311000, xuu600, app(app(app(ty_@3, fae), faf), fag)) -> new_esEs17(xuu311000, xuu600, fae, faf, fag) 35.72/17.93 new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, de), cb) -> new_esEs24(xuu3110000, xuu6000, de) 35.72/17.93 new_compare15(Nothing, Nothing, cgc) -> EQ 35.72/17.93 new_esEs39(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.93 new_ltEs15(True, True) -> True 35.72/17.93 new_esEs8(xuu311002, xuu602, app(app(ty_@2, dfa), dfb)) -> new_esEs16(xuu311002, xuu602, dfa, dfb) 35.72/17.93 new_lt20(xuu111, xuu114, ty_Float) -> new_lt11(xuu111, xuu114) 35.72/17.93 new_esEs33(xuu3110002, xuu6002, ty_Int) -> new_esEs13(xuu3110002, xuu6002) 35.72/17.93 new_lt14(xuu31100, xuu60, cgc) -> new_esEs26(new_compare15(xuu31100, xuu60, cgc)) 35.72/17.93 new_esEs40(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 35.72/17.93 new_esEs29(xuu111, xuu114, app(app(ty_@2, bfc), bfd)) -> new_esEs16(xuu111, xuu114, bfc, bfd) 35.72/17.93 new_esEs36(xuu124, xuu126, app(ty_Maybe, eba)) -> new_esEs24(xuu124, xuu126, eba) 35.72/17.93 new_lt22(xuu124, xuu126, app(ty_[], eah)) -> new_lt13(xuu124, xuu126, eah) 35.72/17.93 new_ltEs22(xuu125, xuu127, ty_Int) -> new_ltEs4(xuu125, xuu127) 35.72/17.93 new_esEs36(xuu124, xuu126, ty_Float) -> new_esEs12(xuu124, xuu126) 35.72/17.93 new_lt11(xuu31100, xuu60) -> new_esEs26(new_compare27(xuu31100, xuu60)) 35.72/17.93 new_esEs13(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 35.72/17.93 new_esEs31(xuu3110000, xuu6000, ty_Bool) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.93 new_esEs31(xuu3110000, xuu6000, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs17(xuu3110000, xuu6000, cah, cba, cbb) 35.72/17.93 new_ltEs22(xuu125, xuu127, app(ty_[], ecb)) -> new_ltEs11(xuu125, xuu127, ecb) 35.72/17.93 new_ltEs5(Right(xuu530), Left(xuu540), ge, fc) -> False 35.72/17.93 new_esEs4(xuu311000, xuu600, ty_Bool) -> new_esEs18(xuu311000, xuu600) 35.72/17.93 new_esEs6(xuu311000, xuu600, app(ty_[], dde)) -> new_esEs22(xuu311000, xuu600, dde) 35.72/17.93 new_esEs32(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) 35.72/17.93 new_compare19(Double(xuu311000, Pos(xuu3110010)), Double(xuu600, Pos(xuu6010))) -> new_compare7(new_sr(xuu311000, Pos(xuu6010)), new_sr(Pos(xuu3110010), xuu600)) 35.72/17.93 new_esEs5(xuu311000, xuu600, ty_Ordering) -> new_esEs25(xuu311000, xuu600) 35.72/17.93 new_esEs24(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, gag), gah)) -> new_esEs19(xuu3110000, xuu6000, gag, gah) 35.72/17.93 new_ltEs10(LT, LT) -> True 35.72/17.93 new_esEs38(xuu530, xuu540, ty_Integer) -> new_esEs23(xuu530, xuu540) 35.72/17.93 new_gt(xuu22, xuu17, app(app(ty_@2, dhb), dhc)) -> new_esEs41(new_compare13(xuu22, xuu17, dhb, dhc)) 35.72/17.93 new_esEs4(xuu311000, xuu600, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs17(xuu311000, xuu600, cac, cad, cae) 35.72/17.93 new_compare18(@3(xuu311000, xuu311001, xuu311002), @3(xuu600, xuu601, xuu602), dcb, dcc, dcd) -> new_compare24(xuu311000, xuu311001, xuu311002, xuu600, xuu601, xuu602, new_asAs(new_esEs6(xuu311000, xuu600, dcb), new_asAs(new_esEs7(xuu311001, xuu601, dcc), new_esEs8(xuu311002, xuu602, dcd))), dcb, dcc, dcd) 35.72/17.93 new_esEs30(xuu112, xuu115, app(ty_Ratio, bgg)) -> new_esEs21(xuu112, xuu115, bgg) 35.72/17.93 new_lt21(xuu112, xuu115, app(app(ty_Either, bff), bfg)) -> new_lt4(xuu112, xuu115, bff, bfg) 35.72/17.93 new_esEs18(False, False) -> True 35.72/17.93 new_ltEs20(xuu60, xuu61, ty_Double) -> new_ltEs7(xuu60, xuu61) 35.72/17.93 new_esEs11(xuu311001, xuu601, ty_Float) -> new_esEs12(xuu311001, xuu601) 35.72/17.93 new_esEs27(xuu530, xuu540, app(ty_[], bah)) -> new_esEs22(xuu530, xuu540, bah) 35.72/17.93 new_ltEs18(xuu532, xuu542, ty_Float) -> new_ltEs9(xuu532, xuu542) 35.72/17.93 new_esEs30(xuu112, xuu115, app(app(ty_@2, bge), bgf)) -> new_esEs16(xuu112, xuu115, bge, bgf) 35.72/17.93 new_ltEs5(Left(xuu530), Left(xuu540), ty_Integer, fc) -> new_ltEs8(xuu530, xuu540) 35.72/17.93 new_primCmpInt(Pos(Succ(xuu3110000)), Pos(xuu600)) -> new_primCmpNat0(Succ(xuu3110000), xuu600) 35.72/17.93 new_esEs29(xuu111, xuu114, ty_Char) -> new_esEs15(xuu111, xuu114) 35.72/17.93 new_esEs39(xuu3110000, xuu6000, app(app(ty_Either, fga), fgb)) -> new_esEs19(xuu3110000, xuu6000, fga, fgb) 35.72/17.93 new_esEs4(xuu311000, xuu600, ty_Float) -> new_esEs12(xuu311000, xuu600) 35.72/17.93 new_esEs21(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cef) -> new_asAs(new_esEs34(xuu3110000, xuu6000, cef), new_esEs35(xuu3110001, xuu6001, cef)) 35.72/17.93 new_ltEs21(xuu53, xuu54, ty_@0) -> new_ltEs17(xuu53, xuu54) 35.72/17.93 new_lt23(xuu530, xuu540, ty_Bool) -> new_lt17(xuu530, xuu540) 35.72/17.93 new_primMulNat0(Succ(xuu31100000), Succ(xuu60100)) -> new_primPlusNat0(new_primMulNat0(xuu31100000, Succ(xuu60100)), Succ(xuu60100)) 35.72/17.93 new_compare17(xuu311000, xuu600, ty_Double) -> new_compare19(xuu311000, xuu600) 35.72/17.93 new_esEs4(xuu311000, xuu600, app(ty_Maybe, egh)) -> new_esEs24(xuu311000, xuu600, egh) 35.72/17.93 new_esEs40(xuu3110001, xuu6001, app(app(ty_Either, fhc), fhd)) -> new_esEs19(xuu3110001, xuu6001, fhc, fhd) 35.72/17.93 new_esEs32(xuu3110001, xuu6001, ty_Float) -> new_esEs12(xuu3110001, xuu6001) 35.72/17.93 new_lt20(xuu111, xuu114, app(app(app(ty_@3, bef), beg), beh)) -> new_lt8(xuu111, xuu114, bef, beg, beh) 35.72/17.93 new_compare3(:(xuu311000, xuu311001), :(xuu600, xuu601), chh) -> new_primCompAux1(xuu311000, xuu600, new_compare3(xuu311001, xuu601, chh), chh) 35.72/17.93 new_esEs39(xuu3110000, xuu6000, app(app(app(ty_@3, fff), ffg), ffh)) -> new_esEs17(xuu3110000, xuu6000, fff, ffg, ffh) 35.72/17.93 new_lt21(xuu112, xuu115, app(ty_Maybe, bgd)) -> new_lt14(xuu112, xuu115, bgd) 35.72/17.93 new_esEs38(xuu530, xuu540, ty_@0) -> new_esEs14(xuu530, xuu540) 35.72/17.93 new_esEs27(xuu530, xuu540, ty_Double) -> new_esEs20(xuu530, xuu540) 35.72/17.93 new_gt(xuu22, xuu17, ty_Float) -> new_esEs41(new_compare27(xuu22, xuu17)) 35.72/17.93 new_esEs39(xuu3110000, xuu6000, ty_Bool) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.93 new_lt21(xuu112, xuu115, ty_@0) -> new_lt19(xuu112, xuu115) 35.72/17.93 new_esEs5(xuu311000, xuu600, app(ty_Maybe, fab)) -> new_esEs24(xuu311000, xuu600, fab) 35.72/17.93 new_esEs33(xuu3110002, xuu6002, ty_Integer) -> new_esEs23(xuu3110002, xuu6002) 35.72/17.93 new_lt6(xuu531, xuu541, ty_Bool) -> new_lt17(xuu531, xuu541) 35.72/17.93 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_@0, cb) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.93 new_esEs10(xuu311000, xuu600, ty_Float) -> new_esEs12(xuu311000, xuu600) 35.72/17.93 new_lt20(xuu111, xuu114, app(ty_Maybe, bfb)) -> new_lt14(xuu111, xuu114, bfb) 35.72/17.93 new_ltEs23(xuu531, xuu541, app(ty_[], ega)) -> new_ltEs11(xuu531, xuu541, ega) 35.72/17.93 new_esEs17(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), cac, cad, cae) -> new_asAs(new_esEs31(xuu3110000, xuu6000, cac), new_asAs(new_esEs32(xuu3110001, xuu6001, cad), new_esEs33(xuu3110002, xuu6002, cae))) 35.72/17.93 new_compare24(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, True, bea, beb, bec) -> EQ 35.72/17.93 new_esEs40(xuu3110001, xuu6001, ty_Integer) -> new_esEs23(xuu3110001, xuu6001) 35.72/17.93 new_ltEs10(GT, GT) -> True 35.72/17.93 new_esEs34(xuu3110000, xuu6000, ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.93 new_ltEs23(xuu531, xuu541, app(app(ty_@2, egc), egd)) -> new_ltEs13(xuu531, xuu541, egc, egd) 35.72/17.93 new_lt5(xuu530, xuu540, ty_@0) -> new_lt19(xuu530, xuu540) 35.72/17.93 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.93 new_ltEs5(Left(xuu530), Left(xuu540), ty_@0, fc) -> new_ltEs17(xuu530, xuu540) 35.72/17.93 new_lt20(xuu111, xuu114, ty_Int) -> new_lt7(xuu111, xuu114) 35.72/17.93 new_compare13(@2(xuu311000, xuu311001), @2(xuu600, xuu601), ced, cee) -> new_compare211(xuu311000, xuu311001, xuu600, xuu601, new_asAs(new_esEs10(xuu311000, xuu600, ced), new_esEs11(xuu311001, xuu601, cee)), ced, cee) 35.72/17.93 new_ltEs20(xuu60, xuu61, ty_Float) -> new_ltEs9(xuu60, xuu61) 35.72/17.93 new_esEs41(GT) -> True 35.72/17.93 new_esEs11(xuu311001, xuu601, app(ty_Maybe, fcf)) -> new_esEs24(xuu311001, xuu601, fcf) 35.72/17.93 new_esEs39(xuu3110000, xuu6000, ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.93 new_esEs10(xuu311000, xuu600, ty_Bool) -> new_esEs18(xuu311000, xuu600) 35.72/17.93 new_esEs31(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.93 new_esEs11(xuu311001, xuu601, ty_Ordering) -> new_esEs25(xuu311001, xuu601) 35.72/17.93 new_lt22(xuu124, xuu126, app(app(ty_Either, eac), ead)) -> new_lt4(xuu124, xuu126, eac, ead) 35.72/17.93 new_lt21(xuu112, xuu115, ty_Float) -> new_lt11(xuu112, xuu115) 35.72/17.93 new_esEs28(xuu531, xuu541, app(app(ty_@2, bcd), bce)) -> new_esEs16(xuu531, xuu541, bcd, bce) 35.72/17.93 new_ltEs19(xuu113, xuu116, ty_@0) -> new_ltEs17(xuu113, xuu116) 35.72/17.93 new_ltEs19(xuu113, xuu116, ty_Float) -> new_ltEs9(xuu113, xuu116) 35.72/17.93 new_esEs27(xuu530, xuu540, app(ty_Ratio, bbd)) -> new_esEs21(xuu530, xuu540, bbd) 35.72/17.93 new_esEs10(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) 35.72/17.93 new_esEs38(xuu530, xuu540, app(app(ty_Either, eeb), eec)) -> new_esEs19(xuu530, xuu540, eeb, eec) 35.72/17.93 new_ltEs12(Just(xuu530), Just(xuu540), app(app(ty_@2, ffa), ffb)) -> new_ltEs13(xuu530, xuu540, ffa, ffb) 35.72/17.93 new_esEs11(xuu311001, xuu601, ty_Bool) -> new_esEs18(xuu311001, xuu601) 35.72/17.93 new_lt20(xuu111, xuu114, ty_Bool) -> new_lt17(xuu111, xuu114) 35.72/17.93 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Ordering, cb) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.93 new_esEs19(Right(xuu3110000), Right(xuu6000), df, app(ty_[], eg)) -> new_esEs22(xuu3110000, xuu6000, eg) 35.72/17.93 new_esEs9(xuu311000, xuu600, app(ty_[], chd)) -> new_esEs22(xuu311000, xuu600, chd) 35.72/17.93 new_compare28(GT, EQ) -> GT 35.72/17.93 new_compare6(Left(xuu311000), Left(xuu600), bf, bg) -> new_compare210(xuu311000, xuu600, new_esEs4(xuu311000, xuu600, bf), bf, bg) 35.72/17.93 new_ltEs12(Just(xuu530), Just(xuu540), app(ty_Ratio, ffc)) -> new_ltEs14(xuu530, xuu540, ffc) 35.72/17.93 new_esEs18(False, True) -> False 35.72/17.93 new_esEs18(True, False) -> False 35.72/17.93 new_esEs37(xuu3110000, xuu6000, ty_Integer) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.93 new_primPlusNat0(Succ(xuu42200), Succ(xuu13700)) -> Succ(Succ(new_primPlusNat0(xuu42200, xuu13700))) 35.72/17.93 new_lt5(xuu530, xuu540, app(app(ty_Either, bac), bad)) -> new_lt4(xuu530, xuu540, bac, bad) 35.72/17.93 new_ltEs16(xuu53, xuu54) -> new_fsEs(new_compare30(xuu53, xuu54)) 35.72/17.93 new_ltEs10(EQ, GT) -> True 35.72/17.93 new_lt19(xuu31100, xuu60) -> new_esEs26(new_compare9(xuu31100, xuu60)) 35.72/17.93 new_lt22(xuu124, xuu126, ty_Char) -> new_lt18(xuu124, xuu126) 35.72/17.93 new_esEs25(LT, EQ) -> False 35.72/17.93 new_esEs25(EQ, LT) -> False 35.72/17.93 new_esEs29(xuu111, xuu114, app(ty_Ratio, bfe)) -> new_esEs21(xuu111, xuu114, bfe) 35.72/17.93 new_ltEs13(@2(xuu530, xuu531), @2(xuu540, xuu541), dbg, dbh) -> new_pePe(new_lt23(xuu530, xuu540, dbg), new_asAs(new_esEs38(xuu530, xuu540, dbg), new_ltEs23(xuu531, xuu541, dbh))) 35.72/17.93 new_esEs4(xuu311000, xuu600, app(app(ty_Either, df), cb)) -> new_esEs19(xuu311000, xuu600, df, cb) 35.72/17.93 new_ltEs10(EQ, EQ) -> True 35.72/17.93 new_ltEs15(False, True) -> True 35.72/17.93 new_lt5(xuu530, xuu540, ty_Bool) -> new_lt17(xuu530, xuu540) 35.72/17.93 new_esEs30(xuu112, xuu115, ty_Int) -> new_esEs13(xuu112, xuu115) 35.72/17.93 new_esEs9(xuu311000, xuu600, ty_Double) -> new_esEs20(xuu311000, xuu600) 35.72/17.93 new_ltEs5(Left(xuu530), Left(xuu540), ty_Bool, fc) -> new_ltEs15(xuu530, xuu540) 35.72/17.93 new_esEs36(xuu124, xuu126, app(app(ty_Either, eac), ead)) -> new_esEs19(xuu124, xuu126, eac, ead) 35.72/17.93 new_lt24(xuu31100, xuu60, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_lt8(xuu31100, xuu60, dcb, dcc, dcd) 35.72/17.93 new_esEs35(xuu3110001, xuu6001, ty_Integer) -> new_esEs23(xuu3110001, xuu6001) 35.72/17.93 new_esEs11(xuu311001, xuu601, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs17(xuu311001, xuu601, fbg, fbh, fca) 35.72/17.93 new_esEs38(xuu530, xuu540, ty_Ordering) -> new_esEs25(xuu530, xuu540) 35.72/17.93 new_esEs33(xuu3110002, xuu6002, ty_@0) -> new_esEs14(xuu3110002, xuu6002) 35.72/17.93 new_esEs37(xuu3110000, xuu6000, ty_Float) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.93 new_ltEs23(xuu531, xuu541, ty_Double) -> new_ltEs7(xuu531, xuu541) 35.72/17.93 new_ltEs24(xuu87, xuu88, app(app(ty_@2, fdg), fdh)) -> new_ltEs13(xuu87, xuu88, fdg, fdh) 35.72/17.93 new_compare17(xuu311000, xuu600, app(app(ty_@2, dah), dba)) -> new_compare13(xuu311000, xuu600, dah, dba) 35.72/17.93 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Integer, cb) -> new_esEs23(xuu3110000, xuu6000) 35.72/17.93 new_lt21(xuu112, xuu115, app(app(app(ty_@3, bfh), bga), bgb)) -> new_lt8(xuu112, xuu115, bfh, bga, bgb) 35.72/17.93 new_ltEs12(Nothing, Just(xuu540), dbf) -> True 35.72/17.93 new_esEs11(xuu311001, xuu601, ty_Char) -> new_esEs15(xuu311001, xuu601) 35.72/17.93 new_ltEs12(Just(xuu530), Just(xuu540), ty_Int) -> new_ltEs4(xuu530, xuu540) 35.72/17.93 new_primCmpNat0(Succ(xuu3110000), Succ(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) 35.72/17.93 new_lt22(xuu124, xuu126, ty_@0) -> new_lt19(xuu124, xuu126) 35.72/17.93 new_esEs22([], [], ecg) -> True 35.72/17.93 new_ltEs17(xuu53, xuu54) -> new_fsEs(new_compare9(xuu53, xuu54)) 35.72/17.93 new_lt24(xuu31100, xuu60, ty_@0) -> new_lt19(xuu31100, xuu60) 35.72/17.93 new_esEs28(xuu531, xuu541, ty_Int) -> new_esEs13(xuu531, xuu541) 35.72/17.93 new_esEs36(xuu124, xuu126, ty_Ordering) -> new_esEs25(xuu124, xuu126) 35.72/17.93 new_compare3(:(xuu311000, xuu311001), [], chh) -> GT 35.72/17.93 new_ltEs12(Nothing, Nothing, dbf) -> True 35.72/17.93 new_esEs10(xuu311000, xuu600, ty_Char) -> new_esEs15(xuu311000, xuu600) 35.72/17.93 new_ltEs12(Just(xuu530), Nothing, dbf) -> False 35.72/17.93 new_lt20(xuu111, xuu114, ty_Char) -> new_lt18(xuu111, xuu114) 35.72/17.93 new_esEs33(xuu3110002, xuu6002, ty_Char) -> new_esEs15(xuu3110002, xuu6002) 35.72/17.93 new_compare19(Double(xuu311000, Pos(xuu3110010)), Double(xuu600, Neg(xuu6010))) -> new_compare7(new_sr(xuu311000, Pos(xuu6010)), new_sr(Neg(xuu3110010), xuu600)) 35.72/17.93 new_compare19(Double(xuu311000, Neg(xuu3110010)), Double(xuu600, Pos(xuu6010))) -> new_compare7(new_sr(xuu311000, Neg(xuu6010)), new_sr(Pos(xuu3110010), xuu600)) 35.72/17.93 new_compare112(xuu198, xuu199, xuu200, xuu201, True, xuu203, bh, ca) -> new_compare10(xuu198, xuu199, xuu200, xuu201, True, bh, ca) 35.72/17.93 new_lt23(xuu530, xuu540, app(app(app(ty_@3, eed), eee), eef)) -> new_lt8(xuu530, xuu540, eed, eee, eef) 35.72/17.93 new_ltEs5(Left(xuu530), Left(xuu540), app(app(ty_@2, gb), gc), fc) -> new_ltEs13(xuu530, xuu540, gb, gc) 35.72/17.93 new_lt5(xuu530, xuu540, ty_Char) -> new_lt18(xuu530, xuu540) 35.72/17.93 new_esEs27(xuu530, xuu540, ty_Int) -> new_esEs13(xuu530, xuu540) 35.72/17.93 new_esEs19(Right(xuu3110000), Right(xuu6000), df, app(app(ty_@2, dg), dh)) -> new_esEs16(xuu3110000, xuu6000, dg, dh) 35.72/17.93 new_esEs37(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.93 new_lt20(xuu111, xuu114, app(app(ty_Either, bed), bee)) -> new_lt4(xuu111, xuu114, bed, bee) 35.72/17.93 new_ltEs15(True, False) -> False 35.72/17.93 new_ltEs5(Right(xuu530), Right(xuu540), ge, app(app(ty_@2, he), hf)) -> new_ltEs13(xuu530, xuu540, he, hf) 35.72/17.93 new_esEs15(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 35.72/17.93 new_esEs36(xuu124, xuu126, app(app(app(ty_@3, eae), eaf), eag)) -> new_esEs17(xuu124, xuu126, eae, eaf, eag) 35.72/17.93 new_esEs12(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs13(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 35.72/17.93 new_ltEs24(xuu87, xuu88, ty_Double) -> new_ltEs7(xuu87, xuu88) 35.72/17.93 new_compare14(xuu154, xuu155, False, chf, chg) -> GT 35.72/17.93 new_esEs37(xuu3110000, xuu6000, app(ty_Maybe, eea)) -> new_esEs24(xuu3110000, xuu6000, eea) 35.72/17.93 new_lt21(xuu112, xuu115, ty_Char) -> new_lt18(xuu112, xuu115) 35.72/17.93 new_ltEs5(Left(xuu530), Left(xuu540), ty_Char, fc) -> new_ltEs16(xuu530, xuu540) 35.72/17.93 new_esEs36(xuu124, xuu126, ty_Bool) -> new_esEs18(xuu124, xuu126) 35.72/17.93 new_esEs19(Left(xuu3110000), Right(xuu6000), df, cb) -> False 35.72/17.93 new_esEs19(Right(xuu3110000), Left(xuu6000), df, cb) -> False 35.72/17.93 new_gt(xuu22, xuu17, ty_Ordering) -> new_esEs41(new_compare28(xuu22, xuu17)) 35.72/17.93 new_lt22(xuu124, xuu126, app(app(app(ty_@3, eae), eaf), eag)) -> new_lt8(xuu124, xuu126, eae, eaf, eag) 35.72/17.93 new_lt15(xuu31100, xuu60, ced, cee) -> new_esEs26(new_compare13(xuu31100, xuu60, ced, cee)) 35.72/17.93 new_ltEs21(xuu53, xuu54, app(ty_[], dbe)) -> new_ltEs11(xuu53, xuu54, dbe) 35.72/17.93 new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cc), cd), cb) -> new_esEs16(xuu3110000, xuu6000, cc, cd) 35.72/17.93 new_compare27(Float(xuu311000, Neg(xuu3110010)), Float(xuu600, Neg(xuu6010))) -> new_compare7(new_sr(xuu311000, Neg(xuu6010)), new_sr(Neg(xuu3110010), xuu600)) 35.72/17.93 new_ltEs15(False, False) -> True 35.72/17.93 new_esEs28(xuu531, xuu541, app(ty_Ratio, bcf)) -> new_esEs21(xuu531, xuu541, bcf) 35.72/17.93 new_lt23(xuu530, xuu540, ty_@0) -> new_lt19(xuu530, xuu540) 35.72/17.93 new_esEs28(xuu531, xuu541, app(ty_Maybe, bcc)) -> new_esEs24(xuu531, xuu541, bcc) 35.72/17.93 new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, ce), cf), cg), cb) -> new_esEs17(xuu3110000, xuu6000, ce, cf, cg) 35.72/17.93 new_lt21(xuu112, xuu115, app(app(ty_@2, bge), bgf)) -> new_lt15(xuu112, xuu115, bge, bgf) 35.72/17.93 new_primCmpInt(Neg(Succ(xuu3110000)), Pos(xuu600)) -> LT 35.72/17.93 new_lt13(xuu31100, xuu60, chh) -> new_esEs26(new_compare3(xuu31100, xuu60, chh)) 35.72/17.93 new_ltEs7(xuu53, xuu54) -> new_fsEs(new_compare19(xuu53, xuu54)) 35.72/17.93 new_ltEs23(xuu531, xuu541, ty_Char) -> new_ltEs16(xuu531, xuu541) 35.72/17.93 new_esEs6(xuu311000, xuu600, app(app(app(ty_@3, dcg), dch), dda)) -> new_esEs17(xuu311000, xuu600, dcg, dch, dda) 35.72/17.93 new_ltEs24(xuu87, xuu88, ty_Int) -> new_ltEs4(xuu87, xuu88) 35.72/17.93 new_esEs39(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.93 new_esEs27(xuu530, xuu540, app(app(app(ty_@3, bae), baf), bag)) -> new_esEs17(xuu530, xuu540, bae, baf, bag) 35.72/17.93 new_esEs9(xuu311000, xuu600, ty_Integer) -> new_esEs23(xuu311000, xuu600) 35.72/17.93 new_lt22(xuu124, xuu126, ty_Float) -> new_lt11(xuu124, xuu126) 35.72/17.93 new_compare14(xuu154, xuu155, True, chf, chg) -> LT 35.72/17.93 new_primCmpInt(Pos(Zero), Neg(Succ(xuu6000))) -> GT 35.72/17.93 new_lt23(xuu530, xuu540, app(app(ty_Either, eeb), eec)) -> new_lt4(xuu530, xuu540, eeb, eec) 35.72/17.93 new_esEs16(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), egf, egg) -> new_asAs(new_esEs39(xuu3110000, xuu6000, egf), new_esEs40(xuu3110001, xuu6001, egg)) 35.72/17.93 new_esEs32(xuu3110001, xuu6001, app(ty_Ratio, ccg)) -> new_esEs21(xuu3110001, xuu6001, ccg) 35.72/17.93 new_ltEs22(xuu125, xuu127, ty_Double) -> new_ltEs7(xuu125, xuu127) 35.72/17.93 new_primCmpInt(Neg(Succ(xuu3110000)), Neg(xuu600)) -> new_primCmpNat0(xuu600, Succ(xuu3110000)) 35.72/17.93 new_ltEs12(Just(xuu530), Just(xuu540), ty_Integer) -> new_ltEs8(xuu530, xuu540) 35.72/17.93 new_esEs37(xuu3110000, xuu6000, app(app(ty_Either, ede), edf)) -> new_esEs19(xuu3110000, xuu6000, ede, edf) 35.72/17.93 new_esEs9(xuu311000, xuu600, app(ty_Ratio, chc)) -> new_esEs21(xuu311000, xuu600, chc) 35.72/17.93 new_ltEs8(xuu53, xuu54) -> new_fsEs(new_compare8(xuu53, xuu54)) 35.72/17.93 new_esEs33(xuu3110002, xuu6002, app(app(ty_@2, cdb), cdc)) -> new_esEs16(xuu3110002, xuu6002, cdb, cdc) 35.72/17.93 new_lt21(xuu112, xuu115, ty_Bool) -> new_lt17(xuu112, xuu115) 35.72/17.93 new_ltEs24(xuu87, xuu88, ty_@0) -> new_ltEs17(xuu87, xuu88) 35.72/17.93 new_compare16(False, True) -> LT 35.72/17.93 new_ltEs4(xuu53, xuu54) -> new_fsEs(new_compare7(xuu53, xuu54)) 35.72/17.93 new_esEs41(EQ) -> False 35.72/17.93 new_primCompAux0(xuu81, GT) -> GT 35.72/17.93 new_esEs9(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) 35.72/17.93 new_esEs5(xuu311000, xuu600, ty_Char) -> new_esEs15(xuu311000, xuu600) 35.72/17.93 new_compare28(EQ, GT) -> LT 35.72/17.93 new_ltEs19(xuu113, xuu116, app(ty_[], bhe)) -> new_ltEs11(xuu113, xuu116, bhe) 35.72/17.93 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 35.72/17.93 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 35.72/17.93 new_ltEs21(xuu53, xuu54, app(app(ty_@2, dbg), dbh)) -> new_ltEs13(xuu53, xuu54, dbg, dbh) 35.72/17.93 new_esEs26(LT) -> True 35.72/17.93 new_compare210(xuu53, xuu54, True, dbc, dbd) -> EQ 35.72/17.93 new_lt6(xuu531, xuu541, app(app(app(ty_@3, bbg), bbh), bca)) -> new_lt8(xuu531, xuu541, bbg, bbh, bca) 35.72/17.93 new_esEs10(xuu311000, xuu600, app(ty_[], fbc)) -> new_esEs22(xuu311000, xuu600, fbc) 35.72/17.93 new_ltEs11(xuu53, xuu54, dbe) -> new_fsEs(new_compare3(xuu53, xuu54, dbe)) 35.72/17.93 new_ltEs5(Right(xuu530), Right(xuu540), ge, ty_Double) -> new_ltEs7(xuu530, xuu540) 35.72/17.93 new_esEs8(xuu311002, xuu602, ty_Int) -> new_esEs13(xuu311002, xuu602) 35.72/17.93 new_esEs37(xuu3110000, xuu6000, app(app(app(ty_@3, edb), edc), edd)) -> new_esEs17(xuu3110000, xuu6000, edb, edc, edd) 35.72/17.93 new_esEs29(xuu111, xuu114, ty_Ordering) -> new_esEs25(xuu111, xuu114) 35.72/17.93 new_lt6(xuu531, xuu541, ty_Integer) -> new_lt10(xuu531, xuu541) 35.72/17.93 new_esEs39(xuu3110000, xuu6000, ty_Double) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.93 new_esEs38(xuu530, xuu540, app(ty_Maybe, eeh)) -> new_esEs24(xuu530, xuu540, eeh) 35.72/17.93 new_esEs19(Right(xuu3110000), Right(xuu6000), df, ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.93 new_lt23(xuu530, xuu540, app(ty_Ratio, efc)) -> new_lt16(xuu530, xuu540, efc) 35.72/17.93 new_lt5(xuu530, xuu540, app(ty_Maybe, bba)) -> new_lt14(xuu530, xuu540, bba) 35.72/17.93 new_esEs38(xuu530, xuu540, ty_Bool) -> new_esEs18(xuu530, xuu540) 35.72/17.93 new_lt6(xuu531, xuu541, ty_@0) -> new_lt19(xuu531, xuu541) 35.72/17.93 new_primCmpNat0(Zero, Zero) -> EQ 35.72/17.93 new_esEs24(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, gbc)) -> new_esEs24(xuu3110000, xuu6000, gbc) 35.72/17.93 new_esEs29(xuu111, xuu114, ty_Int) -> new_esEs13(xuu111, xuu114) 35.72/17.93 new_compare210(xuu53, xuu54, False, dbc, dbd) -> new_compare110(xuu53, xuu54, new_ltEs21(xuu53, xuu54, dbc), dbc, dbd) 35.72/17.93 new_ltEs12(Just(xuu530), Just(xuu540), ty_Char) -> new_ltEs16(xuu530, xuu540) 35.72/17.93 new_ltEs21(xuu53, xuu54, ty_Float) -> new_ltEs9(xuu53, xuu54) 35.72/17.93 new_lt6(xuu531, xuu541, ty_Int) -> new_lt7(xuu531, xuu541) 35.72/17.93 new_esEs36(xuu124, xuu126, ty_Int) -> new_esEs13(xuu124, xuu126) 35.72/17.93 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Float, cb) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.93 new_compare17(xuu311000, xuu600, ty_Ordering) -> new_compare28(xuu311000, xuu600) 35.72/17.93 new_esEs39(xuu3110000, xuu6000, ty_Float) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.93 new_esEs5(xuu311000, xuu600, app(app(ty_@2, eha), ehb)) -> new_esEs16(xuu311000, xuu600, eha, ehb) 35.72/17.93 new_ltEs20(xuu60, xuu61, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs6(xuu60, xuu61, cfc, cfd, cfe) 35.72/17.93 new_esEs36(xuu124, xuu126, ty_Char) -> new_esEs15(xuu124, xuu126) 35.72/17.93 new_ltEs21(xuu53, xuu54, ty_Bool) -> new_ltEs15(xuu53, xuu54) 35.72/17.93 new_ltEs24(xuu87, xuu88, app(ty_[], fde)) -> new_ltEs11(xuu87, xuu88, fde) 35.72/17.93 new_esEs6(xuu311000, xuu600, app(app(ty_Either, ddb), ddc)) -> new_esEs19(xuu311000, xuu600, ddb, ddc) 35.72/17.93 new_ltEs5(Right(xuu530), Right(xuu540), ge, app(ty_Maybe, hd)) -> new_ltEs12(xuu530, xuu540, hd) 35.72/17.93 new_ltEs12(Just(xuu530), Just(xuu540), ty_Ordering) -> new_ltEs10(xuu530, xuu540) 35.72/17.93 new_esEs40(xuu3110001, xuu6001, app(ty_Maybe, fhg)) -> new_esEs24(xuu3110001, xuu6001, fhg) 35.72/17.93 new_esEs32(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 35.72/17.93 new_compare28(LT, GT) -> LT 35.72/17.93 new_esEs19(Right(xuu3110000), Right(xuu6000), df, app(ty_Ratio, ef)) -> new_esEs21(xuu3110000, xuu6000, ef) 35.72/17.93 new_lt6(xuu531, xuu541, ty_Float) -> new_lt11(xuu531, xuu541) 35.72/17.93 new_esEs37(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.93 new_compare15(Just(xuu311000), Just(xuu600), cgc) -> new_compare26(xuu311000, xuu600, new_esEs9(xuu311000, xuu600, cgc), cgc) 35.72/17.93 new_compare110(xuu147, xuu148, True, fhh, gaa) -> LT 35.72/17.93 new_esEs27(xuu530, xuu540, ty_Float) -> new_esEs12(xuu530, xuu540) 35.72/17.93 new_esEs23(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 35.72/17.93 new_lt23(xuu530, xuu540, ty_Char) -> new_lt18(xuu530, xuu540) 35.72/17.93 new_esEs37(xuu3110000, xuu6000, app(ty_Ratio, edg)) -> new_esEs21(xuu3110000, xuu6000, edg) 35.72/17.93 new_esEs7(xuu311001, xuu601, app(ty_[], deg)) -> new_esEs22(xuu311001, xuu601, deg) 35.72/17.93 new_esEs19(Right(xuu3110000), Right(xuu6000), df, ty_Double) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.93 new_esEs31(xuu3110000, xuu6000, ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.93 new_lt24(xuu31100, xuu60, app(ty_[], chh)) -> new_lt13(xuu31100, xuu60, chh) 35.72/17.93 new_ltEs5(Left(xuu530), Left(xuu540), app(app(app(ty_@3, fd), ff), fg), fc) -> new_ltEs6(xuu530, xuu540, fd, ff, fg) 35.72/17.93 new_esEs4(xuu311000, xuu600, ty_Integer) -> new_esEs23(xuu311000, xuu600) 35.72/17.93 new_esEs33(xuu3110002, xuu6002, ty_Bool) -> new_esEs18(xuu3110002, xuu6002) 35.72/17.93 new_esEs8(xuu311002, xuu602, ty_Double) -> new_esEs20(xuu311002, xuu602) 35.72/17.93 new_primCmpNat0(Succ(xuu3110000), Zero) -> GT 35.72/17.93 new_esEs10(xuu311000, xuu600, app(ty_Ratio, fbb)) -> new_esEs21(xuu311000, xuu600, fbb) 35.72/17.93 new_ltEs18(xuu532, xuu542, app(ty_Maybe, bde)) -> new_ltEs12(xuu532, xuu542, bde) 35.72/17.93 new_compare19(Double(xuu311000, Neg(xuu3110010)), Double(xuu600, Neg(xuu6010))) -> new_compare7(new_sr(xuu311000, Neg(xuu6010)), new_sr(Neg(xuu3110010), xuu600)) 35.72/17.93 new_esEs27(xuu530, xuu540, ty_@0) -> new_esEs14(xuu530, xuu540) 35.72/17.93 new_pePe(False, xuu214) -> xuu214 35.72/17.93 new_lt21(xuu112, xuu115, app(ty_[], bgc)) -> new_lt13(xuu112, xuu115, bgc) 35.72/17.93 new_esEs22(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), ecg) -> new_asAs(new_esEs37(xuu3110000, xuu6000, ecg), new_esEs22(xuu3110001, xuu6001, ecg)) 35.72/17.93 new_esEs28(xuu531, xuu541, app(ty_[], bcb)) -> new_esEs22(xuu531, xuu541, bcb) 35.72/17.93 new_ltEs18(xuu532, xuu542, app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs6(xuu532, xuu542, bda, bdb, bdc) 35.72/17.93 new_esEs29(xuu111, xuu114, ty_Float) -> new_esEs12(xuu111, xuu114) 35.72/17.93 new_esEs11(xuu311001, xuu601, app(app(ty_@2, fbe), fbf)) -> new_esEs16(xuu311001, xuu601, fbe, fbf) 35.72/17.93 new_compare25(xuu60, xuu61, True, ceg, ceh) -> EQ 35.72/17.93 new_compare24(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, False, bea, beb, bec) -> new_compare11(xuu111, xuu112, xuu113, xuu114, xuu115, xuu116, new_lt20(xuu111, xuu114, bea), new_asAs(new_esEs29(xuu111, xuu114, bea), new_pePe(new_lt21(xuu112, xuu115, beb), new_asAs(new_esEs30(xuu112, xuu115, beb), new_ltEs19(xuu113, xuu116, bec)))), bea, beb, bec) 35.72/17.93 new_esEs7(xuu311001, xuu601, ty_Bool) -> new_esEs18(xuu311001, xuu601) 35.72/17.93 new_esEs8(xuu311002, xuu602, ty_Float) -> new_esEs12(xuu311002, xuu602) 35.72/17.93 new_esEs40(xuu3110001, xuu6001, ty_Bool) -> new_esEs18(xuu3110001, xuu6001) 35.72/17.93 new_lt20(xuu111, xuu114, app(ty_Ratio, bfe)) -> new_lt16(xuu111, xuu114, bfe) 35.72/17.93 new_lt21(xuu112, xuu115, ty_Double) -> new_lt9(xuu112, xuu115) 35.72/17.93 new_lt22(xuu124, xuu126, ty_Integer) -> new_lt10(xuu124, xuu126) 35.72/17.93 new_ltEs5(Right(xuu530), Right(xuu540), ge, ty_@0) -> new_ltEs17(xuu530, xuu540) 35.72/17.93 new_esEs32(xuu3110001, xuu6001, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs17(xuu3110001, xuu6001, ccb, ccc, ccd) 35.72/17.93 new_esEs5(xuu311000, xuu600, ty_Bool) -> new_esEs18(xuu311000, xuu600) 35.72/17.93 new_compare112(xuu198, xuu199, xuu200, xuu201, False, xuu203, bh, ca) -> new_compare10(xuu198, xuu199, xuu200, xuu201, xuu203, bh, ca) 35.72/17.93 new_ltEs12(Just(xuu530), Just(xuu540), ty_Bool) -> new_ltEs15(xuu530, xuu540) 35.72/17.93 new_compare11(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, False, xuu190, dhf, dhg, dhh) -> new_compare111(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, xuu190, dhf, dhg, dhh) 35.72/17.93 new_ltEs19(xuu113, xuu116, ty_Bool) -> new_ltEs15(xuu113, xuu116) 35.72/17.93 new_lt6(xuu531, xuu541, ty_Double) -> new_lt9(xuu531, xuu541) 35.72/17.93 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 35.72/17.93 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 35.72/17.93 new_esEs25(LT, GT) -> False 35.72/17.93 new_esEs25(GT, LT) -> False 35.72/17.93 new_primCompAux1(xuu311000, xuu600, xuu48, chh) -> new_primCompAux0(xuu48, new_compare17(xuu311000, xuu600, chh)) 35.72/17.93 new_compare211(xuu124, xuu125, xuu126, xuu127, True, eaa, eab) -> EQ 35.72/17.93 new_esEs9(xuu311000, xuu600, app(app(ty_Either, cha), chb)) -> new_esEs19(xuu311000, xuu600, cha, chb) 35.72/17.93 new_esEs10(xuu311000, xuu600, ty_Integer) -> new_esEs23(xuu311000, xuu600) 35.72/17.93 new_ltEs19(xuu113, xuu116, ty_Int) -> new_ltEs4(xuu113, xuu116) 35.72/17.93 new_esEs6(xuu311000, xuu600, ty_Ordering) -> new_esEs25(xuu311000, xuu600) 35.72/17.93 new_ltEs18(xuu532, xuu542, ty_Char) -> new_ltEs16(xuu532, xuu542) 35.72/17.93 new_esEs28(xuu531, xuu541, ty_Bool) -> new_esEs18(xuu531, xuu541) 35.72/17.93 new_gt(xuu22, xuu17, ty_@0) -> new_esEs41(new_compare9(xuu22, xuu17)) 35.72/17.93 new_esEs19(Right(xuu3110000), Right(xuu6000), df, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.93 new_esEs30(xuu112, xuu115, ty_Integer) -> new_esEs23(xuu112, xuu115) 35.72/17.93 new_lt17(xuu31100, xuu60) -> new_esEs26(new_compare16(xuu31100, xuu60)) 35.72/17.93 new_esEs33(xuu3110002, xuu6002, app(ty_Maybe, cec)) -> new_esEs24(xuu3110002, xuu6002, cec) 35.72/17.93 new_esEs38(xuu530, xuu540, app(ty_[], eeg)) -> new_esEs22(xuu530, xuu540, eeg) 35.72/17.93 new_compare29(:%(xuu311000, xuu311001), :%(xuu600, xuu601), ty_Integer) -> new_compare8(new_sr0(xuu311000, xuu601), new_sr0(xuu600, xuu311001)) 35.72/17.93 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.93 new_ltEs5(Right(xuu530), Right(xuu540), ge, ty_Int) -> new_ltEs4(xuu530, xuu540) 35.72/17.93 new_esEs6(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) 35.72/17.93 new_esEs25(EQ, GT) -> False 35.72/17.93 new_esEs25(GT, EQ) -> False 35.72/17.93 new_esEs38(xuu530, xuu540, ty_Char) -> new_esEs15(xuu530, xuu540) 35.72/17.93 new_esEs10(xuu311000, xuu600, app(ty_Maybe, fbd)) -> new_esEs24(xuu311000, xuu600, fbd) 35.72/17.93 new_lt24(xuu31100, xuu60, ty_Int) -> new_lt7(xuu31100, xuu60) 35.72/17.93 new_compare29(:%(xuu311000, xuu311001), :%(xuu600, xuu601), ty_Int) -> new_compare7(new_sr(xuu311000, xuu601), new_sr(xuu600, xuu311001)) 35.72/17.93 new_lt5(xuu530, xuu540, app(ty_Ratio, bbd)) -> new_lt16(xuu530, xuu540, bbd) 35.72/17.93 new_esEs30(xuu112, xuu115, app(ty_Maybe, bgd)) -> new_esEs24(xuu112, xuu115, bgd) 35.72/17.93 new_esEs31(xuu3110000, xuu6000, ty_Double) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.93 new_ltEs22(xuu125, xuu127, ty_@0) -> new_ltEs17(xuu125, xuu127) 35.72/17.93 new_compare27(Float(xuu311000, Pos(xuu3110010)), Float(xuu600, Neg(xuu6010))) -> new_compare7(new_sr(xuu311000, Pos(xuu6010)), new_sr(Neg(xuu3110010), xuu600)) 35.72/17.93 new_compare27(Float(xuu311000, Neg(xuu3110010)), Float(xuu600, Pos(xuu6010))) -> new_compare7(new_sr(xuu311000, Neg(xuu6010)), new_sr(Pos(xuu3110010), xuu600)) 35.72/17.93 new_esEs8(xuu311002, xuu602, ty_Ordering) -> new_esEs25(xuu311002, xuu602) 35.72/17.93 new_esEs30(xuu112, xuu115, app(ty_[], bgc)) -> new_esEs22(xuu112, xuu115, bgc) 35.72/17.93 new_esEs32(xuu3110001, xuu6001, ty_Integer) -> new_esEs23(xuu3110001, xuu6001) 35.72/17.93 new_esEs4(xuu311000, xuu600, app(ty_[], ecg)) -> new_esEs22(xuu311000, xuu600, ecg) 35.72/17.93 new_esEs31(xuu3110000, xuu6000, app(app(ty_@2, caf), cag)) -> new_esEs16(xuu3110000, xuu6000, caf, cag) 35.72/17.93 new_ltEs23(xuu531, xuu541, app(ty_Ratio, ege)) -> new_ltEs14(xuu531, xuu541, ege) 35.72/17.93 new_esEs24(Just(xuu3110000), Just(xuu6000), app(ty_[], gbb)) -> new_esEs22(xuu3110000, xuu6000, gbb) 35.72/17.93 new_esEs28(xuu531, xuu541, ty_Char) -> new_esEs15(xuu531, xuu541) 35.72/17.93 new_esEs31(xuu3110000, xuu6000, ty_Float) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.93 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.93 new_esEs6(xuu311000, xuu600, ty_Integer) -> new_esEs23(xuu311000, xuu600) 35.72/17.93 new_esEs30(xuu112, xuu115, ty_@0) -> new_esEs14(xuu112, xuu115) 35.72/17.93 new_lt22(xuu124, xuu126, ty_Int) -> new_lt7(xuu124, xuu126) 35.72/17.93 new_ltEs5(Right(xuu530), Right(xuu540), ge, app(ty_Ratio, hg)) -> new_ltEs14(xuu530, xuu540, hg) 35.72/17.93 new_gt(xuu22, xuu17, app(ty_Maybe, dha)) -> new_esEs41(new_compare15(xuu22, xuu17, dha)) 35.72/17.93 new_esEs4(xuu311000, xuu600, ty_@0) -> new_esEs14(xuu311000, xuu600) 35.72/17.93 new_esEs22(:(xuu3110000, xuu3110001), [], ecg) -> False 35.72/17.93 new_esEs22([], :(xuu6000, xuu6001), ecg) -> False 35.72/17.93 new_lt7(xuu31100, xuu60) -> new_esEs26(new_compare7(xuu31100, xuu60)) 35.72/17.93 new_lt21(xuu112, xuu115, ty_Ordering) -> new_lt12(xuu112, xuu115) 35.72/17.93 new_esEs10(xuu311000, xuu600, app(app(ty_Either, fah), fba)) -> new_esEs19(xuu311000, xuu600, fah, fba) 35.72/17.93 new_esEs6(xuu311000, xuu600, ty_Double) -> new_esEs20(xuu311000, xuu600) 35.72/17.93 new_lt24(xuu31100, xuu60, ty_Bool) -> new_lt17(xuu31100, xuu60) 35.72/17.93 new_esEs29(xuu111, xuu114, ty_Double) -> new_esEs20(xuu111, xuu114) 35.72/17.93 new_esEs34(xuu3110000, xuu6000, ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.93 new_esEs7(xuu311001, xuu601, ty_Integer) -> new_esEs23(xuu311001, xuu601) 35.72/17.93 new_esEs29(xuu111, xuu114, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs17(xuu111, xuu114, bef, beg, beh) 35.72/17.93 new_ltEs21(xuu53, xuu54, ty_Int) -> new_ltEs4(xuu53, xuu54) 35.72/17.93 new_ltEs12(Just(xuu530), Just(xuu540), app(ty_Maybe, feh)) -> new_ltEs12(xuu530, xuu540, feh) 35.72/17.93 new_compare111(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, True, dhf, dhg, dhh) -> LT 35.72/17.93 new_primMulInt(Neg(xuu3110000), Neg(xuu6010)) -> Pos(new_primMulNat0(xuu3110000, xuu6010)) 35.72/17.93 new_lt24(xuu31100, xuu60, ty_Float) -> new_lt11(xuu31100, xuu60) 35.72/17.93 new_primCmpInt(Pos(Zero), Pos(Succ(xuu6000))) -> new_primCmpNat0(Zero, Succ(xuu6000)) 35.72/17.93 new_esEs11(xuu311001, xuu601, ty_Int) -> new_esEs13(xuu311001, xuu601) 35.72/17.93 new_esEs40(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 35.72/17.93 new_esEs40(xuu3110001, xuu6001, app(ty_[], fhf)) -> new_esEs22(xuu3110001, xuu6001, fhf) 35.72/17.93 new_esEs5(xuu311000, xuu600, ty_Double) -> new_esEs20(xuu311000, xuu600) 35.72/17.93 new_ltEs19(xuu113, xuu116, app(app(ty_@2, bhg), bhh)) -> new_ltEs13(xuu113, xuu116, bhg, bhh) 35.72/17.93 new_esEs6(xuu311000, xuu600, ty_Float) -> new_esEs12(xuu311000, xuu600) 35.72/17.93 new_ltEs18(xuu532, xuu542, ty_Integer) -> new_ltEs8(xuu532, xuu542) 35.72/17.93 new_lt23(xuu530, xuu540, app(ty_Maybe, eeh)) -> new_lt14(xuu530, xuu540, eeh) 35.72/17.93 new_esEs30(xuu112, xuu115, ty_Bool) -> new_esEs18(xuu112, xuu115) 35.72/17.93 new_esEs32(xuu3110001, xuu6001, app(app(ty_Either, cce), ccf)) -> new_esEs19(xuu3110001, xuu6001, cce, ccf) 35.72/17.93 new_ltEs23(xuu531, xuu541, ty_Float) -> new_ltEs9(xuu531, xuu541) 35.72/17.93 new_esEs31(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) 35.72/17.93 new_ltEs20(xuu60, xuu61, ty_Char) -> new_ltEs16(xuu60, xuu61) 35.72/17.93 new_lt6(xuu531, xuu541, app(ty_[], bcb)) -> new_lt13(xuu531, xuu541, bcb) 35.72/17.93 new_esEs7(xuu311001, xuu601, app(app(ty_@2, ddg), ddh)) -> new_esEs16(xuu311001, xuu601, ddg, ddh) 35.72/17.93 new_lt5(xuu530, xuu540, ty_Ordering) -> new_lt12(xuu530, xuu540) 35.72/17.93 new_esEs7(xuu311001, xuu601, app(ty_Maybe, deh)) -> new_esEs24(xuu311001, xuu601, deh) 35.72/17.93 new_esEs7(xuu311001, xuu601, ty_@0) -> new_esEs14(xuu311001, xuu601) 35.72/17.93 new_ltEs19(xuu113, xuu116, app(app(ty_Either, bgh), bha)) -> new_ltEs5(xuu113, xuu116, bgh, bha) 35.72/17.93 new_gt(xuu22, xuu17, ty_Double) -> new_esEs41(new_compare19(xuu22, xuu17)) 35.72/17.93 new_ltEs18(xuu532, xuu542, ty_Ordering) -> new_ltEs10(xuu532, xuu542) 35.72/17.93 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.93 new_compare8(Integer(xuu311000), Integer(xuu600)) -> new_primCmpInt(xuu311000, xuu600) 35.72/17.93 new_primMulInt(Pos(xuu3110000), Neg(xuu6010)) -> Neg(new_primMulNat0(xuu3110000, xuu6010)) 35.72/17.93 new_primMulInt(Neg(xuu3110000), Pos(xuu6010)) -> Neg(new_primMulNat0(xuu3110000, xuu6010)) 35.72/17.93 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Int, cb) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.93 new_lt5(xuu530, xuu540, app(ty_[], bah)) -> new_lt13(xuu530, xuu540, bah) 35.72/17.93 new_esEs40(xuu3110001, xuu6001, app(ty_Ratio, fhe)) -> new_esEs21(xuu3110001, xuu6001, fhe) 35.72/17.93 new_lt5(xuu530, xuu540, ty_Double) -> new_lt9(xuu530, xuu540) 35.72/17.93 new_esEs28(xuu531, xuu541, ty_Integer) -> new_esEs23(xuu531, xuu541) 35.72/17.93 new_esEs19(Right(xuu3110000), Right(xuu6000), df, app(ty_Maybe, eh)) -> new_esEs24(xuu3110000, xuu6000, eh) 35.72/17.93 new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, da), db), cb) -> new_esEs19(xuu3110000, xuu6000, da, db) 35.72/17.93 new_lt16(xuu31100, xuu60, dhe) -> new_esEs26(new_compare29(xuu31100, xuu60, dhe)) 35.72/17.93 new_esEs8(xuu311002, xuu602, app(app(app(ty_@3, dfc), dfd), dfe)) -> new_esEs17(xuu311002, xuu602, dfc, dfd, dfe) 35.72/17.93 new_esEs37(xuu3110000, xuu6000, ty_Double) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.93 new_sr0(Integer(xuu3110000), Integer(xuu6010)) -> Integer(new_primMulInt(xuu3110000, xuu6010)) 35.72/17.93 new_esEs30(xuu112, xuu115, app(app(ty_Either, bff), bfg)) -> new_esEs19(xuu112, xuu115, bff, bfg) 35.72/17.93 new_esEs28(xuu531, xuu541, ty_@0) -> new_esEs14(xuu531, xuu541) 35.72/17.93 new_esEs6(xuu311000, xuu600, ty_Int) -> new_esEs13(xuu311000, xuu600) 35.72/17.93 new_esEs9(xuu311000, xuu600, app(ty_Maybe, che)) -> new_esEs24(xuu311000, xuu600, che) 35.72/17.93 new_compare15(Just(xuu311000), Nothing, cgc) -> GT 35.72/17.93 new_esEs9(xuu311000, xuu600, ty_Float) -> new_esEs12(xuu311000, xuu600) 35.72/17.93 new_esEs8(xuu311002, xuu602, ty_Bool) -> new_esEs18(xuu311002, xuu602) 35.72/17.93 new_esEs19(Right(xuu3110000), Right(xuu6000), df, ty_Bool) -> new_esEs18(xuu3110000, xuu6000) 35.72/17.93 new_lt21(xuu112, xuu115, app(ty_Ratio, bgg)) -> new_lt16(xuu112, xuu115, bgg) 35.72/17.93 new_lt21(xuu112, xuu115, ty_Integer) -> new_lt10(xuu112, xuu115) 35.72/17.93 new_esEs25(LT, LT) -> True 35.72/17.93 new_ltEs24(xuu87, xuu88, ty_Float) -> new_ltEs9(xuu87, xuu88) 35.72/17.93 new_ltEs19(xuu113, xuu116, ty_Integer) -> new_ltEs8(xuu113, xuu116) 35.72/17.93 new_lt6(xuu531, xuu541, app(app(ty_@2, bcd), bce)) -> new_lt15(xuu531, xuu541, bcd, bce) 35.72/17.93 new_asAs(True, xuu163) -> xuu163 35.72/17.93 new_ltEs21(xuu53, xuu54, ty_Char) -> new_ltEs16(xuu53, xuu54) 35.72/17.93 new_ltEs23(xuu531, xuu541, app(app(app(ty_@3, eff), efg), efh)) -> new_ltEs6(xuu531, xuu541, eff, efg, efh) 35.72/17.93 new_gt(xuu22, xuu17, app(app(ty_Either, dgc), dgd)) -> new_esEs41(new_compare6(xuu22, xuu17, dgc, dgd)) 35.72/17.93 new_lt24(xuu31100, xuu60, ty_Ordering) -> new_lt12(xuu31100, xuu60) 35.72/17.93 new_esEs38(xuu530, xuu540, ty_Int) -> new_esEs13(xuu530, xuu540) 35.72/17.93 new_compare6(Right(xuu311000), Right(xuu600), bf, bg) -> new_compare25(xuu311000, xuu600, new_esEs5(xuu311000, xuu600, bg), bf, bg) 35.72/17.93 new_ltEs20(xuu60, xuu61, app(app(ty_Either, cfa), cfb)) -> new_ltEs5(xuu60, xuu61, cfa, cfb) 35.72/17.93 new_ltEs12(Just(xuu530), Just(xuu540), app(ty_[], feg)) -> new_ltEs11(xuu530, xuu540, feg) 35.72/17.93 new_ltEs20(xuu60, xuu61, ty_Integer) -> new_ltEs8(xuu60, xuu61) 35.72/17.93 new_ltEs24(xuu87, xuu88, ty_Ordering) -> new_ltEs10(xuu87, xuu88) 35.72/17.93 new_compare25(xuu60, xuu61, False, ceg, ceh) -> new_compare14(xuu60, xuu61, new_ltEs20(xuu60, xuu61, ceh), ceg, ceh) 35.72/17.93 new_esEs10(xuu311000, xuu600, app(app(ty_@2, fac), fad)) -> new_esEs16(xuu311000, xuu600, fac, fad) 35.72/17.93 new_esEs33(xuu3110002, xuu6002, app(ty_[], ceb)) -> new_esEs22(xuu3110002, xuu6002, ceb) 35.72/17.93 new_ltEs21(xuu53, xuu54, app(ty_Maybe, dbf)) -> new_ltEs12(xuu53, xuu54, dbf) 35.72/17.93 new_gt(xuu22, xuu17, app(ty_[], dgh)) -> new_esEs41(new_compare3(xuu22, xuu17, dgh)) 35.72/17.93 new_ltEs5(Right(xuu530), Right(xuu540), ge, app(app(ty_Either, gf), gg)) -> new_ltEs5(xuu530, xuu540, gf, gg) 35.72/17.93 new_compare6(Right(xuu311000), Left(xuu600), bf, bg) -> GT 35.72/17.93 new_ltEs18(xuu532, xuu542, app(app(ty_@2, bdf), bdg)) -> new_ltEs13(xuu532, xuu542, bdf, bdg) 35.72/17.93 new_compare10(xuu198, xuu199, xuu200, xuu201, True, bh, ca) -> LT 35.72/17.93 new_sr(xuu311000, xuu601) -> new_primMulInt(xuu311000, xuu601) 35.72/17.93 new_esEs8(xuu311002, xuu602, ty_Char) -> new_esEs15(xuu311002, xuu602) 35.72/17.93 new_esEs38(xuu530, xuu540, app(ty_Ratio, efc)) -> new_esEs21(xuu530, xuu540, efc) 35.72/17.93 new_primMulNat0(Zero, Zero) -> Zero 35.72/17.93 new_compare28(EQ, LT) -> GT 35.72/17.93 new_esEs24(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, gab), gac)) -> new_esEs16(xuu3110000, xuu6000, gab, gac) 35.72/17.93 new_ltEs20(xuu60, xuu61, app(ty_Maybe, cfg)) -> new_ltEs12(xuu60, xuu61, cfg) 35.72/17.93 new_esEs7(xuu311001, xuu601, ty_Char) -> new_esEs15(xuu311001, xuu601) 35.72/17.93 new_compare16(True, True) -> EQ 35.72/17.93 new_esEs4(xuu311000, xuu600, app(app(ty_@2, egf), egg)) -> new_esEs16(xuu311000, xuu600, egf, egg) 35.72/17.93 new_compare9(@0, @0) -> EQ 35.72/17.93 new_gt(xuu22, xuu17, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs41(new_compare18(xuu22, xuu17, dge, dgf, dgg)) 35.72/17.93 new_compare17(xuu311000, xuu600, app(ty_Maybe, dag)) -> new_compare15(xuu311000, xuu600, dag) 35.72/17.93 new_lt24(xuu31100, xuu60, app(app(ty_@2, ced), cee)) -> new_lt15(xuu31100, xuu60, ced, cee) 35.72/17.93 new_esEs39(xuu3110000, xuu6000, app(app(ty_@2, ffd), ffe)) -> new_esEs16(xuu3110000, xuu6000, ffd, ffe) 35.72/17.93 new_esEs9(xuu311000, xuu600, ty_Ordering) -> new_esEs25(xuu311000, xuu600) 35.72/17.93 new_esEs27(xuu530, xuu540, ty_Ordering) -> new_esEs25(xuu530, xuu540) 35.72/17.93 new_esEs37(xuu3110000, xuu6000, ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.93 new_ltEs22(xuu125, xuu127, app(ty_Ratio, ecf)) -> new_ltEs14(xuu125, xuu127, ecf) 35.72/17.93 new_esEs33(xuu3110002, xuu6002, ty_Double) -> new_esEs20(xuu3110002, xuu6002) 35.72/17.93 new_esEs19(Right(xuu3110000), Right(xuu6000), df, ty_Float) -> new_esEs12(xuu3110000, xuu6000) 35.72/17.93 new_esEs9(xuu311000, xuu600, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs17(xuu311000, xuu600, cgf, cgg, cgh) 35.72/17.93 new_ltEs14(xuu53, xuu54, dca) -> new_fsEs(new_compare29(xuu53, xuu54, dca)) 35.72/17.93 new_ltEs23(xuu531, xuu541, ty_Ordering) -> new_ltEs10(xuu531, xuu541) 35.72/17.93 new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Double, cb) -> new_esEs20(xuu3110000, xuu6000) 35.72/17.93 new_primCompAux0(xuu81, EQ) -> xuu81 35.72/17.93 new_esEs9(xuu311000, xuu600, ty_Bool) -> new_esEs18(xuu311000, xuu600) 35.72/17.93 new_lt23(xuu530, xuu540, app(app(ty_@2, efa), efb)) -> new_lt15(xuu530, xuu540, efa, efb) 35.72/17.93 new_compare28(EQ, EQ) -> EQ 35.72/17.93 new_esEs37(xuu3110000, xuu6000, app(ty_[], edh)) -> new_esEs22(xuu3110000, xuu6000, edh) 35.72/17.93 new_lt10(xuu31100, xuu60) -> new_esEs26(new_compare8(xuu31100, xuu60)) 35.72/17.93 new_ltEs24(xuu87, xuu88, app(app(ty_Either, fch), fda)) -> new_ltEs5(xuu87, xuu88, fch, fda) 35.72/17.93 new_compare111(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, False, dhf, dhg, dhh) -> GT 35.72/17.93 new_esEs32(xuu3110001, xuu6001, app(ty_[], cch)) -> new_esEs22(xuu3110001, xuu6001, cch) 35.72/17.93 new_esEs7(xuu311001, xuu601, ty_Int) -> new_esEs13(xuu311001, xuu601) 35.72/17.93 new_esEs40(xuu3110001, xuu6001, app(app(ty_@2, fgf), fgg)) -> new_esEs16(xuu3110001, xuu6001, fgf, fgg) 35.72/17.93 new_esEs32(xuu3110001, xuu6001, ty_Double) -> new_esEs20(xuu3110001, xuu6001) 35.72/17.93 new_lt22(xuu124, xuu126, app(ty_Ratio, ebd)) -> new_lt16(xuu124, xuu126, ebd) 35.72/17.93 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 35.72/17.93 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 35.72/17.93 new_ltEs21(xuu53, xuu54, ty_Integer) -> new_ltEs8(xuu53, xuu54) 35.72/17.93 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 35.72/17.93 new_lt23(xuu530, xuu540, ty_Ordering) -> new_lt12(xuu530, xuu540) 35.72/17.93 new_ltEs21(xuu53, xuu54, app(ty_Ratio, dca)) -> new_ltEs14(xuu53, xuu54, dca) 35.72/17.93 new_ltEs19(xuu113, xuu116, app(ty_Maybe, bhf)) -> new_ltEs12(xuu113, xuu116, bhf) 35.72/17.93 new_ltEs18(xuu532, xuu542, app(app(ty_Either, bcg), bch)) -> new_ltEs5(xuu532, xuu542, bcg, bch) 35.72/17.93 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 35.72/17.93 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 35.72/17.93 new_gt(xuu22, xuu17, ty_Int) -> new_gt0(xuu22, xuu17) 35.72/17.93 new_primCmpInt(Neg(Zero), Neg(Succ(xuu6000))) -> new_primCmpNat0(Succ(xuu6000), Zero) 35.72/17.93 new_esEs7(xuu311001, xuu601, app(ty_Ratio, def)) -> new_esEs21(xuu311001, xuu601, def) 35.72/17.93 new_esEs29(xuu111, xuu114, app(app(ty_Either, bed), bee)) -> new_esEs19(xuu111, xuu114, bed, bee) 35.72/17.93 new_ltEs10(LT, EQ) -> True 35.72/17.93 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 35.72/17.93 new_lt22(xuu124, xuu126, ty_Double) -> new_lt9(xuu124, xuu126) 35.72/17.93 new_esEs19(Right(xuu3110000), Right(xuu6000), df, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs17(xuu3110000, xuu6000, ea, eb, ec) 35.72/17.93 new_ltEs5(Left(xuu530), Left(xuu540), app(ty_[], fh), fc) -> new_ltEs11(xuu530, xuu540, fh) 35.72/17.93 new_compare17(xuu311000, xuu600, app(app(app(ty_@3, dac), dad), dae)) -> new_compare18(xuu311000, xuu600, dac, dad, dae) 35.72/17.93 new_esEs19(Right(xuu3110000), Right(xuu6000), df, app(app(ty_Either, ed), ee)) -> new_esEs19(xuu3110000, xuu6000, ed, ee) 35.72/17.93 new_compare12(xuu168, xuu169, True, cab) -> LT 35.72/17.93 new_esEs5(xuu311000, xuu600, ty_Int) -> new_esEs13(xuu311000, xuu600) 35.72/17.93 new_lt20(xuu111, xuu114, app(app(ty_@2, bfc), bfd)) -> new_lt15(xuu111, xuu114, bfc, bfd) 35.72/17.93 new_esEs19(Right(xuu3110000), Right(xuu6000), df, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 35.72/17.93 new_compare17(xuu311000, xuu600, ty_@0) -> new_compare9(xuu311000, xuu600) 35.72/17.93 new_esEs6(xuu311000, xuu600, app(ty_Ratio, ddd)) -> new_esEs21(xuu311000, xuu600, ddd) 35.72/17.93 new_esEs27(xuu530, xuu540, app(ty_Maybe, bba)) -> new_esEs24(xuu530, xuu540, bba) 35.72/17.93 new_esEs11(xuu311001, xuu601, app(ty_[], fce)) -> new_esEs22(xuu311001, xuu601, fce) 35.72/17.93 new_esEs40(xuu3110001, xuu6001, ty_Int) -> new_esEs13(xuu3110001, xuu6001) 35.72/17.93 new_esEs24(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.93 new_not(False) -> True 35.72/17.93 new_esEs36(xuu124, xuu126, app(ty_[], eah)) -> new_esEs22(xuu124, xuu126, eah) 35.72/17.93 new_ltEs12(Just(xuu530), Just(xuu540), ty_@0) -> new_ltEs17(xuu530, xuu540) 35.72/17.93 new_ltEs12(Just(xuu530), Just(xuu540), ty_Float) -> new_ltEs9(xuu530, xuu540) 35.72/17.93 new_esEs36(xuu124, xuu126, app(app(ty_@2, ebb), ebc)) -> new_esEs16(xuu124, xuu126, ebb, ebc) 35.72/17.93 new_esEs8(xuu311002, xuu602, ty_@0) -> new_esEs14(xuu311002, xuu602) 35.72/17.93 new_ltEs24(xuu87, xuu88, app(app(app(ty_@3, fdb), fdc), fdd)) -> new_ltEs6(xuu87, xuu88, fdb, fdc, fdd) 35.72/17.93 new_esEs27(xuu530, xuu540, ty_Integer) -> new_esEs23(xuu530, xuu540) 35.72/17.93 new_esEs36(xuu124, xuu126, ty_Double) -> new_esEs20(xuu124, xuu126) 35.72/17.93 new_gt(xuu22, xuu17, ty_Integer) -> new_esEs41(new_compare8(xuu22, xuu17)) 35.72/17.93 new_esEs41(LT) -> False 35.72/17.93 new_ltEs20(xuu60, xuu61, app(ty_Ratio, cgb)) -> new_ltEs14(xuu60, xuu61, cgb) 35.72/17.93 new_esEs38(xuu530, xuu540, app(app(ty_@2, efa), efb)) -> new_esEs16(xuu530, xuu540, efa, efb) 35.72/17.93 new_compare28(GT, GT) -> EQ 35.72/17.93 new_esEs28(xuu531, xuu541, app(app(ty_Either, bbe), bbf)) -> new_esEs19(xuu531, xuu541, bbe, bbf) 35.72/17.93 new_esEs26(EQ) -> False 35.72/17.93 new_ltEs5(Left(xuu530), Left(xuu540), ty_Int, fc) -> new_ltEs4(xuu530, xuu540) 35.72/17.93 new_compare17(xuu311000, xuu600, app(app(ty_Either, daa), dab)) -> new_compare6(xuu311000, xuu600, daa, dab) 35.72/17.93 new_lt23(xuu530, xuu540, ty_Double) -> new_lt9(xuu530, xuu540) 35.72/17.93 new_ltEs24(xuu87, xuu88, app(ty_Maybe, fdf)) -> new_ltEs12(xuu87, xuu88, fdf) 35.72/17.93 new_compare27(Float(xuu311000, Pos(xuu3110010)), Float(xuu600, Pos(xuu6010))) -> new_compare7(new_sr(xuu311000, Pos(xuu6010)), new_sr(Pos(xuu3110010), xuu600)) 35.72/17.93 new_ltEs19(xuu113, xuu116, app(ty_Ratio, caa)) -> new_ltEs14(xuu113, xuu116, caa) 35.72/17.93 new_lt22(xuu124, xuu126, app(app(ty_@2, ebb), ebc)) -> new_lt15(xuu124, xuu126, ebb, ebc) 35.72/17.93 new_lt8(xuu31100, xuu60, dcb, dcc, dcd) -> new_esEs26(new_compare18(xuu31100, xuu60, dcb, dcc, dcd)) 35.72/17.93 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 35.72/17.93 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 35.72/17.93 new_compare15(Nothing, Just(xuu600), cgc) -> LT 35.72/17.93 new_esEs19(Right(xuu3110000), Right(xuu6000), df, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 35.72/17.93 new_esEs11(xuu311001, xuu601, ty_Double) -> new_esEs20(xuu311001, xuu601) 35.72/17.93 new_ltEs23(xuu531, xuu541, ty_Bool) -> new_ltEs15(xuu531, xuu541) 35.72/17.93 new_ltEs24(xuu87, xuu88, ty_Char) -> new_ltEs16(xuu87, xuu88) 35.72/17.93 new_ltEs5(Right(xuu530), Right(xuu540), ge, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs6(xuu530, xuu540, gh, ha, hb) 35.72/17.93 new_lt24(xuu31100, xuu60, ty_Integer) -> new_lt10(xuu31100, xuu60) 35.72/17.93 new_compare211(xuu124, xuu125, xuu126, xuu127, False, eaa, eab) -> new_compare112(xuu124, xuu125, xuu126, xuu127, new_lt22(xuu124, xuu126, eaa), new_asAs(new_esEs36(xuu124, xuu126, eaa), new_ltEs22(xuu125, xuu127, eab)), eaa, eab) 35.72/17.93 new_esEs26(GT) -> False 35.72/17.93 new_ltEs21(xuu53, xuu54, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs6(xuu53, xuu54, hh, baa, bab) 35.72/17.93 new_compare17(xuu311000, xuu600, ty_Char) -> new_compare30(xuu311000, xuu600) 35.72/17.93 new_ltEs24(xuu87, xuu88, ty_Integer) -> new_ltEs8(xuu87, xuu88) 35.72/17.93 new_ltEs5(Left(xuu530), Left(xuu540), ty_Double, fc) -> new_ltEs7(xuu530, xuu540) 35.72/17.93 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 35.72/17.93 new_ltEs21(xuu53, xuu54, app(app(ty_Either, ge), fc)) -> new_ltEs5(xuu53, xuu54, ge, fc) 35.72/17.93 new_ltEs21(xuu53, xuu54, ty_Ordering) -> new_ltEs10(xuu53, xuu54) 35.72/17.93 new_compare28(GT, LT) -> GT 35.72/17.93 new_ltEs22(xuu125, xuu127, app(app(ty_Either, ebe), ebf)) -> new_ltEs5(xuu125, xuu127, ebe, ebf) 35.72/17.93 new_ltEs23(xuu531, xuu541, ty_Integer) -> new_ltEs8(xuu531, xuu541) 35.72/17.93 new_lt24(xuu31100, xuu60, app(ty_Ratio, dhe)) -> new_lt16(xuu31100, xuu60, dhe) 35.72/17.93 new_compare17(xuu311000, xuu600, app(ty_Ratio, dbb)) -> new_compare29(xuu311000, xuu600, dbb) 35.72/17.93 new_esEs9(xuu311000, xuu600, ty_Char) -> new_esEs15(xuu311000, xuu600) 35.72/17.93 new_compare30(Char(xuu311000), Char(xuu600)) -> new_primCmpNat0(xuu311000, xuu600) 35.72/17.93 new_esEs39(xuu3110000, xuu6000, app(ty_Ratio, fgc)) -> new_esEs21(xuu3110000, xuu6000, fgc) 35.72/17.93 new_esEs27(xuu530, xuu540, app(app(ty_Either, bac), bad)) -> new_esEs19(xuu530, xuu540, bac, bad) 35.72/17.93 new_esEs24(Nothing, Nothing, egh) -> True 35.72/17.93 new_ltEs22(xuu125, xuu127, app(ty_Maybe, ecc)) -> new_ltEs12(xuu125, xuu127, ecc) 35.72/17.93 new_compare17(xuu311000, xuu600, ty_Integer) -> new_compare8(xuu311000, xuu600) 35.72/17.93 new_lt24(xuu31100, xuu60, ty_Double) -> new_lt9(xuu31100, xuu60) 35.72/17.93 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 35.72/17.93 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 35.72/17.93 new_compare110(xuu147, xuu148, False, fhh, gaa) -> GT 35.72/17.93 new_primEqNat0(Zero, Zero) -> True 35.72/17.93 new_compare28(LT, EQ) -> LT 35.72/17.93 new_ltEs18(xuu532, xuu542, app(ty_Ratio, bdh)) -> new_ltEs14(xuu532, xuu542, bdh) 35.72/17.93 new_ltEs23(xuu531, xuu541, app(ty_Maybe, egb)) -> new_ltEs12(xuu531, xuu541, egb) 35.72/17.93 new_ltEs5(Right(xuu530), Right(xuu540), ge, ty_Ordering) -> new_ltEs10(xuu530, xuu540) 35.72/17.93 new_esEs37(xuu3110000, xuu6000, app(app(ty_@2, ech), eda)) -> new_esEs16(xuu3110000, xuu6000, ech, eda) 35.72/17.93 new_esEs24(Nothing, Just(xuu6000), egh) -> False 35.72/17.93 new_esEs24(Just(xuu3110000), Nothing, egh) -> False 35.72/17.93 new_ltEs24(xuu87, xuu88, ty_Bool) -> new_ltEs15(xuu87, xuu88) 35.72/17.93 new_esEs4(xuu311000, xuu600, app(ty_Ratio, cef)) -> new_esEs21(xuu311000, xuu600, cef) 35.72/17.93 new_ltEs10(LT, GT) -> True 35.72/17.93 new_asAs(False, xuu163) -> False 35.72/17.93 new_esEs4(xuu311000, xuu600, ty_Int) -> new_esEs13(xuu311000, xuu600) 35.72/17.93 new_lt5(xuu530, xuu540, app(app(ty_@2, bbb), bbc)) -> new_lt15(xuu530, xuu540, bbb, bbc) 35.72/17.93 new_ltEs19(xuu113, xuu116, ty_Ordering) -> new_ltEs10(xuu113, xuu116) 35.72/17.93 new_ltEs20(xuu60, xuu61, ty_Ordering) -> new_ltEs10(xuu60, xuu61) 35.72/17.93 new_ltEs22(xuu125, xuu127, app(app(app(ty_@3, ebg), ebh), eca)) -> new_ltEs6(xuu125, xuu127, ebg, ebh, eca) 35.72/17.93 new_esEs24(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, gba)) -> new_esEs21(xuu3110000, xuu6000, gba) 35.72/17.93 new_esEs25(EQ, EQ) -> True 35.72/17.93 new_esEs39(xuu3110000, xuu6000, ty_Int) -> new_esEs13(xuu3110000, xuu6000) 35.72/17.93 35.72/17.93 The set Q consists of the following terms: 35.72/17.93 35.72/17.93 new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_lt20(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_ltEs21(x0, x1, ty_Char) 35.72/17.93 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs38(x0, x1, app(ty_[], x2)) 35.72/17.93 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 35.72/17.93 new_esEs24(Just(x0), Just(x1), ty_Char) 35.72/17.93 new_lt20(x0, x1, ty_Integer) 35.72/17.93 new_compare28(EQ, LT) 35.72/17.93 new_compare28(LT, EQ) 35.72/17.93 new_compare15(Just(x0), Nothing, x1) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 35.72/17.93 new_lt21(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs37(x0, x1, ty_Bool) 35.72/17.93 new_ltEs20(x0, x1, ty_Ordering) 35.72/17.93 new_esEs37(x0, x1, ty_@0) 35.72/17.93 new_lt4(x0, x1, x2, x3) 35.72/17.93 new_esEs18(True, True) 35.72/17.93 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_primEqInt(Pos(Zero), Pos(Zero)) 35.72/17.93 new_gt(x0, x1, ty_Float) 35.72/17.93 new_lt20(x0, x1, ty_Bool) 35.72/17.93 new_esEs24(Just(x0), Just(x1), ty_Ordering) 35.72/17.93 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs29(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs20(Double(x0, x1), Double(x2, x3)) 35.72/17.93 new_esEs37(x0, x1, ty_Integer) 35.72/17.93 new_gt(x0, x1, ty_Integer) 35.72/17.93 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_lt5(x0, x1, ty_Float) 35.72/17.93 new_esEs37(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_ltEs20(x0, x1, ty_Double) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), ty_Bool) 35.72/17.93 new_primEqNat0(Zero, Succ(x0)) 35.72/17.93 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_compare110(x0, x1, True, x2, x3) 35.72/17.93 new_ltEs20(x0, x1, ty_Char) 35.72/17.93 new_esEs9(x0, x1, ty_Char) 35.72/17.93 new_primEqInt(Neg(Zero), Neg(Zero)) 35.72/17.93 new_esEs25(LT, LT) 35.72/17.93 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_compare18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 35.72/17.93 new_esEs12(Float(x0, x1), Float(x2, x3)) 35.72/17.93 new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_lt5(x0, x1, ty_Integer) 35.72/17.93 new_ltEs15(False, True) 35.72/17.93 new_ltEs15(True, False) 35.72/17.93 new_ltEs22(x0, x1, ty_Float) 35.72/17.93 new_ltEs11(x0, x1, x2) 35.72/17.93 new_compare3([], :(x0, x1), x2) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), ty_Integer) 35.72/17.93 new_compare15(Nothing, Nothing, x0) 35.72/17.93 new_esEs28(x0, x1, ty_Char) 35.72/17.93 new_compare6(Left(x0), Right(x1), x2, x3) 35.72/17.93 new_compare6(Right(x0), Left(x1), x2, x3) 35.72/17.93 new_compare6(Right(x0), Right(x1), x2, x3) 35.72/17.93 new_esEs28(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs40(x0, x1, ty_Float) 35.72/17.93 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_lt24(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 35.72/17.93 new_ltEs18(x0, x1, ty_Char) 35.72/17.93 new_esEs5(x0, x1, ty_Ordering) 35.72/17.93 new_primEqInt(Pos(Zero), Neg(Zero)) 35.72/17.93 new_primEqInt(Neg(Zero), Pos(Zero)) 35.72/17.93 new_fsEs(x0) 35.72/17.93 new_primCompAux1(x0, x1, x2, x3) 35.72/17.93 new_esEs32(x0, x1, ty_Float) 35.72/17.93 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 35.72/17.93 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 35.72/17.93 new_lt22(x0, x1, ty_Char) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_ltEs18(x0, x1, ty_Double) 35.72/17.93 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_lt6(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs25(LT, EQ) 35.72/17.93 new_esEs25(EQ, LT) 35.72/17.93 new_esEs9(x0, x1, app(ty_[], x2)) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 35.72/17.93 new_ltEs21(x0, x1, ty_Ordering) 35.72/17.93 new_esEs25(EQ, GT) 35.72/17.93 new_esEs25(GT, EQ) 35.72/17.93 new_esEs35(x0, x1, ty_Int) 35.72/17.93 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_compare10(x0, x1, x2, x3, True, x4, x5) 35.72/17.93 new_compare28(EQ, EQ) 35.72/17.93 new_esEs32(x0, x1, ty_@0) 35.72/17.93 new_lt22(x0, x1, ty_Double) 35.72/17.93 new_primEqNat0(Succ(x0), Succ(x1)) 35.72/17.93 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_lt22(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs7(x0, x1, ty_Ordering) 35.72/17.93 new_esEs19(Left(x0), Left(x1), ty_Double, x2) 35.72/17.93 new_esEs6(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_ltEs12(Just(x0), Nothing, x1) 35.72/17.93 new_esEs40(x0, x1, ty_Integer) 35.72/17.93 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_lt5(x0, x1, ty_@0) 35.72/17.93 new_esEs11(x0, x1, ty_Ordering) 35.72/17.93 new_lt14(x0, x1, x2) 35.72/17.93 new_ltEs23(x0, x1, ty_Ordering) 35.72/17.93 new_esEs5(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_ltEs10(GT, GT) 35.72/17.93 new_ltEs7(x0, x1) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 35.72/17.93 new_esEs29(x0, x1, ty_Char) 35.72/17.93 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_lt15(x0, x1, x2, x3) 35.72/17.93 new_lt21(x0, x1, ty_Char) 35.72/17.93 new_esEs28(x0, x1, ty_Double) 35.72/17.93 new_esEs7(x0, x1, ty_Double) 35.72/17.93 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_ltEs24(x0, x1, ty_Char) 35.72/17.93 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs27(x0, x1, ty_Integer) 35.72/17.93 new_lt8(x0, x1, x2, x3, x4) 35.72/17.93 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 35.72/17.93 new_esEs29(x0, x1, ty_Ordering) 35.72/17.93 new_compare211(x0, x1, x2, x3, False, x4, x5) 35.72/17.93 new_esEs32(x0, x1, ty_Bool) 35.72/17.93 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 35.72/17.93 new_lt9(x0, x1) 35.72/17.93 new_esEs5(x0, x1, ty_Double) 35.72/17.93 new_esEs10(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_ltEs19(x0, x1, ty_Int) 35.72/17.93 new_ltEs23(x0, x1, ty_Char) 35.72/17.93 new_esEs11(x0, x1, ty_Float) 35.72/17.93 new_esEs39(x0, x1, ty_Char) 35.72/17.93 new_esEs10(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs8(x0, x1, ty_Int) 35.72/17.93 new_lt13(x0, x1, x2) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 35.72/17.93 new_ltEs13(@2(x0, x1), @2(x2, x3), x4, x5) 35.72/17.93 new_esEs36(x0, x1, ty_Float) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, ty_Double) 35.72/17.93 new_ltEs19(x0, x1, ty_Bool) 35.72/17.93 new_esEs27(x0, x1, ty_Float) 35.72/17.93 new_ltEs21(x0, x1, ty_Double) 35.72/17.93 new_esEs4(x0, x1, ty_Integer) 35.72/17.93 new_lt21(x0, x1, ty_Ordering) 35.72/17.93 new_esEs31(x0, x1, ty_Double) 35.72/17.93 new_gt0(x0, x1) 35.72/17.93 new_esEs27(x0, x1, ty_Bool) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 35.72/17.93 new_esEs9(x0, x1, ty_Ordering) 35.72/17.93 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs32(x0, x1, ty_Integer) 35.72/17.93 new_compare210(x0, x1, False, x2, x3) 35.72/17.93 new_esEs8(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs30(x0, x1, ty_Double) 35.72/17.93 new_gt(x0, x1, ty_Int) 35.72/17.93 new_esEs33(x0, x1, ty_Char) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, ty_@0) 35.72/17.93 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 35.72/17.93 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 35.72/17.93 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs4(x0, x1, ty_Ordering) 35.72/17.93 new_esEs40(x0, x1, ty_Ordering) 35.72/17.93 new_asAs(False, x0) 35.72/17.93 new_compare17(x0, x1, ty_Int) 35.72/17.93 new_esEs11(x0, x1, ty_Char) 35.72/17.93 new_esEs8(x0, x1, ty_Bool) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 35.72/17.93 new_gt(x0, x1, ty_Bool) 35.72/17.93 new_ltEs19(x0, x1, ty_Integer) 35.72/17.93 new_esEs9(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_ltEs18(x0, x1, ty_Ordering) 35.72/17.93 new_compare14(x0, x1, False, x2, x3) 35.72/17.93 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_lt24(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_lt20(x0, x1, ty_@0) 35.72/17.93 new_lt16(x0, x1, x2) 35.72/17.93 new_esEs30(x0, x1, ty_@0) 35.72/17.93 new_esEs27(x0, x1, ty_Int) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), ty_@0) 35.72/17.93 new_esEs40(x0, x1, app(ty_[], x2)) 35.72/17.93 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 35.72/17.93 new_esEs7(x0, x1, ty_Bool) 35.72/17.93 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_compare15(Nothing, Just(x0), x1) 35.72/17.93 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 35.72/17.93 new_esEs31(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_lt6(x0, x1, ty_Int) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 35.72/17.93 new_esEs29(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_compare17(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_sr0(Integer(x0), Integer(x1)) 35.72/17.93 new_esEs30(x0, x1, ty_Char) 35.72/17.93 new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 35.72/17.93 new_esEs4(x0, x1, ty_Bool) 35.72/17.93 new_esEs34(x0, x1, ty_Integer) 35.72/17.93 new_lt5(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 35.72/17.93 new_esEs35(x0, x1, ty_Integer) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 35.72/17.93 new_ltEs10(EQ, EQ) 35.72/17.93 new_compare9(@0, @0) 35.72/17.93 new_esEs7(x0, x1, ty_Integer) 35.72/17.93 new_lt22(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_ltEs24(x0, x1, app(ty_[], x2)) 35.72/17.93 new_compare112(x0, x1, x2, x3, False, x4, x5, x6) 35.72/17.93 new_asAs(True, x0) 35.72/17.93 new_esEs6(x0, x1, ty_@0) 35.72/17.93 new_lt6(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs6(x0, x1, ty_Char) 35.72/17.93 new_esEs28(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs39(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_primMulNat0(Succ(x0), Zero) 35.72/17.93 new_esEs24(Just(x0), Just(x1), ty_Float) 35.72/17.93 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 35.72/17.93 new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 35.72/17.93 new_esEs30(x0, x1, ty_Bool) 35.72/17.93 new_lt21(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs15(Char(x0), Char(x1)) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 35.72/17.93 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_primPlusNat0(Zero, Zero) 35.72/17.93 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 35.72/17.93 new_esEs6(x0, x1, ty_Int) 35.72/17.93 new_esEs25(EQ, EQ) 35.72/17.93 new_esEs5(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs10(x0, x1, ty_Integer) 35.72/17.93 new_esEs38(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_not(True) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 35.72/17.93 new_lt24(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_ltEs10(GT, LT) 35.72/17.93 new_ltEs10(LT, GT) 35.72/17.93 new_compare12(x0, x1, False, x2) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 35.72/17.93 new_lt21(x0, x1, ty_Double) 35.72/17.93 new_esEs40(x0, x1, ty_@0) 35.72/17.93 new_lt22(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_ltEs24(x0, x1, ty_Ordering) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 35.72/17.93 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs4(x0, x1, ty_Int) 35.72/17.93 new_lt11(x0, x1) 35.72/17.93 new_esEs9(x0, x1, ty_Float) 35.72/17.93 new_esEs7(x0, x1, ty_Char) 35.72/17.93 new_esEs10(x0, x1, ty_Char) 35.72/17.93 new_esEs8(x0, x1, ty_Float) 35.72/17.93 new_ltEs22(x0, x1, ty_Double) 35.72/17.93 new_compare210(x0, x1, True, x2, x3) 35.72/17.93 new_ltEs19(x0, x1, ty_@0) 35.72/17.93 new_esEs36(x0, x1, ty_Ordering) 35.72/17.93 new_ltEs18(x0, x1, ty_Float) 35.72/17.93 new_esEs22(:(x0, x1), [], x2) 35.72/17.93 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs10(x0, x1, ty_Int) 35.72/17.93 new_esEs25(LT, GT) 35.72/17.93 new_esEs25(GT, LT) 35.72/17.93 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_lt24(x0, x1, ty_Int) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) 35.72/17.93 new_pePe(False, x0) 35.72/17.93 new_esEs18(False, False) 35.72/17.93 new_lt23(x0, x1, ty_Double) 35.72/17.93 new_lt21(x0, x1, ty_Int) 35.72/17.93 new_lt24(x0, x1, ty_Bool) 35.72/17.93 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_compare28(GT, EQ) 35.72/17.93 new_compare28(EQ, GT) 35.72/17.93 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_lt6(x0, x1, ty_Char) 35.72/17.93 new_ltEs5(Left(x0), Right(x1), x2, x3) 35.72/17.93 new_ltEs5(Right(x0), Left(x1), x2, x3) 35.72/17.93 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 35.72/17.93 new_esEs30(x0, x1, ty_Integer) 35.72/17.93 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_lt23(x0, x1, ty_Char) 35.72/17.93 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs10(x0, x1, ty_Double) 35.72/17.93 new_ltEs22(x0, x1, app(ty_[], x2)) 35.72/17.93 new_ltEs20(x0, x1, ty_Float) 35.72/17.93 new_lt24(x0, x1, ty_Char) 35.72/17.93 new_esEs4(x0, x1, ty_Double) 35.72/17.93 new_esEs31(x0, x1, ty_Ordering) 35.72/17.93 new_lt6(x0, x1, ty_Double) 35.72/17.93 new_lt24(x0, x1, ty_Double) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 35.72/17.93 new_esEs33(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs32(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_lt23(x0, x1, ty_Int) 35.72/17.93 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs4(x0, x1, ty_Char) 35.72/17.93 new_esEs10(x0, x1, ty_Bool) 35.72/17.93 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 35.72/17.93 new_esEs21(:%(x0, x1), :%(x2, x3), x4) 35.72/17.93 new_esEs30(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) 35.72/17.93 new_esEs24(Nothing, Nothing, x0) 35.72/17.93 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs38(x0, x1, ty_Ordering) 35.72/17.93 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_lt20(x0, x1, ty_Int) 35.72/17.93 new_esEs37(x0, x1, ty_Int) 35.72/17.93 new_primMulNat0(Zero, Succ(x0)) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 35.72/17.93 new_esEs4(x0, x1, ty_Float) 35.72/17.93 new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) 35.72/17.93 new_esEs7(x0, x1, ty_Float) 35.72/17.93 new_lt20(x0, x1, ty_Char) 35.72/17.93 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs22([], :(x0, x1), x2) 35.72/17.93 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_lt18(x0, x1) 35.72/17.93 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 35.72/17.93 new_esEs30(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs6(x0, x1, ty_Float) 35.72/17.93 new_lt24(x0, x1, ty_Float) 35.72/17.93 new_compare27(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 35.72/17.93 new_compare27(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 35.72/17.93 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs23(Integer(x0), Integer(x1)) 35.72/17.93 new_gt(x0, x1, ty_@0) 35.72/17.93 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_ltEs23(x0, x1, ty_Double) 35.72/17.93 new_esEs37(x0, x1, ty_Float) 35.72/17.93 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 35.72/17.93 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 35.72/17.93 new_esEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 35.72/17.93 new_esEs22(:(x0, x1), :(x2, x3), x4) 35.72/17.93 new_esEs9(x0, x1, ty_Double) 35.72/17.93 new_esEs36(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_compare13(@2(x0, x1), @2(x2, x3), x4, x5) 35.72/17.93 new_esEs6(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs7(x0, x1, ty_Int) 35.72/17.93 new_compare16(True, True) 35.72/17.93 new_esEs10(x0, x1, ty_Float) 35.72/17.93 new_compare25(x0, x1, False, x2, x3) 35.72/17.93 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_primEqNat0(Zero, Zero) 35.72/17.93 new_compare12(x0, x1, True, x2) 35.72/17.93 new_ltEs22(x0, x1, ty_Ordering) 35.72/17.93 new_compare17(x0, x1, ty_Double) 35.72/17.93 new_esEs36(x0, x1, ty_Double) 35.72/17.93 new_not(False) 35.72/17.93 new_esEs37(x0, x1, app(ty_[], x2)) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 35.72/17.93 new_esEs39(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_lt5(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs27(x0, x1, ty_Double) 35.72/17.93 new_esEs32(x0, x1, app(ty_[], x2)) 35.72/17.93 new_lt5(x0, x1, ty_Char) 35.72/17.93 new_esEs30(x0, x1, ty_Float) 35.72/17.93 new_esEs8(x0, x1, ty_Double) 35.72/17.93 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_primPlusNat0(Zero, Succ(x0)) 35.72/17.93 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 35.72/17.93 new_ltEs23(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs29(x0, x1, ty_Double) 35.72/17.93 new_ltEs24(x0, x1, ty_Double) 35.72/17.93 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_lt22(x0, x1, ty_Ordering) 35.72/17.93 new_esEs6(x0, x1, ty_Integer) 35.72/17.93 new_lt5(x0, x1, ty_Int) 35.72/17.93 new_compare17(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_compare17(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_lt20(x0, x1, ty_Float) 35.72/17.93 new_lt20(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs22([], [], x0) 35.72/17.93 new_esEs28(x0, x1, ty_Ordering) 35.72/17.93 new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) 35.72/17.93 new_esEs4(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs6(x0, x1, ty_Bool) 35.72/17.93 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_compare112(x0, x1, x2, x3, True, x4, x5, x6) 35.72/17.93 new_lt5(x0, x1, ty_Bool) 35.72/17.93 new_pePe(True, x0) 35.72/17.93 new_lt23(x0, x1, app(ty_[], x2)) 35.72/17.93 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 35.72/17.93 new_esEs41(LT) 35.72/17.93 new_esEs11(x0, x1, ty_Double) 35.72/17.93 new_esEs31(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 35.72/17.93 new_esEs30(x0, x1, ty_Int) 35.72/17.93 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs24(Just(x0), Just(x1), ty_Double) 35.72/17.93 new_lt23(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 35.72/17.93 new_esEs33(x0, x1, ty_@0) 35.72/17.93 new_esEs37(x0, x1, ty_Char) 35.72/17.93 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs26(LT) 35.72/17.93 new_primCompAux0(x0, EQ) 35.72/17.93 new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 35.72/17.93 new_esEs39(x0, x1, ty_Bool) 35.72/17.93 new_esEs29(x0, x1, ty_Integer) 35.72/17.93 new_primMulInt(Pos(x0), Pos(x1)) 35.72/17.93 new_primMulInt(Pos(x0), Neg(x1)) 35.72/17.93 new_primMulInt(Neg(x0), Pos(x1)) 35.72/17.93 new_esEs8(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs39(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs27(x0, x1, ty_Char) 35.72/17.93 new_esEs33(x0, x1, ty_Float) 35.72/17.93 new_esEs24(Just(x0), Just(x1), ty_Int) 35.72/17.93 new_compare3(:(x0, x1), [], x2) 35.72/17.93 new_esEs31(x0, x1, ty_Integer) 35.72/17.93 new_ltEs20(x0, x1, ty_Int) 35.72/17.93 new_ltEs10(LT, LT) 35.72/17.93 new_lt23(x0, x1, ty_Float) 35.72/17.93 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_lt21(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs36(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs9(x0, x1, ty_@0) 35.72/17.93 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_ltEs18(x0, x1, ty_Bool) 35.72/17.93 new_ltEs18(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs28(x0, x1, ty_Bool) 35.72/17.93 new_compare28(GT, GT) 35.72/17.93 new_lt5(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs39(x0, x1, ty_@0) 35.72/17.93 new_esEs29(x0, x1, ty_@0) 35.72/17.93 new_esEs9(x0, x1, ty_Int) 35.72/17.93 new_compare10(x0, x1, x2, x3, False, x4, x5) 35.72/17.93 new_compare14(x0, x1, True, x2, x3) 35.72/17.93 new_lt6(x0, x1, ty_Float) 35.72/17.93 new_primMulInt(Neg(x0), Neg(x1)) 35.72/17.93 new_ltEs23(x0, x1, ty_Bool) 35.72/17.93 new_ltEs19(x0, x1, ty_Double) 35.72/17.93 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_lt24(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs5(x0, x1, ty_Bool) 35.72/17.93 new_esEs29(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs19(Left(x0), Right(x1), x2, x3) 35.72/17.93 new_esEs19(Right(x0), Left(x1), x2, x3) 35.72/17.93 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_lt21(x0, x1, ty_Bool) 35.72/17.93 new_esEs5(x0, x1, ty_Integer) 35.72/17.93 new_esEs33(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_lt10(x0, x1) 35.72/17.93 new_lt21(x0, x1, ty_Float) 35.72/17.93 new_ltEs15(True, True) 35.72/17.93 new_esEs27(x0, x1, ty_Ordering) 35.72/17.93 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs11(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_compare17(x0, x1, ty_Ordering) 35.72/17.93 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 35.72/17.93 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs36(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_lt22(x0, x1, ty_Int) 35.72/17.93 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_ltEs10(GT, EQ) 35.72/17.93 new_ltEs10(EQ, GT) 35.72/17.93 new_compare7(x0, x1) 35.72/17.93 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 35.72/17.93 new_esEs39(x0, x1, ty_Integer) 35.72/17.93 new_compare211(x0, x1, x2, x3, True, x4, x5) 35.72/17.93 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_ltEs18(x0, x1, ty_@0) 35.72/17.93 new_compare27(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 35.72/17.93 new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) 35.72/17.93 new_esEs26(EQ) 35.72/17.93 new_ltEs24(x0, x1, ty_Integer) 35.72/17.93 new_esEs25(GT, GT) 35.72/17.93 new_ltEs23(x0, x1, ty_@0) 35.72/17.93 new_primCompAux0(x0, LT) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 35.72/17.93 new_primCmpNat0(Succ(x0), Succ(x1)) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 35.72/17.93 new_esEs33(x0, x1, ty_Integer) 35.72/17.93 new_ltEs23(x0, x1, ty_Float) 35.72/17.93 new_esEs28(x0, x1, ty_@0) 35.72/17.93 new_lt21(x0, x1, ty_@0) 35.72/17.93 new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_ltEs18(x0, x1, ty_Int) 35.72/17.93 new_primCmpNat0(Zero, Succ(x0)) 35.72/17.93 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_compare17(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs28(x0, x1, ty_Int) 35.72/17.93 new_ltEs12(Nothing, Nothing, x0) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 35.72/17.93 new_esEs11(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs41(GT) 35.72/17.93 new_esEs33(x0, x1, ty_Bool) 35.72/17.93 new_compare17(x0, x1, ty_Char) 35.72/17.93 new_esEs34(x0, x1, ty_Int) 35.72/17.93 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 35.72/17.93 new_esEs38(x0, x1, ty_Double) 35.72/17.93 new_ltEs20(x0, x1, ty_Bool) 35.72/17.93 new_ltEs10(EQ, LT) 35.72/17.93 new_esEs29(x0, x1, ty_Int) 35.72/17.93 new_ltEs10(LT, EQ) 35.72/17.93 new_lt6(x0, x1, ty_Bool) 35.72/17.93 new_lt23(x0, x1, ty_Integer) 35.72/17.93 new_ltEs8(x0, x1) 35.72/17.93 new_esEs8(x0, x1, ty_Char) 35.72/17.93 new_ltEs23(x0, x1, ty_Int) 35.72/17.93 new_esEs39(x0, x1, ty_Float) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), ty_Double) 35.72/17.93 new_esEs11(x0, x1, ty_Int) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 35.72/17.93 new_esEs18(False, True) 35.72/17.93 new_esEs18(True, False) 35.72/17.93 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_lt20(x0, x1, ty_Double) 35.72/17.93 new_lt6(x0, x1, ty_@0) 35.72/17.93 new_esEs39(x0, x1, ty_Int) 35.72/17.93 new_lt24(x0, x1, ty_Ordering) 35.72/17.93 new_esEs33(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_lt6(x0, x1, ty_Integer) 35.72/17.93 new_esEs24(Just(x0), Nothing, x1) 35.72/17.93 new_lt23(x0, x1, ty_Bool) 35.72/17.93 new_esEs6(x0, x1, ty_Double) 35.72/17.93 new_esEs29(x0, x1, ty_Float) 35.72/17.93 new_ltEs16(x0, x1) 35.72/17.93 new_esEs9(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs10(x0, x1, ty_Ordering) 35.72/17.93 new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 35.72/17.93 new_gt(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs28(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs4(x0, x1, app(ty_[], x2)) 35.72/17.93 new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 35.72/17.93 new_primMulNat0(Succ(x0), Succ(x1)) 35.72/17.93 new_esEs7(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs24(Just(x0), Just(x1), ty_Integer) 35.72/17.93 new_ltEs9(x0, x1) 35.72/17.93 new_ltEs19(x0, x1, ty_Char) 35.72/17.93 new_esEs8(x0, x1, ty_Ordering) 35.72/17.93 new_ltEs24(x0, x1, ty_Bool) 35.72/17.93 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 35.72/17.93 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 35.72/17.93 new_primCmpInt(Neg(Zero), Neg(Zero)) 35.72/17.93 new_compare17(x0, x1, ty_Float) 35.72/17.93 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs10(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_lt24(x0, x1, ty_Integer) 35.72/17.93 new_compare3([], [], x0) 35.72/17.93 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_compare28(LT, GT) 35.72/17.93 new_compare28(GT, LT) 35.72/17.93 new_ltEs19(x0, x1, ty_Ordering) 35.72/17.93 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs31(x0, x1, ty_@0) 35.72/17.93 new_primCmpInt(Pos(Zero), Neg(Zero)) 35.72/17.93 new_primCmpInt(Neg(Zero), Pos(Zero)) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 35.72/17.93 new_ltEs17(x0, x1) 35.72/17.93 new_ltEs24(x0, x1, ty_Int) 35.72/17.93 new_ltEs18(x0, x1, ty_Integer) 35.72/17.93 new_esEs9(x0, x1, ty_Bool) 35.72/17.93 new_esEs40(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_ltEs15(False, False) 35.72/17.93 new_esEs33(x0, x1, ty_Int) 35.72/17.93 new_esEs29(x0, x1, ty_Bool) 35.72/17.93 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_compare16(True, False) 35.72/17.93 new_compare16(False, True) 35.72/17.93 new_ltEs20(x0, x1, ty_Integer) 35.72/17.93 new_esEs27(x0, x1, app(ty_[], x2)) 35.72/17.93 new_compare27(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 35.72/17.93 new_esEs27(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_ltEs12(Nothing, Just(x0), x1) 35.72/17.93 new_esEs9(x0, x1, ty_Integer) 35.72/17.93 new_lt21(x0, x1, ty_Integer) 35.72/17.93 new_primCmpNat0(Succ(x0), Zero) 35.72/17.93 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 35.72/17.93 new_gt(x0, x1, ty_Char) 35.72/17.93 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_lt5(x0, x1, ty_Double) 35.72/17.93 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs7(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_lt23(x0, x1, ty_Ordering) 35.72/17.93 new_esEs32(x0, x1, ty_Ordering) 35.72/17.93 new_esEs5(x0, x1, ty_@0) 35.72/17.93 new_compare25(x0, x1, True, x2, x3) 35.72/17.93 new_esEs24(Just(x0), Just(x1), ty_Bool) 35.72/17.93 new_esEs11(x0, x1, ty_Bool) 35.72/17.93 new_lt24(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_gt(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_ltEs24(x0, x1, ty_Float) 35.72/17.93 new_ltEs21(x0, x1, ty_@0) 35.72/17.93 new_ltEs23(x0, x1, ty_Integer) 35.72/17.93 new_esEs37(x0, x1, ty_Double) 35.72/17.93 new_esEs8(x0, x1, ty_Integer) 35.72/17.93 new_esEs19(Left(x0), Left(x1), ty_Bool, x2) 35.72/17.93 new_esEs38(x0, x1, ty_Bool) 35.72/17.93 new_esEs36(x0, x1, ty_Char) 35.72/17.93 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs32(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_compare3(:(x0, x1), :(x2, x3), x4) 35.72/17.93 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs10(x0, x1, ty_@0) 35.72/17.93 new_lt24(x0, x1, ty_@0) 35.72/17.93 new_primMulNat0(Zero, Zero) 35.72/17.93 new_esEs38(x0, x1, ty_@0) 35.72/17.93 new_ltEs22(x0, x1, ty_Char) 35.72/17.93 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs19(Left(x0), Left(x1), ty_@0, x2) 35.72/17.93 new_esEs4(x0, x1, ty_@0) 35.72/17.93 new_lt6(x0, x1, ty_Ordering) 35.72/17.93 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 35.72/17.93 new_esEs36(x0, x1, ty_Int) 35.72/17.93 new_gt(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs33(x0, x1, ty_Double) 35.72/17.93 new_compare26(x0, x1, True, x2) 35.72/17.93 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_lt20(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_lt5(x0, x1, ty_Ordering) 35.72/17.93 new_lt22(x0, x1, ty_Integer) 35.72/17.93 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 35.72/17.93 new_esEs11(x0, x1, ty_@0) 35.72/17.93 new_ltEs19(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs19(Left(x0), Left(x1), ty_Integer, x2) 35.72/17.93 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs4(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_compare8(Integer(x0), Integer(x1)) 35.72/17.93 new_esEs11(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_lt22(x0, x1, ty_Float) 35.72/17.93 new_gt(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs7(x0, x1, ty_@0) 35.72/17.93 new_esEs38(x0, x1, ty_Integer) 35.72/17.93 new_esEs8(x0, x1, ty_@0) 35.72/17.93 new_lt6(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs11(x0, x1, ty_Integer) 35.72/17.93 new_compare17(x0, x1, ty_Bool) 35.72/17.93 new_esEs38(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs8(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_ltEs19(x0, x1, ty_Float) 35.72/17.93 new_compare15(Just(x0), Just(x1), x2) 35.72/17.93 new_esEs36(x0, x1, ty_Bool) 35.72/17.93 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs32(x0, x1, ty_Int) 35.72/17.93 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 35.72/17.93 new_esEs27(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_ltEs22(x0, x1, ty_Bool) 35.72/17.93 new_esEs26(GT) 35.72/17.93 new_lt22(x0, x1, ty_Bool) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 35.72/17.93 new_compare30(Char(x0), Char(x1)) 35.72/17.93 new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) 35.72/17.93 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_gt(x0, x1, ty_Ordering) 35.72/17.93 new_sr(x0, x1) 35.72/17.93 new_esEs7(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs40(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs40(x0, x1, ty_Bool) 35.72/17.93 new_lt22(x0, x1, ty_@0) 35.72/17.93 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 35.72/17.93 new_compare17(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 35.72/17.93 new_esEs32(x0, x1, ty_Double) 35.72/17.93 new_esEs32(x0, x1, ty_Char) 35.72/17.93 new_lt23(x0, x1, ty_@0) 35.72/17.93 new_ltEs22(x0, x1, ty_Int) 35.72/17.93 new_esEs28(x0, x1, ty_Float) 35.72/17.93 new_primEqNat0(Succ(x0), Zero) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 35.72/17.93 new_compare29(:%(x0, x1), :%(x2, x3), ty_Integer) 35.72/17.93 new_esEs13(x0, x1) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 35.72/17.93 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_ltEs22(x0, x1, ty_@0) 35.72/17.93 new_esEs40(x0, x1, ty_Int) 35.72/17.93 new_compare17(x0, x1, ty_Integer) 35.72/17.93 new_lt20(x0, x1, ty_Ordering) 35.72/17.93 new_lt7(x0, x1) 35.72/17.93 new_esEs40(x0, x1, ty_Double) 35.72/17.93 new_esEs33(x0, x1, ty_Ordering) 35.72/17.93 new_primPlusNat0(Succ(x0), Succ(x1)) 35.72/17.93 new_esEs40(x0, x1, ty_Char) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 35.72/17.93 new_esEs36(x0, x1, ty_Integer) 35.72/17.93 new_primCompAux0(x0, GT) 35.72/17.93 new_primCmpInt(Pos(Zero), Pos(Zero)) 35.72/17.93 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_ltEs20(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs30(x0, x1, ty_Ordering) 35.72/17.93 new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 35.72/17.93 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 35.72/17.93 new_esEs38(x0, x1, ty_Float) 35.72/17.93 new_esEs31(x0, x1, ty_Char) 35.72/17.93 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs19(Left(x0), Left(x1), ty_Float, x2) 35.72/17.93 new_ltEs4(x0, x1) 35.72/17.93 new_esEs14(@0, @0) 35.72/17.93 new_lt19(x0, x1) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 35.72/17.93 new_esEs37(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_compare110(x0, x1, False, x2, x3) 35.72/17.93 new_esEs39(x0, x1, ty_Ordering) 35.72/17.93 new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs39(x0, x1, ty_Double) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), ty_Float) 35.72/17.93 new_compare28(LT, LT) 35.72/17.93 new_ltEs21(x0, x1, ty_Integer) 35.72/17.93 new_compare26(x0, x1, False, x2) 35.72/17.93 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs6(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs37(x0, x1, ty_Ordering) 35.72/17.93 new_ltEs20(x0, x1, ty_@0) 35.72/17.93 new_gt(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_ltEs14(x0, x1, x2) 35.72/17.93 new_primPlusNat0(Succ(x0), Zero) 35.72/17.93 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs6(x0, x1, ty_Ordering) 35.72/17.93 new_esEs30(x0, x1, app(ty_[], x2)) 35.72/17.93 new_compare16(False, False) 35.72/17.93 new_lt23(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_esEs31(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, ty_Integer) 35.72/17.93 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_lt17(x0, x1) 35.72/17.93 new_compare6(Left(x0), Left(x1), x2, x3) 35.72/17.93 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.72/17.93 new_esEs41(EQ) 35.72/17.93 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs28(x0, x1, ty_Integer) 35.72/17.93 new_ltEs21(x0, x1, ty_Float) 35.72/17.93 new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) 35.72/17.93 new_esEs24(Just(x0), Just(x1), ty_@0) 35.72/17.93 new_esEs5(x0, x1, ty_Int) 35.72/17.93 new_ltEs21(x0, x1, ty_Bool) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, ty_Bool) 35.72/17.93 new_compare17(x0, x1, ty_@0) 35.72/17.93 new_esEs24(Nothing, Just(x0), x1) 35.72/17.93 new_esEs27(x0, x1, ty_@0) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, ty_Float) 35.72/17.93 new_esEs38(x0, x1, ty_Char) 35.72/17.93 new_esEs5(x0, x1, ty_Char) 35.72/17.93 new_esEs31(x0, x1, ty_Bool) 35.72/17.93 new_compare29(:%(x0, x1), :%(x2, x3), ty_Int) 35.72/17.93 new_esEs31(x0, x1, ty_Float) 35.72/17.93 new_esEs36(x0, x1, ty_@0) 35.72/17.93 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), ty_Char) 35.72/17.93 new_esEs38(x0, x1, ty_Int) 35.72/17.93 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 35.72/17.93 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 35.72/17.93 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_gt(x0, x1, ty_Double) 35.72/17.93 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 35.72/17.93 new_ltEs21(x0, x1, app(ty_[], x2)) 35.72/17.93 new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 35.72/17.93 new_ltEs22(x0, x1, ty_Integer) 35.72/17.93 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 35.72/17.93 new_ltEs21(x0, x1, ty_Int) 35.72/17.93 new_ltEs24(x0, x1, ty_@0) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, ty_Int) 35.72/17.93 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs5(x0, x1, app(ty_Ratio, x2)) 35.72/17.93 new_esEs19(Left(x0), Left(x1), ty_Int, x2) 35.72/17.93 new_ltEs12(Just(x0), Just(x1), ty_Int) 35.72/17.93 new_lt12(x0, x1) 35.72/17.93 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 35.72/17.93 new_esEs5(x0, x1, ty_Float) 35.72/17.93 new_esEs19(Left(x0), Left(x1), ty_Char, x2) 35.72/17.93 new_primCmpNat0(Zero, Zero) 35.72/17.93 new_esEs31(x0, x1, ty_Int) 35.72/17.93 new_esEs19(Right(x0), Right(x1), x2, ty_Char) 35.72/17.93 35.72/17.93 We have to consider all minimal (P,Q,R)-chains. 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (27) QDPSizeChangeProof (EQUIVALENT) 35.72/17.93 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. 35.72/17.93 35.72/17.93 From the DPs we obtained the following set of size-change graphs: 35.72/17.93 *new_addToFM_C(Branch(xuu60, xuu61, xuu62, xuu63, xuu64), xuu31100, xuu31101, bd, be) -> new_addToFM_C2(xuu60, xuu61, xuu62, xuu63, xuu64, xuu31100, xuu31101, new_lt24(xuu31100, xuu60, bd), bd, be) 35.72/17.93 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 7, 4 >= 9, 5 >= 10 35.72/17.93 35.72/17.93 35.72/17.93 *new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, h, ba) -> new_addToFM_C1(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_gt(xuu22, xuu17, h), h, ba) 35.72/17.93 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10 35.72/17.93 35.72/17.93 35.72/17.93 *new_addToFM_C1(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bb, bc) -> new_addToFM_C(xuu38, xuu39, xuu40, bb, bc) 35.72/17.93 The graph contains the following edges 5 >= 1, 6 >= 2, 7 >= 3, 9 >= 4, 10 >= 5 35.72/17.93 35.72/17.93 35.72/17.93 *new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba) -> new_addToFM_C(xuu20, xuu22, xuu23, h, ba) 35.72/17.93 The graph contains the following edges 4 >= 1, 6 >= 2, 7 >= 3, 9 >= 4, 10 >= 5 35.72/17.93 35.72/17.93 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (28) 35.72/17.93 YES 35.72/17.93 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (29) 35.72/17.93 Obligation: 35.72/17.93 Q DP problem: 35.72/17.93 The TRS P consists of the following rules: 35.72/17.93 35.72/17.93 new_primMulNat(Succ(xuu31100000), Succ(xuu60100)) -> new_primMulNat(xuu31100000, Succ(xuu60100)) 35.72/17.93 35.72/17.93 R is empty. 35.72/17.93 Q is empty. 35.72/17.93 We have to consider all minimal (P,Q,R)-chains. 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (30) QDPSizeChangeProof (EQUIVALENT) 35.72/17.93 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. 35.72/17.93 35.72/17.93 From the DPs we obtained the following set of size-change graphs: 35.72/17.93 *new_primMulNat(Succ(xuu31100000), Succ(xuu60100)) -> new_primMulNat(xuu31100000, Succ(xuu60100)) 35.72/17.93 The graph contains the following edges 1 > 1, 2 >= 2 35.72/17.93 35.72/17.93 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (31) 35.72/17.93 YES 35.72/17.93 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (32) 35.72/17.93 Obligation: 35.72/17.93 Q DP problem: 35.72/17.93 The TRS P consists of the following rules: 35.72/17.93 35.72/17.93 new_primEqNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat(xuu31100000, xuu60000) 35.72/17.93 35.72/17.93 R is empty. 35.72/17.93 Q is empty. 35.72/17.93 We have to consider all minimal (P,Q,R)-chains. 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (33) QDPSizeChangeProof (EQUIVALENT) 35.72/17.93 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. 35.72/17.93 35.72/17.93 From the DPs we obtained the following set of size-change graphs: 35.72/17.93 *new_primEqNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat(xuu31100000, xuu60000) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2 35.72/17.93 35.72/17.93 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (34) 35.72/17.93 YES 35.72/17.93 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (35) 35.72/17.93 Obligation: 35.72/17.93 Q DP problem: 35.72/17.93 The TRS P consists of the following rules: 35.72/17.93 35.72/17.93 new_primMinusNat(Succ(xuu42200), Succ(xuu13700)) -> new_primMinusNat(xuu42200, xuu13700) 35.72/17.93 35.72/17.93 R is empty. 35.72/17.93 Q is empty. 35.72/17.93 We have to consider all minimal (P,Q,R)-chains. 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (36) QDPSizeChangeProof (EQUIVALENT) 35.72/17.93 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. 35.72/17.93 35.72/17.93 From the DPs we obtained the following set of size-change graphs: 35.72/17.93 *new_primMinusNat(Succ(xuu42200), Succ(xuu13700)) -> new_primMinusNat(xuu42200, xuu13700) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2 35.72/17.93 35.72/17.93 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (37) 35.72/17.93 YES 35.72/17.93 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (38) 35.72/17.93 Obligation: 35.72/17.93 Q DP problem: 35.72/17.93 The TRS P consists of the following rules: 35.72/17.93 35.72/17.93 new_primPlusNat(Succ(xuu42200), Succ(xuu13700)) -> new_primPlusNat(xuu42200, xuu13700) 35.72/17.93 35.72/17.93 R is empty. 35.72/17.93 Q is empty. 35.72/17.93 We have to consider all minimal (P,Q,R)-chains. 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (39) QDPSizeChangeProof (EQUIVALENT) 35.72/17.93 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. 35.72/17.93 35.72/17.93 From the DPs we obtained the following set of size-change graphs: 35.72/17.93 *new_primPlusNat(Succ(xuu42200), Succ(xuu13700)) -> new_primPlusNat(xuu42200, xuu13700) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2 35.72/17.93 35.72/17.93 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (40) 35.72/17.93 YES 35.72/17.93 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (41) 35.72/17.93 Obligation: 35.72/17.93 Q DP problem: 35.72/17.93 The TRS P consists of the following rules: 35.72/17.93 35.72/17.93 new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, bdg), bdh)) -> new_esEs1(xuu3110000, xuu6000, bdg, bdh) 35.72/17.93 new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, bab), bac), hf) -> new_esEs1(xuu3110000, xuu6000, bab, bac) 35.72/17.93 new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(ty_Maybe, bbg)) -> new_esEs3(xuu3110000, xuu6000, bbg) 35.72/17.93 new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bda) -> new_esEs2(xuu3110001, xuu6001, bda) 35.72/17.93 new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(xuu3110000, xuu6000, bdd, bde, bdf) 35.72/17.93 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, app(app(app(ty_@3, fc), fd), ff), dh) -> new_esEs0(xuu3110001, xuu6001, fc, fd, ff) 35.72/17.93 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, app(ty_Maybe, gb), dh) -> new_esEs3(xuu3110001, xuu6001, gb) 35.72/17.93 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_@2, h), ba), bb) -> new_esEs(xuu3110000, xuu6000, h, ba) 35.72/17.93 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(xuu3110001, xuu6001, ce, cf, cg) 35.72/17.93 new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, bbh), bca)) -> new_esEs(xuu3110000, xuu6000, bbh, bca) 35.72/17.93 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, dg, app(ty_Maybe, hc)) -> new_esEs3(xuu3110002, xuu6002, hc) 35.72/17.93 new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(xuu3110000, xuu6000, bcb, bcc, bcd) 35.72/17.93 new_esEs3(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, beb)) -> new_esEs3(xuu3110000, xuu6000, beb) 35.72/17.93 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_@2, de), df), dg, dh) -> new_esEs(xuu3110000, xuu6000, de, df) 35.72/17.93 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_Either, ed), ee), dg, dh) -> new_esEs1(xuu3110000, xuu6000, ed, ee) 35.72/17.93 new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(ty_[], bbf)) -> new_esEs2(xuu3110000, xuu6000, bbf) 35.72/17.93 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_Maybe, eg), dg, dh) -> new_esEs3(xuu3110000, xuu6000, eg) 35.72/17.93 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cb, app(ty_Maybe, dd)) -> new_esEs3(xuu3110001, xuu6001, dd) 35.72/17.93 new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, bae), hf) -> new_esEs3(xuu3110000, xuu6000, bae) 35.72/17.93 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, ca), bb) -> new_esEs3(xuu3110000, xuu6000, ca) 35.72/17.93 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, dg, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs0(xuu3110002, xuu6002, ge, gf, gg) 35.72/17.93 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cb, app(app(ty_@2, cc), cd)) -> new_esEs(xuu3110001, xuu6001, cc, cd) 35.72/17.93 new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, hg), hh), baa), hf) -> new_esEs0(xuu3110000, xuu6000, hg, hh, baa) 35.72/17.93 new_esEs3(Just(xuu3110000), Just(xuu6000), app(ty_[], bea)) -> new_esEs2(xuu3110000, xuu6000, bea) 35.72/17.93 new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, hd), he), hf) -> new_esEs(xuu3110000, xuu6000, hd, he) 35.72/17.93 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cb, app(app(ty_Either, da), db)) -> new_esEs1(xuu3110001, xuu6001, da, db) 35.72/17.93 new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, bce), bcf)) -> new_esEs1(xuu3110000, xuu6000, bce, bcf) 35.72/17.93 new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, bch)) -> new_esEs3(xuu3110000, xuu6000, bch) 35.72/17.93 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, bf), bg), bb) -> new_esEs1(xuu3110000, xuu6000, bf, bg) 35.72/17.93 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, app(app(ty_Either, fg), fh), dh) -> new_esEs1(xuu3110001, xuu6001, fg, fh) 35.72/17.93 new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bdb), bdc)) -> new_esEs(xuu3110000, xuu6000, bdb, bdc) 35.72/17.93 new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(xuu3110000, xuu6000, bba, bbb, bbc) 35.72/17.93 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, app(app(ty_@2, fa), fb), dh) -> new_esEs(xuu3110001, xuu6001, fa, fb) 35.72/17.93 new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_[], bcg)) -> new_esEs2(xuu3110000, xuu6000, bcg) 35.72/17.93 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, dg, app(ty_[], hb)) -> new_esEs2(xuu3110002, xuu6002, hb) 35.72/17.93 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, dg, app(app(ty_@2, gc), gd)) -> new_esEs(xuu3110002, xuu6002, gc, gd) 35.72/17.93 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(app(ty_@3, bc), bd), be), bb) -> new_esEs0(xuu3110000, xuu6000, bc, bd, be) 35.72/17.93 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, app(ty_[], ga), dh) -> new_esEs2(xuu3110001, xuu6001, ga) 35.72/17.93 new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(ty_@2, bag), bah)) -> new_esEs(xuu3110000, xuu6000, bag, bah) 35.72/17.93 new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_[], bad), hf) -> new_esEs2(xuu3110000, xuu6000, bad) 35.72/17.93 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], ef), dg, dh) -> new_esEs2(xuu3110000, xuu6000, ef) 35.72/17.93 new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(ty_Either, bbd), bbe)) -> new_esEs1(xuu3110000, xuu6000, bbd, bbe) 35.72/17.93 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cb, app(ty_[], dc)) -> new_esEs2(xuu3110001, xuu6001, dc) 35.72/17.93 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(app(ty_@3, ea), eb), ec), dg, dh) -> new_esEs0(xuu3110000, xuu6000, ea, eb, ec) 35.72/17.93 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, dg, app(app(ty_Either, gh), ha)) -> new_esEs1(xuu3110002, xuu6002, gh, ha) 35.72/17.93 new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], bh), bb) -> new_esEs2(xuu3110000, xuu6000, bh) 35.72/17.93 35.72/17.93 R is empty. 35.72/17.93 Q is empty. 35.72/17.93 We have to consider all minimal (P,Q,R)-chains. 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (42) QDPSizeChangeProof (EQUIVALENT) 35.72/17.93 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. 35.72/17.93 35.72/17.93 From the DPs we obtained the following set of size-change graphs: 35.72/17.93 *new_esEs3(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, beb)) -> new_esEs3(xuu3110000, xuu6000, beb) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, bdg), bdh)) -> new_esEs1(xuu3110000, xuu6000, bdg, bdh) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, bch)) -> new_esEs3(xuu3110000, xuu6000, bch) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, bce), bcf)) -> new_esEs1(xuu3110000, xuu6000, bce, bcf) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs3(Just(xuu3110000), Just(xuu6000), app(ty_[], bea)) -> new_esEs2(xuu3110000, xuu6000, bea) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(xuu3110000, xuu6000, bdd, bde, bdf) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bdb), bdc)) -> new_esEs(xuu3110000, xuu6000, bdb, bdc) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(xuu3110000, xuu6000, bcb, bcc, bcd) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, bbh), bca)) -> new_esEs(xuu3110000, xuu6000, bbh, bca) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(ty_Maybe, bbg)) -> new_esEs3(xuu3110000, xuu6000, bbg) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, bae), hf) -> new_esEs3(xuu3110000, xuu6000, bae) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, bab), bac), hf) -> new_esEs1(xuu3110000, xuu6000, bab, bac) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(ty_Either, bbd), bbe)) -> new_esEs1(xuu3110000, xuu6000, bbd, bbe) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(ty_[], bbf)) -> new_esEs2(xuu3110000, xuu6000, bbf) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_[], bad), hf) -> new_esEs2(xuu3110000, xuu6000, bad) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, hg), hh), baa), hf) -> new_esEs0(xuu3110000, xuu6000, hg, hh, baa) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(xuu3110000, xuu6000, bba, bbb, bbc) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, hd), he), hf) -> new_esEs(xuu3110000, xuu6000, hd, he) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(ty_@2, bag), bah)) -> new_esEs(xuu3110000, xuu6000, bag, bah) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, app(ty_Maybe, gb), dh) -> new_esEs3(xuu3110001, xuu6001, gb) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, dg, app(ty_Maybe, hc)) -> new_esEs3(xuu3110002, xuu6002, hc) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_Maybe, eg), dg, dh) -> new_esEs3(xuu3110000, xuu6000, eg) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cb, app(ty_Maybe, dd)) -> new_esEs3(xuu3110001, xuu6001, dd) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, ca), bb) -> new_esEs3(xuu3110000, xuu6000, ca) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_Either, ed), ee), dg, dh) -> new_esEs1(xuu3110000, xuu6000, ed, ee) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, app(app(ty_Either, fg), fh), dh) -> new_esEs1(xuu3110001, xuu6001, fg, fh) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, dg, app(app(ty_Either, gh), ha)) -> new_esEs1(xuu3110002, xuu6002, gh, ha) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cb, app(app(ty_Either, da), db)) -> new_esEs1(xuu3110001, xuu6001, da, db) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, bf), bg), bb) -> new_esEs1(xuu3110000, xuu6000, bf, bg) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bda) -> new_esEs2(xuu3110001, xuu6001, bda) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_[], bcg)) -> new_esEs2(xuu3110000, xuu6000, bcg) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, dg, app(ty_[], hb)) -> new_esEs2(xuu3110002, xuu6002, hb) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, app(ty_[], ga), dh) -> new_esEs2(xuu3110001, xuu6001, ga) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], ef), dg, dh) -> new_esEs2(xuu3110000, xuu6000, ef) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cb, app(ty_[], dc)) -> new_esEs2(xuu3110001, xuu6001, dc) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], bh), bb) -> new_esEs2(xuu3110000, xuu6000, bh) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, app(app(app(ty_@3, fc), fd), ff), dh) -> new_esEs0(xuu3110001, xuu6001, fc, fd, ff) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, dg, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs0(xuu3110002, xuu6002, ge, gf, gg) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(app(ty_@3, ea), eb), ec), dg, dh) -> new_esEs0(xuu3110000, xuu6000, ea, eb, ec) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_@2, de), df), dg, dh) -> new_esEs(xuu3110000, xuu6000, de, df) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, app(app(ty_@2, fa), fb), dh) -> new_esEs(xuu3110001, xuu6001, fa, fb) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), eh, dg, app(app(ty_@2, gc), gd)) -> new_esEs(xuu3110002, xuu6002, gc, gd) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(xuu3110001, xuu6001, ce, cf, cg) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(app(ty_@3, bc), bd), be), bb) -> new_esEs0(xuu3110000, xuu6000, bc, bd, be) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_@2, h), ba), bb) -> new_esEs(xuu3110000, xuu6000, h, ba) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.72/17.93 35.72/17.93 35.72/17.93 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cb, app(app(ty_@2, cc), cd)) -> new_esEs(xuu3110001, xuu6001, cc, cd) 35.72/17.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.72/17.93 35.72/17.93 35.72/17.93 ---------------------------------------- 35.72/17.93 35.72/17.93 (43) 35.72/17.93 YES 35.79/17.98 EOF