25.39/11.41 YES 28.02/12.17 proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs 28.02/12.17 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 28.02/12.17 28.02/12.17 28.02/12.17 H-Termination with start terms of the given HASKELL could be proven: 28.02/12.17 28.02/12.17 (0) HASKELL 28.02/12.17 (1) LR [EQUIVALENT, 0 ms] 28.02/12.17 (2) HASKELL 28.02/12.17 (3) CR [EQUIVALENT, 0 ms] 28.02/12.17 (4) HASKELL 28.02/12.17 (5) IFR [EQUIVALENT, 0 ms] 28.02/12.17 (6) HASKELL 28.02/12.17 (7) BR [EQUIVALENT, 8 ms] 28.02/12.17 (8) HASKELL 28.02/12.17 (9) COR [EQUIVALENT, 0 ms] 28.02/12.17 (10) HASKELL 28.02/12.17 (11) LetRed [EQUIVALENT, 6 ms] 28.02/12.17 (12) HASKELL 28.02/12.17 (13) NumRed [SOUND, 0 ms] 28.02/12.17 (14) HASKELL 28.02/12.17 (15) Narrow [SOUND, 0 ms] 28.02/12.17 (16) AND 28.02/12.17 (17) QDP 28.02/12.17 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.02/12.17 (19) YES 28.02/12.17 (20) QDP 28.02/12.17 (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.02/12.17 (22) YES 28.02/12.17 (23) QDP 28.02/12.17 (24) QDPSizeChangeProof [EQUIVALENT, 134 ms] 28.02/12.17 (25) YES 28.02/12.17 (26) QDP 28.02/12.17 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.02/12.17 (28) YES 28.02/12.17 (29) QDP 28.02/12.17 (30) DependencyGraphProof [EQUIVALENT, 0 ms] 28.02/12.17 (31) AND 28.02/12.17 (32) QDP 28.02/12.17 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.02/12.17 (34) YES 28.02/12.17 (35) QDP 28.02/12.17 (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.02/12.17 (37) YES 28.02/12.17 (38) QDP 28.02/12.17 (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.02/12.17 (40) YES 28.02/12.17 (41) QDP 28.02/12.17 (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.02/12.17 (43) YES 28.02/12.17 (44) QDP 28.02/12.17 (45) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.02/12.17 (46) YES 28.02/12.17 (47) QDP 28.02/12.17 (48) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.02/12.17 (49) YES 28.02/12.17 28.02/12.17 28.02/12.17 ---------------------------------------- 28.02/12.17 28.02/12.17 (0) 28.02/12.17 Obligation: 28.02/12.17 mainModule Main 28.02/12.17 module FiniteMap where { 28.02/12.17 import qualified Main; 28.02/12.17 import qualified Maybe; 28.02/12.17 import qualified Prelude; 28.02/12.17 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 28.02/12.17 28.02/12.17 instance (Eq a, Eq b) => Eq FiniteMap a b where { 28.02/12.17 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.02/12.17 } 28.02/12.17 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 28.02/12.17 addListToFM fm key_elt_pairs = addListToFM_C (\old new ->new) fm key_elt_pairs; 28.02/12.17 28.02/12.17 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 28.02/12.17 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 28.02/12.17 add fmap (key,elt) = addToFM_C combiner fmap key elt; 28.02/12.17 }; 28.02/12.17 28.02/12.17 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 28.02/12.17 addToFM_C combiner EmptyFM key elt = unitFM key elt; 28.02/12.17 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 28.02/12.17 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 28.02/12.17 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 28.02/12.17 28.02/12.17 emptyFM :: FiniteMap b a; 28.02/12.17 emptyFM = EmptyFM; 28.02/12.17 28.02/12.17 findMax :: FiniteMap a b -> (a,b); 28.02/12.17 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 28.02/12.17 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 28.02/12.17 28.02/12.17 findMin :: FiniteMap a b -> (a,b); 28.02/12.17 findMin (Branch key elt _ EmptyFM _) = (key,elt); 28.02/12.17 findMin (Branch key elt _ fm_l _) = findMin fm_l; 28.02/12.17 28.02/12.17 fmToList :: FiniteMap a b -> [(a,b)]; 28.02/12.17 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 28.02/12.17 28.02/12.17 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 28.02/12.17 foldFM k z EmptyFM = z; 28.02/12.17 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.02/12.17 28.02/12.17 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 28.02/12.17 listToFM = addListToFM emptyFM; 28.02/12.17 28.02/12.17 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.02/12.17 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 28.02/12.17 | size_r > sIZE_RATIO * size_l = case fm_R of { 28.02/12.17 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 28.02/12.17 | otherwise -> double_L fm_L fm_R; 28.02/12.17 } 28.02/12.17 | size_l > sIZE_RATIO * size_r = case fm_L of { 28.02/12.17 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 28.02/12.17 | otherwise -> double_R fm_L fm_R; 28.02/12.17 } 28.02/12.17 | otherwise = mkBranch 2 key elt fm_L fm_R where { 28.02/12.17 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 28.02/12.17 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 28.02/12.17 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 28.02/12.17 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 28.02/12.17 size_l = sizeFM fm_L; 28.02/12.17 size_r = sizeFM fm_R; 28.02/12.17 }; 28.02/12.17 28.02/12.17 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 28.02/12.17 mkBranch which key elt fm_l fm_r = let { 28.02/12.17 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 28.02/12.17 } in result where { 28.02/12.17 balance_ok = True; 28.02/12.17 left_ok = case fm_l of { 28.02/12.17 EmptyFM-> True; 28.02/12.17 Branch left_key _ _ _ _-> let { 28.02/12.17 biggest_left_key = fst (findMax fm_l); 28.02/12.17 } in biggest_left_key < key; 28.02/12.17 } ; 28.02/12.17 left_size = sizeFM fm_l; 28.02/12.17 right_ok = case fm_r of { 28.02/12.17 EmptyFM-> True; 28.02/12.17 Branch right_key _ _ _ _-> let { 28.02/12.17 smallest_right_key = fst (findMin fm_r); 28.02/12.17 } in key < smallest_right_key; 28.02/12.17 } ; 28.02/12.17 right_size = sizeFM fm_r; 28.02/12.17 unbox :: Int -> Int; 28.02/12.17 unbox x = x; 28.02/12.17 }; 28.02/12.17 28.02/12.17 sIZE_RATIO :: Int; 28.02/12.17 sIZE_RATIO = 5; 28.02/12.17 28.02/12.17 sizeFM :: FiniteMap b a -> Int; 28.02/12.17 sizeFM EmptyFM = 0; 28.02/12.17 sizeFM (Branch _ _ size _ _) = size; 28.02/12.17 28.02/12.17 unitFM :: b -> a -> FiniteMap b a; 28.02/12.17 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 28.02/12.17 28.02/12.17 } 28.02/12.17 module Maybe where { 28.02/12.17 import qualified FiniteMap; 28.02/12.17 import qualified Main; 28.02/12.17 import qualified Prelude; 28.02/12.17 } 28.02/12.17 module Main where { 28.02/12.17 import qualified FiniteMap; 28.02/12.17 import qualified Maybe; 28.02/12.17 import qualified Prelude; 28.02/12.17 } 28.02/12.17 28.02/12.17 ---------------------------------------- 28.02/12.17 28.02/12.17 (1) LR (EQUIVALENT) 28.02/12.17 Lambda Reductions: 28.02/12.17 The following Lambda expression 28.02/12.17 "\oldnew->new" 28.02/12.17 is transformed to 28.02/12.17 "addListToFM0 old new = new; 28.02/12.17 " 28.02/12.17 The following Lambda expression 28.02/12.17 "\keyeltrest->(key,elt) : rest" 28.02/12.17 is transformed to 28.02/12.17 "fmToList0 key elt rest = (key,elt) : rest; 28.02/12.17 " 28.02/12.17 28.02/12.17 ---------------------------------------- 28.02/12.17 28.02/12.17 (2) 28.02/12.17 Obligation: 28.02/12.17 mainModule Main 28.02/12.17 module FiniteMap where { 28.02/12.17 import qualified Main; 28.02/12.17 import qualified Maybe; 28.02/12.17 import qualified Prelude; 28.02/12.17 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 28.02/12.17 28.02/12.17 instance (Eq a, Eq b) => Eq FiniteMap a b where { 28.02/12.17 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.02/12.17 } 28.02/12.17 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 28.02/12.17 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 28.02/12.17 28.02/12.17 addListToFM0 old new = new; 28.02/12.17 28.02/12.17 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 28.02/12.17 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 28.02/12.17 add fmap (key,elt) = addToFM_C combiner fmap key elt; 28.02/12.17 }; 28.02/12.17 28.02/12.17 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 28.02/12.17 addToFM_C combiner EmptyFM key elt = unitFM key elt; 28.02/12.17 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 28.02/12.17 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 28.02/12.17 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 28.02/12.17 28.02/12.17 emptyFM :: FiniteMap b a; 28.02/12.17 emptyFM = EmptyFM; 28.02/12.17 28.02/12.17 findMax :: FiniteMap b a -> (b,a); 28.02/12.17 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 28.02/12.17 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 28.02/12.17 28.02/12.17 findMin :: FiniteMap a b -> (a,b); 28.02/12.17 findMin (Branch key elt _ EmptyFM _) = (key,elt); 28.02/12.17 findMin (Branch key elt _ fm_l _) = findMin fm_l; 28.02/12.17 28.02/12.17 fmToList :: FiniteMap a b -> [(a,b)]; 28.02/12.17 fmToList fm = foldFM fmToList0 [] fm; 28.02/12.17 28.02/12.17 fmToList0 key elt rest = (key,elt) : rest; 28.02/12.17 28.02/12.17 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 28.02/12.17 foldFM k z EmptyFM = z; 28.02/12.17 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.02/12.17 28.02/12.17 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 28.02/12.17 listToFM = addListToFM emptyFM; 28.02/12.17 28.02/12.17 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 28.02/12.17 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 28.02/12.17 | size_r > sIZE_RATIO * size_l = case fm_R of { 28.02/12.17 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 28.27/12.20 | otherwise -> double_L fm_L fm_R; 28.27/12.20 } 28.27/12.20 | size_l > sIZE_RATIO * size_r = case fm_L of { 28.27/12.20 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 28.27/12.20 | otherwise -> double_R fm_L fm_R; 28.27/12.20 } 28.27/12.20 | otherwise = mkBranch 2 key elt fm_L fm_R where { 28.27/12.20 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 28.27/12.20 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 28.27/12.20 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 28.27/12.20 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 28.27/12.20 size_l = sizeFM fm_L; 28.27/12.20 size_r = sizeFM fm_R; 28.27/12.20 }; 28.27/12.20 28.27/12.20 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.27/12.21 mkBranch which key elt fm_l fm_r = let { 28.27/12.21 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 28.27/12.21 } in result where { 28.27/12.21 balance_ok = True; 28.27/12.21 left_ok = case fm_l of { 28.27/12.21 EmptyFM-> True; 28.27/12.21 Branch left_key _ _ _ _-> let { 28.27/12.21 biggest_left_key = fst (findMax fm_l); 28.27/12.21 } in biggest_left_key < key; 28.27/12.21 } ; 28.27/12.21 left_size = sizeFM fm_l; 28.27/12.21 right_ok = case fm_r of { 28.27/12.21 EmptyFM-> True; 28.27/12.21 Branch right_key _ _ _ _-> let { 28.27/12.21 smallest_right_key = fst (findMin fm_r); 28.27/12.21 } in key < smallest_right_key; 28.27/12.21 } ; 28.27/12.21 right_size = sizeFM fm_r; 28.27/12.21 unbox :: Int -> Int; 28.27/12.21 unbox x = x; 28.27/12.21 }; 28.27/12.21 28.27/12.21 sIZE_RATIO :: Int; 28.27/12.21 sIZE_RATIO = 5; 28.27/12.21 28.27/12.21 sizeFM :: FiniteMap b a -> Int; 28.27/12.21 sizeFM EmptyFM = 0; 28.27/12.21 sizeFM (Branch _ _ size _ _) = size; 28.27/12.21 28.27/12.21 unitFM :: b -> a -> FiniteMap b a; 28.27/12.21 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 28.27/12.21 28.27/12.21 } 28.27/12.21 module Maybe where { 28.27/12.21 import qualified FiniteMap; 28.27/12.21 import qualified Main; 28.27/12.21 import qualified Prelude; 28.27/12.21 } 28.27/12.21 module Main where { 28.27/12.21 import qualified FiniteMap; 28.27/12.21 import qualified Maybe; 28.27/12.21 import qualified Prelude; 28.27/12.21 } 28.27/12.21 28.27/12.21 ---------------------------------------- 28.27/12.21 28.27/12.21 (3) CR (EQUIVALENT) 28.27/12.21 Case Reductions: 28.27/12.21 The following Case expression 28.27/12.21 "case compare x y of { 28.27/12.21 EQ -> o; 28.27/12.21 LT -> LT; 28.27/12.21 GT -> GT} 28.27/12.21 " 28.27/12.21 is transformed to 28.27/12.21 "primCompAux0 o EQ = o; 28.27/12.21 primCompAux0 o LT = LT; 28.27/12.21 primCompAux0 o GT = GT; 28.27/12.21 " 28.27/12.21 The following Case expression 28.27/12.21 "case fm_r of { 28.27/12.21 EmptyFM -> True; 28.27/12.21 Branch right_key _ _ _ _ -> let { 28.27/12.21 smallest_right_key = fst (findMin fm_r); 28.27/12.21 } in key < smallest_right_key} 28.27/12.21 " 28.27/12.21 is transformed to 28.27/12.21 "right_ok0 fm_r key EmptyFM = True; 28.27/12.21 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 28.27/12.21 smallest_right_key = fst (findMin fm_r); 28.27/12.21 } in key < smallest_right_key; 28.27/12.21 " 28.27/12.21 The following Case expression 28.27/12.21 "case fm_l of { 28.27/12.21 EmptyFM -> True; 28.27/12.21 Branch left_key _ _ _ _ -> let { 28.27/12.21 biggest_left_key = fst (findMax fm_l); 28.27/12.21 } in biggest_left_key < key} 28.27/12.21 " 28.27/12.21 is transformed to 28.27/12.21 "left_ok0 fm_l key EmptyFM = True; 28.27/12.21 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 28.27/12.21 biggest_left_key = fst (findMax fm_l); 28.27/12.21 } in biggest_left_key < key; 28.27/12.21 " 28.27/12.21 The following Case expression 28.27/12.21 "case fm_R of { 28.27/12.21 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 28.27/12.21 " 28.27/12.21 is transformed to 28.27/12.21 "mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 28.27/12.21 " 28.27/12.21 The following Case expression 28.27/12.21 "case fm_L of { 28.27/12.21 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 28.27/12.21 " 28.27/12.21 is transformed to 28.27/12.21 "mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 28.27/12.21 " 28.27/12.21 28.27/12.21 ---------------------------------------- 28.27/12.21 28.27/12.21 (4) 28.27/12.21 Obligation: 28.27/12.21 mainModule Main 28.27/12.21 module FiniteMap where { 28.27/12.21 import qualified Main; 28.27/12.21 import qualified Maybe; 28.27/12.21 import qualified Prelude; 28.27/12.21 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 28.27/12.21 28.27/12.21 instance (Eq a, Eq b) => Eq FiniteMap a b where { 28.27/12.21 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.27/12.21 } 28.27/12.21 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 28.27/12.21 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 28.27/12.21 28.27/12.21 addListToFM0 old new = new; 28.27/12.21 28.27/12.21 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 28.27/12.21 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 28.27/12.21 add fmap (key,elt) = addToFM_C combiner fmap key elt; 28.27/12.21 }; 28.27/12.21 28.27/12.21 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 28.27/12.21 addToFM_C combiner EmptyFM key elt = unitFM key elt; 28.27/12.21 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 28.27/12.21 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 28.27/12.21 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 28.27/12.21 28.27/12.21 emptyFM :: FiniteMap b a; 28.27/12.21 emptyFM = EmptyFM; 28.27/12.21 28.27/12.21 findMax :: FiniteMap b a -> (b,a); 28.27/12.21 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 28.27/12.21 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 28.27/12.21 28.27/12.21 findMin :: FiniteMap b a -> (b,a); 28.27/12.21 findMin (Branch key elt _ EmptyFM _) = (key,elt); 28.27/12.21 findMin (Branch key elt _ fm_l _) = findMin fm_l; 28.27/12.21 28.27/12.21 fmToList :: FiniteMap b a -> [(b,a)]; 28.27/12.21 fmToList fm = foldFM fmToList0 [] fm; 28.27/12.21 28.27/12.21 fmToList0 key elt rest = (key,elt) : rest; 28.27/12.21 28.27/12.21 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 28.27/12.21 foldFM k z EmptyFM = z; 28.27/12.21 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.27/12.21 28.27/12.21 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 28.27/12.21 listToFM = addListToFM emptyFM; 28.27/12.21 28.27/12.21 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 28.27/12.21 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 28.27/12.21 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 28.27/12.21 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 28.27/12.21 | otherwise = mkBranch 2 key elt fm_L fm_R where { 28.27/12.21 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 28.27/12.21 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 28.27/12.21 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 28.27/12.21 | otherwise = double_L fm_L fm_R; 28.27/12.21 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 28.27/12.21 | otherwise = double_R fm_L fm_R; 28.27/12.21 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 28.27/12.21 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 28.27/12.21 size_l = sizeFM fm_L; 28.27/12.21 size_r = sizeFM fm_R; 28.27/12.21 }; 28.27/12.21 28.27/12.21 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 28.27/12.21 mkBranch which key elt fm_l fm_r = let { 28.27/12.21 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 28.27/12.21 } in result where { 28.27/12.21 balance_ok = True; 28.27/12.21 left_ok = left_ok0 fm_l key fm_l; 28.27/12.21 left_ok0 fm_l key EmptyFM = True; 28.27/12.21 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 28.27/12.21 biggest_left_key = fst (findMax fm_l); 28.27/12.21 } in biggest_left_key < key; 28.27/12.21 left_size = sizeFM fm_l; 28.27/12.21 right_ok = right_ok0 fm_r key fm_r; 28.27/12.21 right_ok0 fm_r key EmptyFM = True; 28.27/12.21 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 28.27/12.21 smallest_right_key = fst (findMin fm_r); 28.27/12.21 } in key < smallest_right_key; 28.27/12.21 right_size = sizeFM fm_r; 28.27/12.21 unbox :: Int -> Int; 28.27/12.21 unbox x = x; 28.27/12.21 }; 28.27/12.21 28.27/12.21 sIZE_RATIO :: Int; 28.27/12.21 sIZE_RATIO = 5; 28.27/12.21 28.27/12.21 sizeFM :: FiniteMap b a -> Int; 28.27/12.21 sizeFM EmptyFM = 0; 28.27/12.21 sizeFM (Branch _ _ size _ _) = size; 28.27/12.21 28.27/12.21 unitFM :: b -> a -> FiniteMap b a; 28.27/12.21 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 28.27/12.21 28.27/12.21 } 28.27/12.21 module Maybe where { 28.27/12.21 import qualified FiniteMap; 28.27/12.21 import qualified Main; 28.27/12.21 import qualified Prelude; 28.27/12.21 } 28.27/12.21 module Main where { 28.27/12.21 import qualified FiniteMap; 28.27/12.21 import qualified Maybe; 28.27/12.21 import qualified Prelude; 28.27/12.21 } 28.27/12.21 28.27/12.21 ---------------------------------------- 28.27/12.21 28.27/12.21 (5) IFR (EQUIVALENT) 28.27/12.21 If Reductions: 28.27/12.21 The following If expression 28.27/12.21 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 28.27/12.21 is transformed to 28.27/12.21 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 28.27/12.21 primDivNatS0 x y False = Zero; 28.27/12.21 " 28.27/12.21 The following If expression 28.27/12.21 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 28.27/12.21 is transformed to 28.27/12.21 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 28.27/12.21 primModNatS0 x y False = Succ x; 28.27/12.21 " 28.27/12.21 28.27/12.21 ---------------------------------------- 28.27/12.21 28.27/12.21 (6) 28.27/12.21 Obligation: 28.27/12.21 mainModule Main 28.27/12.21 module FiniteMap where { 28.27/12.21 import qualified Main; 28.27/12.21 import qualified Maybe; 28.27/12.21 import qualified Prelude; 28.27/12.21 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 28.27/12.21 28.27/12.21 instance (Eq a, Eq b) => Eq FiniteMap a b where { 28.27/12.21 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.27/12.21 } 28.27/12.21 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 28.27/12.21 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 28.27/12.21 28.27/12.21 addListToFM0 old new = new; 28.27/12.21 28.27/12.21 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 28.27/12.21 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 28.27/12.21 add fmap (key,elt) = addToFM_C combiner fmap key elt; 28.27/12.21 }; 28.27/12.21 28.27/12.21 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 28.27/12.21 addToFM_C combiner EmptyFM key elt = unitFM key elt; 28.27/12.21 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 28.27/12.21 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 28.27/12.21 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 28.27/12.21 28.27/12.21 emptyFM :: FiniteMap a b; 28.27/12.21 emptyFM = EmptyFM; 28.27/12.21 28.27/12.21 findMax :: FiniteMap b a -> (b,a); 28.27/12.21 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 28.27/12.21 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 28.27/12.21 28.27/12.21 findMin :: FiniteMap b a -> (b,a); 28.27/12.21 findMin (Branch key elt _ EmptyFM _) = (key,elt); 28.27/12.21 findMin (Branch key elt _ fm_l _) = findMin fm_l; 28.27/12.21 28.27/12.21 fmToList :: FiniteMap b a -> [(b,a)]; 28.27/12.21 fmToList fm = foldFM fmToList0 [] fm; 28.27/12.21 28.27/12.21 fmToList0 key elt rest = (key,elt) : rest; 28.27/12.21 28.27/12.21 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 28.27/12.21 foldFM k z EmptyFM = z; 28.27/12.21 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.27/12.21 28.27/12.21 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 28.27/12.21 listToFM = addListToFM emptyFM; 28.27/12.21 28.27/12.21 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.27/12.21 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 28.27/12.21 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 28.27/12.21 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 28.27/12.21 | otherwise = mkBranch 2 key elt fm_L fm_R where { 28.27/12.21 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 28.27/12.21 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 28.27/12.21 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 28.27/12.21 | otherwise = double_L fm_L fm_R; 28.27/12.21 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 28.27/12.21 | otherwise = double_R fm_L fm_R; 28.27/12.21 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 28.27/12.21 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 28.27/12.21 size_l = sizeFM fm_L; 28.27/12.21 size_r = sizeFM fm_R; 28.27/12.21 }; 28.27/12.21 28.27/12.21 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 28.27/12.21 mkBranch which key elt fm_l fm_r = let { 28.27/12.21 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 28.27/12.21 } in result where { 28.27/12.21 balance_ok = True; 28.27/12.21 left_ok = left_ok0 fm_l key fm_l; 28.27/12.21 left_ok0 fm_l key EmptyFM = True; 28.27/12.21 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 28.27/12.21 biggest_left_key = fst (findMax fm_l); 28.27/12.21 } in biggest_left_key < key; 28.27/12.21 left_size = sizeFM fm_l; 28.27/12.21 right_ok = right_ok0 fm_r key fm_r; 28.27/12.21 right_ok0 fm_r key EmptyFM = True; 28.27/12.21 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 28.27/12.21 smallest_right_key = fst (findMin fm_r); 28.27/12.21 } in key < smallest_right_key; 28.27/12.21 right_size = sizeFM fm_r; 28.27/12.21 unbox :: Int -> Int; 28.27/12.21 unbox x = x; 28.27/12.21 }; 28.27/12.21 28.27/12.21 sIZE_RATIO :: Int; 28.27/12.21 sIZE_RATIO = 5; 28.27/12.21 28.27/12.21 sizeFM :: FiniteMap a b -> Int; 28.27/12.21 sizeFM EmptyFM = 0; 28.27/12.21 sizeFM (Branch _ _ size _ _) = size; 28.27/12.21 28.27/12.21 unitFM :: b -> a -> FiniteMap b a; 28.27/12.21 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 28.27/12.21 28.27/12.21 } 28.27/12.21 module Maybe where { 28.27/12.21 import qualified FiniteMap; 28.27/12.21 import qualified Main; 28.27/12.21 import qualified Prelude; 28.27/12.21 } 28.27/12.21 module Main where { 28.27/12.21 import qualified FiniteMap; 28.27/12.21 import qualified Maybe; 28.27/12.21 import qualified Prelude; 28.27/12.21 } 28.27/12.21 28.27/12.21 ---------------------------------------- 28.27/12.21 28.27/12.21 (7) BR (EQUIVALENT) 28.27/12.21 Replaced joker patterns by fresh variables and removed binding patterns. 28.27/12.21 ---------------------------------------- 28.27/12.21 28.27/12.21 (8) 28.27/12.21 Obligation: 28.27/12.21 mainModule Main 28.27/12.21 module FiniteMap where { 28.27/12.21 import qualified Main; 28.27/12.21 import qualified Maybe; 28.27/12.21 import qualified Prelude; 28.27/12.21 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 28.27/12.21 28.27/12.21 instance (Eq a, Eq b) => Eq FiniteMap b a where { 28.27/12.21 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.27/12.21 } 28.27/12.21 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 28.27/12.21 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 28.27/12.21 28.27/12.21 addListToFM0 old new = new; 28.27/12.21 28.27/12.21 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 28.27/12.21 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 28.27/12.21 add fmap (key,elt) = addToFM_C combiner fmap key elt; 28.27/12.21 }; 28.27/12.21 28.27/12.21 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 28.27/12.21 addToFM_C combiner EmptyFM key elt = unitFM key elt; 28.27/12.21 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 28.27/12.21 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 28.27/12.21 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 28.27/12.21 28.27/12.21 emptyFM :: FiniteMap b a; 28.27/12.21 emptyFM = EmptyFM; 28.27/12.21 28.27/12.21 findMax :: FiniteMap b a -> (b,a); 28.27/12.21 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 28.27/12.21 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 28.27/12.21 28.27/12.21 findMin :: FiniteMap a b -> (a,b); 28.27/12.21 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 28.27/12.21 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 28.27/12.21 28.27/12.21 fmToList :: FiniteMap b a -> [(b,a)]; 28.27/12.21 fmToList fm = foldFM fmToList0 [] fm; 28.27/12.21 28.27/12.21 fmToList0 key elt rest = (key,elt) : rest; 28.27/12.21 28.27/12.21 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 28.27/12.21 foldFM k z EmptyFM = z; 28.27/12.21 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.27/12.21 28.27/12.21 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 28.27/12.21 listToFM = addListToFM emptyFM; 28.27/12.21 28.27/12.21 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.27/12.21 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 28.27/12.21 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 28.27/12.21 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 28.27/12.21 | otherwise = mkBranch 2 key elt fm_L fm_R where { 28.27/12.21 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); 28.27/12.21 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); 28.27/12.21 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 28.27/12.21 | otherwise = double_L fm_L fm_R; 28.27/12.21 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 28.27/12.21 | otherwise = double_R fm_L fm_R; 28.27/12.21 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; 28.27/12.21 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); 28.27/12.21 size_l = sizeFM fm_L; 28.27/12.21 size_r = sizeFM fm_R; 28.27/12.21 }; 28.27/12.21 28.27/12.21 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 28.80/12.33 mkBranch which key elt fm_l fm_r = let { 28.80/12.33 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 28.80/12.33 } in result where { 28.80/12.33 balance_ok = True; 28.80/12.33 left_ok = left_ok0 fm_l key fm_l; 28.80/12.33 left_ok0 fm_l key EmptyFM = True; 28.80/12.33 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 28.80/12.33 biggest_left_key = fst (findMax fm_l); 28.80/12.33 } in biggest_left_key < key; 28.80/12.33 left_size = sizeFM fm_l; 28.80/12.33 right_ok = right_ok0 fm_r key fm_r; 28.80/12.33 right_ok0 fm_r key EmptyFM = True; 28.80/12.33 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 28.80/12.33 smallest_right_key = fst (findMin fm_r); 28.80/12.33 } in key < smallest_right_key; 28.80/12.33 right_size = sizeFM fm_r; 28.80/12.33 unbox :: Int -> Int; 28.80/12.33 unbox x = x; 28.80/12.33 }; 28.80/12.33 28.80/12.33 sIZE_RATIO :: Int; 28.80/12.33 sIZE_RATIO = 5; 28.80/12.33 28.80/12.33 sizeFM :: FiniteMap a b -> Int; 28.80/12.33 sizeFM EmptyFM = 0; 28.80/12.33 sizeFM (Branch vyu vyv size vyw vyx) = size; 28.80/12.33 28.80/12.33 unitFM :: a -> b -> FiniteMap a b; 28.80/12.33 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 28.80/12.33 28.80/12.33 } 28.80/12.33 module Maybe where { 28.80/12.33 import qualified FiniteMap; 28.80/12.33 import qualified Main; 28.80/12.33 import qualified Prelude; 28.80/12.33 } 28.80/12.33 module Main where { 28.80/12.33 import qualified FiniteMap; 28.80/12.33 import qualified Maybe; 28.80/12.33 import qualified Prelude; 28.80/12.33 } 28.80/12.33 28.80/12.33 ---------------------------------------- 28.80/12.33 28.80/12.33 (9) COR (EQUIVALENT) 28.80/12.33 Cond Reductions: 28.80/12.33 The following Function with conditions 28.80/12.33 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 28.80/12.33 " 28.80/12.33 is transformed to 28.80/12.33 "compare x y = compare3 x y; 28.80/12.33 " 28.80/12.33 "compare2 x y True = EQ; 28.80/12.33 compare2 x y False = compare1 x y (x <= y); 28.80/12.33 " 28.80/12.33 "compare1 x y True = LT; 28.80/12.33 compare1 x y False = compare0 x y otherwise; 28.80/12.33 " 28.80/12.33 "compare0 x y True = GT; 28.80/12.33 " 28.80/12.33 "compare3 x y = compare2 x y (x == y); 28.80/12.33 " 28.80/12.33 The following Function with conditions 28.80/12.33 "absReal x|x >= 0x|otherwise`negate` x; 28.80/12.33 " 28.80/12.33 is transformed to 28.80/12.33 "absReal x = absReal2 x; 28.80/12.33 " 28.80/12.33 "absReal0 x True = `negate` x; 28.80/12.33 " 28.80/12.33 "absReal1 x True = x; 28.80/12.33 absReal1 x False = absReal0 x otherwise; 28.80/12.33 " 28.80/12.33 "absReal2 x = absReal1 x (x >= 0); 28.80/12.33 " 28.80/12.33 The following Function with conditions 28.80/12.33 "gcd' x 0 = x; 28.80/12.33 gcd' x y = gcd' y (x `rem` y); 28.80/12.33 " 28.80/12.33 is transformed to 28.80/12.33 "gcd' x vzw = gcd'2 x vzw; 28.80/12.33 gcd' x y = gcd'0 x y; 28.80/12.33 " 28.80/12.33 "gcd'0 x y = gcd' y (x `rem` y); 28.80/12.33 " 28.80/12.33 "gcd'1 True x vzw = x; 28.80/12.33 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 28.80/12.33 " 28.80/12.33 "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 28.80/12.33 gcd'2 wuu wuv = gcd'0 wuu wuv; 28.80/12.33 " 28.80/12.33 The following Function with conditions 28.80/12.33 "gcd 0 0 = error []; 28.80/12.33 gcd x y = gcd' (abs x) (abs y) where { 28.80/12.33 gcd' x 0 = x; 28.80/12.33 gcd' x y = gcd' y (x `rem` y); 28.80/12.33 } 28.80/12.33 ; 28.80/12.33 " 28.80/12.33 is transformed to 28.80/12.33 "gcd wuw wux = gcd3 wuw wux; 28.80/12.33 gcd x y = gcd0 x y; 28.80/12.33 " 28.80/12.33 "gcd0 x y = gcd' (abs x) (abs y) where { 28.80/12.33 gcd' x vzw = gcd'2 x vzw; 28.80/12.33 gcd' x y = gcd'0 x y; 28.80/12.33 ; 28.80/12.33 gcd'0 x y = gcd' y (x `rem` y); 28.80/12.33 ; 28.80/12.33 gcd'1 True x vzw = x; 28.80/12.33 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 28.80/12.33 ; 28.80/12.33 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 28.80/12.33 gcd'2 wuu wuv = gcd'0 wuu wuv; 28.80/12.33 } 28.80/12.33 ; 28.80/12.33 " 28.80/12.33 "gcd1 True wuw wux = error []; 28.80/12.33 gcd1 wuy wuz wvu = gcd0 wuz wvu; 28.80/12.33 " 28.80/12.33 "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; 28.80/12.33 gcd2 wvv wvw wvx = gcd0 wvw wvx; 28.80/12.33 " 28.80/12.33 "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; 28.80/12.33 gcd3 wvy wvz = gcd0 wvy wvz; 28.80/12.33 " 28.80/12.33 The following Function with conditions 28.80/12.33 "undefined |Falseundefined; 28.80/12.33 " 28.80/12.33 is transformed to 28.80/12.33 "undefined = undefined1; 28.80/12.33 " 28.80/12.33 "undefined0 True = undefined; 28.80/12.33 " 28.80/12.33 "undefined1 = undefined0 False; 28.80/12.33 " 28.80/12.33 The following Function with conditions 28.80/12.33 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 28.80/12.33 d = gcd x y; 28.80/12.33 } 28.80/12.33 ; 28.80/12.33 " 28.80/12.33 is transformed to 28.80/12.33 "reduce x y = reduce2 x y; 28.80/12.33 " 28.80/12.33 "reduce2 x y = reduce1 x y (y == 0) where { 28.80/12.33 d = gcd x y; 28.80/12.33 ; 28.80/12.33 reduce0 x y True = x `quot` d :% (y `quot` d); 28.80/12.33 ; 28.80/12.33 reduce1 x y True = error []; 28.80/12.33 reduce1 x y False = reduce0 x y otherwise; 28.80/12.33 } 28.80/12.33 ; 28.80/12.33 " 28.80/12.33 The following Function with conditions 28.80/12.33 "addToFM_C combiner EmptyFM key elt = unitFM key elt; 28.80/12.33 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; 28.80/12.33 " 28.80/12.33 is transformed to 28.80/12.33 "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 28.80/12.33 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; 28.80/12.33 " 28.80/12.33 "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; 28.80/12.33 " 28.80/12.33 "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); 28.80/12.33 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; 28.80/12.33 " 28.80/12.33 "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; 28.80/12.33 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); 28.80/12.33 " 28.80/12.33 "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); 28.80/12.33 " 28.80/12.33 "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 28.80/12.33 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 28.80/12.33 " 28.80/12.33 The following Function with conditions 28.80/12.33 "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; 28.80/12.33 " 28.80/12.33 is transformed to 28.80/12.33 "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); 28.80/12.33 " 28.80/12.33 "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 28.80/12.33 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; 28.80/12.33 " 28.80/12.33 "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 28.80/12.33 " 28.80/12.33 "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); 28.80/12.33 " 28.80/12.33 The following Function with conditions 28.80/12.33 "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; 28.80/12.33 " 28.80/12.33 is transformed to 28.80/12.33 "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); 28.80/12.33 " 28.80/12.33 "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 28.80/12.33 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; 28.80/12.33 " 28.80/12.33 "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 28.80/12.33 " 28.80/12.33 "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); 28.80/12.33 " 28.80/12.33 The following Function with conditions 28.80/12.33 "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 { 28.80/12.33 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); 28.80/12.33 ; 28.80/12.33 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); 28.80/12.33 ; 28.80/12.33 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; 28.80/12.33 ; 28.80/12.33 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; 28.80/12.33 ; 28.80/12.33 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; 28.80/12.33 ; 28.80/12.33 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); 28.80/12.33 ; 28.80/12.33 size_l = sizeFM fm_L; 28.80/12.33 ; 28.80/12.33 size_r = sizeFM fm_R; 28.80/12.33 } 28.80/12.33 ; 28.80/12.33 " 28.80/12.33 is transformed to 28.80/12.33 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 28.80/12.33 " 28.80/12.33 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 28.80/12.33 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); 28.80/12.33 ; 28.80/12.33 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); 28.80/12.33 ; 28.80/12.33 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); 28.80/12.33 ; 28.80/12.33 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 28.80/12.33 ; 28.80/12.33 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 28.80/12.33 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; 28.80/12.33 ; 28.80/12.33 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); 28.80/12.33 ; 28.80/12.33 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); 28.80/12.33 ; 28.80/12.33 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 28.80/12.33 ; 28.80/12.33 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 28.80/12.33 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; 28.80/12.33 ; 28.80/12.33 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); 28.80/12.33 ; 28.80/12.33 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 28.80/12.33 ; 28.80/12.33 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 28.80/12.33 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 28.80/12.33 ; 28.80/12.33 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 28.80/12.33 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 28.80/12.33 ; 28.80/12.33 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 28.80/12.33 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 28.80/12.33 ; 28.80/12.33 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; 28.80/12.33 ; 28.80/12.33 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); 28.80/12.33 ; 28.80/12.33 size_l = sizeFM fm_L; 28.80/12.33 ; 28.80/12.33 size_r = sizeFM fm_R; 28.80/12.33 } 28.80/12.33 ; 28.80/12.33 " 28.80/12.33 28.80/12.33 ---------------------------------------- 28.80/12.33 28.80/12.33 (10) 28.80/12.33 Obligation: 28.80/12.33 mainModule Main 28.80/12.33 module FiniteMap where { 28.80/12.33 import qualified Main; 28.80/12.33 import qualified Maybe; 28.80/12.33 import qualified Prelude; 28.80/12.33 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 28.80/12.33 28.80/12.33 instance (Eq a, Eq b) => Eq FiniteMap a b where { 28.80/12.33 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.80/12.33 } 28.80/12.33 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 28.80/12.33 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 28.80/12.33 28.80/12.33 addListToFM0 old new = new; 28.80/12.33 28.80/12.33 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 28.80/12.33 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 28.80/12.33 add fmap (key,elt) = addToFM_C combiner fmap key elt; 28.80/12.33 }; 28.80/12.33 28.80/12.33 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 28.80/12.33 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 28.80/12.33 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; 28.80/12.33 28.80/12.33 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; 28.80/12.33 28.80/12.33 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); 28.80/12.33 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; 28.80/12.33 28.80/12.33 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; 28.80/12.33 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); 28.80/12.33 28.80/12.33 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); 28.80/12.33 28.80/12.33 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 28.80/12.33 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 28.80/12.33 28.80/12.33 emptyFM :: FiniteMap b a; 28.80/12.33 emptyFM = EmptyFM; 28.80/12.33 28.80/12.33 findMax :: FiniteMap b a -> (b,a); 28.80/12.33 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 28.80/12.33 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 28.80/12.33 28.80/12.33 findMin :: FiniteMap a b -> (a,b); 28.80/12.33 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 28.80/12.33 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 28.80/12.33 28.80/12.33 fmToList :: FiniteMap b a -> [(b,a)]; 28.80/12.33 fmToList fm = foldFM fmToList0 [] fm; 28.80/12.33 28.80/12.33 fmToList0 key elt rest = (key,elt) : rest; 28.80/12.33 28.80/12.33 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 28.80/12.33 foldFM k z EmptyFM = z; 28.80/12.33 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.80/12.33 28.80/12.33 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 28.80/12.33 listToFM = addListToFM emptyFM; 28.80/12.33 28.80/12.33 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.80/12.33 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 28.80/12.33 28.80/12.33 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 28.80/12.33 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); 28.80/12.33 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); 28.80/12.33 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); 28.80/12.33 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 28.80/12.33 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 28.80/12.33 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; 28.80/12.33 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); 28.80/12.33 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); 28.80/12.33 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 28.80/12.33 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 28.80/12.33 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; 28.80/12.33 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); 28.80/12.33 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 28.80/12.33 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 28.80/12.33 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 28.80/12.33 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 28.80/12.33 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 28.80/12.33 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 28.80/12.33 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 28.80/12.33 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; 28.80/12.33 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); 28.80/12.33 size_l = sizeFM fm_L; 28.80/12.33 size_r = sizeFM fm_R; 28.80/12.33 }; 28.80/12.33 28.80/12.33 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.80/12.33 mkBranch which key elt fm_l fm_r = let { 28.80/12.33 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 28.80/12.33 } in result where { 28.80/12.33 balance_ok = True; 28.80/12.33 left_ok = left_ok0 fm_l key fm_l; 28.80/12.33 left_ok0 fm_l key EmptyFM = True; 28.80/12.33 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 28.80/12.33 biggest_left_key = fst (findMax fm_l); 28.80/12.33 } in biggest_left_key < key; 28.80/12.33 left_size = sizeFM fm_l; 28.80/12.33 right_ok = right_ok0 fm_r key fm_r; 28.80/12.33 right_ok0 fm_r key EmptyFM = True; 28.80/12.33 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 28.80/12.33 smallest_right_key = fst (findMin fm_r); 28.80/12.33 } in key < smallest_right_key; 28.80/12.33 right_size = sizeFM fm_r; 28.80/12.33 unbox :: Int -> Int; 28.80/12.33 unbox x = x; 28.80/12.33 }; 28.80/12.33 28.80/12.33 sIZE_RATIO :: Int; 28.80/12.33 sIZE_RATIO = 5; 28.80/12.33 28.80/12.33 sizeFM :: FiniteMap a b -> Int; 28.80/12.33 sizeFM EmptyFM = 0; 28.80/12.33 sizeFM (Branch vyu vyv size vyw vyx) = size; 28.80/12.33 28.80/12.33 unitFM :: a -> b -> FiniteMap a b; 28.80/12.33 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 28.80/12.33 28.80/12.33 } 28.80/12.33 module Maybe where { 28.80/12.33 import qualified FiniteMap; 28.80/12.34 import qualified Main; 28.80/12.34 import qualified Prelude; 28.80/12.34 } 28.80/12.34 module Main where { 28.80/12.34 import qualified FiniteMap; 28.80/12.34 import qualified Maybe; 28.80/12.34 import qualified Prelude; 28.80/12.34 } 28.80/12.34 28.80/12.34 ---------------------------------------- 28.80/12.34 28.80/12.34 (11) LetRed (EQUIVALENT) 28.80/12.34 Let/Where Reductions: 28.80/12.34 The bindings of the following Let/Where expression 28.80/12.34 "gcd' (abs x) (abs y) where { 28.80/12.34 gcd' x vzw = gcd'2 x vzw; 28.80/12.34 gcd' x y = gcd'0 x y; 28.80/12.34 ; 28.80/12.34 gcd'0 x y = gcd' y (x `rem` y); 28.80/12.34 ; 28.80/12.34 gcd'1 True x vzw = x; 28.80/12.34 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 28.80/12.34 ; 28.80/12.34 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 28.80/12.34 gcd'2 wuu wuv = gcd'0 wuu wuv; 28.80/12.34 } 28.80/12.34 " 28.80/12.34 are unpacked to the following functions on top level 28.80/12.34 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 28.80/12.34 " 28.80/12.34 "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; 28.80/12.34 gcd0Gcd' x y = gcd0Gcd'0 x y; 28.80/12.34 " 28.80/12.34 "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; 28.80/12.34 gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; 28.80/12.34 " 28.80/12.34 "gcd0Gcd'1 True x vzw = x; 28.80/12.34 gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; 28.80/12.34 " 28.80/12.34 The bindings of the following Let/Where expression 28.80/12.34 "reduce1 x y (y == 0) where { 28.80/12.34 d = gcd x y; 28.80/12.34 ; 28.80/12.34 reduce0 x y True = x `quot` d :% (y `quot` d); 28.80/12.34 ; 28.80/12.34 reduce1 x y True = error []; 28.80/12.34 reduce1 x y False = reduce0 x y otherwise; 28.80/12.34 } 28.80/12.34 " 28.80/12.34 are unpacked to the following functions on top level 28.80/12.34 "reduce2D wxw wxx = gcd wxw wxx; 28.80/12.34 " 28.80/12.34 "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); 28.80/12.34 " 28.80/12.34 "reduce2Reduce1 wxw wxx x y True = error []; 28.80/12.34 reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; 28.80/12.34 " 28.80/12.34 The bindings of the following Let/Where expression 28.80/12.34 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 28.80/12.34 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); 28.80/12.34 ; 28.80/12.34 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); 28.80/12.34 ; 28.80/12.34 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); 28.80/12.34 ; 28.80/12.34 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 28.80/12.34 ; 28.80/12.34 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 28.80/12.34 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; 28.80/12.34 ; 28.80/12.34 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); 28.80/12.34 ; 28.80/12.34 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); 28.80/12.34 ; 28.80/12.34 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 28.80/12.34 ; 28.80/12.34 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 28.80/12.34 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; 28.80/12.34 ; 28.80/12.34 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); 28.80/12.34 ; 28.80/12.34 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 28.80/12.34 ; 28.80/12.34 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 28.80/12.34 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 28.80/12.34 ; 28.80/12.34 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 28.80/12.34 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 28.80/12.34 ; 28.80/12.34 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 28.80/12.34 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 28.80/12.34 ; 28.80/12.34 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; 28.80/12.34 ; 28.80/12.34 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); 28.80/12.34 ; 28.80/12.34 size_l = sizeFM fm_L; 28.80/12.34 ; 28.80/12.34 size_r = sizeFM fm_R; 28.80/12.34 } 28.80/12.34 " 28.80/12.34 are unpacked to the following functions on top level 28.80/12.34 "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; 28.80/12.34 " 28.80/12.34 "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; 28.80/12.34 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; 28.80/12.34 " 28.80/12.34 "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); 28.80/12.34 " 28.80/12.34 "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 wxy wxz fm_lr fm_r); 28.80/12.34 " 28.80/12.34 "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 28.80/12.34 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); 28.80/12.34 " 28.80/12.34 "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 28.80/12.34 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 28.80/12.34 " 28.80/12.34 "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 wxy wxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 28.80/12.34 " 28.80/12.34 "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); 28.80/12.34 " 28.80/12.34 "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyu; 28.80/12.34 " 28.80/12.34 "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; 28.80/12.34 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; 28.80/12.34 " 28.80/12.34 "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); 28.80/12.34 " 28.80/12.34 "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; 28.80/12.34 " 28.80/12.34 "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 28.80/12.34 " 28.80/12.34 "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); 28.80/12.34 " 28.80/12.34 "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; 28.80/12.34 " 28.80/12.34 "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 wxy wxz fm_lrr fm_r); 28.80/12.34 " 28.80/12.34 "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 28.80/12.34 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); 28.80/12.34 " 28.80/12.34 "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 wxy wxz fm_l fm_rl) fm_rr; 28.80/12.34 " 28.80/12.34 The bindings of the following Let/Where expression 28.80/12.34 "foldl add fm key_elt_pairs where { 28.80/12.34 add fmap (key,elt) = addToFM_C combiner fmap key elt; 28.80/12.34 } 28.80/12.34 " 28.80/12.34 are unpacked to the following functions on top level 28.80/12.34 "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 28.80/12.34 " 28.80/12.34 The bindings of the following Let/Where expression 28.80/12.34 "let { 28.80/12.34 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 28.80/12.34 } in result where { 28.80/12.34 balance_ok = True; 28.80/12.34 ; 28.80/12.34 left_ok = left_ok0 fm_l key fm_l; 28.80/12.34 ; 28.80/12.34 left_ok0 fm_l key EmptyFM = True; 28.80/12.34 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 28.80/12.34 biggest_left_key = fst (findMax fm_l); 28.80/12.34 } in biggest_left_key < key; 28.80/12.34 ; 28.80/12.34 left_size = sizeFM fm_l; 28.80/12.34 ; 28.80/12.34 right_ok = right_ok0 fm_r key fm_r; 28.80/12.34 ; 28.80/12.34 right_ok0 fm_r key EmptyFM = True; 28.80/12.34 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 28.80/12.34 smallest_right_key = fst (findMin fm_r); 28.80/12.34 } in key < smallest_right_key; 28.89/12.40 ; 28.89/12.40 right_size = sizeFM fm_r; 28.89/12.40 ; 28.89/12.40 unbox x = x; 28.89/12.40 } 28.89/12.40 " 28.89/12.40 are unpacked to the following functions on top level 28.89/12.40 "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 28.89/12.40 " 28.89/12.40 "mkBranchBalance_ok wyx wyy wyz = True; 28.89/12.40 " 28.89/12.40 "mkBranchRight_size wyx wyy wyz = sizeFM wyx; 28.89/12.40 " 28.89/12.40 "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 28.89/12.40 " 28.89/12.40 "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 28.89/12.40 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 28.89/12.40 " 28.89/12.40 "mkBranchUnbox wyx wyy wyz x = x; 28.89/12.40 " 28.89/12.40 "mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 28.89/12.40 " 28.89/12.40 "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 28.89/12.40 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 28.89/12.40 " 28.89/12.40 The bindings of the following Let/Where expression 28.89/12.40 "let { 28.89/12.40 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 28.89/12.40 } in result" 28.89/12.40 are unpacked to the following functions on top level 28.89/12.40 "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; 28.89/12.40 " 28.89/12.40 The bindings of the following Let/Where expression 28.89/12.40 "let { 28.89/12.40 biggest_left_key = fst (findMax fm_l); 28.89/12.40 } in biggest_left_key < key" 28.89/12.40 are unpacked to the following functions on top level 28.89/12.40 "mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 28.89/12.40 " 28.89/12.40 The bindings of the following Let/Where expression 28.89/12.40 "let { 28.89/12.40 smallest_right_key = fst (findMin fm_r); 28.89/12.40 } in key < smallest_right_key" 28.89/12.40 are unpacked to the following functions on top level 28.89/12.40 "mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 28.89/12.40 " 28.89/12.40 28.89/12.40 ---------------------------------------- 28.89/12.40 28.89/12.40 (12) 28.89/12.40 Obligation: 28.89/12.40 mainModule Main 28.89/12.40 module FiniteMap where { 28.89/12.40 import qualified Main; 28.89/12.40 import qualified Maybe; 28.89/12.40 import qualified Prelude; 28.89/12.40 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 28.89/12.40 28.89/12.40 instance (Eq a, Eq b) => Eq FiniteMap a b where { 28.89/12.40 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.89/12.40 } 28.89/12.40 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 28.89/12.40 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 28.89/12.40 28.89/12.40 addListToFM0 old new = new; 28.89/12.40 28.89/12.40 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 28.89/12.40 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 28.89/12.40 28.89/12.40 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 28.89/12.40 28.89/12.40 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 28.89/12.40 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 28.89/12.40 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; 28.89/12.40 28.89/12.40 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; 28.89/12.40 28.89/12.40 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); 28.89/12.40 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; 28.89/12.40 28.89/12.40 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; 28.89/12.40 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); 28.89/12.40 28.89/12.40 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); 28.89/12.40 28.89/12.40 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 28.89/12.40 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 28.89/12.40 28.89/12.40 emptyFM :: FiniteMap b a; 28.89/12.40 emptyFM = EmptyFM; 28.89/12.40 28.89/12.40 findMax :: FiniteMap a b -> (a,b); 28.89/12.40 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 28.89/12.40 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 28.89/12.40 28.89/12.40 findMin :: FiniteMap a b -> (a,b); 28.89/12.40 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 28.89/12.40 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 28.89/12.40 28.89/12.40 fmToList :: FiniteMap a b -> [(a,b)]; 28.89/12.40 fmToList fm = foldFM fmToList0 [] fm; 28.89/12.40 28.89/12.40 fmToList0 key elt rest = (key,elt) : rest; 28.89/12.40 28.89/12.40 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 28.89/12.40 foldFM k z EmptyFM = z; 28.89/12.40 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.89/12.40 28.89/12.40 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 28.89/12.40 listToFM = addListToFM emptyFM; 28.89/12.40 28.89/12.40 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.89/12.40 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 28.89/12.40 28.89/12.40 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < 2); 28.89/12.40 28.89/12.40 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 wxy wxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 28.89/12.40 28.89/12.40 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 wxy wxz fm_lrr fm_r); 28.89/12.40 28.89/12.40 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); 28.89/12.40 28.89/12.40 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; 28.89/12.40 28.89/12.40 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; 28.89/12.40 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; 28.89/12.40 28.89/12.40 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); 28.89/12.40 28.89/12.40 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); 28.89/12.40 28.89/12.40 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; 28.89/12.40 28.89/12.40 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; 28.89/12.40 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; 28.89/12.40 28.89/12.40 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); 28.89/12.40 28.89/12.40 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 28.89/12.40 28.89/12.40 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 28.89/12.40 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 28.89/12.40 28.89/12.40 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 28.89/12.40 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); 28.89/12.40 28.89/12.40 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 28.89/12.40 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); 28.89/12.40 28.89/12.40 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 wxy wxz fm_l fm_rl) fm_rr; 28.89/12.40 28.89/12.40 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 wxy wxz fm_lr fm_r); 28.89/12.40 28.89/12.40 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; 28.89/12.40 28.89/12.40 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyu; 28.89/12.40 28.89/12.40 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.89/12.40 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 28.89/12.40 28.89/12.40 mkBranchBalance_ok wyx wyy wyz = True; 28.89/12.40 28.89/12.40 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 28.89/12.40 28.89/12.40 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 28.89/12.40 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 28.89/12.40 28.89/12.40 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 28.89/12.40 28.89/12.40 mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 28.89/12.40 28.89/12.40 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; 28.89/12.40 28.89/12.40 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 28.89/12.40 28.89/12.40 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 28.89/12.40 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 28.89/12.40 28.89/12.40 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 28.89/12.40 28.89/12.40 mkBranchRight_size wyx wyy wyz = sizeFM wyx; 28.89/12.40 28.89/12.40 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 28.89/12.40 mkBranchUnbox wyx wyy wyz x = x; 28.89/12.40 28.89/12.40 sIZE_RATIO :: Int; 28.89/12.40 sIZE_RATIO = 5; 28.89/12.40 28.89/12.40 sizeFM :: FiniteMap b a -> Int; 28.89/12.40 sizeFM EmptyFM = 0; 28.89/12.40 sizeFM (Branch vyu vyv size vyw vyx) = size; 28.89/12.40 28.89/12.40 unitFM :: a -> b -> FiniteMap a b; 28.89/12.40 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 28.89/12.40 28.89/12.40 } 28.89/12.40 module Maybe where { 28.89/12.40 import qualified FiniteMap; 28.89/12.40 import qualified Main; 28.89/12.40 import qualified Prelude; 28.89/12.40 } 28.89/12.40 module Main where { 28.89/12.40 import qualified FiniteMap; 28.89/12.40 import qualified Maybe; 28.89/12.40 import qualified Prelude; 28.89/12.40 } 28.89/12.40 28.89/12.40 ---------------------------------------- 28.89/12.40 28.89/12.40 (13) NumRed (SOUND) 28.89/12.40 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 28.89/12.40 ---------------------------------------- 28.89/12.40 28.89/12.40 (14) 28.89/12.40 Obligation: 28.89/12.40 mainModule Main 28.89/12.40 module FiniteMap where { 28.89/12.40 import qualified Main; 28.89/12.40 import qualified Maybe; 28.89/12.40 import qualified Prelude; 28.89/12.40 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 28.89/12.40 28.89/12.40 instance (Eq a, Eq b) => Eq FiniteMap a b where { 28.89/12.40 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.89/12.40 } 28.89/12.40 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 28.89/12.40 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 28.89/12.40 28.89/12.40 addListToFM0 old new = new; 28.89/12.40 28.89/12.40 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 28.89/12.40 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 28.89/12.40 28.89/12.40 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 28.89/12.40 28.89/12.40 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 28.89/12.40 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 28.89/12.40 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; 28.89/12.40 28.89/12.40 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; 28.89/12.40 28.89/12.40 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); 28.89/12.40 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; 28.89/12.40 28.89/12.40 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; 28.89/12.40 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); 28.89/12.40 28.89/12.40 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); 28.89/12.40 28.89/12.40 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 28.89/12.40 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 28.89/12.40 28.89/12.40 emptyFM :: FiniteMap a b; 28.89/12.40 emptyFM = EmptyFM; 28.89/12.40 28.89/12.40 findMax :: FiniteMap a b -> (a,b); 28.89/12.40 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 28.89/12.40 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 28.89/12.40 28.89/12.40 findMin :: FiniteMap b a -> (b,a); 28.89/12.40 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 28.89/12.40 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 28.89/12.40 28.89/12.40 fmToList :: FiniteMap b a -> [(b,a)]; 28.89/12.40 fmToList fm = foldFM fmToList0 [] fm; 28.89/12.40 28.89/12.40 fmToList0 key elt rest = (key,elt) : rest; 28.89/12.40 28.89/12.40 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 28.89/12.40 foldFM k z EmptyFM = z; 28.89/12.40 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.89/12.40 28.89/12.40 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 28.89/12.40 listToFM = addListToFM emptyFM; 28.89/12.40 28.89/12.40 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.89/12.40 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 28.89/12.40 28.89/12.40 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < Pos (Succ (Succ Zero))); 28.89/12.40 28.89/12.40 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))))))) wxy wxz fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); 28.89/12.40 28.89/12.40 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))))))))))))) wxy wxz fm_lrr fm_r); 28.89/12.40 28.89/12.40 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); 28.89/12.40 28.89/12.40 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; 28.89/12.40 28.89/12.40 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; 28.89/12.40 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; 28.89/12.40 28.89/12.40 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); 28.89/12.40 28.89/12.40 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); 28.89/12.40 28.89/12.40 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; 28.89/12.40 28.89/12.40 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; 28.89/12.40 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; 28.89/12.40 28.89/12.40 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); 28.89/12.40 28.89/12.40 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 28.89/12.40 28.89/12.40 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 28.89/12.40 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 28.89/12.40 28.89/12.40 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 28.89/12.40 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); 28.89/12.40 28.89/12.40 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 28.89/12.40 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); 28.89/12.40 28.89/12.40 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))))) wxy wxz fm_l fm_rl) fm_rr; 28.89/12.40 28.89/12.40 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)))))))))) wxy wxz fm_lr fm_r); 28.89/12.40 28.89/12.40 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; 28.89/12.40 28.89/12.40 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyu; 28.89/12.40 28.89/12.40 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.89/12.40 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 28.89/12.40 28.89/12.40 mkBranchBalance_ok wyx wyy wyz = True; 28.89/12.40 28.89/12.40 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 28.89/12.40 28.89/12.40 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 28.89/12.40 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 28.89/12.40 28.89/12.40 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 28.89/12.40 28.89/12.40 mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 28.89/12.40 28.89/12.40 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; 28.89/12.40 28.89/12.40 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 28.89/12.40 28.89/12.40 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 28.89/12.40 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 28.89/12.40 28.89/12.40 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 28.89/12.40 28.89/12.40 mkBranchRight_size wyx wyy wyz = sizeFM wyx; 28.89/12.40 28.89/12.40 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 28.89/12.40 mkBranchUnbox wyx wyy wyz x = x; 28.89/12.40 28.89/12.40 sIZE_RATIO :: Int; 28.89/12.40 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 28.89/12.40 28.89/12.40 sizeFM :: FiniteMap a b -> Int; 28.89/12.40 sizeFM EmptyFM = Pos Zero; 28.89/12.40 sizeFM (Branch vyu vyv size vyw vyx) = size; 28.89/12.40 28.89/12.40 unitFM :: a -> b -> FiniteMap a b; 28.89/12.40 unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; 28.89/12.40 28.89/12.40 } 28.89/12.40 module Maybe where { 28.89/12.40 import qualified FiniteMap; 28.89/12.40 import qualified Main; 28.89/12.40 import qualified Prelude; 28.89/12.40 } 28.89/12.40 module Main where { 28.89/12.40 import qualified FiniteMap; 28.89/12.40 import qualified Maybe; 28.89/12.40 import qualified Prelude; 28.89/12.40 } 28.89/12.40 28.89/12.40 ---------------------------------------- 28.89/12.40 28.89/12.40 (15) Narrow (SOUND) 28.89/12.40 Haskell To QDPs 28.89/12.40 28.89/12.40 digraph dp_graph { 28.89/12.40 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.listToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 28.89/12.40 3[label="FiniteMap.listToFM xuu3",fontsize=16,color="black",shape="triangle"];3 -> 4[label="",style="solid", color="black", weight=3]; 28.89/12.40 4[label="FiniteMap.addListToFM FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];4 -> 5[label="",style="solid", color="black", weight=3]; 28.89/12.40 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]; 28.89/12.40 6 -> 20[label="",style="dashed", color="red", weight=0]; 28.89/12.40 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) FiniteMap.emptyFM xuu3",fontsize=16,color="magenta"];6 -> 21[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 6 -> 22[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 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]; 28.89/12.40 20[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 xuu311",fontsize=16,color="burlywood",shape="triangle"];4395[label="xuu311/xuu3110 : xuu3111",fontsize=10,color="white",style="solid",shape="box"];20 -> 4395[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4395 -> 28[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4396[label="xuu311/[]",fontsize=10,color="white",style="solid",shape="box"];20 -> 4396[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4396 -> 29[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 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]; 28.89/12.40 29[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 []",fontsize=16,color="black",shape="box"];29 -> 31[label="",style="solid", color="black", weight=3]; 28.89/12.40 30 -> 20[label="",style="dashed", color="red", weight=0]; 28.89/12.40 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]; 28.89/12.40 30 -> 33[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 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"];4397[label="xuu3110/(xuu31100,xuu31101)",fontsize=10,color="white",style="solid",shape="box"];33 -> 4397[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4397 -> 34[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 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]; 28.89/12.40 35[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu6 xuu31100 xuu31101",fontsize=16,color="burlywood",shape="triangle"];4398[label="xuu6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];35 -> 4398[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4398 -> 36[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4399[label="xuu6/FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64",fontsize=10,color="white",style="solid",shape="box"];35 -> 4399[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4399 -> 37[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 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]; 28.89/12.40 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]; 28.89/12.40 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]; 28.89/12.40 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]; 28.89/12.40 40[label="FiniteMap.unitFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];40 -> 42[label="",style="solid", color="black", weight=3]; 28.89/12.40 41[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (xuu31100 < xuu60)",fontsize=16,color="black",shape="box"];41 -> 43[label="",style="solid", color="black", weight=3]; 28.89/12.40 42[label="FiniteMap.Branch xuu31100 xuu31101 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];42 -> 44[label="",style="dashed", color="green", weight=3]; 28.89/12.40 42 -> 45[label="",style="dashed", color="green", weight=3]; 28.89/12.40 43[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (compare xuu31100 xuu60 == LT)",fontsize=16,color="black",shape="box"];43 -> 46[label="",style="solid", color="black", weight=3]; 28.89/12.40 44 -> 22[label="",style="dashed", color="red", weight=0]; 28.89/12.40 44[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];45 -> 22[label="",style="dashed", color="red", weight=0]; 28.89/12.40 45[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];46[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (compare3 xuu31100 xuu60 == LT)",fontsize=16,color="black",shape="box"];46 -> 47[label="",style="solid", color="black", weight=3]; 28.89/12.40 47[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (compare2 xuu31100 xuu60 (xuu31100 == xuu60) == LT)",fontsize=16,color="burlywood",shape="box"];4400[label="xuu31100/Left xuu311000",fontsize=10,color="white",style="solid",shape="box"];47 -> 4400[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4400 -> 48[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4401[label="xuu31100/Right xuu311000",fontsize=10,color="white",style="solid",shape="box"];47 -> 4401[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4401 -> 49[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 48[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 (compare2 (Left xuu311000) xuu60 (Left xuu311000 == xuu60) == LT)",fontsize=16,color="burlywood",shape="box"];4402[label="xuu60/Left xuu600",fontsize=10,color="white",style="solid",shape="box"];48 -> 4402[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4402 -> 50[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4403[label="xuu60/Right xuu600",fontsize=10,color="white",style="solid",shape="box"];48 -> 4403[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4403 -> 51[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 49[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 (compare2 (Right xuu311000) xuu60 (Right xuu311000 == xuu60) == LT)",fontsize=16,color="burlywood",shape="box"];4404[label="xuu60/Left xuu600",fontsize=10,color="white",style="solid",shape="box"];49 -> 4404[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4404 -> 52[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4405[label="xuu60/Right xuu600",fontsize=10,color="white",style="solid",shape="box"];49 -> 4405[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4405 -> 53[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 50[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 (compare2 (Left xuu311000) (Left xuu600) (Left xuu311000 == Left xuu600) == LT)",fontsize=16,color="black",shape="box"];50 -> 54[label="",style="solid", color="black", weight=3]; 28.89/12.40 51[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 (compare2 (Left xuu311000) (Right xuu600) (Left xuu311000 == Right xuu600) == LT)",fontsize=16,color="black",shape="box"];51 -> 55[label="",style="solid", color="black", weight=3]; 28.89/12.40 52[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 (compare2 (Right xuu311000) (Left xuu600) (Right xuu311000 == Left xuu600) == LT)",fontsize=16,color="black",shape="box"];52 -> 56[label="",style="solid", color="black", weight=3]; 28.89/12.40 53[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 (compare2 (Right xuu311000) (Right xuu600) (Right xuu311000 == Right xuu600) == LT)",fontsize=16,color="black",shape="box"];53 -> 57[label="",style="solid", color="black", weight=3]; 28.89/12.40 54 -> 218[label="",style="dashed", color="red", weight=0]; 28.89/12.40 54[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 (compare2 (Left xuu311000) (Left xuu600) (xuu311000 == xuu600) == LT)",fontsize=16,color="magenta"];54 -> 219[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 54 -> 220[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 54 -> 221[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 54 -> 222[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 54 -> 223[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 54 -> 224[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 54 -> 225[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 54 -> 226[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 55 -> 134[label="",style="dashed", color="red", weight=0]; 28.89/12.40 55[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 (compare2 (Left xuu311000) (Right xuu600) False == LT)",fontsize=16,color="magenta"];55 -> 135[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 56 -> 142[label="",style="dashed", color="red", weight=0]; 28.89/12.40 56[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 (compare2 (Right xuu311000) (Left xuu600) False == LT)",fontsize=16,color="magenta"];56 -> 143[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 57 -> 272[label="",style="dashed", color="red", weight=0]; 28.89/12.40 57[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 (compare2 (Right xuu311000) (Right xuu600) (xuu311000 == xuu600) == LT)",fontsize=16,color="magenta"];57 -> 273[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 57 -> 274[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 57 -> 275[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 57 -> 276[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 57 -> 277[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 57 -> 278[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 57 -> 279[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 57 -> 280[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 219[label="xuu31101",fontsize=16,color="green",shape="box"];220[label="xuu63",fontsize=16,color="green",shape="box"];221[label="xuu61",fontsize=16,color="green",shape="box"];222[label="xuu64",fontsize=16,color="green",shape="box"];223[label="xuu311000",fontsize=16,color="green",shape="box"];224 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.40 224[label="compare2 (Left xuu311000) (Left xuu600) (xuu311000 == xuu600) == LT",fontsize=16,color="magenta"];224 -> 230[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 224 -> 231[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 225[label="xuu600",fontsize=16,color="green",shape="box"];226[label="xuu62",fontsize=16,color="green",shape="box"];218[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 xuu44",fontsize=16,color="burlywood",shape="triangle"];4406[label="xuu44/False",fontsize=10,color="white",style="solid",shape="box"];218 -> 4406[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4406 -> 232[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4407[label="xuu44/True",fontsize=10,color="white",style="solid",shape="box"];218 -> 4407[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4407 -> 233[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 135 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.40 135[label="compare2 (Left xuu311000) (Right xuu600) False == LT",fontsize=16,color="magenta"];135 -> 138[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 135 -> 139[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 134[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 xuu42",fontsize=16,color="burlywood",shape="triangle"];4408[label="xuu42/False",fontsize=10,color="white",style="solid",shape="box"];134 -> 4408[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4408 -> 140[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4409[label="xuu42/True",fontsize=10,color="white",style="solid",shape="box"];134 -> 4409[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4409 -> 141[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 143 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.40 143[label="compare2 (Right xuu311000) (Left xuu600) False == LT",fontsize=16,color="magenta"];143 -> 146[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 143 -> 147[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 142[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 xuu43",fontsize=16,color="burlywood",shape="triangle"];4410[label="xuu43/False",fontsize=10,color="white",style="solid",shape="box"];142 -> 4410[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4410 -> 148[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4411[label="xuu43/True",fontsize=10,color="white",style="solid",shape="box"];142 -> 4411[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4411 -> 149[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 273[label="xuu31101",fontsize=16,color="green",shape="box"];274[label="xuu64",fontsize=16,color="green",shape="box"];275[label="xuu62",fontsize=16,color="green",shape="box"];276 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.40 276[label="compare2 (Right xuu311000) (Right xuu600) (xuu311000 == xuu600) == LT",fontsize=16,color="magenta"];276 -> 284[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 276 -> 285[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 277[label="xuu63",fontsize=16,color="green",shape="box"];278[label="xuu61",fontsize=16,color="green",shape="box"];279[label="xuu311000",fontsize=16,color="green",shape="box"];280[label="xuu600",fontsize=16,color="green",shape="box"];272[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 xuu54",fontsize=16,color="burlywood",shape="triangle"];4412[label="xuu54/False",fontsize=10,color="white",style="solid",shape="box"];272 -> 4412[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4412 -> 286[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4413[label="xuu54/True",fontsize=10,color="white",style="solid",shape="box"];272 -> 4413[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4413 -> 287[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 230[label="LT",fontsize=16,color="green",shape="box"];231 -> 2204[label="",style="dashed", color="red", weight=0]; 28.89/12.40 231[label="compare2 (Left xuu311000) (Left xuu600) (xuu311000 == xuu600)",fontsize=16,color="magenta"];231 -> 2205[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 231 -> 2206[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 231 -> 2207[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 91[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4414[label="xuu311000/LT",fontsize=10,color="white",style="solid",shape="box"];91 -> 4414[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4414 -> 129[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4415[label="xuu311000/EQ",fontsize=10,color="white",style="solid",shape="box"];91 -> 4415[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4415 -> 130[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4416[label="xuu311000/GT",fontsize=10,color="white",style="solid",shape="box"];91 -> 4416[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4416 -> 131[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 232[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 False",fontsize=16,color="black",shape="box"];232 -> 245[label="",style="solid", color="black", weight=3]; 28.89/12.40 233[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 True",fontsize=16,color="black",shape="box"];233 -> 246[label="",style="solid", color="black", weight=3]; 28.89/12.40 138[label="LT",fontsize=16,color="green",shape="box"];139 -> 2204[label="",style="dashed", color="red", weight=0]; 28.89/12.40 139[label="compare2 (Left xuu311000) (Right xuu600) False",fontsize=16,color="magenta"];139 -> 2208[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 139 -> 2209[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 139 -> 2210[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 140[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 False",fontsize=16,color="black",shape="box"];140 -> 151[label="",style="solid", color="black", weight=3]; 28.89/12.40 141[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];141 -> 152[label="",style="solid", color="black", weight=3]; 28.89/12.40 146[label="LT",fontsize=16,color="green",shape="box"];147 -> 2204[label="",style="dashed", color="red", weight=0]; 28.89/12.40 147[label="compare2 (Right xuu311000) (Left xuu600) False",fontsize=16,color="magenta"];147 -> 2211[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 147 -> 2212[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 147 -> 2213[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 148[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 False",fontsize=16,color="black",shape="box"];148 -> 235[label="",style="solid", color="black", weight=3]; 28.89/12.40 149[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];149 -> 236[label="",style="solid", color="black", weight=3]; 28.89/12.40 284[label="LT",fontsize=16,color="green",shape="box"];285 -> 2204[label="",style="dashed", color="red", weight=0]; 28.89/12.40 285[label="compare2 (Right xuu311000) (Right xuu600) (xuu311000 == xuu600)",fontsize=16,color="magenta"];285 -> 2214[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 285 -> 2215[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 285 -> 2216[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 286[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 False",fontsize=16,color="black",shape="box"];286 -> 323[label="",style="solid", color="black", weight=3]; 28.89/12.40 287[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 True",fontsize=16,color="black",shape="box"];287 -> 324[label="",style="solid", color="black", weight=3]; 28.89/12.40 2205[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];4417[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4417[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4417 -> 2242[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4418[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4418[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4418 -> 2243[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4419[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4419[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4419 -> 2244[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4420[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4420[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4420 -> 2245[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4421[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4421[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4421 -> 2246[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4422[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4422[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4422 -> 2247[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4423[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4423[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4423 -> 2248[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4424[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4424[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4424 -> 2249[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4425[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4425[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4425 -> 2250[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4426[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4426[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4426 -> 2251[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4427[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4427[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4427 -> 2252[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4428[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4428[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4428 -> 2253[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4429[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4429[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4429 -> 2254[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4430[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2205 -> 4430[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4430 -> 2255[label="",style="solid", color="blue", weight=3]; 28.89/12.40 2206[label="Left xuu600",fontsize=16,color="green",shape="box"];2207[label="Left xuu311000",fontsize=16,color="green",shape="box"];2204[label="compare2 xuu500 xuu510 xuu151",fontsize=16,color="burlywood",shape="triangle"];4431[label="xuu151/False",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4431[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4431 -> 2256[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4432[label="xuu151/True",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4432[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4432 -> 2257[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 129[label="LT == xuu600",fontsize=16,color="burlywood",shape="box"];4433[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];129 -> 4433[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4433 -> 209[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4434[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];129 -> 4434[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4434 -> 210[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4435[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];129 -> 4435[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4435 -> 211[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 130[label="EQ == xuu600",fontsize=16,color="burlywood",shape="box"];4436[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];130 -> 4436[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4436 -> 212[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4437[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];130 -> 4437[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4437 -> 213[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4438[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];130 -> 4438[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4438 -> 214[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 131[label="GT == xuu600",fontsize=16,color="burlywood",shape="box"];4439[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];131 -> 4439[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4439 -> 215[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4440[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];131 -> 4440[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4440 -> 216[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4441[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];131 -> 4441[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4441 -> 217[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 245 -> 316[label="",style="dashed", color="red", weight=0]; 28.89/12.40 245[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 (Left xuu22 > Left xuu17)",fontsize=16,color="magenta"];245 -> 317[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 246 -> 265[label="",style="dashed", color="red", weight=0]; 28.89/12.40 246[label="FiniteMap.mkBalBranch (Left xuu17) xuu18 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 (Left xuu22) xuu23) xuu21",fontsize=16,color="magenta"];246 -> 266[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 246 -> 267[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 246 -> 268[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 246 -> 269[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2208[label="False",fontsize=16,color="green",shape="box"];2209[label="Right xuu600",fontsize=16,color="green",shape="box"];2210[label="Left xuu311000",fontsize=16,color="green",shape="box"];151 -> 349[label="",style="dashed", color="red", weight=0]; 28.89/12.40 151[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 (Left xuu311000 > Right xuu600)",fontsize=16,color="magenta"];151 -> 350[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 152 -> 239[label="",style="dashed", color="red", weight=0]; 28.89/12.40 152[label="FiniteMap.mkBalBranch (Right xuu600) xuu61 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 (Left xuu311000) xuu31101) xuu64",fontsize=16,color="magenta"];152 -> 240[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2211[label="False",fontsize=16,color="green",shape="box"];2212[label="Left xuu600",fontsize=16,color="green",shape="box"];2213[label="Right xuu311000",fontsize=16,color="green",shape="box"];235 -> 364[label="",style="dashed", color="red", weight=0]; 28.89/12.40 235[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 (Right xuu311000 > Left xuu600)",fontsize=16,color="magenta"];235 -> 365[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 236 -> 265[label="",style="dashed", color="red", weight=0]; 28.89/12.40 236[label="FiniteMap.mkBalBranch (Left xuu600) xuu61 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 (Right xuu311000) xuu31101) xuu64",fontsize=16,color="magenta"];236 -> 270[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2214[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];4442[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4442[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4442 -> 2258[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4443[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4443[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4443 -> 2259[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4444[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4444[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4444 -> 2260[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4445[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4445[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4445 -> 2261[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4446[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4446[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4446 -> 2262[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4447[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4447[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4447 -> 2263[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4448[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4448[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4448 -> 2264[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4449[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4449[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4449 -> 2265[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4450[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4450[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4450 -> 2266[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4451[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4451[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4451 -> 2267[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4452[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4452[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4452 -> 2268[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4453[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4453[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4453 -> 2269[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4454[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4454[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4454 -> 2270[label="",style="solid", color="blue", weight=3]; 28.89/12.40 4455[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 4455[label="",style="solid", color="blue", weight=9]; 28.89/12.40 4455 -> 2271[label="",style="solid", color="blue", weight=3]; 28.89/12.40 2215[label="Right xuu600",fontsize=16,color="green",shape="box"];2216[label="Right xuu311000",fontsize=16,color="green",shape="box"];323 -> 402[label="",style="dashed", color="red", weight=0]; 28.89/12.40 323[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 (Right xuu39 > Right xuu34)",fontsize=16,color="magenta"];323 -> 403[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 324 -> 239[label="",style="dashed", color="red", weight=0]; 28.89/12.40 324[label="FiniteMap.mkBalBranch (Right xuu34) xuu35 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu37 (Right xuu39) xuu40) xuu38",fontsize=16,color="magenta"];324 -> 353[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 324 -> 354[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 324 -> 355[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 324 -> 356[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2242[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4456[label="xuu311000/Nothing",fontsize=10,color="white",style="solid",shape="box"];2242 -> 4456[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4456 -> 2308[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4457[label="xuu311000/Just xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2242 -> 4457[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4457 -> 2309[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2243[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4458[label="xuu311000/False",fontsize=10,color="white",style="solid",shape="box"];2243 -> 4458[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4458 -> 2310[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4459[label="xuu311000/True",fontsize=10,color="white",style="solid",shape="box"];2243 -> 4459[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4459 -> 2311[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2244[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2244 -> 2312[label="",style="solid", color="black", weight=3]; 28.89/12.40 2245[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4460[label="xuu311000/(xuu3110000,xuu3110001,xuu3110002)",fontsize=10,color="white",style="solid",shape="box"];2245 -> 4460[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4460 -> 2313[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2246[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4461[label="xuu311000/Left xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4461[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4461 -> 2314[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4462[label="xuu311000/Right xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4462[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4462 -> 2315[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2247[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4463[label="xuu311000/(xuu3110000,xuu3110001)",fontsize=10,color="white",style="solid",shape="box"];2247 -> 4463[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4463 -> 2316[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2248[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4464[label="xuu311000/Integer xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2248 -> 4464[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4464 -> 2317[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2249[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2249 -> 2318[label="",style="solid", color="black", weight=3]; 28.89/12.40 2250[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4465[label="xuu311000/xuu3110000 :% xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4465[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4465 -> 2319[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2251[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4466[label="xuu311000/()",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4466[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4466 -> 2320[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2252[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2252 -> 2321[label="",style="solid", color="black", weight=3]; 28.89/12.40 2253[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4467[label="xuu311000/xuu3110000 : xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2253 -> 4467[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4467 -> 2322[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4468[label="xuu311000/[]",fontsize=10,color="white",style="solid",shape="box"];2253 -> 4468[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4468 -> 2323[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2254[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2254 -> 2324[label="",style="solid", color="black", weight=3]; 28.89/12.40 2255 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.40 2255[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2256[label="compare2 xuu500 xuu510 False",fontsize=16,color="black",shape="box"];2256 -> 2325[label="",style="solid", color="black", weight=3]; 28.89/12.40 2257[label="compare2 xuu500 xuu510 True",fontsize=16,color="black",shape="box"];2257 -> 2326[label="",style="solid", color="black", weight=3]; 28.89/12.40 209[label="LT == LT",fontsize=16,color="black",shape="box"];209 -> 307[label="",style="solid", color="black", weight=3]; 28.89/12.40 210[label="LT == EQ",fontsize=16,color="black",shape="box"];210 -> 308[label="",style="solid", color="black", weight=3]; 28.89/12.40 211[label="LT == GT",fontsize=16,color="black",shape="box"];211 -> 309[label="",style="solid", color="black", weight=3]; 28.89/12.40 212[label="EQ == LT",fontsize=16,color="black",shape="box"];212 -> 310[label="",style="solid", color="black", weight=3]; 28.89/12.40 213[label="EQ == EQ",fontsize=16,color="black",shape="box"];213 -> 311[label="",style="solid", color="black", weight=3]; 28.89/12.40 214[label="EQ == GT",fontsize=16,color="black",shape="box"];214 -> 312[label="",style="solid", color="black", weight=3]; 28.89/12.40 215[label="GT == LT",fontsize=16,color="black",shape="box"];215 -> 313[label="",style="solid", color="black", weight=3]; 28.89/12.40 216[label="GT == EQ",fontsize=16,color="black",shape="box"];216 -> 314[label="",style="solid", color="black", weight=3]; 28.89/12.40 217[label="GT == GT",fontsize=16,color="black",shape="box"];217 -> 315[label="",style="solid", color="black", weight=3]; 28.89/12.40 317[label="Left xuu22 > Left xuu17",fontsize=16,color="black",shape="box"];317 -> 341[label="",style="solid", color="black", weight=3]; 28.89/12.40 316[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 xuu55",fontsize=16,color="burlywood",shape="triangle"];4469[label="xuu55/False",fontsize=10,color="white",style="solid",shape="box"];316 -> 4469[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4469 -> 342[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4470[label="xuu55/True",fontsize=10,color="white",style="solid",shape="box"];316 -> 4470[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4470 -> 343[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 266[label="xuu18",fontsize=16,color="green",shape="box"];267 -> 35[label="",style="dashed", color="red", weight=0]; 28.89/12.40 267[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 (Left xuu22) xuu23",fontsize=16,color="magenta"];267 -> 344[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 267 -> 345[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 267 -> 346[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 268[label="xuu21",fontsize=16,color="green",shape="box"];269[label="xuu17",fontsize=16,color="green",shape="box"];265[label="FiniteMap.mkBalBranch (Left xuu600) xuu61 xuu53 xuu64",fontsize=16,color="black",shape="triangle"];265 -> 347[label="",style="solid", color="black", weight=3]; 28.89/12.40 350[label="Left xuu311000 > Right xuu600",fontsize=16,color="black",shape="box"];350 -> 357[label="",style="solid", color="black", weight=3]; 28.89/12.40 349[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 xuu63",fontsize=16,color="burlywood",shape="triangle"];4471[label="xuu63/False",fontsize=10,color="white",style="solid",shape="box"];349 -> 4471[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4471 -> 358[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4472[label="xuu63/True",fontsize=10,color="white",style="solid",shape="box"];349 -> 4472[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4472 -> 359[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 240 -> 35[label="",style="dashed", color="red", weight=0]; 28.89/12.40 240[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 (Left xuu311000) xuu31101",fontsize=16,color="magenta"];240 -> 360[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 240 -> 361[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 239[label="FiniteMap.mkBalBranch (Right xuu600) xuu61 xuu45 xuu64",fontsize=16,color="black",shape="triangle"];239 -> 362[label="",style="solid", color="black", weight=3]; 28.89/12.40 365[label="Right xuu311000 > Left xuu600",fontsize=16,color="black",shape="box"];365 -> 367[label="",style="solid", color="black", weight=3]; 28.89/12.40 364[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 xuu64",fontsize=16,color="burlywood",shape="triangle"];4473[label="xuu64/False",fontsize=10,color="white",style="solid",shape="box"];364 -> 4473[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4473 -> 368[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4474[label="xuu64/True",fontsize=10,color="white",style="solid",shape="box"];364 -> 4474[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4474 -> 369[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 270 -> 35[label="",style="dashed", color="red", weight=0]; 28.89/12.40 270[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 (Right xuu311000) xuu31101",fontsize=16,color="magenta"];270 -> 370[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 270 -> 371[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2258 -> 2242[label="",style="dashed", color="red", weight=0]; 28.89/12.40 2258[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2258 -> 2327[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2258 -> 2328[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2259 -> 2243[label="",style="dashed", color="red", weight=0]; 28.89/12.40 2259[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2259 -> 2329[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2259 -> 2330[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2260 -> 2244[label="",style="dashed", color="red", weight=0]; 28.89/12.40 2260[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2260 -> 2331[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2260 -> 2332[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2261 -> 2245[label="",style="dashed", color="red", weight=0]; 28.89/12.40 2261[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2261 -> 2333[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2261 -> 2334[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2262 -> 2246[label="",style="dashed", color="red", weight=0]; 28.89/12.40 2262[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2262 -> 2335[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2262 -> 2336[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2263 -> 2247[label="",style="dashed", color="red", weight=0]; 28.89/12.40 2263[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2263 -> 2337[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2263 -> 2338[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2264 -> 2248[label="",style="dashed", color="red", weight=0]; 28.89/12.40 2264[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2264 -> 2339[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2264 -> 2340[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2265 -> 2249[label="",style="dashed", color="red", weight=0]; 28.89/12.40 2265[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2265 -> 2341[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2265 -> 2342[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2266 -> 2250[label="",style="dashed", color="red", weight=0]; 28.89/12.40 2266[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2266 -> 2343[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2266 -> 2344[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2267 -> 2251[label="",style="dashed", color="red", weight=0]; 28.89/12.40 2267[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2267 -> 2345[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2267 -> 2346[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2268 -> 2252[label="",style="dashed", color="red", weight=0]; 28.89/12.40 2268[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2268 -> 2347[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2268 -> 2348[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2269 -> 2253[label="",style="dashed", color="red", weight=0]; 28.89/12.40 2269[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2269 -> 2349[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2269 -> 2350[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2270 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.40 2270[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2270 -> 2351[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2270 -> 2352[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2271 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.40 2271[label="xuu311000 == xuu600",fontsize=16,color="magenta"];2271 -> 2353[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 2271 -> 2354[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 403[label="Right xuu39 > Right xuu34",fontsize=16,color="black",shape="box"];403 -> 405[label="",style="solid", color="black", weight=3]; 28.89/12.40 402[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 xuu65",fontsize=16,color="burlywood",shape="triangle"];4475[label="xuu65/False",fontsize=10,color="white",style="solid",shape="box"];402 -> 4475[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4475 -> 406[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4476[label="xuu65/True",fontsize=10,color="white",style="solid",shape="box"];402 -> 4476[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4476 -> 407[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 353[label="xuu35",fontsize=16,color="green",shape="box"];354[label="xuu38",fontsize=16,color="green",shape="box"];355 -> 35[label="",style="dashed", color="red", weight=0]; 28.89/12.40 355[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu37 (Right xuu39) xuu40",fontsize=16,color="magenta"];355 -> 408[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 355 -> 409[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 355 -> 410[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 356[label="xuu34",fontsize=16,color="green",shape="box"];2308[label="Nothing == xuu600",fontsize=16,color="burlywood",shape="box"];4477[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];2308 -> 4477[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4477 -> 2385[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4478[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];2308 -> 4478[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4478 -> 2386[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2309[label="Just xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4479[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];2309 -> 4479[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4479 -> 2387[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4480[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];2309 -> 4480[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4480 -> 2388[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2310[label="False == xuu600",fontsize=16,color="burlywood",shape="box"];4481[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];2310 -> 4481[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4481 -> 2389[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4482[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];2310 -> 4482[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4482 -> 2390[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2311[label="True == xuu600",fontsize=16,color="burlywood",shape="box"];4483[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];2311 -> 4483[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4483 -> 2391[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4484[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];2311 -> 4484[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4484 -> 2392[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2312[label="primEqDouble xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];4485[label="xuu311000/Double xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2312 -> 4485[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4485 -> 2393[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2313[label="(xuu3110000,xuu3110001,xuu3110002) == xuu600",fontsize=16,color="burlywood",shape="box"];4486[label="xuu600/(xuu6000,xuu6001,xuu6002)",fontsize=10,color="white",style="solid",shape="box"];2313 -> 4486[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4486 -> 2394[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2314[label="Left xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4487[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];2314 -> 4487[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4487 -> 2395[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4488[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];2314 -> 4488[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4488 -> 2396[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2315[label="Right xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4489[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];2315 -> 4489[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4489 -> 2397[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4490[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];2315 -> 4490[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4490 -> 2398[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2316[label="(xuu3110000,xuu3110001) == xuu600",fontsize=16,color="burlywood",shape="box"];4491[label="xuu600/(xuu6000,xuu6001)",fontsize=10,color="white",style="solid",shape="box"];2316 -> 4491[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4491 -> 2399[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2317[label="Integer xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4492[label="xuu600/Integer xuu6000",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4492[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4492 -> 2400[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2318[label="primEqChar xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];4493[label="xuu311000/Char xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2318 -> 4493[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4493 -> 2401[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2319[label="xuu3110000 :% xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];4494[label="xuu600/xuu6000 :% xuu6001",fontsize=10,color="white",style="solid",shape="box"];2319 -> 4494[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4494 -> 2402[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2320[label="() == xuu600",fontsize=16,color="burlywood",shape="box"];4495[label="xuu600/()",fontsize=10,color="white",style="solid",shape="box"];2320 -> 4495[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4495 -> 2403[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2321[label="primEqFloat xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];4496[label="xuu311000/Float xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2321 -> 4496[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4496 -> 2404[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2322[label="xuu3110000 : xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];4497[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];2322 -> 4497[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4497 -> 2405[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4498[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];2322 -> 4498[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4498 -> 2406[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2323[label="[] == xuu600",fontsize=16,color="burlywood",shape="box"];4499[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];2323 -> 4499[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4499 -> 2407[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4500[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];2323 -> 4500[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4500 -> 2408[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2324[label="primEqInt xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];4501[label="xuu311000/Pos xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2324 -> 4501[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4501 -> 2409[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4502[label="xuu311000/Neg xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2324 -> 4502[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4502 -> 2410[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2325[label="compare1 xuu500 xuu510 (xuu500 <= xuu510)",fontsize=16,color="burlywood",shape="box"];4503[label="xuu500/Left xuu5000",fontsize=10,color="white",style="solid",shape="box"];2325 -> 4503[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4503 -> 2411[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4504[label="xuu500/Right xuu5000",fontsize=10,color="white",style="solid",shape="box"];2325 -> 4504[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4504 -> 2412[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2326[label="EQ",fontsize=16,color="green",shape="box"];307[label="True",fontsize=16,color="green",shape="box"];308[label="False",fontsize=16,color="green",shape="box"];309[label="False",fontsize=16,color="green",shape="box"];310[label="False",fontsize=16,color="green",shape="box"];311[label="True",fontsize=16,color="green",shape="box"];312[label="False",fontsize=16,color="green",shape="box"];313[label="False",fontsize=16,color="green",shape="box"];314[label="False",fontsize=16,color="green",shape="box"];315[label="True",fontsize=16,color="green",shape="box"];341 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.40 341[label="compare (Left xuu22) (Left xuu17) == GT",fontsize=16,color="magenta"];341 -> 438[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 341 -> 439[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 342[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 False",fontsize=16,color="black",shape="box"];342 -> 440[label="",style="solid", color="black", weight=3]; 28.89/12.40 343[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 True",fontsize=16,color="black",shape="box"];343 -> 441[label="",style="solid", color="black", weight=3]; 28.89/12.40 344[label="xuu23",fontsize=16,color="green",shape="box"];345[label="xuu20",fontsize=16,color="green",shape="box"];346[label="Left xuu22",fontsize=16,color="green",shape="box"];347[label="FiniteMap.mkBalBranch6 (Left xuu600) xuu61 xuu53 xuu64",fontsize=16,color="black",shape="box"];347 -> 442[label="",style="solid", color="black", weight=3]; 28.89/12.40 357 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.40 357[label="compare (Left xuu311000) (Right xuu600) == GT",fontsize=16,color="magenta"];357 -> 443[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 357 -> 444[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 358[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 False",fontsize=16,color="black",shape="box"];358 -> 445[label="",style="solid", color="black", weight=3]; 28.89/12.40 359[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];359 -> 446[label="",style="solid", color="black", weight=3]; 28.89/12.40 360[label="xuu63",fontsize=16,color="green",shape="box"];361[label="Left xuu311000",fontsize=16,color="green",shape="box"];362[label="FiniteMap.mkBalBranch6 (Right xuu600) xuu61 xuu45 xuu64",fontsize=16,color="black",shape="box"];362 -> 447[label="",style="solid", color="black", weight=3]; 28.89/12.40 367 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.40 367[label="compare (Right xuu311000) (Left xuu600) == GT",fontsize=16,color="magenta"];367 -> 449[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 367 -> 450[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 368[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 False",fontsize=16,color="black",shape="box"];368 -> 451[label="",style="solid", color="black", weight=3]; 28.89/12.40 369[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];369 -> 452[label="",style="solid", color="black", weight=3]; 28.89/12.40 370[label="xuu63",fontsize=16,color="green",shape="box"];371[label="Right xuu311000",fontsize=16,color="green",shape="box"];2327[label="xuu600",fontsize=16,color="green",shape="box"];2328[label="xuu311000",fontsize=16,color="green",shape="box"];2329[label="xuu600",fontsize=16,color="green",shape="box"];2330[label="xuu311000",fontsize=16,color="green",shape="box"];2331[label="xuu600",fontsize=16,color="green",shape="box"];2332[label="xuu311000",fontsize=16,color="green",shape="box"];2333[label="xuu600",fontsize=16,color="green",shape="box"];2334[label="xuu311000",fontsize=16,color="green",shape="box"];2335[label="xuu600",fontsize=16,color="green",shape="box"];2336[label="xuu311000",fontsize=16,color="green",shape="box"];2337[label="xuu600",fontsize=16,color="green",shape="box"];2338[label="xuu311000",fontsize=16,color="green",shape="box"];2339[label="xuu600",fontsize=16,color="green",shape="box"];2340[label="xuu311000",fontsize=16,color="green",shape="box"];2341[label="xuu600",fontsize=16,color="green",shape="box"];2342[label="xuu311000",fontsize=16,color="green",shape="box"];2343[label="xuu600",fontsize=16,color="green",shape="box"];2344[label="xuu311000",fontsize=16,color="green",shape="box"];2345[label="xuu600",fontsize=16,color="green",shape="box"];2346[label="xuu311000",fontsize=16,color="green",shape="box"];2347[label="xuu600",fontsize=16,color="green",shape="box"];2348[label="xuu311000",fontsize=16,color="green",shape="box"];2349[label="xuu600",fontsize=16,color="green",shape="box"];2350[label="xuu311000",fontsize=16,color="green",shape="box"];2351[label="xuu600",fontsize=16,color="green",shape="box"];2352[label="xuu311000",fontsize=16,color="green",shape="box"];2353[label="xuu600",fontsize=16,color="green",shape="box"];2354[label="xuu311000",fontsize=16,color="green",shape="box"];405 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.40 405[label="compare (Right xuu39) (Right xuu34) == GT",fontsize=16,color="magenta"];405 -> 454[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 405 -> 455[label="",style="dashed", color="magenta", weight=3]; 28.89/12.40 406[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 False",fontsize=16,color="black",shape="box"];406 -> 456[label="",style="solid", color="black", weight=3]; 28.89/12.40 407[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 True",fontsize=16,color="black",shape="box"];407 -> 457[label="",style="solid", color="black", weight=3]; 28.89/12.40 408[label="xuu40",fontsize=16,color="green",shape="box"];409[label="xuu37",fontsize=16,color="green",shape="box"];410[label="Right xuu39",fontsize=16,color="green",shape="box"];2385[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2385 -> 2481[label="",style="solid", color="black", weight=3]; 28.89/12.40 2386[label="Nothing == Just xuu6000",fontsize=16,color="black",shape="box"];2386 -> 2482[label="",style="solid", color="black", weight=3]; 28.89/12.40 2387[label="Just xuu3110000 == Nothing",fontsize=16,color="black",shape="box"];2387 -> 2483[label="",style="solid", color="black", weight=3]; 28.89/12.40 2388[label="Just xuu3110000 == Just xuu6000",fontsize=16,color="black",shape="box"];2388 -> 2484[label="",style="solid", color="black", weight=3]; 28.89/12.40 2389[label="False == False",fontsize=16,color="black",shape="box"];2389 -> 2485[label="",style="solid", color="black", weight=3]; 28.89/12.40 2390[label="False == True",fontsize=16,color="black",shape="box"];2390 -> 2486[label="",style="solid", color="black", weight=3]; 28.89/12.40 2391[label="True == False",fontsize=16,color="black",shape="box"];2391 -> 2487[label="",style="solid", color="black", weight=3]; 28.89/12.40 2392[label="True == True",fontsize=16,color="black",shape="box"];2392 -> 2488[label="",style="solid", color="black", weight=3]; 28.89/12.40 2393[label="primEqDouble (Double xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];4505[label="xuu600/Double xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];2393 -> 4505[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4505 -> 2489[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2394[label="(xuu3110000,xuu3110001,xuu3110002) == (xuu6000,xuu6001,xuu6002)",fontsize=16,color="black",shape="box"];2394 -> 2490[label="",style="solid", color="black", weight=3]; 28.89/12.40 2395[label="Left xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];2395 -> 2491[label="",style="solid", color="black", weight=3]; 28.89/12.40 2396[label="Left xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];2396 -> 2492[label="",style="solid", color="black", weight=3]; 28.89/12.40 2397[label="Right xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];2397 -> 2493[label="",style="solid", color="black", weight=3]; 28.89/12.40 2398[label="Right xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];2398 -> 2494[label="",style="solid", color="black", weight=3]; 28.89/12.40 2399[label="(xuu3110000,xuu3110001) == (xuu6000,xuu6001)",fontsize=16,color="black",shape="box"];2399 -> 2495[label="",style="solid", color="black", weight=3]; 28.89/12.40 2400[label="Integer xuu3110000 == Integer xuu6000",fontsize=16,color="black",shape="box"];2400 -> 2496[label="",style="solid", color="black", weight=3]; 28.89/12.40 2401[label="primEqChar (Char xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];4506[label="xuu600/Char xuu6000",fontsize=10,color="white",style="solid",shape="box"];2401 -> 4506[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4506 -> 2497[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2402[label="xuu3110000 :% xuu3110001 == xuu6000 :% xuu6001",fontsize=16,color="black",shape="box"];2402 -> 2498[label="",style="solid", color="black", weight=3]; 28.89/12.40 2403[label="() == ()",fontsize=16,color="black",shape="box"];2403 -> 2499[label="",style="solid", color="black", weight=3]; 28.89/12.40 2404[label="primEqFloat (Float xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];4507[label="xuu600/Float xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4507[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4507 -> 2500[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2405[label="xuu3110000 : xuu3110001 == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];2405 -> 2501[label="",style="solid", color="black", weight=3]; 28.89/12.40 2406[label="xuu3110000 : xuu3110001 == []",fontsize=16,color="black",shape="box"];2406 -> 2502[label="",style="solid", color="black", weight=3]; 28.89/12.40 2407[label="[] == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];2407 -> 2503[label="",style="solid", color="black", weight=3]; 28.89/12.40 2408[label="[] == []",fontsize=16,color="black",shape="box"];2408 -> 2504[label="",style="solid", color="black", weight=3]; 28.89/12.40 2409[label="primEqInt (Pos xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];4508[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4508[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4508 -> 2505[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4509[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];2409 -> 4509[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4509 -> 2506[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 2410[label="primEqInt (Neg xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];4510[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4510[label="",style="solid", color="burlywood", weight=9]; 28.89/12.40 4510 -> 2507[label="",style="solid", color="burlywood", weight=3]; 28.89/12.40 4511[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4511[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4511 -> 2508[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2411[label="compare1 (Left xuu5000) xuu510 (Left xuu5000 <= xuu510)",fontsize=16,color="burlywood",shape="box"];4512[label="xuu510/Left xuu5100",fontsize=10,color="white",style="solid",shape="box"];2411 -> 4512[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4512 -> 2509[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4513[label="xuu510/Right xuu5100",fontsize=10,color="white",style="solid",shape="box"];2411 -> 4513[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4513 -> 2510[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2412[label="compare1 (Right xuu5000) xuu510 (Right xuu5000 <= xuu510)",fontsize=16,color="burlywood",shape="box"];4514[label="xuu510/Left xuu5100",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4514[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4514 -> 2511[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4515[label="xuu510/Right xuu5100",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4515[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4515 -> 2512[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 438[label="GT",fontsize=16,color="green",shape="box"];439[label="compare (Left xuu22) (Left xuu17)",fontsize=16,color="black",shape="box"];439 -> 496[label="",style="solid", color="black", weight=3]; 28.89/12.41 440[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 otherwise",fontsize=16,color="black",shape="box"];440 -> 497[label="",style="solid", color="black", weight=3]; 28.89/12.41 441 -> 265[label="",style="dashed", color="red", weight=0]; 28.89/12.41 441[label="FiniteMap.mkBalBranch (Left xuu17) xuu18 xuu20 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu21 (Left xuu22) xuu23)",fontsize=16,color="magenta"];441 -> 498[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 441 -> 499[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 441 -> 500[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 441 -> 501[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 442 -> 621[label="",style="dashed", color="red", weight=0]; 28.89/12.41 442[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 (FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53 + FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];442 -> 622[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 443[label="GT",fontsize=16,color="green",shape="box"];444[label="compare (Left xuu311000) (Right xuu600)",fontsize=16,color="black",shape="box"];444 -> 503[label="",style="solid", color="black", weight=3]; 28.89/12.41 445[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 otherwise",fontsize=16,color="black",shape="box"];445 -> 504[label="",style="solid", color="black", weight=3]; 28.89/12.41 446 -> 239[label="",style="dashed", color="red", weight=0]; 28.89/12.41 446[label="FiniteMap.mkBalBranch (Right xuu600) xuu61 xuu63 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (Left xuu311000) xuu31101)",fontsize=16,color="magenta"];446 -> 505[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 446 -> 506[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 447 -> 631[label="",style="dashed", color="red", weight=0]; 28.89/12.41 447[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 (FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45 + FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];447 -> 632[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 449[label="GT",fontsize=16,color="green",shape="box"];450[label="compare (Right xuu311000) (Left xuu600)",fontsize=16,color="black",shape="box"];450 -> 509[label="",style="solid", color="black", weight=3]; 28.89/12.41 451[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 otherwise",fontsize=16,color="black",shape="box"];451 -> 510[label="",style="solid", color="black", weight=3]; 28.89/12.41 452 -> 265[label="",style="dashed", color="red", weight=0]; 28.89/12.41 452[label="FiniteMap.mkBalBranch (Left xuu600) xuu61 xuu63 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (Right xuu311000) xuu31101)",fontsize=16,color="magenta"];452 -> 511[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 452 -> 512[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 454[label="GT",fontsize=16,color="green",shape="box"];455[label="compare (Right xuu39) (Right xuu34)",fontsize=16,color="black",shape="box"];455 -> 523[label="",style="solid", color="black", weight=3]; 28.89/12.41 456[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 otherwise",fontsize=16,color="black",shape="box"];456 -> 524[label="",style="solid", color="black", weight=3]; 28.89/12.41 457 -> 239[label="",style="dashed", color="red", weight=0]; 28.89/12.41 457[label="FiniteMap.mkBalBranch (Right xuu34) xuu35 xuu37 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu38 (Right xuu39) xuu40)",fontsize=16,color="magenta"];457 -> 525[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 457 -> 526[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 457 -> 527[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 457 -> 528[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2481[label="True",fontsize=16,color="green",shape="box"];2482[label="False",fontsize=16,color="green",shape="box"];2483[label="False",fontsize=16,color="green",shape="box"];2484[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4516[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4516[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4516 -> 2539[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4517[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4517[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4517 -> 2540[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4518[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4518[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4518 -> 2541[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4519[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4519[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4519 -> 2542[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4520[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4520[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4520 -> 2543[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4521[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4521[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4521 -> 2544[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4522[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4522[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4522 -> 2545[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4523[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4523[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4523 -> 2546[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4524[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4524[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4524 -> 2547[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4525[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4525[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4525 -> 2548[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4526[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4526[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4526 -> 2549[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4527[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4527[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4527 -> 2550[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4528[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4528[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4528 -> 2551[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4529[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4529[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4529 -> 2552[label="",style="solid", color="blue", weight=3]; 28.89/12.41 2485[label="True",fontsize=16,color="green",shape="box"];2486[label="False",fontsize=16,color="green",shape="box"];2487[label="False",fontsize=16,color="green",shape="box"];2488[label="True",fontsize=16,color="green",shape="box"];2489[label="primEqDouble (Double xuu3110000 xuu3110001) (Double xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];2489 -> 2553[label="",style="solid", color="black", weight=3]; 28.89/12.41 2490 -> 2658[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2490[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];2490 -> 2659[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2490 -> 2660[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2491[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4530[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 4530[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4530 -> 2560[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4531[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 4531[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4531 -> 2561[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4532[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 4532[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4532 -> 2562[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4533[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 4533[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4533 -> 2563[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4534[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 4534[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4534 -> 2564[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4535[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 4535[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4535 -> 2565[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4536[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 4536[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4536 -> 2566[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4537[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 4537[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4537 -> 2567[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4538[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 4538[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4538 -> 2568[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4539[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 4539[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4539 -> 2569[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4540[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 4540[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4540 -> 2570[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4541[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 4541[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4541 -> 2571[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4542[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 4542[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4542 -> 2572[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4543[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2491 -> 4543[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4543 -> 2573[label="",style="solid", color="blue", weight=3]; 28.89/12.41 2492[label="False",fontsize=16,color="green",shape="box"];2493[label="False",fontsize=16,color="green",shape="box"];2494[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4544[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 4544[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4544 -> 2574[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4545[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 4545[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4545 -> 2575[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4546[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 4546[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4546 -> 2576[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4547[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 4547[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4547 -> 2577[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4548[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 4548[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4548 -> 2578[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4549[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 4549[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4549 -> 2579[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4550[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 4550[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4550 -> 2580[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4551[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 4551[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4551 -> 2581[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4552[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 4552[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4552 -> 2582[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4553[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 4553[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4553 -> 2583[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4554[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 4554[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4554 -> 2584[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4555[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 4555[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4555 -> 2585[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4556[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 4556[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4556 -> 2586[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4557[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 4557[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4557 -> 2587[label="",style="solid", color="blue", weight=3]; 28.89/12.41 2495 -> 2658[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2495[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];2495 -> 2661[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2495 -> 2662[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2496 -> 2324[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2496[label="primEqInt xuu3110000 xuu6000",fontsize=16,color="magenta"];2496 -> 2598[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2496 -> 2599[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2497[label="primEqChar (Char xuu3110000) (Char xuu6000)",fontsize=16,color="black",shape="box"];2497 -> 2600[label="",style="solid", color="black", weight=3]; 28.89/12.41 2498 -> 2658[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2498[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];2498 -> 2663[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2498 -> 2664[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2499[label="True",fontsize=16,color="green",shape="box"];2500[label="primEqFloat (Float xuu3110000 xuu3110001) (Float xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];2500 -> 2601[label="",style="solid", color="black", weight=3]; 28.89/12.41 2501 -> 2658[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2501[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];2501 -> 2665[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2501 -> 2666[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2502[label="False",fontsize=16,color="green",shape="box"];2503[label="False",fontsize=16,color="green",shape="box"];2504[label="True",fontsize=16,color="green",shape="box"];2505[label="primEqInt (Pos (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];4558[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4558[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4558 -> 2602[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4559[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4559[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4559 -> 2603[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2506[label="primEqInt (Pos Zero) xuu600",fontsize=16,color="burlywood",shape="box"];4560[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2506 -> 4560[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4560 -> 2604[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4561[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2506 -> 4561[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4561 -> 2605[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2507[label="primEqInt (Neg (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];4562[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4562[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4562 -> 2606[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4563[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4563[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4563 -> 2607[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2508[label="primEqInt (Neg Zero) xuu600",fontsize=16,color="burlywood",shape="box"];4564[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2508 -> 4564[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4564 -> 2608[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4565[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2508 -> 4565[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4565 -> 2609[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2509[label="compare1 (Left xuu5000) (Left xuu5100) (Left xuu5000 <= Left xuu5100)",fontsize=16,color="black",shape="box"];2509 -> 2610[label="",style="solid", color="black", weight=3]; 28.89/12.41 2510[label="compare1 (Left xuu5000) (Right xuu5100) (Left xuu5000 <= Right xuu5100)",fontsize=16,color="black",shape="box"];2510 -> 2611[label="",style="solid", color="black", weight=3]; 28.89/12.41 2511[label="compare1 (Right xuu5000) (Left xuu5100) (Right xuu5000 <= Left xuu5100)",fontsize=16,color="black",shape="box"];2511 -> 2612[label="",style="solid", color="black", weight=3]; 28.89/12.41 2512[label="compare1 (Right xuu5000) (Right xuu5100) (Right xuu5000 <= Right xuu5100)",fontsize=16,color="black",shape="box"];2512 -> 2613[label="",style="solid", color="black", weight=3]; 28.89/12.41 496[label="compare3 (Left xuu22) (Left xuu17)",fontsize=16,color="black",shape="box"];496 -> 616[label="",style="solid", color="black", weight=3]; 28.89/12.41 497[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 True",fontsize=16,color="black",shape="box"];497 -> 617[label="",style="solid", color="black", weight=3]; 28.89/12.41 498[label="xuu18",fontsize=16,color="green",shape="box"];499[label="xuu20",fontsize=16,color="green",shape="box"];500 -> 35[label="",style="dashed", color="red", weight=0]; 28.89/12.41 500[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu21 (Left xuu22) xuu23",fontsize=16,color="magenta"];500 -> 618[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 500 -> 619[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 500 -> 620[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 501[label="xuu17",fontsize=16,color="green",shape="box"];622[label="FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53 + FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];622 -> 624[label="",style="solid", color="black", weight=3]; 28.89/12.41 621[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 xuu98",fontsize=16,color="burlywood",shape="triangle"];4566[label="xuu98/False",fontsize=10,color="white",style="solid",shape="box"];621 -> 4566[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4566 -> 625[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4567[label="xuu98/True",fontsize=10,color="white",style="solid",shape="box"];621 -> 4567[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4567 -> 626[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 503[label="compare3 (Left xuu311000) (Right xuu600)",fontsize=16,color="black",shape="box"];503 -> 627[label="",style="solid", color="black", weight=3]; 28.89/12.41 504[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Right xuu600) xuu61 xuu62 xuu63 xuu64 (Left xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];504 -> 628[label="",style="solid", color="black", weight=3]; 28.89/12.41 505 -> 35[label="",style="dashed", color="red", weight=0]; 28.89/12.41 505[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (Left xuu311000) xuu31101",fontsize=16,color="magenta"];505 -> 629[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 505 -> 630[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 506[label="xuu63",fontsize=16,color="green",shape="box"];632[label="FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45 + FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];632 -> 634[label="",style="solid", color="black", weight=3]; 28.89/12.41 631[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 xuu99",fontsize=16,color="burlywood",shape="triangle"];4568[label="xuu99/False",fontsize=10,color="white",style="solid",shape="box"];631 -> 4568[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4568 -> 635[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4569[label="xuu99/True",fontsize=10,color="white",style="solid",shape="box"];631 -> 4569[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4569 -> 636[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 509[label="compare3 (Right xuu311000) (Left xuu600)",fontsize=16,color="black",shape="box"];509 -> 637[label="",style="solid", color="black", weight=3]; 28.89/12.41 510[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Left xuu600) xuu61 xuu62 xuu63 xuu64 (Right xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];510 -> 638[label="",style="solid", color="black", weight=3]; 28.89/12.41 511[label="xuu63",fontsize=16,color="green",shape="box"];512 -> 35[label="",style="dashed", color="red", weight=0]; 28.89/12.41 512[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (Right xuu311000) xuu31101",fontsize=16,color="magenta"];512 -> 639[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 512 -> 640[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 523[label="compare3 (Right xuu39) (Right xuu34)",fontsize=16,color="black",shape="box"];523 -> 657[label="",style="solid", color="black", weight=3]; 28.89/12.41 524[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Right xuu34) xuu35 xuu36 xuu37 xuu38 (Right xuu39) xuu40 True",fontsize=16,color="black",shape="box"];524 -> 658[label="",style="solid", color="black", weight=3]; 28.89/12.41 525[label="xuu35",fontsize=16,color="green",shape="box"];526 -> 35[label="",style="dashed", color="red", weight=0]; 28.89/12.41 526[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu38 (Right xuu39) xuu40",fontsize=16,color="magenta"];526 -> 659[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 526 -> 660[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 526 -> 661[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 527[label="xuu37",fontsize=16,color="green",shape="box"];528[label="xuu34",fontsize=16,color="green",shape="box"];2539 -> 2242[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2539[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2539 -> 2614[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2539 -> 2615[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2540 -> 2243[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2540[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2540 -> 2616[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2540 -> 2617[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2541 -> 2244[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2541[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2541 -> 2618[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2541 -> 2619[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2542 -> 2245[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2542[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2542 -> 2620[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2542 -> 2621[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2543 -> 2246[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2543[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2543 -> 2622[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2543 -> 2623[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2544 -> 2247[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2544[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2544 -> 2624[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2544 -> 2625[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2545 -> 2248[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2545[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2545 -> 2626[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2545 -> 2627[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2546 -> 2249[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2546[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2546 -> 2628[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2546 -> 2629[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2547 -> 2250[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2547[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2547 -> 2630[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2547 -> 2631[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2548 -> 2251[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2548[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2548 -> 2632[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2548 -> 2633[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2549 -> 2252[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2549[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2549 -> 2634[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2549 -> 2635[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2550 -> 2253[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2550[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2550 -> 2636[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2550 -> 2637[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2551 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2551[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2551 -> 2638[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2551 -> 2639[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2552 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2552[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2552 -> 2640[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2552 -> 2641[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2553 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2553[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];2553 -> 2642[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2553 -> 2643[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2659 -> 2658[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2659[label="xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];2659 -> 2670[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2659 -> 2671[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2660[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4570[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 4570[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4570 -> 2672[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4571[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 4571[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4571 -> 2673[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4572[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 4572[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4572 -> 2674[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4573[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 4573[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4573 -> 2675[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4574[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 4574[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4574 -> 2676[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4575[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 4575[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4575 -> 2677[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4576[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 4576[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4576 -> 2678[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4577[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 4577[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4577 -> 2679[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4578[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 4578[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4578 -> 2680[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4579[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 4579[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4579 -> 2681[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4580[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 4580[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4580 -> 2682[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4581[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 4581[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4581 -> 2683[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4582[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 4582[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4582 -> 2684[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4583[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 4583[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4583 -> 2685[label="",style="solid", color="blue", weight=3]; 28.89/12.41 2658[label="xuu166 && xuu178",fontsize=16,color="burlywood",shape="triangle"];4584[label="xuu166/False",fontsize=10,color="white",style="solid",shape="box"];2658 -> 4584[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4584 -> 2686[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4585[label="xuu166/True",fontsize=10,color="white",style="solid",shape="box"];2658 -> 4585[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4585 -> 2687[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2560 -> 2242[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2560[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2560 -> 2688[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2560 -> 2689[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2561 -> 2243[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2561[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2561 -> 2690[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2561 -> 2691[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2562 -> 2244[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2562[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2562 -> 2692[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2562 -> 2693[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2563 -> 2245[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2563[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2563 -> 2694[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2563 -> 2695[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2564 -> 2246[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2564[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2564 -> 2696[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2564 -> 2697[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2565 -> 2247[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2565[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2565 -> 2698[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2565 -> 2699[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2566 -> 2248[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2566[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2566 -> 2700[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2566 -> 2701[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2567 -> 2249[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2567[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2567 -> 2702[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2567 -> 2703[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2568 -> 2250[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2568[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2568 -> 2704[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2568 -> 2705[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2569 -> 2251[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2569[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2569 -> 2706[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2569 -> 2707[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2570 -> 2252[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2570[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2570 -> 2708[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2570 -> 2709[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2571 -> 2253[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2571[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2571 -> 2710[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2571 -> 2711[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2572 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2572[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2572 -> 2712[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2572 -> 2713[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2573 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2573[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2573 -> 2714[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2573 -> 2715[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2574 -> 2242[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2574[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2574 -> 2716[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2574 -> 2717[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2575 -> 2243[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2575[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2575 -> 2718[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2575 -> 2719[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2576 -> 2244[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2576[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2576 -> 2720[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2576 -> 2721[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2577 -> 2245[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2577[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2577 -> 2722[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2577 -> 2723[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2578 -> 2246[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2578[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2578 -> 2724[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2578 -> 2725[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2579 -> 2247[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2579[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2579 -> 2726[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2579 -> 2727[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2580 -> 2248[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2580[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2580 -> 2728[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2580 -> 2729[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2581 -> 2249[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2581[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2581 -> 2730[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2581 -> 2731[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2582 -> 2250[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2582[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2582 -> 2732[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2582 -> 2733[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2583 -> 2251[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2583[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2583 -> 2734[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2583 -> 2735[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2584 -> 2252[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2584[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2584 -> 2736[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2584 -> 2737[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2585 -> 2253[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2585[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2585 -> 2738[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2585 -> 2739[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2586 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2586[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2586 -> 2740[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2586 -> 2741[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2587 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2587[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2587 -> 2742[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2587 -> 2743[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2661[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];4586[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2661 -> 4586[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4586 -> 2744[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4587[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2661 -> 4587[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4587 -> 2745[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4588[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2661 -> 4588[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4588 -> 2746[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4589[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2661 -> 4589[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4589 -> 2747[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4590[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2661 -> 4590[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4590 -> 2748[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4591[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2661 -> 4591[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4591 -> 2749[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4592[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2661 -> 4592[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4592 -> 2750[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4593[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2661 -> 4593[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4593 -> 2751[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4594[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2661 -> 4594[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4594 -> 2752[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4595[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2661 -> 4595[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4595 -> 2753[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4596[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2661 -> 4596[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4596 -> 2754[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4597[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2661 -> 4597[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4597 -> 2755[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4598[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2661 -> 4598[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4598 -> 2756[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4599[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2661 -> 4599[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4599 -> 2757[label="",style="solid", color="blue", weight=3]; 28.89/12.41 2662[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4600[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4600[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4600 -> 2758[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4601[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4601[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4601 -> 2759[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4602[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4602[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4602 -> 2760[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4603[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4603[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4603 -> 2761[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4604[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4604[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4604 -> 2762[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4605[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4605[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4605 -> 2763[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4606[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4606[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4606 -> 2764[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4607[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4607[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4607 -> 2765[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4608[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4608[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4608 -> 2766[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4609[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4609[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4609 -> 2767[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4610[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4610[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4610 -> 2768[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4611[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4611[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4611 -> 2769[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4612[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4612[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4612 -> 2770[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4613[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4613[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4613 -> 2771[label="",style="solid", color="blue", weight=3]; 28.89/12.41 2598[label="xuu6000",fontsize=16,color="green",shape="box"];2599[label="xuu3110000",fontsize=16,color="green",shape="box"];2600[label="primEqNat xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="triangle"];4614[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4614[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4614 -> 2772[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4615[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];2600 -> 4615[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4615 -> 2773[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2663[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];4616[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2663 -> 4616[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4616 -> 2774[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4617[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2663 -> 4617[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4617 -> 2775[label="",style="solid", color="blue", weight=3]; 28.89/12.41 2664[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4618[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2664 -> 4618[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4618 -> 2776[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4619[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2664 -> 4619[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4619 -> 2777[label="",style="solid", color="blue", weight=3]; 28.89/12.41 2601 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2601[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];2601 -> 2778[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2601 -> 2779[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2665 -> 2253[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2665[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2665 -> 2780[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2665 -> 2781[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2666[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4620[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2666 -> 4620[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4620 -> 2782[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4621[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2666 -> 4621[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4621 -> 2783[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4622[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2666 -> 4622[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4622 -> 2784[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4623[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2666 -> 4623[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4623 -> 2785[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4624[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2666 -> 4624[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4624 -> 2786[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4625[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2666 -> 4625[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4625 -> 2787[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4626[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2666 -> 4626[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4626 -> 2788[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4627[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2666 -> 4627[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4627 -> 2789[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4628[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2666 -> 4628[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4628 -> 2790[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4629[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2666 -> 4629[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4629 -> 2791[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4630[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2666 -> 4630[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4630 -> 2792[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4631[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2666 -> 4631[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4631 -> 2793[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4632[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2666 -> 4632[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4632 -> 2794[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4633[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2666 -> 4633[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4633 -> 2795[label="",style="solid", color="blue", weight=3]; 28.89/12.41 2602[label="primEqInt (Pos (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];4634[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2602 -> 4634[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4634 -> 2796[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4635[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2602 -> 4635[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4635 -> 2797[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2603[label="primEqInt (Pos (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="black",shape="box"];2603 -> 2798[label="",style="solid", color="black", weight=3]; 28.89/12.41 2604[label="primEqInt (Pos Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];4636[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2604 -> 4636[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4636 -> 2799[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4637[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2604 -> 4637[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4637 -> 2800[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2605[label="primEqInt (Pos Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];4638[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4638[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4638 -> 2801[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4639[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4639[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4639 -> 2802[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2606[label="primEqInt (Neg (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="black",shape="box"];2606 -> 2803[label="",style="solid", color="black", weight=3]; 28.89/12.41 2607[label="primEqInt (Neg (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];4640[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2607 -> 4640[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4640 -> 2804[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4641[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2607 -> 4641[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4641 -> 2805[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2608[label="primEqInt (Neg Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];4642[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4642[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4642 -> 2806[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4643[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4643[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4643 -> 2807[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2609[label="primEqInt (Neg Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];4644[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4644[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4644 -> 2808[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4645[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4645[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4645 -> 2809[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2610 -> 2810[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2610[label="compare1 (Left xuu5000) (Left xuu5100) (xuu5000 <= xuu5100)",fontsize=16,color="magenta"];2610 -> 2811[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2610 -> 2812[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2610 -> 2813[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2611[label="compare1 (Left xuu5000) (Right xuu5100) True",fontsize=16,color="black",shape="box"];2611 -> 2814[label="",style="solid", color="black", weight=3]; 28.89/12.41 2612[label="compare1 (Right xuu5000) (Left xuu5100) False",fontsize=16,color="black",shape="box"];2612 -> 2815[label="",style="solid", color="black", weight=3]; 28.89/12.41 2613 -> 2816[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2613[label="compare1 (Right xuu5000) (Right xuu5100) (xuu5000 <= xuu5100)",fontsize=16,color="magenta"];2613 -> 2817[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2613 -> 2818[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2613 -> 2819[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 616 -> 2204[label="",style="dashed", color="red", weight=0]; 28.89/12.41 616[label="compare2 (Left xuu22) (Left xuu17) (Left xuu22 == Left xuu17)",fontsize=16,color="magenta"];616 -> 2229[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 616 -> 2230[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 616 -> 2231[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 617[label="FiniteMap.Branch (Left xuu22) (FiniteMap.addListToFM0 xuu18 xuu23) xuu19 xuu20 xuu21",fontsize=16,color="green",shape="box"];617 -> 881[label="",style="dashed", color="green", weight=3]; 28.89/12.41 618[label="xuu23",fontsize=16,color="green",shape="box"];619[label="xuu21",fontsize=16,color="green",shape="box"];620[label="Left xuu22",fontsize=16,color="green",shape="box"];624 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.41 624[label="compare (FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53 + FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];624 -> 882[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 624 -> 883[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 625[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 False",fontsize=16,color="black",shape="box"];625 -> 884[label="",style="solid", color="black", weight=3]; 28.89/12.41 626[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 True",fontsize=16,color="black",shape="box"];626 -> 885[label="",style="solid", color="black", weight=3]; 28.89/12.41 627 -> 2204[label="",style="dashed", color="red", weight=0]; 28.89/12.41 627[label="compare2 (Left xuu311000) (Right xuu600) (Left xuu311000 == Right xuu600)",fontsize=16,color="magenta"];627 -> 2232[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 627 -> 2233[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 627 -> 2234[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 628[label="FiniteMap.Branch (Left xuu311000) (FiniteMap.addListToFM0 xuu61 xuu31101) xuu62 xuu63 xuu64",fontsize=16,color="green",shape="box"];628 -> 891[label="",style="dashed", color="green", weight=3]; 28.89/12.41 629[label="xuu64",fontsize=16,color="green",shape="box"];630[label="Left xuu311000",fontsize=16,color="green",shape="box"];634 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.41 634[label="compare (FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45 + FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];634 -> 892[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 634 -> 893[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 635[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 False",fontsize=16,color="black",shape="box"];635 -> 894[label="",style="solid", color="black", weight=3]; 28.89/12.41 636[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 True",fontsize=16,color="black",shape="box"];636 -> 895[label="",style="solid", color="black", weight=3]; 28.89/12.41 637 -> 2204[label="",style="dashed", color="red", weight=0]; 28.89/12.41 637[label="compare2 (Right xuu311000) (Left xuu600) (Right xuu311000 == Left xuu600)",fontsize=16,color="magenta"];637 -> 2235[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 637 -> 2236[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 637 -> 2237[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 638[label="FiniteMap.Branch (Right xuu311000) (FiniteMap.addListToFM0 xuu61 xuu31101) xuu62 xuu63 xuu64",fontsize=16,color="green",shape="box"];638 -> 903[label="",style="dashed", color="green", weight=3]; 28.89/12.41 639[label="xuu64",fontsize=16,color="green",shape="box"];640[label="Right xuu311000",fontsize=16,color="green",shape="box"];657 -> 2204[label="",style="dashed", color="red", weight=0]; 28.89/12.41 657[label="compare2 (Right xuu39) (Right xuu34) (Right xuu39 == Right xuu34)",fontsize=16,color="magenta"];657 -> 2238[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 657 -> 2239[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 657 -> 2240[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 658[label="FiniteMap.Branch (Right xuu39) (FiniteMap.addListToFM0 xuu35 xuu40) xuu36 xuu37 xuu38",fontsize=16,color="green",shape="box"];658 -> 936[label="",style="dashed", color="green", weight=3]; 28.89/12.41 659[label="xuu40",fontsize=16,color="green",shape="box"];660[label="xuu38",fontsize=16,color="green",shape="box"];661[label="Right xuu39",fontsize=16,color="green",shape="box"];2614[label="xuu6000",fontsize=16,color="green",shape="box"];2615[label="xuu3110000",fontsize=16,color="green",shape="box"];2616[label="xuu6000",fontsize=16,color="green",shape="box"];2617[label="xuu3110000",fontsize=16,color="green",shape="box"];2618[label="xuu6000",fontsize=16,color="green",shape="box"];2619[label="xuu3110000",fontsize=16,color="green",shape="box"];2620[label="xuu6000",fontsize=16,color="green",shape="box"];2621[label="xuu3110000",fontsize=16,color="green",shape="box"];2622[label="xuu6000",fontsize=16,color="green",shape="box"];2623[label="xuu3110000",fontsize=16,color="green",shape="box"];2624[label="xuu6000",fontsize=16,color="green",shape="box"];2625[label="xuu3110000",fontsize=16,color="green",shape="box"];2626[label="xuu6000",fontsize=16,color="green",shape="box"];2627[label="xuu3110000",fontsize=16,color="green",shape="box"];2628[label="xuu6000",fontsize=16,color="green",shape="box"];2629[label="xuu3110000",fontsize=16,color="green",shape="box"];2630[label="xuu6000",fontsize=16,color="green",shape="box"];2631[label="xuu3110000",fontsize=16,color="green",shape="box"];2632[label="xuu6000",fontsize=16,color="green",shape="box"];2633[label="xuu3110000",fontsize=16,color="green",shape="box"];2634[label="xuu6000",fontsize=16,color="green",shape="box"];2635[label="xuu3110000",fontsize=16,color="green",shape="box"];2636[label="xuu6000",fontsize=16,color="green",shape="box"];2637[label="xuu3110000",fontsize=16,color="green",shape="box"];2638[label="xuu6000",fontsize=16,color="green",shape="box"];2639[label="xuu3110000",fontsize=16,color="green",shape="box"];2640[label="xuu6000",fontsize=16,color="green",shape="box"];2641[label="xuu3110000",fontsize=16,color="green",shape="box"];2642 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2642[label="xuu3110001 * xuu6000",fontsize=16,color="magenta"];2643 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2643[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];2643 -> 2820[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2643 -> 2821[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2670[label="xuu3110002 == xuu6002",fontsize=16,color="blue",shape="box"];4646[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2670 -> 4646[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4646 -> 2822[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4647[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2670 -> 4647[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4647 -> 2823[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4648[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2670 -> 4648[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4648 -> 2824[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4649[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2670 -> 4649[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4649 -> 2825[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4650[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2670 -> 4650[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4650 -> 2826[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4651[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2670 -> 4651[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4651 -> 2827[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4652[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2670 -> 4652[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4652 -> 2828[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4653[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2670 -> 4653[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4653 -> 2829[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4654[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2670 -> 4654[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4654 -> 2830[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4655[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2670 -> 4655[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4655 -> 2831[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4656[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2670 -> 4656[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4656 -> 2832[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4657[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2670 -> 4657[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4657 -> 2833[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4658[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2670 -> 4658[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4658 -> 2834[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4659[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2670 -> 4659[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4659 -> 2835[label="",style="solid", color="blue", weight=3]; 28.89/12.41 2671[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];4660[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2671 -> 4660[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4660 -> 2836[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4661[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2671 -> 4661[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4661 -> 2837[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4662[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2671 -> 4662[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4662 -> 2838[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4663[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2671 -> 4663[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4663 -> 2839[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4664[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2671 -> 4664[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4664 -> 2840[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4665[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2671 -> 4665[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4665 -> 2841[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4666[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2671 -> 4666[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4666 -> 2842[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4667[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2671 -> 4667[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4667 -> 2843[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4668[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2671 -> 4668[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4668 -> 2844[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4669[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2671 -> 4669[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4669 -> 2845[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4670[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2671 -> 4670[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4670 -> 2846[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4671[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2671 -> 4671[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4671 -> 2847[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4672[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2671 -> 4672[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4672 -> 2848[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4673[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2671 -> 4673[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4673 -> 2849[label="",style="solid", color="blue", weight=3]; 28.89/12.41 2672 -> 2242[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2672[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2672 -> 2850[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2672 -> 2851[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2673 -> 2243[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2673[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2673 -> 2852[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2673 -> 2853[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2674 -> 2244[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2674[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2674 -> 2854[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2674 -> 2855[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2675 -> 2245[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2675[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2675 -> 2856[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2675 -> 2857[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2676 -> 2246[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2676[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2676 -> 2858[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2676 -> 2859[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2677 -> 2247[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2677[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2677 -> 2860[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2677 -> 2861[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2678 -> 2248[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2678[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2678 -> 2862[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2678 -> 2863[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2679 -> 2249[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2679[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2679 -> 2864[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2679 -> 2865[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2680 -> 2250[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2680[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2680 -> 2866[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2680 -> 2867[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2681 -> 2251[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2681[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2681 -> 2868[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2681 -> 2869[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2682 -> 2252[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2682[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2682 -> 2870[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2682 -> 2871[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2683 -> 2253[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2683[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2683 -> 2872[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2683 -> 2873[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2684 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2684[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2684 -> 2874[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2684 -> 2875[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2685 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2685[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2685 -> 2876[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2685 -> 2877[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2686[label="False && xuu178",fontsize=16,color="black",shape="box"];2686 -> 2878[label="",style="solid", color="black", weight=3]; 28.89/12.41 2687[label="True && xuu178",fontsize=16,color="black",shape="box"];2687 -> 2879[label="",style="solid", color="black", weight=3]; 28.89/12.41 2688[label="xuu6000",fontsize=16,color="green",shape="box"];2689[label="xuu3110000",fontsize=16,color="green",shape="box"];2690[label="xuu6000",fontsize=16,color="green",shape="box"];2691[label="xuu3110000",fontsize=16,color="green",shape="box"];2692[label="xuu6000",fontsize=16,color="green",shape="box"];2693[label="xuu3110000",fontsize=16,color="green",shape="box"];2694[label="xuu6000",fontsize=16,color="green",shape="box"];2695[label="xuu3110000",fontsize=16,color="green",shape="box"];2696[label="xuu6000",fontsize=16,color="green",shape="box"];2697[label="xuu3110000",fontsize=16,color="green",shape="box"];2698[label="xuu6000",fontsize=16,color="green",shape="box"];2699[label="xuu3110000",fontsize=16,color="green",shape="box"];2700[label="xuu6000",fontsize=16,color="green",shape="box"];2701[label="xuu3110000",fontsize=16,color="green",shape="box"];2702[label="xuu6000",fontsize=16,color="green",shape="box"];2703[label="xuu3110000",fontsize=16,color="green",shape="box"];2704[label="xuu6000",fontsize=16,color="green",shape="box"];2705[label="xuu3110000",fontsize=16,color="green",shape="box"];2706[label="xuu6000",fontsize=16,color="green",shape="box"];2707[label="xuu3110000",fontsize=16,color="green",shape="box"];2708[label="xuu6000",fontsize=16,color="green",shape="box"];2709[label="xuu3110000",fontsize=16,color="green",shape="box"];2710[label="xuu6000",fontsize=16,color="green",shape="box"];2711[label="xuu3110000",fontsize=16,color="green",shape="box"];2712[label="xuu6000",fontsize=16,color="green",shape="box"];2713[label="xuu3110000",fontsize=16,color="green",shape="box"];2714[label="xuu6000",fontsize=16,color="green",shape="box"];2715[label="xuu3110000",fontsize=16,color="green",shape="box"];2716[label="xuu6000",fontsize=16,color="green",shape="box"];2717[label="xuu3110000",fontsize=16,color="green",shape="box"];2718[label="xuu6000",fontsize=16,color="green",shape="box"];2719[label="xuu3110000",fontsize=16,color="green",shape="box"];2720[label="xuu6000",fontsize=16,color="green",shape="box"];2721[label="xuu3110000",fontsize=16,color="green",shape="box"];2722[label="xuu6000",fontsize=16,color="green",shape="box"];2723[label="xuu3110000",fontsize=16,color="green",shape="box"];2724[label="xuu6000",fontsize=16,color="green",shape="box"];2725[label="xuu3110000",fontsize=16,color="green",shape="box"];2726[label="xuu6000",fontsize=16,color="green",shape="box"];2727[label="xuu3110000",fontsize=16,color="green",shape="box"];2728[label="xuu6000",fontsize=16,color="green",shape="box"];2729[label="xuu3110000",fontsize=16,color="green",shape="box"];2730[label="xuu6000",fontsize=16,color="green",shape="box"];2731[label="xuu3110000",fontsize=16,color="green",shape="box"];2732[label="xuu6000",fontsize=16,color="green",shape="box"];2733[label="xuu3110000",fontsize=16,color="green",shape="box"];2734[label="xuu6000",fontsize=16,color="green",shape="box"];2735[label="xuu3110000",fontsize=16,color="green",shape="box"];2736[label="xuu6000",fontsize=16,color="green",shape="box"];2737[label="xuu3110000",fontsize=16,color="green",shape="box"];2738[label="xuu6000",fontsize=16,color="green",shape="box"];2739[label="xuu3110000",fontsize=16,color="green",shape="box"];2740[label="xuu6000",fontsize=16,color="green",shape="box"];2741[label="xuu3110000",fontsize=16,color="green",shape="box"];2742[label="xuu6000",fontsize=16,color="green",shape="box"];2743[label="xuu3110000",fontsize=16,color="green",shape="box"];2744 -> 2242[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2744[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2744 -> 2880[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2744 -> 2881[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2745 -> 2243[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2745[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2745 -> 2882[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2745 -> 2883[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2746 -> 2244[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2746[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2746 -> 2884[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2746 -> 2885[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2747 -> 2245[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2747[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2747 -> 2886[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2747 -> 2887[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2748 -> 2246[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2748[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2748 -> 2888[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2748 -> 2889[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2749 -> 2247[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2749[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2749 -> 2890[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2749 -> 2891[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2750 -> 2248[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2750[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2750 -> 2892[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2750 -> 2893[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2751 -> 2249[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2751[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2751 -> 2894[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2751 -> 2895[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2752 -> 2250[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2752[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2752 -> 2896[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2752 -> 2897[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2753 -> 2251[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2753[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2753 -> 2898[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2753 -> 2899[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2754 -> 2252[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2754[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2754 -> 2900[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2754 -> 2901[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2755 -> 2253[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2755[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2755 -> 2902[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2755 -> 2903[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2756 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2756[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2756 -> 2904[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2756 -> 2905[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2757 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2757[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2757 -> 2906[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2757 -> 2907[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2758 -> 2242[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2758[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2758 -> 2908[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2758 -> 2909[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2759 -> 2243[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2759[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2759 -> 2910[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2759 -> 2911[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2760 -> 2244[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2760[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2760 -> 2912[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2760 -> 2913[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2761 -> 2245[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2761[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2761 -> 2914[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2761 -> 2915[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2762 -> 2246[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2762[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2762 -> 2916[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2762 -> 2917[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2763 -> 2247[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2763[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2763 -> 2918[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2763 -> 2919[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2764 -> 2248[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2764[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2764 -> 2920[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2764 -> 2921[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2765 -> 2249[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2765[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2765 -> 2922[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2765 -> 2923[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2766 -> 2250[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2766[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2766 -> 2924[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2766 -> 2925[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2767 -> 2251[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2767[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2767 -> 2926[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2767 -> 2927[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2768 -> 2252[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2768[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2768 -> 2928[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2768 -> 2929[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2769 -> 2253[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2769[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2769 -> 2930[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2769 -> 2931[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2770 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2770[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2770 -> 2932[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2770 -> 2933[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2771 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2771[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2771 -> 2934[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2771 -> 2935[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2772[label="primEqNat (Succ xuu31100000) xuu6000",fontsize=16,color="burlywood",shape="box"];4674[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2772 -> 4674[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4674 -> 2936[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4675[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2772 -> 4675[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4675 -> 2937[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2773[label="primEqNat Zero xuu6000",fontsize=16,color="burlywood",shape="box"];4676[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4676[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4676 -> 2938[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4677[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4677[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4677 -> 2939[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2774 -> 2248[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2774[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2774 -> 2940[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2774 -> 2941[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2775 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2775[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2775 -> 2942[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2775 -> 2943[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2776 -> 2248[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2776[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2776 -> 2944[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2776 -> 2945[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2777 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2777[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2777 -> 2946[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2777 -> 2947[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2778 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2778[label="xuu3110001 * xuu6000",fontsize=16,color="magenta"];2778 -> 2948[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2778 -> 2949[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2779 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2779[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];2779 -> 2950[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2779 -> 2951[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2780[label="xuu6001",fontsize=16,color="green",shape="box"];2781[label="xuu3110001",fontsize=16,color="green",shape="box"];2782 -> 2242[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2782[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2782 -> 2952[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2782 -> 2953[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2783 -> 2243[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2783[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2783 -> 2954[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2783 -> 2955[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2784 -> 2244[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2784[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2784 -> 2956[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2784 -> 2957[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2785 -> 2245[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2785[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2785 -> 2958[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2785 -> 2959[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2786 -> 2246[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2786[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2786 -> 2960[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2786 -> 2961[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2787 -> 2247[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2787[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2787 -> 2962[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2787 -> 2963[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2788 -> 2248[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2788[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2788 -> 2964[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2788 -> 2965[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2789 -> 2249[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2789[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2789 -> 2966[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2789 -> 2967[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2790 -> 2250[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2790[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2790 -> 2968[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2790 -> 2969[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2791 -> 2251[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2791[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2791 -> 2970[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2791 -> 2971[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2792 -> 2252[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2792[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2792 -> 2972[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2792 -> 2973[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2793 -> 2253[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2793[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2793 -> 2974[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2793 -> 2975[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2794 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2794[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2794 -> 2976[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2794 -> 2977[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2795 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2795[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2795 -> 2978[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2795 -> 2979[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2796[label="primEqInt (Pos (Succ xuu31100000)) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];2796 -> 2980[label="",style="solid", color="black", weight=3]; 28.89/12.41 2797[label="primEqInt (Pos (Succ xuu31100000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2797 -> 2981[label="",style="solid", color="black", weight=3]; 28.89/12.41 2798[label="False",fontsize=16,color="green",shape="box"];2799[label="primEqInt (Pos Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];2799 -> 2982[label="",style="solid", color="black", weight=3]; 28.89/12.41 2800[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2800 -> 2983[label="",style="solid", color="black", weight=3]; 28.89/12.41 2801[label="primEqInt (Pos Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];2801 -> 2984[label="",style="solid", color="black", weight=3]; 28.89/12.41 2802[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2802 -> 2985[label="",style="solid", color="black", weight=3]; 28.89/12.41 2803[label="False",fontsize=16,color="green",shape="box"];2804[label="primEqInt (Neg (Succ xuu31100000)) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];2804 -> 2986[label="",style="solid", color="black", weight=3]; 28.89/12.41 2805[label="primEqInt (Neg (Succ xuu31100000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2805 -> 2987[label="",style="solid", color="black", weight=3]; 28.89/12.41 2806[label="primEqInt (Neg Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];2806 -> 2988[label="",style="solid", color="black", weight=3]; 28.89/12.41 2807[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2807 -> 2989[label="",style="solid", color="black", weight=3]; 28.89/12.41 2808[label="primEqInt (Neg Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];2808 -> 2990[label="",style="solid", color="black", weight=3]; 28.89/12.41 2809[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2809 -> 2991[label="",style="solid", color="black", weight=3]; 28.89/12.41 2811[label="xuu5000 <= xuu5100",fontsize=16,color="blue",shape="box"];4678[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4678[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4678 -> 2992[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4679[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4679[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4679 -> 2993[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4680[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4680[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4680 -> 2994[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4681[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4681[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4681 -> 2995[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4682[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4682[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4682 -> 2996[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4683[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4683[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4683 -> 2997[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4684[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4684[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4684 -> 2998[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4685[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4685[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4685 -> 2999[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4686[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4686[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4686 -> 3000[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4687[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4687[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4687 -> 3001[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4688[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4688[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4688 -> 3002[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4689[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4689[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4689 -> 3003[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4690[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4690[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4690 -> 3004[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4691[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4691[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4691 -> 3005[label="",style="solid", color="blue", weight=3]; 28.89/12.41 2812[label="xuu5000",fontsize=16,color="green",shape="box"];2813[label="xuu5100",fontsize=16,color="green",shape="box"];2810[label="compare1 (Left xuu183) (Left xuu184) xuu185",fontsize=16,color="burlywood",shape="triangle"];4692[label="xuu185/False",fontsize=10,color="white",style="solid",shape="box"];2810 -> 4692[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4692 -> 3006[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4693[label="xuu185/True",fontsize=10,color="white",style="solid",shape="box"];2810 -> 4693[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4693 -> 3007[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2814[label="LT",fontsize=16,color="green",shape="box"];2815[label="compare0 (Right xuu5000) (Left xuu5100) otherwise",fontsize=16,color="black",shape="box"];2815 -> 3008[label="",style="solid", color="black", weight=3]; 28.89/12.41 2817[label="xuu5000",fontsize=16,color="green",shape="box"];2818[label="xuu5100",fontsize=16,color="green",shape="box"];2819[label="xuu5000 <= xuu5100",fontsize=16,color="blue",shape="box"];4694[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2819 -> 4694[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4694 -> 3009[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4695[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2819 -> 4695[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4695 -> 3010[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4696[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2819 -> 4696[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4696 -> 3011[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4697[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2819 -> 4697[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4697 -> 3012[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4698[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2819 -> 4698[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4698 -> 3013[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4699[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2819 -> 4699[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4699 -> 3014[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4700[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2819 -> 4700[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4700 -> 3015[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4701[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2819 -> 4701[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4701 -> 3016[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4702[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2819 -> 4702[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4702 -> 3017[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4703[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2819 -> 4703[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4703 -> 3018[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4704[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2819 -> 4704[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4704 -> 3019[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4705[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2819 -> 4705[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4705 -> 3020[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4706[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2819 -> 4706[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4706 -> 3021[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4707[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2819 -> 4707[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4707 -> 3022[label="",style="solid", color="blue", weight=3]; 28.89/12.41 2816[label="compare1 (Right xuu190) (Right xuu191) xuu192",fontsize=16,color="burlywood",shape="triangle"];4708[label="xuu192/False",fontsize=10,color="white",style="solid",shape="box"];2816 -> 4708[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4708 -> 3023[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4709[label="xuu192/True",fontsize=10,color="white",style="solid",shape="box"];2816 -> 4709[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4709 -> 3024[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2229[label="Left xuu22 == Left xuu17",fontsize=16,color="black",shape="box"];2229 -> 2272[label="",style="solid", color="black", weight=3]; 28.89/12.41 2230[label="Left xuu17",fontsize=16,color="green",shape="box"];2231[label="Left xuu22",fontsize=16,color="green",shape="box"];881[label="FiniteMap.addListToFM0 xuu18 xuu23",fontsize=16,color="black",shape="triangle"];881 -> 1144[label="",style="solid", color="black", weight=3]; 28.89/12.41 882[label="LT",fontsize=16,color="green",shape="box"];883[label="compare (FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53 + FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];883 -> 1145[label="",style="solid", color="black", weight=3]; 28.89/12.41 884 -> 1370[label="",style="dashed", color="red", weight=0]; 28.89/12.41 884[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53)",fontsize=16,color="magenta"];884 -> 1371[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 885 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.41 885[label="FiniteMap.mkBranch (Pos (Succ Zero)) (Left xuu600) xuu61 xuu53 xuu64",fontsize=16,color="magenta"];885 -> 4178[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 885 -> 4179[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 885 -> 4180[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 885 -> 4181[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 885 -> 4182[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2232[label="Left xuu311000 == Right xuu600",fontsize=16,color="black",shape="box"];2232 -> 2273[label="",style="solid", color="black", weight=3]; 28.89/12.41 2233[label="Right xuu600",fontsize=16,color="green",shape="box"];2234[label="Left xuu311000",fontsize=16,color="green",shape="box"];891 -> 881[label="",style="dashed", color="red", weight=0]; 28.89/12.41 891[label="FiniteMap.addListToFM0 xuu61 xuu31101",fontsize=16,color="magenta"];891 -> 1165[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 891 -> 1166[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 892[label="LT",fontsize=16,color="green",shape="box"];893[label="compare (FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45 + FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];893 -> 1167[label="",style="solid", color="black", weight=3]; 28.89/12.41 894 -> 1441[label="",style="dashed", color="red", weight=0]; 28.89/12.41 894[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45)",fontsize=16,color="magenta"];894 -> 1442[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 895 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.41 895[label="FiniteMap.mkBranch (Pos (Succ Zero)) (Right xuu600) xuu61 xuu45 xuu64",fontsize=16,color="magenta"];895 -> 4183[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 895 -> 4184[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 895 -> 4185[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 895 -> 4186[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 895 -> 4187[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2235[label="Right xuu311000 == Left xuu600",fontsize=16,color="black",shape="box"];2235 -> 2274[label="",style="solid", color="black", weight=3]; 28.89/12.41 2236[label="Left xuu600",fontsize=16,color="green",shape="box"];2237[label="Right xuu311000",fontsize=16,color="green",shape="box"];903 -> 881[label="",style="dashed", color="red", weight=0]; 28.89/12.41 903[label="FiniteMap.addListToFM0 xuu61 xuu31101",fontsize=16,color="magenta"];903 -> 1181[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 903 -> 1182[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2238[label="Right xuu39 == Right xuu34",fontsize=16,color="black",shape="box"];2238 -> 2275[label="",style="solid", color="black", weight=3]; 28.89/12.41 2239[label="Right xuu34",fontsize=16,color="green",shape="box"];2240[label="Right xuu39",fontsize=16,color="green",shape="box"];936 -> 881[label="",style="dashed", color="red", weight=0]; 28.89/12.41 936[label="FiniteMap.addListToFM0 xuu35 xuu40",fontsize=16,color="magenta"];936 -> 1186[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 936 -> 1187[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 690[label="xuu3110001 * xuu6000",fontsize=16,color="black",shape="triangle"];690 -> 937[label="",style="solid", color="black", weight=3]; 28.89/12.41 2820[label="xuu6001",fontsize=16,color="green",shape="box"];2821[label="xuu3110000",fontsize=16,color="green",shape="box"];2822 -> 2242[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2822[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2822 -> 3049[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2822 -> 3050[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2823 -> 2243[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2823[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2823 -> 3051[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2823 -> 3052[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2824 -> 2244[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2824[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2824 -> 3053[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2824 -> 3054[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2825 -> 2245[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2825[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2825 -> 3055[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2825 -> 3056[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2826 -> 2246[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2826[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2826 -> 3057[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2826 -> 3058[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2827 -> 2247[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2827[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2827 -> 3059[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2827 -> 3060[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2828 -> 2248[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2828[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2828 -> 3061[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2828 -> 3062[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2829 -> 2249[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2829[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2829 -> 3063[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2829 -> 3064[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2830 -> 2250[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2830[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2830 -> 3065[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2830 -> 3066[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2831 -> 2251[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2831[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2831 -> 3067[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2831 -> 3068[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2832 -> 2252[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2832[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2832 -> 3069[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2832 -> 3070[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2833 -> 2253[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2833[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2833 -> 3071[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2833 -> 3072[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2834 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2834[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2834 -> 3073[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2834 -> 3074[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2835 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2835[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2835 -> 3075[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2835 -> 3076[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2836 -> 2242[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2836[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2836 -> 3077[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2836 -> 3078[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2837 -> 2243[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2837[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2837 -> 3079[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2837 -> 3080[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2838 -> 2244[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2838[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2838 -> 3081[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2838 -> 3082[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2839 -> 2245[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2839[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2839 -> 3083[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2839 -> 3084[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2840 -> 2246[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2840[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2840 -> 3085[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2840 -> 3086[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2841 -> 2247[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2841[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2841 -> 3087[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2841 -> 3088[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2842 -> 2248[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2842[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2842 -> 3089[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2842 -> 3090[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2843 -> 2249[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2843[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2843 -> 3091[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2843 -> 3092[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2844 -> 2250[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2844[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2844 -> 3093[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2844 -> 3094[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2845 -> 2251[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2845[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2845 -> 3095[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2845 -> 3096[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2846 -> 2252[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2846[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2846 -> 3097[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2846 -> 3098[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2847 -> 2253[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2847[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2847 -> 3099[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2847 -> 3100[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2848 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2848[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2848 -> 3101[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2848 -> 3102[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2849 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2849[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2849 -> 3103[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2849 -> 3104[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2850[label="xuu6000",fontsize=16,color="green",shape="box"];2851[label="xuu3110000",fontsize=16,color="green",shape="box"];2852[label="xuu6000",fontsize=16,color="green",shape="box"];2853[label="xuu3110000",fontsize=16,color="green",shape="box"];2854[label="xuu6000",fontsize=16,color="green",shape="box"];2855[label="xuu3110000",fontsize=16,color="green",shape="box"];2856[label="xuu6000",fontsize=16,color="green",shape="box"];2857[label="xuu3110000",fontsize=16,color="green",shape="box"];2858[label="xuu6000",fontsize=16,color="green",shape="box"];2859[label="xuu3110000",fontsize=16,color="green",shape="box"];2860[label="xuu6000",fontsize=16,color="green",shape="box"];2861[label="xuu3110000",fontsize=16,color="green",shape="box"];2862[label="xuu6000",fontsize=16,color="green",shape="box"];2863[label="xuu3110000",fontsize=16,color="green",shape="box"];2864[label="xuu6000",fontsize=16,color="green",shape="box"];2865[label="xuu3110000",fontsize=16,color="green",shape="box"];2866[label="xuu6000",fontsize=16,color="green",shape="box"];2867[label="xuu3110000",fontsize=16,color="green",shape="box"];2868[label="xuu6000",fontsize=16,color="green",shape="box"];2869[label="xuu3110000",fontsize=16,color="green",shape="box"];2870[label="xuu6000",fontsize=16,color="green",shape="box"];2871[label="xuu3110000",fontsize=16,color="green",shape="box"];2872[label="xuu6000",fontsize=16,color="green",shape="box"];2873[label="xuu3110000",fontsize=16,color="green",shape="box"];2874[label="xuu6000",fontsize=16,color="green",shape="box"];2875[label="xuu3110000",fontsize=16,color="green",shape="box"];2876[label="xuu6000",fontsize=16,color="green",shape="box"];2877[label="xuu3110000",fontsize=16,color="green",shape="box"];2878[label="False",fontsize=16,color="green",shape="box"];2879[label="xuu178",fontsize=16,color="green",shape="box"];2880[label="xuu6001",fontsize=16,color="green",shape="box"];2881[label="xuu3110001",fontsize=16,color="green",shape="box"];2882[label="xuu6001",fontsize=16,color="green",shape="box"];2883[label="xuu3110001",fontsize=16,color="green",shape="box"];2884[label="xuu6001",fontsize=16,color="green",shape="box"];2885[label="xuu3110001",fontsize=16,color="green",shape="box"];2886[label="xuu6001",fontsize=16,color="green",shape="box"];2887[label="xuu3110001",fontsize=16,color="green",shape="box"];2888[label="xuu6001",fontsize=16,color="green",shape="box"];2889[label="xuu3110001",fontsize=16,color="green",shape="box"];2890[label="xuu6001",fontsize=16,color="green",shape="box"];2891[label="xuu3110001",fontsize=16,color="green",shape="box"];2892[label="xuu6001",fontsize=16,color="green",shape="box"];2893[label="xuu3110001",fontsize=16,color="green",shape="box"];2894[label="xuu6001",fontsize=16,color="green",shape="box"];2895[label="xuu3110001",fontsize=16,color="green",shape="box"];2896[label="xuu6001",fontsize=16,color="green",shape="box"];2897[label="xuu3110001",fontsize=16,color="green",shape="box"];2898[label="xuu6001",fontsize=16,color="green",shape="box"];2899[label="xuu3110001",fontsize=16,color="green",shape="box"];2900[label="xuu6001",fontsize=16,color="green",shape="box"];2901[label="xuu3110001",fontsize=16,color="green",shape="box"];2902[label="xuu6001",fontsize=16,color="green",shape="box"];2903[label="xuu3110001",fontsize=16,color="green",shape="box"];2904[label="xuu6001",fontsize=16,color="green",shape="box"];2905[label="xuu3110001",fontsize=16,color="green",shape="box"];2906[label="xuu6001",fontsize=16,color="green",shape="box"];2907[label="xuu3110001",fontsize=16,color="green",shape="box"];2908[label="xuu6000",fontsize=16,color="green",shape="box"];2909[label="xuu3110000",fontsize=16,color="green",shape="box"];2910[label="xuu6000",fontsize=16,color="green",shape="box"];2911[label="xuu3110000",fontsize=16,color="green",shape="box"];2912[label="xuu6000",fontsize=16,color="green",shape="box"];2913[label="xuu3110000",fontsize=16,color="green",shape="box"];2914[label="xuu6000",fontsize=16,color="green",shape="box"];2915[label="xuu3110000",fontsize=16,color="green",shape="box"];2916[label="xuu6000",fontsize=16,color="green",shape="box"];2917[label="xuu3110000",fontsize=16,color="green",shape="box"];2918[label="xuu6000",fontsize=16,color="green",shape="box"];2919[label="xuu3110000",fontsize=16,color="green",shape="box"];2920[label="xuu6000",fontsize=16,color="green",shape="box"];2921[label="xuu3110000",fontsize=16,color="green",shape="box"];2922[label="xuu6000",fontsize=16,color="green",shape="box"];2923[label="xuu3110000",fontsize=16,color="green",shape="box"];2924[label="xuu6000",fontsize=16,color="green",shape="box"];2925[label="xuu3110000",fontsize=16,color="green",shape="box"];2926[label="xuu6000",fontsize=16,color="green",shape="box"];2927[label="xuu3110000",fontsize=16,color="green",shape="box"];2928[label="xuu6000",fontsize=16,color="green",shape="box"];2929[label="xuu3110000",fontsize=16,color="green",shape="box"];2930[label="xuu6000",fontsize=16,color="green",shape="box"];2931[label="xuu3110000",fontsize=16,color="green",shape="box"];2932[label="xuu6000",fontsize=16,color="green",shape="box"];2933[label="xuu3110000",fontsize=16,color="green",shape="box"];2934[label="xuu6000",fontsize=16,color="green",shape="box"];2935[label="xuu3110000",fontsize=16,color="green",shape="box"];2936[label="primEqNat (Succ xuu31100000) (Succ xuu60000)",fontsize=16,color="black",shape="box"];2936 -> 3105[label="",style="solid", color="black", weight=3]; 28.89/12.41 2937[label="primEqNat (Succ xuu31100000) Zero",fontsize=16,color="black",shape="box"];2937 -> 3106[label="",style="solid", color="black", weight=3]; 28.89/12.41 2938[label="primEqNat Zero (Succ xuu60000)",fontsize=16,color="black",shape="box"];2938 -> 3107[label="",style="solid", color="black", weight=3]; 28.89/12.41 2939[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2939 -> 3108[label="",style="solid", color="black", weight=3]; 28.89/12.41 2940[label="xuu6001",fontsize=16,color="green",shape="box"];2941[label="xuu3110001",fontsize=16,color="green",shape="box"];2942[label="xuu6001",fontsize=16,color="green",shape="box"];2943[label="xuu3110001",fontsize=16,color="green",shape="box"];2944[label="xuu6000",fontsize=16,color="green",shape="box"];2945[label="xuu3110000",fontsize=16,color="green",shape="box"];2946[label="xuu6000",fontsize=16,color="green",shape="box"];2947[label="xuu3110000",fontsize=16,color="green",shape="box"];2948[label="xuu6000",fontsize=16,color="green",shape="box"];2949[label="xuu3110001",fontsize=16,color="green",shape="box"];2950[label="xuu6001",fontsize=16,color="green",shape="box"];2951[label="xuu3110000",fontsize=16,color="green",shape="box"];2952[label="xuu6000",fontsize=16,color="green",shape="box"];2953[label="xuu3110000",fontsize=16,color="green",shape="box"];2954[label="xuu6000",fontsize=16,color="green",shape="box"];2955[label="xuu3110000",fontsize=16,color="green",shape="box"];2956[label="xuu6000",fontsize=16,color="green",shape="box"];2957[label="xuu3110000",fontsize=16,color="green",shape="box"];2958[label="xuu6000",fontsize=16,color="green",shape="box"];2959[label="xuu3110000",fontsize=16,color="green",shape="box"];2960[label="xuu6000",fontsize=16,color="green",shape="box"];2961[label="xuu3110000",fontsize=16,color="green",shape="box"];2962[label="xuu6000",fontsize=16,color="green",shape="box"];2963[label="xuu3110000",fontsize=16,color="green",shape="box"];2964[label="xuu6000",fontsize=16,color="green",shape="box"];2965[label="xuu3110000",fontsize=16,color="green",shape="box"];2966[label="xuu6000",fontsize=16,color="green",shape="box"];2967[label="xuu3110000",fontsize=16,color="green",shape="box"];2968[label="xuu6000",fontsize=16,color="green",shape="box"];2969[label="xuu3110000",fontsize=16,color="green",shape="box"];2970[label="xuu6000",fontsize=16,color="green",shape="box"];2971[label="xuu3110000",fontsize=16,color="green",shape="box"];2972[label="xuu6000",fontsize=16,color="green",shape="box"];2973[label="xuu3110000",fontsize=16,color="green",shape="box"];2974[label="xuu6000",fontsize=16,color="green",shape="box"];2975[label="xuu3110000",fontsize=16,color="green",shape="box"];2976[label="xuu6000",fontsize=16,color="green",shape="box"];2977[label="xuu3110000",fontsize=16,color="green",shape="box"];2978[label="xuu6000",fontsize=16,color="green",shape="box"];2979[label="xuu3110000",fontsize=16,color="green",shape="box"];2980 -> 2600[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2980[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2980 -> 3109[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2980 -> 3110[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2981[label="False",fontsize=16,color="green",shape="box"];2982[label="False",fontsize=16,color="green",shape="box"];2983[label="True",fontsize=16,color="green",shape="box"];2984[label="False",fontsize=16,color="green",shape="box"];2985[label="True",fontsize=16,color="green",shape="box"];2986 -> 2600[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2986[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2986 -> 3111[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2986 -> 3112[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2987[label="False",fontsize=16,color="green",shape="box"];2988[label="False",fontsize=16,color="green",shape="box"];2989[label="True",fontsize=16,color="green",shape="box"];2990[label="False",fontsize=16,color="green",shape="box"];2991[label="True",fontsize=16,color="green",shape="box"];2992[label="xuu5000 <= xuu5100",fontsize=16,color="black",shape="triangle"];2992 -> 3113[label="",style="solid", color="black", weight=3]; 28.89/12.41 2993[label="xuu5000 <= xuu5100",fontsize=16,color="burlywood",shape="triangle"];4710[label="xuu5000/LT",fontsize=10,color="white",style="solid",shape="box"];2993 -> 4710[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4710 -> 3114[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4711[label="xuu5000/EQ",fontsize=10,color="white",style="solid",shape="box"];2993 -> 4711[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4711 -> 3115[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4712[label="xuu5000/GT",fontsize=10,color="white",style="solid",shape="box"];2993 -> 4712[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4712 -> 3116[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2994[label="xuu5000 <= xuu5100",fontsize=16,color="black",shape="triangle"];2994 -> 3117[label="",style="solid", color="black", weight=3]; 28.89/12.41 2995[label="xuu5000 <= xuu5100",fontsize=16,color="black",shape="triangle"];2995 -> 3118[label="",style="solid", color="black", weight=3]; 28.89/12.41 2996[label="xuu5000 <= xuu5100",fontsize=16,color="burlywood",shape="triangle"];4713[label="xuu5000/Nothing",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4713[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4713 -> 3119[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4714[label="xuu5000/Just xuu50000",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4714[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4714 -> 3120[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2997[label="xuu5000 <= xuu5100",fontsize=16,color="black",shape="triangle"];2997 -> 3121[label="",style="solid", color="black", weight=3]; 28.89/12.41 2998[label="xuu5000 <= xuu5100",fontsize=16,color="burlywood",shape="triangle"];4715[label="xuu5000/Left xuu50000",fontsize=10,color="white",style="solid",shape="box"];2998 -> 4715[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4715 -> 3122[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4716[label="xuu5000/Right xuu50000",fontsize=10,color="white",style="solid",shape="box"];2998 -> 4716[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4716 -> 3123[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2999[label="xuu5000 <= xuu5100",fontsize=16,color="black",shape="triangle"];2999 -> 3124[label="",style="solid", color="black", weight=3]; 28.89/12.41 3000[label="xuu5000 <= xuu5100",fontsize=16,color="black",shape="triangle"];3000 -> 3125[label="",style="solid", color="black", weight=3]; 28.89/12.41 3001[label="xuu5000 <= xuu5100",fontsize=16,color="black",shape="triangle"];3001 -> 3126[label="",style="solid", color="black", weight=3]; 28.89/12.41 3002[label="xuu5000 <= xuu5100",fontsize=16,color="burlywood",shape="triangle"];4717[label="xuu5000/(xuu50000,xuu50001)",fontsize=10,color="white",style="solid",shape="box"];3002 -> 4717[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4717 -> 3127[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3003[label="xuu5000 <= xuu5100",fontsize=16,color="black",shape="triangle"];3003 -> 3128[label="",style="solid", color="black", weight=3]; 28.89/12.41 3004[label="xuu5000 <= xuu5100",fontsize=16,color="burlywood",shape="triangle"];4718[label="xuu5000/(xuu50000,xuu50001,xuu50002)",fontsize=10,color="white",style="solid",shape="box"];3004 -> 4718[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4718 -> 3129[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3005[label="xuu5000 <= xuu5100",fontsize=16,color="burlywood",shape="triangle"];4719[label="xuu5000/False",fontsize=10,color="white",style="solid",shape="box"];3005 -> 4719[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4719 -> 3130[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4720[label="xuu5000/True",fontsize=10,color="white",style="solid",shape="box"];3005 -> 4720[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4720 -> 3131[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3006[label="compare1 (Left xuu183) (Left xuu184) False",fontsize=16,color="black",shape="box"];3006 -> 3132[label="",style="solid", color="black", weight=3]; 28.89/12.41 3007[label="compare1 (Left xuu183) (Left xuu184) True",fontsize=16,color="black",shape="box"];3007 -> 3133[label="",style="solid", color="black", weight=3]; 28.89/12.41 3008[label="compare0 (Right xuu5000) (Left xuu5100) True",fontsize=16,color="black",shape="box"];3008 -> 3134[label="",style="solid", color="black", weight=3]; 28.89/12.41 3009 -> 2992[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3009[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];3009 -> 3135[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3009 -> 3136[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3010 -> 2993[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3010[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];3010 -> 3137[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3010 -> 3138[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3011 -> 2994[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3011[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];3011 -> 3139[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3011 -> 3140[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3012 -> 2995[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3012[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];3012 -> 3141[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3012 -> 3142[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3013 -> 2996[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3013[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];3013 -> 3143[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3013 -> 3144[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3014 -> 2997[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3014[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];3014 -> 3145[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3014 -> 3146[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3015 -> 2998[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3015[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];3015 -> 3147[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3015 -> 3148[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3016 -> 2999[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3016[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];3016 -> 3149[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3016 -> 3150[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3017 -> 3000[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3017[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];3017 -> 3151[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3017 -> 3152[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3018 -> 3001[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3018[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];3018 -> 3153[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3018 -> 3154[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3019 -> 3002[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3019[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];3019 -> 3155[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3019 -> 3156[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3020 -> 3003[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3020[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];3020 -> 3157[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3020 -> 3158[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3021 -> 3004[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3021[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];3021 -> 3159[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3021 -> 3160[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3022 -> 3005[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3022[label="xuu5000 <= xuu5100",fontsize=16,color="magenta"];3022 -> 3161[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3022 -> 3162[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3023[label="compare1 (Right xuu190) (Right xuu191) False",fontsize=16,color="black",shape="box"];3023 -> 3163[label="",style="solid", color="black", weight=3]; 28.89/12.41 3024[label="compare1 (Right xuu190) (Right xuu191) True",fontsize=16,color="black",shape="box"];3024 -> 3164[label="",style="solid", color="black", weight=3]; 28.89/12.41 2272[label="xuu22 == xuu17",fontsize=16,color="blue",shape="box"];4721[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 4721[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4721 -> 2355[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4722[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 4722[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4722 -> 2356[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4723[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 4723[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4723 -> 2357[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4724[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 4724[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4724 -> 2358[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4725[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 4725[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4725 -> 2359[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4726[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 4726[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4726 -> 2360[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4727[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 4727[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4727 -> 2361[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4728[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 4728[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4728 -> 2362[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4729[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 4729[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4729 -> 2363[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4730[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 4730[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4730 -> 2364[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4731[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 4731[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4731 -> 2365[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4732[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 4732[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4732 -> 2366[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4733[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 4733[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4733 -> 2367[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4734[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 4734[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4734 -> 2368[label="",style="solid", color="blue", weight=3]; 28.89/12.41 1144[label="xuu23",fontsize=16,color="green",shape="box"];1145[label="primCmpInt (FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53 + FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1145 -> 1284[label="",style="solid", color="black", weight=3]; 28.89/12.41 1371 -> 1854[label="",style="dashed", color="red", weight=0]; 28.89/12.41 1371[label="FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53",fontsize=16,color="magenta"];1371 -> 1855[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1371 -> 1856[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1370[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 xuu109",fontsize=16,color="burlywood",shape="triangle"];4735[label="xuu109/False",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4735[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4735 -> 1376[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4736[label="xuu109/True",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4736[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4736 -> 1377[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4178[label="xuu64",fontsize=16,color="green",shape="box"];4179[label="xuu53",fontsize=16,color="green",shape="box"];4180[label="Zero",fontsize=16,color="green",shape="box"];4181[label="Left xuu600",fontsize=16,color="green",shape="box"];4182[label="xuu61",fontsize=16,color="green",shape="box"];4177[label="FiniteMap.mkBranch (Pos (Succ xuu262)) xuu263 xuu264 xuu265 xuu266",fontsize=16,color="black",shape="triangle"];4177 -> 4308[label="",style="solid", color="black", weight=3]; 28.89/12.41 2273[label="False",fontsize=16,color="green",shape="box"];1165[label="xuu31101",fontsize=16,color="green",shape="box"];1166[label="xuu61",fontsize=16,color="green",shape="box"];1167[label="primCmpInt (FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45 + FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1167 -> 1317[label="",style="solid", color="black", weight=3]; 28.89/12.41 1442 -> 1854[label="",style="dashed", color="red", weight=0]; 28.89/12.41 1442[label="FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45",fontsize=16,color="magenta"];1442 -> 1857[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1442 -> 1858[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1441[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 xuu111",fontsize=16,color="burlywood",shape="triangle"];4737[label="xuu111/False",fontsize=10,color="white",style="solid",shape="box"];1441 -> 4737[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4737 -> 1447[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4738[label="xuu111/True",fontsize=10,color="white",style="solid",shape="box"];1441 -> 4738[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4738 -> 1448[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4183[label="xuu64",fontsize=16,color="green",shape="box"];4184[label="xuu45",fontsize=16,color="green",shape="box"];4185[label="Zero",fontsize=16,color="green",shape="box"];4186[label="Right xuu600",fontsize=16,color="green",shape="box"];4187[label="xuu61",fontsize=16,color="green",shape="box"];2274[label="False",fontsize=16,color="green",shape="box"];1181[label="xuu31101",fontsize=16,color="green",shape="box"];1182[label="xuu61",fontsize=16,color="green",shape="box"];2275[label="xuu39 == xuu34",fontsize=16,color="blue",shape="box"];4739[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4739[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4739 -> 2369[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4740[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4740[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4740 -> 2370[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4741[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4741[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4741 -> 2371[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4742[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4742[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4742 -> 2372[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4743[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4743[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4743 -> 2373[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4744[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4744[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4744 -> 2374[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4745[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4745[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4745 -> 2375[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4746[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4746[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4746 -> 2376[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4747[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4747[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4747 -> 2377[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4748[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4748[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4748 -> 2378[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4749[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4749[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4749 -> 2379[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4750[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4750[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4750 -> 2380[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4751[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4751[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4751 -> 2381[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4752[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4752[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4752 -> 2382[label="",style="solid", color="blue", weight=3]; 28.89/12.41 1186[label="xuu40",fontsize=16,color="green",shape="box"];1187[label="xuu35",fontsize=16,color="green",shape="box"];937[label="primMulInt xuu3110001 xuu6000",fontsize=16,color="burlywood",shape="triangle"];4753[label="xuu3110001/Pos xuu31100010",fontsize=10,color="white",style="solid",shape="box"];937 -> 4753[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4753 -> 1188[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4754[label="xuu3110001/Neg xuu31100010",fontsize=10,color="white",style="solid",shape="box"];937 -> 4754[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4754 -> 1189[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3049[label="xuu6002",fontsize=16,color="green",shape="box"];3050[label="xuu3110002",fontsize=16,color="green",shape="box"];3051[label="xuu6002",fontsize=16,color="green",shape="box"];3052[label="xuu3110002",fontsize=16,color="green",shape="box"];3053[label="xuu6002",fontsize=16,color="green",shape="box"];3054[label="xuu3110002",fontsize=16,color="green",shape="box"];3055[label="xuu6002",fontsize=16,color="green",shape="box"];3056[label="xuu3110002",fontsize=16,color="green",shape="box"];3057[label="xuu6002",fontsize=16,color="green",shape="box"];3058[label="xuu3110002",fontsize=16,color="green",shape="box"];3059[label="xuu6002",fontsize=16,color="green",shape="box"];3060[label="xuu3110002",fontsize=16,color="green",shape="box"];3061[label="xuu6002",fontsize=16,color="green",shape="box"];3062[label="xuu3110002",fontsize=16,color="green",shape="box"];3063[label="xuu6002",fontsize=16,color="green",shape="box"];3064[label="xuu3110002",fontsize=16,color="green",shape="box"];3065[label="xuu6002",fontsize=16,color="green",shape="box"];3066[label="xuu3110002",fontsize=16,color="green",shape="box"];3067[label="xuu6002",fontsize=16,color="green",shape="box"];3068[label="xuu3110002",fontsize=16,color="green",shape="box"];3069[label="xuu6002",fontsize=16,color="green",shape="box"];3070[label="xuu3110002",fontsize=16,color="green",shape="box"];3071[label="xuu6002",fontsize=16,color="green",shape="box"];3072[label="xuu3110002",fontsize=16,color="green",shape="box"];3073[label="xuu6002",fontsize=16,color="green",shape="box"];3074[label="xuu3110002",fontsize=16,color="green",shape="box"];3075[label="xuu6002",fontsize=16,color="green",shape="box"];3076[label="xuu3110002",fontsize=16,color="green",shape="box"];3077[label="xuu6001",fontsize=16,color="green",shape="box"];3078[label="xuu3110001",fontsize=16,color="green",shape="box"];3079[label="xuu6001",fontsize=16,color="green",shape="box"];3080[label="xuu3110001",fontsize=16,color="green",shape="box"];3081[label="xuu6001",fontsize=16,color="green",shape="box"];3082[label="xuu3110001",fontsize=16,color="green",shape="box"];3083[label="xuu6001",fontsize=16,color="green",shape="box"];3084[label="xuu3110001",fontsize=16,color="green",shape="box"];3085[label="xuu6001",fontsize=16,color="green",shape="box"];3086[label="xuu3110001",fontsize=16,color="green",shape="box"];3087[label="xuu6001",fontsize=16,color="green",shape="box"];3088[label="xuu3110001",fontsize=16,color="green",shape="box"];3089[label="xuu6001",fontsize=16,color="green",shape="box"];3090[label="xuu3110001",fontsize=16,color="green",shape="box"];3091[label="xuu6001",fontsize=16,color="green",shape="box"];3092[label="xuu3110001",fontsize=16,color="green",shape="box"];3093[label="xuu6001",fontsize=16,color="green",shape="box"];3094[label="xuu3110001",fontsize=16,color="green",shape="box"];3095[label="xuu6001",fontsize=16,color="green",shape="box"];3096[label="xuu3110001",fontsize=16,color="green",shape="box"];3097[label="xuu6001",fontsize=16,color="green",shape="box"];3098[label="xuu3110001",fontsize=16,color="green",shape="box"];3099[label="xuu6001",fontsize=16,color="green",shape="box"];3100[label="xuu3110001",fontsize=16,color="green",shape="box"];3101[label="xuu6001",fontsize=16,color="green",shape="box"];3102[label="xuu3110001",fontsize=16,color="green",shape="box"];3103[label="xuu6001",fontsize=16,color="green",shape="box"];3104[label="xuu3110001",fontsize=16,color="green",shape="box"];3105 -> 2600[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3105[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];3105 -> 3186[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3105 -> 3187[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3106[label="False",fontsize=16,color="green",shape="box"];3107[label="False",fontsize=16,color="green",shape="box"];3108[label="True",fontsize=16,color="green",shape="box"];3109[label="xuu31100000",fontsize=16,color="green",shape="box"];3110[label="xuu60000",fontsize=16,color="green",shape="box"];3111[label="xuu31100000",fontsize=16,color="green",shape="box"];3112[label="xuu60000",fontsize=16,color="green",shape="box"];3113 -> 3188[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3113[label="compare xuu5000 xuu5100 /= GT",fontsize=16,color="magenta"];3113 -> 3189[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3114[label="LT <= xuu5100",fontsize=16,color="burlywood",shape="box"];4755[label="xuu5100/LT",fontsize=10,color="white",style="solid",shape="box"];3114 -> 4755[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4755 -> 3197[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4756[label="xuu5100/EQ",fontsize=10,color="white",style="solid",shape="box"];3114 -> 4756[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4756 -> 3198[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4757[label="xuu5100/GT",fontsize=10,color="white",style="solid",shape="box"];3114 -> 4757[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4757 -> 3199[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3115[label="EQ <= xuu5100",fontsize=16,color="burlywood",shape="box"];4758[label="xuu5100/LT",fontsize=10,color="white",style="solid",shape="box"];3115 -> 4758[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4758 -> 3200[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4759[label="xuu5100/EQ",fontsize=10,color="white",style="solid",shape="box"];3115 -> 4759[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4759 -> 3201[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4760[label="xuu5100/GT",fontsize=10,color="white",style="solid",shape="box"];3115 -> 4760[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4760 -> 3202[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3116[label="GT <= xuu5100",fontsize=16,color="burlywood",shape="box"];4761[label="xuu5100/LT",fontsize=10,color="white",style="solid",shape="box"];3116 -> 4761[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4761 -> 3203[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4762[label="xuu5100/EQ",fontsize=10,color="white",style="solid",shape="box"];3116 -> 4762[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4762 -> 3204[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4763[label="xuu5100/GT",fontsize=10,color="white",style="solid",shape="box"];3116 -> 4763[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4763 -> 3205[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3117 -> 3188[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3117[label="compare xuu5000 xuu5100 /= GT",fontsize=16,color="magenta"];3117 -> 3190[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3118 -> 3188[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3118[label="compare xuu5000 xuu5100 /= GT",fontsize=16,color="magenta"];3118 -> 3191[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3119[label="Nothing <= xuu5100",fontsize=16,color="burlywood",shape="box"];4764[label="xuu5100/Nothing",fontsize=10,color="white",style="solid",shape="box"];3119 -> 4764[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4764 -> 3206[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4765[label="xuu5100/Just xuu51000",fontsize=10,color="white",style="solid",shape="box"];3119 -> 4765[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4765 -> 3207[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3120[label="Just xuu50000 <= xuu5100",fontsize=16,color="burlywood",shape="box"];4766[label="xuu5100/Nothing",fontsize=10,color="white",style="solid",shape="box"];3120 -> 4766[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4766 -> 3208[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4767[label="xuu5100/Just xuu51000",fontsize=10,color="white",style="solid",shape="box"];3120 -> 4767[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4767 -> 3209[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3121 -> 3188[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3121[label="compare xuu5000 xuu5100 /= GT",fontsize=16,color="magenta"];3121 -> 3192[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3122[label="Left xuu50000 <= xuu5100",fontsize=16,color="burlywood",shape="box"];4768[label="xuu5100/Left xuu51000",fontsize=10,color="white",style="solid",shape="box"];3122 -> 4768[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4768 -> 3210[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4769[label="xuu5100/Right xuu51000",fontsize=10,color="white",style="solid",shape="box"];3122 -> 4769[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4769 -> 3211[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3123[label="Right xuu50000 <= xuu5100",fontsize=16,color="burlywood",shape="box"];4770[label="xuu5100/Left xuu51000",fontsize=10,color="white",style="solid",shape="box"];3123 -> 4770[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4770 -> 3212[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4771[label="xuu5100/Right xuu51000",fontsize=10,color="white",style="solid",shape="box"];3123 -> 4771[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4771 -> 3213[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3124 -> 3188[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3124[label="compare xuu5000 xuu5100 /= GT",fontsize=16,color="magenta"];3124 -> 3193[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3125 -> 3188[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3125[label="compare xuu5000 xuu5100 /= GT",fontsize=16,color="magenta"];3125 -> 3194[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3126 -> 3188[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3126[label="compare xuu5000 xuu5100 /= GT",fontsize=16,color="magenta"];3126 -> 3195[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3127[label="(xuu50000,xuu50001) <= xuu5100",fontsize=16,color="burlywood",shape="box"];4772[label="xuu5100/(xuu51000,xuu51001)",fontsize=10,color="white",style="solid",shape="box"];3127 -> 4772[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4772 -> 3214[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3128 -> 3188[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3128[label="compare xuu5000 xuu5100 /= GT",fontsize=16,color="magenta"];3128 -> 3196[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3129[label="(xuu50000,xuu50001,xuu50002) <= xuu5100",fontsize=16,color="burlywood",shape="box"];4773[label="xuu5100/(xuu51000,xuu51001,xuu51002)",fontsize=10,color="white",style="solid",shape="box"];3129 -> 4773[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4773 -> 3215[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3130[label="False <= xuu5100",fontsize=16,color="burlywood",shape="box"];4774[label="xuu5100/False",fontsize=10,color="white",style="solid",shape="box"];3130 -> 4774[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4774 -> 3216[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4775[label="xuu5100/True",fontsize=10,color="white",style="solid",shape="box"];3130 -> 4775[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4775 -> 3217[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3131[label="True <= xuu5100",fontsize=16,color="burlywood",shape="box"];4776[label="xuu5100/False",fontsize=10,color="white",style="solid",shape="box"];3131 -> 4776[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4776 -> 3218[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4777[label="xuu5100/True",fontsize=10,color="white",style="solid",shape="box"];3131 -> 4777[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4777 -> 3219[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3132[label="compare0 (Left xuu183) (Left xuu184) otherwise",fontsize=16,color="black",shape="box"];3132 -> 3220[label="",style="solid", color="black", weight=3]; 28.89/12.41 3133[label="LT",fontsize=16,color="green",shape="box"];3134[label="GT",fontsize=16,color="green",shape="box"];3135[label="xuu5000",fontsize=16,color="green",shape="box"];3136[label="xuu5100",fontsize=16,color="green",shape="box"];3137[label="xuu5000",fontsize=16,color="green",shape="box"];3138[label="xuu5100",fontsize=16,color="green",shape="box"];3139[label="xuu5000",fontsize=16,color="green",shape="box"];3140[label="xuu5100",fontsize=16,color="green",shape="box"];3141[label="xuu5000",fontsize=16,color="green",shape="box"];3142[label="xuu5100",fontsize=16,color="green",shape="box"];3143[label="xuu5000",fontsize=16,color="green",shape="box"];3144[label="xuu5100",fontsize=16,color="green",shape="box"];3145[label="xuu5000",fontsize=16,color="green",shape="box"];3146[label="xuu5100",fontsize=16,color="green",shape="box"];3147[label="xuu5000",fontsize=16,color="green",shape="box"];3148[label="xuu5100",fontsize=16,color="green",shape="box"];3149[label="xuu5000",fontsize=16,color="green",shape="box"];3150[label="xuu5100",fontsize=16,color="green",shape="box"];3151[label="xuu5000",fontsize=16,color="green",shape="box"];3152[label="xuu5100",fontsize=16,color="green",shape="box"];3153[label="xuu5000",fontsize=16,color="green",shape="box"];3154[label="xuu5100",fontsize=16,color="green",shape="box"];3155[label="xuu5000",fontsize=16,color="green",shape="box"];3156[label="xuu5100",fontsize=16,color="green",shape="box"];3157[label="xuu5000",fontsize=16,color="green",shape="box"];3158[label="xuu5100",fontsize=16,color="green",shape="box"];3159[label="xuu5000",fontsize=16,color="green",shape="box"];3160[label="xuu5100",fontsize=16,color="green",shape="box"];3161[label="xuu5000",fontsize=16,color="green",shape="box"];3162[label="xuu5100",fontsize=16,color="green",shape="box"];3163[label="compare0 (Right xuu190) (Right xuu191) otherwise",fontsize=16,color="black",shape="box"];3163 -> 3221[label="",style="solid", color="black", weight=3]; 28.89/12.41 3164[label="LT",fontsize=16,color="green",shape="box"];2355 -> 2242[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2355[label="xuu22 == xuu17",fontsize=16,color="magenta"];2355 -> 2413[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2355 -> 2414[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2356 -> 2243[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2356[label="xuu22 == xuu17",fontsize=16,color="magenta"];2356 -> 2415[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2356 -> 2416[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2357 -> 2244[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2357[label="xuu22 == xuu17",fontsize=16,color="magenta"];2357 -> 2417[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2357 -> 2418[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2358 -> 2245[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2358[label="xuu22 == xuu17",fontsize=16,color="magenta"];2358 -> 2419[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2358 -> 2420[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2359 -> 2246[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2359[label="xuu22 == xuu17",fontsize=16,color="magenta"];2359 -> 2421[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2359 -> 2422[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2360 -> 2247[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2360[label="xuu22 == xuu17",fontsize=16,color="magenta"];2360 -> 2423[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2360 -> 2424[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2361 -> 2248[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2361[label="xuu22 == xuu17",fontsize=16,color="magenta"];2361 -> 2425[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2361 -> 2426[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2362 -> 2249[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2362[label="xuu22 == xuu17",fontsize=16,color="magenta"];2362 -> 2427[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2362 -> 2428[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2363 -> 2250[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2363[label="xuu22 == xuu17",fontsize=16,color="magenta"];2363 -> 2429[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2363 -> 2430[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2364 -> 2251[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2364[label="xuu22 == xuu17",fontsize=16,color="magenta"];2364 -> 2431[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2364 -> 2432[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2365 -> 2252[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2365[label="xuu22 == xuu17",fontsize=16,color="magenta"];2365 -> 2433[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2365 -> 2434[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2366 -> 2253[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2366[label="xuu22 == xuu17",fontsize=16,color="magenta"];2366 -> 2435[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2366 -> 2436[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2367 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2367[label="xuu22 == xuu17",fontsize=16,color="magenta"];2367 -> 2437[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2367 -> 2438[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2368 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2368[label="xuu22 == xuu17",fontsize=16,color="magenta"];2368 -> 2439[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2368 -> 2440[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1284[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53) (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1284 -> 1367[label="",style="solid", color="black", weight=3]; 28.89/12.41 1855 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.41 1855[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53",fontsize=16,color="magenta"];1855 -> 1865[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1855 -> 1866[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1856[label="FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53",fontsize=16,color="black",shape="triangle"];1856 -> 1867[label="",style="solid", color="black", weight=3]; 28.89/12.41 1854[label="xuu127 > xuu126",fontsize=16,color="black",shape="triangle"];1854 -> 1868[label="",style="solid", color="black", weight=3]; 28.89/12.41 1376[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 False",fontsize=16,color="black",shape="box"];1376 -> 1449[label="",style="solid", color="black", weight=3]; 28.89/12.41 1377[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 True",fontsize=16,color="black",shape="box"];1377 -> 1450[label="",style="solid", color="black", weight=3]; 28.89/12.41 4308[label="FiniteMap.mkBranchResult xuu263 xuu264 xuu266 xuu265",fontsize=16,color="black",shape="box"];4308 -> 4374[label="",style="solid", color="black", weight=3]; 28.89/12.41 1317[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45) (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1317 -> 1438[label="",style="solid", color="black", weight=3]; 28.89/12.41 1857 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.41 1857[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45",fontsize=16,color="magenta"];1857 -> 1869[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1857 -> 1870[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1858[label="FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45",fontsize=16,color="black",shape="triangle"];1858 -> 1871[label="",style="solid", color="black", weight=3]; 28.89/12.41 1447[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 False",fontsize=16,color="black",shape="box"];1447 -> 1506[label="",style="solid", color="black", weight=3]; 28.89/12.41 1448[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 True",fontsize=16,color="black",shape="box"];1448 -> 1507[label="",style="solid", color="black", weight=3]; 28.89/12.41 2369 -> 2242[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2369[label="xuu39 == xuu34",fontsize=16,color="magenta"];2369 -> 2441[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2369 -> 2442[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2370 -> 2243[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2370[label="xuu39 == xuu34",fontsize=16,color="magenta"];2370 -> 2443[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2370 -> 2444[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2371 -> 2244[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2371[label="xuu39 == xuu34",fontsize=16,color="magenta"];2371 -> 2445[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2371 -> 2446[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2372 -> 2245[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2372[label="xuu39 == xuu34",fontsize=16,color="magenta"];2372 -> 2447[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2372 -> 2448[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2373 -> 2246[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2373[label="xuu39 == xuu34",fontsize=16,color="magenta"];2373 -> 2449[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2373 -> 2450[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2374 -> 2247[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2374[label="xuu39 == xuu34",fontsize=16,color="magenta"];2374 -> 2451[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2374 -> 2452[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2375 -> 2248[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2375[label="xuu39 == xuu34",fontsize=16,color="magenta"];2375 -> 2453[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2375 -> 2454[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2376 -> 2249[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2376[label="xuu39 == xuu34",fontsize=16,color="magenta"];2376 -> 2455[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2376 -> 2456[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2377 -> 2250[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2377[label="xuu39 == xuu34",fontsize=16,color="magenta"];2377 -> 2457[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2377 -> 2458[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2378 -> 2251[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2378[label="xuu39 == xuu34",fontsize=16,color="magenta"];2378 -> 2459[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2378 -> 2460[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2379 -> 2252[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2379[label="xuu39 == xuu34",fontsize=16,color="magenta"];2379 -> 2461[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2379 -> 2462[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2380 -> 2253[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2380[label="xuu39 == xuu34",fontsize=16,color="magenta"];2380 -> 2463[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2380 -> 2464[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2381 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2381[label="xuu39 == xuu34",fontsize=16,color="magenta"];2381 -> 2465[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2381 -> 2466[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2382 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.41 2382[label="xuu39 == xuu34",fontsize=16,color="magenta"];2382 -> 2467[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 2382 -> 2468[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1188[label="primMulInt (Pos xuu31100010) xuu6000",fontsize=16,color="burlywood",shape="box"];4778[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4778[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4778 -> 1322[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4779[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4779[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4779 -> 1323[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 1189[label="primMulInt (Neg xuu31100010) xuu6000",fontsize=16,color="burlywood",shape="box"];4780[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4780[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4780 -> 1324[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4781[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4781[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4781 -> 1325[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3186[label="xuu31100000",fontsize=16,color="green",shape="box"];3187[label="xuu60000",fontsize=16,color="green",shape="box"];3189 -> 1329[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3189[label="compare xuu5000 xuu5100",fontsize=16,color="magenta"];3189 -> 3222[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3189 -> 3223[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3188[label="xuu193 /= GT",fontsize=16,color="black",shape="triangle"];3188 -> 3224[label="",style="solid", color="black", weight=3]; 28.89/12.41 3197[label="LT <= LT",fontsize=16,color="black",shape="box"];3197 -> 3247[label="",style="solid", color="black", weight=3]; 28.89/12.41 3198[label="LT <= EQ",fontsize=16,color="black",shape="box"];3198 -> 3248[label="",style="solid", color="black", weight=3]; 28.89/12.41 3199[label="LT <= GT",fontsize=16,color="black",shape="box"];3199 -> 3249[label="",style="solid", color="black", weight=3]; 28.89/12.41 3200[label="EQ <= LT",fontsize=16,color="black",shape="box"];3200 -> 3250[label="",style="solid", color="black", weight=3]; 28.89/12.41 3201[label="EQ <= EQ",fontsize=16,color="black",shape="box"];3201 -> 3251[label="",style="solid", color="black", weight=3]; 28.89/12.41 3202[label="EQ <= GT",fontsize=16,color="black",shape="box"];3202 -> 3252[label="",style="solid", color="black", weight=3]; 28.89/12.41 3203[label="GT <= LT",fontsize=16,color="black",shape="box"];3203 -> 3253[label="",style="solid", color="black", weight=3]; 28.89/12.41 3204[label="GT <= EQ",fontsize=16,color="black",shape="box"];3204 -> 3254[label="",style="solid", color="black", weight=3]; 28.89/12.41 3205[label="GT <= GT",fontsize=16,color="black",shape="box"];3205 -> 3255[label="",style="solid", color="black", weight=3]; 28.89/12.41 3190[label="compare xuu5000 xuu5100",fontsize=16,color="burlywood",shape="triangle"];4782[label="xuu5000/xuu50000 : xuu50001",fontsize=10,color="white",style="solid",shape="box"];3190 -> 4782[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4782 -> 3225[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4783[label="xuu5000/[]",fontsize=10,color="white",style="solid",shape="box"];3190 -> 4783[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4783 -> 3226[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3191[label="compare xuu5000 xuu5100",fontsize=16,color="burlywood",shape="triangle"];4784[label="xuu5000/Integer xuu50000",fontsize=10,color="white",style="solid",shape="box"];3191 -> 4784[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4784 -> 3227[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3206[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];3206 -> 3256[label="",style="solid", color="black", weight=3]; 28.89/12.41 3207[label="Nothing <= Just xuu51000",fontsize=16,color="black",shape="box"];3207 -> 3257[label="",style="solid", color="black", weight=3]; 28.89/12.41 3208[label="Just xuu50000 <= Nothing",fontsize=16,color="black",shape="box"];3208 -> 3258[label="",style="solid", color="black", weight=3]; 28.89/12.41 3209[label="Just xuu50000 <= Just xuu51000",fontsize=16,color="black",shape="box"];3209 -> 3259[label="",style="solid", color="black", weight=3]; 28.89/12.41 3192[label="compare xuu5000 xuu5100",fontsize=16,color="burlywood",shape="triangle"];4785[label="xuu5000/()",fontsize=10,color="white",style="solid",shape="box"];3192 -> 4785[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4785 -> 3228[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3210[label="Left xuu50000 <= Left xuu51000",fontsize=16,color="black",shape="box"];3210 -> 3260[label="",style="solid", color="black", weight=3]; 28.89/12.41 3211[label="Left xuu50000 <= Right xuu51000",fontsize=16,color="black",shape="box"];3211 -> 3261[label="",style="solid", color="black", weight=3]; 28.89/12.41 3212[label="Right xuu50000 <= Left xuu51000",fontsize=16,color="black",shape="box"];3212 -> 3262[label="",style="solid", color="black", weight=3]; 28.89/12.41 3213[label="Right xuu50000 <= Right xuu51000",fontsize=16,color="black",shape="box"];3213 -> 3263[label="",style="solid", color="black", weight=3]; 28.89/12.41 3193[label="compare xuu5000 xuu5100",fontsize=16,color="black",shape="triangle"];3193 -> 3229[label="",style="solid", color="black", weight=3]; 28.89/12.41 3194[label="compare xuu5000 xuu5100",fontsize=16,color="black",shape="triangle"];3194 -> 3230[label="",style="solid", color="black", weight=3]; 28.89/12.41 3195[label="compare xuu5000 xuu5100",fontsize=16,color="black",shape="triangle"];3195 -> 3231[label="",style="solid", color="black", weight=3]; 28.89/12.41 3214[label="(xuu50000,xuu50001) <= (xuu51000,xuu51001)",fontsize=16,color="black",shape="box"];3214 -> 3264[label="",style="solid", color="black", weight=3]; 28.89/12.41 3196[label="compare xuu5000 xuu5100",fontsize=16,color="burlywood",shape="triangle"];4786[label="xuu5000/xuu50000 :% xuu50001",fontsize=10,color="white",style="solid",shape="box"];3196 -> 4786[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4786 -> 3232[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3215[label="(xuu50000,xuu50001,xuu50002) <= (xuu51000,xuu51001,xuu51002)",fontsize=16,color="black",shape="box"];3215 -> 3265[label="",style="solid", color="black", weight=3]; 28.89/12.41 3216[label="False <= False",fontsize=16,color="black",shape="box"];3216 -> 3266[label="",style="solid", color="black", weight=3]; 28.89/12.41 3217[label="False <= True",fontsize=16,color="black",shape="box"];3217 -> 3267[label="",style="solid", color="black", weight=3]; 28.89/12.41 3218[label="True <= False",fontsize=16,color="black",shape="box"];3218 -> 3268[label="",style="solid", color="black", weight=3]; 28.89/12.41 3219[label="True <= True",fontsize=16,color="black",shape="box"];3219 -> 3269[label="",style="solid", color="black", weight=3]; 28.89/12.41 3220[label="compare0 (Left xuu183) (Left xuu184) True",fontsize=16,color="black",shape="box"];3220 -> 3270[label="",style="solid", color="black", weight=3]; 28.89/12.41 3221[label="compare0 (Right xuu190) (Right xuu191) True",fontsize=16,color="black",shape="box"];3221 -> 3271[label="",style="solid", color="black", weight=3]; 28.89/12.41 2413[label="xuu17",fontsize=16,color="green",shape="box"];2414[label="xuu22",fontsize=16,color="green",shape="box"];2415[label="xuu17",fontsize=16,color="green",shape="box"];2416[label="xuu22",fontsize=16,color="green",shape="box"];2417[label="xuu17",fontsize=16,color="green",shape="box"];2418[label="xuu22",fontsize=16,color="green",shape="box"];2419[label="xuu17",fontsize=16,color="green",shape="box"];2420[label="xuu22",fontsize=16,color="green",shape="box"];2421[label="xuu17",fontsize=16,color="green",shape="box"];2422[label="xuu22",fontsize=16,color="green",shape="box"];2423[label="xuu17",fontsize=16,color="green",shape="box"];2424[label="xuu22",fontsize=16,color="green",shape="box"];2425[label="xuu17",fontsize=16,color="green",shape="box"];2426[label="xuu22",fontsize=16,color="green",shape="box"];2427[label="xuu17",fontsize=16,color="green",shape="box"];2428[label="xuu22",fontsize=16,color="green",shape="box"];2429[label="xuu17",fontsize=16,color="green",shape="box"];2430[label="xuu22",fontsize=16,color="green",shape="box"];2431[label="xuu17",fontsize=16,color="green",shape="box"];2432[label="xuu22",fontsize=16,color="green",shape="box"];2433[label="xuu17",fontsize=16,color="green",shape="box"];2434[label="xuu22",fontsize=16,color="green",shape="box"];2435[label="xuu17",fontsize=16,color="green",shape="box"];2436[label="xuu22",fontsize=16,color="green",shape="box"];2437[label="xuu17",fontsize=16,color="green",shape="box"];2438[label="xuu22",fontsize=16,color="green",shape="box"];2439[label="xuu17",fontsize=16,color="green",shape="box"];2440[label="xuu22",fontsize=16,color="green",shape="box"];1367[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu53) (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4787[label="xuu53/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4787[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4787 -> 1543[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4788[label="xuu53/FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4788[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4788 -> 1544[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 1865 -> 1864[label="",style="dashed", color="red", weight=0]; 28.89/12.41 1865[label="FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53",fontsize=16,color="magenta"];1866[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1866 -> 1888[label="",style="solid", color="black", weight=3]; 28.89/12.41 1867[label="FiniteMap.sizeFM xuu64",fontsize=16,color="burlywood",shape="triangle"];4789[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1867 -> 4789[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4789 -> 1889[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4790[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1867 -> 4790[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4790 -> 1890[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 1868 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.41 1868[label="compare xuu127 xuu126 == GT",fontsize=16,color="magenta"];1868 -> 1891[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1868 -> 1892[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1449 -> 1850[label="",style="dashed", color="red", weight=0]; 28.89/12.41 1449[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 (FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53)",fontsize=16,color="magenta"];1449 -> 1851[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1450[label="FiniteMap.mkBalBranch6MkBalBranch0 (Left xuu600) xuu61 xuu64 xuu53 xuu53 xuu64 xuu64",fontsize=16,color="burlywood",shape="box"];4791[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1450 -> 4791[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4791 -> 1552[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4792[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1450 -> 4792[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4792 -> 1553[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4374[label="FiniteMap.Branch xuu263 xuu264 (FiniteMap.mkBranchUnbox xuu266 xuu263 xuu265 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu266 xuu263 xuu265 + FiniteMap.mkBranchRight_size xuu266 xuu263 xuu265)) xuu265 xuu266",fontsize=16,color="green",shape="box"];4374 -> 4380[label="",style="dashed", color="green", weight=3]; 28.89/12.41 1438[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu45) (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4793[label="xuu45/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1438 -> 4793[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4793 -> 1555[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4794[label="xuu45/FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454",fontsize=10,color="white",style="solid",shape="box"];1438 -> 4794[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4794 -> 1556[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 1869[label="FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45",fontsize=16,color="black",shape="triangle"];1869 -> 1893[label="",style="solid", color="black", weight=3]; 28.89/12.41 1870 -> 1866[label="",style="dashed", color="red", weight=0]; 28.89/12.41 1870[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1871 -> 1867[label="",style="dashed", color="red", weight=0]; 28.89/12.41 1871[label="FiniteMap.sizeFM xuu64",fontsize=16,color="magenta"];1506 -> 1884[label="",style="dashed", color="red", weight=0]; 28.89/12.41 1506[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 (FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45)",fontsize=16,color="magenta"];1506 -> 1885[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1507[label="FiniteMap.mkBalBranch6MkBalBranch0 (Right xuu600) xuu61 xuu64 xuu45 xuu45 xuu64 xuu64",fontsize=16,color="burlywood",shape="box"];4795[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1507 -> 4795[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4795 -> 1563[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4796[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1507 -> 4796[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4796 -> 1564[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 2441[label="xuu34",fontsize=16,color="green",shape="box"];2442[label="xuu39",fontsize=16,color="green",shape="box"];2443[label="xuu34",fontsize=16,color="green",shape="box"];2444[label="xuu39",fontsize=16,color="green",shape="box"];2445[label="xuu34",fontsize=16,color="green",shape="box"];2446[label="xuu39",fontsize=16,color="green",shape="box"];2447[label="xuu34",fontsize=16,color="green",shape="box"];2448[label="xuu39",fontsize=16,color="green",shape="box"];2449[label="xuu34",fontsize=16,color="green",shape="box"];2450[label="xuu39",fontsize=16,color="green",shape="box"];2451[label="xuu34",fontsize=16,color="green",shape="box"];2452[label="xuu39",fontsize=16,color="green",shape="box"];2453[label="xuu34",fontsize=16,color="green",shape="box"];2454[label="xuu39",fontsize=16,color="green",shape="box"];2455[label="xuu34",fontsize=16,color="green",shape="box"];2456[label="xuu39",fontsize=16,color="green",shape="box"];2457[label="xuu34",fontsize=16,color="green",shape="box"];2458[label="xuu39",fontsize=16,color="green",shape="box"];2459[label="xuu34",fontsize=16,color="green",shape="box"];2460[label="xuu39",fontsize=16,color="green",shape="box"];2461[label="xuu34",fontsize=16,color="green",shape="box"];2462[label="xuu39",fontsize=16,color="green",shape="box"];2463[label="xuu34",fontsize=16,color="green",shape="box"];2464[label="xuu39",fontsize=16,color="green",shape="box"];2465[label="xuu34",fontsize=16,color="green",shape="box"];2466[label="xuu39",fontsize=16,color="green",shape="box"];2467[label="xuu34",fontsize=16,color="green",shape="box"];2468[label="xuu39",fontsize=16,color="green",shape="box"];1322[label="primMulInt (Pos xuu31100010) (Pos xuu60000)",fontsize=16,color="black",shape="box"];1322 -> 1455[label="",style="solid", color="black", weight=3]; 28.89/12.41 1323[label="primMulInt (Pos xuu31100010) (Neg xuu60000)",fontsize=16,color="black",shape="box"];1323 -> 1456[label="",style="solid", color="black", weight=3]; 28.89/12.41 1324[label="primMulInt (Neg xuu31100010) (Pos xuu60000)",fontsize=16,color="black",shape="box"];1324 -> 1457[label="",style="solid", color="black", weight=3]; 28.89/12.41 1325[label="primMulInt (Neg xuu31100010) (Neg xuu60000)",fontsize=16,color="black",shape="box"];1325 -> 1458[label="",style="solid", color="black", weight=3]; 28.89/12.41 3222[label="xuu5000",fontsize=16,color="green",shape="box"];3223[label="xuu5100",fontsize=16,color="green",shape="box"];1329[label="compare xuu50 xuu51",fontsize=16,color="black",shape="triangle"];1329 -> 1459[label="",style="solid", color="black", weight=3]; 28.89/12.41 3224 -> 3272[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3224[label="not (xuu193 == GT)",fontsize=16,color="magenta"];3224 -> 3273[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3247[label="True",fontsize=16,color="green",shape="box"];3248[label="True",fontsize=16,color="green",shape="box"];3249[label="True",fontsize=16,color="green",shape="box"];3250[label="False",fontsize=16,color="green",shape="box"];3251[label="True",fontsize=16,color="green",shape="box"];3252[label="True",fontsize=16,color="green",shape="box"];3253[label="False",fontsize=16,color="green",shape="box"];3254[label="False",fontsize=16,color="green",shape="box"];3255[label="True",fontsize=16,color="green",shape="box"];3225[label="compare (xuu50000 : xuu50001) xuu5100",fontsize=16,color="burlywood",shape="box"];4797[label="xuu5100/xuu51000 : xuu51001",fontsize=10,color="white",style="solid",shape="box"];3225 -> 4797[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4797 -> 3274[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4798[label="xuu5100/[]",fontsize=10,color="white",style="solid",shape="box"];3225 -> 4798[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4798 -> 3275[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3226[label="compare [] xuu5100",fontsize=16,color="burlywood",shape="box"];4799[label="xuu5100/xuu51000 : xuu51001",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4799[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4799 -> 3276[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4800[label="xuu5100/[]",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4800[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4800 -> 3277[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3227[label="compare (Integer xuu50000) xuu5100",fontsize=16,color="burlywood",shape="box"];4801[label="xuu5100/Integer xuu51000",fontsize=10,color="white",style="solid",shape="box"];3227 -> 4801[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4801 -> 3278[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3256[label="True",fontsize=16,color="green",shape="box"];3257[label="True",fontsize=16,color="green",shape="box"];3258[label="False",fontsize=16,color="green",shape="box"];3259[label="xuu50000 <= xuu51000",fontsize=16,color="blue",shape="box"];4802[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3259 -> 4802[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4802 -> 3279[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4803[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3259 -> 4803[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4803 -> 3280[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4804[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3259 -> 4804[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4804 -> 3281[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4805[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3259 -> 4805[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4805 -> 3282[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4806[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3259 -> 4806[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4806 -> 3283[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4807[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3259 -> 4807[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4807 -> 3284[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4808[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3259 -> 4808[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4808 -> 3285[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4809[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3259 -> 4809[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4809 -> 3286[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4810[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3259 -> 4810[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4810 -> 3287[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4811[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3259 -> 4811[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4811 -> 3288[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4812[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3259 -> 4812[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4812 -> 3289[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4813[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3259 -> 4813[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4813 -> 3290[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4814[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3259 -> 4814[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4814 -> 3291[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4815[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3259 -> 4815[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4815 -> 3292[label="",style="solid", color="blue", weight=3]; 28.89/12.41 3228[label="compare () xuu5100",fontsize=16,color="burlywood",shape="box"];4816[label="xuu5100/()",fontsize=10,color="white",style="solid",shape="box"];3228 -> 4816[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4816 -> 3293[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3260[label="xuu50000 <= xuu51000",fontsize=16,color="blue",shape="box"];4817[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3260 -> 4817[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4817 -> 3294[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4818[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3260 -> 4818[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4818 -> 3295[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4819[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3260 -> 4819[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4819 -> 3296[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4820[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3260 -> 4820[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4820 -> 3297[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4821[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3260 -> 4821[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4821 -> 3298[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4822[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3260 -> 4822[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4822 -> 3299[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4823[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3260 -> 4823[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4823 -> 3300[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4824[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3260 -> 4824[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4824 -> 3301[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4825[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3260 -> 4825[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4825 -> 3302[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4826[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3260 -> 4826[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4826 -> 3303[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4827[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3260 -> 4827[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4827 -> 3304[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4828[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3260 -> 4828[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4828 -> 3305[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4829[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3260 -> 4829[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4829 -> 3306[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4830[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3260 -> 4830[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4830 -> 3307[label="",style="solid", color="blue", weight=3]; 28.89/12.41 3261[label="True",fontsize=16,color="green",shape="box"];3262[label="False",fontsize=16,color="green",shape="box"];3263[label="xuu50000 <= xuu51000",fontsize=16,color="blue",shape="box"];4831[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3263 -> 4831[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4831 -> 3308[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4832[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3263 -> 4832[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4832 -> 3309[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4833[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3263 -> 4833[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4833 -> 3310[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4834[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3263 -> 4834[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4834 -> 3311[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4835[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3263 -> 4835[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4835 -> 3312[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4836[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3263 -> 4836[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4836 -> 3313[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4837[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3263 -> 4837[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4837 -> 3314[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4838[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3263 -> 4838[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4838 -> 3315[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4839[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3263 -> 4839[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4839 -> 3316[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4840[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3263 -> 4840[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4840 -> 3317[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4841[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3263 -> 4841[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4841 -> 3318[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4842[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3263 -> 4842[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4842 -> 3319[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4843[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3263 -> 4843[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4843 -> 3320[label="",style="solid", color="blue", weight=3]; 28.89/12.41 4844[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3263 -> 4844[label="",style="solid", color="blue", weight=9]; 28.89/12.41 4844 -> 3321[label="",style="solid", color="blue", weight=3]; 28.89/12.41 3229[label="primCmpDouble xuu5000 xuu5100",fontsize=16,color="burlywood",shape="box"];4845[label="xuu5000/Double xuu50000 xuu50001",fontsize=10,color="white",style="solid",shape="box"];3229 -> 4845[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4845 -> 3322[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3230[label="primCmpFloat xuu5000 xuu5100",fontsize=16,color="burlywood",shape="box"];4846[label="xuu5000/Float xuu50000 xuu50001",fontsize=10,color="white",style="solid",shape="box"];3230 -> 4846[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4846 -> 3323[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3231[label="primCmpChar xuu5000 xuu5100",fontsize=16,color="burlywood",shape="box"];4847[label="xuu5000/Char xuu50000",fontsize=10,color="white",style="solid",shape="box"];3231 -> 4847[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4847 -> 3324[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3264 -> 3432[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3264[label="xuu50000 < xuu51000 || xuu50000 == xuu51000 && xuu50001 <= xuu51001",fontsize=16,color="magenta"];3264 -> 3433[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3264 -> 3434[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3232[label="compare (xuu50000 :% xuu50001) xuu5100",fontsize=16,color="burlywood",shape="box"];4848[label="xuu5100/xuu51000 :% xuu51001",fontsize=10,color="white",style="solid",shape="box"];3232 -> 4848[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4848 -> 3330[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3265 -> 3432[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3265[label="xuu50000 < xuu51000 || xuu50000 == xuu51000 && (xuu50001 < xuu51001 || xuu50001 == xuu51001 && xuu50002 <= xuu51002)",fontsize=16,color="magenta"];3265 -> 3435[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3265 -> 3436[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3266[label="True",fontsize=16,color="green",shape="box"];3267[label="True",fontsize=16,color="green",shape="box"];3268[label="False",fontsize=16,color="green",shape="box"];3269[label="True",fontsize=16,color="green",shape="box"];3270[label="GT",fontsize=16,color="green",shape="box"];3271[label="GT",fontsize=16,color="green",shape="box"];1543[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 FiniteMap.EmptyFM)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1543 -> 1670[label="",style="solid", color="black", weight=3]; 28.89/12.41 1544[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534)) (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534))) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1544 -> 1671[label="",style="solid", color="black", weight=3]; 28.89/12.41 1864[label="FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53",fontsize=16,color="black",shape="triangle"];1864 -> 1876[label="",style="solid", color="black", weight=3]; 28.89/12.41 1888[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1889[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1889 -> 1916[label="",style="solid", color="black", weight=3]; 28.89/12.41 1890[label="FiniteMap.sizeFM (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1890 -> 1917[label="",style="solid", color="black", weight=3]; 28.89/12.41 1891[label="GT",fontsize=16,color="green",shape="box"];1892 -> 1329[label="",style="dashed", color="red", weight=0]; 28.89/12.41 1892[label="compare xuu127 xuu126",fontsize=16,color="magenta"];1892 -> 1918[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1892 -> 1919[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1851 -> 1854[label="",style="dashed", color="red", weight=0]; 28.89/12.41 1851[label="FiniteMap.mkBalBranch6Size_l (Left xuu600) xuu61 xuu64 xuu53 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53",fontsize=16,color="magenta"];1851 -> 1863[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1851 -> 1864[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1850[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 xuu124",fontsize=16,color="burlywood",shape="triangle"];4849[label="xuu124/False",fontsize=10,color="white",style="solid",shape="box"];1850 -> 4849[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4849 -> 1872[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4850[label="xuu124/True",fontsize=10,color="white",style="solid",shape="box"];1850 -> 4850[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4850 -> 1873[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 1552[label="FiniteMap.mkBalBranch6MkBalBranch0 (Left xuu600) xuu61 FiniteMap.EmptyFM xuu53 xuu53 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1552 -> 1679[label="",style="solid", color="black", weight=3]; 28.89/12.41 1553[label="FiniteMap.mkBalBranch6MkBalBranch0 (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1553 -> 1680[label="",style="solid", color="black", weight=3]; 28.89/12.41 4380[label="FiniteMap.mkBranchUnbox xuu266 xuu263 xuu265 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu266 xuu263 xuu265 + FiniteMap.mkBranchRight_size xuu266 xuu263 xuu265)",fontsize=16,color="black",shape="box"];4380 -> 4381[label="",style="solid", color="black", weight=3]; 28.89/12.41 1555[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 FiniteMap.EmptyFM)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1555 -> 1682[label="",style="solid", color="black", weight=3]; 28.89/12.41 1556[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454)) (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454))) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1556 -> 1683[label="",style="solid", color="black", weight=3]; 28.89/12.41 1893 -> 1867[label="",style="dashed", color="red", weight=0]; 28.89/12.41 1893[label="FiniteMap.sizeFM xuu45",fontsize=16,color="magenta"];1893 -> 1920[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1885 -> 1854[label="",style="dashed", color="red", weight=0]; 28.89/12.41 1885[label="FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45",fontsize=16,color="magenta"];1885 -> 1894[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1885 -> 1895[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 1884[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 xuu130",fontsize=16,color="burlywood",shape="triangle"];4851[label="xuu130/False",fontsize=10,color="white",style="solid",shape="box"];1884 -> 4851[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4851 -> 1896[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4852[label="xuu130/True",fontsize=10,color="white",style="solid",shape="box"];1884 -> 4852[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4852 -> 1897[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 1563[label="FiniteMap.mkBalBranch6MkBalBranch0 (Right xuu600) xuu61 FiniteMap.EmptyFM xuu45 xuu45 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1563 -> 1690[label="",style="solid", color="black", weight=3]; 28.89/12.41 1564[label="FiniteMap.mkBalBranch6MkBalBranch0 (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1564 -> 1691[label="",style="solid", color="black", weight=3]; 28.89/12.41 1455[label="Pos (primMulNat xuu31100010 xuu60000)",fontsize=16,color="green",shape="box"];1455 -> 1566[label="",style="dashed", color="green", weight=3]; 28.89/12.41 1456[label="Neg (primMulNat xuu31100010 xuu60000)",fontsize=16,color="green",shape="box"];1456 -> 1567[label="",style="dashed", color="green", weight=3]; 28.89/12.41 1457[label="Neg (primMulNat xuu31100010 xuu60000)",fontsize=16,color="green",shape="box"];1457 -> 1568[label="",style="dashed", color="green", weight=3]; 28.89/12.41 1458[label="Pos (primMulNat xuu31100010 xuu60000)",fontsize=16,color="green",shape="box"];1458 -> 1569[label="",style="dashed", color="green", weight=3]; 28.89/12.41 1459[label="primCmpInt xuu50 xuu51",fontsize=16,color="burlywood",shape="triangle"];4853[label="xuu50/Pos xuu500",fontsize=10,color="white",style="solid",shape="box"];1459 -> 4853[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4853 -> 1570[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4854[label="xuu50/Neg xuu500",fontsize=10,color="white",style="solid",shape="box"];1459 -> 4854[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4854 -> 1571[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3273 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3273[label="xuu193 == GT",fontsize=16,color="magenta"];3273 -> 3331[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3273 -> 3332[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3272[label="not xuu203",fontsize=16,color="burlywood",shape="triangle"];4855[label="xuu203/False",fontsize=10,color="white",style="solid",shape="box"];3272 -> 4855[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4855 -> 3333[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 4856[label="xuu203/True",fontsize=10,color="white",style="solid",shape="box"];3272 -> 4856[label="",style="solid", color="burlywood", weight=9]; 28.89/12.41 4856 -> 3334[label="",style="solid", color="burlywood", weight=3]; 28.89/12.41 3274[label="compare (xuu50000 : xuu50001) (xuu51000 : xuu51001)",fontsize=16,color="black",shape="box"];3274 -> 3335[label="",style="solid", color="black", weight=3]; 28.89/12.41 3275[label="compare (xuu50000 : xuu50001) []",fontsize=16,color="black",shape="box"];3275 -> 3336[label="",style="solid", color="black", weight=3]; 28.89/12.41 3276[label="compare [] (xuu51000 : xuu51001)",fontsize=16,color="black",shape="box"];3276 -> 3337[label="",style="solid", color="black", weight=3]; 28.89/12.41 3277[label="compare [] []",fontsize=16,color="black",shape="box"];3277 -> 3338[label="",style="solid", color="black", weight=3]; 28.89/12.41 3278[label="compare (Integer xuu50000) (Integer xuu51000)",fontsize=16,color="black",shape="box"];3278 -> 3339[label="",style="solid", color="black", weight=3]; 28.89/12.41 3279 -> 2992[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3279[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3279 -> 3340[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3279 -> 3341[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3280 -> 2993[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3280[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3280 -> 3342[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3280 -> 3343[label="",style="dashed", color="magenta", weight=3]; 28.89/12.41 3281 -> 2994[label="",style="dashed", color="red", weight=0]; 28.89/12.41 3281[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3281 -> 3344[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3281 -> 3345[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3282 -> 2995[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3282[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3282 -> 3346[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3282 -> 3347[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3283 -> 2996[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3283[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3283 -> 3348[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3283 -> 3349[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3284 -> 2997[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3284[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3284 -> 3350[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3284 -> 3351[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3285 -> 2998[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3285[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3285 -> 3352[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3285 -> 3353[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3286 -> 2999[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3286[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3286 -> 3354[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3286 -> 3355[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3287 -> 3000[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3287[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3287 -> 3356[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3287 -> 3357[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3288 -> 3001[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3288[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3288 -> 3358[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3288 -> 3359[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3289 -> 3002[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3289[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3289 -> 3360[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3289 -> 3361[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3290 -> 3003[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3290[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3290 -> 3362[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3290 -> 3363[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3291 -> 3004[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3291[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3291 -> 3364[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3291 -> 3365[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3292 -> 3005[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3292[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3292 -> 3366[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3292 -> 3367[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3293[label="compare () ()",fontsize=16,color="black",shape="box"];3293 -> 3368[label="",style="solid", color="black", weight=3]; 28.89/12.42 3294 -> 2992[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3294[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3294 -> 3369[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3294 -> 3370[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3295 -> 2993[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3295[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3295 -> 3371[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3295 -> 3372[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3296 -> 2994[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3296[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3296 -> 3373[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3296 -> 3374[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3297 -> 2995[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3297[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3297 -> 3375[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3297 -> 3376[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3298 -> 2996[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3298[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3298 -> 3377[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3298 -> 3378[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3299 -> 2997[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3299[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3299 -> 3379[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3299 -> 3380[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3300 -> 2998[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3300[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3300 -> 3381[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3300 -> 3382[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3301 -> 2999[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3301[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3301 -> 3383[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3301 -> 3384[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3302 -> 3000[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3302[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3302 -> 3385[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3302 -> 3386[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3303 -> 3001[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3303[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3303 -> 3387[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3303 -> 3388[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3304 -> 3002[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3304[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3304 -> 3389[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3304 -> 3390[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3305 -> 3003[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3305[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3305 -> 3391[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3305 -> 3392[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3306 -> 3004[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3306[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3306 -> 3393[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3306 -> 3394[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3307 -> 3005[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3307[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3307 -> 3395[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3307 -> 3396[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3308 -> 2992[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3308[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3308 -> 3397[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3308 -> 3398[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3309 -> 2993[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3309[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3309 -> 3399[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3309 -> 3400[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3310 -> 2994[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3310[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3310 -> 3401[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3310 -> 3402[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3311 -> 2995[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3311[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3311 -> 3403[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3311 -> 3404[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3312 -> 2996[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3312[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3312 -> 3405[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3312 -> 3406[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3313 -> 2997[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3313[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3313 -> 3407[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3313 -> 3408[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3314 -> 2998[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3314[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3314 -> 3409[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3314 -> 3410[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3315 -> 2999[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3315[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3315 -> 3411[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3315 -> 3412[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3316 -> 3000[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3316[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3316 -> 3413[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3316 -> 3414[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3317 -> 3001[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3317[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3317 -> 3415[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3317 -> 3416[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3318 -> 3002[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3318[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3318 -> 3417[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3318 -> 3418[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3319 -> 3003[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3319[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3319 -> 3419[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3319 -> 3420[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3320 -> 3004[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3320[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3320 -> 3421[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3320 -> 3422[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3321 -> 3005[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3321[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];3321 -> 3423[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3321 -> 3424[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3322[label="primCmpDouble (Double xuu50000 xuu50001) xuu5100",fontsize=16,color="burlywood",shape="box"];4857[label="xuu50001/Pos xuu500010",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4857[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4857 -> 3425[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4858[label="xuu50001/Neg xuu500010",fontsize=10,color="white",style="solid",shape="box"];3322 -> 4858[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4858 -> 3426[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3323[label="primCmpFloat (Float xuu50000 xuu50001) xuu5100",fontsize=16,color="burlywood",shape="box"];4859[label="xuu50001/Pos xuu500010",fontsize=10,color="white",style="solid",shape="box"];3323 -> 4859[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4859 -> 3427[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4860[label="xuu50001/Neg xuu500010",fontsize=10,color="white",style="solid",shape="box"];3323 -> 4860[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4860 -> 3428[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3324[label="primCmpChar (Char xuu50000) xuu5100",fontsize=16,color="burlywood",shape="box"];4861[label="xuu5100/Char xuu51000",fontsize=10,color="white",style="solid",shape="box"];3324 -> 4861[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4861 -> 3429[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3433 -> 2658[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3433[label="xuu50000 == xuu51000 && xuu50001 <= xuu51001",fontsize=16,color="magenta"];3433 -> 3439[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3433 -> 3440[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3434[label="xuu50000 < xuu51000",fontsize=16,color="blue",shape="box"];4862[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3434 -> 4862[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4862 -> 3441[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4863[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3434 -> 4863[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4863 -> 3442[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4864[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3434 -> 4864[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4864 -> 3443[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4865[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3434 -> 4865[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4865 -> 3444[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4866[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3434 -> 4866[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4866 -> 3445[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4867[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3434 -> 4867[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4867 -> 3446[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4868[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3434 -> 4868[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4868 -> 3447[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4869[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3434 -> 4869[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4869 -> 3448[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4870[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3434 -> 4870[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4870 -> 3449[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4871[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3434 -> 4871[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4871 -> 3450[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4872[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3434 -> 4872[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4872 -> 3451[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4873[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3434 -> 4873[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4873 -> 3452[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4874[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3434 -> 4874[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4874 -> 3453[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4875[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3434 -> 4875[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4875 -> 3454[label="",style="solid", color="blue", weight=3]; 28.89/12.42 3432[label="xuu208 || xuu209",fontsize=16,color="burlywood",shape="triangle"];4876[label="xuu208/False",fontsize=10,color="white",style="solid",shape="box"];3432 -> 4876[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4876 -> 3455[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4877[label="xuu208/True",fontsize=10,color="white",style="solid",shape="box"];3432 -> 4877[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4877 -> 3456[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3330[label="compare (xuu50000 :% xuu50001) (xuu51000 :% xuu51001)",fontsize=16,color="black",shape="box"];3330 -> 3457[label="",style="solid", color="black", weight=3]; 28.89/12.42 3435 -> 2658[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3435[label="xuu50000 == xuu51000 && (xuu50001 < xuu51001 || xuu50001 == xuu51001 && xuu50002 <= xuu51002)",fontsize=16,color="magenta"];3435 -> 3458[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3435 -> 3459[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3436[label="xuu50000 < xuu51000",fontsize=16,color="blue",shape="box"];4878[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 4878[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4878 -> 3460[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4879[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 4879[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4879 -> 3461[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4880[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 4880[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4880 -> 3462[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4881[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 4881[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4881 -> 3463[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4882[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 4882[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4882 -> 3464[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4883[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 4883[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4883 -> 3465[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4884[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 4884[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4884 -> 3466[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4885[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 4885[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4885 -> 3467[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4886[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 4886[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4886 -> 3468[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4887[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 4887[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4887 -> 3469[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4888[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 4888[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4888 -> 3470[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4889[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 4889[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4889 -> 3471[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4890[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 4890[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4890 -> 3472[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4891[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3436 -> 4891[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4891 -> 3473[label="",style="solid", color="blue", weight=3]; 28.89/12.42 1670 -> 1459[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1670[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 FiniteMap.EmptyFM)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1670 -> 1843[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1670 -> 1844[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1671 -> 1459[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1671[label="primCmpInt (primPlusInt xuu532 (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534))) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1671 -> 1845[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1671 -> 1846[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1876 -> 1867[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1876[label="FiniteMap.sizeFM xuu53",fontsize=16,color="magenta"];1876 -> 1921[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1916[label="Pos Zero",fontsize=16,color="green",shape="box"];1917[label="xuu642",fontsize=16,color="green",shape="box"];1918[label="xuu127",fontsize=16,color="green",shape="box"];1919[label="xuu126",fontsize=16,color="green",shape="box"];1863 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1863[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53",fontsize=16,color="magenta"];1863 -> 1874[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1863 -> 1875[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1872[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 False",fontsize=16,color="black",shape="box"];1872 -> 1898[label="",style="solid", color="black", weight=3]; 28.89/12.42 1873[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 True",fontsize=16,color="black",shape="box"];1873 -> 1899[label="",style="solid", color="black", weight=3]; 28.89/12.42 1679[label="error []",fontsize=16,color="red",shape="box"];1680[label="FiniteMap.mkBalBranch6MkBalBranch02 (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1680 -> 1877[label="",style="solid", color="black", weight=3]; 28.89/12.42 4381[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu266 xuu263 xuu265 + FiniteMap.mkBranchRight_size xuu266 xuu263 xuu265",fontsize=16,color="black",shape="box"];4381 -> 4382[label="",style="solid", color="black", weight=3]; 28.89/12.42 1682 -> 1459[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1682[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 FiniteMap.EmptyFM)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1682 -> 1879[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1682 -> 1880[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1683 -> 1459[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1683[label="primCmpInt (primPlusInt xuu452 (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454))) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1683 -> 1881[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1683 -> 1882[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1920[label="xuu45",fontsize=16,color="green",shape="box"];1894 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1894[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45",fontsize=16,color="magenta"];1894 -> 1922[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1894 -> 1923[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1895 -> 1869[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1895[label="FiniteMap.mkBalBranch6Size_l (Right xuu600) xuu61 xuu64 xuu45",fontsize=16,color="magenta"];1896[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 False",fontsize=16,color="black",shape="box"];1896 -> 1924[label="",style="solid", color="black", weight=3]; 28.89/12.42 1897[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 True",fontsize=16,color="black",shape="box"];1897 -> 1925[label="",style="solid", color="black", weight=3]; 28.89/12.42 1690[label="error []",fontsize=16,color="red",shape="box"];1691[label="FiniteMap.mkBalBranch6MkBalBranch02 (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1691 -> 1900[label="",style="solid", color="black", weight=3]; 28.89/12.42 1566[label="primMulNat xuu31100010 xuu60000",fontsize=16,color="burlywood",shape="triangle"];4892[label="xuu31100010/Succ xuu311000100",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4892[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4892 -> 1693[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4893[label="xuu31100010/Zero",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4893[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4893 -> 1694[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 1567 -> 1566[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1567[label="primMulNat xuu31100010 xuu60000",fontsize=16,color="magenta"];1567 -> 1695[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1568 -> 1566[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1568[label="primMulNat xuu31100010 xuu60000",fontsize=16,color="magenta"];1568 -> 1696[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1569 -> 1566[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1569[label="primMulNat xuu31100010 xuu60000",fontsize=16,color="magenta"];1569 -> 1697[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1569 -> 1698[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1570[label="primCmpInt (Pos xuu500) xuu51",fontsize=16,color="burlywood",shape="box"];4894[label="xuu500/Succ xuu5000",fontsize=10,color="white",style="solid",shape="box"];1570 -> 4894[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4894 -> 1699[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4895[label="xuu500/Zero",fontsize=10,color="white",style="solid",shape="box"];1570 -> 4895[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4895 -> 1700[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 1571[label="primCmpInt (Neg xuu500) xuu51",fontsize=16,color="burlywood",shape="box"];4896[label="xuu500/Succ xuu5000",fontsize=10,color="white",style="solid",shape="box"];1571 -> 4896[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4896 -> 1701[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4897[label="xuu500/Zero",fontsize=10,color="white",style="solid",shape="box"];1571 -> 4897[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4897 -> 1702[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3331[label="GT",fontsize=16,color="green",shape="box"];3332[label="xuu193",fontsize=16,color="green",shape="box"];3333[label="not False",fontsize=16,color="black",shape="box"];3333 -> 3474[label="",style="solid", color="black", weight=3]; 28.89/12.42 3334[label="not True",fontsize=16,color="black",shape="box"];3334 -> 3475[label="",style="solid", color="black", weight=3]; 28.89/12.42 3335 -> 3476[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3335[label="primCompAux xuu50000 xuu51000 (compare xuu50001 xuu51001)",fontsize=16,color="magenta"];3335 -> 3477[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3336[label="GT",fontsize=16,color="green",shape="box"];3337[label="LT",fontsize=16,color="green",shape="box"];3338[label="EQ",fontsize=16,color="green",shape="box"];3339 -> 1459[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3339[label="primCmpInt xuu50000 xuu51000",fontsize=16,color="magenta"];3339 -> 3478[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3339 -> 3479[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3340[label="xuu50000",fontsize=16,color="green",shape="box"];3341[label="xuu51000",fontsize=16,color="green",shape="box"];3342[label="xuu50000",fontsize=16,color="green",shape="box"];3343[label="xuu51000",fontsize=16,color="green",shape="box"];3344[label="xuu50000",fontsize=16,color="green",shape="box"];3345[label="xuu51000",fontsize=16,color="green",shape="box"];3346[label="xuu50000",fontsize=16,color="green",shape="box"];3347[label="xuu51000",fontsize=16,color="green",shape="box"];3348[label="xuu50000",fontsize=16,color="green",shape="box"];3349[label="xuu51000",fontsize=16,color="green",shape="box"];3350[label="xuu50000",fontsize=16,color="green",shape="box"];3351[label="xuu51000",fontsize=16,color="green",shape="box"];3352[label="xuu50000",fontsize=16,color="green",shape="box"];3353[label="xuu51000",fontsize=16,color="green",shape="box"];3354[label="xuu50000",fontsize=16,color="green",shape="box"];3355[label="xuu51000",fontsize=16,color="green",shape="box"];3356[label="xuu50000",fontsize=16,color="green",shape="box"];3357[label="xuu51000",fontsize=16,color="green",shape="box"];3358[label="xuu50000",fontsize=16,color="green",shape="box"];3359[label="xuu51000",fontsize=16,color="green",shape="box"];3360[label="xuu50000",fontsize=16,color="green",shape="box"];3361[label="xuu51000",fontsize=16,color="green",shape="box"];3362[label="xuu50000",fontsize=16,color="green",shape="box"];3363[label="xuu51000",fontsize=16,color="green",shape="box"];3364[label="xuu50000",fontsize=16,color="green",shape="box"];3365[label="xuu51000",fontsize=16,color="green",shape="box"];3366[label="xuu50000",fontsize=16,color="green",shape="box"];3367[label="xuu51000",fontsize=16,color="green",shape="box"];3368[label="EQ",fontsize=16,color="green",shape="box"];3369[label="xuu50000",fontsize=16,color="green",shape="box"];3370[label="xuu51000",fontsize=16,color="green",shape="box"];3371[label="xuu50000",fontsize=16,color="green",shape="box"];3372[label="xuu51000",fontsize=16,color="green",shape="box"];3373[label="xuu50000",fontsize=16,color="green",shape="box"];3374[label="xuu51000",fontsize=16,color="green",shape="box"];3375[label="xuu50000",fontsize=16,color="green",shape="box"];3376[label="xuu51000",fontsize=16,color="green",shape="box"];3377[label="xuu50000",fontsize=16,color="green",shape="box"];3378[label="xuu51000",fontsize=16,color="green",shape="box"];3379[label="xuu50000",fontsize=16,color="green",shape="box"];3380[label="xuu51000",fontsize=16,color="green",shape="box"];3381[label="xuu50000",fontsize=16,color="green",shape="box"];3382[label="xuu51000",fontsize=16,color="green",shape="box"];3383[label="xuu50000",fontsize=16,color="green",shape="box"];3384[label="xuu51000",fontsize=16,color="green",shape="box"];3385[label="xuu50000",fontsize=16,color="green",shape="box"];3386[label="xuu51000",fontsize=16,color="green",shape="box"];3387[label="xuu50000",fontsize=16,color="green",shape="box"];3388[label="xuu51000",fontsize=16,color="green",shape="box"];3389[label="xuu50000",fontsize=16,color="green",shape="box"];3390[label="xuu51000",fontsize=16,color="green",shape="box"];3391[label="xuu50000",fontsize=16,color="green",shape="box"];3392[label="xuu51000",fontsize=16,color="green",shape="box"];3393[label="xuu50000",fontsize=16,color="green",shape="box"];3394[label="xuu51000",fontsize=16,color="green",shape="box"];3395[label="xuu50000",fontsize=16,color="green",shape="box"];3396[label="xuu51000",fontsize=16,color="green",shape="box"];3397[label="xuu50000",fontsize=16,color="green",shape="box"];3398[label="xuu51000",fontsize=16,color="green",shape="box"];3399[label="xuu50000",fontsize=16,color="green",shape="box"];3400[label="xuu51000",fontsize=16,color="green",shape="box"];3401[label="xuu50000",fontsize=16,color="green",shape="box"];3402[label="xuu51000",fontsize=16,color="green",shape="box"];3403[label="xuu50000",fontsize=16,color="green",shape="box"];3404[label="xuu51000",fontsize=16,color="green",shape="box"];3405[label="xuu50000",fontsize=16,color="green",shape="box"];3406[label="xuu51000",fontsize=16,color="green",shape="box"];3407[label="xuu50000",fontsize=16,color="green",shape="box"];3408[label="xuu51000",fontsize=16,color="green",shape="box"];3409[label="xuu50000",fontsize=16,color="green",shape="box"];3410[label="xuu51000",fontsize=16,color="green",shape="box"];3411[label="xuu50000",fontsize=16,color="green",shape="box"];3412[label="xuu51000",fontsize=16,color="green",shape="box"];3413[label="xuu50000",fontsize=16,color="green",shape="box"];3414[label="xuu51000",fontsize=16,color="green",shape="box"];3415[label="xuu50000",fontsize=16,color="green",shape="box"];3416[label="xuu51000",fontsize=16,color="green",shape="box"];3417[label="xuu50000",fontsize=16,color="green",shape="box"];3418[label="xuu51000",fontsize=16,color="green",shape="box"];3419[label="xuu50000",fontsize=16,color="green",shape="box"];3420[label="xuu51000",fontsize=16,color="green",shape="box"];3421[label="xuu50000",fontsize=16,color="green",shape="box"];3422[label="xuu51000",fontsize=16,color="green",shape="box"];3423[label="xuu50000",fontsize=16,color="green",shape="box"];3424[label="xuu51000",fontsize=16,color="green",shape="box"];3425[label="primCmpDouble (Double xuu50000 (Pos xuu500010)) xuu5100",fontsize=16,color="burlywood",shape="box"];4898[label="xuu5100/Double xuu51000 xuu51001",fontsize=10,color="white",style="solid",shape="box"];3425 -> 4898[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4898 -> 3480[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3426[label="primCmpDouble (Double xuu50000 (Neg xuu500010)) xuu5100",fontsize=16,color="burlywood",shape="box"];4899[label="xuu5100/Double xuu51000 xuu51001",fontsize=10,color="white",style="solid",shape="box"];3426 -> 4899[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4899 -> 3481[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3427[label="primCmpFloat (Float xuu50000 (Pos xuu500010)) xuu5100",fontsize=16,color="burlywood",shape="box"];4900[label="xuu5100/Float xuu51000 xuu51001",fontsize=10,color="white",style="solid",shape="box"];3427 -> 4900[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4900 -> 3482[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3428[label="primCmpFloat (Float xuu50000 (Neg xuu500010)) xuu5100",fontsize=16,color="burlywood",shape="box"];4901[label="xuu5100/Float xuu51000 xuu51001",fontsize=10,color="white",style="solid",shape="box"];3428 -> 4901[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4901 -> 3483[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3429[label="primCmpChar (Char xuu50000) (Char xuu51000)",fontsize=16,color="black",shape="box"];3429 -> 3484[label="",style="solid", color="black", weight=3]; 28.89/12.42 3439[label="xuu50001 <= xuu51001",fontsize=16,color="blue",shape="box"];4902[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3439 -> 4902[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4902 -> 3485[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4903[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3439 -> 4903[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4903 -> 3486[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4904[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3439 -> 4904[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4904 -> 3487[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4905[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3439 -> 4905[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4905 -> 3488[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4906[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3439 -> 4906[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4906 -> 3489[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4907[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3439 -> 4907[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4907 -> 3490[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4908[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3439 -> 4908[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4908 -> 3491[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4909[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3439 -> 4909[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4909 -> 3492[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4910[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3439 -> 4910[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4910 -> 3493[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4911[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3439 -> 4911[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4911 -> 3494[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4912[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3439 -> 4912[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4912 -> 3495[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4913[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3439 -> 4913[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4913 -> 3496[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4914[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3439 -> 4914[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4914 -> 3497[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4915[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3439 -> 4915[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4915 -> 3498[label="",style="solid", color="blue", weight=3]; 28.89/12.42 3440[label="xuu50000 == xuu51000",fontsize=16,color="blue",shape="box"];4916[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4916[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4916 -> 3499[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4917[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4917[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4917 -> 3500[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4918[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4918[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4918 -> 3501[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4919[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4919[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4919 -> 3502[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4920[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4920[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4920 -> 3503[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4921[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4921[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4921 -> 3504[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4922[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4922[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4922 -> 3505[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4923[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4923[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4923 -> 3506[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4924[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4924[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4924 -> 3507[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4925[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4925[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4925 -> 3508[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4926[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4926[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4926 -> 3509[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4927[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4927[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4927 -> 3510[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4928[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4928[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4928 -> 3511[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4929[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4929[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4929 -> 3512[label="",style="solid", color="blue", weight=3]; 28.89/12.42 3441 -> 1508[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3441[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3441 -> 3513[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3441 -> 3514[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3442[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3442 -> 3515[label="",style="solid", color="black", weight=3]; 28.89/12.42 3443[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3443 -> 3516[label="",style="solid", color="black", weight=3]; 28.89/12.42 3444[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3444 -> 3517[label="",style="solid", color="black", weight=3]; 28.89/12.42 3445[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3445 -> 3518[label="",style="solid", color="black", weight=3]; 28.89/12.42 3446[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3446 -> 3519[label="",style="solid", color="black", weight=3]; 28.89/12.42 3447[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3447 -> 3520[label="",style="solid", color="black", weight=3]; 28.89/12.42 3448[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3448 -> 3521[label="",style="solid", color="black", weight=3]; 28.89/12.42 3449[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3449 -> 3522[label="",style="solid", color="black", weight=3]; 28.89/12.42 3450[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3450 -> 3523[label="",style="solid", color="black", weight=3]; 28.89/12.42 3451[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3451 -> 3524[label="",style="solid", color="black", weight=3]; 28.89/12.42 3452[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3452 -> 3525[label="",style="solid", color="black", weight=3]; 28.89/12.42 3453[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3453 -> 3526[label="",style="solid", color="black", weight=3]; 28.89/12.42 3454[label="xuu50000 < xuu51000",fontsize=16,color="black",shape="triangle"];3454 -> 3527[label="",style="solid", color="black", weight=3]; 28.89/12.42 3455[label="False || xuu209",fontsize=16,color="black",shape="box"];3455 -> 3528[label="",style="solid", color="black", weight=3]; 28.89/12.42 3456[label="True || xuu209",fontsize=16,color="black",shape="box"];3456 -> 3529[label="",style="solid", color="black", weight=3]; 28.89/12.42 3457[label="compare (xuu50000 * xuu51001) (xuu51000 * xuu50001)",fontsize=16,color="blue",shape="box"];4930[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3457 -> 4930[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4930 -> 3530[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4931[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3457 -> 4931[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4931 -> 3531[label="",style="solid", color="blue", weight=3]; 28.89/12.42 3458 -> 3432[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3458[label="xuu50001 < xuu51001 || xuu50001 == xuu51001 && xuu50002 <= xuu51002",fontsize=16,color="magenta"];3458 -> 3532[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3458 -> 3533[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3459[label="xuu50000 == xuu51000",fontsize=16,color="blue",shape="box"];4932[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 4932[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4932 -> 3534[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4933[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 4933[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4933 -> 3535[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4934[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 4934[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4934 -> 3536[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4935[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 4935[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4935 -> 3537[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4936[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 4936[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4936 -> 3538[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4937[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 4937[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4937 -> 3539[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4938[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 4938[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4938 -> 3540[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4939[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 4939[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4939 -> 3541[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4940[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 4940[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4940 -> 3542[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4941[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 4941[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4941 -> 3543[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4942[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 4942[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4942 -> 3544[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4943[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 4943[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4943 -> 3545[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4944[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 4944[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4944 -> 3546[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4945[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 4945[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4945 -> 3547[label="",style="solid", color="blue", weight=3]; 28.89/12.42 3460 -> 1508[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3460[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3460 -> 3548[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3460 -> 3549[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3461 -> 3442[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3461[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3461 -> 3550[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3461 -> 3551[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3462 -> 3443[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3462[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3462 -> 3552[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3462 -> 3553[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3463 -> 3444[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3463[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3463 -> 3554[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3463 -> 3555[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3464 -> 3445[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3464[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3464 -> 3556[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3464 -> 3557[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3465 -> 3446[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3465[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3465 -> 3558[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3465 -> 3559[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3466 -> 3447[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3466[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3466 -> 3560[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3466 -> 3561[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3467 -> 3448[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3467[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3467 -> 3562[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3467 -> 3563[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3468 -> 3449[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3468[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3468 -> 3564[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3468 -> 3565[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3469 -> 3450[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3469[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3469 -> 3566[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3469 -> 3567[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3470 -> 3451[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3470[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3470 -> 3568[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3470 -> 3569[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3471 -> 3452[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3471[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3471 -> 3570[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3471 -> 3571[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3472 -> 3453[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3472[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3472 -> 3572[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3472 -> 3573[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3473 -> 3454[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3473[label="xuu50000 < xuu51000",fontsize=16,color="magenta"];3473 -> 3574[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3473 -> 3575[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1843 -> 2016[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1843[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 FiniteMap.EmptyFM)",fontsize=16,color="magenta"];1843 -> 2021[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1843 -> 2022[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1844[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1845 -> 2016[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1845[label="primPlusInt xuu532 (FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534))",fontsize=16,color="magenta"];1845 -> 2023[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1846[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1921[label="xuu53",fontsize=16,color="green",shape="box"];1874 -> 1856[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1874[label="FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 xuu53",fontsize=16,color="magenta"];1875 -> 1866[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1875[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1898[label="FiniteMap.mkBalBranch6MkBalBranch2 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 otherwise",fontsize=16,color="black",shape="box"];1898 -> 2034[label="",style="solid", color="black", weight=3]; 28.89/12.42 1899[label="FiniteMap.mkBalBranch6MkBalBranch1 (Left xuu600) xuu61 xuu64 xuu53 xuu53 xuu64 xuu53",fontsize=16,color="burlywood",shape="box"];4946[label="xuu53/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1899 -> 4946[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4946 -> 2035[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4947[label="xuu53/FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534",fontsize=10,color="white",style="solid",shape="box"];1899 -> 4947[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4947 -> 2036[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 1877 -> 2037[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1877[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 (FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644)",fontsize=16,color="magenta"];1877 -> 2038[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4382 -> 2016[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4382[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu266 xuu263 xuu265) (FiniteMap.mkBranchRight_size xuu266 xuu263 xuu265)",fontsize=16,color="magenta"];4382 -> 4383[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4382 -> 4384[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1879 -> 2016[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1879[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 FiniteMap.EmptyFM)",fontsize=16,color="magenta"];1879 -> 2026[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1879 -> 2027[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1880[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1881 -> 2016[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1881[label="primPlusInt xuu452 (FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454))",fontsize=16,color="magenta"];1881 -> 2028[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1881 -> 2029[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1882[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1922 -> 1858[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1922[label="FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 xuu45",fontsize=16,color="magenta"];1923 -> 1866[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1923[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1924[label="FiniteMap.mkBalBranch6MkBalBranch2 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 otherwise",fontsize=16,color="black",shape="box"];1924 -> 2043[label="",style="solid", color="black", weight=3]; 28.89/12.42 1925[label="FiniteMap.mkBalBranch6MkBalBranch1 (Right xuu600) xuu61 xuu64 xuu45 xuu45 xuu64 xuu45",fontsize=16,color="burlywood",shape="box"];4948[label="xuu45/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1925 -> 4948[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4948 -> 2044[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4949[label="xuu45/FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454",fontsize=10,color="white",style="solid",shape="box"];1925 -> 4949[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4949 -> 2045[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 1900 -> 2046[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1900[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 (FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644)",fontsize=16,color="magenta"];1900 -> 2047[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1693[label="primMulNat (Succ xuu311000100) xuu60000",fontsize=16,color="burlywood",shape="box"];4950[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1693 -> 4950[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4950 -> 1902[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4951[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1693 -> 4951[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4951 -> 1903[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 1694[label="primMulNat Zero xuu60000",fontsize=16,color="burlywood",shape="box"];4952[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1694 -> 4952[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4952 -> 1904[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4953[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1694 -> 4953[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4953 -> 1905[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 1695[label="xuu60000",fontsize=16,color="green",shape="box"];1696[label="xuu31100010",fontsize=16,color="green",shape="box"];1697[label="xuu31100010",fontsize=16,color="green",shape="box"];1698[label="xuu60000",fontsize=16,color="green",shape="box"];1699[label="primCmpInt (Pos (Succ xuu5000)) xuu51",fontsize=16,color="burlywood",shape="box"];4954[label="xuu51/Pos xuu510",fontsize=10,color="white",style="solid",shape="box"];1699 -> 4954[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4954 -> 1906[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4955[label="xuu51/Neg xuu510",fontsize=10,color="white",style="solid",shape="box"];1699 -> 4955[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4955 -> 1907[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 1700[label="primCmpInt (Pos Zero) xuu51",fontsize=16,color="burlywood",shape="box"];4956[label="xuu51/Pos xuu510",fontsize=10,color="white",style="solid",shape="box"];1700 -> 4956[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4956 -> 1908[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4957[label="xuu51/Neg xuu510",fontsize=10,color="white",style="solid",shape="box"];1700 -> 4957[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4957 -> 1909[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 1701[label="primCmpInt (Neg (Succ xuu5000)) xuu51",fontsize=16,color="burlywood",shape="box"];4958[label="xuu51/Pos xuu510",fontsize=10,color="white",style="solid",shape="box"];1701 -> 4958[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4958 -> 1910[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4959[label="xuu51/Neg xuu510",fontsize=10,color="white",style="solid",shape="box"];1701 -> 4959[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4959 -> 1911[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 1702[label="primCmpInt (Neg Zero) xuu51",fontsize=16,color="burlywood",shape="box"];4960[label="xuu51/Pos xuu510",fontsize=10,color="white",style="solid",shape="box"];1702 -> 4960[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4960 -> 1912[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4961[label="xuu51/Neg xuu510",fontsize=10,color="white",style="solid",shape="box"];1702 -> 4961[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4961 -> 1913[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3474[label="True",fontsize=16,color="green",shape="box"];3475[label="False",fontsize=16,color="green",shape="box"];3477 -> 3190[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3477[label="compare xuu50001 xuu51001",fontsize=16,color="magenta"];3477 -> 3576[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3477 -> 3577[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3476[label="primCompAux xuu50000 xuu51000 xuu210",fontsize=16,color="black",shape="triangle"];3476 -> 3578[label="",style="solid", color="black", weight=3]; 28.89/12.42 3478[label="xuu50000",fontsize=16,color="green",shape="box"];3479[label="xuu51000",fontsize=16,color="green",shape="box"];3480[label="primCmpDouble (Double xuu50000 (Pos xuu500010)) (Double xuu51000 xuu51001)",fontsize=16,color="burlywood",shape="box"];4962[label="xuu51001/Pos xuu510010",fontsize=10,color="white",style="solid",shape="box"];3480 -> 4962[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4962 -> 3593[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4963[label="xuu51001/Neg xuu510010",fontsize=10,color="white",style="solid",shape="box"];3480 -> 4963[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4963 -> 3594[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3481[label="primCmpDouble (Double xuu50000 (Neg xuu500010)) (Double xuu51000 xuu51001)",fontsize=16,color="burlywood",shape="box"];4964[label="xuu51001/Pos xuu510010",fontsize=10,color="white",style="solid",shape="box"];3481 -> 4964[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4964 -> 3595[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4965[label="xuu51001/Neg xuu510010",fontsize=10,color="white",style="solid",shape="box"];3481 -> 4965[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4965 -> 3596[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3482[label="primCmpFloat (Float xuu50000 (Pos xuu500010)) (Float xuu51000 xuu51001)",fontsize=16,color="burlywood",shape="box"];4966[label="xuu51001/Pos xuu510010",fontsize=10,color="white",style="solid",shape="box"];3482 -> 4966[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4966 -> 3597[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4967[label="xuu51001/Neg xuu510010",fontsize=10,color="white",style="solid",shape="box"];3482 -> 4967[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4967 -> 3598[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3483[label="primCmpFloat (Float xuu50000 (Neg xuu500010)) (Float xuu51000 xuu51001)",fontsize=16,color="burlywood",shape="box"];4968[label="xuu51001/Pos xuu510010",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4968[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4968 -> 3599[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4969[label="xuu51001/Neg xuu510010",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4969[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4969 -> 3600[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3484 -> 1932[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3484[label="primCmpNat xuu50000 xuu51000",fontsize=16,color="magenta"];3484 -> 3601[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3484 -> 3602[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3485 -> 2992[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3485[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3485 -> 3603[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3485 -> 3604[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3486 -> 2993[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3486[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3486 -> 3605[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3486 -> 3606[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3487 -> 2994[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3487[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3487 -> 3607[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3487 -> 3608[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3488 -> 2995[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3488[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3488 -> 3609[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3488 -> 3610[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3489 -> 2996[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3489[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3489 -> 3611[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3489 -> 3612[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3490 -> 2997[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3490[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3490 -> 3613[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3490 -> 3614[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3491 -> 2998[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3491[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3491 -> 3615[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3491 -> 3616[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3492 -> 2999[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3492[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3492 -> 3617[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3492 -> 3618[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3493 -> 3000[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3493[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3493 -> 3619[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3493 -> 3620[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3494 -> 3001[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3494[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3494 -> 3621[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3494 -> 3622[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3495 -> 3002[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3495[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3495 -> 3623[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3495 -> 3624[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3496 -> 3003[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3496[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3496 -> 3625[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3496 -> 3626[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3497 -> 3004[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3497[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3497 -> 3627[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3497 -> 3628[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3498 -> 3005[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3498[label="xuu50001 <= xuu51001",fontsize=16,color="magenta"];3498 -> 3629[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3498 -> 3630[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3499 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3499[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3499 -> 3631[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3499 -> 3632[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3500 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3500[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3500 -> 3633[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3500 -> 3634[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3501 -> 2253[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3501[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3501 -> 3635[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3501 -> 3636[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3502 -> 2248[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3502[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3502 -> 3637[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3502 -> 3638[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3503 -> 2242[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3503[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3503 -> 3639[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3503 -> 3640[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3504 -> 2251[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3504[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3504 -> 3641[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3504 -> 3642[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3505 -> 2246[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3505[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3505 -> 3643[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3505 -> 3644[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3506 -> 2244[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3506[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3506 -> 3645[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3506 -> 3646[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3507 -> 2252[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3507[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3507 -> 3647[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3507 -> 3648[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3508 -> 2249[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3508[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3508 -> 3649[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3508 -> 3650[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3509 -> 2247[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3509[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3509 -> 3651[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3509 -> 3652[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3510 -> 2250[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3510[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3510 -> 3653[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3510 -> 3654[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3511 -> 2245[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3511[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3511 -> 3655[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3511 -> 3656[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3512 -> 2243[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3512[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3512 -> 3657[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3512 -> 3658[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3513[label="xuu51000",fontsize=16,color="green",shape="box"];3514[label="xuu50000",fontsize=16,color="green",shape="box"];1508[label="xuu500 < xuu510",fontsize=16,color="black",shape="triangle"];1508 -> 1581[label="",style="solid", color="black", weight=3]; 28.89/12.42 3515 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3515[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3515 -> 3659[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3515 -> 3660[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3516 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3516[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3516 -> 3661[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3516 -> 3662[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3517 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3517[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3517 -> 3663[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3517 -> 3664[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3518 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3518[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3518 -> 3665[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3518 -> 3666[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3519 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3519[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3519 -> 3667[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3519 -> 3668[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3520 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3520[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3520 -> 3669[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3520 -> 3670[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3521 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3521[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3521 -> 3671[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3521 -> 3672[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3522 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3522[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3522 -> 3673[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3522 -> 3674[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3523 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3523[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3523 -> 3675[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3523 -> 3676[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3524 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3524[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3524 -> 3677[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3524 -> 3678[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3525 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3525[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3525 -> 3679[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3525 -> 3680[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3526 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3526[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3526 -> 3681[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3526 -> 3682[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3527 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3527[label="compare xuu50000 xuu51000 == LT",fontsize=16,color="magenta"];3527 -> 3683[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3527 -> 3684[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3528[label="xuu209",fontsize=16,color="green",shape="box"];3529[label="True",fontsize=16,color="green",shape="box"];3530 -> 1329[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3530[label="compare (xuu50000 * xuu51001) (xuu51000 * xuu50001)",fontsize=16,color="magenta"];3530 -> 3685[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3530 -> 3686[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3531 -> 3191[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3531[label="compare (xuu50000 * xuu51001) (xuu51000 * xuu50001)",fontsize=16,color="magenta"];3531 -> 3687[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3531 -> 3688[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3532 -> 2658[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3532[label="xuu50001 == xuu51001 && xuu50002 <= xuu51002",fontsize=16,color="magenta"];3532 -> 3689[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3532 -> 3690[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3533[label="xuu50001 < xuu51001",fontsize=16,color="blue",shape="box"];4970[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4970[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4970 -> 3691[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4971[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4971[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4971 -> 3692[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4972[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4972[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4972 -> 3693[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4973[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4973[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4973 -> 3694[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4974[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4974[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4974 -> 3695[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4975[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4975[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4975 -> 3696[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4976[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4976[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4976 -> 3697[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4977[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4977[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4977 -> 3698[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4978[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4978[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4978 -> 3699[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4979[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4979[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4979 -> 3700[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4980[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4980[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4980 -> 3701[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4981[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4981[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4981 -> 3702[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4982[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4982[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4982 -> 3703[label="",style="solid", color="blue", weight=3]; 28.89/12.42 4983[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4983[label="",style="solid", color="blue", weight=9]; 28.89/12.42 4983 -> 3704[label="",style="solid", color="blue", weight=3]; 28.89/12.42 3534 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3534[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3534 -> 3705[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3534 -> 3706[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3535 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3535[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3535 -> 3707[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3535 -> 3708[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3536 -> 2253[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3536[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3536 -> 3709[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3536 -> 3710[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3537 -> 2248[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3537[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3537 -> 3711[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3537 -> 3712[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3538 -> 2242[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3538[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3538 -> 3713[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3538 -> 3714[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3539 -> 2251[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3539[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3539 -> 3715[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3539 -> 3716[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3540 -> 2246[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3540[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3540 -> 3717[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3540 -> 3718[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3541 -> 2244[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3541[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3541 -> 3719[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3541 -> 3720[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3542 -> 2252[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3542[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3542 -> 3721[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3542 -> 3722[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3543 -> 2249[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3543[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3543 -> 3723[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3543 -> 3724[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3544 -> 2247[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3544[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3544 -> 3725[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3544 -> 3726[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3545 -> 2250[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3545[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3545 -> 3727[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3545 -> 3728[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3546 -> 2245[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3546[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3546 -> 3729[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3546 -> 3730[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3547 -> 2243[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3547[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];3547 -> 3731[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3547 -> 3732[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3548[label="xuu51000",fontsize=16,color="green",shape="box"];3549[label="xuu50000",fontsize=16,color="green",shape="box"];3550[label="xuu51000",fontsize=16,color="green",shape="box"];3551[label="xuu50000",fontsize=16,color="green",shape="box"];3552[label="xuu51000",fontsize=16,color="green",shape="box"];3553[label="xuu50000",fontsize=16,color="green",shape="box"];3554[label="xuu51000",fontsize=16,color="green",shape="box"];3555[label="xuu50000",fontsize=16,color="green",shape="box"];3556[label="xuu51000",fontsize=16,color="green",shape="box"];3557[label="xuu50000",fontsize=16,color="green",shape="box"];3558[label="xuu51000",fontsize=16,color="green",shape="box"];3559[label="xuu50000",fontsize=16,color="green",shape="box"];3560[label="xuu51000",fontsize=16,color="green",shape="box"];3561[label="xuu50000",fontsize=16,color="green",shape="box"];3562[label="xuu51000",fontsize=16,color="green",shape="box"];3563[label="xuu50000",fontsize=16,color="green",shape="box"];3564[label="xuu51000",fontsize=16,color="green",shape="box"];3565[label="xuu50000",fontsize=16,color="green",shape="box"];3566[label="xuu51000",fontsize=16,color="green",shape="box"];3567[label="xuu50000",fontsize=16,color="green",shape="box"];3568[label="xuu51000",fontsize=16,color="green",shape="box"];3569[label="xuu50000",fontsize=16,color="green",shape="box"];3570[label="xuu51000",fontsize=16,color="green",shape="box"];3571[label="xuu50000",fontsize=16,color="green",shape="box"];3572[label="xuu51000",fontsize=16,color="green",shape="box"];3573[label="xuu50000",fontsize=16,color="green",shape="box"];3574[label="xuu51000",fontsize=16,color="green",shape="box"];3575[label="xuu50000",fontsize=16,color="green",shape="box"];2021 -> 1856[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2021[label="FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 FiniteMap.EmptyFM",fontsize=16,color="magenta"];2021 -> 2145[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2022[label="Pos Zero",fontsize=16,color="green",shape="box"];2016[label="primPlusInt xuu532 xuu134",fontsize=16,color="burlywood",shape="triangle"];4984[label="xuu532/Pos xuu5320",fontsize=10,color="white",style="solid",shape="box"];2016 -> 4984[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4984 -> 2041[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4985[label="xuu532/Neg xuu5320",fontsize=10,color="white",style="solid",shape="box"];2016 -> 4985[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4985 -> 2042[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 2023 -> 1856[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2023[label="FiniteMap.mkBalBranch6Size_r (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534)",fontsize=16,color="magenta"];2023 -> 2146[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2034[label="FiniteMap.mkBalBranch6MkBalBranch2 (Left xuu600) xuu61 xuu64 xuu53 (Left xuu600) xuu61 xuu53 xuu64 True",fontsize=16,color="black",shape="box"];2034 -> 2147[label="",style="solid", color="black", weight=3]; 28.89/12.42 2035[label="FiniteMap.mkBalBranch6MkBalBranch1 (Left xuu600) xuu61 xuu64 FiniteMap.EmptyFM FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2035 -> 2148[label="",style="solid", color="black", weight=3]; 28.89/12.42 2036[label="FiniteMap.mkBalBranch6MkBalBranch1 (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534)",fontsize=16,color="black",shape="box"];2036 -> 2149[label="",style="solid", color="black", weight=3]; 28.89/12.42 2038 -> 1508[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2038[label="FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2038 -> 2150[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2038 -> 2151[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2037[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 xuu135",fontsize=16,color="burlywood",shape="triangle"];4986[label="xuu135/False",fontsize=10,color="white",style="solid",shape="box"];2037 -> 4986[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4986 -> 2152[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4987[label="xuu135/True",fontsize=10,color="white",style="solid",shape="box"];2037 -> 4987[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4987 -> 2153[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4383[label="FiniteMap.mkBranchRight_size xuu266 xuu263 xuu265",fontsize=16,color="black",shape="box"];4383 -> 4385[label="",style="solid", color="black", weight=3]; 28.89/12.42 4384[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu266 xuu263 xuu265",fontsize=16,color="black",shape="box"];4384 -> 4386[label="",style="solid", color="black", weight=3]; 28.89/12.42 2026 -> 1858[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2026[label="FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 FiniteMap.EmptyFM",fontsize=16,color="magenta"];2026 -> 2160[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2027[label="Pos Zero",fontsize=16,color="green",shape="box"];2028 -> 1858[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2028[label="FiniteMap.mkBalBranch6Size_r (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454)",fontsize=16,color="magenta"];2028 -> 2161[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2029[label="xuu452",fontsize=16,color="green",shape="box"];2043[label="FiniteMap.mkBalBranch6MkBalBranch2 (Right xuu600) xuu61 xuu64 xuu45 (Right xuu600) xuu61 xuu45 xuu64 True",fontsize=16,color="black",shape="box"];2043 -> 2162[label="",style="solid", color="black", weight=3]; 28.89/12.42 2044[label="FiniteMap.mkBalBranch6MkBalBranch1 (Right xuu600) xuu61 xuu64 FiniteMap.EmptyFM FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2044 -> 2163[label="",style="solid", color="black", weight=3]; 28.89/12.42 2045[label="FiniteMap.mkBalBranch6MkBalBranch1 (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454)",fontsize=16,color="black",shape="box"];2045 -> 2164[label="",style="solid", color="black", weight=3]; 28.89/12.42 2047 -> 1508[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2047[label="FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2047 -> 2165[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2047 -> 2166[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2046[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 xuu139",fontsize=16,color="burlywood",shape="triangle"];4988[label="xuu139/False",fontsize=10,color="white",style="solid",shape="box"];2046 -> 4988[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4988 -> 2167[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4989[label="xuu139/True",fontsize=10,color="white",style="solid",shape="box"];2046 -> 4989[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4989 -> 2168[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 1902[label="primMulNat (Succ xuu311000100) (Succ xuu600000)",fontsize=16,color="black",shape="box"];1902 -> 2050[label="",style="solid", color="black", weight=3]; 28.89/12.42 1903[label="primMulNat (Succ xuu311000100) Zero",fontsize=16,color="black",shape="box"];1903 -> 2051[label="",style="solid", color="black", weight=3]; 28.89/12.42 1904[label="primMulNat Zero (Succ xuu600000)",fontsize=16,color="black",shape="box"];1904 -> 2052[label="",style="solid", color="black", weight=3]; 28.89/12.42 1905[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1905 -> 2053[label="",style="solid", color="black", weight=3]; 28.89/12.42 1906[label="primCmpInt (Pos (Succ xuu5000)) (Pos xuu510)",fontsize=16,color="black",shape="box"];1906 -> 2054[label="",style="solid", color="black", weight=3]; 28.89/12.42 1907[label="primCmpInt (Pos (Succ xuu5000)) (Neg xuu510)",fontsize=16,color="black",shape="box"];1907 -> 2055[label="",style="solid", color="black", weight=3]; 28.89/12.42 1908[label="primCmpInt (Pos Zero) (Pos xuu510)",fontsize=16,color="burlywood",shape="box"];4990[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1908 -> 4990[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4990 -> 2056[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4991[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1908 -> 4991[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4991 -> 2057[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 1909[label="primCmpInt (Pos Zero) (Neg xuu510)",fontsize=16,color="burlywood",shape="box"];4992[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1909 -> 4992[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4992 -> 2058[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4993[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1909 -> 4993[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4993 -> 2059[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 1910[label="primCmpInt (Neg (Succ xuu5000)) (Pos xuu510)",fontsize=16,color="black",shape="box"];1910 -> 2060[label="",style="solid", color="black", weight=3]; 28.89/12.42 1911[label="primCmpInt (Neg (Succ xuu5000)) (Neg xuu510)",fontsize=16,color="black",shape="box"];1911 -> 2061[label="",style="solid", color="black", weight=3]; 28.89/12.42 1912[label="primCmpInt (Neg Zero) (Pos xuu510)",fontsize=16,color="burlywood",shape="box"];4994[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1912 -> 4994[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4994 -> 2062[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4995[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1912 -> 4995[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4995 -> 2063[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 1913[label="primCmpInt (Neg Zero) (Neg xuu510)",fontsize=16,color="burlywood",shape="box"];4996[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1913 -> 4996[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4996 -> 2064[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4997[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1913 -> 4997[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4997 -> 2065[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3576[label="xuu50001",fontsize=16,color="green",shape="box"];3577[label="xuu51001",fontsize=16,color="green",shape="box"];3578 -> 3733[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3578[label="primCompAux0 xuu210 (compare xuu50000 xuu51000)",fontsize=16,color="magenta"];3578 -> 3734[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3578 -> 3735[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3593[label="primCmpDouble (Double xuu50000 (Pos xuu500010)) (Double xuu51000 (Pos xuu510010))",fontsize=16,color="black",shape="box"];3593 -> 3736[label="",style="solid", color="black", weight=3]; 28.89/12.42 3594[label="primCmpDouble (Double xuu50000 (Pos xuu500010)) (Double xuu51000 (Neg xuu510010))",fontsize=16,color="black",shape="box"];3594 -> 3737[label="",style="solid", color="black", weight=3]; 28.89/12.42 3595[label="primCmpDouble (Double xuu50000 (Neg xuu500010)) (Double xuu51000 (Pos xuu510010))",fontsize=16,color="black",shape="box"];3595 -> 3738[label="",style="solid", color="black", weight=3]; 28.89/12.42 3596[label="primCmpDouble (Double xuu50000 (Neg xuu500010)) (Double xuu51000 (Neg xuu510010))",fontsize=16,color="black",shape="box"];3596 -> 3739[label="",style="solid", color="black", weight=3]; 28.89/12.42 3597[label="primCmpFloat (Float xuu50000 (Pos xuu500010)) (Float xuu51000 (Pos xuu510010))",fontsize=16,color="black",shape="box"];3597 -> 3740[label="",style="solid", color="black", weight=3]; 28.89/12.42 3598[label="primCmpFloat (Float xuu50000 (Pos xuu500010)) (Float xuu51000 (Neg xuu510010))",fontsize=16,color="black",shape="box"];3598 -> 3741[label="",style="solid", color="black", weight=3]; 28.89/12.42 3599[label="primCmpFloat (Float xuu50000 (Neg xuu500010)) (Float xuu51000 (Pos xuu510010))",fontsize=16,color="black",shape="box"];3599 -> 3742[label="",style="solid", color="black", weight=3]; 28.89/12.42 3600[label="primCmpFloat (Float xuu50000 (Neg xuu500010)) (Float xuu51000 (Neg xuu510010))",fontsize=16,color="black",shape="box"];3600 -> 3743[label="",style="solid", color="black", weight=3]; 28.89/12.42 3601[label="xuu50000",fontsize=16,color="green",shape="box"];3602[label="xuu51000",fontsize=16,color="green",shape="box"];1932[label="primCmpNat xuu500 xuu510",fontsize=16,color="burlywood",shape="triangle"];4998[label="xuu500/Succ xuu5000",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4998[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4998 -> 2077[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4999[label="xuu500/Zero",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4999[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 4999 -> 2078[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3603[label="xuu50001",fontsize=16,color="green",shape="box"];3604[label="xuu51001",fontsize=16,color="green",shape="box"];3605[label="xuu50001",fontsize=16,color="green",shape="box"];3606[label="xuu51001",fontsize=16,color="green",shape="box"];3607[label="xuu50001",fontsize=16,color="green",shape="box"];3608[label="xuu51001",fontsize=16,color="green",shape="box"];3609[label="xuu50001",fontsize=16,color="green",shape="box"];3610[label="xuu51001",fontsize=16,color="green",shape="box"];3611[label="xuu50001",fontsize=16,color="green",shape="box"];3612[label="xuu51001",fontsize=16,color="green",shape="box"];3613[label="xuu50001",fontsize=16,color="green",shape="box"];3614[label="xuu51001",fontsize=16,color="green",shape="box"];3615[label="xuu50001",fontsize=16,color="green",shape="box"];3616[label="xuu51001",fontsize=16,color="green",shape="box"];3617[label="xuu50001",fontsize=16,color="green",shape="box"];3618[label="xuu51001",fontsize=16,color="green",shape="box"];3619[label="xuu50001",fontsize=16,color="green",shape="box"];3620[label="xuu51001",fontsize=16,color="green",shape="box"];3621[label="xuu50001",fontsize=16,color="green",shape="box"];3622[label="xuu51001",fontsize=16,color="green",shape="box"];3623[label="xuu50001",fontsize=16,color="green",shape="box"];3624[label="xuu51001",fontsize=16,color="green",shape="box"];3625[label="xuu50001",fontsize=16,color="green",shape="box"];3626[label="xuu51001",fontsize=16,color="green",shape="box"];3627[label="xuu50001",fontsize=16,color="green",shape="box"];3628[label="xuu51001",fontsize=16,color="green",shape="box"];3629[label="xuu50001",fontsize=16,color="green",shape="box"];3630[label="xuu51001",fontsize=16,color="green",shape="box"];3631[label="xuu51000",fontsize=16,color="green",shape="box"];3632[label="xuu50000",fontsize=16,color="green",shape="box"];3633[label="xuu51000",fontsize=16,color="green",shape="box"];3634[label="xuu50000",fontsize=16,color="green",shape="box"];3635[label="xuu51000",fontsize=16,color="green",shape="box"];3636[label="xuu50000",fontsize=16,color="green",shape="box"];3637[label="xuu51000",fontsize=16,color="green",shape="box"];3638[label="xuu50000",fontsize=16,color="green",shape="box"];3639[label="xuu51000",fontsize=16,color="green",shape="box"];3640[label="xuu50000",fontsize=16,color="green",shape="box"];3641[label="xuu51000",fontsize=16,color="green",shape="box"];3642[label="xuu50000",fontsize=16,color="green",shape="box"];3643[label="xuu51000",fontsize=16,color="green",shape="box"];3644[label="xuu50000",fontsize=16,color="green",shape="box"];3645[label="xuu51000",fontsize=16,color="green",shape="box"];3646[label="xuu50000",fontsize=16,color="green",shape="box"];3647[label="xuu51000",fontsize=16,color="green",shape="box"];3648[label="xuu50000",fontsize=16,color="green",shape="box"];3649[label="xuu51000",fontsize=16,color="green",shape="box"];3650[label="xuu50000",fontsize=16,color="green",shape="box"];3651[label="xuu51000",fontsize=16,color="green",shape="box"];3652[label="xuu50000",fontsize=16,color="green",shape="box"];3653[label="xuu51000",fontsize=16,color="green",shape="box"];3654[label="xuu50000",fontsize=16,color="green",shape="box"];3655[label="xuu51000",fontsize=16,color="green",shape="box"];3656[label="xuu50000",fontsize=16,color="green",shape="box"];3657[label="xuu51000",fontsize=16,color="green",shape="box"];3658[label="xuu50000",fontsize=16,color="green",shape="box"];1581 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1581[label="compare xuu500 xuu510 == LT",fontsize=16,color="magenta"];1581 -> 1714[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1581 -> 1715[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3659[label="LT",fontsize=16,color="green",shape="box"];3660[label="compare xuu50000 xuu51000",fontsize=16,color="black",shape="triangle"];3660 -> 3744[label="",style="solid", color="black", weight=3]; 28.89/12.42 3661[label="LT",fontsize=16,color="green",shape="box"];3662 -> 3190[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3662[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3662 -> 3745[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3662 -> 3746[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3663[label="LT",fontsize=16,color="green",shape="box"];3664 -> 3191[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3664[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3664 -> 3747[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3664 -> 3748[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3665[label="LT",fontsize=16,color="green",shape="box"];3666[label="compare xuu50000 xuu51000",fontsize=16,color="black",shape="triangle"];3666 -> 3749[label="",style="solid", color="black", weight=3]; 28.89/12.42 3667[label="LT",fontsize=16,color="green",shape="box"];3668 -> 3192[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3668[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3668 -> 3750[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3668 -> 3751[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3669[label="LT",fontsize=16,color="green",shape="box"];3670[label="compare xuu50000 xuu51000",fontsize=16,color="black",shape="triangle"];3670 -> 3752[label="",style="solid", color="black", weight=3]; 28.89/12.42 3671[label="LT",fontsize=16,color="green",shape="box"];3672 -> 3193[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3672[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3672 -> 3753[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3672 -> 3754[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3673[label="LT",fontsize=16,color="green",shape="box"];3674 -> 3194[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3674[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3674 -> 3755[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3674 -> 3756[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3675[label="LT",fontsize=16,color="green",shape="box"];3676 -> 3195[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3676[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3676 -> 3757[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3676 -> 3758[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3677[label="LT",fontsize=16,color="green",shape="box"];3678[label="compare xuu50000 xuu51000",fontsize=16,color="black",shape="triangle"];3678 -> 3759[label="",style="solid", color="black", weight=3]; 28.89/12.42 3679[label="LT",fontsize=16,color="green",shape="box"];3680 -> 3196[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3680[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3680 -> 3760[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3680 -> 3761[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3681[label="LT",fontsize=16,color="green",shape="box"];3682[label="compare xuu50000 xuu51000",fontsize=16,color="black",shape="triangle"];3682 -> 3762[label="",style="solid", color="black", weight=3]; 28.89/12.42 3683[label="LT",fontsize=16,color="green",shape="box"];3684[label="compare xuu50000 xuu51000",fontsize=16,color="black",shape="triangle"];3684 -> 3763[label="",style="solid", color="black", weight=3]; 28.89/12.42 3685 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3685[label="xuu50000 * xuu51001",fontsize=16,color="magenta"];3685 -> 3764[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3685 -> 3765[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3686 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3686[label="xuu51000 * xuu50001",fontsize=16,color="magenta"];3686 -> 3766[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3686 -> 3767[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3687[label="xuu50000 * xuu51001",fontsize=16,color="burlywood",shape="triangle"];5000[label="xuu50000/Integer xuu500000",fontsize=10,color="white",style="solid",shape="box"];3687 -> 5000[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5000 -> 3768[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3688 -> 3687[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3688[label="xuu51000 * xuu50001",fontsize=16,color="magenta"];3688 -> 3769[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3688 -> 3770[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3689[label="xuu50002 <= xuu51002",fontsize=16,color="blue",shape="box"];5001[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5001[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5001 -> 3771[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5002[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5002[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5002 -> 3772[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5003[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5003[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5003 -> 3773[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5004[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5004[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5004 -> 3774[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5005[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5005[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5005 -> 3775[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5006[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5006[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5006 -> 3776[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5007[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5007[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5007 -> 3777[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5008[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5008[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5008 -> 3778[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5009[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5009[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5009 -> 3779[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5010[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5010[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5010 -> 3780[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5011[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5011[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5011 -> 3781[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5012[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5012[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5012 -> 3782[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5013[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5013[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5013 -> 3783[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5014[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5014[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5014 -> 3784[label="",style="solid", color="blue", weight=3]; 28.89/12.42 3690[label="xuu50001 == xuu51001",fontsize=16,color="blue",shape="box"];5015[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3690 -> 5015[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5015 -> 3785[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5016[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3690 -> 5016[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5016 -> 3786[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5017[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3690 -> 5017[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5017 -> 3787[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5018[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3690 -> 5018[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5018 -> 3788[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5019[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3690 -> 5019[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5019 -> 3789[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5020[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3690 -> 5020[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5020 -> 3790[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5021[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3690 -> 5021[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5021 -> 3791[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5022[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3690 -> 5022[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5022 -> 3792[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5023[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3690 -> 5023[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5023 -> 3793[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5024[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3690 -> 5024[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5024 -> 3794[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5025[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3690 -> 5025[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5025 -> 3795[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5026[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3690 -> 5026[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5026 -> 3796[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5027[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3690 -> 5027[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5027 -> 3797[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5028[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3690 -> 5028[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5028 -> 3798[label="",style="solid", color="blue", weight=3]; 28.89/12.42 3691 -> 1508[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3691[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3691 -> 3799[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3691 -> 3800[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3692 -> 3442[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3692[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3692 -> 3801[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3692 -> 3802[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3693 -> 3443[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3693[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3693 -> 3803[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3693 -> 3804[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3694 -> 3444[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3694[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3694 -> 3805[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3694 -> 3806[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3695 -> 3445[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3695[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3695 -> 3807[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3695 -> 3808[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3696 -> 3446[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3696[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3696 -> 3809[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3696 -> 3810[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3697 -> 3447[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3697[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3697 -> 3811[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3697 -> 3812[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3698 -> 3448[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3698[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3698 -> 3813[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3698 -> 3814[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3699 -> 3449[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3699[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3699 -> 3815[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3699 -> 3816[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3700 -> 3450[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3700[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3700 -> 3817[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3700 -> 3818[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3701 -> 3451[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3701[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3701 -> 3819[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3701 -> 3820[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3702 -> 3452[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3702[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3702 -> 3821[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3702 -> 3822[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3703 -> 3453[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3703[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3703 -> 3823[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3703 -> 3824[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3704 -> 3454[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3704[label="xuu50001 < xuu51001",fontsize=16,color="magenta"];3704 -> 3825[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3704 -> 3826[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3705[label="xuu51000",fontsize=16,color="green",shape="box"];3706[label="xuu50000",fontsize=16,color="green",shape="box"];3707[label="xuu51000",fontsize=16,color="green",shape="box"];3708[label="xuu50000",fontsize=16,color="green",shape="box"];3709[label="xuu51000",fontsize=16,color="green",shape="box"];3710[label="xuu50000",fontsize=16,color="green",shape="box"];3711[label="xuu51000",fontsize=16,color="green",shape="box"];3712[label="xuu50000",fontsize=16,color="green",shape="box"];3713[label="xuu51000",fontsize=16,color="green",shape="box"];3714[label="xuu50000",fontsize=16,color="green",shape="box"];3715[label="xuu51000",fontsize=16,color="green",shape="box"];3716[label="xuu50000",fontsize=16,color="green",shape="box"];3717[label="xuu51000",fontsize=16,color="green",shape="box"];3718[label="xuu50000",fontsize=16,color="green",shape="box"];3719[label="xuu51000",fontsize=16,color="green",shape="box"];3720[label="xuu50000",fontsize=16,color="green",shape="box"];3721[label="xuu51000",fontsize=16,color="green",shape="box"];3722[label="xuu50000",fontsize=16,color="green",shape="box"];3723[label="xuu51000",fontsize=16,color="green",shape="box"];3724[label="xuu50000",fontsize=16,color="green",shape="box"];3725[label="xuu51000",fontsize=16,color="green",shape="box"];3726[label="xuu50000",fontsize=16,color="green",shape="box"];3727[label="xuu51000",fontsize=16,color="green",shape="box"];3728[label="xuu50000",fontsize=16,color="green",shape="box"];3729[label="xuu51000",fontsize=16,color="green",shape="box"];3730[label="xuu50000",fontsize=16,color="green",shape="box"];3731[label="xuu51000",fontsize=16,color="green",shape="box"];3732[label="xuu50000",fontsize=16,color="green",shape="box"];2145[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];2041[label="primPlusInt (Pos xuu5320) xuu134",fontsize=16,color="burlywood",shape="box"];5029[label="xuu134/Pos xuu1340",fontsize=10,color="white",style="solid",shape="box"];2041 -> 5029[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5029 -> 2156[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5030[label="xuu134/Neg xuu1340",fontsize=10,color="white",style="solid",shape="box"];2041 -> 5030[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5030 -> 2157[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 2042[label="primPlusInt (Neg xuu5320) xuu134",fontsize=16,color="burlywood",shape="box"];5031[label="xuu134/Pos xuu1340",fontsize=10,color="white",style="solid",shape="box"];2042 -> 5031[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5031 -> 2158[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5032[label="xuu134/Neg xuu1340",fontsize=10,color="white",style="solid",shape="box"];2042 -> 5032[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5032 -> 2159[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 2146[label="FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534",fontsize=16,color="green",shape="box"];2147 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2147[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (Left xuu600) xuu61 xuu53 xuu64",fontsize=16,color="magenta"];2147 -> 4188[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2147 -> 4189[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2147 -> 4190[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2147 -> 4191[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2147 -> 4192[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2148[label="error []",fontsize=16,color="red",shape="box"];2149[label="FiniteMap.mkBalBranch6MkBalBranch12 (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534)",fontsize=16,color="black",shape="box"];2149 -> 2277[label="",style="solid", color="black", weight=3]; 28.89/12.42 2150 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2150[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2150 -> 2278[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2150 -> 2279[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2151 -> 1867[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2151[label="FiniteMap.sizeFM xuu643",fontsize=16,color="magenta"];2151 -> 2280[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2152[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 False",fontsize=16,color="black",shape="box"];2152 -> 2281[label="",style="solid", color="black", weight=3]; 28.89/12.42 2153[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2153 -> 2282[label="",style="solid", color="black", weight=3]; 28.89/12.42 4385[label="FiniteMap.sizeFM xuu266",fontsize=16,color="burlywood",shape="triangle"];5033[label="xuu266/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4385 -> 5033[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5033 -> 4387[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5034[label="xuu266/FiniteMap.Branch xuu2660 xuu2661 xuu2662 xuu2663 xuu2664",fontsize=10,color="white",style="solid",shape="box"];4385 -> 5034[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5034 -> 4388[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4386 -> 2016[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4386[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu266 xuu263 xuu265)",fontsize=16,color="magenta"];4386 -> 4389[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4386 -> 4390[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2160[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];2161[label="FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454",fontsize=16,color="green",shape="box"];2162 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2162[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (Right xuu600) xuu61 xuu45 xuu64",fontsize=16,color="magenta"];2162 -> 4193[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2162 -> 4194[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2162 -> 4195[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2162 -> 4196[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2162 -> 4197[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2163[label="error []",fontsize=16,color="red",shape="box"];2164[label="FiniteMap.mkBalBranch6MkBalBranch12 (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454)",fontsize=16,color="black",shape="box"];2164 -> 2289[label="",style="solid", color="black", weight=3]; 28.89/12.42 2165 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2165[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2165 -> 2290[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2165 -> 2291[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2166 -> 1867[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2166[label="FiniteMap.sizeFM xuu643",fontsize=16,color="magenta"];2166 -> 2292[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2167[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 False",fontsize=16,color="black",shape="box"];2167 -> 2293[label="",style="solid", color="black", weight=3]; 28.89/12.42 2168[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2168 -> 2294[label="",style="solid", color="black", weight=3]; 28.89/12.42 2050 -> 2171[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2050[label="primPlusNat (primMulNat xuu311000100 (Succ xuu600000)) (Succ xuu600000)",fontsize=16,color="magenta"];2050 -> 2172[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2051[label="Zero",fontsize=16,color="green",shape="box"];2052[label="Zero",fontsize=16,color="green",shape="box"];2053[label="Zero",fontsize=16,color="green",shape="box"];2054 -> 1932[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2054[label="primCmpNat (Succ xuu5000) xuu510",fontsize=16,color="magenta"];2054 -> 2173[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2054 -> 2174[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2055[label="GT",fontsize=16,color="green",shape="box"];2056[label="primCmpInt (Pos Zero) (Pos (Succ xuu5100))",fontsize=16,color="black",shape="box"];2056 -> 2175[label="",style="solid", color="black", weight=3]; 28.89/12.42 2057[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2057 -> 2176[label="",style="solid", color="black", weight=3]; 28.89/12.42 2058[label="primCmpInt (Pos Zero) (Neg (Succ xuu5100))",fontsize=16,color="black",shape="box"];2058 -> 2177[label="",style="solid", color="black", weight=3]; 28.89/12.42 2059[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2059 -> 2178[label="",style="solid", color="black", weight=3]; 28.89/12.42 2060[label="LT",fontsize=16,color="green",shape="box"];2061 -> 1932[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2061[label="primCmpNat xuu510 (Succ xuu5000)",fontsize=16,color="magenta"];2061 -> 2179[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2061 -> 2180[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2062[label="primCmpInt (Neg Zero) (Pos (Succ xuu5100))",fontsize=16,color="black",shape="box"];2062 -> 2181[label="",style="solid", color="black", weight=3]; 28.89/12.42 2063[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2063 -> 2182[label="",style="solid", color="black", weight=3]; 28.89/12.42 2064[label="primCmpInt (Neg Zero) (Neg (Succ xuu5100))",fontsize=16,color="black",shape="box"];2064 -> 2183[label="",style="solid", color="black", weight=3]; 28.89/12.42 2065[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2065 -> 2184[label="",style="solid", color="black", weight=3]; 28.89/12.42 3734[label="xuu210",fontsize=16,color="green",shape="box"];3735[label="compare xuu50000 xuu51000",fontsize=16,color="blue",shape="box"];5035[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3735 -> 5035[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5035 -> 3827[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5036[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3735 -> 5036[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5036 -> 3828[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5037[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3735 -> 5037[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5037 -> 3829[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5038[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3735 -> 5038[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5038 -> 3830[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5039[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3735 -> 5039[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5039 -> 3831[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5040[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3735 -> 5040[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5040 -> 3832[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5041[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3735 -> 5041[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5041 -> 3833[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5042[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3735 -> 5042[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5042 -> 3834[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5043[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3735 -> 5043[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5043 -> 3835[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5044[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3735 -> 5044[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5044 -> 3836[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5045[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3735 -> 5045[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5045 -> 3837[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5046[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3735 -> 5046[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5046 -> 3838[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5047[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3735 -> 5047[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5047 -> 3839[label="",style="solid", color="blue", weight=3]; 28.89/12.42 5048[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3735 -> 5048[label="",style="solid", color="blue", weight=9]; 28.89/12.42 5048 -> 3840[label="",style="solid", color="blue", weight=3]; 28.89/12.42 3733[label="primCompAux0 xuu223 xuu224",fontsize=16,color="burlywood",shape="triangle"];5049[label="xuu224/LT",fontsize=10,color="white",style="solid",shape="box"];3733 -> 5049[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5049 -> 3841[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5050[label="xuu224/EQ",fontsize=10,color="white",style="solid",shape="box"];3733 -> 5050[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5050 -> 3842[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5051[label="xuu224/GT",fontsize=10,color="white",style="solid",shape="box"];3733 -> 5051[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5051 -> 3843[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3736 -> 1329[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3736[label="compare (xuu50000 * Pos xuu510010) (Pos xuu500010 * xuu51000)",fontsize=16,color="magenta"];3736 -> 3868[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3736 -> 3869[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3737 -> 1329[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3737[label="compare (xuu50000 * Pos xuu510010) (Neg xuu500010 * xuu51000)",fontsize=16,color="magenta"];3737 -> 3870[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3737 -> 3871[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3738 -> 1329[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3738[label="compare (xuu50000 * Neg xuu510010) (Pos xuu500010 * xuu51000)",fontsize=16,color="magenta"];3738 -> 3872[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3738 -> 3873[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3739 -> 1329[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3739[label="compare (xuu50000 * Neg xuu510010) (Neg xuu500010 * xuu51000)",fontsize=16,color="magenta"];3739 -> 3874[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3739 -> 3875[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3740 -> 1329[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3740[label="compare (xuu50000 * Pos xuu510010) (Pos xuu500010 * xuu51000)",fontsize=16,color="magenta"];3740 -> 3876[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3740 -> 3877[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3741 -> 1329[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3741[label="compare (xuu50000 * Pos xuu510010) (Neg xuu500010 * xuu51000)",fontsize=16,color="magenta"];3741 -> 3878[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3741 -> 3879[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3742 -> 1329[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3742[label="compare (xuu50000 * Neg xuu510010) (Pos xuu500010 * xuu51000)",fontsize=16,color="magenta"];3742 -> 3880[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3742 -> 3881[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3743 -> 1329[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3743[label="compare (xuu50000 * Neg xuu510010) (Neg xuu500010 * xuu51000)",fontsize=16,color="magenta"];3743 -> 3882[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3743 -> 3883[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2077[label="primCmpNat (Succ xuu5000) xuu510",fontsize=16,color="burlywood",shape="box"];5052[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];2077 -> 5052[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5052 -> 2196[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5053[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];2077 -> 5053[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5053 -> 2197[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 2078[label="primCmpNat Zero xuu510",fontsize=16,color="burlywood",shape="box"];5054[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];2078 -> 5054[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5054 -> 2198[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5055[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];2078 -> 5055[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5055 -> 2199[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 1714[label="LT",fontsize=16,color="green",shape="box"];1715 -> 1329[label="",style="dashed", color="red", weight=0]; 28.89/12.42 1715[label="compare xuu500 xuu510",fontsize=16,color="magenta"];1715 -> 1933[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 1715 -> 1934[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3744[label="compare3 xuu50000 xuu51000",fontsize=16,color="black",shape="box"];3744 -> 3884[label="",style="solid", color="black", weight=3]; 28.89/12.42 3745[label="xuu50000",fontsize=16,color="green",shape="box"];3746[label="xuu51000",fontsize=16,color="green",shape="box"];3747[label="xuu50000",fontsize=16,color="green",shape="box"];3748[label="xuu51000",fontsize=16,color="green",shape="box"];3749[label="compare3 xuu50000 xuu51000",fontsize=16,color="black",shape="box"];3749 -> 3885[label="",style="solid", color="black", weight=3]; 28.89/12.42 3750[label="xuu50000",fontsize=16,color="green",shape="box"];3751[label="xuu51000",fontsize=16,color="green",shape="box"];3752[label="compare3 xuu50000 xuu51000",fontsize=16,color="black",shape="box"];3752 -> 3886[label="",style="solid", color="black", weight=3]; 28.89/12.42 3753[label="xuu50000",fontsize=16,color="green",shape="box"];3754[label="xuu51000",fontsize=16,color="green",shape="box"];3755[label="xuu50000",fontsize=16,color="green",shape="box"];3756[label="xuu51000",fontsize=16,color="green",shape="box"];3757[label="xuu50000",fontsize=16,color="green",shape="box"];3758[label="xuu51000",fontsize=16,color="green",shape="box"];3759[label="compare3 xuu50000 xuu51000",fontsize=16,color="black",shape="box"];3759 -> 3887[label="",style="solid", color="black", weight=3]; 28.89/12.42 3760[label="xuu50000",fontsize=16,color="green",shape="box"];3761[label="xuu51000",fontsize=16,color="green",shape="box"];3762[label="compare3 xuu50000 xuu51000",fontsize=16,color="black",shape="box"];3762 -> 3888[label="",style="solid", color="black", weight=3]; 28.89/12.42 3763[label="compare3 xuu50000 xuu51000",fontsize=16,color="black",shape="box"];3763 -> 3889[label="",style="solid", color="black", weight=3]; 28.89/12.42 3764[label="xuu51001",fontsize=16,color="green",shape="box"];3765[label="xuu50000",fontsize=16,color="green",shape="box"];3766[label="xuu50001",fontsize=16,color="green",shape="box"];3767[label="xuu51000",fontsize=16,color="green",shape="box"];3768[label="Integer xuu500000 * xuu51001",fontsize=16,color="burlywood",shape="box"];5056[label="xuu51001/Integer xuu510010",fontsize=10,color="white",style="solid",shape="box"];3768 -> 5056[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5056 -> 3890[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3769[label="xuu50001",fontsize=16,color="green",shape="box"];3770[label="xuu51000",fontsize=16,color="green",shape="box"];3771 -> 2992[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3771[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3771 -> 3891[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3771 -> 3892[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3772 -> 2993[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3772[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3772 -> 3893[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3772 -> 3894[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3773 -> 2994[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3773[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3773 -> 3895[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3773 -> 3896[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3774 -> 2995[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3774[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3774 -> 3897[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3774 -> 3898[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3775 -> 2996[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3775[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3775 -> 3899[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3775 -> 3900[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3776 -> 2997[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3776[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3776 -> 3901[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3776 -> 3902[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3777 -> 2998[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3777[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3777 -> 3903[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3777 -> 3904[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3778 -> 2999[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3778[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3778 -> 3905[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3778 -> 3906[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3779 -> 3000[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3779[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3779 -> 3907[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3779 -> 3908[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3780 -> 3001[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3780[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3780 -> 3909[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3780 -> 3910[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3781 -> 3002[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3781[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3781 -> 3911[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3781 -> 3912[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3782 -> 3003[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3782[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3782 -> 3913[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3782 -> 3914[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3783 -> 3004[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3783[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3783 -> 3915[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3783 -> 3916[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3784 -> 3005[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3784[label="xuu50002 <= xuu51002",fontsize=16,color="magenta"];3784 -> 3917[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3784 -> 3918[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3785 -> 2254[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3785[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3785 -> 3919[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3785 -> 3920[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3786 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3786[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3786 -> 3921[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3786 -> 3922[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3787 -> 2253[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3787[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3787 -> 3923[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3787 -> 3924[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3788 -> 2248[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3788[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3788 -> 3925[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3788 -> 3926[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3789 -> 2242[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3789[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3789 -> 3927[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3789 -> 3928[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3790 -> 2251[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3790[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3790 -> 3929[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3790 -> 3930[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3791 -> 2246[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3791[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3791 -> 3931[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3791 -> 3932[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3792 -> 2244[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3792[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3792 -> 3933[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3792 -> 3934[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3793 -> 2252[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3793[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3793 -> 3935[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3793 -> 3936[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3794 -> 2249[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3794[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3794 -> 3937[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3794 -> 3938[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3795 -> 2247[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3795[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3795 -> 3939[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3795 -> 3940[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3796 -> 2250[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3796[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3796 -> 3941[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3796 -> 3942[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3797 -> 2245[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3797[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3797 -> 3943[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3797 -> 3944[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3798 -> 2243[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3798[label="xuu50001 == xuu51001",fontsize=16,color="magenta"];3798 -> 3945[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3798 -> 3946[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3799[label="xuu51001",fontsize=16,color="green",shape="box"];3800[label="xuu50001",fontsize=16,color="green",shape="box"];3801[label="xuu51001",fontsize=16,color="green",shape="box"];3802[label="xuu50001",fontsize=16,color="green",shape="box"];3803[label="xuu51001",fontsize=16,color="green",shape="box"];3804[label="xuu50001",fontsize=16,color="green",shape="box"];3805[label="xuu51001",fontsize=16,color="green",shape="box"];3806[label="xuu50001",fontsize=16,color="green",shape="box"];3807[label="xuu51001",fontsize=16,color="green",shape="box"];3808[label="xuu50001",fontsize=16,color="green",shape="box"];3809[label="xuu51001",fontsize=16,color="green",shape="box"];3810[label="xuu50001",fontsize=16,color="green",shape="box"];3811[label="xuu51001",fontsize=16,color="green",shape="box"];3812[label="xuu50001",fontsize=16,color="green",shape="box"];3813[label="xuu51001",fontsize=16,color="green",shape="box"];3814[label="xuu50001",fontsize=16,color="green",shape="box"];3815[label="xuu51001",fontsize=16,color="green",shape="box"];3816[label="xuu50001",fontsize=16,color="green",shape="box"];3817[label="xuu51001",fontsize=16,color="green",shape="box"];3818[label="xuu50001",fontsize=16,color="green",shape="box"];3819[label="xuu51001",fontsize=16,color="green",shape="box"];3820[label="xuu50001",fontsize=16,color="green",shape="box"];3821[label="xuu51001",fontsize=16,color="green",shape="box"];3822[label="xuu50001",fontsize=16,color="green",shape="box"];3823[label="xuu51001",fontsize=16,color="green",shape="box"];3824[label="xuu50001",fontsize=16,color="green",shape="box"];3825[label="xuu51001",fontsize=16,color="green",shape="box"];3826[label="xuu50001",fontsize=16,color="green",shape="box"];2156[label="primPlusInt (Pos xuu5320) (Pos xuu1340)",fontsize=16,color="black",shape="box"];2156 -> 2284[label="",style="solid", color="black", weight=3]; 28.89/12.42 2157[label="primPlusInt (Pos xuu5320) (Neg xuu1340)",fontsize=16,color="black",shape="box"];2157 -> 2285[label="",style="solid", color="black", weight=3]; 28.89/12.42 2158[label="primPlusInt (Neg xuu5320) (Pos xuu1340)",fontsize=16,color="black",shape="box"];2158 -> 2286[label="",style="solid", color="black", weight=3]; 28.89/12.42 2159[label="primPlusInt (Neg xuu5320) (Neg xuu1340)",fontsize=16,color="black",shape="box"];2159 -> 2287[label="",style="solid", color="black", weight=3]; 28.89/12.42 4188[label="xuu64",fontsize=16,color="green",shape="box"];4189[label="xuu53",fontsize=16,color="green",shape="box"];4190[label="Succ Zero",fontsize=16,color="green",shape="box"];4191[label="Left xuu600",fontsize=16,color="green",shape="box"];4192[label="xuu61",fontsize=16,color="green",shape="box"];2277 -> 2383[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2277[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64 xuu530 xuu531 xuu532 xuu533 xuu534 (FiniteMap.sizeFM xuu534 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu533)",fontsize=16,color="magenta"];2277 -> 2384[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2278 -> 1867[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2278[label="FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2278 -> 2469[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2279[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2280[label="xuu643",fontsize=16,color="green",shape="box"];2281[label="FiniteMap.mkBalBranch6MkBalBranch00 (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 otherwise",fontsize=16,color="black",shape="box"];2281 -> 2470[label="",style="solid", color="black", weight=3]; 28.89/12.42 2282[label="FiniteMap.mkBalBranch6Single_L (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];2282 -> 2471[label="",style="solid", color="black", weight=3]; 28.89/12.42 4387[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4387 -> 4391[label="",style="solid", color="black", weight=3]; 28.89/12.42 4388[label="FiniteMap.sizeFM (FiniteMap.Branch xuu2660 xuu2661 xuu2662 xuu2663 xuu2664)",fontsize=16,color="black",shape="box"];4388 -> 4392[label="",style="solid", color="black", weight=3]; 28.89/12.42 4389[label="FiniteMap.mkBranchLeft_size xuu266 xuu263 xuu265",fontsize=16,color="black",shape="box"];4389 -> 4393[label="",style="solid", color="black", weight=3]; 28.89/12.42 4390[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];4193[label="xuu64",fontsize=16,color="green",shape="box"];4194[label="xuu45",fontsize=16,color="green",shape="box"];4195[label="Succ Zero",fontsize=16,color="green",shape="box"];4196[label="Right xuu600",fontsize=16,color="green",shape="box"];4197[label="xuu61",fontsize=16,color="green",shape="box"];2289 -> 2479[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2289[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64 xuu450 xuu451 xuu452 xuu453 xuu454 (FiniteMap.sizeFM xuu454 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu453)",fontsize=16,color="magenta"];2289 -> 2480[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2290 -> 1867[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2290[label="FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2290 -> 2513[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2291[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2292[label="xuu643",fontsize=16,color="green",shape="box"];2293[label="FiniteMap.mkBalBranch6MkBalBranch00 (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 otherwise",fontsize=16,color="black",shape="box"];2293 -> 2514[label="",style="solid", color="black", weight=3]; 28.89/12.42 2294[label="FiniteMap.mkBalBranch6Single_L (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];2294 -> 2515[label="",style="solid", color="black", weight=3]; 28.89/12.42 2172 -> 1566[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2172[label="primMulNat xuu311000100 (Succ xuu600000)",fontsize=16,color="magenta"];2172 -> 2300[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2172 -> 2301[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2171[label="primPlusNat xuu143 (Succ xuu600000)",fontsize=16,color="burlywood",shape="triangle"];5057[label="xuu143/Succ xuu1430",fontsize=10,color="white",style="solid",shape="box"];2171 -> 5057[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5057 -> 2302[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5058[label="xuu143/Zero",fontsize=10,color="white",style="solid",shape="box"];2171 -> 5058[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5058 -> 2303[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 2173[label="Succ xuu5000",fontsize=16,color="green",shape="box"];2174[label="xuu510",fontsize=16,color="green",shape="box"];2175 -> 1932[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2175[label="primCmpNat Zero (Succ xuu5100)",fontsize=16,color="magenta"];2175 -> 2296[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2175 -> 2297[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2176[label="EQ",fontsize=16,color="green",shape="box"];2177[label="GT",fontsize=16,color="green",shape="box"];2178[label="EQ",fontsize=16,color="green",shape="box"];2179[label="xuu510",fontsize=16,color="green",shape="box"];2180[label="Succ xuu5000",fontsize=16,color="green",shape="box"];2181[label="LT",fontsize=16,color="green",shape="box"];2182[label="EQ",fontsize=16,color="green",shape="box"];2183 -> 1932[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2183[label="primCmpNat (Succ xuu5100) Zero",fontsize=16,color="magenta"];2183 -> 2298[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2183 -> 2299[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2184[label="EQ",fontsize=16,color="green",shape="box"];3827 -> 1329[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3827[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3827 -> 3947[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3827 -> 3948[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3828 -> 3660[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3828[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3828 -> 3949[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3828 -> 3950[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3829 -> 3190[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3829[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3829 -> 3951[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3829 -> 3952[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3830 -> 3191[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3830[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3830 -> 3953[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3830 -> 3954[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3831 -> 3666[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3831[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3831 -> 3955[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3831 -> 3956[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3832 -> 3192[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3832[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3832 -> 3957[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3832 -> 3958[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3833 -> 3670[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3833[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3833 -> 3959[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3833 -> 3960[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3834 -> 3193[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3834[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3834 -> 3961[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3834 -> 3962[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3835 -> 3194[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3835[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3835 -> 3963[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3835 -> 3964[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3836 -> 3195[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3836[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3836 -> 3965[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3836 -> 3966[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3837 -> 3678[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3837[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3837 -> 3967[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3837 -> 3968[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3838 -> 3196[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3838[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3838 -> 3969[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3838 -> 3970[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3839 -> 3682[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3839[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3839 -> 3971[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3839 -> 3972[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3840 -> 3684[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3840[label="compare xuu50000 xuu51000",fontsize=16,color="magenta"];3840 -> 3973[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3840 -> 3974[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3841[label="primCompAux0 xuu223 LT",fontsize=16,color="black",shape="box"];3841 -> 3975[label="",style="solid", color="black", weight=3]; 28.89/12.42 3842[label="primCompAux0 xuu223 EQ",fontsize=16,color="black",shape="box"];3842 -> 3976[label="",style="solid", color="black", weight=3]; 28.89/12.42 3843[label="primCompAux0 xuu223 GT",fontsize=16,color="black",shape="box"];3843 -> 3977[label="",style="solid", color="black", weight=3]; 28.89/12.42 3868 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3868[label="xuu50000 * Pos xuu510010",fontsize=16,color="magenta"];3868 -> 3994[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3868 -> 3995[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3869 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3869[label="Pos xuu500010 * xuu51000",fontsize=16,color="magenta"];3869 -> 3996[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3869 -> 3997[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3870 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3870[label="xuu50000 * Pos xuu510010",fontsize=16,color="magenta"];3870 -> 3998[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3870 -> 3999[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3871 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3871[label="Neg xuu500010 * xuu51000",fontsize=16,color="magenta"];3871 -> 4000[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3871 -> 4001[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3872 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3872[label="xuu50000 * Neg xuu510010",fontsize=16,color="magenta"];3872 -> 4002[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3872 -> 4003[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3873 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3873[label="Pos xuu500010 * xuu51000",fontsize=16,color="magenta"];3873 -> 4004[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3873 -> 4005[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3874 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3874[label="xuu50000 * Neg xuu510010",fontsize=16,color="magenta"];3874 -> 4006[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3874 -> 4007[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3875 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3875[label="Neg xuu500010 * xuu51000",fontsize=16,color="magenta"];3875 -> 4008[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3875 -> 4009[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3876 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3876[label="xuu50000 * Pos xuu510010",fontsize=16,color="magenta"];3876 -> 4010[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3876 -> 4011[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3877 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3877[label="Pos xuu500010 * xuu51000",fontsize=16,color="magenta"];3877 -> 4012[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3877 -> 4013[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3878 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3878[label="xuu50000 * Pos xuu510010",fontsize=16,color="magenta"];3878 -> 4014[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3878 -> 4015[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3879 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3879[label="Neg xuu500010 * xuu51000",fontsize=16,color="magenta"];3879 -> 4016[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3879 -> 4017[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3880 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3880[label="xuu50000 * Neg xuu510010",fontsize=16,color="magenta"];3880 -> 4018[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3880 -> 4019[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3881 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3881[label="Pos xuu500010 * xuu51000",fontsize=16,color="magenta"];3881 -> 4020[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3881 -> 4021[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3882 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3882[label="xuu50000 * Neg xuu510010",fontsize=16,color="magenta"];3882 -> 4022[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3882 -> 4023[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3883 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3883[label="Neg xuu500010 * xuu51000",fontsize=16,color="magenta"];3883 -> 4024[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3883 -> 4025[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2196[label="primCmpNat (Succ xuu5000) (Succ xuu5100)",fontsize=16,color="black",shape="box"];2196 -> 2304[label="",style="solid", color="black", weight=3]; 28.89/12.42 2197[label="primCmpNat (Succ xuu5000) Zero",fontsize=16,color="black",shape="box"];2197 -> 2305[label="",style="solid", color="black", weight=3]; 28.89/12.42 2198[label="primCmpNat Zero (Succ xuu5100)",fontsize=16,color="black",shape="box"];2198 -> 2306[label="",style="solid", color="black", weight=3]; 28.89/12.42 2199[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2199 -> 2307[label="",style="solid", color="black", weight=3]; 28.89/12.42 1933[label="xuu500",fontsize=16,color="green",shape="box"];1934[label="xuu510",fontsize=16,color="green",shape="box"];3884 -> 4026[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3884[label="compare2 xuu50000 xuu51000 (xuu50000 == xuu51000)",fontsize=16,color="magenta"];3884 -> 4027[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3885 -> 4030[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3885[label="compare2 xuu50000 xuu51000 (xuu50000 == xuu51000)",fontsize=16,color="magenta"];3885 -> 4031[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3886 -> 2204[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3886[label="compare2 xuu50000 xuu51000 (xuu50000 == xuu51000)",fontsize=16,color="magenta"];3886 -> 4034[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3886 -> 4035[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3886 -> 4036[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3887 -> 4037[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3887[label="compare2 xuu50000 xuu51000 (xuu50000 == xuu51000)",fontsize=16,color="magenta"];3887 -> 4038[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3888 -> 4042[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3888[label="compare2 xuu50000 xuu51000 (xuu50000 == xuu51000)",fontsize=16,color="magenta"];3888 -> 4043[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3889 -> 4045[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3889[label="compare2 xuu50000 xuu51000 (xuu50000 == xuu51000)",fontsize=16,color="magenta"];3889 -> 4046[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3890[label="Integer xuu500000 * Integer xuu510010",fontsize=16,color="black",shape="box"];3890 -> 4047[label="",style="solid", color="black", weight=3]; 28.89/12.42 3891[label="xuu50002",fontsize=16,color="green",shape="box"];3892[label="xuu51002",fontsize=16,color="green",shape="box"];3893[label="xuu50002",fontsize=16,color="green",shape="box"];3894[label="xuu51002",fontsize=16,color="green",shape="box"];3895[label="xuu50002",fontsize=16,color="green",shape="box"];3896[label="xuu51002",fontsize=16,color="green",shape="box"];3897[label="xuu50002",fontsize=16,color="green",shape="box"];3898[label="xuu51002",fontsize=16,color="green",shape="box"];3899[label="xuu50002",fontsize=16,color="green",shape="box"];3900[label="xuu51002",fontsize=16,color="green",shape="box"];3901[label="xuu50002",fontsize=16,color="green",shape="box"];3902[label="xuu51002",fontsize=16,color="green",shape="box"];3903[label="xuu50002",fontsize=16,color="green",shape="box"];3904[label="xuu51002",fontsize=16,color="green",shape="box"];3905[label="xuu50002",fontsize=16,color="green",shape="box"];3906[label="xuu51002",fontsize=16,color="green",shape="box"];3907[label="xuu50002",fontsize=16,color="green",shape="box"];3908[label="xuu51002",fontsize=16,color="green",shape="box"];3909[label="xuu50002",fontsize=16,color="green",shape="box"];3910[label="xuu51002",fontsize=16,color="green",shape="box"];3911[label="xuu50002",fontsize=16,color="green",shape="box"];3912[label="xuu51002",fontsize=16,color="green",shape="box"];3913[label="xuu50002",fontsize=16,color="green",shape="box"];3914[label="xuu51002",fontsize=16,color="green",shape="box"];3915[label="xuu50002",fontsize=16,color="green",shape="box"];3916[label="xuu51002",fontsize=16,color="green",shape="box"];3917[label="xuu50002",fontsize=16,color="green",shape="box"];3918[label="xuu51002",fontsize=16,color="green",shape="box"];3919[label="xuu51001",fontsize=16,color="green",shape="box"];3920[label="xuu50001",fontsize=16,color="green",shape="box"];3921[label="xuu51001",fontsize=16,color="green",shape="box"];3922[label="xuu50001",fontsize=16,color="green",shape="box"];3923[label="xuu51001",fontsize=16,color="green",shape="box"];3924[label="xuu50001",fontsize=16,color="green",shape="box"];3925[label="xuu51001",fontsize=16,color="green",shape="box"];3926[label="xuu50001",fontsize=16,color="green",shape="box"];3927[label="xuu51001",fontsize=16,color="green",shape="box"];3928[label="xuu50001",fontsize=16,color="green",shape="box"];3929[label="xuu51001",fontsize=16,color="green",shape="box"];3930[label="xuu50001",fontsize=16,color="green",shape="box"];3931[label="xuu51001",fontsize=16,color="green",shape="box"];3932[label="xuu50001",fontsize=16,color="green",shape="box"];3933[label="xuu51001",fontsize=16,color="green",shape="box"];3934[label="xuu50001",fontsize=16,color="green",shape="box"];3935[label="xuu51001",fontsize=16,color="green",shape="box"];3936[label="xuu50001",fontsize=16,color="green",shape="box"];3937[label="xuu51001",fontsize=16,color="green",shape="box"];3938[label="xuu50001",fontsize=16,color="green",shape="box"];3939[label="xuu51001",fontsize=16,color="green",shape="box"];3940[label="xuu50001",fontsize=16,color="green",shape="box"];3941[label="xuu51001",fontsize=16,color="green",shape="box"];3942[label="xuu50001",fontsize=16,color="green",shape="box"];3943[label="xuu51001",fontsize=16,color="green",shape="box"];3944[label="xuu50001",fontsize=16,color="green",shape="box"];3945[label="xuu51001",fontsize=16,color="green",shape="box"];3946[label="xuu50001",fontsize=16,color="green",shape="box"];2284[label="Pos (primPlusNat xuu5320 xuu1340)",fontsize=16,color="green",shape="box"];2284 -> 2473[label="",style="dashed", color="green", weight=3]; 28.89/12.42 2285[label="primMinusNat xuu5320 xuu1340",fontsize=16,color="burlywood",shape="triangle"];5059[label="xuu5320/Succ xuu53200",fontsize=10,color="white",style="solid",shape="box"];2285 -> 5059[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5059 -> 2474[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5060[label="xuu5320/Zero",fontsize=10,color="white",style="solid",shape="box"];2285 -> 5060[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5060 -> 2475[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 2286 -> 2285[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2286[label="primMinusNat xuu1340 xuu5320",fontsize=16,color="magenta"];2286 -> 2476[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2286 -> 2477[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2287[label="Neg (primPlusNat xuu5320 xuu1340)",fontsize=16,color="green",shape="box"];2287 -> 2478[label="",style="dashed", color="green", weight=3]; 28.89/12.42 2384 -> 1508[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2384[label="FiniteMap.sizeFM xuu534 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu533",fontsize=16,color="magenta"];2384 -> 2517[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2384 -> 2518[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2383[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64 xuu530 xuu531 xuu532 xuu533 xuu534 xuu152",fontsize=16,color="burlywood",shape="triangle"];5061[label="xuu152/False",fontsize=10,color="white",style="solid",shape="box"];2383 -> 5061[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5061 -> 2519[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5062[label="xuu152/True",fontsize=10,color="white",style="solid",shape="box"];2383 -> 5062[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5062 -> 2520[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 2469[label="xuu644",fontsize=16,color="green",shape="box"];2470[label="FiniteMap.mkBalBranch6MkBalBranch00 (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2470 -> 2521[label="",style="solid", color="black", weight=3]; 28.89/12.42 2471 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2471[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu640 xuu641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Left xuu600) xuu61 xuu53 xuu643) xuu644",fontsize=16,color="magenta"];2471 -> 4198[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2471 -> 4199[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2471 -> 4200[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2471 -> 4201[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2471 -> 4202[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4391[label="Pos Zero",fontsize=16,color="green",shape="box"];4392[label="xuu2662",fontsize=16,color="green",shape="box"];4393 -> 4385[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4393[label="FiniteMap.sizeFM xuu265",fontsize=16,color="magenta"];4393 -> 4394[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2480 -> 1508[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2480[label="FiniteMap.sizeFM xuu454 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu453",fontsize=16,color="magenta"];2480 -> 2531[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2480 -> 2532[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2479[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64 xuu450 xuu451 xuu452 xuu453 xuu454 xuu156",fontsize=16,color="burlywood",shape="triangle"];5063[label="xuu156/False",fontsize=10,color="white",style="solid",shape="box"];2479 -> 5063[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5063 -> 2533[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5064[label="xuu156/True",fontsize=10,color="white",style="solid",shape="box"];2479 -> 5064[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5064 -> 2534[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 2513[label="xuu644",fontsize=16,color="green",shape="box"];2514[label="FiniteMap.mkBalBranch6MkBalBranch00 (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2514 -> 3025[label="",style="solid", color="black", weight=3]; 28.89/12.42 2515 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2515[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu640 xuu641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Right xuu600) xuu61 xuu45 xuu643) xuu644",fontsize=16,color="magenta"];2515 -> 4203[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2515 -> 4204[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2515 -> 4205[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2515 -> 4206[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2515 -> 4207[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2300[label="xuu311000100",fontsize=16,color="green",shape="box"];2301[label="Succ xuu600000",fontsize=16,color="green",shape="box"];2302[label="primPlusNat (Succ xuu1430) (Succ xuu600000)",fontsize=16,color="black",shape="box"];2302 -> 2535[label="",style="solid", color="black", weight=3]; 28.89/12.42 2303[label="primPlusNat Zero (Succ xuu600000)",fontsize=16,color="black",shape="box"];2303 -> 2536[label="",style="solid", color="black", weight=3]; 28.89/12.42 2296[label="Zero",fontsize=16,color="green",shape="box"];2297[label="Succ xuu5100",fontsize=16,color="green",shape="box"];2298[label="Succ xuu5100",fontsize=16,color="green",shape="box"];2299[label="Zero",fontsize=16,color="green",shape="box"];3947[label="xuu50000",fontsize=16,color="green",shape="box"];3948[label="xuu51000",fontsize=16,color="green",shape="box"];3949[label="xuu51000",fontsize=16,color="green",shape="box"];3950[label="xuu50000",fontsize=16,color="green",shape="box"];3951[label="xuu50000",fontsize=16,color="green",shape="box"];3952[label="xuu51000",fontsize=16,color="green",shape="box"];3953[label="xuu50000",fontsize=16,color="green",shape="box"];3954[label="xuu51000",fontsize=16,color="green",shape="box"];3955[label="xuu51000",fontsize=16,color="green",shape="box"];3956[label="xuu50000",fontsize=16,color="green",shape="box"];3957[label="xuu50000",fontsize=16,color="green",shape="box"];3958[label="xuu51000",fontsize=16,color="green",shape="box"];3959[label="xuu51000",fontsize=16,color="green",shape="box"];3960[label="xuu50000",fontsize=16,color="green",shape="box"];3961[label="xuu50000",fontsize=16,color="green",shape="box"];3962[label="xuu51000",fontsize=16,color="green",shape="box"];3963[label="xuu50000",fontsize=16,color="green",shape="box"];3964[label="xuu51000",fontsize=16,color="green",shape="box"];3965[label="xuu50000",fontsize=16,color="green",shape="box"];3966[label="xuu51000",fontsize=16,color="green",shape="box"];3967[label="xuu51000",fontsize=16,color="green",shape="box"];3968[label="xuu50000",fontsize=16,color="green",shape="box"];3969[label="xuu50000",fontsize=16,color="green",shape="box"];3970[label="xuu51000",fontsize=16,color="green",shape="box"];3971[label="xuu51000",fontsize=16,color="green",shape="box"];3972[label="xuu50000",fontsize=16,color="green",shape="box"];3973[label="xuu51000",fontsize=16,color="green",shape="box"];3974[label="xuu50000",fontsize=16,color="green",shape="box"];3975[label="LT",fontsize=16,color="green",shape="box"];3976[label="xuu223",fontsize=16,color="green",shape="box"];3977[label="GT",fontsize=16,color="green",shape="box"];3994[label="Pos xuu510010",fontsize=16,color="green",shape="box"];3995[label="xuu50000",fontsize=16,color="green",shape="box"];3996[label="xuu51000",fontsize=16,color="green",shape="box"];3997[label="Pos xuu500010",fontsize=16,color="green",shape="box"];3998[label="Pos xuu510010",fontsize=16,color="green",shape="box"];3999[label="xuu50000",fontsize=16,color="green",shape="box"];4000[label="xuu51000",fontsize=16,color="green",shape="box"];4001[label="Neg xuu500010",fontsize=16,color="green",shape="box"];4002[label="Neg xuu510010",fontsize=16,color="green",shape="box"];4003[label="xuu50000",fontsize=16,color="green",shape="box"];4004[label="xuu51000",fontsize=16,color="green",shape="box"];4005[label="Pos xuu500010",fontsize=16,color="green",shape="box"];4006[label="Neg xuu510010",fontsize=16,color="green",shape="box"];4007[label="xuu50000",fontsize=16,color="green",shape="box"];4008[label="xuu51000",fontsize=16,color="green",shape="box"];4009[label="Neg xuu500010",fontsize=16,color="green",shape="box"];4010[label="Pos xuu510010",fontsize=16,color="green",shape="box"];4011[label="xuu50000",fontsize=16,color="green",shape="box"];4012[label="xuu51000",fontsize=16,color="green",shape="box"];4013[label="Pos xuu500010",fontsize=16,color="green",shape="box"];4014[label="Pos xuu510010",fontsize=16,color="green",shape="box"];4015[label="xuu50000",fontsize=16,color="green",shape="box"];4016[label="xuu51000",fontsize=16,color="green",shape="box"];4017[label="Neg xuu500010",fontsize=16,color="green",shape="box"];4018[label="Neg xuu510010",fontsize=16,color="green",shape="box"];4019[label="xuu50000",fontsize=16,color="green",shape="box"];4020[label="xuu51000",fontsize=16,color="green",shape="box"];4021[label="Pos xuu500010",fontsize=16,color="green",shape="box"];4022[label="Neg xuu510010",fontsize=16,color="green",shape="box"];4023[label="xuu50000",fontsize=16,color="green",shape="box"];4024[label="xuu51000",fontsize=16,color="green",shape="box"];4025[label="Neg xuu500010",fontsize=16,color="green",shape="box"];2304 -> 1932[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2304[label="primCmpNat xuu5000 xuu5100",fontsize=16,color="magenta"];2304 -> 2537[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2304 -> 2538[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2305[label="GT",fontsize=16,color="green",shape="box"];2306[label="LT",fontsize=16,color="green",shape="box"];2307[label="EQ",fontsize=16,color="green",shape="box"];4027 -> 91[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4027[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];4027 -> 4049[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4027 -> 4050[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4026[label="compare2 xuu50000 xuu51000 xuu237",fontsize=16,color="burlywood",shape="triangle"];5065[label="xuu237/False",fontsize=10,color="white",style="solid",shape="box"];4026 -> 5065[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5065 -> 4051[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5066[label="xuu237/True",fontsize=10,color="white",style="solid",shape="box"];4026 -> 5066[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5066 -> 4052[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4031 -> 2242[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4031[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];4031 -> 4053[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4031 -> 4054[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4030[label="compare2 xuu50000 xuu51000 xuu238",fontsize=16,color="burlywood",shape="triangle"];5067[label="xuu238/False",fontsize=10,color="white",style="solid",shape="box"];4030 -> 5067[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5067 -> 4055[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5068[label="xuu238/True",fontsize=10,color="white",style="solid",shape="box"];4030 -> 5068[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5068 -> 4056[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4034 -> 2246[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4034[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];4034 -> 4057[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4034 -> 4058[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4035[label="xuu51000",fontsize=16,color="green",shape="box"];4036[label="xuu50000",fontsize=16,color="green",shape="box"];4038 -> 2247[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4038[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];4038 -> 4059[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4038 -> 4060[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4037[label="compare2 xuu50000 xuu51000 xuu239",fontsize=16,color="burlywood",shape="triangle"];5069[label="xuu239/False",fontsize=10,color="white",style="solid",shape="box"];4037 -> 5069[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5069 -> 4061[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5070[label="xuu239/True",fontsize=10,color="white",style="solid",shape="box"];4037 -> 5070[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5070 -> 4062[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4043 -> 2245[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4043[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];4043 -> 4063[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4043 -> 4064[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4042[label="compare2 xuu50000 xuu51000 xuu240",fontsize=16,color="burlywood",shape="triangle"];5071[label="xuu240/False",fontsize=10,color="white",style="solid",shape="box"];4042 -> 5071[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5071 -> 4065[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5072[label="xuu240/True",fontsize=10,color="white",style="solid",shape="box"];4042 -> 5072[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5072 -> 4066[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4046 -> 2243[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4046[label="xuu50000 == xuu51000",fontsize=16,color="magenta"];4046 -> 4067[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4046 -> 4068[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4045[label="compare2 xuu50000 xuu51000 xuu241",fontsize=16,color="burlywood",shape="triangle"];5073[label="xuu241/False",fontsize=10,color="white",style="solid",shape="box"];4045 -> 5073[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5073 -> 4069[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5074[label="xuu241/True",fontsize=10,color="white",style="solid",shape="box"];4045 -> 5074[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5074 -> 4070[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4047[label="Integer (primMulInt xuu500000 xuu510010)",fontsize=16,color="green",shape="box"];4047 -> 4093[label="",style="dashed", color="green", weight=3]; 28.89/12.42 2473[label="primPlusNat xuu5320 xuu1340",fontsize=16,color="burlywood",shape="triangle"];5075[label="xuu5320/Succ xuu53200",fontsize=10,color="white",style="solid",shape="box"];2473 -> 5075[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5075 -> 2523[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5076[label="xuu5320/Zero",fontsize=10,color="white",style="solid",shape="box"];2473 -> 5076[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5076 -> 2524[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 2474[label="primMinusNat (Succ xuu53200) xuu1340",fontsize=16,color="burlywood",shape="box"];5077[label="xuu1340/Succ xuu13400",fontsize=10,color="white",style="solid",shape="box"];2474 -> 5077[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5077 -> 2525[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5078[label="xuu1340/Zero",fontsize=10,color="white",style="solid",shape="box"];2474 -> 5078[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5078 -> 2526[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 2475[label="primMinusNat Zero xuu1340",fontsize=16,color="burlywood",shape="box"];5079[label="xuu1340/Succ xuu13400",fontsize=10,color="white",style="solid",shape="box"];2475 -> 5079[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5079 -> 2527[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5080[label="xuu1340/Zero",fontsize=10,color="white",style="solid",shape="box"];2475 -> 5080[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5080 -> 2528[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 2476[label="xuu5320",fontsize=16,color="green",shape="box"];2477[label="xuu1340",fontsize=16,color="green",shape="box"];2478 -> 2473[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2478[label="primPlusNat xuu5320 xuu1340",fontsize=16,color="magenta"];2478 -> 2529[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2478 -> 2530[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2517 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2517[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu533",fontsize=16,color="magenta"];2517 -> 3027[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2517 -> 3028[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2518 -> 1867[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2518[label="FiniteMap.sizeFM xuu534",fontsize=16,color="magenta"];2518 -> 3029[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2519[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64 xuu530 xuu531 xuu532 xuu533 xuu534 False",fontsize=16,color="black",shape="box"];2519 -> 3030[label="",style="solid", color="black", weight=3]; 28.89/12.42 2520[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64 xuu530 xuu531 xuu532 xuu533 xuu534 True",fontsize=16,color="black",shape="box"];2520 -> 3031[label="",style="solid", color="black", weight=3]; 28.89/12.42 2521[label="FiniteMap.mkBalBranch6Double_L (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="burlywood",shape="box"];5081[label="xuu643/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2521 -> 5081[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5081 -> 3032[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5082[label="xuu643/FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434",fontsize=10,color="white",style="solid",shape="box"];2521 -> 5082[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5082 -> 3033[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4198[label="xuu644",fontsize=16,color="green",shape="box"];4199 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4199[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Left xuu600) xuu61 xuu53 xuu643",fontsize=16,color="magenta"];4199 -> 4309[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4199 -> 4310[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4199 -> 4311[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4199 -> 4312[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4199 -> 4313[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4200[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4201[label="xuu640",fontsize=16,color="green",shape="box"];4202[label="xuu641",fontsize=16,color="green",shape="box"];4394[label="xuu265",fontsize=16,color="green",shape="box"];2531 -> 690[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2531[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu453",fontsize=16,color="magenta"];2531 -> 3043[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2531 -> 3044[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2532 -> 1867[label="",style="dashed", color="red", weight=0]; 28.89/12.42 2532[label="FiniteMap.sizeFM xuu454",fontsize=16,color="magenta"];2532 -> 3045[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2533[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64 xuu450 xuu451 xuu452 xuu453 xuu454 False",fontsize=16,color="black",shape="box"];2533 -> 3046[label="",style="solid", color="black", weight=3]; 28.89/12.42 2534[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64 xuu450 xuu451 xuu452 xuu453 xuu454 True",fontsize=16,color="black",shape="box"];2534 -> 3047[label="",style="solid", color="black", weight=3]; 28.89/12.42 3025[label="FiniteMap.mkBalBranch6Double_L (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="burlywood",shape="box"];5083[label="xuu643/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3025 -> 5083[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5083 -> 3165[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5084[label="xuu643/FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434",fontsize=10,color="white",style="solid",shape="box"];3025 -> 5084[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5084 -> 3166[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4203[label="xuu644",fontsize=16,color="green",shape="box"];4204 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4204[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Right xuu600) xuu61 xuu45 xuu643",fontsize=16,color="magenta"];4204 -> 4314[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4204 -> 4315[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4204 -> 4316[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4204 -> 4317[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4204 -> 4318[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4205[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4206[label="xuu640",fontsize=16,color="green",shape="box"];4207[label="xuu641",fontsize=16,color="green",shape="box"];2535[label="Succ (Succ (primPlusNat xuu1430 xuu600000))",fontsize=16,color="green",shape="box"];2535 -> 3048[label="",style="dashed", color="green", weight=3]; 28.89/12.42 2536[label="Succ xuu600000",fontsize=16,color="green",shape="box"];2537[label="xuu5000",fontsize=16,color="green",shape="box"];2538[label="xuu5100",fontsize=16,color="green",shape="box"];4049[label="xuu51000",fontsize=16,color="green",shape="box"];4050[label="xuu50000",fontsize=16,color="green",shape="box"];4051[label="compare2 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4051 -> 4094[label="",style="solid", color="black", weight=3]; 28.89/12.42 4052[label="compare2 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4052 -> 4095[label="",style="solid", color="black", weight=3]; 28.89/12.42 4053[label="xuu51000",fontsize=16,color="green",shape="box"];4054[label="xuu50000",fontsize=16,color="green",shape="box"];4055[label="compare2 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4055 -> 4096[label="",style="solid", color="black", weight=3]; 28.89/12.42 4056[label="compare2 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4056 -> 4097[label="",style="solid", color="black", weight=3]; 28.89/12.42 4057[label="xuu51000",fontsize=16,color="green",shape="box"];4058[label="xuu50000",fontsize=16,color="green",shape="box"];4059[label="xuu51000",fontsize=16,color="green",shape="box"];4060[label="xuu50000",fontsize=16,color="green",shape="box"];4061[label="compare2 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4061 -> 4098[label="",style="solid", color="black", weight=3]; 28.89/12.42 4062[label="compare2 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4062 -> 4099[label="",style="solid", color="black", weight=3]; 28.89/12.42 4063[label="xuu51000",fontsize=16,color="green",shape="box"];4064[label="xuu50000",fontsize=16,color="green",shape="box"];4065[label="compare2 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4065 -> 4100[label="",style="solid", color="black", weight=3]; 28.89/12.42 4066[label="compare2 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4066 -> 4101[label="",style="solid", color="black", weight=3]; 28.89/12.42 4067[label="xuu51000",fontsize=16,color="green",shape="box"];4068[label="xuu50000",fontsize=16,color="green",shape="box"];4069[label="compare2 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4069 -> 4102[label="",style="solid", color="black", weight=3]; 28.89/12.42 4070[label="compare2 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4070 -> 4103[label="",style="solid", color="black", weight=3]; 28.89/12.42 4093 -> 937[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4093[label="primMulInt xuu500000 xuu510010",fontsize=16,color="magenta"];4093 -> 4117[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4093 -> 4118[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 2523[label="primPlusNat (Succ xuu53200) xuu1340",fontsize=16,color="burlywood",shape="box"];5085[label="xuu1340/Succ xuu13400",fontsize=10,color="white",style="solid",shape="box"];2523 -> 5085[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5085 -> 3035[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5086[label="xuu1340/Zero",fontsize=10,color="white",style="solid",shape="box"];2523 -> 5086[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5086 -> 3036[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 2524[label="primPlusNat Zero xuu1340",fontsize=16,color="burlywood",shape="box"];5087[label="xuu1340/Succ xuu13400",fontsize=10,color="white",style="solid",shape="box"];2524 -> 5087[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5087 -> 3037[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5088[label="xuu1340/Zero",fontsize=10,color="white",style="solid",shape="box"];2524 -> 5088[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5088 -> 3038[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 2525[label="primMinusNat (Succ xuu53200) (Succ xuu13400)",fontsize=16,color="black",shape="box"];2525 -> 3039[label="",style="solid", color="black", weight=3]; 28.89/12.42 2526[label="primMinusNat (Succ xuu53200) Zero",fontsize=16,color="black",shape="box"];2526 -> 3040[label="",style="solid", color="black", weight=3]; 28.89/12.42 2527[label="primMinusNat Zero (Succ xuu13400)",fontsize=16,color="black",shape="box"];2527 -> 3041[label="",style="solid", color="black", weight=3]; 28.89/12.42 2528[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2528 -> 3042[label="",style="solid", color="black", weight=3]; 28.89/12.42 2529[label="xuu1340",fontsize=16,color="green",shape="box"];2530[label="xuu5320",fontsize=16,color="green",shape="box"];3027 -> 1867[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3027[label="FiniteMap.sizeFM xuu533",fontsize=16,color="magenta"];3027 -> 3168[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3028[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3029[label="xuu534",fontsize=16,color="green",shape="box"];3030[label="FiniteMap.mkBalBranch6MkBalBranch10 (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64 xuu530 xuu531 xuu532 xuu533 xuu534 otherwise",fontsize=16,color="black",shape="box"];3030 -> 3169[label="",style="solid", color="black", weight=3]; 28.89/12.42 3031[label="FiniteMap.mkBalBranch6Single_R (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64",fontsize=16,color="black",shape="box"];3031 -> 3170[label="",style="solid", color="black", weight=3]; 28.89/12.42 3032[label="FiniteMap.mkBalBranch6Double_L (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644)",fontsize=16,color="black",shape="box"];3032 -> 3171[label="",style="solid", color="black", weight=3]; 28.89/12.42 3033[label="FiniteMap.mkBalBranch6Double_L (Left xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644) xuu53 xuu53 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644)",fontsize=16,color="black",shape="box"];3033 -> 3172[label="",style="solid", color="black", weight=3]; 28.89/12.42 4309[label="xuu643",fontsize=16,color="green",shape="box"];4310[label="xuu53",fontsize=16,color="green",shape="box"];4311[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4312[label="Left xuu600",fontsize=16,color="green",shape="box"];4313[label="xuu61",fontsize=16,color="green",shape="box"];3043 -> 1867[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3043[label="FiniteMap.sizeFM xuu453",fontsize=16,color="magenta"];3043 -> 3181[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3044[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3045[label="xuu454",fontsize=16,color="green",shape="box"];3046[label="FiniteMap.mkBalBranch6MkBalBranch10 (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64 xuu450 xuu451 xuu452 xuu453 xuu454 otherwise",fontsize=16,color="black",shape="box"];3046 -> 3182[label="",style="solid", color="black", weight=3]; 28.89/12.42 3047[label="FiniteMap.mkBalBranch6Single_R (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64",fontsize=16,color="black",shape="box"];3047 -> 3183[label="",style="solid", color="black", weight=3]; 28.89/12.42 3165[label="FiniteMap.mkBalBranch6Double_L (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644)",fontsize=16,color="black",shape="box"];3165 -> 3233[label="",style="solid", color="black", weight=3]; 28.89/12.42 3166[label="FiniteMap.mkBalBranch6Double_L (Right xuu600) xuu61 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644) xuu45 xuu45 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644)",fontsize=16,color="black",shape="box"];3166 -> 3234[label="",style="solid", color="black", weight=3]; 28.89/12.42 4314[label="xuu643",fontsize=16,color="green",shape="box"];4315[label="xuu45",fontsize=16,color="green",shape="box"];4316[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4317[label="Right xuu600",fontsize=16,color="green",shape="box"];4318[label="xuu61",fontsize=16,color="green",shape="box"];3048 -> 2473[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3048[label="primPlusNat xuu1430 xuu600000",fontsize=16,color="magenta"];3048 -> 3184[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3048 -> 3185[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4094 -> 4119[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4094[label="compare1 xuu50000 xuu51000 (xuu50000 <= xuu51000)",fontsize=16,color="magenta"];4094 -> 4120[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4095[label="EQ",fontsize=16,color="green",shape="box"];4096 -> 4121[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4096[label="compare1 xuu50000 xuu51000 (xuu50000 <= xuu51000)",fontsize=16,color="magenta"];4096 -> 4122[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4097[label="EQ",fontsize=16,color="green",shape="box"];4098 -> 4123[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4098[label="compare1 xuu50000 xuu51000 (xuu50000 <= xuu51000)",fontsize=16,color="magenta"];4098 -> 4124[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4099[label="EQ",fontsize=16,color="green",shape="box"];4100 -> 4125[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4100[label="compare1 xuu50000 xuu51000 (xuu50000 <= xuu51000)",fontsize=16,color="magenta"];4100 -> 4126[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4101[label="EQ",fontsize=16,color="green",shape="box"];4102 -> 4127[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4102[label="compare1 xuu50000 xuu51000 (xuu50000 <= xuu51000)",fontsize=16,color="magenta"];4102 -> 4128[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4103[label="EQ",fontsize=16,color="green",shape="box"];4117[label="xuu510010",fontsize=16,color="green",shape="box"];4118[label="xuu500000",fontsize=16,color="green",shape="box"];3035[label="primPlusNat (Succ xuu53200) (Succ xuu13400)",fontsize=16,color="black",shape="box"];3035 -> 3175[label="",style="solid", color="black", weight=3]; 28.89/12.42 3036[label="primPlusNat (Succ xuu53200) Zero",fontsize=16,color="black",shape="box"];3036 -> 3176[label="",style="solid", color="black", weight=3]; 28.89/12.42 3037[label="primPlusNat Zero (Succ xuu13400)",fontsize=16,color="black",shape="box"];3037 -> 3177[label="",style="solid", color="black", weight=3]; 28.89/12.42 3038[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3038 -> 3178[label="",style="solid", color="black", weight=3]; 28.89/12.42 3039 -> 2285[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3039[label="primMinusNat xuu53200 xuu13400",fontsize=16,color="magenta"];3039 -> 3179[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3039 -> 3180[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3040[label="Pos (Succ xuu53200)",fontsize=16,color="green",shape="box"];3041[label="Neg (Succ xuu13400)",fontsize=16,color="green",shape="box"];3042[label="Pos Zero",fontsize=16,color="green",shape="box"];3168[label="xuu533",fontsize=16,color="green",shape="box"];3169[label="FiniteMap.mkBalBranch6MkBalBranch10 (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64 xuu530 xuu531 xuu532 xuu533 xuu534 True",fontsize=16,color="black",shape="box"];3169 -> 3237[label="",style="solid", color="black", weight=3]; 28.89/12.42 3170 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3170[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu530 xuu531 xuu533 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Left xuu600) xuu61 xuu534 xuu64)",fontsize=16,color="magenta"];3170 -> 4208[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3170 -> 4209[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3170 -> 4210[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3170 -> 4211[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3170 -> 4212[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3171[label="error []",fontsize=16,color="red",shape="box"];3172 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3172[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu6430 xuu6431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Left xuu600) xuu61 xuu53 xuu6433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644)",fontsize=16,color="magenta"];3172 -> 4213[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3172 -> 4214[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3172 -> 4215[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3172 -> 4216[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3172 -> 4217[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3181[label="xuu453",fontsize=16,color="green",shape="box"];3182[label="FiniteMap.mkBalBranch6MkBalBranch10 (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64 xuu450 xuu451 xuu452 xuu453 xuu454 True",fontsize=16,color="black",shape="box"];3182 -> 3583[label="",style="solid", color="black", weight=3]; 28.89/12.42 3183 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3183[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu450 xuu451 xuu453 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Right xuu600) xuu61 xuu454 xuu64)",fontsize=16,color="magenta"];3183 -> 4223[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3183 -> 4224[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3183 -> 4225[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3183 -> 4226[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3183 -> 4227[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3233[label="error []",fontsize=16,color="red",shape="box"];3234 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3234[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu6430 xuu6431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Right xuu600) xuu61 xuu45 xuu6433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644)",fontsize=16,color="magenta"];3234 -> 4228[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3234 -> 4229[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3234 -> 4230[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3234 -> 4231[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3234 -> 4232[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3184[label="xuu600000",fontsize=16,color="green",shape="box"];3185[label="xuu1430",fontsize=16,color="green",shape="box"];4120 -> 2993[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4120[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];4120 -> 4129[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4120 -> 4130[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4119[label="compare1 xuu50000 xuu51000 xuu252",fontsize=16,color="burlywood",shape="triangle"];5089[label="xuu252/False",fontsize=10,color="white",style="solid",shape="box"];4119 -> 5089[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5089 -> 4131[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5090[label="xuu252/True",fontsize=10,color="white",style="solid",shape="box"];4119 -> 5090[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5090 -> 4132[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4122 -> 2996[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4122[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];4122 -> 4133[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4122 -> 4134[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4121[label="compare1 xuu50000 xuu51000 xuu253",fontsize=16,color="burlywood",shape="triangle"];5091[label="xuu253/False",fontsize=10,color="white",style="solid",shape="box"];4121 -> 5091[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5091 -> 4135[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5092[label="xuu253/True",fontsize=10,color="white",style="solid",shape="box"];4121 -> 5092[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5092 -> 4136[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4124 -> 3002[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4124[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];4124 -> 4137[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4124 -> 4138[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4123[label="compare1 xuu50000 xuu51000 xuu254",fontsize=16,color="burlywood",shape="triangle"];5093[label="xuu254/False",fontsize=10,color="white",style="solid",shape="box"];4123 -> 5093[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5093 -> 4139[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5094[label="xuu254/True",fontsize=10,color="white",style="solid",shape="box"];4123 -> 5094[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5094 -> 4140[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4126 -> 3004[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4126[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];4126 -> 4141[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4126 -> 4142[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4125[label="compare1 xuu50000 xuu51000 xuu255",fontsize=16,color="burlywood",shape="triangle"];5095[label="xuu255/False",fontsize=10,color="white",style="solid",shape="box"];4125 -> 5095[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5095 -> 4143[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5096[label="xuu255/True",fontsize=10,color="white",style="solid",shape="box"];4125 -> 5096[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5096 -> 4144[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4128 -> 3005[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4128[label="xuu50000 <= xuu51000",fontsize=16,color="magenta"];4128 -> 4145[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4128 -> 4146[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4127[label="compare1 xuu50000 xuu51000 xuu256",fontsize=16,color="burlywood",shape="triangle"];5097[label="xuu256/False",fontsize=10,color="white",style="solid",shape="box"];4127 -> 5097[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5097 -> 4147[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5098[label="xuu256/True",fontsize=10,color="white",style="solid",shape="box"];4127 -> 5098[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5098 -> 4148[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 3175[label="Succ (Succ (primPlusNat xuu53200 xuu13400))",fontsize=16,color="green",shape="box"];3175 -> 3582[label="",style="dashed", color="green", weight=3]; 28.89/12.42 3176[label="Succ xuu53200",fontsize=16,color="green",shape="box"];3177[label="Succ xuu13400",fontsize=16,color="green",shape="box"];3178[label="Zero",fontsize=16,color="green",shape="box"];3179[label="xuu13400",fontsize=16,color="green",shape="box"];3180[label="xuu53200",fontsize=16,color="green",shape="box"];3237[label="FiniteMap.mkBalBranch6Double_R (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 xuu534) xuu64",fontsize=16,color="burlywood",shape="box"];5099[label="xuu534/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3237 -> 5099[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5099 -> 3847[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5100[label="xuu534/FiniteMap.Branch xuu5340 xuu5341 xuu5342 xuu5343 xuu5344",fontsize=10,color="white",style="solid",shape="box"];3237 -> 5100[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5100 -> 3848[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4208 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4208[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Left xuu600) xuu61 xuu534 xuu64",fontsize=16,color="magenta"];4208 -> 4319[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4208 -> 4320[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4208 -> 4321[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4208 -> 4322[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4208 -> 4323[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4209[label="xuu533",fontsize=16,color="green",shape="box"];4210[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4211[label="xuu530",fontsize=16,color="green",shape="box"];4212[label="xuu531",fontsize=16,color="green",shape="box"];4213 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4213[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644",fontsize=16,color="magenta"];4213 -> 4324[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4213 -> 4325[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4213 -> 4326[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4213 -> 4327[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4213 -> 4328[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4214 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4214[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Left xuu600) xuu61 xuu53 xuu6433",fontsize=16,color="magenta"];4214 -> 4329[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4214 -> 4330[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4214 -> 4331[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4214 -> 4332[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4214 -> 4333[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4215[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4216[label="xuu6430",fontsize=16,color="green",shape="box"];4217[label="xuu6431",fontsize=16,color="green",shape="box"];3583[label="FiniteMap.mkBalBranch6Double_R (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 xuu454) xuu64",fontsize=16,color="burlywood",shape="box"];5101[label="xuu454/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3583 -> 5101[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5101 -> 4072[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 5102[label="xuu454/FiniteMap.Branch xuu4540 xuu4541 xuu4542 xuu4543 xuu4544",fontsize=10,color="white",style="solid",shape="box"];3583 -> 5102[label="",style="solid", color="burlywood", weight=9]; 28.89/12.42 5102 -> 4073[label="",style="solid", color="burlywood", weight=3]; 28.89/12.42 4223 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4223[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Right xuu600) xuu61 xuu454 xuu64",fontsize=16,color="magenta"];4223 -> 4334[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4223 -> 4335[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4223 -> 4336[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4223 -> 4337[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4223 -> 4338[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4224[label="xuu453",fontsize=16,color="green",shape="box"];4225[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4226[label="xuu450",fontsize=16,color="green",shape="box"];4227[label="xuu451",fontsize=16,color="green",shape="box"];4228 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4228[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644",fontsize=16,color="magenta"];4228 -> 4339[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4228 -> 4340[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4228 -> 4341[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4228 -> 4342[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4228 -> 4343[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4229 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4229[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Right xuu600) xuu61 xuu45 xuu6433",fontsize=16,color="magenta"];4229 -> 4344[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4229 -> 4345[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4229 -> 4346[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4229 -> 4347[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4229 -> 4348[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4230[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4231[label="xuu6430",fontsize=16,color="green",shape="box"];4232[label="xuu6431",fontsize=16,color="green",shape="box"];4129[label="xuu50000",fontsize=16,color="green",shape="box"];4130[label="xuu51000",fontsize=16,color="green",shape="box"];4131[label="compare1 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4131 -> 4166[label="",style="solid", color="black", weight=3]; 28.89/12.42 4132[label="compare1 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4132 -> 4167[label="",style="solid", color="black", weight=3]; 28.89/12.42 4133[label="xuu50000",fontsize=16,color="green",shape="box"];4134[label="xuu51000",fontsize=16,color="green",shape="box"];4135[label="compare1 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4135 -> 4168[label="",style="solid", color="black", weight=3]; 28.89/12.42 4136[label="compare1 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4136 -> 4169[label="",style="solid", color="black", weight=3]; 28.89/12.42 4137[label="xuu50000",fontsize=16,color="green",shape="box"];4138[label="xuu51000",fontsize=16,color="green",shape="box"];4139[label="compare1 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4139 -> 4170[label="",style="solid", color="black", weight=3]; 28.89/12.42 4140[label="compare1 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4140 -> 4171[label="",style="solid", color="black", weight=3]; 28.89/12.42 4141[label="xuu50000",fontsize=16,color="green",shape="box"];4142[label="xuu51000",fontsize=16,color="green",shape="box"];4143[label="compare1 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4143 -> 4172[label="",style="solid", color="black", weight=3]; 28.89/12.42 4144[label="compare1 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4144 -> 4173[label="",style="solid", color="black", weight=3]; 28.89/12.42 4145[label="xuu50000",fontsize=16,color="green",shape="box"];4146[label="xuu51000",fontsize=16,color="green",shape="box"];4147[label="compare1 xuu50000 xuu51000 False",fontsize=16,color="black",shape="box"];4147 -> 4174[label="",style="solid", color="black", weight=3]; 28.89/12.42 4148[label="compare1 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4148 -> 4175[label="",style="solid", color="black", weight=3]; 28.89/12.42 3582 -> 2473[label="",style="dashed", color="red", weight=0]; 28.89/12.42 3582[label="primPlusNat xuu53200 xuu13400",fontsize=16,color="magenta"];3582 -> 4107[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3582 -> 4108[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 3847[label="FiniteMap.mkBalBranch6Double_R (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 FiniteMap.EmptyFM) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 FiniteMap.EmptyFM) xuu64",fontsize=16,color="black",shape="box"];3847 -> 4109[label="",style="solid", color="black", weight=3]; 28.89/12.42 3848[label="FiniteMap.mkBalBranch6Double_R (Left xuu600) xuu61 xuu64 (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 (FiniteMap.Branch xuu5340 xuu5341 xuu5342 xuu5343 xuu5344)) (FiniteMap.Branch xuu530 xuu531 xuu532 xuu533 (FiniteMap.Branch xuu5340 xuu5341 xuu5342 xuu5343 xuu5344)) xuu64",fontsize=16,color="black",shape="box"];3848 -> 4110[label="",style="solid", color="black", weight=3]; 28.89/12.42 4319[label="xuu64",fontsize=16,color="green",shape="box"];4320[label="xuu534",fontsize=16,color="green",shape="box"];4321[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4322[label="Left xuu600",fontsize=16,color="green",shape="box"];4323[label="xuu61",fontsize=16,color="green",shape="box"];4324[label="xuu644",fontsize=16,color="green",shape="box"];4325[label="xuu6434",fontsize=16,color="green",shape="box"];4326[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4327[label="xuu640",fontsize=16,color="green",shape="box"];4328[label="xuu641",fontsize=16,color="green",shape="box"];4329[label="xuu6433",fontsize=16,color="green",shape="box"];4330[label="xuu53",fontsize=16,color="green",shape="box"];4331[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4332[label="Left xuu600",fontsize=16,color="green",shape="box"];4333[label="xuu61",fontsize=16,color="green",shape="box"];4072[label="FiniteMap.mkBalBranch6Double_R (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 FiniteMap.EmptyFM) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 FiniteMap.EmptyFM) xuu64",fontsize=16,color="black",shape="box"];4072 -> 4115[label="",style="solid", color="black", weight=3]; 28.89/12.42 4073[label="FiniteMap.mkBalBranch6Double_R (Right xuu600) xuu61 xuu64 (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 (FiniteMap.Branch xuu4540 xuu4541 xuu4542 xuu4543 xuu4544)) (FiniteMap.Branch xuu450 xuu451 xuu452 xuu453 (FiniteMap.Branch xuu4540 xuu4541 xuu4542 xuu4543 xuu4544)) xuu64",fontsize=16,color="black",shape="box"];4073 -> 4116[label="",style="solid", color="black", weight=3]; 28.89/12.42 4334[label="xuu64",fontsize=16,color="green",shape="box"];4335[label="xuu454",fontsize=16,color="green",shape="box"];4336[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4337[label="Right xuu600",fontsize=16,color="green",shape="box"];4338[label="xuu61",fontsize=16,color="green",shape="box"];4339[label="xuu644",fontsize=16,color="green",shape="box"];4340[label="xuu6434",fontsize=16,color="green",shape="box"];4341[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4342[label="xuu640",fontsize=16,color="green",shape="box"];4343[label="xuu641",fontsize=16,color="green",shape="box"];4344[label="xuu6433",fontsize=16,color="green",shape="box"];4345[label="xuu45",fontsize=16,color="green",shape="box"];4346[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4347[label="Right xuu600",fontsize=16,color="green",shape="box"];4348[label="xuu61",fontsize=16,color="green",shape="box"];4166[label="compare0 xuu50000 xuu51000 otherwise",fontsize=16,color="black",shape="box"];4166 -> 4349[label="",style="solid", color="black", weight=3]; 28.89/12.42 4167[label="LT",fontsize=16,color="green",shape="box"];4168[label="compare0 xuu50000 xuu51000 otherwise",fontsize=16,color="black",shape="box"];4168 -> 4350[label="",style="solid", color="black", weight=3]; 28.89/12.42 4169[label="LT",fontsize=16,color="green",shape="box"];4170[label="compare0 xuu50000 xuu51000 otherwise",fontsize=16,color="black",shape="box"];4170 -> 4351[label="",style="solid", color="black", weight=3]; 28.89/12.42 4171[label="LT",fontsize=16,color="green",shape="box"];4172[label="compare0 xuu50000 xuu51000 otherwise",fontsize=16,color="black",shape="box"];4172 -> 4352[label="",style="solid", color="black", weight=3]; 28.89/12.42 4173[label="LT",fontsize=16,color="green",shape="box"];4174[label="compare0 xuu50000 xuu51000 otherwise",fontsize=16,color="black",shape="box"];4174 -> 4353[label="",style="solid", color="black", weight=3]; 28.89/12.42 4175[label="LT",fontsize=16,color="green",shape="box"];4107[label="xuu13400",fontsize=16,color="green",shape="box"];4108[label="xuu53200",fontsize=16,color="green",shape="box"];4109[label="error []",fontsize=16,color="red",shape="box"];4110 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4110[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu5340 xuu5341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu530 xuu531 xuu533 xuu5343) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Left xuu600) xuu61 xuu5344 xuu64)",fontsize=16,color="magenta"];4110 -> 4268[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4110 -> 4269[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4110 -> 4270[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4110 -> 4271[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4110 -> 4272[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4115[label="error []",fontsize=16,color="red",shape="box"];4116 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4116[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu4540 xuu4541 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu450 xuu451 xuu453 xuu4543) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Right xuu600) xuu61 xuu4544 xuu64)",fontsize=16,color="magenta"];4116 -> 4283[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4116 -> 4284[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4116 -> 4285[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4116 -> 4286[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4116 -> 4287[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4349[label="compare0 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4349 -> 4375[label="",style="solid", color="black", weight=3]; 28.89/12.42 4350[label="compare0 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4350 -> 4376[label="",style="solid", color="black", weight=3]; 28.89/12.42 4351[label="compare0 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4351 -> 4377[label="",style="solid", color="black", weight=3]; 28.89/12.42 4352[label="compare0 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4352 -> 4378[label="",style="solid", color="black", weight=3]; 28.89/12.42 4353[label="compare0 xuu50000 xuu51000 True",fontsize=16,color="black",shape="box"];4353 -> 4379[label="",style="solid", color="black", weight=3]; 28.89/12.42 4268 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4268[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Left xuu600) xuu61 xuu5344 xuu64",fontsize=16,color="magenta"];4268 -> 4354[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4268 -> 4355[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4268 -> 4356[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4268 -> 4357[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4268 -> 4358[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4269 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4269[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu530 xuu531 xuu533 xuu5343",fontsize=16,color="magenta"];4269 -> 4359[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4269 -> 4360[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4269 -> 4361[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4269 -> 4362[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4269 -> 4363[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4270[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4271[label="xuu5340",fontsize=16,color="green",shape="box"];4272[label="xuu5341",fontsize=16,color="green",shape="box"];4283 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4283[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Right xuu600) xuu61 xuu4544 xuu64",fontsize=16,color="magenta"];4283 -> 4364[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4283 -> 4365[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4283 -> 4366[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4283 -> 4367[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4283 -> 4368[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4284 -> 4177[label="",style="dashed", color="red", weight=0]; 28.89/12.42 4284[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu450 xuu451 xuu453 xuu4543",fontsize=16,color="magenta"];4284 -> 4369[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4284 -> 4370[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4284 -> 4371[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4284 -> 4372[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4284 -> 4373[label="",style="dashed", color="magenta", weight=3]; 28.89/12.42 4285[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4286[label="xuu4540",fontsize=16,color="green",shape="box"];4287[label="xuu4541",fontsize=16,color="green",shape="box"];4375[label="GT",fontsize=16,color="green",shape="box"];4376[label="GT",fontsize=16,color="green",shape="box"];4377[label="GT",fontsize=16,color="green",shape="box"];4378[label="GT",fontsize=16,color="green",shape="box"];4379[label="GT",fontsize=16,color="green",shape="box"];4354[label="xuu64",fontsize=16,color="green",shape="box"];4355[label="xuu5344",fontsize=16,color="green",shape="box"];4356[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4357[label="Left xuu600",fontsize=16,color="green",shape="box"];4358[label="xuu61",fontsize=16,color="green",shape="box"];4359[label="xuu5343",fontsize=16,color="green",shape="box"];4360[label="xuu533",fontsize=16,color="green",shape="box"];4361[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4362[label="xuu530",fontsize=16,color="green",shape="box"];4363[label="xuu531",fontsize=16,color="green",shape="box"];4364[label="xuu64",fontsize=16,color="green",shape="box"];4365[label="xuu4544",fontsize=16,color="green",shape="box"];4366[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4367[label="Right xuu600",fontsize=16,color="green",shape="box"];4368[label="xuu61",fontsize=16,color="green",shape="box"];4369[label="xuu4543",fontsize=16,color="green",shape="box"];4370[label="xuu453",fontsize=16,color="green",shape="box"];4371[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4372[label="xuu450",fontsize=16,color="green",shape="box"];4373[label="xuu451",fontsize=16,color="green",shape="box"];} 28.89/12.42 28.89/12.42 ---------------------------------------- 28.89/12.42 28.89/12.42 (16) 28.89/12.42 Complex Obligation (AND) 28.89/12.42 28.89/12.42 ---------------------------------------- 28.89/12.42 28.89/12.42 (17) 28.89/12.42 Obligation: 28.89/12.42 Q DP problem: 28.89/12.42 The TRS P consists of the following rules: 28.89/12.42 28.89/12.42 new_primCmpNat(Succ(xuu5000), Succ(xuu5100)) -> new_primCmpNat(xuu5000, xuu5100) 28.89/12.42 28.89/12.42 R is empty. 28.89/12.42 Q is empty. 28.89/12.42 We have to consider all minimal (P,Q,R)-chains. 28.89/12.42 ---------------------------------------- 28.89/12.42 28.89/12.42 (18) QDPSizeChangeProof (EQUIVALENT) 28.89/12.42 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. 28.89/12.42 28.89/12.42 From the DPs we obtained the following set of size-change graphs: 28.89/12.42 *new_primCmpNat(Succ(xuu5000), Succ(xuu5100)) -> new_primCmpNat(xuu5000, xuu5100) 28.89/12.42 The graph contains the following edges 1 > 1, 2 > 2 28.89/12.42 28.89/12.42 28.89/12.42 ---------------------------------------- 28.89/12.42 28.89/12.42 (19) 28.89/12.42 YES 28.89/12.42 28.89/12.42 ---------------------------------------- 28.89/12.42 28.89/12.42 (20) 28.89/12.42 Obligation: 28.89/12.42 Q DP problem: 28.89/12.42 The TRS P consists of the following rules: 28.89/12.42 28.89/12.42 new_esEs(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bf), bg)) -> new_esEs2(xuu3110000, xuu6000, bf, bg) 28.89/12.42 new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, gf), gg), gb) -> new_esEs1(xuu3110000, xuu6000, gf, gg) 28.89/12.42 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(ty_Maybe, cc)) -> new_esEs(xuu3110002, xuu6002, cc) 28.89/12.42 new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, bdf), bdg)) -> new_esEs1(xuu3110000, xuu6000, bdf, bdg) 28.89/12.42 new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_[], hb), gb) -> new_esEs3(xuu3110000, xuu6000, hb) 28.89/12.42 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(app(app(ty_@3, dg), dh), ea), df) -> new_esEs0(xuu3110001, xuu6001, dg, dh, ea) 28.89/12.42 new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, bdb)) -> new_esEs(xuu3110000, xuu6000, bdb) 28.89/12.42 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(ty_@2, bbd), bbe)) -> new_esEs2(xuu3110001, xuu6001, bbd, bbe) 28.89/12.42 new_esEs(Just(xuu3110000), Just(xuu6000), app(ty_[], bh)) -> new_esEs3(xuu3110000, xuu6000, bh) 28.89/12.42 new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_[], beb)) -> new_esEs3(xuu3110000, xuu6000, beb) 28.89/12.42 new_esEs(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, h)) -> new_esEs(xuu3110000, xuu6000, h) 28.89/12.42 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_Either, fc), fd), cb, df) -> new_esEs1(xuu3110000, xuu6000, fc, fd) 28.89/12.42 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(app(ty_@2, db), dc)) -> new_esEs2(xuu3110002, xuu6002, db, dc) 28.89/12.42 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(app(ty_@2, ed), ee), df) -> new_esEs2(xuu3110001, xuu6001, ed, ee) 28.89/12.42 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(ty_Maybe, baf)) -> new_esEs(xuu3110001, xuu6001, baf) 28.89/12.42 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(ty_[], dd)) -> new_esEs3(xuu3110002, xuu6002, dd) 28.89/12.42 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_@2, bcf), bcg), bbh) -> new_esEs2(xuu3110000, xuu6000, bcf, bcg) 28.89/12.42 new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(app(ty_@2, bab), bac)) -> new_esEs2(xuu3110000, xuu6000, bab, bac) 28.89/12.42 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, bbg), bbh) -> new_esEs(xuu3110000, xuu6000, bbg) 28.89/12.42 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs0(xuu3110002, xuu6002, cd, ce, cf) 28.89/12.42 new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, gc), gd), ge), gb) -> new_esEs0(xuu3110000, xuu6000, gc, gd, ge) 28.89/12.42 new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(ty_Maybe, hd)) -> new_esEs(xuu3110000, xuu6000, hd) 28.89/12.42 new_esEs(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, bd), be)) -> new_esEs1(xuu3110000, xuu6000, bd, be) 28.89/12.42 new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, ga), gb) -> new_esEs(xuu3110000, xuu6000, ga) 28.89/12.42 new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bda) -> new_esEs3(xuu3110001, xuu6001, bda) 28.89/12.42 new_esEs(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, ba), bb), bc)) -> new_esEs0(xuu3110000, xuu6000, ba, bb, bc) 28.89/12.42 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(ty_[], ef), df) -> new_esEs3(xuu3110001, xuu6001, ef) 28.89/12.42 new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(xuu3110000, xuu6000, bdc, bdd, bde) 28.89/12.42 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(app(ty_Either, eb), ec), df) -> new_esEs1(xuu3110001, xuu6001, eb, ec) 28.89/12.42 new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, bdh), bea)) -> new_esEs2(xuu3110000, xuu6000, bdh, bea) 28.89/12.42 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], fh), cb, df) -> new_esEs3(xuu3110000, xuu6000, fh) 28.89/12.42 new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, gh), ha), gb) -> new_esEs2(xuu3110000, xuu6000, gh, ha) 28.89/12.42 new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(app(app(ty_@3, he), hf), hg)) -> new_esEs0(xuu3110000, xuu6000, he, hf, hg) 28.89/12.42 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_@2, ff), fg), cb, df) -> new_esEs2(xuu3110000, xuu6000, ff, fg) 28.89/12.42 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(ty_[], bbf)) -> new_esEs3(xuu3110001, xuu6001, bbf) 28.89/12.42 new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(ty_[], bad)) -> new_esEs3(xuu3110000, xuu6000, bad) 28.89/12.42 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(app(ty_@3, bca), bcb), bcc), bbh) -> new_esEs0(xuu3110000, xuu6000, bca, bcb, bcc) 28.89/12.42 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], bch), bbh) -> new_esEs3(xuu3110000, xuu6000, bch) 28.89/12.42 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, bcd), bce), bbh) -> new_esEs1(xuu3110000, xuu6000, bcd, bce) 28.89/12.42 new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(app(ty_Either, hh), baa)) -> new_esEs1(xuu3110000, xuu6000, hh, baa) 28.89/12.42 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(ty_Either, bbb), bbc)) -> new_esEs1(xuu3110001, xuu6001, bbb, bbc) 28.89/12.42 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_Maybe, eg), cb, df) -> new_esEs(xuu3110000, xuu6000, eg) 28.89/12.42 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(app(ty_@3, eh), fa), fb), cb, df) -> new_esEs0(xuu3110000, xuu6000, eh, fa, fb) 28.89/12.42 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(app(ty_Either, cg), da)) -> new_esEs1(xuu3110002, xuu6002, cg, da) 28.89/12.42 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(ty_Maybe, de), df) -> new_esEs(xuu3110001, xuu6001, de) 28.89/12.42 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs0(xuu3110001, xuu6001, bag, bah, bba) 28.89/12.42 28.89/12.42 R is empty. 28.89/12.42 Q is empty. 28.89/12.42 We have to consider all minimal (P,Q,R)-chains. 28.89/12.42 ---------------------------------------- 28.89/12.42 28.89/12.42 (21) QDPSizeChangeProof (EQUIVALENT) 28.89/12.42 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. 28.89/12.42 28.89/12.42 From the DPs we obtained the following set of size-change graphs: 28.89/12.42 *new_esEs(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, h)) -> new_esEs(xuu3110000, xuu6000, h) 28.89/12.42 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.89/12.42 28.89/12.42 28.89/12.42 *new_esEs(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, bd), be)) -> new_esEs1(xuu3110000, xuu6000, bd, be) 28.89/12.42 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.89/12.42 28.89/12.42 28.89/12.42 *new_esEs(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, ba), bb), bc)) -> new_esEs0(xuu3110000, xuu6000, ba, bb, bc) 28.89/12.42 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 28.89/12.42 28.89/12.42 28.89/12.42 *new_esEs(Just(xuu3110000), Just(xuu6000), app(ty_[], bh)) -> new_esEs3(xuu3110000, xuu6000, bh) 28.89/12.42 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.89/12.42 28.89/12.42 28.89/12.42 *new_esEs(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bf), bg)) -> new_esEs2(xuu3110000, xuu6000, bf, bg) 28.89/12.42 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.89/12.42 28.89/12.42 28.89/12.42 *new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, bdb)) -> new_esEs(xuu3110000, xuu6000, bdb) 28.89/12.42 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.89/12.42 28.89/12.42 28.89/12.42 *new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, bdf), bdg)) -> new_esEs1(xuu3110000, xuu6000, bdf, bdg) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(xuu3110000, xuu6000, bdc, bdd, bde) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, bdh), bea)) -> new_esEs2(xuu3110000, xuu6000, bdh, bea) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(ty_Maybe, baf)) -> new_esEs(xuu3110001, xuu6001, baf) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, bbg), bbh) -> new_esEs(xuu3110000, xuu6000, bbg) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, bcd), bce), bbh) -> new_esEs1(xuu3110000, xuu6000, bcd, bce) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(ty_Either, bbb), bbc)) -> new_esEs1(xuu3110001, xuu6001, bbb, bbc) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(app(ty_@3, bca), bcb), bcc), bbh) -> new_esEs0(xuu3110000, xuu6000, bca, bcb, bcc) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs0(xuu3110001, xuu6001, bag, bah, bba) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(ty_[], bbf)) -> new_esEs3(xuu3110001, xuu6001, bbf) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], bch), bbh) -> new_esEs3(xuu3110000, xuu6000, bch) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(ty_@2, bbd), bbe)) -> new_esEs2(xuu3110001, xuu6001, bbd, bbe) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_@2, bcf), bcg), bbh) -> new_esEs2(xuu3110000, xuu6000, bcf, bcg) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(ty_Maybe, hd)) -> new_esEs(xuu3110000, xuu6000, hd) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, ga), gb) -> new_esEs(xuu3110000, xuu6000, ga) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(ty_Maybe, cc)) -> new_esEs(xuu3110002, xuu6002, cc) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_Maybe, eg), cb, df) -> new_esEs(xuu3110000, xuu6000, eg) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(ty_Maybe, de), df) -> new_esEs(xuu3110001, xuu6001, de) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, gf), gg), gb) -> new_esEs1(xuu3110000, xuu6000, gf, gg) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(app(ty_Either, hh), baa)) -> new_esEs1(xuu3110000, xuu6000, hh, baa) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, gc), gd), ge), gb) -> new_esEs0(xuu3110000, xuu6000, gc, gd, ge) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(app(app(ty_@3, he), hf), hg)) -> new_esEs0(xuu3110000, xuu6000, he, hf, hg) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_[], hb), gb) -> new_esEs3(xuu3110000, xuu6000, hb) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(ty_[], bad)) -> new_esEs3(xuu3110000, xuu6000, bad) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(app(ty_@2, bab), bac)) -> new_esEs2(xuu3110000, xuu6000, bab, bac) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, gh), ha), gb) -> new_esEs2(xuu3110000, xuu6000, gh, ha) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_Either, fc), fd), cb, df) -> new_esEs1(xuu3110000, xuu6000, fc, fd) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(app(ty_Either, eb), ec), df) -> new_esEs1(xuu3110001, xuu6001, eb, ec) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(app(ty_Either, cg), da)) -> new_esEs1(xuu3110002, xuu6002, cg, da) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(app(app(ty_@3, dg), dh), ea), df) -> new_esEs0(xuu3110001, xuu6001, dg, dh, ea) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs0(xuu3110002, xuu6002, cd, ce, cf) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(app(ty_@3, eh), fa), fb), cb, df) -> new_esEs0(xuu3110000, xuu6000, eh, fa, fb) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_[], beb)) -> new_esEs3(xuu3110000, xuu6000, beb) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bda) -> new_esEs3(xuu3110001, xuu6001, bda) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(ty_[], dd)) -> new_esEs3(xuu3110002, xuu6002, dd) 28.89/12.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 28.89/12.43 28.89/12.43 28.89/12.43 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(ty_[], ef), df) -> new_esEs3(xuu3110001, xuu6001, ef) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], fh), cb, df) -> new_esEs3(xuu3110000, xuu6000, fh) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(app(ty_@2, db), dc)) -> new_esEs2(xuu3110002, xuu6002, db, dc) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(app(ty_@2, ed), ee), df) -> new_esEs2(xuu3110001, xuu6001, ed, ee) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_@2, ff), fg), cb, df) -> new_esEs2(xuu3110000, xuu6000, ff, fg) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.16/12.43 29.16/12.43 29.16/12.43 ---------------------------------------- 29.16/12.43 29.16/12.43 (22) 29.16/12.43 YES 29.16/12.43 29.16/12.43 ---------------------------------------- 29.16/12.43 29.16/12.43 (23) 29.16/12.43 Obligation: 29.16/12.43 Q DP problem: 29.16/12.43 The TRS P consists of the following rules: 29.16/12.43 29.16/12.43 new_primCompAux(xuu50000, xuu51000, xuu210, app(ty_[], ba)) -> new_compare0(xuu50000, xuu51000, ba) 29.16/12.43 new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, baf, app(ty_Maybe, bah)) -> new_ltEs0(xuu50002, xuu51002, bah) 29.16/12.43 new_ltEs0(Just(xuu50000), Just(xuu51000), app(app(app(ty_@3, db), dc), dd)) -> new_ltEs3(xuu50000, xuu51000, db, dc, dd) 29.16/12.43 new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), app(ty_[], bbh)), bca), bec) -> new_lt(xuu50001, xuu51001, bbh) 29.16/12.43 new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(app(ty_@2, bdf), bdg), baf, bca) -> new_lt2(xuu50000, xuu51000, bdf, bdg) 29.16/12.43 new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(ty_Maybe, cb)), he), bec) -> new_compare20(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, cb), cb) 29.16/12.43 new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, app(ty_[], bbh), bca) -> new_lt(xuu50001, xuu51001, bbh) 29.16/12.43 new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(ty_Maybe, dg)), df), bec) -> new_ltEs0(xuu50000, xuu51000, dg) 29.16/12.43 new_ltEs1(Right(xuu50000), Right(xuu51000), eg, app(ty_[], eh)) -> new_ltEs(xuu50000, xuu51000, eh) 29.16/12.43 new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, gb), app(app(ty_Either, ge), gf)), bec) -> new_ltEs1(xuu50001, xuu51001, ge, gf) 29.16/12.43 new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(ty_[], de)), df), bec) -> new_ltEs(xuu50000, xuu51000, de) 29.16/12.43 new_ltEs1(Left(xuu50000), Left(xuu51000), app(ty_[], de), df) -> new_ltEs(xuu50000, xuu51000, de) 29.16/12.43 new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), gb, app(app(ty_Either, ge), gf)) -> new_ltEs1(xuu50001, xuu51001, ge, gf) 29.16/12.43 new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, baf, app(app(ty_@2, bbc), bbd)) -> new_ltEs2(xuu50002, xuu51002, bbc, bbd) 29.16/12.43 new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs3(xuu50001, xuu51001, ha, hb, hc) 29.16/12.43 new_compare22(xuu50000, xuu51000, False, hh, baa) -> new_ltEs2(xuu50000, xuu51000, hh, baa) 29.16/12.43 new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), app(app(app(ty_@3, bcg), bch), bda)), bca), bec) -> new_lt3(xuu50001, xuu51001, bcg, bch, bda) 29.16/12.43 new_ltEs1(Right(xuu50000), Right(xuu51000), eg, app(ty_Maybe, fa)) -> new_ltEs0(xuu50000, xuu51000, fa) 29.16/12.43 new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(app(ty_Either, dh), ea)), df), bec) -> new_ltEs1(xuu50000, xuu51000, dh, ea) 29.16/12.43 new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(ty_[], hd), he) -> new_compare0(xuu50000, xuu51000, hd) 29.16/12.43 new_ltEs1(Right(xuu50000), Right(xuu51000), eg, app(app(ty_Either, fb), fc)) -> new_ltEs1(xuu50000, xuu51000, fb, fc) 29.16/12.43 new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, app(ty_Maybe, bcb), bca) -> new_lt0(xuu50001, xuu51001, bcb) 29.16/12.43 new_compare21(Right(xuu5000), Right(xuu5100), False, bed, app(app(ty_@2, bfa), bfb)) -> new_ltEs2(xuu5000, xuu5100, bfa, bfb) 29.16/12.43 new_ltEs(:(xuu50000, xuu50001), :(xuu51000, xuu51001), h) -> new_compare0(xuu50001, xuu51001, h) 29.16/12.43 new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs3(xuu50002, xuu51002, bbe, bbf, bbg) 29.16/12.43 new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(app(ty_@2, cg), da)), bec) -> new_ltEs2(xuu50000, xuu51000, cg, da) 29.16/12.43 new_compare21(Right(xuu5000), Right(xuu5100), False, bed, app(ty_Maybe, bef)) -> new_ltEs0(xuu5000, xuu5100, bef) 29.16/12.43 new_primCompAux(xuu50000, xuu51000, xuu210, app(app(ty_@2, be), bf)) -> new_compare3(xuu50000, xuu51000, be, bf) 29.16/12.43 new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, baf, app(app(ty_Either, bba), bbb)) -> new_ltEs1(xuu50002, xuu51002, bba, bbb) 29.16/12.43 new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(ty_Maybe, bdc)), baf), bca), bec) -> new_lt0(xuu50000, xuu51000, bdc) 29.16/12.43 new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(app(ty_Either, bdd), bde)), baf), bca), bec) -> new_lt1(xuu50000, xuu51000, bdd, bde) 29.16/12.43 new_lt2(xuu50000, xuu51000, hh, baa) -> new_compare22(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, hh, baa), hh, baa) 29.16/12.43 new_compare2(xuu50000, xuu51000, hf, hg) -> new_compare21(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, hf, hg), hf, hg) 29.16/12.43 new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), baf), app(ty_Maybe, bah)), bec) -> new_ltEs0(xuu50002, xuu51002, bah) 29.16/12.43 new_ltEs0(Just(xuu50000), Just(xuu51000), app(ty_Maybe, cd)) -> new_ltEs0(xuu50000, xuu51000, cd) 29.16/12.43 new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, gb), app(app(app(ty_@3, ha), hb), hc)), bec) -> new_ltEs3(xuu50001, xuu51001, ha, hb, hc) 29.16/12.43 new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(ty_[], bdb)), baf), bca), bec) -> new_lt(xuu50000, xuu51000, bdb) 29.16/12.43 new_compare21(Right(xuu5000), Right(xuu5100), False, bed, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs3(xuu5000, xuu5100, bfc, bfd, bfe) 29.16/12.43 new_ltEs1(Left(xuu50000), Left(xuu51000), app(app(app(ty_@3, ed), ee), ef), df) -> new_ltEs3(xuu50000, xuu51000, ed, ee, ef) 29.16/12.43 new_compare21(Right(xuu5000), Right(xuu5100), False, bed, app(app(ty_Either, beg), beh)) -> new_ltEs1(xuu5000, xuu5100, beg, beh) 29.16/12.43 new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), app(app(ty_Either, bcc), bcd)), bca), bec) -> new_lt1(xuu50001, xuu51001, bcc, bcd) 29.16/12.43 new_ltEs(:(xuu50000, xuu50001), :(xuu51000, xuu51001), h) -> new_primCompAux(xuu50000, xuu51000, new_compare(xuu50001, xuu51001, h), h) 29.16/12.43 new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(app(app(ty_@3, bdh), bea), beb), baf, bca) -> new_lt3(xuu50000, xuu51000, bdh, bea, beb) 29.16/12.43 new_ltEs1(Left(xuu50000), Left(xuu51000), app(ty_Maybe, dg), df) -> new_ltEs0(xuu50000, xuu51000, dg) 29.16/12.43 new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(app(ty_Either, hf), hg), he) -> new_compare21(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, hf, hg), hf, hg) 29.16/12.43 new_compare0(:(xuu50000, xuu50001), :(xuu51000, xuu51001), h) -> new_compare0(xuu50001, xuu51001, h) 29.16/12.43 new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), baf), app(ty_[], bag)), bec) -> new_ltEs(xuu50002, xuu51002, bag) 29.16/12.43 new_compare21(Left(:(xuu50000, xuu50001)), Left(:(xuu51000, xuu51001)), False, app(ty_[], h), bec) -> new_primCompAux(xuu50000, xuu51000, new_compare(xuu50001, xuu51001, h), h) 29.16/12.43 new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, eg), app(app(ty_Either, fb), fc)), bec) -> new_ltEs1(xuu50000, xuu51000, fb, fc) 29.16/12.43 new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, gb), app(ty_[], gc)), bec) -> new_ltEs(xuu50001, xuu51001, gc) 29.16/12.43 new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), gb, app(ty_Maybe, gd)) -> new_ltEs0(xuu50001, xuu51001, gd) 29.16/12.43 new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), app(ty_Maybe, bcb)), bca), bec) -> new_lt0(xuu50001, xuu51001, bcb) 29.16/12.43 new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, gb), app(app(ty_@2, gg), gh)), bec) -> new_ltEs2(xuu50001, xuu51001, gg, gh) 29.16/12.43 new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(app(ty_@2, hh), baa), he) -> new_compare22(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, hh, baa), hh, baa) 29.16/12.43 new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, eg), app(app(ty_@2, fd), ff)), bec) -> new_ltEs2(xuu50000, xuu51000, fd, ff) 29.16/12.43 new_ltEs0(Just(xuu50000), Just(xuu51000), app(ty_[], cc)) -> new_ltEs(xuu50000, xuu51000, cc) 29.16/12.43 new_compare3(xuu50000, xuu51000, hh, baa) -> new_compare22(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, hh, baa), hh, baa) 29.16/12.43 new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), gb, app(ty_[], gc)) -> new_ltEs(xuu50001, xuu51001, gc) 29.16/12.43 new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(ty_[], bdb), baf, bca) -> new_lt(xuu50000, xuu51000, bdb) 29.16/12.43 new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(app(ty_Either, hf), hg)), he), bec) -> new_compare21(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, hf, hg), hf, hg) 29.16/12.43 new_primCompAux(xuu50000, xuu51000, xuu210, app(ty_Maybe, bb)) -> new_compare1(xuu50000, xuu51000, bb) 29.16/12.43 new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(app(ty_@2, eb), ec)), df), bec) -> new_ltEs2(xuu50000, xuu51000, eb, ec) 29.16/12.43 new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, gb), app(ty_Maybe, gd)), bec) -> new_ltEs0(xuu50001, xuu51001, gd) 29.16/12.43 new_ltEs0(Just(xuu50000), Just(xuu51000), app(app(ty_Either, ce), cf)) -> new_ltEs1(xuu50000, xuu51000, ce, cf) 29.16/12.43 new_primCompAux(xuu50000, xuu51000, xuu210, app(app(app(ty_@3, bg), bh), ca)) -> new_compare4(xuu50000, xuu51000, bg, bh, ca) 29.16/12.43 new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), baf), app(app(ty_Either, bba), bbb)), bec) -> new_ltEs1(xuu50002, xuu51002, bba, bbb) 29.16/12.43 new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bdh), bea), beb)), baf), bca), bec) -> new_lt3(xuu50000, xuu51000, bdh, bea, beb) 29.16/12.43 new_primCompAux(xuu50000, xuu51000, xuu210, app(app(ty_Either, bc), bd)) -> new_compare2(xuu50000, xuu51000, bc, bd) 29.16/12.43 new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(app(app(ty_@3, bab), bac), bad)), he), bec) -> new_compare23(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bab, bac, bad), bab, bac, bad) 29.16/12.43 new_lt0(xuu50000, xuu51000, cb) -> new_compare20(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, cb), cb) 29.16/12.43 new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, eg), app(app(app(ty_@3, fg), fh), ga)), bec) -> new_ltEs3(xuu50000, xuu51000, fg, fh, ga) 29.16/12.43 new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(app(ty_Either, bdd), bde), baf, bca) -> new_lt1(xuu50000, xuu51000, bdd, bde) 29.16/12.43 new_compare1(xuu50000, xuu51000, cb) -> new_compare20(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, cb), cb) 29.16/12.43 new_compare21(Left(:(xuu50000, xuu50001)), Left(:(xuu51000, xuu51001)), False, app(ty_[], h), bec) -> new_compare0(xuu50001, xuu51001, h) 29.16/12.43 new_ltEs1(Right(xuu50000), Right(xuu51000), eg, app(app(ty_@2, fd), ff)) -> new_ltEs2(xuu50000, xuu51000, fd, ff) 29.16/12.43 new_compare4(xuu50000, xuu51000, bab, bac, bad) -> new_compare23(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bab, bac, bad), bab, bac, bad) 29.16/12.43 new_compare20(xuu50000, xuu51000, False, cb) -> new_ltEs0(xuu50000, xuu51000, cb) 29.16/12.43 new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), gb, app(app(ty_@2, gg), gh)) -> new_ltEs2(xuu50001, xuu51001, gg, gh) 29.16/12.43 new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), baf), app(app(app(ty_@3, bbe), bbf), bbg)), bec) -> new_ltEs3(xuu50002, xuu51002, bbe, bbf, bbg) 29.16/12.43 new_lt3(xuu50000, xuu51000, bab, bac, bad) -> new_compare23(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bab, bac, bad), bab, bac, bad) 29.16/12.43 new_compare0(:(xuu50000, xuu50001), :(xuu51000, xuu51001), h) -> new_primCompAux(xuu50000, xuu51000, new_compare(xuu50001, xuu51001, h), h) 29.16/12.43 new_ltEs1(Left(xuu50000), Left(xuu51000), app(app(ty_Either, dh), ea), df) -> new_ltEs1(xuu50000, xuu51000, dh, ea) 29.16/12.43 new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(app(app(ty_@3, db), dc), dd)), bec) -> new_ltEs3(xuu50000, xuu51000, db, dc, dd) 29.16/12.43 new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, eg), app(ty_[], eh)), bec) -> new_ltEs(xuu50000, xuu51000, eh) 29.16/12.43 new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(ty_Maybe, cd)), bec) -> new_ltEs0(xuu50000, xuu51000, cd) 29.16/12.43 new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(ty_[], hd)), he), bec) -> new_compare0(xuu50000, xuu51000, hd) 29.16/12.43 new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, baf, app(ty_[], bag)) -> new_ltEs(xuu50002, xuu51002, bag) 29.16/12.43 new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(app(app(ty_@3, ed), ee), ef)), df), bec) -> new_ltEs3(xuu50000, xuu51000, ed, ee, ef) 29.16/12.43 new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(app(ty_@2, hh), baa)), he), bec) -> new_compare22(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, hh, baa), hh, baa) 29.16/12.43 new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), app(app(ty_@2, bce), bcf)), bca), bec) -> new_lt2(xuu50001, xuu51001, bce, bcf) 29.16/12.43 new_lt(xuu50000, xuu51000, hd) -> new_compare0(xuu50000, xuu51000, hd) 29.16/12.43 new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, app(app(ty_@2, bce), bcf), bca) -> new_lt2(xuu50001, xuu51001, bce, bcf) 29.16/12.43 new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(ty_[], cc)), bec) -> new_ltEs(xuu50000, xuu51000, cc) 29.16/12.43 new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, app(app(ty_Either, bcc), bcd), bca) -> new_lt1(xuu50001, xuu51001, bcc, bcd) 29.16/12.43 new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, eg), app(ty_Maybe, fa)), bec) -> new_ltEs0(xuu50000, xuu51000, fa) 29.16/12.43 new_lt1(xuu50000, xuu51000, hf, hg) -> new_compare21(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, hf, hg), hf, hg) 29.16/12.43 new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(ty_Maybe, bdc), baf, bca) -> new_lt0(xuu50000, xuu51000, bdc) 29.16/12.43 new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(app(ty_Either, ce), cf)), bec) -> new_ltEs1(xuu50000, xuu51000, ce, cf) 29.16/12.43 new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(app(app(ty_@3, bab), bac), bad), he) -> new_compare23(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bab, bac, bad), bab, bac, bad) 29.16/12.43 new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), baf), app(app(ty_@2, bbc), bbd)), bec) -> new_ltEs2(xuu50002, xuu51002, bbc, bbd) 29.16/12.43 new_ltEs0(Just(xuu50000), Just(xuu51000), app(app(ty_@2, cg), da)) -> new_ltEs2(xuu50000, xuu51000, cg, da) 29.16/12.43 new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(app(ty_@2, bdf), bdg)), baf), bca), bec) -> new_lt2(xuu50000, xuu51000, bdf, bdg) 29.16/12.43 new_ltEs1(Right(xuu50000), Right(xuu51000), eg, app(app(app(ty_@3, fg), fh), ga)) -> new_ltEs3(xuu50000, xuu51000, fg, fh, ga) 29.16/12.43 new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(ty_Maybe, cb), he) -> new_compare20(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, cb), cb) 29.16/12.43 new_compare21(Right(xuu5000), Right(xuu5100), False, bed, app(ty_[], bee)) -> new_ltEs(xuu5000, xuu5100, bee) 29.16/12.43 new_compare23(xuu50000, xuu51000, False, bab, bac, bad) -> new_ltEs3(xuu50000, xuu51000, bab, bac, bad) 29.16/12.43 new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, app(app(app(ty_@3, bcg), bch), bda), bca) -> new_lt3(xuu50001, xuu51001, bcg, bch, bda) 29.16/12.43 new_ltEs1(Left(xuu50000), Left(xuu51000), app(app(ty_@2, eb), ec), df) -> new_ltEs2(xuu50000, xuu51000, eb, ec) 29.16/12.43 29.16/12.43 The TRS R consists of the following rules: 29.16/12.43 29.16/12.43 new_esEs26(xuu50000, xuu51000, ty_Float) -> new_esEs9(xuu50000, xuu51000) 29.16/12.43 new_ltEs19(xuu5000, xuu5100, ty_Integer) -> new_ltEs11(xuu5000, xuu5100) 29.16/12.43 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 29.16/12.43 new_primCmpInt(Neg(Succ(xuu5000)), Pos(xuu510)) -> LT 29.16/12.43 new_ltEs12(Right(xuu50000), Right(xuu51000), eg, ty_Ordering) -> new_ltEs5(xuu50000, xuu51000) 29.16/12.43 new_pePe(True, xuu209) -> True 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Ordering, bhd) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.43 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.43 new_lt20(xuu50000, xuu51000, app(ty_Ratio, dea)) -> new_lt10(xuu50000, xuu51000, dea) 29.16/12.43 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, cff), cfg)) -> new_esEs6(xuu3110000, xuu6000, cff, cfg) 29.16/12.43 new_esEs21(xuu3110000, xuu6000, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_esEs7(xuu3110000, xuu6000, cdf, cdg, cdh) 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Bool, bhd) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.43 new_compare12(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.43 new_compare(:(xuu50000, xuu50001), [], h) -> GT 29.16/12.43 new_lt19(xuu50001, xuu51001, ty_Char) -> new_lt14(xuu50001, xuu51001) 29.16/12.43 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 29.16/12.43 new_esEs24(xuu3110001, xuu6001, app(ty_[], dcc)) -> new_esEs19(xuu3110001, xuu6001, dcc) 29.16/12.43 new_esEs27(xuu50001, xuu51001, app(app(ty_Either, bcc), bcd)) -> new_esEs5(xuu50001, xuu51001, bcc, bcd) 29.16/12.43 new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT 29.16/12.43 new_compare(:(xuu50000, xuu50001), :(xuu51000, xuu51001), h) -> new_primCompAux0(xuu50000, xuu51000, new_compare(xuu50001, xuu51001, h), h) 29.16/12.43 new_compare11(xuu50000, xuu51000, hf, hg) -> new_compare25(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, hf, hg), hf, hg) 29.16/12.43 new_esEs21(xuu3110000, xuu6000, app(app(ty_@2, cec), ced)) -> new_esEs6(xuu3110000, xuu6000, cec, ced) 29.16/12.43 new_esEs24(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 29.16/12.43 new_esEs28(xuu50000, xuu51000, ty_Char) -> new_esEs18(xuu50000, xuu51000) 29.16/12.43 new_ltEs12(Right(xuu50000), Right(xuu51000), eg, app(ty_Ratio, bgg)) -> new_ltEs7(xuu50000, xuu51000, bgg) 29.16/12.43 new_lt16(xuu50000, xuu51000, ty_Double) -> new_lt15(xuu50000, xuu51000) 29.16/12.43 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Integer, df) -> new_ltEs11(xuu50000, xuu51000) 29.16/12.43 new_primCmpInt(Neg(Succ(xuu5000)), Neg(xuu510)) -> new_primCmpNat0(xuu510, Succ(xuu5000)) 29.16/12.43 new_ltEs11(xuu5000, xuu5100) -> new_fsEs(new_compare8(xuu5000, xuu5100)) 29.16/12.43 new_lt7(xuu50000, xuu51000, cb) -> new_esEs8(new_compare9(xuu50000, xuu51000, cb), LT) 29.16/12.43 new_lt4(xuu50000, xuu51000, hd) -> new_esEs8(new_compare(xuu50000, xuu51000, hd), LT) 29.16/12.43 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Integer) -> new_ltEs11(xuu50000, xuu51000) 29.16/12.43 new_ltEs12(Left(xuu50000), Right(xuu51000), eg, df) -> True 29.16/12.43 new_compare115(xuu50000, xuu51000, True, hh, baa) -> LT 29.16/12.43 new_esEs5(Right(xuu3110000), Right(xuu6000), caf, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.43 new_ltEs12(Right(xuu50000), Right(xuu51000), eg, app(app(app(ty_@3, fg), fh), ga)) -> new_ltEs17(xuu50000, xuu51000, fg, fh, ga) 29.16/12.43 new_esEs20(xuu3110001, xuu6001, ty_@0) -> new_esEs12(xuu3110001, xuu6001) 29.16/12.43 new_ltEs21(xuu50002, xuu51002, ty_Float) -> new_ltEs14(xuu50002, xuu51002) 29.16/12.43 new_esEs9(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 29.16/12.43 new_lt16(xuu50000, xuu51000, ty_Int) -> new_lt17(xuu50000, xuu51000) 29.16/12.43 new_lt19(xuu50001, xuu51001, app(ty_Maybe, bcb)) -> new_lt7(xuu50001, xuu51001, bcb) 29.16/12.43 new_esEs25(xuu3110000, xuu6000, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.43 new_compare13(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.43 new_compare13(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.43 new_esEs23(xuu3110002, xuu6002, app(app(ty_Either, dad), dae)) -> new_esEs5(xuu3110002, xuu6002, dad, dae) 29.16/12.43 new_compare24(xuu50000, xuu51000, False) -> new_compare19(xuu50000, xuu51000, new_ltEs5(xuu50000, xuu51000)) 29.16/12.43 new_compare26(xuu50000, xuu51000, True) -> EQ 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Integer, bhd) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.43 new_esEs8(GT, GT) -> True 29.16/12.43 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 29.16/12.43 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 29.16/12.43 new_esEs24(xuu3110001, xuu6001, ty_Integer) -> new_esEs11(xuu3110001, xuu6001) 29.16/12.43 new_compare5(xuu50000, xuu51000, app(app(ty_@2, be), bf)) -> new_compare15(xuu50000, xuu51000, be, bf) 29.16/12.43 new_fsEs(xuu193) -> new_not(new_esEs8(xuu193, GT)) 29.16/12.43 new_ltEs9(False, True) -> True 29.16/12.43 new_lt16(xuu50000, xuu51000, ty_Ordering) -> new_lt13(xuu50000, xuu51000) 29.16/12.43 new_compare18(xuu50000, xuu51000) -> new_compare26(xuu50000, xuu51000, new_esEs13(xuu50000, xuu51000)) 29.16/12.43 new_ltEs20(xuu50001, xuu51001, ty_@0) -> new_ltEs4(xuu50001, xuu51001) 29.16/12.43 new_esEs5(Right(xuu3110000), Right(xuu6000), caf, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.43 new_esEs24(xuu3110001, xuu6001, app(ty_Ratio, dcb)) -> new_esEs15(xuu3110001, xuu6001, dcb) 29.16/12.43 new_lt20(xuu50000, xuu51000, app(ty_Maybe, bdc)) -> new_lt7(xuu50000, xuu51000, bdc) 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cab), cac), bhd) -> new_esEs6(xuu3110000, xuu6000, cab, cac) 29.16/12.43 new_esEs8(EQ, EQ) -> True 29.16/12.43 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Float, df) -> new_ltEs14(xuu50000, xuu51000) 29.16/12.43 new_esEs24(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 29.16/12.43 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, cgc)) -> new_esEs4(xuu3110000, xuu6000, cgc) 29.16/12.43 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 29.16/12.43 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.43 new_lt19(xuu50001, xuu51001, app(ty_[], bbh)) -> new_lt4(xuu50001, xuu51001, bbh) 29.16/12.43 new_ltEs14(xuu5000, xuu5100) -> new_fsEs(new_compare13(xuu5000, xuu5100)) 29.16/12.43 new_ltEs12(Left(xuu50000), Left(xuu51000), app(ty_Ratio, bgf), df) -> new_ltEs7(xuu50000, xuu51000, bgf) 29.16/12.43 new_compare5(xuu50000, xuu51000, ty_Int) -> new_compare6(xuu50000, xuu51000) 29.16/12.43 new_not(True) -> False 29.16/12.43 new_compare5(xuu50000, xuu51000, ty_Char) -> new_compare14(xuu50000, xuu51000) 29.16/12.43 new_esEs27(xuu50001, xuu51001, ty_Double) -> new_esEs14(xuu50001, xuu51001) 29.16/12.43 new_primCompAux00(xuu223, LT) -> LT 29.16/12.43 new_primCmpNat0(Zero, Zero) -> EQ 29.16/12.43 new_esEs21(xuu3110000, xuu6000, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.43 new_esEs28(xuu50000, xuu51000, app(ty_[], bdb)) -> new_esEs19(xuu50000, xuu51000, bdb) 29.16/12.43 new_ltEs18(xuu5000, xuu5100, app(ty_Ratio, bfg)) -> new_ltEs7(xuu5000, xuu5100, bfg) 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_@0, bhd) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.43 new_esEs5(Right(xuu3110000), Right(xuu6000), caf, app(ty_Maybe, cag)) -> new_esEs4(xuu3110000, xuu6000, cag) 29.16/12.43 new_esEs23(xuu3110002, xuu6002, ty_Char) -> new_esEs18(xuu3110002, xuu6002) 29.16/12.43 new_esEs28(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) 29.16/12.43 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_@0, df) -> new_ltEs4(xuu50000, xuu51000) 29.16/12.43 new_esEs25(xuu3110000, xuu6000, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs7(xuu3110000, xuu6000, dce, dcf, dcg) 29.16/12.43 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_@0) -> new_ltEs4(xuu50000, xuu51000) 29.16/12.43 new_compare27(xuu50000, xuu51000, True, cb) -> EQ 29.16/12.43 new_ltEs18(xuu5000, xuu5100, ty_@0) -> new_ltEs4(xuu5000, xuu5100) 29.16/12.43 new_compare17(xuu50000, xuu51000, bab, bac, bad) -> new_compare28(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bab, bac, bad), bab, bac, bad) 29.16/12.43 new_primEqNat0(Succ(xuu31100000), Zero) -> False 29.16/12.43 new_primEqNat0(Zero, Succ(xuu60000)) -> False 29.16/12.43 new_esEs18(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 29.16/12.43 new_ltEs20(xuu50001, xuu51001, ty_Int) -> new_ltEs6(xuu50001, xuu51001) 29.16/12.43 new_lt20(xuu50000, xuu51000, app(ty_[], bdb)) -> new_lt4(xuu50000, xuu51000, bdb) 29.16/12.43 new_ltEs19(xuu5000, xuu5100, ty_Int) -> new_ltEs6(xuu5000, xuu5100) 29.16/12.43 new_esEs27(xuu50001, xuu51001, ty_Int) -> new_esEs10(xuu50001, xuu51001) 29.16/12.43 new_ltEs20(xuu50001, xuu51001, ty_Integer) -> new_ltEs11(xuu50001, xuu51001) 29.16/12.43 new_primCompAux00(xuu223, GT) -> GT 29.16/12.43 new_ltEs19(xuu5000, xuu5100, ty_@0) -> new_ltEs4(xuu5000, xuu5100) 29.16/12.43 new_esEs17(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.43 new_compare7(xuu50000, xuu51000) -> new_compare24(xuu50000, xuu51000, new_esEs8(xuu50000, xuu51000)) 29.16/12.43 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs7(xuu3110000, xuu6000, cfa, cfb, cfc) 29.16/12.43 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Float) -> new_ltEs14(xuu50000, xuu51000) 29.16/12.43 new_compare5(xuu50000, xuu51000, app(app(ty_Either, bc), bd)) -> new_compare11(xuu50000, xuu51000, bc, bd) 29.16/12.43 new_ltEs10(Nothing, Just(xuu51000), bgb) -> True 29.16/12.43 new_esEs23(xuu3110002, xuu6002, ty_Int) -> new_esEs10(xuu3110002, xuu6002) 29.16/12.43 new_esEs20(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 29.16/12.43 new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Integer) -> new_compare8(new_sr0(xuu50000, xuu51001), new_sr0(xuu51000, xuu50001)) 29.16/12.43 new_ltEs21(xuu50002, xuu51002, ty_Int) -> new_ltEs6(xuu50002, xuu51002) 29.16/12.43 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Int) -> new_ltEs6(xuu50000, xuu51000) 29.16/12.43 new_compare27(xuu50000, xuu51000, False, cb) -> new_compare113(xuu50000, xuu51000, new_ltEs10(xuu50000, xuu51000, cb), cb) 29.16/12.43 new_lt19(xuu50001, xuu51001, app(app(ty_@2, bce), bcf)) -> new_lt5(xuu50001, xuu51001, bce, bcf) 29.16/12.43 new_primCmpInt(Pos(Succ(xuu5000)), Neg(xuu510)) -> GT 29.16/12.43 new_esEs28(xuu50000, xuu51000, ty_Int) -> new_esEs10(xuu50000, xuu51000) 29.16/12.43 new_compare10(@0, @0) -> EQ 29.16/12.43 new_esEs28(xuu50000, xuu51000, ty_Integer) -> new_esEs11(xuu50000, xuu51000) 29.16/12.43 new_lt16(xuu50000, xuu51000, ty_Float) -> new_lt11(xuu50000, xuu51000) 29.16/12.43 new_ltEs18(xuu5000, xuu5100, app(app(app(ty_@3, bae), baf), bca)) -> new_ltEs17(xuu5000, xuu5100, bae, baf, bca) 29.16/12.43 new_ltEs19(xuu5000, xuu5100, ty_Float) -> new_ltEs14(xuu5000, xuu5100) 29.16/12.43 new_esEs20(xuu3110001, xuu6001, app(ty_Ratio, cdc)) -> new_esEs15(xuu3110001, xuu6001, cdc) 29.16/12.43 new_compare110(xuu190, xuu191, True, bfh, bga) -> LT 29.16/12.43 new_esEs26(xuu50000, xuu51000, ty_Double) -> new_esEs14(xuu50000, xuu51000) 29.16/12.43 new_compare5(xuu50000, xuu51000, app(ty_Maybe, bb)) -> new_compare9(xuu50000, xuu51000, bb) 29.16/12.43 new_ltEs5(LT, GT) -> True 29.16/12.43 new_ltEs20(xuu50001, xuu51001, ty_Float) -> new_ltEs14(xuu50001, xuu51001) 29.16/12.43 new_ltEs7(xuu5000, xuu5100, bfg) -> new_fsEs(new_compare16(xuu5000, xuu5100, bfg)) 29.16/12.43 new_compare19(xuu50000, xuu51000, True) -> LT 29.16/12.43 new_primPlusNat1(Succ(xuu53200), Succ(xuu13400)) -> Succ(Succ(new_primPlusNat1(xuu53200, xuu13400))) 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, bhc), bhd) -> new_esEs4(xuu3110000, xuu6000, bhc) 29.16/12.43 new_esEs24(xuu3110001, xuu6001, ty_@0) -> new_esEs12(xuu3110001, xuu6001) 29.16/12.43 new_primCmpNat0(Zero, Succ(xuu5100)) -> LT 29.16/12.43 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.43 new_esEs26(xuu50000, xuu51000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs7(xuu50000, xuu51000, bab, bac, bad) 29.16/12.43 new_ltEs21(xuu50002, xuu51002, ty_Bool) -> new_ltEs9(xuu50002, xuu51002) 29.16/12.43 new_lt20(xuu50000, xuu51000, ty_Char) -> new_lt14(xuu50000, xuu51000) 29.16/12.43 new_esEs19(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), cgb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, cgb), new_esEs19(xuu3110001, xuu6001, cgb)) 29.16/12.43 new_lt16(xuu50000, xuu51000, ty_@0) -> new_lt18(xuu50000, xuu51000) 29.16/12.43 new_primCmpNat0(Succ(xuu5000), Zero) -> GT 29.16/12.43 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_[], cga)) -> new_esEs19(xuu3110000, xuu6000, cga) 29.16/12.43 new_pePe(False, xuu209) -> xuu209 29.16/12.43 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, cha), chb)) -> new_esEs6(xuu3110000, xuu6000, cha, chb) 29.16/12.43 new_ltEs12(Right(xuu50000), Right(xuu51000), eg, app(ty_[], eh)) -> new_ltEs8(xuu50000, xuu51000, eh) 29.16/12.43 new_ltEs10(Just(xuu50000), Just(xuu51000), app(ty_Maybe, cd)) -> new_ltEs10(xuu50000, xuu51000, cd) 29.16/12.43 new_esEs23(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) 29.16/12.43 new_esEs19([], [], cgb) -> True 29.16/12.43 new_compare25(xuu500, xuu510, True, bed, bec) -> EQ 29.16/12.43 new_esEs5(Right(xuu3110000), Right(xuu6000), caf, app(ty_Ratio, cbg)) -> new_esEs15(xuu3110000, xuu6000, cbg) 29.16/12.43 new_ltEs9(True, True) -> True 29.16/12.43 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.43 new_lt20(xuu50000, xuu51000, app(app(app(ty_@3, bdh), bea), beb)) -> new_lt9(xuu50000, xuu51000, bdh, bea, beb) 29.16/12.43 new_compare112(xuu183, xuu184, True, bgd, bge) -> LT 29.16/12.43 new_esEs20(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 29.16/12.43 new_esEs26(xuu50000, xuu51000, ty_@0) -> new_esEs12(xuu50000, xuu51000) 29.16/12.43 new_ltEs18(xuu5000, xuu5100, ty_Integer) -> new_ltEs11(xuu5000, xuu5100) 29.16/12.43 new_lt19(xuu50001, xuu51001, app(app(ty_Either, bcc), bcd)) -> new_lt12(xuu50001, xuu51001, bcc, bcd) 29.16/12.43 new_compare113(xuu50000, xuu51000, True, cb) -> LT 29.16/12.43 new_esEs27(xuu50001, xuu51001, ty_Float) -> new_esEs9(xuu50001, xuu51001) 29.16/12.43 new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Int) -> new_compare6(new_sr(xuu50000, xuu51001), new_sr(xuu51000, xuu50001)) 29.16/12.43 new_esEs8(LT, EQ) -> False 29.16/12.43 new_esEs8(EQ, LT) -> False 29.16/12.43 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 29.16/12.43 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 29.16/12.43 new_esEs23(xuu3110002, xuu6002, app(ty_Maybe, chh)) -> new_esEs4(xuu3110002, xuu6002, chh) 29.16/12.43 new_esEs21(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.43 new_esEs24(xuu3110001, xuu6001, app(app(ty_@2, dbh), dca)) -> new_esEs6(xuu3110001, xuu6001, dbh, dca) 29.16/12.43 new_ltEs12(Left(xuu50000), Left(xuu51000), app(app(ty_Either, dh), ea), df) -> new_ltEs12(xuu50000, xuu51000, dh, ea) 29.16/12.43 new_esEs23(xuu3110002, xuu6002, ty_Integer) -> new_esEs11(xuu3110002, xuu6002) 29.16/12.43 new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), bhb) -> new_asAs(new_esEs17(xuu3110000, xuu6000, bhb), new_esEs16(xuu3110001, xuu6001, bhb)) 29.16/12.43 new_lt16(xuu50000, xuu51000, app(app(app(ty_@3, bab), bac), bad)) -> new_lt9(xuu50000, xuu51000, bab, bac, bad) 29.16/12.43 new_ltEs18(xuu5000, xuu5100, app(app(ty_Either, eg), df)) -> new_ltEs12(xuu5000, xuu5100, eg, df) 29.16/12.43 new_ltEs16(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), gb, he) -> new_pePe(new_lt16(xuu50000, xuu51000, gb), new_asAs(new_esEs26(xuu50000, xuu51000, gb), new_ltEs20(xuu50001, xuu51001, he))) 29.16/12.43 new_esEs24(xuu3110001, xuu6001, app(app(ty_Either, dbf), dbg)) -> new_esEs5(xuu3110001, xuu6001, dbf, dbg) 29.16/12.43 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 29.16/12.43 new_esEs25(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.43 new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT 29.16/12.43 new_ltEs20(xuu50001, xuu51001, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs17(xuu50001, xuu51001, ha, hb, hc) 29.16/12.43 new_esEs21(xuu3110000, xuu6000, app(ty_[], cef)) -> new_esEs19(xuu3110000, xuu6000, cef) 29.16/12.43 new_ltEs21(xuu50002, xuu51002, ty_Double) -> new_ltEs13(xuu50002, xuu51002) 29.16/12.43 new_compare9(xuu50000, xuu51000, cb) -> new_compare27(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, cb), cb) 29.16/12.43 new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.43 new_lt6(xuu50000, xuu51000) -> new_esEs8(new_compare8(xuu50000, xuu51000), LT) 29.16/12.43 new_ltEs21(xuu50002, xuu51002, ty_Char) -> new_ltEs15(xuu50002, xuu51002) 29.16/12.43 new_lt17(xuu500, xuu510) -> new_esEs8(new_compare6(xuu500, xuu510), LT) 29.16/12.43 new_esEs26(xuu50000, xuu51000, app(app(ty_@2, hh), baa)) -> new_esEs6(xuu50000, xuu51000, hh, baa) 29.16/12.43 new_esEs28(xuu50000, xuu51000, ty_@0) -> new_esEs12(xuu50000, xuu51000) 29.16/12.43 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs7(xuu3110000, xuu6000, cgd, cge, cgf) 29.16/12.43 new_compare28(xuu50000, xuu51000, False, bab, bac, bad) -> new_compare114(xuu50000, xuu51000, new_ltEs17(xuu50000, xuu51000, bab, bac, bad), bab, bac, bad) 29.16/12.43 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cfh)) -> new_esEs15(xuu3110000, xuu6000, cfh) 29.16/12.43 new_primMulNat0(Succ(xuu311000100), Zero) -> Zero 29.16/12.43 new_primMulNat0(Zero, Succ(xuu600000)) -> Zero 29.16/12.43 new_primPlusNat0(Zero, xuu600000) -> Succ(xuu600000) 29.16/12.43 new_ltEs12(Right(xuu50000), Right(xuu51000), eg, ty_Int) -> new_ltEs6(xuu50000, xuu51000) 29.16/12.43 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.43 new_lt19(xuu50001, xuu51001, ty_Ordering) -> new_lt13(xuu50001, xuu51001) 29.16/12.43 new_ltEs19(xuu5000, xuu5100, ty_Bool) -> new_ltEs9(xuu5000, xuu5100) 29.16/12.43 new_ltEs5(EQ, EQ) -> True 29.16/12.43 new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 29.16/12.43 new_compare26(xuu50000, xuu51000, False) -> new_compare111(xuu50000, xuu51000, new_ltEs9(xuu50000, xuu51000)) 29.16/12.43 new_esEs26(xuu50000, xuu51000, ty_Integer) -> new_esEs11(xuu50000, xuu51000) 29.16/12.43 new_lt16(xuu50000, xuu51000, app(app(ty_@2, hh), baa)) -> new_lt5(xuu50000, xuu51000, hh, baa) 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, bhh), caa), bhd) -> new_esEs5(xuu3110000, xuu6000, bhh, caa) 29.16/12.43 new_esEs5(Right(xuu3110000), Right(xuu6000), caf, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs7(xuu3110000, xuu6000, cah, cba, cbb) 29.16/12.43 new_esEs21(xuu3110000, xuu6000, app(app(ty_Either, cea), ceb)) -> new_esEs5(xuu3110000, xuu6000, cea, ceb) 29.16/12.43 new_lt16(xuu50000, xuu51000, app(ty_Maybe, cb)) -> new_lt7(xuu50000, xuu51000, cb) 29.16/12.43 new_esEs8(LT, LT) -> True 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_[], cae), bhd) -> new_esEs19(xuu3110000, xuu6000, cae) 29.16/12.43 new_compare111(xuu50000, xuu51000, True) -> LT 29.16/12.43 new_lt12(xuu50000, xuu51000, hf, hg) -> new_esEs8(new_compare11(xuu50000, xuu51000, hf, hg), LT) 29.16/12.43 new_compare19(xuu50000, xuu51000, False) -> GT 29.16/12.43 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, chc)) -> new_esEs15(xuu3110000, xuu6000, chc) 29.16/12.43 new_esEs26(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) 29.16/12.43 new_esEs20(xuu3110001, xuu6001, app(ty_Maybe, ccc)) -> new_esEs4(xuu3110001, xuu6001, ccc) 29.16/12.43 new_lt15(xuu50000, xuu51000) -> new_esEs8(new_compare12(xuu50000, xuu51000), LT) 29.16/12.43 new_primPlusNat1(Succ(xuu53200), Zero) -> Succ(xuu53200) 29.16/12.43 new_primPlusNat1(Zero, Succ(xuu13400)) -> Succ(xuu13400) 29.16/12.43 new_esEs24(xuu3110001, xuu6001, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs7(xuu3110001, xuu6001, dbc, dbd, dbe) 29.16/12.43 new_lt16(xuu50000, xuu51000, ty_Integer) -> new_lt6(xuu50000, xuu51000) 29.16/12.43 new_lt9(xuu50000, xuu51000, bab, bac, bad) -> new_esEs8(new_compare17(xuu50000, xuu51000, bab, bac, bad), LT) 29.16/12.43 new_esEs13(True, True) -> True 29.16/12.43 new_esEs20(xuu3110001, xuu6001, app(ty_[], cdd)) -> new_esEs19(xuu3110001, xuu6001, cdd) 29.16/12.43 new_ltEs20(xuu50001, xuu51001, ty_Double) -> new_ltEs13(xuu50001, xuu51001) 29.16/12.43 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Double, df) -> new_ltEs13(xuu50000, xuu51000) 29.16/12.43 new_esEs5(Right(xuu3110000), Right(xuu6000), caf, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.43 new_esEs23(xuu3110002, xuu6002, app(ty_Ratio, dah)) -> new_esEs15(xuu3110002, xuu6002, dah) 29.16/12.43 new_esEs28(xuu50000, xuu51000, ty_Double) -> new_esEs14(xuu50000, xuu51000) 29.16/12.43 new_ltEs18(xuu5000, xuu5100, ty_Char) -> new_ltEs15(xuu5000, xuu5100) 29.16/12.43 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Ordering) -> new_ltEs5(xuu50000, xuu51000) 29.16/12.43 new_esEs5(Right(xuu3110000), Right(xuu6000), caf, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.43 new_esEs20(xuu3110001, xuu6001, ty_Char) -> new_esEs18(xuu3110001, xuu6001) 29.16/12.43 new_esEs23(xuu3110002, xuu6002, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs7(xuu3110002, xuu6002, daa, dab, dac) 29.16/12.43 new_compare115(xuu50000, xuu51000, False, hh, baa) -> GT 29.16/12.43 new_ltEs5(LT, LT) -> True 29.16/12.43 new_esEs21(xuu3110000, xuu6000, app(ty_Maybe, cde)) -> new_esEs4(xuu3110000, xuu6000, cde) 29.16/12.43 new_esEs25(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.43 new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.43 new_ltEs19(xuu5000, xuu5100, ty_Char) -> new_ltEs15(xuu5000, xuu5100) 29.16/12.43 new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat0(Zero, Succ(xuu5100)) 29.16/12.43 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Bool, df) -> new_ltEs9(xuu50000, xuu51000) 29.16/12.43 new_esEs5(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_@2, cbe), cbf)) -> new_esEs6(xuu3110000, xuu6000, cbe, cbf) 29.16/12.43 new_esEs25(xuu3110000, xuu6000, app(app(ty_@2, ddb), ddc)) -> new_esEs6(xuu3110000, xuu6000, ddb, ddc) 29.16/12.43 new_lt16(xuu50000, xuu51000, ty_Bool) -> new_lt8(xuu50000, xuu51000) 29.16/12.43 new_compare([], :(xuu51000, xuu51001), h) -> LT 29.16/12.43 new_ltEs5(LT, EQ) -> True 29.16/12.43 new_compare5(xuu50000, xuu51000, app(ty_Ratio, bff)) -> new_compare16(xuu50000, xuu51000, bff) 29.16/12.43 new_ltEs19(xuu5000, xuu5100, ty_Double) -> new_ltEs13(xuu5000, xuu5100) 29.16/12.43 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, cgg), cgh)) -> new_esEs5(xuu3110000, xuu6000, cgg, cgh) 29.16/12.43 new_compare12(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.43 new_compare12(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.43 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, ceh)) -> new_esEs4(xuu3110000, xuu6000, ceh) 29.16/12.43 new_esEs23(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 29.16/12.43 new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), che, chf, chg) -> new_asAs(new_esEs25(xuu3110000, xuu6000, che), new_asAs(new_esEs24(xuu3110001, xuu6001, chf), new_esEs23(xuu3110002, xuu6002, chg))) 29.16/12.43 new_compare6(xuu50, xuu51) -> new_primCmpInt(xuu50, xuu51) 29.16/12.43 new_ltEs21(xuu50002, xuu51002, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs17(xuu50002, xuu51002, bbe, bbf, bbg) 29.16/12.43 new_esEs25(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.43 new_esEs27(xuu50001, xuu51001, ty_@0) -> new_esEs12(xuu50001, xuu51001) 29.16/12.43 new_lt20(xuu50000, xuu51000, ty_Integer) -> new_lt6(xuu50000, xuu51000) 29.16/12.43 new_ltEs18(xuu5000, xuu5100, ty_Bool) -> new_ltEs9(xuu5000, xuu5100) 29.16/12.43 new_compare8(Integer(xuu50000), Integer(xuu51000)) -> new_primCmpInt(xuu50000, xuu51000) 29.16/12.43 new_primMulInt(Pos(xuu31100010), Neg(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.43 new_primMulInt(Neg(xuu31100010), Pos(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.43 new_ltEs12(Right(xuu50000), Right(xuu51000), eg, app(app(ty_Either, fb), fc)) -> new_ltEs12(xuu50000, xuu51000, fb, fc) 29.16/12.43 new_ltEs21(xuu50002, xuu51002, app(ty_Ratio, ddg)) -> new_ltEs7(xuu50002, xuu51002, ddg) 29.16/12.43 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.43 new_ltEs18(xuu5000, xuu5100, app(ty_Maybe, bgb)) -> new_ltEs10(xuu5000, xuu5100, bgb) 29.16/12.43 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.43 new_esEs23(xuu3110002, xuu6002, app(app(ty_@2, daf), dag)) -> new_esEs6(xuu3110002, xuu6002, daf, dag) 29.16/12.43 new_ltEs12(Right(xuu50000), Left(xuu51000), eg, df) -> False 29.16/12.43 new_esEs24(xuu3110001, xuu6001, app(ty_Maybe, dbb)) -> new_esEs4(xuu3110001, xuu6001, dbb) 29.16/12.43 new_lt8(xuu50000, xuu51000) -> new_esEs8(new_compare18(xuu50000, xuu51000), LT) 29.16/12.43 new_esEs26(xuu50000, xuu51000, app(ty_Ratio, bha)) -> new_esEs15(xuu50000, xuu51000, bha) 29.16/12.43 new_lt5(xuu50000, xuu51000, hh, baa) -> new_esEs8(new_compare15(xuu50000, xuu51000, hh, baa), LT) 29.16/12.43 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.43 new_lt20(xuu50000, xuu51000, ty_Float) -> new_lt11(xuu50000, xuu51000) 29.16/12.43 new_compare13(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.43 new_esEs19(:(xuu3110000, xuu3110001), [], cgb) -> False 29.16/12.43 new_esEs19([], :(xuu6000, xuu6001), cgb) -> False 29.16/12.43 new_sr0(Integer(xuu500000), Integer(xuu510010)) -> Integer(new_primMulInt(xuu500000, xuu510010)) 29.16/12.43 new_esEs24(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 29.16/12.43 new_compare25(Left(xuu5000), Left(xuu5100), False, bed, bec) -> new_compare112(xuu5000, xuu5100, new_ltEs18(xuu5000, xuu5100, bed), bed, bec) 29.16/12.43 new_esEs13(False, False) -> True 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Double, bhd) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.43 new_compare5(xuu50000, xuu51000, ty_Float) -> new_compare13(xuu50000, xuu51000) 29.16/12.43 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Char) -> new_ltEs15(xuu50000, xuu51000) 29.16/12.43 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Char, df) -> new_ltEs15(xuu50000, xuu51000) 29.16/12.43 new_ltEs12(Right(xuu50000), Right(xuu51000), eg, app(app(ty_@2, fd), ff)) -> new_ltEs16(xuu50000, xuu51000, fd, ff) 29.16/12.43 new_esEs28(xuu50000, xuu51000, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs7(xuu50000, xuu51000, bdh, bea, beb) 29.16/12.43 new_ltEs20(xuu50001, xuu51001, ty_Char) -> new_ltEs15(xuu50001, xuu51001) 29.16/12.43 new_compare25(Left(xuu5000), Right(xuu5100), False, bed, bec) -> LT 29.16/12.43 new_ltEs18(xuu5000, xuu5100, ty_Double) -> new_ltEs13(xuu5000, xuu5100) 29.16/12.43 new_ltEs21(xuu50002, xuu51002, app(app(ty_Either, bba), bbb)) -> new_ltEs12(xuu50002, xuu51002, bba, bbb) 29.16/12.43 new_asAs(True, xuu178) -> xuu178 29.16/12.43 new_esEs28(xuu50000, xuu51000, ty_Float) -> new_esEs9(xuu50000, xuu51000) 29.16/12.43 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.43 new_lt20(xuu50000, xuu51000, ty_Ordering) -> new_lt13(xuu50000, xuu51000) 29.16/12.43 new_ltEs5(GT, LT) -> False 29.16/12.43 new_esEs5(Right(xuu3110000), Right(xuu6000), caf, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.43 new_esEs21(xuu3110000, xuu6000, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.43 new_esEs21(xuu3110000, xuu6000, app(ty_Ratio, cee)) -> new_esEs15(xuu3110000, xuu6000, cee) 29.16/12.43 new_lt20(xuu50000, xuu51000, ty_Bool) -> new_lt8(xuu50000, xuu51000) 29.16/12.43 new_esEs26(xuu50000, xuu51000, ty_Char) -> new_esEs18(xuu50000, xuu51000) 29.16/12.43 new_lt20(xuu50000, xuu51000, ty_Int) -> new_lt17(xuu50000, xuu51000) 29.16/12.43 new_esEs26(xuu50000, xuu51000, app(ty_[], hd)) -> new_esEs19(xuu50000, xuu51000, hd) 29.16/12.43 new_lt19(xuu50001, xuu51001, ty_Integer) -> new_lt6(xuu50001, xuu51001) 29.16/12.43 new_ltEs8(xuu5000, xuu5100, h) -> new_fsEs(new_compare(xuu5000, xuu5100, h)) 29.16/12.43 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, cfd), cfe)) -> new_esEs5(xuu3110000, xuu6000, cfd, cfe) 29.16/12.43 new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.43 new_ltEs19(xuu5000, xuu5100, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs17(xuu5000, xuu5100, bfc, bfd, bfe) 29.16/12.43 new_primCmpInt(Pos(Succ(xuu5000)), Pos(xuu510)) -> new_primCmpNat0(Succ(xuu5000), xuu510) 29.16/12.43 new_ltEs18(xuu5000, xuu5100, app(ty_[], h)) -> new_ltEs8(xuu5000, xuu5100, h) 29.16/12.43 new_ltEs21(xuu50002, xuu51002, app(app(ty_@2, bbc), bbd)) -> new_ltEs16(xuu50002, xuu51002, bbc, bbd) 29.16/12.43 new_esEs5(Right(xuu3110000), Right(xuu6000), caf, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.43 new_primCompAux00(xuu223, EQ) -> xuu223 29.16/12.43 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Ordering, df) -> new_ltEs5(xuu50000, xuu51000) 29.16/12.43 new_ltEs4(xuu5000, xuu5100) -> new_fsEs(new_compare10(xuu5000, xuu5100)) 29.16/12.43 new_lt10(xuu50000, xuu51000, bha) -> new_esEs8(new_compare16(xuu50000, xuu51000, bha), LT) 29.16/12.43 new_sr(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) 29.16/12.43 new_lt20(xuu50000, xuu51000, app(app(ty_Either, bdd), bde)) -> new_lt12(xuu50000, xuu51000, bdd, bde) 29.16/12.43 new_esEs5(Right(xuu3110000), Right(xuu6000), caf, app(ty_[], cbh)) -> new_esEs19(xuu3110000, xuu6000, cbh) 29.16/12.43 new_esEs27(xuu50001, xuu51001, app(app(ty_@2, bce), bcf)) -> new_esEs6(xuu50001, xuu51001, bce, bcf) 29.16/12.43 new_esEs27(xuu50001, xuu51001, ty_Bool) -> new_esEs13(xuu50001, xuu51001) 29.16/12.43 new_ltEs9(False, False) -> True 29.16/12.43 new_primMulNat0(Zero, Zero) -> Zero 29.16/12.43 new_ltEs10(Just(xuu50000), Just(xuu51000), app(ty_Ratio, bgc)) -> new_ltEs7(xuu50000, xuu51000, bgc) 29.16/12.43 new_esEs27(xuu50001, xuu51001, ty_Ordering) -> new_esEs8(xuu50001, xuu51001) 29.16/12.43 new_esEs23(xuu3110002, xuu6002, ty_@0) -> new_esEs12(xuu3110002, xuu6002) 29.16/12.43 new_ltEs19(xuu5000, xuu5100, app(ty_Ratio, bgh)) -> new_ltEs7(xuu5000, xuu5100, bgh) 29.16/12.43 new_ltEs19(xuu5000, xuu5100, app(ty_[], bee)) -> new_ltEs8(xuu5000, xuu5100, bee) 29.16/12.43 new_compare111(xuu50000, xuu51000, False) -> GT 29.16/12.43 new_ltEs20(xuu50001, xuu51001, ty_Bool) -> new_ltEs9(xuu50001, xuu51001) 29.16/12.43 new_lt19(xuu50001, xuu51001, ty_Int) -> new_lt17(xuu50001, xuu51001) 29.16/12.43 new_esEs28(xuu50000, xuu51000, app(ty_Maybe, bdc)) -> new_esEs4(xuu50000, xuu51000, bdc) 29.16/12.43 new_ltEs12(Left(xuu50000), Left(xuu51000), app(ty_Maybe, dg), df) -> new_ltEs10(xuu50000, xuu51000, dg) 29.16/12.43 new_ltEs20(xuu50001, xuu51001, app(app(ty_@2, gg), gh)) -> new_ltEs16(xuu50001, xuu51001, gg, gh) 29.16/12.43 new_compare28(xuu50000, xuu51000, True, bab, bac, bad) -> EQ 29.16/12.43 new_esEs4(Nothing, Nothing, ceg) -> True 29.16/12.43 new_esEs20(xuu3110001, xuu6001, app(app(ty_Either, ccg), cch)) -> new_esEs5(xuu3110001, xuu6001, ccg, cch) 29.16/12.43 new_esEs20(xuu3110001, xuu6001, ty_Float) -> new_esEs9(xuu3110001, xuu6001) 29.16/12.43 new_esEs27(xuu50001, xuu51001, ty_Integer) -> new_esEs11(xuu50001, xuu51001) 29.16/12.43 new_esEs5(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_Either, cbc), cbd)) -> new_esEs5(xuu3110000, xuu6000, cbc, cbd) 29.16/12.43 new_esEs4(Nothing, Just(xuu6000), ceg) -> False 29.16/12.43 new_esEs4(Just(xuu3110000), Nothing, ceg) -> False 29.16/12.43 new_lt20(xuu50000, xuu51000, ty_@0) -> new_lt18(xuu50000, xuu51000) 29.16/12.43 new_esEs27(xuu50001, xuu51001, app(ty_[], bbh)) -> new_esEs19(xuu50001, xuu51001, bbh) 29.16/12.43 new_ltEs5(EQ, LT) -> False 29.16/12.43 new_compare14(Char(xuu50000), Char(xuu51000)) -> new_primCmpNat0(xuu50000, xuu51000) 29.16/12.43 new_ltEs19(xuu5000, xuu5100, app(app(ty_Either, beg), beh)) -> new_ltEs12(xuu5000, xuu5100, beg, beh) 29.16/12.43 new_lt19(xuu50001, xuu51001, app(app(app(ty_@3, bcg), bch), bda)) -> new_lt9(xuu50001, xuu51001, bcg, bch, bda) 29.16/12.43 new_lt19(xuu50001, xuu51001, ty_Bool) -> new_lt8(xuu50001, xuu51001) 29.16/12.43 new_esEs28(xuu50000, xuu51000, app(app(ty_@2, bdf), bdg)) -> new_esEs6(xuu50000, xuu51000, bdf, bdg) 29.16/12.43 new_esEs17(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.43 new_ltEs12(Right(xuu50000), Right(xuu51000), eg, ty_Float) -> new_ltEs14(xuu50000, xuu51000) 29.16/12.43 new_ltEs12(Left(xuu50000), Left(xuu51000), app(app(app(ty_@3, ed), ee), ef), df) -> new_ltEs17(xuu50000, xuu51000, ed, ee, ef) 29.16/12.43 new_ltEs12(Right(xuu50000), Right(xuu51000), eg, ty_Integer) -> new_ltEs11(xuu50000, xuu51000) 29.16/12.43 new_ltEs9(True, False) -> False 29.16/12.43 new_ltEs19(xuu5000, xuu5100, app(app(ty_@2, bfa), bfb)) -> new_ltEs16(xuu5000, xuu5100, bfa, bfb) 29.16/12.43 new_ltEs20(xuu50001, xuu51001, app(ty_[], gc)) -> new_ltEs8(xuu50001, xuu51001, gc) 29.16/12.43 new_ltEs12(Right(xuu50000), Right(xuu51000), eg, ty_@0) -> new_ltEs4(xuu50000, xuu51000) 29.16/12.43 new_esEs20(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 29.16/12.43 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 29.16/12.43 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 29.16/12.43 new_esEs11(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 29.16/12.43 new_esEs16(xuu3110001, xuu6001, ty_Integer) -> new_esEs11(xuu3110001, xuu6001) 29.16/12.43 new_compare([], [], h) -> EQ 29.16/12.43 new_ltEs20(xuu50001, xuu51001, app(app(ty_Either, ge), gf)) -> new_ltEs12(xuu50001, xuu51001, ge, gf) 29.16/12.43 new_ltEs10(Just(xuu50000), Just(xuu51000), app(app(ty_Either, ce), cf)) -> new_ltEs12(xuu50000, xuu51000, ce, cf) 29.16/12.43 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 29.16/12.43 new_esEs13(False, True) -> False 29.16/12.43 new_esEs13(True, False) -> False 29.16/12.43 new_esEs16(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 29.16/12.43 new_ltEs10(Just(xuu50000), Just(xuu51000), app(app(ty_@2, cg), da)) -> new_ltEs16(xuu50000, xuu51000, cg, da) 29.16/12.43 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.43 new_compare5(xuu50000, xuu51000, ty_@0) -> new_compare10(xuu50000, xuu51000) 29.16/12.43 new_esEs5(Right(xuu3110000), Right(xuu6000), caf, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.43 new_ltEs10(Just(xuu50000), Just(xuu51000), app(ty_[], cc)) -> new_ltEs8(xuu50000, xuu51000, cc) 29.16/12.43 new_compare24(xuu50000, xuu51000, True) -> EQ 29.16/12.43 new_ltEs12(Right(xuu50000), Right(xuu51000), eg, app(ty_Maybe, fa)) -> new_ltEs10(xuu50000, xuu51000, fa) 29.16/12.43 new_compare114(xuu50000, xuu51000, True, bab, bac, bad) -> LT 29.16/12.43 new_esEs22(xuu3110000, xuu6000, app(ty_[], chd)) -> new_esEs19(xuu3110000, xuu6000, chd) 29.16/12.43 new_esEs25(xuu3110000, xuu6000, app(app(ty_Either, dch), dda)) -> new_esEs5(xuu3110000, xuu6000, dch, dda) 29.16/12.43 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 29.16/12.43 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 29.16/12.43 new_esEs26(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) 29.16/12.43 new_ltEs20(xuu50001, xuu51001, app(ty_Ratio, ddf)) -> new_ltEs7(xuu50001, xuu51001, ddf) 29.16/12.43 new_esEs25(xuu3110000, xuu6000, app(ty_Ratio, ddd)) -> new_esEs15(xuu3110000, xuu6000, ddd) 29.16/12.43 new_lt16(xuu50000, xuu51000, app(ty_Ratio, bha)) -> new_lt10(xuu50000, xuu51000, bha) 29.16/12.43 new_lt19(xuu50001, xuu51001, ty_@0) -> new_lt18(xuu50001, xuu51001) 29.16/12.43 new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat0(Succ(xuu5100), Zero) 29.16/12.43 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.43 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 29.16/12.43 new_ltEs6(xuu5000, xuu5100) -> new_fsEs(new_compare6(xuu5000, xuu5100)) 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, cad), bhd) -> new_esEs15(xuu3110000, xuu6000, cad) 29.16/12.43 new_esEs27(xuu50001, xuu51001, ty_Char) -> new_esEs18(xuu50001, xuu51001) 29.16/12.43 new_esEs26(xuu50000, xuu51000, app(app(ty_Either, hf), hg)) -> new_esEs5(xuu50000, xuu51000, hf, hg) 29.16/12.43 new_lt11(xuu50000, xuu51000) -> new_esEs8(new_compare13(xuu50000, xuu51000), LT) 29.16/12.43 new_lt16(xuu50000, xuu51000, app(ty_[], hd)) -> new_lt4(xuu50000, xuu51000, hd) 29.16/12.43 new_esEs23(xuu3110002, xuu6002, app(ty_[], dba)) -> new_esEs19(xuu3110002, xuu6002, dba) 29.16/12.43 new_ltEs19(xuu5000, xuu5100, app(ty_Maybe, bef)) -> new_ltEs10(xuu5000, xuu5100, bef) 29.16/12.43 new_compare25(Right(xuu5000), Right(xuu5100), False, bed, bec) -> new_compare110(xuu5000, xuu5100, new_ltEs19(xuu5000, xuu5100, bec), bed, bec) 29.16/12.43 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Bool) -> new_ltEs9(xuu50000, xuu51000) 29.16/12.43 new_esEs23(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) 29.16/12.43 new_compare112(xuu183, xuu184, False, bgd, bge) -> GT 29.16/12.43 new_ltEs5(EQ, GT) -> True 29.16/12.43 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.43 new_not(False) -> True 29.16/12.43 new_esEs21(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.43 new_esEs21(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.43 new_primCompAux0(xuu50000, xuu51000, xuu210, h) -> new_primCompAux00(xuu210, new_compare5(xuu50000, xuu51000, h)) 29.16/12.43 new_esEs20(xuu3110001, xuu6001, app(app(app(ty_@3, ccd), cce), ccf)) -> new_esEs7(xuu3110001, xuu6001, ccd, cce, ccf) 29.16/12.43 new_compare25(Right(xuu5000), Left(xuu5100), False, bed, bec) -> GT 29.16/12.43 new_ltEs5(GT, GT) -> True 29.16/12.43 new_ltEs17(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, baf, bca) -> new_pePe(new_lt20(xuu50000, xuu51000, bae), new_asAs(new_esEs28(xuu50000, xuu51000, bae), new_pePe(new_lt19(xuu50001, xuu51001, baf), new_asAs(new_esEs27(xuu50001, xuu51001, baf), new_ltEs21(xuu50002, xuu51002, bca))))) 29.16/12.43 new_esEs8(LT, GT) -> False 29.16/12.43 new_esEs8(GT, LT) -> False 29.16/12.43 new_ltEs15(xuu5000, xuu5100) -> new_fsEs(new_compare14(xuu5000, xuu5100)) 29.16/12.43 new_lt20(xuu50000, xuu51000, app(app(ty_@2, bdf), bdg)) -> new_lt5(xuu50000, xuu51000, bdf, bdg) 29.16/12.43 new_compare5(xuu50000, xuu51000, ty_Integer) -> new_compare8(xuu50000, xuu51000) 29.16/12.43 new_esEs27(xuu50001, xuu51001, app(ty_Ratio, ddh)) -> new_esEs15(xuu50001, xuu51001, ddh) 29.16/12.43 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.43 new_esEs5(Left(xuu3110000), Right(xuu6000), caf, bhd) -> False 29.16/12.43 new_esEs5(Right(xuu3110000), Left(xuu6000), caf, bhd) -> False 29.16/12.43 new_lt16(xuu50000, xuu51000, ty_Char) -> new_lt14(xuu50000, xuu51000) 29.16/12.43 new_ltEs21(xuu50002, xuu51002, ty_@0) -> new_ltEs4(xuu50002, xuu51002) 29.16/12.43 new_esEs20(xuu3110001, xuu6001, app(app(ty_@2, cda), cdb)) -> new_esEs6(xuu3110001, xuu6001, cda, cdb) 29.16/12.43 new_ltEs21(xuu50002, xuu51002, ty_Ordering) -> new_ltEs5(xuu50002, xuu51002) 29.16/12.43 new_esEs25(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.43 new_ltEs10(Just(xuu50000), Nothing, bgb) -> False 29.16/12.43 new_ltEs10(Nothing, Nothing, bgb) -> True 29.16/12.43 new_ltEs18(xuu5000, xuu5100, ty_Int) -> new_ltEs6(xuu5000, xuu5100) 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Int, bhd) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.43 new_ltEs13(xuu5000, xuu5100) -> new_fsEs(new_compare12(xuu5000, xuu5100)) 29.16/12.43 new_compare113(xuu50000, xuu51000, False, cb) -> GT 29.16/12.43 new_esEs27(xuu50001, xuu51001, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs7(xuu50001, xuu51001, bcg, bch, bda) 29.16/12.43 new_primPlusNat0(Succ(xuu1430), xuu600000) -> Succ(Succ(new_primPlusNat1(xuu1430, xuu600000))) 29.16/12.43 new_ltEs18(xuu5000, xuu5100, app(app(ty_@2, gb), he)) -> new_ltEs16(xuu5000, xuu5100, gb, he) 29.16/12.43 new_compare13(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.43 new_ltEs12(Right(xuu50000), Right(xuu51000), eg, ty_Bool) -> new_ltEs9(xuu50000, xuu51000) 29.16/12.43 new_esEs24(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 29.16/12.43 new_esEs10(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 29.16/12.43 new_ltEs12(Left(xuu50000), Left(xuu51000), app(ty_[], de), df) -> new_ltEs8(xuu50000, xuu51000, de) 29.16/12.43 new_ltEs21(xuu50002, xuu51002, app(ty_[], bag)) -> new_ltEs8(xuu50002, xuu51002, bag) 29.16/12.43 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 29.16/12.43 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 29.16/12.43 new_primPlusNat1(Zero, Zero) -> Zero 29.16/12.43 new_compare5(xuu50000, xuu51000, app(app(app(ty_@3, bg), bh), ca)) -> new_compare17(xuu50000, xuu51000, bg, bh, ca) 29.16/12.43 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.43 new_ltEs12(Left(xuu50000), Left(xuu51000), app(app(ty_@2, eb), ec), df) -> new_ltEs16(xuu50000, xuu51000, eb, ec) 29.16/12.43 new_esEs25(xuu3110000, xuu6000, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.43 new_ltEs18(xuu5000, xuu5100, ty_Ordering) -> new_ltEs5(xuu5000, xuu5100) 29.16/12.43 new_compare5(xuu50000, xuu51000, ty_Bool) -> new_compare18(xuu50000, xuu51000) 29.16/12.43 new_ltEs18(xuu5000, xuu5100, ty_Float) -> new_ltEs14(xuu5000, xuu5100) 29.16/12.43 new_compare5(xuu50000, xuu51000, ty_Double) -> new_compare12(xuu50000, xuu51000) 29.16/12.43 new_compare15(xuu50000, xuu51000, hh, baa) -> new_compare29(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, hh, baa), hh, baa) 29.16/12.43 new_esEs25(xuu3110000, xuu6000, app(ty_Maybe, dcd)) -> new_esEs4(xuu3110000, xuu6000, dcd) 29.16/12.43 new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.43 new_lt13(xuu50000, xuu51000) -> new_esEs8(new_compare7(xuu50000, xuu51000), LT) 29.16/12.43 new_esEs25(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.43 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 29.16/12.43 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.43 new_ltEs21(xuu50002, xuu51002, app(ty_Maybe, bah)) -> new_ltEs10(xuu50002, xuu51002, bah) 29.16/12.43 new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat0(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) 29.16/12.43 new_ltEs21(xuu50002, xuu51002, ty_Integer) -> new_ltEs11(xuu50002, xuu51002) 29.16/12.43 new_ltEs10(Just(xuu50000), Just(xuu51000), app(app(app(ty_@3, db), dc), dd)) -> new_ltEs17(xuu50000, xuu51000, db, dc, dd) 29.16/12.43 new_esEs12(@0, @0) -> True 29.16/12.43 new_compare29(xuu50000, xuu51000, True, hh, baa) -> EQ 29.16/12.43 new_primCmpNat0(Succ(xuu5000), Succ(xuu5100)) -> new_primCmpNat0(xuu5000, xuu5100) 29.16/12.43 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Int, df) -> new_ltEs6(xuu50000, xuu51000) 29.16/12.43 new_esEs27(xuu50001, xuu51001, app(ty_Maybe, bcb)) -> new_esEs4(xuu50001, xuu51001, bcb) 29.16/12.43 new_esEs6(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cca, ccb) -> new_asAs(new_esEs21(xuu3110000, xuu6000, cca), new_esEs20(xuu3110001, xuu6001, ccb)) 29.16/12.43 new_ltEs20(xuu50001, xuu51001, app(ty_Maybe, gd)) -> new_ltEs10(xuu50001, xuu51001, gd) 29.16/12.43 new_esEs26(xuu50000, xuu51000, ty_Int) -> new_esEs10(xuu50000, xuu51000) 29.16/12.43 new_esEs21(xuu3110000, xuu6000, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.43 new_esEs5(Right(xuu3110000), Right(xuu6000), caf, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.43 new_esEs28(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Char, bhd) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.43 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.43 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Double) -> new_ltEs13(xuu50000, xuu51000) 29.16/12.43 new_compare114(xuu50000, xuu51000, False, bab, bac, bad) -> GT 29.16/12.43 new_esEs24(xuu3110001, xuu6001, ty_Char) -> new_esEs18(xuu3110001, xuu6001) 29.16/12.43 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 29.16/12.43 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 29.16/12.43 new_lt14(xuu50000, xuu51000) -> new_esEs8(new_compare14(xuu50000, xuu51000), LT) 29.16/12.43 new_lt19(xuu50001, xuu51001, ty_Float) -> new_lt11(xuu50001, xuu51001) 29.16/12.43 new_compare12(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.43 new_compare110(xuu190, xuu191, False, bfh, bga) -> GT 29.16/12.43 new_compare5(xuu50000, xuu51000, app(ty_[], ba)) -> new_compare(xuu50000, xuu51000, ba) 29.16/12.43 new_esEs26(xuu50000, xuu51000, app(ty_Maybe, cb)) -> new_esEs4(xuu50000, xuu51000, cb) 29.16/12.43 new_primEqNat0(Zero, Zero) -> True 29.16/12.43 new_esEs28(xuu50000, xuu51000, app(app(ty_Either, bdd), bde)) -> new_esEs5(xuu50000, xuu51000, bdd, bde) 29.16/12.43 new_lt19(xuu50001, xuu51001, ty_Double) -> new_lt15(xuu50001, xuu51001) 29.16/12.43 new_esEs20(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 29.16/12.43 new_esEs24(xuu3110001, xuu6001, ty_Float) -> new_esEs9(xuu3110001, xuu6001) 29.16/12.43 new_esEs25(xuu3110000, xuu6000, app(ty_[], dde)) -> new_esEs19(xuu3110000, xuu6000, dde) 29.16/12.43 new_esEs23(xuu3110002, xuu6002, ty_Float) -> new_esEs9(xuu3110002, xuu6002) 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Float, bhd) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.43 new_ltEs19(xuu5000, xuu5100, ty_Ordering) -> new_ltEs5(xuu5000, xuu5100) 29.16/12.43 new_esEs25(xuu3110000, xuu6000, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.43 new_asAs(False, xuu178) -> False 29.16/12.43 new_lt16(xuu50000, xuu51000, app(app(ty_Either, hf), hg)) -> new_lt12(xuu50000, xuu51000, hf, hg) 29.16/12.43 new_esEs20(xuu3110001, xuu6001, ty_Integer) -> new_esEs11(xuu3110001, xuu6001) 29.16/12.43 new_lt19(xuu50001, xuu51001, app(ty_Ratio, ddh)) -> new_lt10(xuu50001, xuu51001, ddh) 29.16/12.43 new_esEs28(xuu50000, xuu51000, app(ty_Ratio, dea)) -> new_esEs15(xuu50000, xuu51000, dea) 29.16/12.43 new_ltEs5(GT, EQ) -> False 29.16/12.43 new_ltEs20(xuu50001, xuu51001, ty_Ordering) -> new_ltEs5(xuu50001, xuu51001) 29.16/12.43 new_lt18(xuu50000, xuu51000) -> new_esEs8(new_compare10(xuu50000, xuu51000), LT) 29.16/12.43 new_ltEs12(Right(xuu50000), Right(xuu51000), eg, ty_Double) -> new_ltEs13(xuu50000, xuu51000) 29.16/12.43 new_esEs8(EQ, GT) -> False 29.16/12.43 new_esEs8(GT, EQ) -> False 29.16/12.43 new_compare5(xuu50000, xuu51000, ty_Ordering) -> new_compare7(xuu50000, xuu51000) 29.16/12.43 new_lt20(xuu50000, xuu51000, ty_Double) -> new_lt15(xuu50000, xuu51000) 29.16/12.43 new_ltEs12(Right(xuu50000), Right(xuu51000), eg, ty_Char) -> new_ltEs15(xuu50000, xuu51000) 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, bhe), bhf), bhg), bhd) -> new_esEs7(xuu3110000, xuu6000, bhe, bhf, bhg) 29.16/12.43 new_compare29(xuu50000, xuu51000, False, hh, baa) -> new_compare115(xuu50000, xuu51000, new_ltEs16(xuu50000, xuu51000, hh, baa), hh, baa) 29.16/12.43 29.16/12.43 The set Q consists of the following terms: 29.16/12.43 29.16/12.43 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.16/12.43 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.16/12.43 new_esEs8(EQ, EQ) 29.16/12.43 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.43 new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.16/12.43 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_esEs26(x0, x1, ty_Int) 29.16/12.43 new_ltEs21(x0, x1, ty_Integer) 29.16/12.43 new_ltEs20(x0, x1, ty_Bool) 29.16/12.43 new_esEs24(x0, x1, ty_Bool) 29.16/12.43 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 29.16/12.43 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 29.16/12.43 new_esEs4(Just(x0), Just(x1), ty_Ordering) 29.16/12.43 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 29.16/12.43 new_esEs18(Char(x0), Char(x1)) 29.16/12.43 new_esEs22(x0, x1, app(ty_Maybe, x2)) 29.16/12.43 new_esEs4(Just(x0), Just(x1), ty_Double) 29.16/12.43 new_ltEs20(x0, x1, ty_@0) 29.16/12.43 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.43 new_lt16(x0, x1, ty_Integer) 29.16/12.43 new_esEs28(x0, x1, ty_Ordering) 29.16/12.43 new_lt19(x0, x1, ty_Integer) 29.16/12.43 new_compare29(x0, x1, False, x2, x3) 29.16/12.43 new_pePe(False, x0) 29.16/12.43 new_compare114(x0, x1, True, x2, x3, x4) 29.16/12.43 new_primPlusNat1(Zero, Zero) 29.16/12.43 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.43 new_ltEs10(Just(x0), Just(x1), ty_Int) 29.16/12.43 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 29.16/12.43 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 29.16/12.43 new_ltEs10(Just(x0), Just(x1), ty_Char) 29.16/12.43 new_ltEs19(x0, x1, ty_Bool) 29.16/12.43 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.43 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 29.16/12.43 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 29.16/12.43 new_esEs28(x0, x1, ty_Int) 29.16/12.43 new_compare25(x0, x1, True, x2, x3) 29.16/12.43 new_esEs20(x0, x1, ty_Integer) 29.16/12.43 new_lt20(x0, x1, ty_Float) 29.16/12.43 new_ltEs18(x0, x1, app(ty_[], x2)) 29.16/12.43 new_esEs26(x0, x1, app(ty_Maybe, x2)) 29.16/12.43 new_esEs26(x0, x1, ty_Char) 29.16/12.43 new_esEs27(x0, x1, ty_Char) 29.16/12.43 new_esEs4(Just(x0), Just(x1), ty_Int) 29.16/12.43 new_ltEs19(x0, x1, ty_Integer) 29.16/12.43 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 29.16/12.43 new_esEs25(x0, x1, ty_@0) 29.16/12.43 new_esEs28(x0, x1, ty_Char) 29.16/12.43 new_ltEs21(x0, x1, ty_Bool) 29.16/12.43 new_lt16(x0, x1, ty_Bool) 29.16/12.43 new_primEqInt(Pos(Zero), Pos(Zero)) 29.16/12.43 new_esEs20(x0, x1, ty_Bool) 29.16/12.43 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_esEs27(x0, x1, ty_Int) 29.16/12.43 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 29.16/12.43 new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) 29.16/12.43 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_esEs28(x0, x1, ty_Double) 29.16/12.43 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.43 new_esEs16(x0, x1, ty_Int) 29.16/12.43 new_esEs23(x0, x1, ty_Integer) 29.16/12.43 new_primCmpNat0(Succ(x0), Zero) 29.16/12.43 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.16/12.43 new_esEs27(x0, x1, ty_@0) 29.16/12.43 new_primEqNat0(Zero, Succ(x0)) 29.16/12.43 new_asAs(True, x0) 29.16/12.43 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 29.16/12.43 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 29.16/12.43 new_primEqInt(Neg(Zero), Neg(Zero)) 29.16/12.43 new_esEs21(x0, x1, ty_@0) 29.16/12.43 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 29.16/12.43 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 29.16/12.43 new_esEs24(x0, x1, app(ty_[], x2)) 29.16/12.43 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 29.16/12.43 new_sr0(Integer(x0), Integer(x1)) 29.16/12.43 new_esEs26(x0, x1, ty_Ordering) 29.16/12.43 new_ltEs9(True, True) 29.16/12.43 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 29.16/12.43 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 29.16/12.43 new_primCmpNat0(Succ(x0), Succ(x1)) 29.16/12.43 new_ltEs5(LT, GT) 29.16/12.43 new_ltEs5(GT, LT) 29.16/12.43 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.43 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.43 new_esEs23(x0, x1, ty_Float) 29.16/12.43 new_esEs27(x0, x1, ty_Ordering) 29.16/12.43 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.43 new_esEs28(x0, x1, app(ty_[], x2)) 29.16/12.43 new_ltEs20(x0, x1, ty_Char) 29.16/12.43 new_esEs20(x0, x1, app(ty_[], x2)) 29.16/12.43 new_ltEs20(x0, x1, app(ty_[], x2)) 29.16/12.43 new_asAs(False, x0) 29.16/12.43 new_primPlusNat1(Succ(x0), Zero) 29.16/12.43 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.16/12.43 new_compare([], :(x0, x1), x2) 29.16/12.43 new_compare18(x0, x1) 29.16/12.43 new_compare115(x0, x1, True, x2, x3) 29.16/12.43 new_esEs24(x0, x1, ty_Char) 29.16/12.43 new_lt9(x0, x1, x2, x3, x4) 29.16/12.43 new_esEs25(x0, x1, ty_Int) 29.16/12.43 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.16/12.43 new_lt13(x0, x1) 29.16/12.43 new_esEs19(:(x0, x1), :(x2, x3), x4) 29.16/12.43 new_esEs4(Nothing, Just(x0), x1) 29.16/12.43 new_ltEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.16/12.43 new_lt17(x0, x1) 29.16/12.43 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 29.16/12.43 new_lt15(x0, x1) 29.16/12.43 new_esEs24(x0, x1, app(ty_Ratio, x2)) 29.16/12.43 new_esEs26(x0, x1, ty_Double) 29.16/12.43 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 29.16/12.43 new_esEs26(x0, x1, ty_Bool) 29.16/12.43 new_esEs25(x0, x1, ty_Char) 29.16/12.43 new_ltEs20(x0, x1, ty_Int) 29.16/12.43 new_primEqInt(Pos(Zero), Neg(Zero)) 29.16/12.43 new_primEqInt(Neg(Zero), Pos(Zero)) 29.16/12.43 new_lt7(x0, x1, x2) 29.16/12.43 new_esEs23(x0, x1, app(ty_Maybe, x2)) 29.16/12.43 new_ltEs10(Just(x0), Just(x1), ty_Ordering) 29.16/12.43 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 29.16/12.43 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 29.16/12.43 new_ltEs18(x0, x1, ty_Double) 29.16/12.43 new_compare5(x0, x1, app(ty_[], x2)) 29.16/12.43 new_primCompAux0(x0, x1, x2, x3) 29.16/12.43 new_esEs25(x0, x1, ty_Double) 29.16/12.43 new_esEs17(x0, x1, ty_Int) 29.16/12.43 new_compare5(x0, x1, ty_Float) 29.16/12.43 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.16/12.43 new_compare5(x0, x1, app(ty_Ratio, x2)) 29.16/12.43 new_compare25(Left(x0), Right(x1), False, x2, x3) 29.16/12.43 new_compare25(Right(x0), Left(x1), False, x2, x3) 29.16/12.43 new_esEs25(x0, x1, ty_Bool) 29.16/12.43 new_compare24(x0, x1, False) 29.16/12.43 new_esEs24(x0, x1, ty_@0) 29.16/12.43 new_esEs28(x0, x1, ty_@0) 29.16/12.43 new_ltEs4(x0, x1) 29.16/12.43 new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.16/12.43 new_esEs10(x0, x1) 29.16/12.43 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 29.16/12.43 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 29.16/12.43 new_esEs24(x0, x1, ty_Float) 29.16/12.43 new_compare([], [], x0) 29.16/12.43 new_compare25(Right(x0), Right(x1), False, x2, x3) 29.16/12.43 new_primEqNat0(Succ(x0), Succ(x1)) 29.16/12.43 new_primMulInt(Neg(x0), Neg(x1)) 29.16/12.43 new_ltEs8(x0, x1, x2) 29.16/12.43 new_ltEs20(x0, x1, ty_Float) 29.16/12.43 new_esEs24(x0, x1, ty_Ordering) 29.16/12.43 new_compare19(x0, x1, True) 29.16/12.43 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 29.16/12.43 new_esEs4(Just(x0), Just(x1), ty_Bool) 29.16/12.43 new_lt19(x0, x1, ty_Char) 29.16/12.43 new_ltEs10(Just(x0), Just(x1), ty_Integer) 29.16/12.43 new_esEs19(:(x0, x1), [], x2) 29.16/12.43 new_lt20(x0, x1, ty_Bool) 29.16/12.43 new_ltEs20(x0, x1, ty_Ordering) 29.16/12.43 new_compare111(x0, x1, False) 29.16/12.43 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.43 new_esEs16(x0, x1, ty_Integer) 29.16/12.43 new_esEs20(x0, x1, app(ty_Ratio, x2)) 29.16/12.43 new_esEs14(Double(x0, x1), Double(x2, x3)) 29.16/12.43 new_esEs26(x0, x1, ty_Integer) 29.16/12.43 new_lt16(x0, x1, ty_Int) 29.16/12.43 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.43 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 29.16/12.43 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 29.16/12.43 new_esEs21(x0, x1, ty_Float) 29.16/12.43 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.16/12.43 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.43 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 29.16/12.43 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 29.16/12.43 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.16/12.43 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.16/12.43 new_esEs24(x0, x1, ty_Int) 29.16/12.43 new_esEs4(Nothing, Nothing, x0) 29.16/12.43 new_ltEs21(x0, x1, ty_Int) 29.16/12.43 new_esEs23(x0, x1, app(ty_[], x2)) 29.16/12.43 new_esEs21(x0, x1, app(ty_[], x2)) 29.16/12.43 new_compare26(x0, x1, False) 29.16/12.43 new_esEs27(x0, x1, ty_Integer) 29.16/12.43 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_compare5(x0, x1, ty_Double) 29.16/12.43 new_ltEs5(EQ, GT) 29.16/12.43 new_ltEs5(GT, EQ) 29.16/12.43 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_primMulNat0(Zero, Succ(x0)) 29.16/12.43 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 29.16/12.43 new_ltEs7(x0, x1, x2) 29.16/12.43 new_pePe(True, x0) 29.16/12.43 new_esEs26(x0, x1, app(ty_[], x2)) 29.16/12.43 new_primMulNat0(Succ(x0), Succ(x1)) 29.16/12.43 new_esEs26(x0, x1, ty_@0) 29.16/12.43 new_ltEs21(x0, x1, ty_Char) 29.16/12.43 new_ltEs18(x0, x1, ty_Ordering) 29.16/12.43 new_esEs21(x0, x1, ty_Int) 29.16/12.43 new_primCompAux00(x0, LT) 29.16/12.43 new_ltEs12(Left(x0), Right(x1), x2, x3) 29.16/12.43 new_ltEs12(Right(x0), Left(x1), x2, x3) 29.16/12.43 new_ltEs19(x0, x1, app(ty_[], x2)) 29.16/12.43 new_lt19(x0, x1, app(ty_[], x2)) 29.16/12.43 new_esEs25(x0, x1, ty_Float) 29.16/12.43 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.43 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 29.16/12.43 new_lt16(x0, x1, ty_Char) 29.16/12.43 new_esEs8(GT, GT) 29.16/12.43 new_compare27(x0, x1, True, x2) 29.16/12.43 new_compare113(x0, x1, True, x2) 29.16/12.43 new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.16/12.43 new_esEs21(x0, x1, ty_Ordering) 29.16/12.43 new_esEs8(LT, EQ) 29.16/12.43 new_esEs8(EQ, LT) 29.16/12.43 new_ltEs10(Just(x0), Just(x1), ty_Bool) 29.16/12.43 new_lt16(x0, x1, app(ty_Maybe, x2)) 29.16/12.43 new_primCmpInt(Neg(Zero), Neg(Zero)) 29.16/12.43 new_esEs27(x0, x1, app(ty_[], x2)) 29.16/12.43 new_esEs22(x0, x1, ty_Integer) 29.16/12.43 new_compare(:(x0, x1), [], x2) 29.16/12.43 new_ltEs9(False, True) 29.16/12.43 new_ltEs9(True, False) 29.16/12.43 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 29.16/12.43 new_esEs21(x0, x1, ty_Integer) 29.16/12.43 new_esEs13(False, True) 29.16/12.43 new_esEs13(True, False) 29.16/12.43 new_esEs20(x0, x1, app(ty_Maybe, x2)) 29.16/12.43 new_esEs23(x0, x1, ty_Double) 29.16/12.43 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.16/12.43 new_esEs23(x0, x1, ty_@0) 29.16/12.43 new_lt11(x0, x1) 29.16/12.43 new_primCompAux00(x0, EQ) 29.16/12.43 new_esEs8(LT, LT) 29.16/12.43 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.43 new_lt19(x0, x1, ty_Bool) 29.16/12.43 new_primCmpInt(Pos(Zero), Neg(Zero)) 29.16/12.43 new_primCmpInt(Neg(Zero), Pos(Zero)) 29.16/12.43 new_esEs4(Just(x0), Just(x1), ty_Char) 29.16/12.43 new_primMulInt(Pos(x0), Neg(x1)) 29.16/12.43 new_primMulInt(Neg(x0), Pos(x1)) 29.16/12.43 new_lt10(x0, x1, x2) 29.16/12.43 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 29.16/12.43 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.43 new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) 29.16/12.43 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.43 new_compare28(x0, x1, True, x2, x3, x4) 29.16/12.43 new_esEs21(x0, x1, ty_Char) 29.16/12.43 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.43 new_lt19(x0, x1, ty_Float) 29.16/12.43 new_primMulInt(Pos(x0), Pos(x1)) 29.16/12.43 new_ltEs11(x0, x1) 29.16/12.43 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.16/12.43 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.43 new_compare7(x0, x1) 29.16/12.43 new_primPlusNat0(Zero, x0) 29.16/12.43 new_lt20(x0, x1, ty_Integer) 29.16/12.43 new_lt16(x0, x1, ty_Float) 29.16/12.43 new_compare5(x0, x1, app(ty_Maybe, x2)) 29.16/12.43 new_esEs22(x0, x1, ty_Ordering) 29.16/12.43 new_ltEs10(Just(x0), Nothing, x1) 29.16/12.43 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 29.16/12.43 new_esEs20(x0, x1, ty_@0) 29.16/12.43 new_lt20(x0, x1, app(ty_Ratio, x2)) 29.16/12.43 new_compare112(x0, x1, False, x2, x3) 29.16/12.43 new_ltEs19(x0, x1, ty_@0) 29.16/12.43 new_esEs20(x0, x1, ty_Double) 29.16/12.43 new_esEs21(x0, x1, ty_Bool) 29.16/12.43 new_ltEs19(x0, x1, ty_Double) 29.16/12.43 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.16/12.43 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 29.16/12.43 new_lt20(x0, x1, app(ty_Maybe, x2)) 29.16/12.43 new_ltEs10(Just(x0), Just(x1), ty_Float) 29.16/12.43 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 29.16/12.43 new_lt19(x0, x1, ty_Int) 29.16/12.43 new_esEs27(x0, x1, ty_Bool) 29.16/12.43 new_ltEs21(x0, x1, ty_Float) 29.16/12.43 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 29.16/12.43 new_esEs24(x0, x1, ty_Integer) 29.16/12.43 new_ltEs20(x0, x1, ty_Integer) 29.16/12.43 new_lt20(x0, x1, ty_Ordering) 29.16/12.43 new_esEs22(x0, x1, app(ty_[], x2)) 29.16/12.43 new_esEs4(Just(x0), Just(x1), ty_Float) 29.16/12.43 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 29.16/12.43 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_compare19(x0, x1, False) 29.16/12.43 new_compare111(x0, x1, True) 29.16/12.43 new_compare27(x0, x1, False, x2) 29.16/12.43 new_ltEs16(@2(x0, x1), @2(x2, x3), x4, x5) 29.16/12.43 new_esEs28(x0, x1, app(ty_Maybe, x2)) 29.16/12.43 new_lt5(x0, x1, x2, x3) 29.16/12.43 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.43 new_lt20(x0, x1, ty_Double) 29.16/12.43 new_primMulNat0(Zero, Zero) 29.16/12.43 new_esEs22(x0, x1, ty_@0) 29.16/12.43 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.16/12.43 new_lt18(x0, x1) 29.16/12.43 new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) 29.16/12.43 new_compare24(x0, x1, True) 29.16/12.43 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 29.16/12.43 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 29.16/12.43 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.43 new_ltEs18(x0, x1, ty_@0) 29.16/12.43 new_compare5(x0, x1, ty_Char) 29.16/12.43 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.43 new_compare11(x0, x1, x2, x3) 29.16/12.43 new_lt19(x0, x1, app(ty_Ratio, x2)) 29.16/12.43 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 29.16/12.43 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 29.16/12.43 new_compare5(x0, x1, ty_@0) 29.16/12.43 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 29.16/12.43 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.16/12.43 new_esEs26(x0, x1, ty_Float) 29.16/12.43 new_esEs11(Integer(x0), Integer(x1)) 29.16/12.43 new_esEs24(x0, x1, app(ty_Maybe, x2)) 29.16/12.43 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 29.16/12.43 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.43 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 29.16/12.43 new_esEs23(x0, x1, app(ty_Ratio, x2)) 29.16/12.43 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_compare10(@0, @0) 29.16/12.43 new_compare12(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 29.16/12.43 new_ltEs18(x0, x1, ty_Integer) 29.16/12.43 new_ltEs10(Nothing, Just(x0), x1) 29.16/12.43 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 29.16/12.43 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.16/12.43 new_not(True) 29.16/12.43 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.43 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 29.16/12.43 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_lt6(x0, x1) 29.16/12.43 new_lt16(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.43 new_primCmpNat0(Zero, Succ(x0)) 29.16/12.43 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.16/12.43 new_compare5(x0, x1, ty_Int) 29.16/12.43 new_esEs27(x0, x1, ty_Float) 29.16/12.43 new_compare25(Left(x0), Left(x1), False, x2, x3) 29.16/12.43 new_esEs8(EQ, GT) 29.16/12.43 new_esEs8(GT, EQ) 29.16/12.43 new_compare(:(x0, x1), :(x2, x3), x4) 29.16/12.43 new_esEs22(x0, x1, ty_Int) 29.16/12.43 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 29.16/12.43 new_esEs27(x0, x1, app(ty_Ratio, x2)) 29.16/12.43 new_esEs9(Float(x0, x1), Float(x2, x3)) 29.16/12.43 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 29.16/12.43 new_esEs22(x0, x1, app(ty_Ratio, x2)) 29.16/12.43 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 29.16/12.43 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 29.16/12.43 new_primPlusNat0(Succ(x0), x1) 29.16/12.43 new_lt19(x0, x1, app(ty_Maybe, x2)) 29.16/12.43 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.16/12.43 new_lt16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_compare12(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 29.16/12.43 new_compare12(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 29.16/12.43 new_compare12(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 29.16/12.43 new_fsEs(x0) 29.16/12.43 new_esEs13(True, True) 29.16/12.43 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 29.16/12.43 new_compare110(x0, x1, False, x2, x3) 29.16/12.43 new_compare115(x0, x1, False, x2, x3) 29.16/12.43 new_primPlusNat1(Zero, Succ(x0)) 29.16/12.43 new_ltEs18(x0, x1, ty_Char) 29.16/12.43 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 29.16/12.43 new_esEs22(x0, x1, ty_Bool) 29.16/12.43 new_ltEs21(x0, x1, ty_Ordering) 29.16/12.43 new_primEqNat0(Succ(x0), Zero) 29.16/12.43 new_compare9(x0, x1, x2) 29.16/12.43 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 29.16/12.43 new_lt20(x0, x1, app(ty_[], x2)) 29.16/12.43 new_esEs20(x0, x1, ty_Ordering) 29.16/12.43 new_esEs25(x0, x1, app(ty_Maybe, x2)) 29.16/12.43 new_compare26(x0, x1, True) 29.16/12.43 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.43 new_lt20(x0, x1, ty_Char) 29.16/12.43 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_lt16(x0, x1, app(ty_Ratio, x2)) 29.16/12.43 new_lt19(x0, x1, ty_Ordering) 29.16/12.43 new_esEs22(x0, x1, ty_Char) 29.16/12.43 new_esEs21(x0, x1, app(ty_Ratio, x2)) 29.16/12.43 new_ltEs10(Nothing, Nothing, x0) 29.16/12.43 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 29.16/12.43 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.16/12.43 new_lt20(x0, x1, ty_@0) 29.16/12.43 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 29.16/12.43 new_lt20(x0, x1, ty_Int) 29.16/12.43 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.16/12.43 new_esEs28(x0, x1, ty_Float) 29.16/12.43 new_esEs4(Just(x0), Just(x1), ty_Integer) 29.16/12.43 new_ltEs5(LT, LT) 29.16/12.43 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_esEs22(x0, x1, ty_Double) 29.16/12.43 new_lt4(x0, x1, x2) 29.16/12.43 new_ltEs15(x0, x1) 29.16/12.43 new_primCmpInt(Pos(Zero), Pos(Zero)) 29.16/12.43 new_compare6(x0, x1) 29.16/12.43 new_ltEs18(x0, x1, ty_Bool) 29.16/12.43 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.16/12.43 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 29.16/12.43 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 29.16/12.43 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.16/12.43 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 29.16/12.43 new_esEs23(x0, x1, ty_Char) 29.16/12.43 new_ltEs19(x0, x1, ty_Ordering) 29.16/12.43 new_sr(x0, x1) 29.16/12.43 new_ltEs5(LT, EQ) 29.16/12.43 new_ltEs5(EQ, LT) 29.16/12.43 new_ltEs20(x0, x1, ty_Double) 29.16/12.43 new_esEs24(x0, x1, ty_Double) 29.16/12.43 new_ltEs5(GT, GT) 29.16/12.43 new_primCompAux00(x0, GT) 29.16/12.43 new_esEs21(x0, x1, ty_Double) 29.16/12.43 new_compare29(x0, x1, True, x2, x3) 29.16/12.43 new_esEs12(@0, @0) 29.16/12.43 new_ltEs18(x0, x1, ty_Int) 29.16/12.43 new_esEs4(Just(x0), Just(x1), ty_@0) 29.16/12.43 new_compare114(x0, x1, False, x2, x3, x4) 29.16/12.43 new_lt16(x0, x1, ty_Ordering) 29.16/12.43 new_esEs8(LT, GT) 29.16/12.43 new_esEs8(GT, LT) 29.16/12.43 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.16/12.43 new_ltEs19(x0, x1, ty_Float) 29.16/12.43 new_lt16(x0, x1, ty_Double) 29.16/12.43 new_esEs26(x0, x1, app(ty_Ratio, x2)) 29.16/12.43 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_compare8(Integer(x0), Integer(x1)) 29.16/12.43 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.16/12.43 new_compare112(x0, x1, True, x2, x3) 29.16/12.43 new_esEs23(x0, x1, ty_Int) 29.16/12.43 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.16/12.43 new_esEs22(x0, x1, ty_Float) 29.16/12.43 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 29.16/12.43 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 29.16/12.43 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.43 new_compare110(x0, x1, True, x2, x3) 29.16/12.43 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.43 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 29.16/12.43 new_esEs25(x0, x1, ty_Integer) 29.16/12.43 new_lt16(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.43 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.16/12.43 new_ltEs21(x0, x1, ty_Double) 29.16/12.43 new_esEs23(x0, x1, ty_Ordering) 29.16/12.43 new_ltEs21(x0, x1, app(ty_[], x2)) 29.16/12.43 new_ltEs18(x0, x1, ty_Float) 29.16/12.43 new_esEs5(Left(x0), Right(x1), x2, x3) 29.16/12.43 new_esEs5(Right(x0), Left(x1), x2, x3) 29.16/12.43 new_esEs28(x0, x1, ty_Bool) 29.16/12.43 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 29.16/12.43 new_esEs19([], [], x0) 29.16/12.43 new_lt12(x0, x1, x2, x3) 29.16/12.43 new_ltEs6(x0, x1) 29.16/12.43 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_primEqNat0(Zero, Zero) 29.16/12.43 new_esEs13(False, False) 29.16/12.43 new_esEs19([], :(x0, x1), x2) 29.16/12.43 new_esEs27(x0, x1, app(ty_Maybe, x2)) 29.16/12.43 new_lt8(x0, x1) 29.16/12.43 new_lt19(x0, x1, ty_Double) 29.16/12.43 new_primPlusNat1(Succ(x0), Succ(x1)) 29.16/12.43 new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.16/12.43 new_ltEs9(False, False) 29.16/12.43 new_lt19(x0, x1, ty_@0) 29.16/12.43 new_not(False) 29.16/12.43 new_ltEs13(x0, x1) 29.16/12.43 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.43 new_ltEs10(Just(x0), Just(x1), ty_@0) 29.16/12.43 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.43 new_esEs28(x0, x1, app(ty_Ratio, x2)) 29.16/12.43 new_compare14(Char(x0), Char(x1)) 29.16/12.43 new_lt16(x0, x1, app(ty_[], x2)) 29.16/12.43 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.16/12.43 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 29.16/12.43 new_compare17(x0, x1, x2, x3, x4) 29.16/12.43 new_ltEs10(Just(x0), Just(x1), ty_Double) 29.16/12.43 new_ltEs14(x0, x1) 29.16/12.43 new_esEs27(x0, x1, ty_Double) 29.16/12.43 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.16/12.43 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 29.16/12.43 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.43 new_esEs25(x0, x1, ty_Ordering) 29.16/12.43 new_compare28(x0, x1, False, x2, x3, x4) 29.16/12.43 new_compare5(x0, x1, ty_Ordering) 29.16/12.43 new_esEs25(x0, x1, app(ty_[], x2)) 29.16/12.43 new_compare5(x0, x1, ty_Integer) 29.16/12.43 new_ltEs21(x0, x1, ty_@0) 29.16/12.43 new_esEs4(Just(x0), Nothing, x1) 29.16/12.43 new_compare5(x0, x1, ty_Bool) 29.16/12.43 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 new_lt16(x0, x1, ty_@0) 29.16/12.43 new_esEs21(x0, x1, app(ty_Maybe, x2)) 29.16/12.43 new_esEs17(x0, x1, ty_Integer) 29.16/12.43 new_compare15(x0, x1, x2, x3) 29.16/12.43 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 29.16/12.43 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 29.16/12.43 new_esEs20(x0, x1, ty_Float) 29.16/12.43 new_ltEs5(EQ, EQ) 29.16/12.43 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 29.16/12.43 new_compare113(x0, x1, False, x2) 29.16/12.43 new_esEs25(x0, x1, app(ty_Ratio, x2)) 29.16/12.43 new_esEs20(x0, x1, ty_Char) 29.16/12.43 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 29.16/12.43 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.43 new_ltEs19(x0, x1, ty_Char) 29.16/12.43 new_ltEs19(x0, x1, ty_Int) 29.16/12.43 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.43 new_esEs28(x0, x1, ty_Integer) 29.16/12.43 new_lt14(x0, x1) 29.16/12.43 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.43 new_primMulNat0(Succ(x0), Zero) 29.16/12.43 new_primCmpNat0(Zero, Zero) 29.16/12.43 new_esEs23(x0, x1, ty_Bool) 29.16/12.43 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.43 new_esEs20(x0, x1, ty_Int) 29.16/12.43 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.43 29.16/12.43 We have to consider all minimal (P,Q,R)-chains. 29.16/12.43 ---------------------------------------- 29.16/12.43 29.16/12.43 (24) QDPSizeChangeProof (EQUIVALENT) 29.16/12.43 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 29.16/12.43 29.16/12.43 From the DPs we obtained the following set of size-change graphs: 29.16/12.43 *new_compare0(:(xuu50000, xuu50001), :(xuu51000, xuu51001), h) -> new_primCompAux(xuu50000, xuu51000, new_compare(xuu50001, xuu51001, h), h) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare0(:(xuu50000, xuu50001), :(xuu51000, xuu51001), h) -> new_compare0(xuu50001, xuu51001, h) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs0(Just(xuu50000), Just(xuu51000), app(app(app(ty_@3, db), dc), dd)) -> new_ltEs3(xuu50000, xuu51000, db, dc, dd) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs0(Just(xuu50000), Just(xuu51000), app(ty_Maybe, cd)) -> new_ltEs0(xuu50000, xuu51000, cd) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs3(xuu50002, xuu51002, bbe, bbf, bbg) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, baf, app(ty_Maybe, bah)) -> new_ltEs0(xuu50002, xuu51002, bah) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_lt(xuu50000, xuu51000, hd) -> new_compare0(xuu50000, xuu51000, hd) 29.16/12.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_lt2(xuu50000, xuu51000, hh, baa) -> new_compare22(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, hh, baa), hh, baa) 29.16/12.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare20(xuu50000, xuu51000, False, cb) -> new_ltEs0(xuu50000, xuu51000, cb) 29.16/12.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs(:(xuu50000, xuu50001), :(xuu51000, xuu51001), h) -> new_primCompAux(xuu50000, xuu51000, new_compare(xuu50001, xuu51001, h), h) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(:(xuu50000, xuu50001)), Left(:(xuu51000, xuu51001)), False, app(ty_[], h), bec) -> new_primCompAux(xuu50000, xuu51000, new_compare(xuu50001, xuu51001, h), h) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs0(Just(xuu50000), Just(xuu51000), app(app(ty_Either, ce), cf)) -> new_ltEs1(xuu50000, xuu51000, ce, cf) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, baf, app(app(ty_Either, bba), bbb)) -> new_ltEs1(xuu50002, xuu51002, bba, bbb) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs(:(xuu50000, xuu50001), :(xuu51000, xuu51001), h) -> new_compare0(xuu50001, xuu51001, h) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs0(Just(xuu50000), Just(xuu51000), app(app(ty_@2, cg), da)) -> new_ltEs2(xuu50000, xuu51000, cg, da) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs0(Just(xuu50000), Just(xuu51000), app(ty_[], cc)) -> new_ltEs(xuu50000, xuu51000, cc) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, baf, app(app(ty_@2, bbc), bbd)) -> new_ltEs2(xuu50002, xuu51002, bbc, bbd) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs3(xuu50001, xuu51001, ha, hb, hc) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), gb, app(ty_Maybe, gd)) -> new_ltEs0(xuu50001, xuu51001, gd) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(app(ty_Either, hf), hg), he) -> new_compare21(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, hf, hg), hf, hg) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), gb, app(app(ty_Either, ge), gf)) -> new_ltEs1(xuu50001, xuu51001, ge, gf) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), gb, app(app(ty_@2, gg), gh)) -> new_ltEs2(xuu50001, xuu51001, gg, gh) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(app(ty_@2, hh), baa), he) -> new_compare22(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, hh, baa), hh, baa) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_lt3(xuu50000, xuu51000, bab, bac, bad) -> new_compare23(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bab, bac, bad), bab, bac, bad) 29.16/12.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 29.16/12.43 29.16/12.43 29.16/12.43 *new_lt0(xuu50000, xuu51000, cb) -> new_compare20(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, cb), cb) 29.16/12.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, baf, app(ty_[], bag)) -> new_ltEs(xuu50002, xuu51002, bag) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), gb, app(ty_[], gc)) -> new_ltEs(xuu50001, xuu51001, gc) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare3(xuu50000, xuu51000, hh, baa) -> new_compare22(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, hh, baa), hh, baa) 29.16/12.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(app(ty_@2, hh), baa)), he), bec) -> new_compare22(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, hh, baa), hh, baa) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_lt1(xuu50000, xuu51000, hf, hg) -> new_compare21(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, hf, hg), hf, hg) 29.16/12.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare22(xuu50000, xuu51000, False, hh, baa) -> new_ltEs2(xuu50000, xuu51000, hh, baa) 29.16/12.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare23(xuu50000, xuu51000, False, bab, bac, bad) -> new_ltEs3(xuu50000, xuu51000, bab, bac, bad) 29.16/12.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(app(ty_Either, hf), hg)), he), bec) -> new_compare21(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, hf, hg), hf, hg) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare2(xuu50000, xuu51000, hf, hg) -> new_compare21(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, hf, hg), hf, hg) 29.16/12.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_primCompAux(xuu50000, xuu51000, xuu210, app(app(ty_Either, bc), bd)) -> new_compare2(xuu50000, xuu51000, bc, bd) 29.16/12.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(ty_[], hd), he) -> new_compare0(xuu50000, xuu51000, hd) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_primCompAux(xuu50000, xuu51000, xuu210, app(ty_[], ba)) -> new_compare0(xuu50000, xuu51000, ba) 29.16/12.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_primCompAux(xuu50000, xuu51000, xuu210, app(app(ty_@2, be), bf)) -> new_compare3(xuu50000, xuu51000, be, bf) 29.16/12.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare1(xuu50000, xuu51000, cb) -> new_compare20(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, cb), cb) 29.16/12.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare4(xuu50000, xuu51000, bab, bac, bad) -> new_compare23(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bab, bac, bad), bab, bac, bad) 29.16/12.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 29.16/12.43 29.16/12.43 29.16/12.43 *new_primCompAux(xuu50000, xuu51000, xuu210, app(ty_Maybe, bb)) -> new_compare1(xuu50000, xuu51000, bb) 29.16/12.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_primCompAux(xuu50000, xuu51000, xuu210, app(app(app(ty_@3, bg), bh), ca)) -> new_compare4(xuu50000, xuu51000, bg, bh, ca) 29.16/12.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(ty_Maybe, cb), he) -> new_compare20(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, cb), cb) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs2(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), app(app(app(ty_@3, bab), bac), bad), he) -> new_compare23(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bab, bac, bad), bab, bac, bad) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(ty_Maybe, cb)), he), bec) -> new_compare20(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, cb), cb) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(app(app(ty_@3, bab), bac), bad)), he), bec) -> new_compare23(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bab, bac, bad), bab, bac, bad) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs1(Left(xuu50000), Left(xuu51000), app(app(app(ty_@3, ed), ee), ef), df) -> new_ltEs3(xuu50000, xuu51000, ed, ee, ef) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs1(Right(xuu50000), Right(xuu51000), eg, app(app(app(ty_@3, fg), fh), ga)) -> new_ltEs3(xuu50000, xuu51000, fg, fh, ga) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, gb), app(app(app(ty_@3, ha), hb), hc)), bec) -> new_ltEs3(xuu50001, xuu51001, ha, hb, hc) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Right(xuu5000), Right(xuu5100), False, bed, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs3(xuu5000, xuu5100, bfc, bfd, bfe) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, eg), app(app(app(ty_@3, fg), fh), ga)), bec) -> new_ltEs3(xuu50000, xuu51000, fg, fh, ga) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), baf), app(app(app(ty_@3, bbe), bbf), bbg)), bec) -> new_ltEs3(xuu50002, xuu51002, bbe, bbf, bbg) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(app(app(ty_@3, db), dc), dd)), bec) -> new_ltEs3(xuu50000, xuu51000, db, dc, dd) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(app(app(ty_@3, ed), ee), ef)), df), bec) -> new_ltEs3(xuu50000, xuu51000, ed, ee, ef) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(app(ty_@2, bdf), bdg), baf, bca) -> new_lt2(xuu50000, xuu51000, bdf, bdg) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, app(app(ty_@2, bce), bcf), bca) -> new_lt2(xuu50001, xuu51001, bce, bcf) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, app(ty_Maybe, bcb), bca) -> new_lt0(xuu50001, xuu51001, bcb) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(ty_Maybe, bdc), baf, bca) -> new_lt0(xuu50000, xuu51000, bdc) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(app(app(ty_@3, bdh), bea), beb), baf, bca) -> new_lt3(xuu50000, xuu51000, bdh, bea, beb) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, app(app(app(ty_@3, bcg), bch), bda), bca) -> new_lt3(xuu50001, xuu51001, bcg, bch, bda) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, app(ty_[], bbh), bca) -> new_lt(xuu50001, xuu51001, bbh) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(ty_[], bdb), baf, bca) -> new_lt(xuu50000, xuu51000, bdb) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), app(app(ty_Either, bdd), bde), baf, bca) -> new_lt1(xuu50000, xuu51000, bdd, bde) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), bae, app(app(ty_Either, bcc), bcd), bca) -> new_lt1(xuu50001, xuu51001, bcc, bcd) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs1(Right(xuu50000), Right(xuu51000), eg, app(ty_Maybe, fa)) -> new_ltEs0(xuu50000, xuu51000, fa) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs1(Left(xuu50000), Left(xuu51000), app(ty_Maybe, dg), df) -> new_ltEs0(xuu50000, xuu51000, dg) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(ty_Maybe, dg)), df), bec) -> new_ltEs0(xuu50000, xuu51000, dg) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Right(xuu5000), Right(xuu5100), False, bed, app(ty_Maybe, bef)) -> new_ltEs0(xuu5000, xuu5100, bef) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), baf), app(ty_Maybe, bah)), bec) -> new_ltEs0(xuu50002, xuu51002, bah) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, gb), app(ty_Maybe, gd)), bec) -> new_ltEs0(xuu50001, xuu51001, gd) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(ty_Maybe, cd)), bec) -> new_ltEs0(xuu50000, xuu51000, cd) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, eg), app(ty_Maybe, fa)), bec) -> new_ltEs0(xuu50000, xuu51000, fa) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs1(Right(xuu50000), Right(xuu51000), eg, app(app(ty_Either, fb), fc)) -> new_ltEs1(xuu50000, xuu51000, fb, fc) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs1(Left(xuu50000), Left(xuu51000), app(app(ty_Either, dh), ea), df) -> new_ltEs1(xuu50000, xuu51000, dh, ea) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, gb), app(app(ty_Either, ge), gf)), bec) -> new_ltEs1(xuu50001, xuu51001, ge, gf) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(app(ty_Either, dh), ea)), df), bec) -> new_ltEs1(xuu50000, xuu51000, dh, ea) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Right(xuu5000), Right(xuu5100), False, bed, app(app(ty_Either, beg), beh)) -> new_ltEs1(xuu5000, xuu5100, beg, beh) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, eg), app(app(ty_Either, fb), fc)), bec) -> new_ltEs1(xuu50000, xuu51000, fb, fc) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), baf), app(app(ty_Either, bba), bbb)), bec) -> new_ltEs1(xuu50002, xuu51002, bba, bbb) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(app(ty_Either, ce), cf)), bec) -> new_ltEs1(xuu50000, xuu51000, ce, cf) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs1(Right(xuu50000), Right(xuu51000), eg, app(app(ty_@2, fd), ff)) -> new_ltEs2(xuu50000, xuu51000, fd, ff) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs1(Left(xuu50000), Left(xuu51000), app(app(ty_@2, eb), ec), df) -> new_ltEs2(xuu50000, xuu51000, eb, ec) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs1(Right(xuu50000), Right(xuu51000), eg, app(ty_[], eh)) -> new_ltEs(xuu50000, xuu51000, eh) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_ltEs1(Left(xuu50000), Left(xuu51000), app(ty_[], de), df) -> new_ltEs(xuu50000, xuu51000, de) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Right(xuu5000), Right(xuu5100), False, bed, app(app(ty_@2, bfa), bfb)) -> new_ltEs2(xuu5000, xuu5100, bfa, bfb) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(app(ty_@2, cg), da)), bec) -> new_ltEs2(xuu50000, xuu51000, cg, da) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, gb), app(app(ty_@2, gg), gh)), bec) -> new_ltEs2(xuu50001, xuu51001, gg, gh) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, eg), app(app(ty_@2, fd), ff)), bec) -> new_ltEs2(xuu50000, xuu51000, fd, ff) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(app(ty_@2, eb), ec)), df), bec) -> new_ltEs2(xuu50000, xuu51000, eb, ec) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), baf), app(app(ty_@2, bbc), bbd)), bec) -> new_ltEs2(xuu50002, xuu51002, bbc, bbd) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(Left(xuu50000)), Left(Left(xuu51000)), False, app(app(ty_Either, app(ty_[], de)), df), bec) -> new_ltEs(xuu50000, xuu51000, de) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), baf), app(ty_[], bag)), bec) -> new_ltEs(xuu50002, xuu51002, bag) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, gb), app(ty_[], gc)), bec) -> new_ltEs(xuu50001, xuu51001, gc) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(Right(xuu50000)), Left(Right(xuu51000)), False, app(app(ty_Either, eg), app(ty_[], eh)), bec) -> new_ltEs(xuu50000, xuu51000, eh) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(Just(xuu50000)), Left(Just(xuu51000)), False, app(ty_Maybe, app(ty_[], cc)), bec) -> new_ltEs(xuu50000, xuu51000, cc) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Right(xuu5000), Right(xuu5100), False, bed, app(ty_[], bee)) -> new_ltEs(xuu5000, xuu5100, bee) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), app(app(ty_@2, bce), bcf)), bca), bec) -> new_lt2(xuu50001, xuu51001, bce, bcf) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(app(ty_@2, bdf), bdg)), baf), bca), bec) -> new_lt2(xuu50000, xuu51000, bdf, bdg) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(:(xuu50000, xuu50001)), Left(:(xuu51000, xuu51001)), False, app(ty_[], h), bec) -> new_compare0(xuu50001, xuu51001, h) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@2(xuu50000, xuu50001)), Left(@2(xuu51000, xuu51001)), False, app(app(ty_@2, app(ty_[], hd)), he), bec) -> new_compare0(xuu50000, xuu51000, hd) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(ty_Maybe, bdc)), baf), bca), bec) -> new_lt0(xuu50000, xuu51000, bdc) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), app(ty_Maybe, bcb)), bca), bec) -> new_lt0(xuu50001, xuu51001, bcb) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), app(app(app(ty_@3, bcg), bch), bda)), bca), bec) -> new_lt3(xuu50001, xuu51001, bcg, bch, bda) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bdh), bea), beb)), baf), bca), bec) -> new_lt3(xuu50000, xuu51000, bdh, bea, beb) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), app(ty_[], bbh)), bca), bec) -> new_lt(xuu50001, xuu51001, bbh) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(ty_[], bdb)), baf), bca), bec) -> new_lt(xuu50000, xuu51000, bdb) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, app(app(ty_Either, bdd), bde)), baf), bca), bec) -> new_lt1(xuu50000, xuu51000, bdd, bde) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 *new_compare21(Left(@3(xuu50000, xuu50001, xuu50002)), Left(@3(xuu51000, xuu51001, xuu51002)), False, app(app(app(ty_@3, bae), app(app(ty_Either, bcc), bcd)), bca), bec) -> new_lt1(xuu50001, xuu51001, bcc, bcd) 29.16/12.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.16/12.43 29.16/12.43 29.16/12.43 ---------------------------------------- 29.16/12.43 29.16/12.43 (25) 29.16/12.43 YES 29.16/12.43 29.16/12.43 ---------------------------------------- 29.16/12.43 29.16/12.43 (26) 29.16/12.43 Obligation: 29.16/12.43 Q DP problem: 29.16/12.43 The TRS P consists of the following rules: 29.16/12.43 29.16/12.43 new_primMulNat(Succ(xuu311000100), Succ(xuu600000)) -> new_primMulNat(xuu311000100, Succ(xuu600000)) 29.16/12.43 29.16/12.43 R is empty. 29.16/12.43 Q is empty. 29.16/12.43 We have to consider all minimal (P,Q,R)-chains. 29.16/12.43 ---------------------------------------- 29.16/12.43 29.16/12.43 (27) QDPSizeChangeProof (EQUIVALENT) 29.16/12.43 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 29.16/12.43 29.16/12.43 From the DPs we obtained the following set of size-change graphs: 29.16/12.43 *new_primMulNat(Succ(xuu311000100), Succ(xuu600000)) -> new_primMulNat(xuu311000100, Succ(xuu600000)) 29.16/12.43 The graph contains the following edges 1 > 1, 2 >= 2 29.16/12.43 29.16/12.43 29.16/12.43 ---------------------------------------- 29.16/12.43 29.16/12.43 (28) 29.16/12.43 YES 29.16/12.43 29.16/12.43 ---------------------------------------- 29.16/12.43 29.16/12.43 (29) 29.16/12.43 Obligation: 29.16/12.43 Q DP problem: 29.16/12.43 The TRS P consists of the following rules: 29.16/12.43 29.16/12.43 new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu64, Left(xuu311000), xuu31101, bc, bd, be) 29.16/12.43 new_addToFM_C(Branch(Left(xuu600), xuu61, xuu62, xuu63, xuu64), Right(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Right(xuu311000), Left(xuu600), False, bc, bd), LT), bc, bd, be) 29.16/12.43 new_addToFM_C(Branch(Right(xuu600), xuu61, xuu62, xuu63, xuu64), Right(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C22(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Right(xuu311000), Right(xuu600), new_esEs31(xuu311000, xuu600, bd), bc, bd), LT), bc, bd, be) 29.16/12.43 new_addToFM_C22(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bf, bg, bh) -> new_addToFM_C(xuu37, Right(xuu39), xuu40, bf, bg, bh) 29.16/12.43 new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu20, Left(xuu22), xuu23, h, ba, bb) 29.16/12.43 new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, bc, bd, be) -> new_addToFM_C11(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Right(xuu311000), Left(xuu600), False, bc, bd), GT), bc, bd, be) 29.16/12.43 new_addToFM_C(Branch(Left(xuu600), xuu61, xuu62, xuu63, xuu64), Left(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Left(xuu311000), Left(xuu600), new_esEs30(xuu311000, xuu600, bc), bc, bd), LT), bc, bd, be) 29.16/12.43 new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, h, ba, bb) -> new_addToFM_C1(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare25(Left(xuu22), Left(xuu17), new_esEs29(xuu22, xuu17, h), h, ba), GT), h, ba, bb) 29.16/12.43 new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu63, Right(xuu311000), xuu31101, bc, bd, be) 29.16/12.43 new_addToFM_C(Branch(Right(xuu600), xuu61, xuu62, xuu63, xuu64), Left(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Left(xuu311000), Right(xuu600), False, bc, bd), LT), bc, bd, be) 29.16/12.43 new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, bc, bd, be) -> new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Left(xuu311000), Right(xuu600), False, bc, bd), GT), bc, bd, be) 29.16/12.43 new_addToFM_C11(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu64, Right(xuu311000), xuu31101, bc, bd, be) 29.16/12.43 new_addToFM_C1(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu21, Left(xuu22), xuu23, h, ba, bb) 29.16/12.43 new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu63, Left(xuu311000), xuu31101, bc, bd, be) 29.16/12.43 new_addToFM_C12(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bf, bg, bh) -> new_addToFM_C(xuu38, Right(xuu39), xuu40, bf, bg, bh) 29.16/12.43 new_addToFM_C22(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, False, bf, bg, bh) -> new_addToFM_C12(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, new_esEs8(new_compare25(Right(xuu39), Right(xuu34), new_esEs32(xuu39, xuu34, bg), bf, bg), GT), bf, bg, bh) 29.16/12.43 29.16/12.43 The TRS R consists of the following rules: 29.16/12.43 29.16/12.43 new_esEs26(xuu50000, xuu51000, ty_Float) -> new_esEs9(xuu50000, xuu51000) 29.16/12.43 new_esEs30(xuu311000, xuu600, app(ty_[], cge)) -> new_esEs19(xuu311000, xuu600, cge) 29.16/12.43 new_ltEs19(xuu5000, xuu5100, ty_Integer) -> new_ltEs11(xuu5000, xuu5100) 29.16/12.43 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 29.16/12.43 new_primCmpInt(Neg(Succ(xuu5000)), Pos(xuu510)) -> LT 29.16/12.43 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Ordering) -> new_ltEs5(xuu50000, xuu51000) 29.16/12.43 new_pePe(True, xuu209) -> True 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Ordering, bge) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.43 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.43 new_lt20(xuu50000, xuu51000, app(ty_Ratio, eae)) -> new_lt10(xuu50000, xuu51000, eae) 29.16/12.43 new_esEs30(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 29.16/12.43 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, ceg), ceh)) -> new_esEs6(xuu3110000, xuu6000, ceg, ceh) 29.16/12.43 new_esEs21(xuu3110000, xuu6000, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs7(xuu3110000, xuu6000, ccg, cch, cda) 29.16/12.43 new_esEs30(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Bool, bge) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.43 new_compare12(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.43 new_compare(:(xuu50000, xuu50001), [], ca) -> GT 29.16/12.43 new_lt19(xuu50001, xuu51001, ty_Char) -> new_lt14(xuu50001, xuu51001) 29.16/12.43 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 29.16/12.43 new_esEs24(xuu3110001, xuu6001, app(ty_[], dcf)) -> new_esEs19(xuu3110001, xuu6001, dcf) 29.16/12.43 new_esEs27(xuu50001, xuu51001, app(app(ty_Either, dgg), dgh)) -> new_esEs5(xuu50001, xuu51001, dgg, dgh) 29.16/12.43 new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT 29.16/12.43 new_compare(:(xuu50000, xuu50001), :(xuu51000, xuu51001), ca) -> new_primCompAux0(xuu50000, xuu51000, new_compare(xuu50001, xuu51001, ca), ca) 29.16/12.43 new_compare11(xuu50000, xuu51000, de, df) -> new_compare25(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, de, df), de, df) 29.16/12.43 new_esEs21(xuu3110000, xuu6000, app(app(ty_@2, cdd), cde)) -> new_esEs6(xuu3110000, xuu6000, cdd, cde) 29.16/12.43 new_esEs24(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 29.16/12.43 new_esEs28(xuu50000, xuu51000, ty_Char) -> new_esEs18(xuu50000, xuu51000) 29.16/12.43 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(ty_Ratio, bdb)) -> new_ltEs7(xuu50000, xuu51000, bdb) 29.16/12.43 new_lt16(xuu50000, xuu51000, ty_Double) -> new_lt15(xuu50000, xuu51000) 29.16/12.43 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Integer, bah) -> new_ltEs11(xuu50000, xuu51000) 29.16/12.43 new_primCmpInt(Neg(Succ(xuu5000)), Neg(xuu510)) -> new_primCmpNat0(xuu510, Succ(xuu5000)) 29.16/12.43 new_ltEs11(xuu5000, xuu5100) -> new_fsEs(new_compare8(xuu5000, xuu5100)) 29.16/12.43 new_lt7(xuu50000, xuu51000, bag) -> new_esEs8(new_compare9(xuu50000, xuu51000, bag), LT) 29.16/12.43 new_lt4(xuu50000, xuu51000, dg) -> new_esEs8(new_compare(xuu50000, xuu51000, dg), LT) 29.16/12.43 new_esEs29(xuu22, xuu17, ty_@0) -> new_esEs12(xuu22, xuu17) 29.16/12.43 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Integer) -> new_ltEs11(xuu50000, xuu51000) 29.16/12.43 new_ltEs12(Left(xuu50000), Right(xuu51000), bcc, bah) -> True 29.16/12.43 new_compare115(xuu50000, xuu51000, True, bac, bad) -> LT 29.16/12.43 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.43 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs17(xuu50000, xuu51000, bdc, bdd, bde) 29.16/12.43 new_esEs20(xuu3110001, xuu6001, ty_@0) -> new_esEs12(xuu3110001, xuu6001) 29.16/12.43 new_ltEs21(xuu50002, xuu51002, ty_Float) -> new_ltEs14(xuu50002, xuu51002) 29.16/12.43 new_esEs9(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 29.16/12.43 new_lt16(xuu50000, xuu51000, ty_Int) -> new_lt17(xuu50000, xuu51000) 29.16/12.43 new_lt19(xuu50001, xuu51001, app(ty_Maybe, dgf)) -> new_lt7(xuu50001, xuu51001, dgf) 29.16/12.43 new_esEs25(xuu3110000, xuu6000, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.43 new_compare13(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.43 new_compare13(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.43 new_esEs23(xuu3110002, xuu6002, app(app(ty_Either, dag), dah)) -> new_esEs5(xuu3110002, xuu6002, dag, dah) 29.16/12.43 new_compare24(xuu50000, xuu51000, False) -> new_compare19(xuu50000, xuu51000, new_ltEs5(xuu50000, xuu51000)) 29.16/12.43 new_esEs30(xuu311000, xuu600, ty_Integer) -> new_esEs11(xuu311000, xuu600) 29.16/12.43 new_compare26(xuu50000, xuu51000, True) -> EQ 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Integer, bge) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.43 new_esEs8(GT, GT) -> True 29.16/12.43 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 29.16/12.43 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 29.16/12.43 new_esEs24(xuu3110001, xuu6001, ty_Integer) -> new_esEs11(xuu3110001, xuu6001) 29.16/12.43 new_compare5(xuu50000, xuu51000, app(app(ty_@2, cf), cg)) -> new_compare15(xuu50000, xuu51000, cf, cg) 29.16/12.43 new_fsEs(xuu193) -> new_not(new_esEs8(xuu193, GT)) 29.16/12.43 new_ltEs9(False, True) -> True 29.16/12.43 new_lt16(xuu50000, xuu51000, ty_Ordering) -> new_lt13(xuu50000, xuu51000) 29.16/12.43 new_compare18(xuu50000, xuu51000) -> new_compare26(xuu50000, xuu51000, new_esEs13(xuu50000, xuu51000)) 29.16/12.43 new_esEs31(xuu311000, xuu600, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs7(xuu311000, xuu600, eb, ec, ed) 29.16/12.43 new_ltEs20(xuu50001, xuu51001, ty_@0) -> new_ltEs4(xuu50001, xuu51001) 29.16/12.43 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.43 new_esEs24(xuu3110001, xuu6001, app(ty_Ratio, dce)) -> new_esEs15(xuu3110001, xuu6001, dce) 29.16/12.43 new_lt20(xuu50000, xuu51000, app(ty_Maybe, dhh)) -> new_lt7(xuu50000, xuu51000, dhh) 29.16/12.43 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, bhc), bhd), bge) -> new_esEs6(xuu3110000, xuu6000, bhc, bhd) 29.16/12.43 new_esEs8(EQ, EQ) -> True 29.16/12.43 new_esEs29(xuu22, xuu17, app(ty_[], ge)) -> new_esEs19(xuu22, xuu17, ge) 29.16/12.43 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Float, bah) -> new_ltEs14(xuu50000, xuu51000) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, cgf)) -> new_esEs4(xuu3110000, xuu6000, cgf) 29.16/12.44 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.44 new_lt19(xuu50001, xuu51001, app(ty_[], dge)) -> new_lt4(xuu50001, xuu51001, dge) 29.16/12.44 new_esEs29(xuu22, xuu17, ty_Integer) -> new_esEs11(xuu22, xuu17) 29.16/12.44 new_ltEs14(xuu5000, xuu5100) -> new_fsEs(new_compare13(xuu5000, xuu5100)) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), app(ty_Ratio, bbg), bah) -> new_ltEs7(xuu50000, xuu51000, bbg) 29.16/12.44 new_compare5(xuu50000, xuu51000, ty_Int) -> new_compare6(xuu50000, xuu51000) 29.16/12.44 new_not(True) -> False 29.16/12.44 new_compare5(xuu50000, xuu51000, ty_Char) -> new_compare14(xuu50000, xuu51000) 29.16/12.44 new_esEs27(xuu50001, xuu51001, ty_Double) -> new_esEs14(xuu50001, xuu51001) 29.16/12.44 new_primCompAux00(xuu223, LT) -> LT 29.16/12.44 new_primCmpNat0(Zero, Zero) -> EQ 29.16/12.44 new_esEs21(xuu3110000, xuu6000, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.44 new_esEs28(xuu50000, xuu51000, app(ty_[], dhg)) -> new_esEs19(xuu50000, xuu51000, dhg) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, app(ty_Ratio, dh)) -> new_ltEs7(xuu5000, xuu5100, dh) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_@0, bge) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(ty_Maybe, bhh)) -> new_esEs4(xuu3110000, xuu6000, bhh) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, ty_Char) -> new_esEs18(xuu3110002, xuu6002) 29.16/12.44 new_esEs30(xuu311000, xuu600, ty_@0) -> new_esEs12(xuu311000, xuu600) 29.16/12.44 new_esEs28(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_@0, bah) -> new_ltEs4(xuu50000, xuu51000) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs7(xuu3110000, xuu6000, dch, dda, ddb) 29.16/12.44 new_esEs30(xuu311000, xuu600, app(ty_Ratio, bgc)) -> new_esEs15(xuu311000, xuu600, bgc) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_@0) -> new_ltEs4(xuu50000, xuu51000) 29.16/12.44 new_compare27(xuu50000, xuu51000, True, bag) -> EQ 29.16/12.44 new_ltEs18(xuu5000, xuu5100, ty_@0) -> new_ltEs4(xuu5000, xuu5100) 29.16/12.44 new_compare17(xuu50000, xuu51000, bfg, bfh, bga) -> new_compare28(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bfg, bfh, bga), bfg, bfh, bga) 29.16/12.44 new_esEs31(xuu311000, xuu600, ty_@0) -> new_esEs12(xuu311000, xuu600) 29.16/12.44 new_primEqNat0(Succ(xuu31100000), Zero) -> False 29.16/12.44 new_primEqNat0(Zero, Succ(xuu60000)) -> False 29.16/12.44 new_esEs18(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, ty_Int) -> new_ltEs6(xuu50001, xuu51001) 29.16/12.44 new_lt20(xuu50000, xuu51000, app(ty_[], dhg)) -> new_lt4(xuu50000, xuu51000, dhg) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, ty_Int) -> new_ltEs6(xuu5000, xuu5100) 29.16/12.44 new_esEs27(xuu50001, xuu51001, ty_Int) -> new_esEs10(xuu50001, xuu51001) 29.16/12.44 new_esEs29(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, ty_Integer) -> new_ltEs11(xuu50001, xuu51001) 29.16/12.44 new_primCompAux00(xuu223, GT) -> GT 29.16/12.44 new_ltEs19(xuu5000, xuu5100, ty_@0) -> new_ltEs4(xuu5000, xuu5100) 29.16/12.44 new_esEs17(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.44 new_compare7(xuu50000, xuu51000) -> new_compare24(xuu50000, xuu51000, new_esEs8(xuu50000, xuu51000)) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs7(xuu3110000, xuu6000, ceb, cec, ced) 29.16/12.44 new_esEs32(xuu39, xuu34, ty_Double) -> new_esEs14(xuu39, xuu34) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Float) -> new_ltEs14(xuu50000, xuu51000) 29.16/12.44 new_compare5(xuu50000, xuu51000, app(app(ty_Either, cd), ce)) -> new_compare11(xuu50000, xuu51000, cd, ce) 29.16/12.44 new_ltEs10(Nothing, Just(xuu51000), gh) -> True 29.16/12.44 new_esEs23(xuu3110002, xuu6002, ty_Int) -> new_esEs10(xuu3110002, xuu6002) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 29.16/12.44 new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Integer) -> new_compare8(new_sr0(xuu50000, xuu51001), new_sr0(xuu51000, xuu50001)) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, ty_Int) -> new_ltEs6(xuu50002, xuu51002) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Int) -> new_ltEs6(xuu50000, xuu51000) 29.16/12.44 new_compare27(xuu50000, xuu51000, False, bag) -> new_compare113(xuu50000, xuu51000, new_ltEs10(xuu50000, xuu51000, bag), bag) 29.16/12.44 new_lt19(xuu50001, xuu51001, app(app(ty_@2, dha), dhb)) -> new_lt5(xuu50001, xuu51001, dha, dhb) 29.16/12.44 new_primCmpInt(Pos(Succ(xuu5000)), Neg(xuu510)) -> GT 29.16/12.44 new_esEs28(xuu50000, xuu51000, ty_Int) -> new_esEs10(xuu50000, xuu51000) 29.16/12.44 new_compare10(@0, @0) -> EQ 29.16/12.44 new_esEs28(xuu50000, xuu51000, ty_Integer) -> new_esEs11(xuu50000, xuu51000) 29.16/12.44 new_lt16(xuu50000, xuu51000, ty_Float) -> new_lt11(xuu50000, xuu51000) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs17(xuu5000, xuu5100, beb, bec, bed) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, ty_Float) -> new_ltEs14(xuu5000, xuu5100) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, app(ty_Ratio, ccd)) -> new_esEs15(xuu3110001, xuu6001, ccd) 29.16/12.44 new_compare110(xuu190, xuu191, True, gf, gg) -> LT 29.16/12.44 new_esEs26(xuu50000, xuu51000, ty_Double) -> new_esEs14(xuu50000, xuu51000) 29.16/12.44 new_compare5(xuu50000, xuu51000, app(ty_Maybe, cc)) -> new_compare9(xuu50000, xuu51000, cc) 29.16/12.44 new_ltEs5(LT, GT) -> True 29.16/12.44 new_esEs32(xuu39, xuu34, ty_Float) -> new_esEs9(xuu39, xuu34) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, ty_Float) -> new_ltEs14(xuu50001, xuu51001) 29.16/12.44 new_ltEs7(xuu5000, xuu5100, dh) -> new_fsEs(new_compare16(xuu5000, xuu5100, dh)) 29.16/12.44 new_compare19(xuu50000, xuu51000, True) -> LT 29.16/12.44 new_primPlusNat1(Succ(xuu53200), Succ(xuu13400)) -> Succ(Succ(new_primPlusNat1(xuu53200, xuu13400))) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, bgd), bge) -> new_esEs4(xuu3110000, xuu6000, bgd) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, ty_@0) -> new_esEs12(xuu3110001, xuu6001) 29.16/12.44 new_primCmpNat0(Zero, Succ(xuu5100)) -> LT 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.44 new_esEs26(xuu50000, xuu51000, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs7(xuu50000, xuu51000, bfg, bfh, bga) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, ty_Bool) -> new_ltEs9(xuu50002, xuu51002) 29.16/12.44 new_lt20(xuu50000, xuu51000, ty_Char) -> new_lt14(xuu50000, xuu51000) 29.16/12.44 new_esEs19(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), cge) -> new_asAs(new_esEs22(xuu3110000, xuu6000, cge), new_esEs19(xuu3110001, xuu6001, cge)) 29.16/12.44 new_esEs32(xuu39, xuu34, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs7(xuu39, xuu34, cfd, cfe, cff) 29.16/12.44 new_lt16(xuu50000, xuu51000, ty_@0) -> new_lt18(xuu50000, xuu51000) 29.16/12.44 new_primCmpNat0(Succ(xuu5000), Zero) -> GT 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_[], cfb)) -> new_esEs19(xuu3110000, xuu6000, cfb) 29.16/12.44 new_pePe(False, xuu209) -> xuu209 29.16/12.44 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, chd), che)) -> new_esEs6(xuu3110000, xuu6000, chd, che) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(ty_[], bcd)) -> new_ltEs8(xuu50000, xuu51000, bcd) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), app(ty_Maybe, hb)) -> new_ltEs10(xuu50000, xuu51000, hb) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) 29.16/12.44 new_esEs19([], [], cge) -> True 29.16/12.44 new_compare25(xuu500, xuu510, True, bdf, bdg) -> EQ 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(ty_Ratio, cah)) -> new_esEs15(xuu3110000, xuu6000, cah) 29.16/12.44 new_ltEs9(True, True) -> True 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.44 new_lt20(xuu50000, xuu51000, app(app(app(ty_@3, eaf), eag), eah)) -> new_lt9(xuu50000, xuu51000, eaf, eag, eah) 29.16/12.44 new_compare112(xuu183, xuu184, True, bae, baf) -> LT 29.16/12.44 new_esEs20(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 29.16/12.44 new_esEs26(xuu50000, xuu51000, ty_@0) -> new_esEs12(xuu50000, xuu51000) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, ty_Integer) -> new_ltEs11(xuu5000, xuu5100) 29.16/12.44 new_lt19(xuu50001, xuu51001, app(app(ty_Either, dgg), dgh)) -> new_lt12(xuu50001, xuu51001, dgg, dgh) 29.16/12.44 new_compare113(xuu50000, xuu51000, True, bag) -> LT 29.16/12.44 new_esEs27(xuu50001, xuu51001, ty_Float) -> new_esEs9(xuu50001, xuu51001) 29.16/12.44 new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Int) -> new_compare6(new_sr(xuu50000, xuu51001), new_sr(xuu51000, xuu50001)) 29.16/12.44 new_esEs8(LT, EQ) -> False 29.16/12.44 new_esEs8(EQ, LT) -> False 29.16/12.44 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 29.16/12.44 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 29.16/12.44 new_esEs23(xuu3110002, xuu6002, app(ty_Maybe, dac)) -> new_esEs4(xuu3110002, xuu6002, dac) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, app(app(ty_@2, dcc), dcd)) -> new_esEs6(xuu3110001, xuu6001, dcc, dcd) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), app(app(ty_Either, bbc), bbd), bah) -> new_ltEs12(xuu50000, xuu51000, bbc, bbd) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, ty_Integer) -> new_esEs11(xuu3110002, xuu6002) 29.16/12.44 new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), bgc) -> new_asAs(new_esEs17(xuu3110000, xuu6000, bgc), new_esEs16(xuu3110001, xuu6001, bgc)) 29.16/12.44 new_esEs30(xuu311000, xuu600, ty_Int) -> new_esEs10(xuu311000, xuu600) 29.16/12.44 new_lt16(xuu50000, xuu51000, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt9(xuu50000, xuu51000, bfg, bfh, bga) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, app(app(ty_Either, bcc), bah)) -> new_ltEs12(xuu5000, xuu5100, bcc, bah) 29.16/12.44 new_esEs29(xuu22, xuu17, ty_Char) -> new_esEs18(xuu22, xuu17) 29.16/12.44 new_esEs31(xuu311000, xuu600, ty_Float) -> new_esEs9(xuu311000, xuu600) 29.16/12.44 new_ltEs16(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), bdh, bea) -> new_pePe(new_lt16(xuu50000, xuu51000, bdh), new_asAs(new_esEs26(xuu50000, xuu51000, bdh), new_ltEs20(xuu50001, xuu51001, bea))) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, app(app(ty_Either, dca), dcb)) -> new_esEs5(xuu3110001, xuu6001, dca, dcb) 29.16/12.44 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.44 new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT 29.16/12.44 new_ltEs20(xuu50001, xuu51001, app(app(app(ty_@3, deh), dfa), dfb)) -> new_ltEs17(xuu50001, xuu51001, deh, dfa, dfb) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, app(ty_[], cdg)) -> new_esEs19(xuu3110000, xuu6000, cdg) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, ty_Double) -> new_ltEs13(xuu50002, xuu51002) 29.16/12.44 new_compare9(xuu50000, xuu51000, bag) -> new_compare27(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, bag), bag) 29.16/12.44 new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.44 new_esEs31(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) 29.16/12.44 new_lt6(xuu50000, xuu51000) -> new_esEs8(new_compare8(xuu50000, xuu51000), LT) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, ty_Char) -> new_ltEs15(xuu50002, xuu51002) 29.16/12.44 new_lt17(xuu500, xuu510) -> new_esEs8(new_compare6(xuu500, xuu510), LT) 29.16/12.44 new_esEs26(xuu50000, xuu51000, app(app(ty_@2, bac), bad)) -> new_esEs6(xuu50000, xuu51000, bac, bad) 29.16/12.44 new_esEs32(xuu39, xuu34, app(app(ty_Either, cfg), cfh)) -> new_esEs5(xuu39, xuu34, cfg, cfh) 29.16/12.44 new_esEs28(xuu50000, xuu51000, ty_@0) -> new_esEs12(xuu50000, xuu51000) 29.16/12.44 new_esEs29(xuu22, xuu17, ty_Int) -> new_esEs10(xuu22, xuu17) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs7(xuu3110000, xuu6000, cgg, cgh, cha) 29.16/12.44 new_compare28(xuu50000, xuu51000, False, bfg, bfh, bga) -> new_compare114(xuu50000, xuu51000, new_ltEs17(xuu50000, xuu51000, bfg, bfh, bga), bfg, bfh, bga) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cfa)) -> new_esEs15(xuu3110000, xuu6000, cfa) 29.16/12.44 new_primMulNat0(Succ(xuu311000100), Zero) -> Zero 29.16/12.44 new_primMulNat0(Zero, Succ(xuu600000)) -> Zero 29.16/12.44 new_primPlusNat0(Zero, xuu600000) -> Succ(xuu600000) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Int) -> new_ltEs6(xuu50000, xuu51000) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.44 new_lt19(xuu50001, xuu51001, ty_Ordering) -> new_lt13(xuu50001, xuu51001) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, ty_Bool) -> new_ltEs9(xuu5000, xuu5100) 29.16/12.44 new_esEs31(xuu311000, xuu600, app(ty_Maybe, ea)) -> new_esEs4(xuu311000, xuu600, ea) 29.16/12.44 new_ltEs5(EQ, EQ) -> True 29.16/12.44 new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 29.16/12.44 new_compare26(xuu50000, xuu51000, False) -> new_compare111(xuu50000, xuu51000, new_ltEs9(xuu50000, xuu51000)) 29.16/12.44 new_esEs26(xuu50000, xuu51000, ty_Integer) -> new_esEs11(xuu50000, xuu51000) 29.16/12.44 new_lt16(xuu50000, xuu51000, app(app(ty_@2, bac), bad)) -> new_lt5(xuu50000, xuu51000, bac, bad) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, bha), bhb), bge) -> new_esEs5(xuu3110000, xuu6000, bha, bhb) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs7(xuu3110000, xuu6000, caa, cab, cac) 29.16/12.44 new_esEs32(xuu39, xuu34, ty_Int) -> new_esEs10(xuu39, xuu34) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, app(app(ty_Either, cdb), cdc)) -> new_esEs5(xuu3110000, xuu6000, cdb, cdc) 29.16/12.44 new_lt16(xuu50000, xuu51000, app(ty_Maybe, bag)) -> new_lt7(xuu50000, xuu51000, bag) 29.16/12.44 new_esEs8(LT, LT) -> True 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_[], bhf), bge) -> new_esEs19(xuu3110000, xuu6000, bhf) 29.16/12.44 new_compare111(xuu50000, xuu51000, True) -> LT 29.16/12.44 new_lt12(xuu50000, xuu51000, de, df) -> new_esEs8(new_compare11(xuu50000, xuu51000, de, df), LT) 29.16/12.44 new_compare19(xuu50000, xuu51000, False) -> GT 29.16/12.44 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, chf)) -> new_esEs15(xuu3110000, xuu6000, chf) 29.16/12.44 new_esEs26(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, app(ty_Maybe, cbd)) -> new_esEs4(xuu3110001, xuu6001, cbd) 29.16/12.44 new_lt15(xuu50000, xuu51000) -> new_esEs8(new_compare12(xuu50000, xuu51000), LT) 29.16/12.44 new_primPlusNat1(Succ(xuu53200), Zero) -> Succ(xuu53200) 29.16/12.44 new_primPlusNat1(Zero, Succ(xuu13400)) -> Succ(xuu13400) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs7(xuu3110001, xuu6001, dbf, dbg, dbh) 29.16/12.44 new_lt16(xuu50000, xuu51000, ty_Integer) -> new_lt6(xuu50000, xuu51000) 29.16/12.44 new_esEs30(xuu311000, xuu600, ty_Float) -> new_esEs9(xuu311000, xuu600) 29.16/12.44 new_lt9(xuu50000, xuu51000, bfg, bfh, bga) -> new_esEs8(new_compare17(xuu50000, xuu51000, bfg, bfh, bga), LT) 29.16/12.44 new_esEs30(xuu311000, xuu600, ty_Char) -> new_esEs18(xuu311000, xuu600) 29.16/12.44 new_esEs13(True, True) -> True 29.16/12.44 new_esEs20(xuu3110001, xuu6001, app(ty_[], cce)) -> new_esEs19(xuu3110001, xuu6001, cce) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, ty_Double) -> new_ltEs13(xuu50001, xuu51001) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Double, bah) -> new_ltEs13(xuu50000, xuu51000) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, app(ty_Ratio, dbc)) -> new_esEs15(xuu3110002, xuu6002, dbc) 29.16/12.44 new_esEs28(xuu50000, xuu51000, ty_Double) -> new_esEs14(xuu50000, xuu51000) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, ty_Char) -> new_ltEs15(xuu5000, xuu5100) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Ordering) -> new_ltEs5(xuu50000, xuu51000) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, ty_Char) -> new_esEs18(xuu3110001, xuu6001) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs7(xuu3110002, xuu6002, dad, dae, daf) 29.16/12.44 new_compare115(xuu50000, xuu51000, False, bac, bad) -> GT 29.16/12.44 new_ltEs5(LT, LT) -> True 29.16/12.44 new_esEs21(xuu3110000, xuu6000, app(ty_Maybe, ccf)) -> new_esEs4(xuu3110000, xuu6000, ccf) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.44 new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, ty_Char) -> new_ltEs15(xuu5000, xuu5100) 29.16/12.44 new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat0(Zero, Succ(xuu5100)) 29.16/12.44 new_esEs29(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Bool, bah) -> new_ltEs9(xuu50000, xuu51000) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(app(ty_@2, caf), cag)) -> new_esEs6(xuu3110000, xuu6000, caf, cag) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, app(app(ty_@2, dde), ddf)) -> new_esEs6(xuu3110000, xuu6000, dde, ddf) 29.16/12.44 new_lt16(xuu50000, xuu51000, ty_Bool) -> new_lt8(xuu50000, xuu51000) 29.16/12.44 new_compare([], :(xuu51000, xuu51001), ca) -> LT 29.16/12.44 new_ltEs5(LT, EQ) -> True 29.16/12.44 new_esEs32(xuu39, xuu34, app(ty_Maybe, cfc)) -> new_esEs4(xuu39, xuu34, cfc) 29.16/12.44 new_esEs31(xuu311000, xuu600, ty_Int) -> new_esEs10(xuu311000, xuu600) 29.16/12.44 new_compare5(xuu50000, xuu51000, app(ty_Ratio, da)) -> new_compare16(xuu50000, xuu51000, da) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, ty_Double) -> new_ltEs13(xuu5000, xuu5100) 29.16/12.44 new_esEs31(xuu311000, xuu600, ty_Char) -> new_esEs18(xuu311000, xuu600) 29.16/12.44 new_esEs31(xuu311000, xuu600, app(ty_[], fb)) -> new_esEs19(xuu311000, xuu600, fb) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, chb), chc)) -> new_esEs5(xuu3110000, xuu6000, chb, chc) 29.16/12.44 new_compare12(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.44 new_compare12(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, cea)) -> new_esEs4(xuu3110000, xuu6000, cea) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 29.16/12.44 new_esEs29(xuu22, xuu17, ty_Float) -> new_esEs9(xuu22, xuu17) 29.16/12.44 new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), chh, daa, dab) -> new_asAs(new_esEs25(xuu3110000, xuu6000, chh), new_asAs(new_esEs24(xuu3110001, xuu6001, daa), new_esEs23(xuu3110002, xuu6002, dab))) 29.16/12.44 new_compare6(xuu50, xuu51) -> new_primCmpInt(xuu50, xuu51) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_ltEs17(xuu50002, xuu51002, dgb, dgc, dgd) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.44 new_esEs27(xuu50001, xuu51001, ty_@0) -> new_esEs12(xuu50001, xuu51001) 29.16/12.44 new_lt20(xuu50000, xuu51000, ty_Integer) -> new_lt6(xuu50000, xuu51000) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, ty_Bool) -> new_ltEs9(xuu5000, xuu5100) 29.16/12.44 new_compare8(Integer(xuu50000), Integer(xuu51000)) -> new_primCmpInt(xuu50000, xuu51000) 29.16/12.44 new_primMulInt(Pos(xuu31100010), Neg(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.44 new_primMulInt(Neg(xuu31100010), Pos(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(app(ty_Either, bcf), bcg)) -> new_ltEs12(xuu50000, xuu51000, bcf, bcg) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, app(ty_Ratio, dga)) -> new_ltEs7(xuu50002, xuu51002, dga) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, app(ty_Maybe, gh)) -> new_ltEs10(xuu5000, xuu5100, gh) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, app(app(ty_@2, dba), dbb)) -> new_esEs6(xuu3110002, xuu6002, dba, dbb) 29.16/12.44 new_esEs30(xuu311000, xuu600, app(ty_Maybe, cdh)) -> new_esEs4(xuu311000, xuu600, cdh) 29.16/12.44 new_ltEs12(Right(xuu50000), Left(xuu51000), bcc, bah) -> False 29.16/12.44 new_esEs24(xuu3110001, xuu6001, app(ty_Maybe, dbe)) -> new_esEs4(xuu3110001, xuu6001, dbe) 29.16/12.44 new_lt8(xuu50000, xuu51000) -> new_esEs8(new_compare18(xuu50000, xuu51000), LT) 29.16/12.44 new_esEs26(xuu50000, xuu51000, app(ty_Ratio, bgb)) -> new_esEs15(xuu50000, xuu51000, bgb) 29.16/12.44 new_lt5(xuu50000, xuu51000, bac, bad) -> new_esEs8(new_compare15(xuu50000, xuu51000, bac, bad), LT) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.44 new_lt20(xuu50000, xuu51000, ty_Float) -> new_lt11(xuu50000, xuu51000) 29.16/12.44 new_compare13(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.44 new_esEs19(:(xuu3110000, xuu3110001), [], cge) -> False 29.16/12.44 new_esEs19([], :(xuu6000, xuu6001), cge) -> False 29.16/12.44 new_sr0(Integer(xuu500000), Integer(xuu510010)) -> Integer(new_primMulInt(xuu500000, xuu510010)) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 29.16/12.44 new_compare25(Left(xuu5000), Left(xuu5100), False, bdf, bdg) -> new_compare112(xuu5000, xuu5100, new_ltEs18(xuu5000, xuu5100, bdf), bdf, bdg) 29.16/12.44 new_esEs13(False, False) -> True 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Double, bge) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.44 new_esEs30(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) 29.16/12.44 new_compare5(xuu50000, xuu51000, ty_Float) -> new_compare13(xuu50000, xuu51000) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Char) -> new_ltEs15(xuu50000, xuu51000) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Char, bah) -> new_ltEs15(xuu50000, xuu51000) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(app(ty_@2, bch), bda)) -> new_ltEs16(xuu50000, xuu51000, bch, bda) 29.16/12.44 new_esEs28(xuu50000, xuu51000, app(app(app(ty_@3, eaf), eag), eah)) -> new_esEs7(xuu50000, xuu51000, eaf, eag, eah) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, ty_Char) -> new_ltEs15(xuu50001, xuu51001) 29.16/12.44 new_compare25(Left(xuu5000), Right(xuu5100), False, bdf, bdg) -> LT 29.16/12.44 new_ltEs18(xuu5000, xuu5100, ty_Double) -> new_ltEs13(xuu5000, xuu5100) 29.16/12.44 new_esEs32(xuu39, xuu34, app(ty_[], cgd)) -> new_esEs19(xuu39, xuu34, cgd) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, app(app(ty_Either, dfe), dff)) -> new_ltEs12(xuu50002, xuu51002, dfe, dff) 29.16/12.44 new_asAs(True, xuu178) -> xuu178 29.16/12.44 new_esEs32(xuu39, xuu34, ty_Char) -> new_esEs18(xuu39, xuu34) 29.16/12.44 new_esEs28(xuu50000, xuu51000, ty_Float) -> new_esEs9(xuu50000, xuu51000) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.44 new_lt20(xuu50000, xuu51000, ty_Ordering) -> new_lt13(xuu50000, xuu51000) 29.16/12.44 new_ltEs5(GT, LT) -> False 29.16/12.44 new_esEs32(xuu39, xuu34, app(ty_Ratio, cgc)) -> new_esEs15(xuu39, xuu34, cgc) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, app(ty_Ratio, cdf)) -> new_esEs15(xuu3110000, xuu6000, cdf) 29.16/12.44 new_lt20(xuu50000, xuu51000, ty_Bool) -> new_lt8(xuu50000, xuu51000) 29.16/12.44 new_esEs26(xuu50000, xuu51000, ty_Char) -> new_esEs18(xuu50000, xuu51000) 29.16/12.44 new_lt20(xuu50000, xuu51000, ty_Int) -> new_lt17(xuu50000, xuu51000) 29.16/12.44 new_esEs26(xuu50000, xuu51000, app(ty_[], dg)) -> new_esEs19(xuu50000, xuu51000, dg) 29.16/12.44 new_lt19(xuu50001, xuu51001, ty_Integer) -> new_lt6(xuu50001, xuu51001) 29.16/12.44 new_ltEs8(xuu5000, xuu5100, ca) -> new_fsEs(new_compare(xuu5000, xuu5100, ca)) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, cee), cef)) -> new_esEs5(xuu3110000, xuu6000, cee, cef) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs17(xuu5000, xuu5100, bfd, bfe, bff) 29.16/12.44 new_primCmpInt(Pos(Succ(xuu5000)), Pos(xuu510)) -> new_primCmpNat0(Succ(xuu5000), xuu510) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, app(ty_[], ca)) -> new_ltEs8(xuu5000, xuu5100, ca) 29.16/12.44 new_esEs29(xuu22, xuu17, app(app(ty_Either, fh), ga)) -> new_esEs5(xuu22, xuu17, fh, ga) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, app(app(ty_@2, dfg), dfh)) -> new_ltEs16(xuu50002, xuu51002, dfg, dfh) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.44 new_primCompAux00(xuu223, EQ) -> xuu223 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Ordering, bah) -> new_ltEs5(xuu50000, xuu51000) 29.16/12.44 new_ltEs4(xuu5000, xuu5100) -> new_fsEs(new_compare10(xuu5000, xuu5100)) 29.16/12.44 new_lt10(xuu50000, xuu51000, bgb) -> new_esEs8(new_compare16(xuu50000, xuu51000, bgb), LT) 29.16/12.44 new_sr(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) 29.16/12.44 new_lt20(xuu50000, xuu51000, app(app(ty_Either, eaa), eab)) -> new_lt12(xuu50000, xuu51000, eaa, eab) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(ty_[], cba)) -> new_esEs19(xuu3110000, xuu6000, cba) 29.16/12.44 new_esEs27(xuu50001, xuu51001, app(app(ty_@2, dha), dhb)) -> new_esEs6(xuu50001, xuu51001, dha, dhb) 29.16/12.44 new_esEs27(xuu50001, xuu51001, ty_Bool) -> new_esEs13(xuu50001, xuu51001) 29.16/12.44 new_ltEs9(False, False) -> True 29.16/12.44 new_primMulNat0(Zero, Zero) -> Zero 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), app(ty_Ratio, hg)) -> new_ltEs7(xuu50000, xuu51000, hg) 29.16/12.44 new_esEs27(xuu50001, xuu51001, ty_Ordering) -> new_esEs8(xuu50001, xuu51001) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, ty_@0) -> new_esEs12(xuu3110002, xuu6002) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, app(ty_Ratio, bfc)) -> new_ltEs7(xuu5000, xuu5100, bfc) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, app(ty_[], bee)) -> new_ltEs8(xuu5000, xuu5100, bee) 29.16/12.44 new_compare111(xuu50000, xuu51000, False) -> GT 29.16/12.44 new_ltEs20(xuu50001, xuu51001, ty_Bool) -> new_ltEs9(xuu50001, xuu51001) 29.16/12.44 new_lt19(xuu50001, xuu51001, ty_Int) -> new_lt17(xuu50001, xuu51001) 29.16/12.44 new_esEs28(xuu50000, xuu51000, app(ty_Maybe, dhh)) -> new_esEs4(xuu50000, xuu51000, dhh) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), app(ty_Maybe, bbb), bah) -> new_ltEs10(xuu50000, xuu51000, bbb) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, app(app(ty_@2, dee), def)) -> new_ltEs16(xuu50001, xuu51001, dee, def) 29.16/12.44 new_compare28(xuu50000, xuu51000, True, bfg, bfh, bga) -> EQ 29.16/12.44 new_esEs4(Nothing, Nothing, cdh) -> True 29.16/12.44 new_esEs20(xuu3110001, xuu6001, app(app(ty_Either, cbh), cca)) -> new_esEs5(xuu3110001, xuu6001, cbh, cca) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, ty_Float) -> new_esEs9(xuu3110001, xuu6001) 29.16/12.44 new_esEs27(xuu50001, xuu51001, ty_Integer) -> new_esEs11(xuu50001, xuu51001) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(app(ty_Either, cad), cae)) -> new_esEs5(xuu3110000, xuu6000, cad, cae) 29.16/12.44 new_esEs4(Nothing, Just(xuu6000), cdh) -> False 29.16/12.44 new_esEs4(Just(xuu3110000), Nothing, cdh) -> False 29.16/12.44 new_lt20(xuu50000, xuu51000, ty_@0) -> new_lt18(xuu50000, xuu51000) 29.16/12.44 new_esEs27(xuu50001, xuu51001, app(ty_[], dge)) -> new_esEs19(xuu50001, xuu51001, dge) 29.16/12.44 new_ltEs5(EQ, LT) -> False 29.16/12.44 new_compare14(Char(xuu50000), Char(xuu51000)) -> new_primCmpNat0(xuu50000, xuu51000) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, app(app(ty_Either, beg), beh)) -> new_ltEs12(xuu5000, xuu5100, beg, beh) 29.16/12.44 new_lt19(xuu50001, xuu51001, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_lt9(xuu50001, xuu51001, dhd, dhe, dhf) 29.16/12.44 new_lt19(xuu50001, xuu51001, ty_Bool) -> new_lt8(xuu50001, xuu51001) 29.16/12.44 new_esEs28(xuu50000, xuu51000, app(app(ty_@2, eac), ead)) -> new_esEs6(xuu50000, xuu51000, eac, ead) 29.16/12.44 new_esEs17(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Float) -> new_ltEs14(xuu50000, xuu51000) 29.16/12.44 new_esEs32(xuu39, xuu34, ty_Ordering) -> new_esEs8(xuu39, xuu34) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), app(app(app(ty_@3, bbh), bca), bcb), bah) -> new_ltEs17(xuu50000, xuu51000, bbh, bca, bcb) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Integer) -> new_ltEs11(xuu50000, xuu51000) 29.16/12.44 new_ltEs9(True, False) -> False 29.16/12.44 new_ltEs19(xuu5000, xuu5100, app(app(ty_@2, bfa), bfb)) -> new_ltEs16(xuu5000, xuu5100, bfa, bfb) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, app(ty_[], dea)) -> new_ltEs8(xuu50001, xuu51001, dea) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_@0) -> new_ltEs4(xuu50000, xuu51000) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 29.16/12.44 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 29.16/12.44 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 29.16/12.44 new_esEs11(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 29.16/12.44 new_esEs16(xuu3110001, xuu6001, ty_Integer) -> new_esEs11(xuu3110001, xuu6001) 29.16/12.44 new_compare([], [], ca) -> EQ 29.16/12.44 new_ltEs20(xuu50001, xuu51001, app(app(ty_Either, dec), ded)) -> new_ltEs12(xuu50001, xuu51001, dec, ded) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), app(app(ty_Either, hc), hd)) -> new_ltEs12(xuu50000, xuu51000, hc, hd) 29.16/12.44 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 29.16/12.44 new_esEs13(False, True) -> False 29.16/12.44 new_esEs13(True, False) -> False 29.16/12.44 new_esEs16(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), app(app(ty_@2, he), hf)) -> new_ltEs16(xuu50000, xuu51000, he, hf) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.44 new_compare5(xuu50000, xuu51000, ty_@0) -> new_compare10(xuu50000, xuu51000) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), app(ty_[], ha)) -> new_ltEs8(xuu50000, xuu51000, ha) 29.16/12.44 new_compare24(xuu50000, xuu51000, True) -> EQ 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(ty_Maybe, bce)) -> new_ltEs10(xuu50000, xuu51000, bce) 29.16/12.44 new_compare114(xuu50000, xuu51000, True, bfg, bfh, bga) -> LT 29.16/12.44 new_esEs22(xuu3110000, xuu6000, app(ty_[], chg)) -> new_esEs19(xuu3110000, xuu6000, chg) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, app(app(ty_Either, ddc), ddd)) -> new_esEs5(xuu3110000, xuu6000, ddc, ddd) 29.16/12.44 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 29.16/12.44 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 29.16/12.44 new_esEs26(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, app(ty_Ratio, deg)) -> new_ltEs7(xuu50001, xuu51001, deg) 29.16/12.44 new_esEs31(xuu311000, xuu600, app(ty_Ratio, fa)) -> new_esEs15(xuu311000, xuu600, fa) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, app(ty_Ratio, ddg)) -> new_esEs15(xuu3110000, xuu6000, ddg) 29.16/12.44 new_lt16(xuu50000, xuu51000, app(ty_Ratio, bgb)) -> new_lt10(xuu50000, xuu51000, bgb) 29.16/12.44 new_lt19(xuu50001, xuu51001, ty_@0) -> new_lt18(xuu50001, xuu51001) 29.16/12.44 new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat0(Succ(xuu5100), Zero) 29.16/12.44 new_esEs31(xuu311000, xuu600, app(app(ty_Either, ee), ef)) -> new_esEs5(xuu311000, xuu600, ee, ef) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.44 new_esEs29(xuu22, xuu17, app(ty_Maybe, fc)) -> new_esEs4(xuu22, xuu17, fc) 29.16/12.44 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 29.16/12.44 new_ltEs6(xuu5000, xuu5100) -> new_fsEs(new_compare6(xuu5000, xuu5100)) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, bhe), bge) -> new_esEs15(xuu3110000, xuu6000, bhe) 29.16/12.44 new_esEs27(xuu50001, xuu51001, ty_Char) -> new_esEs18(xuu50001, xuu51001) 29.16/12.44 new_esEs26(xuu50000, xuu51000, app(app(ty_Either, de), df)) -> new_esEs5(xuu50000, xuu51000, de, df) 29.16/12.44 new_lt11(xuu50000, xuu51000) -> new_esEs8(new_compare13(xuu50000, xuu51000), LT) 29.16/12.44 new_lt16(xuu50000, xuu51000, app(ty_[], dg)) -> new_lt4(xuu50000, xuu51000, dg) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, app(ty_[], dbd)) -> new_esEs19(xuu3110002, xuu6002, dbd) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, app(ty_Maybe, bef)) -> new_ltEs10(xuu5000, xuu5100, bef) 29.16/12.44 new_compare25(Right(xuu5000), Right(xuu5100), False, bdf, bdg) -> new_compare110(xuu5000, xuu5100, new_ltEs19(xuu5000, xuu5100, bdg), bdf, bdg) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Bool) -> new_ltEs9(xuu50000, xuu51000) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) 29.16/12.44 new_compare112(xuu183, xuu184, False, bae, baf) -> GT 29.16/12.44 new_ltEs5(EQ, GT) -> True 29.16/12.44 new_esEs29(xuu22, xuu17, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs7(xuu22, xuu17, fd, ff, fg) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.44 new_not(False) -> True 29.16/12.44 new_esEs31(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.44 new_esEs31(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 29.16/12.44 new_primCompAux0(xuu50000, xuu51000, xuu210, ca) -> new_primCompAux00(xuu210, new_compare5(xuu50000, xuu51000, ca)) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs7(xuu3110001, xuu6001, cbe, cbf, cbg) 29.16/12.44 new_esEs30(xuu311000, xuu600, app(app(ty_@2, cbb), cbc)) -> new_esEs6(xuu311000, xuu600, cbb, cbc) 29.16/12.44 new_compare25(Right(xuu5000), Left(xuu5100), False, bdf, bdg) -> GT 29.16/12.44 new_ltEs5(GT, GT) -> True 29.16/12.44 new_ltEs17(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), beb, bec, bed) -> new_pePe(new_lt20(xuu50000, xuu51000, beb), new_asAs(new_esEs28(xuu50000, xuu51000, beb), new_pePe(new_lt19(xuu50001, xuu51001, bec), new_asAs(new_esEs27(xuu50001, xuu51001, bec), new_ltEs21(xuu50002, xuu51002, bed))))) 29.16/12.44 new_esEs8(LT, GT) -> False 29.16/12.44 new_esEs8(GT, LT) -> False 29.16/12.44 new_ltEs15(xuu5000, xuu5100) -> new_fsEs(new_compare14(xuu5000, xuu5100)) 29.16/12.44 new_lt20(xuu50000, xuu51000, app(app(ty_@2, eac), ead)) -> new_lt5(xuu50000, xuu51000, eac, ead) 29.16/12.44 new_compare5(xuu50000, xuu51000, ty_Integer) -> new_compare8(xuu50000, xuu51000) 29.16/12.44 new_esEs27(xuu50001, xuu51001, app(ty_Ratio, dhc)) -> new_esEs15(xuu50001, xuu51001, dhc) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.44 new_esEs5(Left(xuu3110000), Right(xuu6000), bhg, bge) -> False 29.16/12.44 new_esEs5(Right(xuu3110000), Left(xuu6000), bhg, bge) -> False 29.16/12.44 new_lt16(xuu50000, xuu51000, ty_Char) -> new_lt14(xuu50000, xuu51000) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, ty_@0) -> new_ltEs4(xuu50002, xuu51002) 29.16/12.44 new_esEs30(xuu311000, xuu600, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs7(xuu311000, xuu600, chh, daa, dab) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, app(app(ty_@2, ccb), ccc)) -> new_esEs6(xuu3110001, xuu6001, ccb, ccc) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, ty_Ordering) -> new_ltEs5(xuu50002, xuu51002) 29.16/12.44 new_esEs29(xuu22, xuu17, app(ty_Ratio, gd)) -> new_esEs15(xuu22, xuu17, gd) 29.16/12.44 new_esEs32(xuu39, xuu34, ty_@0) -> new_esEs12(xuu39, xuu34) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.44 new_ltEs10(Just(xuu50000), Nothing, gh) -> False 29.16/12.44 new_ltEs10(Nothing, Nothing, gh) -> True 29.16/12.44 new_ltEs18(xuu5000, xuu5100, ty_Int) -> new_ltEs6(xuu5000, xuu5100) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Int, bge) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.44 new_ltEs13(xuu5000, xuu5100) -> new_fsEs(new_compare12(xuu5000, xuu5100)) 29.16/12.44 new_compare113(xuu50000, xuu51000, False, bag) -> GT 29.16/12.44 new_esEs27(xuu50001, xuu51001, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_esEs7(xuu50001, xuu51001, dhd, dhe, dhf) 29.16/12.44 new_esEs30(xuu311000, xuu600, app(app(ty_Either, bhg), bge)) -> new_esEs5(xuu311000, xuu600, bhg, bge) 29.16/12.44 new_primPlusNat0(Succ(xuu1430), xuu600000) -> Succ(Succ(new_primPlusNat1(xuu1430, xuu600000))) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, app(app(ty_@2, bdh), bea)) -> new_ltEs16(xuu5000, xuu5100, bdh, bea) 29.16/12.44 new_esEs29(xuu22, xuu17, app(app(ty_@2, gb), gc)) -> new_esEs6(xuu22, xuu17, gb, gc) 29.16/12.44 new_compare13(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Bool) -> new_ltEs9(xuu50000, xuu51000) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 29.16/12.44 new_esEs10(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), app(ty_[], bba), bah) -> new_ltEs8(xuu50000, xuu51000, bba) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, app(ty_[], dfc)) -> new_ltEs8(xuu50002, xuu51002, dfc) 29.16/12.44 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 29.16/12.44 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 29.16/12.44 new_primPlusNat1(Zero, Zero) -> Zero 29.16/12.44 new_compare5(xuu50000, xuu51000, app(app(app(ty_@3, db), dc), dd)) -> new_compare17(xuu50000, xuu51000, db, dc, dd) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), app(app(ty_@2, bbe), bbf), bah) -> new_ltEs16(xuu50000, xuu51000, bbe, bbf) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, ty_Ordering) -> new_ltEs5(xuu5000, xuu5100) 29.16/12.44 new_compare5(xuu50000, xuu51000, ty_Bool) -> new_compare18(xuu50000, xuu51000) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, ty_Float) -> new_ltEs14(xuu5000, xuu5100) 29.16/12.44 new_compare5(xuu50000, xuu51000, ty_Double) -> new_compare12(xuu50000, xuu51000) 29.16/12.44 new_compare15(xuu50000, xuu51000, bac, bad) -> new_compare29(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, bac, bad), bac, bad) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, app(ty_Maybe, dcg)) -> new_esEs4(xuu3110000, xuu6000, dcg) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.44 new_esEs32(xuu39, xuu34, app(app(ty_@2, cga), cgb)) -> new_esEs6(xuu39, xuu34, cga, cgb) 29.16/12.44 new_lt13(xuu50000, xuu51000) -> new_esEs8(new_compare7(xuu50000, xuu51000), LT) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.44 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 29.16/12.44 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, app(ty_Maybe, dfd)) -> new_ltEs10(xuu50002, xuu51002, dfd) 29.16/12.44 new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat0(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, ty_Integer) -> new_ltEs11(xuu50002, xuu51002) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs17(xuu50000, xuu51000, hh, baa, bab) 29.16/12.44 new_esEs12(@0, @0) -> True 29.16/12.44 new_compare29(xuu50000, xuu51000, True, bac, bad) -> EQ 29.16/12.44 new_primCmpNat0(Succ(xuu5000), Succ(xuu5100)) -> new_primCmpNat0(xuu5000, xuu5100) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Int, bah) -> new_ltEs6(xuu50000, xuu51000) 29.16/12.44 new_esEs27(xuu50001, xuu51001, app(ty_Maybe, dgf)) -> new_esEs4(xuu50001, xuu51001, dgf) 29.16/12.44 new_esEs6(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cbb, cbc) -> new_asAs(new_esEs21(xuu3110000, xuu6000, cbb), new_esEs20(xuu3110001, xuu6001, cbc)) 29.16/12.44 new_esEs32(xuu39, xuu34, ty_Integer) -> new_esEs11(xuu39, xuu34) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, app(ty_Maybe, deb)) -> new_ltEs10(xuu50001, xuu51001, deb) 29.16/12.44 new_esEs26(xuu50000, xuu51000, ty_Int) -> new_esEs10(xuu50000, xuu51000) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.44 new_esEs28(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Char, bge) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Double) -> new_ltEs13(xuu50000, xuu51000) 29.16/12.44 new_compare114(xuu50000, xuu51000, False, bfg, bfh, bga) -> GT 29.16/12.44 new_esEs24(xuu3110001, xuu6001, ty_Char) -> new_esEs18(xuu3110001, xuu6001) 29.16/12.44 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 29.16/12.44 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 29.16/12.44 new_lt14(xuu50000, xuu51000) -> new_esEs8(new_compare14(xuu50000, xuu51000), LT) 29.16/12.44 new_lt19(xuu50001, xuu51001, ty_Float) -> new_lt11(xuu50001, xuu51001) 29.16/12.44 new_compare12(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.44 new_compare110(xuu190, xuu191, False, gf, gg) -> GT 29.16/12.44 new_compare5(xuu50000, xuu51000, app(ty_[], cb)) -> new_compare(xuu50000, xuu51000, cb) 29.16/12.44 new_esEs26(xuu50000, xuu51000, app(ty_Maybe, bag)) -> new_esEs4(xuu50000, xuu51000, bag) 29.16/12.44 new_esEs32(xuu39, xuu34, ty_Bool) -> new_esEs13(xuu39, xuu34) 29.16/12.44 new_primEqNat0(Zero, Zero) -> True 29.16/12.44 new_esEs28(xuu50000, xuu51000, app(app(ty_Either, eaa), eab)) -> new_esEs5(xuu50000, xuu51000, eaa, eab) 29.16/12.44 new_esEs31(xuu311000, xuu600, ty_Integer) -> new_esEs11(xuu311000, xuu600) 29.16/12.44 new_lt19(xuu50001, xuu51001, ty_Double) -> new_lt15(xuu50001, xuu51001) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, ty_Float) -> new_esEs9(xuu3110001, xuu6001) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, app(ty_[], ddh)) -> new_esEs19(xuu3110000, xuu6000, ddh) 29.16/12.44 new_esEs29(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, ty_Float) -> new_esEs9(xuu3110002, xuu6002) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Float, bge) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, ty_Ordering) -> new_ltEs5(xuu5000, xuu5100) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.44 new_esEs31(xuu311000, xuu600, app(app(ty_@2, eg), eh)) -> new_esEs6(xuu311000, xuu600, eg, eh) 29.16/12.44 new_asAs(False, xuu178) -> False 29.16/12.44 new_lt16(xuu50000, xuu51000, app(app(ty_Either, de), df)) -> new_lt12(xuu50000, xuu51000, de, df) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, ty_Integer) -> new_esEs11(xuu3110001, xuu6001) 29.16/12.44 new_lt19(xuu50001, xuu51001, app(ty_Ratio, dhc)) -> new_lt10(xuu50001, xuu51001, dhc) 29.16/12.44 new_esEs28(xuu50000, xuu51000, app(ty_Ratio, eae)) -> new_esEs15(xuu50000, xuu51000, eae) 29.16/12.44 new_ltEs5(GT, EQ) -> False 29.16/12.44 new_ltEs20(xuu50001, xuu51001, ty_Ordering) -> new_ltEs5(xuu50001, xuu51001) 29.16/12.44 new_lt18(xuu50000, xuu51000) -> new_esEs8(new_compare10(xuu50000, xuu51000), LT) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Double) -> new_ltEs13(xuu50000, xuu51000) 29.16/12.44 new_esEs8(EQ, GT) -> False 29.16/12.44 new_esEs8(GT, EQ) -> False 29.16/12.44 new_compare5(xuu50000, xuu51000, ty_Ordering) -> new_compare7(xuu50000, xuu51000) 29.16/12.44 new_lt20(xuu50000, xuu51000, ty_Double) -> new_lt15(xuu50000, xuu51000) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Char) -> new_ltEs15(xuu50000, xuu51000) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, bgf), bgg), bgh), bge) -> new_esEs7(xuu3110000, xuu6000, bgf, bgg, bgh) 29.16/12.44 new_compare29(xuu50000, xuu51000, False, bac, bad) -> new_compare115(xuu50000, xuu51000, new_ltEs16(xuu50000, xuu51000, bac, bad), bac, bad) 29.16/12.44 29.16/12.44 The set Q consists of the following terms: 29.16/12.44 29.16/12.44 new_ltEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.16/12.44 new_esEs8(EQ, EQ) 29.16/12.44 new_esEs30(x0, x1, ty_Double) 29.16/12.44 new_esEs26(x0, x1, ty_Int) 29.16/12.44 new_ltEs21(x0, x1, ty_Integer) 29.16/12.44 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_ltEs20(x0, x1, ty_Bool) 29.16/12.44 new_esEs24(x0, x1, ty_Bool) 29.16/12.44 new_esEs4(Just(x0), Just(x1), ty_Ordering) 29.16/12.44 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 29.16/12.44 new_esEs18(Char(x0), Char(x1)) 29.16/12.44 new_compare([], :(x0, x1), x2) 29.16/12.44 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 29.16/12.44 new_esEs4(Just(x0), Just(x1), ty_Double) 29.16/12.44 new_ltEs20(x0, x1, ty_@0) 29.16/12.44 new_lt16(x0, x1, ty_Integer) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 29.16/12.44 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.16/12.44 new_esEs29(x0, x1, app(ty_[], x2)) 29.16/12.44 new_esEs28(x0, x1, ty_Ordering) 29.16/12.44 new_lt19(x0, x1, ty_Integer) 29.16/12.44 new_lt20(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_pePe(False, x0) 29.16/12.44 new_esEs29(x0, x1, ty_Float) 29.16/12.44 new_primPlusNat1(Zero, Zero) 29.16/12.44 new_esEs31(x0, x1, ty_Float) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), ty_Int) 29.16/12.44 new_compare25(Left(x0), Left(x1), False, x2, x3) 29.16/12.44 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 29.16/12.44 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 29.16/12.44 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), ty_Char) 29.16/12.44 new_ltEs19(x0, x1, ty_Bool) 29.16/12.44 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.16/12.44 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_esEs28(x0, x1, ty_Int) 29.16/12.44 new_esEs20(x0, x1, ty_Integer) 29.16/12.44 new_lt20(x0, x1, ty_Float) 29.16/12.44 new_esEs4(Nothing, Nothing, x0) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.16/12.44 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_esEs26(x0, x1, ty_Char) 29.16/12.44 new_esEs4(Just(x0), Nothing, x1) 29.16/12.44 new_esEs27(x0, x1, ty_Char) 29.16/12.44 new_esEs4(Just(x0), Just(x1), ty_Int) 29.16/12.44 new_esEs25(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_ltEs19(x0, x1, ty_Integer) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 29.16/12.44 new_esEs25(x0, x1, ty_@0) 29.16/12.44 new_esEs28(x0, x1, ty_Char) 29.16/12.44 new_ltEs21(x0, x1, ty_Bool) 29.16/12.44 new_esEs21(x0, x1, app(ty_[], x2)) 29.16/12.44 new_lt16(x0, x1, ty_Bool) 29.16/12.44 new_primEqInt(Pos(Zero), Pos(Zero)) 29.16/12.44 new_esEs20(x0, x1, ty_Bool) 29.16/12.44 new_esEs27(x0, x1, ty_Int) 29.16/12.44 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 29.16/12.44 new_compare27(x0, x1, True, x2) 29.16/12.44 new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) 29.16/12.44 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_esEs28(x0, x1, ty_Double) 29.16/12.44 new_esEs30(x0, x1, ty_Int) 29.16/12.44 new_esEs16(x0, x1, ty_Int) 29.16/12.44 new_compare114(x0, x1, False, x2, x3, x4) 29.16/12.44 new_esEs30(x0, x1, ty_Ordering) 29.16/12.44 new_esEs23(x0, x1, ty_Integer) 29.16/12.44 new_primCmpNat0(Succ(x0), Zero) 29.16/12.44 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) 29.16/12.44 new_esEs27(x0, x1, ty_@0) 29.16/12.44 new_esEs27(x0, x1, app(ty_[], x2)) 29.16/12.44 new_primEqNat0(Zero, Succ(x0)) 29.16/12.44 new_asAs(True, x0) 29.16/12.44 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 29.16/12.44 new_primEqInt(Neg(Zero), Neg(Zero)) 29.16/12.44 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_esEs21(x0, x1, ty_@0) 29.16/12.44 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 29.16/12.44 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 29.16/12.44 new_esEs25(x0, x1, app(ty_[], x2)) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 29.16/12.44 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_sr0(Integer(x0), Integer(x1)) 29.16/12.44 new_esEs26(x0, x1, ty_Ordering) 29.16/12.44 new_ltEs9(True, True) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 29.16/12.44 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.16/12.44 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 29.16/12.44 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 29.16/12.44 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 29.16/12.44 new_primCmpNat0(Succ(x0), Succ(x1)) 29.16/12.44 new_ltEs5(LT, GT) 29.16/12.44 new_ltEs5(GT, LT) 29.16/12.44 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.16/12.44 new_esEs23(x0, x1, ty_Float) 29.16/12.44 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_esEs27(x0, x1, ty_Ordering) 29.16/12.44 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_ltEs20(x0, x1, ty_Char) 29.16/12.44 new_esEs30(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_esEs5(Left(x0), Right(x1), x2, x3) 29.16/12.44 new_esEs5(Right(x0), Left(x1), x2, x3) 29.16/12.44 new_asAs(False, x0) 29.16/12.44 new_esEs20(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_primPlusNat1(Succ(x0), Zero) 29.16/12.44 new_compare18(x0, x1) 29.16/12.44 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_esEs24(x0, x1, ty_Char) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.16/12.44 new_esEs25(x0, x1, ty_Int) 29.16/12.44 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 29.16/12.44 new_lt13(x0, x1) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 29.16/12.44 new_lt17(x0, x1) 29.16/12.44 new_lt15(x0, x1) 29.16/12.44 new_esEs26(x0, x1, ty_Double) 29.16/12.44 new_esEs26(x0, x1, ty_Bool) 29.16/12.44 new_esEs25(x0, x1, ty_Char) 29.16/12.44 new_ltEs20(x0, x1, ty_Int) 29.16/12.44 new_primEqInt(Pos(Zero), Neg(Zero)) 29.16/12.44 new_primEqInt(Neg(Zero), Pos(Zero)) 29.16/12.44 new_lt19(x0, x1, app(ty_[], x2)) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), ty_Ordering) 29.16/12.44 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 29.16/12.44 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 29.16/12.44 new_ltEs10(Nothing, Nothing, x0) 29.16/12.44 new_ltEs18(x0, x1, ty_Double) 29.16/12.44 new_compare112(x0, x1, True, x2, x3) 29.16/12.44 new_esEs25(x0, x1, ty_Double) 29.16/12.44 new_esEs17(x0, x1, ty_Int) 29.16/12.44 new_compare9(x0, x1, x2) 29.16/12.44 new_compare5(x0, x1, ty_Float) 29.16/12.44 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_compare29(x0, x1, True, x2, x3) 29.16/12.44 new_esEs25(x0, x1, ty_Bool) 29.16/12.44 new_compare24(x0, x1, False) 29.16/12.44 new_esEs24(x0, x1, ty_@0) 29.16/12.44 new_esEs28(x0, x1, ty_@0) 29.16/12.44 new_ltEs4(x0, x1) 29.16/12.44 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_esEs10(x0, x1) 29.16/12.44 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 29.16/12.44 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 29.16/12.44 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_esEs26(x0, x1, app(ty_[], x2)) 29.16/12.44 new_esEs24(x0, x1, ty_Float) 29.16/12.44 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 29.16/12.44 new_esEs32(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_primEqNat0(Succ(x0), Succ(x1)) 29.16/12.44 new_esEs23(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_compare27(x0, x1, False, x2) 29.16/12.44 new_primMulInt(Neg(x0), Neg(x1)) 29.16/12.44 new_esEs22(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_ltEs20(x0, x1, ty_Float) 29.16/12.44 new_esEs24(x0, x1, ty_Ordering) 29.16/12.44 new_compare19(x0, x1, True) 29.16/12.44 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_esEs4(Just(x0), Just(x1), ty_Bool) 29.16/12.44 new_lt19(x0, x1, ty_Char) 29.16/12.44 new_esEs31(x0, x1, ty_@0) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), ty_Integer) 29.16/12.44 new_esEs22(x0, x1, app(ty_[], x2)) 29.16/12.44 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_lt20(x0, x1, ty_Bool) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 29.16/12.44 new_compare25(Left(x0), Right(x1), False, x2, x3) 29.16/12.44 new_compare25(Right(x0), Left(x1), False, x2, x3) 29.16/12.44 new_ltEs21(x0, x1, app(ty_[], x2)) 29.16/12.44 new_ltEs20(x0, x1, ty_Ordering) 29.16/12.44 new_compare111(x0, x1, False) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 29.16/12.44 new_esEs16(x0, x1, ty_Integer) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.16/12.44 new_esEs14(Double(x0, x1), Double(x2, x3)) 29.16/12.44 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.16/12.44 new_esEs26(x0, x1, ty_Integer) 29.16/12.44 new_ltEs12(Left(x0), Right(x1), x2, x3) 29.16/12.44 new_lt16(x0, x1, ty_Int) 29.16/12.44 new_esEs20(x0, x1, app(ty_[], x2)) 29.16/12.44 new_ltEs12(Right(x0), Left(x1), x2, x3) 29.16/12.44 new_esEs28(x0, x1, app(ty_[], x2)) 29.16/12.44 new_ltEs7(x0, x1, x2) 29.16/12.44 new_esEs21(x0, x1, ty_Float) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.16/12.44 new_compare17(x0, x1, x2, x3, x4) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.16/12.44 new_lt7(x0, x1, x2) 29.16/12.44 new_esEs29(x0, x1, ty_@0) 29.16/12.44 new_esEs24(x0, x1, ty_Int) 29.16/12.44 new_compare114(x0, x1, True, x2, x3, x4) 29.16/12.44 new_ltEs21(x0, x1, ty_Int) 29.16/12.44 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_compare15(x0, x1, x2, x3) 29.16/12.44 new_esEs31(x0, x1, ty_Bool) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 29.16/12.44 new_compare26(x0, x1, False) 29.16/12.44 new_esEs29(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_esEs27(x0, x1, ty_Integer) 29.16/12.44 new_compare110(x0, x1, True, x2, x3) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.16/12.44 new_compare11(x0, x1, x2, x3) 29.16/12.44 new_compare5(x0, x1, ty_Double) 29.16/12.44 new_esEs32(x0, x1, ty_Integer) 29.16/12.44 new_ltEs5(EQ, GT) 29.16/12.44 new_ltEs5(GT, EQ) 29.16/12.44 new_compare112(x0, x1, False, x2, x3) 29.16/12.44 new_lt16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_primMulNat0(Zero, Succ(x0)) 29.16/12.44 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 29.16/12.44 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.16/12.44 new_pePe(True, x0) 29.16/12.44 new_primMulNat0(Succ(x0), Succ(x1)) 29.16/12.44 new_esEs30(x0, x1, ty_Integer) 29.16/12.44 new_esEs26(x0, x1, ty_@0) 29.16/12.44 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_ltEs21(x0, x1, ty_Char) 29.16/12.44 new_ltEs18(x0, x1, ty_Ordering) 29.16/12.44 new_esEs21(x0, x1, ty_Int) 29.16/12.44 new_esEs28(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_primCompAux00(x0, LT) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 29.16/12.44 new_ltEs19(x0, x1, app(ty_[], x2)) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 29.16/12.44 new_esEs25(x0, x1, ty_Float) 29.16/12.44 new_lt16(x0, x1, ty_Char) 29.16/12.44 new_esEs8(GT, GT) 29.16/12.44 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 29.16/12.44 new_esEs21(x0, x1, ty_Ordering) 29.16/12.44 new_esEs8(LT, EQ) 29.16/12.44 new_esEs8(EQ, LT) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), ty_Bool) 29.16/12.44 new_primCmpInt(Neg(Zero), Neg(Zero)) 29.16/12.44 new_esEs22(x0, x1, ty_Integer) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 29.16/12.44 new_ltEs9(False, True) 29.16/12.44 new_ltEs9(True, False) 29.16/12.44 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 29.16/12.44 new_esEs21(x0, x1, ty_Integer) 29.16/12.44 new_esEs13(False, True) 29.16/12.44 new_esEs13(True, False) 29.16/12.44 new_esEs23(x0, x1, ty_Double) 29.16/12.44 new_lt16(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_esEs23(x0, x1, ty_@0) 29.16/12.44 new_lt11(x0, x1) 29.16/12.44 new_primCompAux00(x0, EQ) 29.16/12.44 new_esEs8(LT, LT) 29.16/12.44 new_lt19(x0, x1, ty_Bool) 29.16/12.44 new_primCmpInt(Pos(Zero), Neg(Zero)) 29.16/12.44 new_primCmpInt(Neg(Zero), Pos(Zero)) 29.16/12.44 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_esEs4(Just(x0), Just(x1), ty_Char) 29.16/12.44 new_primMulInt(Pos(x0), Neg(x1)) 29.16/12.44 new_primMulInt(Neg(x0), Pos(x1)) 29.16/12.44 new_ltEs10(Nothing, Just(x0), x1) 29.16/12.44 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) 29.16/12.44 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_esEs30(x0, x1, app(ty_[], x2)) 29.16/12.44 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 29.16/12.44 new_esEs23(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 29.16/12.44 new_esEs32(x0, x1, ty_Ordering) 29.16/12.44 new_esEs31(x0, x1, ty_Integer) 29.16/12.44 new_esEs21(x0, x1, ty_Char) 29.16/12.44 new_lt19(x0, x1, ty_Float) 29.16/12.44 new_primMulInt(Pos(x0), Pos(x1)) 29.16/12.44 new_ltEs11(x0, x1) 29.16/12.44 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.16/12.44 new_compare7(x0, x1) 29.16/12.44 new_primPlusNat0(Zero, x0) 29.16/12.44 new_lt5(x0, x1, x2, x3) 29.16/12.44 new_esEs30(x0, x1, ty_Char) 29.16/12.44 new_lt20(x0, x1, ty_Integer) 29.16/12.44 new_lt16(x0, x1, ty_Float) 29.16/12.44 new_esEs22(x0, x1, ty_Ordering) 29.16/12.44 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 29.16/12.44 new_lt16(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_esEs29(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_esEs31(x0, x1, ty_Ordering) 29.16/12.44 new_esEs20(x0, x1, ty_@0) 29.16/12.44 new_ltEs19(x0, x1, ty_@0) 29.16/12.44 new_esEs20(x0, x1, ty_Double) 29.16/12.44 new_esEs21(x0, x1, ty_Bool) 29.16/12.44 new_ltEs19(x0, x1, ty_Double) 29.16/12.44 new_compare113(x0, x1, False, x2) 29.16/12.44 new_esEs26(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_lt4(x0, x1, x2) 29.16/12.44 new_esEs30(x0, x1, ty_Bool) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), ty_Float) 29.16/12.44 new_lt19(x0, x1, ty_Int) 29.16/12.44 new_esEs27(x0, x1, ty_Bool) 29.16/12.44 new_ltEs21(x0, x1, ty_Float) 29.16/12.44 new_ltEs10(Just(x0), Nothing, x1) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 29.16/12.44 new_esEs24(x0, x1, ty_Integer) 29.16/12.44 new_ltEs20(x0, x1, ty_Integer) 29.16/12.44 new_lt20(x0, x1, ty_Ordering) 29.16/12.44 new_compare115(x0, x1, False, x2, x3) 29.16/12.44 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 29.16/12.44 new_esEs29(x0, x1, ty_Ordering) 29.16/12.44 new_esEs4(Just(x0), Just(x1), ty_Float) 29.16/12.44 new_esEs23(x0, x1, app(ty_[], x2)) 29.16/12.44 new_compare19(x0, x1, False) 29.16/12.44 new_compare111(x0, x1, True) 29.16/12.44 new_esEs31(x0, x1, ty_Double) 29.16/12.44 new_esEs30(x0, x1, ty_Float) 29.16/12.44 new_compare(:(x0, x1), :(x2, x3), x4) 29.16/12.44 new_compare28(x0, x1, False, x2, x3, x4) 29.16/12.44 new_esEs28(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_lt20(x0, x1, ty_Double) 29.16/12.44 new_primMulNat0(Zero, Zero) 29.16/12.44 new_esEs22(x0, x1, ty_@0) 29.16/12.44 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_esEs21(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_lt18(x0, x1) 29.16/12.44 new_compare25(x0, x1, True, x2, x3) 29.16/12.44 new_compare24(x0, x1, True) 29.16/12.44 new_lt12(x0, x1, x2, x3) 29.16/12.44 new_lt16(x0, x1, app(ty_[], x2)) 29.16/12.44 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 29.16/12.44 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 29.16/12.44 new_ltEs18(x0, x1, ty_@0) 29.16/12.44 new_esEs32(x0, x1, ty_@0) 29.16/12.44 new_compare5(x0, x1, ty_Char) 29.16/12.44 new_esEs26(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_esEs27(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_compare25(Right(x0), Right(x1), False, x2, x3) 29.16/12.44 new_compare5(x0, x1, ty_@0) 29.16/12.44 new_lt9(x0, x1, x2, x3, x4) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_esEs26(x0, x1, ty_Float) 29.16/12.44 new_esEs29(x0, x1, ty_Int) 29.16/12.44 new_lt16(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_esEs11(Integer(x0), Integer(x1)) 29.16/12.44 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 29.16/12.44 new_esEs29(x0, x1, ty_Double) 29.16/12.44 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_esEs22(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_compare10(@0, @0) 29.16/12.44 new_compare12(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 29.16/12.44 new_ltEs18(x0, x1, ty_Integer) 29.16/12.44 new_lt19(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_esEs25(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_esEs29(x0, x1, ty_Char) 29.16/12.44 new_not(True) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 29.16/12.44 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_esEs27(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 29.16/12.44 new_lt6(x0, x1) 29.16/12.44 new_esEs31(x0, x1, ty_Char) 29.16/12.44 new_esEs31(x0, x1, app(ty_[], x2)) 29.16/12.44 new_primCmpNat0(Zero, Succ(x0)) 29.16/12.44 new_compare5(x0, x1, ty_Int) 29.16/12.44 new_esEs27(x0, x1, ty_Float) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.16/12.44 new_esEs19(:(x0, x1), [], x2) 29.16/12.44 new_esEs8(EQ, GT) 29.16/12.44 new_esEs8(GT, EQ) 29.16/12.44 new_esEs22(x0, x1, ty_Int) 29.16/12.44 new_esEs32(x0, x1, ty_Bool) 29.16/12.44 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.16/12.44 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 29.16/12.44 new_esEs32(x0, x1, ty_Int) 29.16/12.44 new_compare5(x0, x1, app(ty_[], x2)) 29.16/12.44 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.16/12.44 new_esEs9(Float(x0, x1), Float(x2, x3)) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.16/12.44 new_primPlusNat0(Succ(x0), x1) 29.16/12.44 new_compare12(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 29.16/12.44 new_compare12(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 29.16/12.44 new_compare12(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 29.16/12.44 new_fsEs(x0) 29.16/12.44 new_esEs13(True, True) 29.16/12.44 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_esEs4(Nothing, Just(x0), x1) 29.16/12.44 new_primPlusNat1(Zero, Succ(x0)) 29.16/12.44 new_ltEs18(x0, x1, ty_Char) 29.16/12.44 new_esEs22(x0, x1, ty_Bool) 29.16/12.44 new_ltEs21(x0, x1, ty_Ordering) 29.16/12.44 new_primEqNat0(Succ(x0), Zero) 29.16/12.44 new_esEs20(x0, x1, ty_Ordering) 29.16/12.44 new_esEs32(x0, x1, ty_Char) 29.16/12.44 new_esEs31(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_compare110(x0, x1, False, x2, x3) 29.16/12.44 new_compare26(x0, x1, True) 29.16/12.44 new_lt20(x0, x1, ty_Char) 29.16/12.44 new_lt19(x0, x1, ty_Ordering) 29.16/12.44 new_esEs22(x0, x1, ty_Char) 29.16/12.44 new_esEs31(x0, x1, ty_Int) 29.16/12.44 new_lt20(x0, x1, ty_@0) 29.16/12.44 new_esEs32(x0, x1, ty_Double) 29.16/12.44 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_ltEs18(x0, x1, app(ty_[], x2)) 29.16/12.44 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 29.16/12.44 new_lt20(x0, x1, ty_Int) 29.16/12.44 new_esEs28(x0, x1, ty_Float) 29.16/12.44 new_esEs4(Just(x0), Just(x1), ty_Integer) 29.16/12.44 new_ltEs5(LT, LT) 29.16/12.44 new_esEs22(x0, x1, ty_Double) 29.16/12.44 new_ltEs15(x0, x1) 29.16/12.44 new_primCmpInt(Pos(Zero), Pos(Zero)) 29.16/12.44 new_compare6(x0, x1) 29.16/12.44 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.16/12.44 new_ltEs18(x0, x1, ty_Bool) 29.16/12.44 new_esEs19([], :(x0, x1), x2) 29.16/12.44 new_compare115(x0, x1, True, x2, x3) 29.16/12.44 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 29.16/12.44 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 29.16/12.44 new_esEs30(x0, x1, ty_@0) 29.16/12.44 new_esEs23(x0, x1, ty_Char) 29.16/12.44 new_esEs20(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 29.16/12.44 new_compare(:(x0, x1), [], x2) 29.16/12.44 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_ltEs19(x0, x1, ty_Ordering) 29.16/12.44 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_esEs32(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_sr(x0, x1) 29.16/12.44 new_ltEs5(LT, EQ) 29.16/12.44 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_ltEs5(EQ, LT) 29.16/12.44 new_ltEs20(x0, x1, ty_Double) 29.16/12.44 new_esEs24(x0, x1, ty_Double) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.16/12.44 new_ltEs5(GT, GT) 29.16/12.44 new_primCompAux00(x0, GT) 29.16/12.44 new_esEs19(:(x0, x1), :(x2, x3), x4) 29.16/12.44 new_lt16(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_compare28(x0, x1, True, x2, x3, x4) 29.16/12.44 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_esEs21(x0, x1, ty_Double) 29.16/12.44 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_esEs12(@0, @0) 29.16/12.44 new_ltEs18(x0, x1, ty_Int) 29.16/12.44 new_esEs4(Just(x0), Just(x1), ty_@0) 29.16/12.44 new_esEs29(x0, x1, ty_Bool) 29.16/12.44 new_lt16(x0, x1, ty_Ordering) 29.16/12.44 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_esEs24(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_esEs8(LT, GT) 29.16/12.44 new_esEs8(GT, LT) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 29.16/12.44 new_esEs24(x0, x1, app(ty_[], x2)) 29.16/12.44 new_ltEs19(x0, x1, ty_Float) 29.16/12.44 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 29.16/12.44 new_lt16(x0, x1, ty_Double) 29.16/12.44 new_compare8(Integer(x0), Integer(x1)) 29.16/12.44 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_esEs23(x0, x1, ty_Int) 29.16/12.44 new_esEs22(x0, x1, ty_Float) 29.16/12.44 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 29.16/12.44 new_primCompAux0(x0, x1, x2, x3) 29.16/12.44 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_compare113(x0, x1, True, x2) 29.16/12.44 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_esEs30(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_esEs25(x0, x1, ty_Integer) 29.16/12.44 new_ltEs20(x0, x1, app(ty_[], x2)) 29.16/12.44 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_ltEs21(x0, x1, ty_Double) 29.16/12.44 new_esEs32(x0, x1, ty_Float) 29.16/12.44 new_esEs23(x0, x1, ty_Ordering) 29.16/12.44 new_compare([], [], x0) 29.16/12.44 new_ltEs18(x0, x1, ty_Float) 29.16/12.44 new_esEs24(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_esEs28(x0, x1, ty_Bool) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 29.16/12.44 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 29.16/12.44 new_ltEs8(x0, x1, x2) 29.16/12.44 new_ltEs6(x0, x1) 29.16/12.44 new_ltEs16(@2(x0, x1), @2(x2, x3), x4, x5) 29.16/12.44 new_lt20(x0, x1, app(ty_[], x2)) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 29.16/12.44 new_primEqNat0(Zero, Zero) 29.16/12.44 new_esEs13(False, False) 29.16/12.44 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_lt8(x0, x1) 29.16/12.44 new_lt19(x0, x1, ty_Double) 29.16/12.44 new_primPlusNat1(Succ(x0), Succ(x1)) 29.16/12.44 new_ltEs9(False, False) 29.16/12.44 new_lt19(x0, x1, ty_@0) 29.16/12.44 new_not(False) 29.16/12.44 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_ltEs13(x0, x1) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), ty_@0) 29.16/12.44 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_esEs21(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_esEs19([], [], x0) 29.16/12.44 new_compare14(Char(x0), Char(x1)) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), ty_Double) 29.16/12.44 new_ltEs14(x0, x1) 29.16/12.44 new_esEs27(x0, x1, ty_Double) 29.16/12.44 new_esEs31(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 29.16/12.44 new_esEs25(x0, x1, ty_Ordering) 29.16/12.44 new_compare5(x0, x1, ty_Ordering) 29.16/12.44 new_compare5(x0, x1, ty_Integer) 29.16/12.44 new_ltEs21(x0, x1, ty_@0) 29.16/12.44 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_compare5(x0, x1, ty_Bool) 29.16/12.44 new_lt16(x0, x1, ty_@0) 29.16/12.44 new_esEs17(x0, x1, ty_Integer) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 29.16/12.44 new_lt20(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_compare29(x0, x1, False, x2, x3) 29.16/12.44 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 29.16/12.44 new_esEs20(x0, x1, ty_Float) 29.16/12.44 new_esEs29(x0, x1, ty_Integer) 29.16/12.44 new_ltEs5(EQ, EQ) 29.16/12.44 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 29.16/12.44 new_compare5(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 29.16/12.44 new_esEs20(x0, x1, ty_Char) 29.16/12.44 new_compare5(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_ltEs19(x0, x1, ty_Char) 29.16/12.44 new_lt10(x0, x1, x2) 29.16/12.44 new_ltEs19(x0, x1, ty_Int) 29.16/12.44 new_esEs28(x0, x1, ty_Integer) 29.16/12.44 new_lt14(x0, x1) 29.16/12.44 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.16/12.44 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_esEs32(x0, x1, app(ty_[], x2)) 29.16/12.44 new_primMulNat0(Succ(x0), Zero) 29.16/12.44 new_lt19(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.16/12.44 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.16/12.44 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 29.16/12.44 new_primCmpNat0(Zero, Zero) 29.16/12.44 new_esEs23(x0, x1, ty_Bool) 29.16/12.44 new_esEs20(x0, x1, ty_Int) 29.16/12.44 29.16/12.44 We have to consider all minimal (P,Q,R)-chains. 29.16/12.44 ---------------------------------------- 29.16/12.44 29.16/12.44 (30) DependencyGraphProof (EQUIVALENT) 29.16/12.44 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 29.16/12.44 ---------------------------------------- 29.16/12.44 29.16/12.44 (31) 29.16/12.44 Complex Obligation (AND) 29.16/12.44 29.16/12.44 ---------------------------------------- 29.16/12.44 29.16/12.44 (32) 29.16/12.44 Obligation: 29.16/12.44 Q DP problem: 29.16/12.44 The TRS P consists of the following rules: 29.16/12.44 29.16/12.44 new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, bc, bd, be) -> new_addToFM_C11(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Right(xuu311000), Left(xuu600), False, bc, bd), GT), bc, bd, be) 29.16/12.44 new_addToFM_C11(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu64, Right(xuu311000), xuu31101, bc, bd, be) 29.16/12.44 new_addToFM_C(Branch(Left(xuu600), xuu61, xuu62, xuu63, xuu64), Right(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Right(xuu311000), Left(xuu600), False, bc, bd), LT), bc, bd, be) 29.16/12.44 new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu63, Right(xuu311000), xuu31101, bc, bd, be) 29.16/12.44 new_addToFM_C(Branch(Right(xuu600), xuu61, xuu62, xuu63, xuu64), Right(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C22(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Right(xuu311000), Right(xuu600), new_esEs31(xuu311000, xuu600, bd), bc, bd), LT), bc, bd, be) 29.16/12.44 new_addToFM_C22(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bf, bg, bh) -> new_addToFM_C(xuu37, Right(xuu39), xuu40, bf, bg, bh) 29.16/12.44 new_addToFM_C22(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, False, bf, bg, bh) -> new_addToFM_C12(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, new_esEs8(new_compare25(Right(xuu39), Right(xuu34), new_esEs32(xuu39, xuu34, bg), bf, bg), GT), bf, bg, bh) 29.16/12.44 new_addToFM_C12(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bf, bg, bh) -> new_addToFM_C(xuu38, Right(xuu39), xuu40, bf, bg, bh) 29.16/12.44 29.16/12.44 The TRS R consists of the following rules: 29.16/12.44 29.16/12.44 new_esEs26(xuu50000, xuu51000, ty_Float) -> new_esEs9(xuu50000, xuu51000) 29.16/12.44 new_esEs30(xuu311000, xuu600, app(ty_[], cge)) -> new_esEs19(xuu311000, xuu600, cge) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, ty_Integer) -> new_ltEs11(xuu5000, xuu5100) 29.16/12.44 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 29.16/12.44 new_primCmpInt(Neg(Succ(xuu5000)), Pos(xuu510)) -> LT 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Ordering) -> new_ltEs5(xuu50000, xuu51000) 29.16/12.44 new_pePe(True, xuu209) -> True 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Ordering, bge) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.44 new_lt20(xuu50000, xuu51000, app(ty_Ratio, eae)) -> new_lt10(xuu50000, xuu51000, eae) 29.16/12.44 new_esEs30(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, ceg), ceh)) -> new_esEs6(xuu3110000, xuu6000, ceg, ceh) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs7(xuu3110000, xuu6000, ccg, cch, cda) 29.16/12.44 new_esEs30(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Bool, bge) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.44 new_compare12(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.44 new_compare(:(xuu50000, xuu50001), [], ca) -> GT 29.16/12.44 new_lt19(xuu50001, xuu51001, ty_Char) -> new_lt14(xuu50001, xuu51001) 29.16/12.44 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 29.16/12.44 new_esEs24(xuu3110001, xuu6001, app(ty_[], dcf)) -> new_esEs19(xuu3110001, xuu6001, dcf) 29.16/12.44 new_esEs27(xuu50001, xuu51001, app(app(ty_Either, dgg), dgh)) -> new_esEs5(xuu50001, xuu51001, dgg, dgh) 29.16/12.44 new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT 29.16/12.44 new_compare(:(xuu50000, xuu50001), :(xuu51000, xuu51001), ca) -> new_primCompAux0(xuu50000, xuu51000, new_compare(xuu50001, xuu51001, ca), ca) 29.16/12.44 new_compare11(xuu50000, xuu51000, de, df) -> new_compare25(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, de, df), de, df) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, app(app(ty_@2, cdd), cde)) -> new_esEs6(xuu3110000, xuu6000, cdd, cde) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 29.16/12.44 new_esEs28(xuu50000, xuu51000, ty_Char) -> new_esEs18(xuu50000, xuu51000) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(ty_Ratio, bdb)) -> new_ltEs7(xuu50000, xuu51000, bdb) 29.16/12.44 new_lt16(xuu50000, xuu51000, ty_Double) -> new_lt15(xuu50000, xuu51000) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Integer, bah) -> new_ltEs11(xuu50000, xuu51000) 29.16/12.44 new_primCmpInt(Neg(Succ(xuu5000)), Neg(xuu510)) -> new_primCmpNat0(xuu510, Succ(xuu5000)) 29.16/12.44 new_ltEs11(xuu5000, xuu5100) -> new_fsEs(new_compare8(xuu5000, xuu5100)) 29.16/12.44 new_lt7(xuu50000, xuu51000, bag) -> new_esEs8(new_compare9(xuu50000, xuu51000, bag), LT) 29.16/12.44 new_lt4(xuu50000, xuu51000, dg) -> new_esEs8(new_compare(xuu50000, xuu51000, dg), LT) 29.16/12.44 new_esEs29(xuu22, xuu17, ty_@0) -> new_esEs12(xuu22, xuu17) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Integer) -> new_ltEs11(xuu50000, xuu51000) 29.16/12.44 new_ltEs12(Left(xuu50000), Right(xuu51000), bcc, bah) -> True 29.16/12.44 new_compare115(xuu50000, xuu51000, True, bac, bad) -> LT 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs17(xuu50000, xuu51000, bdc, bdd, bde) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, ty_@0) -> new_esEs12(xuu3110001, xuu6001) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, ty_Float) -> new_ltEs14(xuu50002, xuu51002) 29.16/12.44 new_esEs9(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 29.16/12.44 new_lt16(xuu50000, xuu51000, ty_Int) -> new_lt17(xuu50000, xuu51000) 29.16/12.44 new_lt19(xuu50001, xuu51001, app(ty_Maybe, dgf)) -> new_lt7(xuu50001, xuu51001, dgf) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.44 new_compare13(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.44 new_compare13(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, app(app(ty_Either, dag), dah)) -> new_esEs5(xuu3110002, xuu6002, dag, dah) 29.16/12.44 new_compare24(xuu50000, xuu51000, False) -> new_compare19(xuu50000, xuu51000, new_ltEs5(xuu50000, xuu51000)) 29.16/12.44 new_esEs30(xuu311000, xuu600, ty_Integer) -> new_esEs11(xuu311000, xuu600) 29.16/12.44 new_compare26(xuu50000, xuu51000, True) -> EQ 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Integer, bge) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.44 new_esEs8(GT, GT) -> True 29.16/12.44 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 29.16/12.44 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 29.16/12.44 new_esEs24(xuu3110001, xuu6001, ty_Integer) -> new_esEs11(xuu3110001, xuu6001) 29.16/12.44 new_compare5(xuu50000, xuu51000, app(app(ty_@2, cf), cg)) -> new_compare15(xuu50000, xuu51000, cf, cg) 29.16/12.44 new_fsEs(xuu193) -> new_not(new_esEs8(xuu193, GT)) 29.16/12.44 new_ltEs9(False, True) -> True 29.16/12.44 new_lt16(xuu50000, xuu51000, ty_Ordering) -> new_lt13(xuu50000, xuu51000) 29.16/12.44 new_compare18(xuu50000, xuu51000) -> new_compare26(xuu50000, xuu51000, new_esEs13(xuu50000, xuu51000)) 29.16/12.44 new_esEs31(xuu311000, xuu600, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs7(xuu311000, xuu600, eb, ec, ed) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, ty_@0) -> new_ltEs4(xuu50001, xuu51001) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, app(ty_Ratio, dce)) -> new_esEs15(xuu3110001, xuu6001, dce) 29.16/12.44 new_lt20(xuu50000, xuu51000, app(ty_Maybe, dhh)) -> new_lt7(xuu50000, xuu51000, dhh) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, bhc), bhd), bge) -> new_esEs6(xuu3110000, xuu6000, bhc, bhd) 29.16/12.44 new_esEs8(EQ, EQ) -> True 29.16/12.44 new_esEs29(xuu22, xuu17, app(ty_[], ge)) -> new_esEs19(xuu22, xuu17, ge) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Float, bah) -> new_ltEs14(xuu50000, xuu51000) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, cgf)) -> new_esEs4(xuu3110000, xuu6000, cgf) 29.16/12.44 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.44 new_lt19(xuu50001, xuu51001, app(ty_[], dge)) -> new_lt4(xuu50001, xuu51001, dge) 29.16/12.44 new_esEs29(xuu22, xuu17, ty_Integer) -> new_esEs11(xuu22, xuu17) 29.16/12.44 new_ltEs14(xuu5000, xuu5100) -> new_fsEs(new_compare13(xuu5000, xuu5100)) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), app(ty_Ratio, bbg), bah) -> new_ltEs7(xuu50000, xuu51000, bbg) 29.16/12.44 new_compare5(xuu50000, xuu51000, ty_Int) -> new_compare6(xuu50000, xuu51000) 29.16/12.44 new_not(True) -> False 29.16/12.44 new_compare5(xuu50000, xuu51000, ty_Char) -> new_compare14(xuu50000, xuu51000) 29.16/12.44 new_esEs27(xuu50001, xuu51001, ty_Double) -> new_esEs14(xuu50001, xuu51001) 29.16/12.44 new_primCompAux00(xuu223, LT) -> LT 29.16/12.44 new_primCmpNat0(Zero, Zero) -> EQ 29.16/12.44 new_esEs21(xuu3110000, xuu6000, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.44 new_esEs28(xuu50000, xuu51000, app(ty_[], dhg)) -> new_esEs19(xuu50000, xuu51000, dhg) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, app(ty_Ratio, dh)) -> new_ltEs7(xuu5000, xuu5100, dh) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_@0, bge) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(ty_Maybe, bhh)) -> new_esEs4(xuu3110000, xuu6000, bhh) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, ty_Char) -> new_esEs18(xuu3110002, xuu6002) 29.16/12.44 new_esEs30(xuu311000, xuu600, ty_@0) -> new_esEs12(xuu311000, xuu600) 29.16/12.44 new_esEs28(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_@0, bah) -> new_ltEs4(xuu50000, xuu51000) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs7(xuu3110000, xuu6000, dch, dda, ddb) 29.16/12.44 new_esEs30(xuu311000, xuu600, app(ty_Ratio, bgc)) -> new_esEs15(xuu311000, xuu600, bgc) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_@0) -> new_ltEs4(xuu50000, xuu51000) 29.16/12.44 new_compare27(xuu50000, xuu51000, True, bag) -> EQ 29.16/12.44 new_ltEs18(xuu5000, xuu5100, ty_@0) -> new_ltEs4(xuu5000, xuu5100) 29.16/12.44 new_compare17(xuu50000, xuu51000, bfg, bfh, bga) -> new_compare28(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bfg, bfh, bga), bfg, bfh, bga) 29.16/12.44 new_esEs31(xuu311000, xuu600, ty_@0) -> new_esEs12(xuu311000, xuu600) 29.16/12.44 new_primEqNat0(Succ(xuu31100000), Zero) -> False 29.16/12.44 new_primEqNat0(Zero, Succ(xuu60000)) -> False 29.16/12.44 new_esEs18(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, ty_Int) -> new_ltEs6(xuu50001, xuu51001) 29.16/12.44 new_lt20(xuu50000, xuu51000, app(ty_[], dhg)) -> new_lt4(xuu50000, xuu51000, dhg) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, ty_Int) -> new_ltEs6(xuu5000, xuu5100) 29.16/12.44 new_esEs27(xuu50001, xuu51001, ty_Int) -> new_esEs10(xuu50001, xuu51001) 29.16/12.44 new_esEs29(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, ty_Integer) -> new_ltEs11(xuu50001, xuu51001) 29.16/12.44 new_primCompAux00(xuu223, GT) -> GT 29.16/12.44 new_ltEs19(xuu5000, xuu5100, ty_@0) -> new_ltEs4(xuu5000, xuu5100) 29.16/12.44 new_esEs17(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.44 new_compare7(xuu50000, xuu51000) -> new_compare24(xuu50000, xuu51000, new_esEs8(xuu50000, xuu51000)) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs7(xuu3110000, xuu6000, ceb, cec, ced) 29.16/12.44 new_esEs32(xuu39, xuu34, ty_Double) -> new_esEs14(xuu39, xuu34) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Float) -> new_ltEs14(xuu50000, xuu51000) 29.16/12.44 new_compare5(xuu50000, xuu51000, app(app(ty_Either, cd), ce)) -> new_compare11(xuu50000, xuu51000, cd, ce) 29.16/12.44 new_ltEs10(Nothing, Just(xuu51000), gh) -> True 29.16/12.44 new_esEs23(xuu3110002, xuu6002, ty_Int) -> new_esEs10(xuu3110002, xuu6002) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 29.16/12.44 new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Integer) -> new_compare8(new_sr0(xuu50000, xuu51001), new_sr0(xuu51000, xuu50001)) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, ty_Int) -> new_ltEs6(xuu50002, xuu51002) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Int) -> new_ltEs6(xuu50000, xuu51000) 29.16/12.44 new_compare27(xuu50000, xuu51000, False, bag) -> new_compare113(xuu50000, xuu51000, new_ltEs10(xuu50000, xuu51000, bag), bag) 29.16/12.44 new_lt19(xuu50001, xuu51001, app(app(ty_@2, dha), dhb)) -> new_lt5(xuu50001, xuu51001, dha, dhb) 29.16/12.44 new_primCmpInt(Pos(Succ(xuu5000)), Neg(xuu510)) -> GT 29.16/12.44 new_esEs28(xuu50000, xuu51000, ty_Int) -> new_esEs10(xuu50000, xuu51000) 29.16/12.44 new_compare10(@0, @0) -> EQ 29.16/12.44 new_esEs28(xuu50000, xuu51000, ty_Integer) -> new_esEs11(xuu50000, xuu51000) 29.16/12.44 new_lt16(xuu50000, xuu51000, ty_Float) -> new_lt11(xuu50000, xuu51000) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs17(xuu5000, xuu5100, beb, bec, bed) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, ty_Float) -> new_ltEs14(xuu5000, xuu5100) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, app(ty_Ratio, ccd)) -> new_esEs15(xuu3110001, xuu6001, ccd) 29.16/12.44 new_compare110(xuu190, xuu191, True, gf, gg) -> LT 29.16/12.44 new_esEs26(xuu50000, xuu51000, ty_Double) -> new_esEs14(xuu50000, xuu51000) 29.16/12.44 new_compare5(xuu50000, xuu51000, app(ty_Maybe, cc)) -> new_compare9(xuu50000, xuu51000, cc) 29.16/12.44 new_ltEs5(LT, GT) -> True 29.16/12.44 new_esEs32(xuu39, xuu34, ty_Float) -> new_esEs9(xuu39, xuu34) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, ty_Float) -> new_ltEs14(xuu50001, xuu51001) 29.16/12.44 new_ltEs7(xuu5000, xuu5100, dh) -> new_fsEs(new_compare16(xuu5000, xuu5100, dh)) 29.16/12.44 new_compare19(xuu50000, xuu51000, True) -> LT 29.16/12.44 new_primPlusNat1(Succ(xuu53200), Succ(xuu13400)) -> Succ(Succ(new_primPlusNat1(xuu53200, xuu13400))) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, bgd), bge) -> new_esEs4(xuu3110000, xuu6000, bgd) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, ty_@0) -> new_esEs12(xuu3110001, xuu6001) 29.16/12.44 new_primCmpNat0(Zero, Succ(xuu5100)) -> LT 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.44 new_esEs26(xuu50000, xuu51000, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs7(xuu50000, xuu51000, bfg, bfh, bga) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, ty_Bool) -> new_ltEs9(xuu50002, xuu51002) 29.16/12.44 new_lt20(xuu50000, xuu51000, ty_Char) -> new_lt14(xuu50000, xuu51000) 29.16/12.44 new_esEs19(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), cge) -> new_asAs(new_esEs22(xuu3110000, xuu6000, cge), new_esEs19(xuu3110001, xuu6001, cge)) 29.16/12.44 new_esEs32(xuu39, xuu34, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs7(xuu39, xuu34, cfd, cfe, cff) 29.16/12.44 new_lt16(xuu50000, xuu51000, ty_@0) -> new_lt18(xuu50000, xuu51000) 29.16/12.44 new_primCmpNat0(Succ(xuu5000), Zero) -> GT 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_[], cfb)) -> new_esEs19(xuu3110000, xuu6000, cfb) 29.16/12.44 new_pePe(False, xuu209) -> xuu209 29.16/12.44 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, chd), che)) -> new_esEs6(xuu3110000, xuu6000, chd, che) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(ty_[], bcd)) -> new_ltEs8(xuu50000, xuu51000, bcd) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), app(ty_Maybe, hb)) -> new_ltEs10(xuu50000, xuu51000, hb) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) 29.16/12.44 new_esEs19([], [], cge) -> True 29.16/12.44 new_compare25(xuu500, xuu510, True, bdf, bdg) -> EQ 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(ty_Ratio, cah)) -> new_esEs15(xuu3110000, xuu6000, cah) 29.16/12.44 new_ltEs9(True, True) -> True 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.44 new_lt20(xuu50000, xuu51000, app(app(app(ty_@3, eaf), eag), eah)) -> new_lt9(xuu50000, xuu51000, eaf, eag, eah) 29.16/12.44 new_compare112(xuu183, xuu184, True, bae, baf) -> LT 29.16/12.44 new_esEs20(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 29.16/12.44 new_esEs26(xuu50000, xuu51000, ty_@0) -> new_esEs12(xuu50000, xuu51000) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, ty_Integer) -> new_ltEs11(xuu5000, xuu5100) 29.16/12.44 new_lt19(xuu50001, xuu51001, app(app(ty_Either, dgg), dgh)) -> new_lt12(xuu50001, xuu51001, dgg, dgh) 29.16/12.44 new_compare113(xuu50000, xuu51000, True, bag) -> LT 29.16/12.44 new_esEs27(xuu50001, xuu51001, ty_Float) -> new_esEs9(xuu50001, xuu51001) 29.16/12.44 new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Int) -> new_compare6(new_sr(xuu50000, xuu51001), new_sr(xuu51000, xuu50001)) 29.16/12.44 new_esEs8(LT, EQ) -> False 29.16/12.44 new_esEs8(EQ, LT) -> False 29.16/12.44 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 29.16/12.44 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 29.16/12.44 new_esEs23(xuu3110002, xuu6002, app(ty_Maybe, dac)) -> new_esEs4(xuu3110002, xuu6002, dac) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, app(app(ty_@2, dcc), dcd)) -> new_esEs6(xuu3110001, xuu6001, dcc, dcd) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), app(app(ty_Either, bbc), bbd), bah) -> new_ltEs12(xuu50000, xuu51000, bbc, bbd) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, ty_Integer) -> new_esEs11(xuu3110002, xuu6002) 29.16/12.44 new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), bgc) -> new_asAs(new_esEs17(xuu3110000, xuu6000, bgc), new_esEs16(xuu3110001, xuu6001, bgc)) 29.16/12.44 new_esEs30(xuu311000, xuu600, ty_Int) -> new_esEs10(xuu311000, xuu600) 29.16/12.44 new_lt16(xuu50000, xuu51000, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt9(xuu50000, xuu51000, bfg, bfh, bga) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, app(app(ty_Either, bcc), bah)) -> new_ltEs12(xuu5000, xuu5100, bcc, bah) 29.16/12.44 new_esEs29(xuu22, xuu17, ty_Char) -> new_esEs18(xuu22, xuu17) 29.16/12.44 new_esEs31(xuu311000, xuu600, ty_Float) -> new_esEs9(xuu311000, xuu600) 29.16/12.44 new_ltEs16(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), bdh, bea) -> new_pePe(new_lt16(xuu50000, xuu51000, bdh), new_asAs(new_esEs26(xuu50000, xuu51000, bdh), new_ltEs20(xuu50001, xuu51001, bea))) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, app(app(ty_Either, dca), dcb)) -> new_esEs5(xuu3110001, xuu6001, dca, dcb) 29.16/12.44 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.44 new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT 29.16/12.44 new_ltEs20(xuu50001, xuu51001, app(app(app(ty_@3, deh), dfa), dfb)) -> new_ltEs17(xuu50001, xuu51001, deh, dfa, dfb) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, app(ty_[], cdg)) -> new_esEs19(xuu3110000, xuu6000, cdg) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, ty_Double) -> new_ltEs13(xuu50002, xuu51002) 29.16/12.44 new_compare9(xuu50000, xuu51000, bag) -> new_compare27(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, bag), bag) 29.16/12.44 new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.44 new_esEs31(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) 29.16/12.44 new_lt6(xuu50000, xuu51000) -> new_esEs8(new_compare8(xuu50000, xuu51000), LT) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, ty_Char) -> new_ltEs15(xuu50002, xuu51002) 29.16/12.44 new_lt17(xuu500, xuu510) -> new_esEs8(new_compare6(xuu500, xuu510), LT) 29.16/12.44 new_esEs26(xuu50000, xuu51000, app(app(ty_@2, bac), bad)) -> new_esEs6(xuu50000, xuu51000, bac, bad) 29.16/12.44 new_esEs32(xuu39, xuu34, app(app(ty_Either, cfg), cfh)) -> new_esEs5(xuu39, xuu34, cfg, cfh) 29.16/12.44 new_esEs28(xuu50000, xuu51000, ty_@0) -> new_esEs12(xuu50000, xuu51000) 29.16/12.44 new_esEs29(xuu22, xuu17, ty_Int) -> new_esEs10(xuu22, xuu17) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs7(xuu3110000, xuu6000, cgg, cgh, cha) 29.16/12.44 new_compare28(xuu50000, xuu51000, False, bfg, bfh, bga) -> new_compare114(xuu50000, xuu51000, new_ltEs17(xuu50000, xuu51000, bfg, bfh, bga), bfg, bfh, bga) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cfa)) -> new_esEs15(xuu3110000, xuu6000, cfa) 29.16/12.44 new_primMulNat0(Succ(xuu311000100), Zero) -> Zero 29.16/12.44 new_primMulNat0(Zero, Succ(xuu600000)) -> Zero 29.16/12.44 new_primPlusNat0(Zero, xuu600000) -> Succ(xuu600000) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Int) -> new_ltEs6(xuu50000, xuu51000) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.44 new_lt19(xuu50001, xuu51001, ty_Ordering) -> new_lt13(xuu50001, xuu51001) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, ty_Bool) -> new_ltEs9(xuu5000, xuu5100) 29.16/12.44 new_esEs31(xuu311000, xuu600, app(ty_Maybe, ea)) -> new_esEs4(xuu311000, xuu600, ea) 29.16/12.44 new_ltEs5(EQ, EQ) -> True 29.16/12.44 new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 29.16/12.44 new_compare26(xuu50000, xuu51000, False) -> new_compare111(xuu50000, xuu51000, new_ltEs9(xuu50000, xuu51000)) 29.16/12.44 new_esEs26(xuu50000, xuu51000, ty_Integer) -> new_esEs11(xuu50000, xuu51000) 29.16/12.44 new_lt16(xuu50000, xuu51000, app(app(ty_@2, bac), bad)) -> new_lt5(xuu50000, xuu51000, bac, bad) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, bha), bhb), bge) -> new_esEs5(xuu3110000, xuu6000, bha, bhb) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs7(xuu3110000, xuu6000, caa, cab, cac) 29.16/12.44 new_esEs32(xuu39, xuu34, ty_Int) -> new_esEs10(xuu39, xuu34) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, app(app(ty_Either, cdb), cdc)) -> new_esEs5(xuu3110000, xuu6000, cdb, cdc) 29.16/12.44 new_lt16(xuu50000, xuu51000, app(ty_Maybe, bag)) -> new_lt7(xuu50000, xuu51000, bag) 29.16/12.44 new_esEs8(LT, LT) -> True 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_[], bhf), bge) -> new_esEs19(xuu3110000, xuu6000, bhf) 29.16/12.44 new_compare111(xuu50000, xuu51000, True) -> LT 29.16/12.44 new_lt12(xuu50000, xuu51000, de, df) -> new_esEs8(new_compare11(xuu50000, xuu51000, de, df), LT) 29.16/12.44 new_compare19(xuu50000, xuu51000, False) -> GT 29.16/12.44 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, chf)) -> new_esEs15(xuu3110000, xuu6000, chf) 29.16/12.44 new_esEs26(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, app(ty_Maybe, cbd)) -> new_esEs4(xuu3110001, xuu6001, cbd) 29.16/12.44 new_lt15(xuu50000, xuu51000) -> new_esEs8(new_compare12(xuu50000, xuu51000), LT) 29.16/12.44 new_primPlusNat1(Succ(xuu53200), Zero) -> Succ(xuu53200) 29.16/12.44 new_primPlusNat1(Zero, Succ(xuu13400)) -> Succ(xuu13400) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs7(xuu3110001, xuu6001, dbf, dbg, dbh) 29.16/12.44 new_lt16(xuu50000, xuu51000, ty_Integer) -> new_lt6(xuu50000, xuu51000) 29.16/12.44 new_esEs30(xuu311000, xuu600, ty_Float) -> new_esEs9(xuu311000, xuu600) 29.16/12.44 new_lt9(xuu50000, xuu51000, bfg, bfh, bga) -> new_esEs8(new_compare17(xuu50000, xuu51000, bfg, bfh, bga), LT) 29.16/12.44 new_esEs30(xuu311000, xuu600, ty_Char) -> new_esEs18(xuu311000, xuu600) 29.16/12.44 new_esEs13(True, True) -> True 29.16/12.44 new_esEs20(xuu3110001, xuu6001, app(ty_[], cce)) -> new_esEs19(xuu3110001, xuu6001, cce) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, ty_Double) -> new_ltEs13(xuu50001, xuu51001) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Double, bah) -> new_ltEs13(xuu50000, xuu51000) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, app(ty_Ratio, dbc)) -> new_esEs15(xuu3110002, xuu6002, dbc) 29.16/12.44 new_esEs28(xuu50000, xuu51000, ty_Double) -> new_esEs14(xuu50000, xuu51000) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, ty_Char) -> new_ltEs15(xuu5000, xuu5100) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Ordering) -> new_ltEs5(xuu50000, xuu51000) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, ty_Char) -> new_esEs18(xuu3110001, xuu6001) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs7(xuu3110002, xuu6002, dad, dae, daf) 29.16/12.44 new_compare115(xuu50000, xuu51000, False, bac, bad) -> GT 29.16/12.44 new_ltEs5(LT, LT) -> True 29.16/12.44 new_esEs21(xuu3110000, xuu6000, app(ty_Maybe, ccf)) -> new_esEs4(xuu3110000, xuu6000, ccf) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.44 new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, ty_Char) -> new_ltEs15(xuu5000, xuu5100) 29.16/12.44 new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat0(Zero, Succ(xuu5100)) 29.16/12.44 new_esEs29(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Bool, bah) -> new_ltEs9(xuu50000, xuu51000) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(app(ty_@2, caf), cag)) -> new_esEs6(xuu3110000, xuu6000, caf, cag) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, app(app(ty_@2, dde), ddf)) -> new_esEs6(xuu3110000, xuu6000, dde, ddf) 29.16/12.44 new_lt16(xuu50000, xuu51000, ty_Bool) -> new_lt8(xuu50000, xuu51000) 29.16/12.44 new_compare([], :(xuu51000, xuu51001), ca) -> LT 29.16/12.44 new_ltEs5(LT, EQ) -> True 29.16/12.44 new_esEs32(xuu39, xuu34, app(ty_Maybe, cfc)) -> new_esEs4(xuu39, xuu34, cfc) 29.16/12.44 new_esEs31(xuu311000, xuu600, ty_Int) -> new_esEs10(xuu311000, xuu600) 29.16/12.44 new_compare5(xuu50000, xuu51000, app(ty_Ratio, da)) -> new_compare16(xuu50000, xuu51000, da) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, ty_Double) -> new_ltEs13(xuu5000, xuu5100) 29.16/12.44 new_esEs31(xuu311000, xuu600, ty_Char) -> new_esEs18(xuu311000, xuu600) 29.16/12.44 new_esEs31(xuu311000, xuu600, app(ty_[], fb)) -> new_esEs19(xuu311000, xuu600, fb) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, chb), chc)) -> new_esEs5(xuu3110000, xuu6000, chb, chc) 29.16/12.44 new_compare12(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.44 new_compare12(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, cea)) -> new_esEs4(xuu3110000, xuu6000, cea) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 29.16/12.44 new_esEs29(xuu22, xuu17, ty_Float) -> new_esEs9(xuu22, xuu17) 29.16/12.44 new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), chh, daa, dab) -> new_asAs(new_esEs25(xuu3110000, xuu6000, chh), new_asAs(new_esEs24(xuu3110001, xuu6001, daa), new_esEs23(xuu3110002, xuu6002, dab))) 29.16/12.44 new_compare6(xuu50, xuu51) -> new_primCmpInt(xuu50, xuu51) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_ltEs17(xuu50002, xuu51002, dgb, dgc, dgd) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.44 new_esEs27(xuu50001, xuu51001, ty_@0) -> new_esEs12(xuu50001, xuu51001) 29.16/12.44 new_lt20(xuu50000, xuu51000, ty_Integer) -> new_lt6(xuu50000, xuu51000) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, ty_Bool) -> new_ltEs9(xuu5000, xuu5100) 29.16/12.44 new_compare8(Integer(xuu50000), Integer(xuu51000)) -> new_primCmpInt(xuu50000, xuu51000) 29.16/12.44 new_primMulInt(Pos(xuu31100010), Neg(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.44 new_primMulInt(Neg(xuu31100010), Pos(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(app(ty_Either, bcf), bcg)) -> new_ltEs12(xuu50000, xuu51000, bcf, bcg) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, app(ty_Ratio, dga)) -> new_ltEs7(xuu50002, xuu51002, dga) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, app(ty_Maybe, gh)) -> new_ltEs10(xuu5000, xuu5100, gh) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, app(app(ty_@2, dba), dbb)) -> new_esEs6(xuu3110002, xuu6002, dba, dbb) 29.16/12.44 new_esEs30(xuu311000, xuu600, app(ty_Maybe, cdh)) -> new_esEs4(xuu311000, xuu600, cdh) 29.16/12.44 new_ltEs12(Right(xuu50000), Left(xuu51000), bcc, bah) -> False 29.16/12.44 new_esEs24(xuu3110001, xuu6001, app(ty_Maybe, dbe)) -> new_esEs4(xuu3110001, xuu6001, dbe) 29.16/12.44 new_lt8(xuu50000, xuu51000) -> new_esEs8(new_compare18(xuu50000, xuu51000), LT) 29.16/12.44 new_esEs26(xuu50000, xuu51000, app(ty_Ratio, bgb)) -> new_esEs15(xuu50000, xuu51000, bgb) 29.16/12.44 new_lt5(xuu50000, xuu51000, bac, bad) -> new_esEs8(new_compare15(xuu50000, xuu51000, bac, bad), LT) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.44 new_lt20(xuu50000, xuu51000, ty_Float) -> new_lt11(xuu50000, xuu51000) 29.16/12.44 new_compare13(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.44 new_esEs19(:(xuu3110000, xuu3110001), [], cge) -> False 29.16/12.44 new_esEs19([], :(xuu6000, xuu6001), cge) -> False 29.16/12.44 new_sr0(Integer(xuu500000), Integer(xuu510010)) -> Integer(new_primMulInt(xuu500000, xuu510010)) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 29.16/12.44 new_compare25(Left(xuu5000), Left(xuu5100), False, bdf, bdg) -> new_compare112(xuu5000, xuu5100, new_ltEs18(xuu5000, xuu5100, bdf), bdf, bdg) 29.16/12.44 new_esEs13(False, False) -> True 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Double, bge) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.44 new_esEs30(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) 29.16/12.44 new_compare5(xuu50000, xuu51000, ty_Float) -> new_compare13(xuu50000, xuu51000) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Char) -> new_ltEs15(xuu50000, xuu51000) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Char, bah) -> new_ltEs15(xuu50000, xuu51000) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(app(ty_@2, bch), bda)) -> new_ltEs16(xuu50000, xuu51000, bch, bda) 29.16/12.44 new_esEs28(xuu50000, xuu51000, app(app(app(ty_@3, eaf), eag), eah)) -> new_esEs7(xuu50000, xuu51000, eaf, eag, eah) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, ty_Char) -> new_ltEs15(xuu50001, xuu51001) 29.16/12.44 new_compare25(Left(xuu5000), Right(xuu5100), False, bdf, bdg) -> LT 29.16/12.44 new_ltEs18(xuu5000, xuu5100, ty_Double) -> new_ltEs13(xuu5000, xuu5100) 29.16/12.44 new_esEs32(xuu39, xuu34, app(ty_[], cgd)) -> new_esEs19(xuu39, xuu34, cgd) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, app(app(ty_Either, dfe), dff)) -> new_ltEs12(xuu50002, xuu51002, dfe, dff) 29.16/12.44 new_asAs(True, xuu178) -> xuu178 29.16/12.44 new_esEs32(xuu39, xuu34, ty_Char) -> new_esEs18(xuu39, xuu34) 29.16/12.44 new_esEs28(xuu50000, xuu51000, ty_Float) -> new_esEs9(xuu50000, xuu51000) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.44 new_lt20(xuu50000, xuu51000, ty_Ordering) -> new_lt13(xuu50000, xuu51000) 29.16/12.44 new_ltEs5(GT, LT) -> False 29.16/12.44 new_esEs32(xuu39, xuu34, app(ty_Ratio, cgc)) -> new_esEs15(xuu39, xuu34, cgc) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, app(ty_Ratio, cdf)) -> new_esEs15(xuu3110000, xuu6000, cdf) 29.16/12.44 new_lt20(xuu50000, xuu51000, ty_Bool) -> new_lt8(xuu50000, xuu51000) 29.16/12.44 new_esEs26(xuu50000, xuu51000, ty_Char) -> new_esEs18(xuu50000, xuu51000) 29.16/12.44 new_lt20(xuu50000, xuu51000, ty_Int) -> new_lt17(xuu50000, xuu51000) 29.16/12.44 new_esEs26(xuu50000, xuu51000, app(ty_[], dg)) -> new_esEs19(xuu50000, xuu51000, dg) 29.16/12.44 new_lt19(xuu50001, xuu51001, ty_Integer) -> new_lt6(xuu50001, xuu51001) 29.16/12.44 new_ltEs8(xuu5000, xuu5100, ca) -> new_fsEs(new_compare(xuu5000, xuu5100, ca)) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, cee), cef)) -> new_esEs5(xuu3110000, xuu6000, cee, cef) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs17(xuu5000, xuu5100, bfd, bfe, bff) 29.16/12.44 new_primCmpInt(Pos(Succ(xuu5000)), Pos(xuu510)) -> new_primCmpNat0(Succ(xuu5000), xuu510) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, app(ty_[], ca)) -> new_ltEs8(xuu5000, xuu5100, ca) 29.16/12.44 new_esEs29(xuu22, xuu17, app(app(ty_Either, fh), ga)) -> new_esEs5(xuu22, xuu17, fh, ga) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, app(app(ty_@2, dfg), dfh)) -> new_ltEs16(xuu50002, xuu51002, dfg, dfh) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.44 new_primCompAux00(xuu223, EQ) -> xuu223 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Ordering, bah) -> new_ltEs5(xuu50000, xuu51000) 29.16/12.44 new_ltEs4(xuu5000, xuu5100) -> new_fsEs(new_compare10(xuu5000, xuu5100)) 29.16/12.44 new_lt10(xuu50000, xuu51000, bgb) -> new_esEs8(new_compare16(xuu50000, xuu51000, bgb), LT) 29.16/12.44 new_sr(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) 29.16/12.44 new_lt20(xuu50000, xuu51000, app(app(ty_Either, eaa), eab)) -> new_lt12(xuu50000, xuu51000, eaa, eab) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(ty_[], cba)) -> new_esEs19(xuu3110000, xuu6000, cba) 29.16/12.44 new_esEs27(xuu50001, xuu51001, app(app(ty_@2, dha), dhb)) -> new_esEs6(xuu50001, xuu51001, dha, dhb) 29.16/12.44 new_esEs27(xuu50001, xuu51001, ty_Bool) -> new_esEs13(xuu50001, xuu51001) 29.16/12.44 new_ltEs9(False, False) -> True 29.16/12.44 new_primMulNat0(Zero, Zero) -> Zero 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), app(ty_Ratio, hg)) -> new_ltEs7(xuu50000, xuu51000, hg) 29.16/12.44 new_esEs27(xuu50001, xuu51001, ty_Ordering) -> new_esEs8(xuu50001, xuu51001) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, ty_@0) -> new_esEs12(xuu3110002, xuu6002) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, app(ty_Ratio, bfc)) -> new_ltEs7(xuu5000, xuu5100, bfc) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, app(ty_[], bee)) -> new_ltEs8(xuu5000, xuu5100, bee) 29.16/12.44 new_compare111(xuu50000, xuu51000, False) -> GT 29.16/12.44 new_ltEs20(xuu50001, xuu51001, ty_Bool) -> new_ltEs9(xuu50001, xuu51001) 29.16/12.44 new_lt19(xuu50001, xuu51001, ty_Int) -> new_lt17(xuu50001, xuu51001) 29.16/12.44 new_esEs28(xuu50000, xuu51000, app(ty_Maybe, dhh)) -> new_esEs4(xuu50000, xuu51000, dhh) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), app(ty_Maybe, bbb), bah) -> new_ltEs10(xuu50000, xuu51000, bbb) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, app(app(ty_@2, dee), def)) -> new_ltEs16(xuu50001, xuu51001, dee, def) 29.16/12.44 new_compare28(xuu50000, xuu51000, True, bfg, bfh, bga) -> EQ 29.16/12.44 new_esEs4(Nothing, Nothing, cdh) -> True 29.16/12.44 new_esEs20(xuu3110001, xuu6001, app(app(ty_Either, cbh), cca)) -> new_esEs5(xuu3110001, xuu6001, cbh, cca) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, ty_Float) -> new_esEs9(xuu3110001, xuu6001) 29.16/12.44 new_esEs27(xuu50001, xuu51001, ty_Integer) -> new_esEs11(xuu50001, xuu51001) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(app(ty_Either, cad), cae)) -> new_esEs5(xuu3110000, xuu6000, cad, cae) 29.16/12.44 new_esEs4(Nothing, Just(xuu6000), cdh) -> False 29.16/12.44 new_esEs4(Just(xuu3110000), Nothing, cdh) -> False 29.16/12.44 new_lt20(xuu50000, xuu51000, ty_@0) -> new_lt18(xuu50000, xuu51000) 29.16/12.44 new_esEs27(xuu50001, xuu51001, app(ty_[], dge)) -> new_esEs19(xuu50001, xuu51001, dge) 29.16/12.44 new_ltEs5(EQ, LT) -> False 29.16/12.44 new_compare14(Char(xuu50000), Char(xuu51000)) -> new_primCmpNat0(xuu50000, xuu51000) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, app(app(ty_Either, beg), beh)) -> new_ltEs12(xuu5000, xuu5100, beg, beh) 29.16/12.44 new_lt19(xuu50001, xuu51001, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_lt9(xuu50001, xuu51001, dhd, dhe, dhf) 29.16/12.44 new_lt19(xuu50001, xuu51001, ty_Bool) -> new_lt8(xuu50001, xuu51001) 29.16/12.44 new_esEs28(xuu50000, xuu51000, app(app(ty_@2, eac), ead)) -> new_esEs6(xuu50000, xuu51000, eac, ead) 29.16/12.44 new_esEs17(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Float) -> new_ltEs14(xuu50000, xuu51000) 29.16/12.44 new_esEs32(xuu39, xuu34, ty_Ordering) -> new_esEs8(xuu39, xuu34) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), app(app(app(ty_@3, bbh), bca), bcb), bah) -> new_ltEs17(xuu50000, xuu51000, bbh, bca, bcb) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Integer) -> new_ltEs11(xuu50000, xuu51000) 29.16/12.44 new_ltEs9(True, False) -> False 29.16/12.44 new_ltEs19(xuu5000, xuu5100, app(app(ty_@2, bfa), bfb)) -> new_ltEs16(xuu5000, xuu5100, bfa, bfb) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, app(ty_[], dea)) -> new_ltEs8(xuu50001, xuu51001, dea) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_@0) -> new_ltEs4(xuu50000, xuu51000) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 29.16/12.44 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 29.16/12.44 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 29.16/12.44 new_esEs11(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 29.16/12.44 new_esEs16(xuu3110001, xuu6001, ty_Integer) -> new_esEs11(xuu3110001, xuu6001) 29.16/12.44 new_compare([], [], ca) -> EQ 29.16/12.44 new_ltEs20(xuu50001, xuu51001, app(app(ty_Either, dec), ded)) -> new_ltEs12(xuu50001, xuu51001, dec, ded) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), app(app(ty_Either, hc), hd)) -> new_ltEs12(xuu50000, xuu51000, hc, hd) 29.16/12.44 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 29.16/12.44 new_esEs13(False, True) -> False 29.16/12.44 new_esEs13(True, False) -> False 29.16/12.44 new_esEs16(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), app(app(ty_@2, he), hf)) -> new_ltEs16(xuu50000, xuu51000, he, hf) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.44 new_compare5(xuu50000, xuu51000, ty_@0) -> new_compare10(xuu50000, xuu51000) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), app(ty_[], ha)) -> new_ltEs8(xuu50000, xuu51000, ha) 29.16/12.44 new_compare24(xuu50000, xuu51000, True) -> EQ 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(ty_Maybe, bce)) -> new_ltEs10(xuu50000, xuu51000, bce) 29.16/12.44 new_compare114(xuu50000, xuu51000, True, bfg, bfh, bga) -> LT 29.16/12.44 new_esEs22(xuu3110000, xuu6000, app(ty_[], chg)) -> new_esEs19(xuu3110000, xuu6000, chg) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, app(app(ty_Either, ddc), ddd)) -> new_esEs5(xuu3110000, xuu6000, ddc, ddd) 29.16/12.44 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 29.16/12.44 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 29.16/12.44 new_esEs26(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, app(ty_Ratio, deg)) -> new_ltEs7(xuu50001, xuu51001, deg) 29.16/12.44 new_esEs31(xuu311000, xuu600, app(ty_Ratio, fa)) -> new_esEs15(xuu311000, xuu600, fa) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, app(ty_Ratio, ddg)) -> new_esEs15(xuu3110000, xuu6000, ddg) 29.16/12.44 new_lt16(xuu50000, xuu51000, app(ty_Ratio, bgb)) -> new_lt10(xuu50000, xuu51000, bgb) 29.16/12.44 new_lt19(xuu50001, xuu51001, ty_@0) -> new_lt18(xuu50001, xuu51001) 29.16/12.44 new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat0(Succ(xuu5100), Zero) 29.16/12.44 new_esEs31(xuu311000, xuu600, app(app(ty_Either, ee), ef)) -> new_esEs5(xuu311000, xuu600, ee, ef) 29.16/12.44 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.44 new_esEs29(xuu22, xuu17, app(ty_Maybe, fc)) -> new_esEs4(xuu22, xuu17, fc) 29.16/12.44 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 29.16/12.44 new_ltEs6(xuu5000, xuu5100) -> new_fsEs(new_compare6(xuu5000, xuu5100)) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, bhe), bge) -> new_esEs15(xuu3110000, xuu6000, bhe) 29.16/12.44 new_esEs27(xuu50001, xuu51001, ty_Char) -> new_esEs18(xuu50001, xuu51001) 29.16/12.44 new_esEs26(xuu50000, xuu51000, app(app(ty_Either, de), df)) -> new_esEs5(xuu50000, xuu51000, de, df) 29.16/12.44 new_lt11(xuu50000, xuu51000) -> new_esEs8(new_compare13(xuu50000, xuu51000), LT) 29.16/12.44 new_lt16(xuu50000, xuu51000, app(ty_[], dg)) -> new_lt4(xuu50000, xuu51000, dg) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, app(ty_[], dbd)) -> new_esEs19(xuu3110002, xuu6002, dbd) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, app(ty_Maybe, bef)) -> new_ltEs10(xuu5000, xuu5100, bef) 29.16/12.44 new_compare25(Right(xuu5000), Right(xuu5100), False, bdf, bdg) -> new_compare110(xuu5000, xuu5100, new_ltEs19(xuu5000, xuu5100, bdg), bdf, bdg) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Bool) -> new_ltEs9(xuu50000, xuu51000) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) 29.16/12.44 new_compare112(xuu183, xuu184, False, bae, baf) -> GT 29.16/12.44 new_ltEs5(EQ, GT) -> True 29.16/12.44 new_esEs29(xuu22, xuu17, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs7(xuu22, xuu17, fd, ff, fg) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.44 new_not(False) -> True 29.16/12.44 new_esEs31(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.44 new_esEs31(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 29.16/12.44 new_primCompAux0(xuu50000, xuu51000, xuu210, ca) -> new_primCompAux00(xuu210, new_compare5(xuu50000, xuu51000, ca)) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs7(xuu3110001, xuu6001, cbe, cbf, cbg) 29.16/12.44 new_esEs30(xuu311000, xuu600, app(app(ty_@2, cbb), cbc)) -> new_esEs6(xuu311000, xuu600, cbb, cbc) 29.16/12.44 new_compare25(Right(xuu5000), Left(xuu5100), False, bdf, bdg) -> GT 29.16/12.44 new_ltEs5(GT, GT) -> True 29.16/12.44 new_ltEs17(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), beb, bec, bed) -> new_pePe(new_lt20(xuu50000, xuu51000, beb), new_asAs(new_esEs28(xuu50000, xuu51000, beb), new_pePe(new_lt19(xuu50001, xuu51001, bec), new_asAs(new_esEs27(xuu50001, xuu51001, bec), new_ltEs21(xuu50002, xuu51002, bed))))) 29.16/12.44 new_esEs8(LT, GT) -> False 29.16/12.44 new_esEs8(GT, LT) -> False 29.16/12.44 new_ltEs15(xuu5000, xuu5100) -> new_fsEs(new_compare14(xuu5000, xuu5100)) 29.16/12.44 new_lt20(xuu50000, xuu51000, app(app(ty_@2, eac), ead)) -> new_lt5(xuu50000, xuu51000, eac, ead) 29.16/12.44 new_compare5(xuu50000, xuu51000, ty_Integer) -> new_compare8(xuu50000, xuu51000) 29.16/12.44 new_esEs27(xuu50001, xuu51001, app(ty_Ratio, dhc)) -> new_esEs15(xuu50001, xuu51001, dhc) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.44 new_esEs5(Left(xuu3110000), Right(xuu6000), bhg, bge) -> False 29.16/12.44 new_esEs5(Right(xuu3110000), Left(xuu6000), bhg, bge) -> False 29.16/12.44 new_lt16(xuu50000, xuu51000, ty_Char) -> new_lt14(xuu50000, xuu51000) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, ty_@0) -> new_ltEs4(xuu50002, xuu51002) 29.16/12.44 new_esEs30(xuu311000, xuu600, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs7(xuu311000, xuu600, chh, daa, dab) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, app(app(ty_@2, ccb), ccc)) -> new_esEs6(xuu3110001, xuu6001, ccb, ccc) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, ty_Ordering) -> new_ltEs5(xuu50002, xuu51002) 29.16/12.44 new_esEs29(xuu22, xuu17, app(ty_Ratio, gd)) -> new_esEs15(xuu22, xuu17, gd) 29.16/12.44 new_esEs32(xuu39, xuu34, ty_@0) -> new_esEs12(xuu39, xuu34) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.44 new_ltEs10(Just(xuu50000), Nothing, gh) -> False 29.16/12.44 new_ltEs10(Nothing, Nothing, gh) -> True 29.16/12.44 new_ltEs18(xuu5000, xuu5100, ty_Int) -> new_ltEs6(xuu5000, xuu5100) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Int, bge) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.44 new_ltEs13(xuu5000, xuu5100) -> new_fsEs(new_compare12(xuu5000, xuu5100)) 29.16/12.44 new_compare113(xuu50000, xuu51000, False, bag) -> GT 29.16/12.44 new_esEs27(xuu50001, xuu51001, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_esEs7(xuu50001, xuu51001, dhd, dhe, dhf) 29.16/12.44 new_esEs30(xuu311000, xuu600, app(app(ty_Either, bhg), bge)) -> new_esEs5(xuu311000, xuu600, bhg, bge) 29.16/12.44 new_primPlusNat0(Succ(xuu1430), xuu600000) -> Succ(Succ(new_primPlusNat1(xuu1430, xuu600000))) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, app(app(ty_@2, bdh), bea)) -> new_ltEs16(xuu5000, xuu5100, bdh, bea) 29.16/12.44 new_esEs29(xuu22, xuu17, app(app(ty_@2, gb), gc)) -> new_esEs6(xuu22, xuu17, gb, gc) 29.16/12.44 new_compare13(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Bool) -> new_ltEs9(xuu50000, xuu51000) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 29.16/12.44 new_esEs10(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), app(ty_[], bba), bah) -> new_ltEs8(xuu50000, xuu51000, bba) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, app(ty_[], dfc)) -> new_ltEs8(xuu50002, xuu51002, dfc) 29.16/12.44 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 29.16/12.44 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 29.16/12.44 new_primPlusNat1(Zero, Zero) -> Zero 29.16/12.44 new_compare5(xuu50000, xuu51000, app(app(app(ty_@3, db), dc), dd)) -> new_compare17(xuu50000, xuu51000, db, dc, dd) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), app(app(ty_@2, bbe), bbf), bah) -> new_ltEs16(xuu50000, xuu51000, bbe, bbf) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, ty_Ordering) -> new_ltEs5(xuu5000, xuu5100) 29.16/12.44 new_compare5(xuu50000, xuu51000, ty_Bool) -> new_compare18(xuu50000, xuu51000) 29.16/12.44 new_ltEs18(xuu5000, xuu5100, ty_Float) -> new_ltEs14(xuu5000, xuu5100) 29.16/12.44 new_compare5(xuu50000, xuu51000, ty_Double) -> new_compare12(xuu50000, xuu51000) 29.16/12.44 new_compare15(xuu50000, xuu51000, bac, bad) -> new_compare29(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, bac, bad), bac, bad) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, app(ty_Maybe, dcg)) -> new_esEs4(xuu3110000, xuu6000, dcg) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.44 new_esEs32(xuu39, xuu34, app(app(ty_@2, cga), cgb)) -> new_esEs6(xuu39, xuu34, cga, cgb) 29.16/12.44 new_lt13(xuu50000, xuu51000) -> new_esEs8(new_compare7(xuu50000, xuu51000), LT) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.44 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 29.16/12.44 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, app(ty_Maybe, dfd)) -> new_ltEs10(xuu50002, xuu51002, dfd) 29.16/12.44 new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat0(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) 29.16/12.44 new_ltEs21(xuu50002, xuu51002, ty_Integer) -> new_ltEs11(xuu50002, xuu51002) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs17(xuu50000, xuu51000, hh, baa, bab) 29.16/12.44 new_esEs12(@0, @0) -> True 29.16/12.44 new_compare29(xuu50000, xuu51000, True, bac, bad) -> EQ 29.16/12.44 new_primCmpNat0(Succ(xuu5000), Succ(xuu5100)) -> new_primCmpNat0(xuu5000, xuu5100) 29.16/12.44 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Int, bah) -> new_ltEs6(xuu50000, xuu51000) 29.16/12.44 new_esEs27(xuu50001, xuu51001, app(ty_Maybe, dgf)) -> new_esEs4(xuu50001, xuu51001, dgf) 29.16/12.44 new_esEs6(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cbb, cbc) -> new_asAs(new_esEs21(xuu3110000, xuu6000, cbb), new_esEs20(xuu3110001, xuu6001, cbc)) 29.16/12.44 new_esEs32(xuu39, xuu34, ty_Integer) -> new_esEs11(xuu39, xuu34) 29.16/12.44 new_ltEs20(xuu50001, xuu51001, app(ty_Maybe, deb)) -> new_ltEs10(xuu50001, xuu51001, deb) 29.16/12.44 new_esEs26(xuu50000, xuu51000, ty_Int) -> new_esEs10(xuu50000, xuu51000) 29.16/12.44 new_esEs21(xuu3110000, xuu6000, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.44 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.44 new_esEs28(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Char, bge) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.44 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.44 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Double) -> new_ltEs13(xuu50000, xuu51000) 29.16/12.44 new_compare114(xuu50000, xuu51000, False, bfg, bfh, bga) -> GT 29.16/12.44 new_esEs24(xuu3110001, xuu6001, ty_Char) -> new_esEs18(xuu3110001, xuu6001) 29.16/12.44 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 29.16/12.44 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 29.16/12.44 new_lt14(xuu50000, xuu51000) -> new_esEs8(new_compare14(xuu50000, xuu51000), LT) 29.16/12.44 new_lt19(xuu50001, xuu51001, ty_Float) -> new_lt11(xuu50001, xuu51001) 29.16/12.44 new_compare12(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.44 new_compare110(xuu190, xuu191, False, gf, gg) -> GT 29.16/12.44 new_compare5(xuu50000, xuu51000, app(ty_[], cb)) -> new_compare(xuu50000, xuu51000, cb) 29.16/12.44 new_esEs26(xuu50000, xuu51000, app(ty_Maybe, bag)) -> new_esEs4(xuu50000, xuu51000, bag) 29.16/12.44 new_esEs32(xuu39, xuu34, ty_Bool) -> new_esEs13(xuu39, xuu34) 29.16/12.44 new_primEqNat0(Zero, Zero) -> True 29.16/12.44 new_esEs28(xuu50000, xuu51000, app(app(ty_Either, eaa), eab)) -> new_esEs5(xuu50000, xuu51000, eaa, eab) 29.16/12.44 new_esEs31(xuu311000, xuu600, ty_Integer) -> new_esEs11(xuu311000, xuu600) 29.16/12.44 new_lt19(xuu50001, xuu51001, ty_Double) -> new_lt15(xuu50001, xuu51001) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 29.16/12.44 new_esEs24(xuu3110001, xuu6001, ty_Float) -> new_esEs9(xuu3110001, xuu6001) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, app(ty_[], ddh)) -> new_esEs19(xuu3110000, xuu6000, ddh) 29.16/12.44 new_esEs29(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 29.16/12.44 new_esEs23(xuu3110002, xuu6002, ty_Float) -> new_esEs9(xuu3110002, xuu6002) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Float, bge) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.44 new_ltEs19(xuu5000, xuu5100, ty_Ordering) -> new_ltEs5(xuu5000, xuu5100) 29.16/12.44 new_esEs25(xuu3110000, xuu6000, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.44 new_esEs31(xuu311000, xuu600, app(app(ty_@2, eg), eh)) -> new_esEs6(xuu311000, xuu600, eg, eh) 29.16/12.44 new_asAs(False, xuu178) -> False 29.16/12.44 new_lt16(xuu50000, xuu51000, app(app(ty_Either, de), df)) -> new_lt12(xuu50000, xuu51000, de, df) 29.16/12.44 new_esEs20(xuu3110001, xuu6001, ty_Integer) -> new_esEs11(xuu3110001, xuu6001) 29.16/12.44 new_lt19(xuu50001, xuu51001, app(ty_Ratio, dhc)) -> new_lt10(xuu50001, xuu51001, dhc) 29.16/12.44 new_esEs28(xuu50000, xuu51000, app(ty_Ratio, eae)) -> new_esEs15(xuu50000, xuu51000, eae) 29.16/12.44 new_ltEs5(GT, EQ) -> False 29.16/12.44 new_ltEs20(xuu50001, xuu51001, ty_Ordering) -> new_ltEs5(xuu50001, xuu51001) 29.16/12.44 new_lt18(xuu50000, xuu51000) -> new_esEs8(new_compare10(xuu50000, xuu51000), LT) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Double) -> new_ltEs13(xuu50000, xuu51000) 29.16/12.44 new_esEs8(EQ, GT) -> False 29.16/12.44 new_esEs8(GT, EQ) -> False 29.16/12.44 new_compare5(xuu50000, xuu51000, ty_Ordering) -> new_compare7(xuu50000, xuu51000) 29.16/12.44 new_lt20(xuu50000, xuu51000, ty_Double) -> new_lt15(xuu50000, xuu51000) 29.16/12.44 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Char) -> new_ltEs15(xuu50000, xuu51000) 29.16/12.44 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, bgf), bgg), bgh), bge) -> new_esEs7(xuu3110000, xuu6000, bgf, bgg, bgh) 29.16/12.44 new_compare29(xuu50000, xuu51000, False, bac, bad) -> new_compare115(xuu50000, xuu51000, new_ltEs16(xuu50000, xuu51000, bac, bad), bac, bad) 29.16/12.44 29.16/12.44 The set Q consists of the following terms: 29.16/12.44 29.16/12.44 new_ltEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.16/12.44 new_esEs8(EQ, EQ) 29.16/12.44 new_esEs30(x0, x1, ty_Double) 29.16/12.44 new_esEs26(x0, x1, ty_Int) 29.16/12.44 new_ltEs21(x0, x1, ty_Integer) 29.16/12.44 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_ltEs20(x0, x1, ty_Bool) 29.16/12.44 new_esEs24(x0, x1, ty_Bool) 29.16/12.44 new_esEs4(Just(x0), Just(x1), ty_Ordering) 29.16/12.44 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 29.16/12.44 new_esEs18(Char(x0), Char(x1)) 29.16/12.44 new_compare([], :(x0, x1), x2) 29.16/12.44 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 29.16/12.44 new_esEs4(Just(x0), Just(x1), ty_Double) 29.16/12.44 new_ltEs20(x0, x1, ty_@0) 29.16/12.44 new_lt16(x0, x1, ty_Integer) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 29.16/12.44 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.16/12.44 new_esEs29(x0, x1, app(ty_[], x2)) 29.16/12.44 new_esEs28(x0, x1, ty_Ordering) 29.16/12.44 new_lt19(x0, x1, ty_Integer) 29.16/12.44 new_lt20(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_pePe(False, x0) 29.16/12.44 new_esEs29(x0, x1, ty_Float) 29.16/12.44 new_primPlusNat1(Zero, Zero) 29.16/12.44 new_esEs31(x0, x1, ty_Float) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), ty_Int) 29.16/12.44 new_compare25(Left(x0), Left(x1), False, x2, x3) 29.16/12.44 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 29.16/12.44 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 29.16/12.44 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), ty_Char) 29.16/12.44 new_ltEs19(x0, x1, ty_Bool) 29.16/12.44 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.16/12.44 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_esEs28(x0, x1, ty_Int) 29.16/12.44 new_esEs20(x0, x1, ty_Integer) 29.16/12.44 new_lt20(x0, x1, ty_Float) 29.16/12.44 new_esEs4(Nothing, Nothing, x0) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.16/12.44 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_esEs26(x0, x1, ty_Char) 29.16/12.44 new_esEs4(Just(x0), Nothing, x1) 29.16/12.44 new_esEs27(x0, x1, ty_Char) 29.16/12.44 new_esEs4(Just(x0), Just(x1), ty_Int) 29.16/12.44 new_esEs25(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_ltEs19(x0, x1, ty_Integer) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 29.16/12.44 new_esEs25(x0, x1, ty_@0) 29.16/12.44 new_esEs28(x0, x1, ty_Char) 29.16/12.44 new_ltEs21(x0, x1, ty_Bool) 29.16/12.44 new_esEs21(x0, x1, app(ty_[], x2)) 29.16/12.44 new_lt16(x0, x1, ty_Bool) 29.16/12.44 new_primEqInt(Pos(Zero), Pos(Zero)) 29.16/12.44 new_esEs20(x0, x1, ty_Bool) 29.16/12.44 new_esEs27(x0, x1, ty_Int) 29.16/12.44 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 29.16/12.44 new_compare27(x0, x1, True, x2) 29.16/12.44 new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) 29.16/12.44 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_esEs28(x0, x1, ty_Double) 29.16/12.44 new_esEs30(x0, x1, ty_Int) 29.16/12.44 new_esEs16(x0, x1, ty_Int) 29.16/12.44 new_compare114(x0, x1, False, x2, x3, x4) 29.16/12.44 new_esEs30(x0, x1, ty_Ordering) 29.16/12.44 new_esEs23(x0, x1, ty_Integer) 29.16/12.44 new_primCmpNat0(Succ(x0), Zero) 29.16/12.44 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) 29.16/12.44 new_esEs27(x0, x1, ty_@0) 29.16/12.44 new_esEs27(x0, x1, app(ty_[], x2)) 29.16/12.44 new_primEqNat0(Zero, Succ(x0)) 29.16/12.44 new_asAs(True, x0) 29.16/12.44 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 29.16/12.44 new_primEqInt(Neg(Zero), Neg(Zero)) 29.16/12.44 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_esEs21(x0, x1, ty_@0) 29.16/12.44 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 29.16/12.44 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 29.16/12.44 new_esEs25(x0, x1, app(ty_[], x2)) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 29.16/12.44 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_sr0(Integer(x0), Integer(x1)) 29.16/12.44 new_esEs26(x0, x1, ty_Ordering) 29.16/12.44 new_ltEs9(True, True) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 29.16/12.44 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.16/12.44 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 29.16/12.44 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 29.16/12.44 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 29.16/12.44 new_primCmpNat0(Succ(x0), Succ(x1)) 29.16/12.44 new_ltEs5(LT, GT) 29.16/12.44 new_ltEs5(GT, LT) 29.16/12.44 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.16/12.44 new_esEs23(x0, x1, ty_Float) 29.16/12.44 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_esEs27(x0, x1, ty_Ordering) 29.16/12.44 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_ltEs20(x0, x1, ty_Char) 29.16/12.44 new_esEs30(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_esEs5(Left(x0), Right(x1), x2, x3) 29.16/12.44 new_esEs5(Right(x0), Left(x1), x2, x3) 29.16/12.44 new_asAs(False, x0) 29.16/12.44 new_esEs20(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_primPlusNat1(Succ(x0), Zero) 29.16/12.44 new_compare18(x0, x1) 29.16/12.44 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_esEs24(x0, x1, ty_Char) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.16/12.44 new_esEs25(x0, x1, ty_Int) 29.16/12.44 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 29.16/12.44 new_lt13(x0, x1) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 29.16/12.44 new_lt17(x0, x1) 29.16/12.44 new_lt15(x0, x1) 29.16/12.44 new_esEs26(x0, x1, ty_Double) 29.16/12.44 new_esEs26(x0, x1, ty_Bool) 29.16/12.44 new_esEs25(x0, x1, ty_Char) 29.16/12.44 new_ltEs20(x0, x1, ty_Int) 29.16/12.44 new_primEqInt(Pos(Zero), Neg(Zero)) 29.16/12.44 new_primEqInt(Neg(Zero), Pos(Zero)) 29.16/12.44 new_lt19(x0, x1, app(ty_[], x2)) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), ty_Ordering) 29.16/12.44 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 29.16/12.44 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 29.16/12.44 new_ltEs10(Nothing, Nothing, x0) 29.16/12.44 new_ltEs18(x0, x1, ty_Double) 29.16/12.44 new_compare112(x0, x1, True, x2, x3) 29.16/12.44 new_esEs25(x0, x1, ty_Double) 29.16/12.44 new_esEs17(x0, x1, ty_Int) 29.16/12.44 new_compare9(x0, x1, x2) 29.16/12.44 new_compare5(x0, x1, ty_Float) 29.16/12.44 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_compare29(x0, x1, True, x2, x3) 29.16/12.44 new_esEs25(x0, x1, ty_Bool) 29.16/12.44 new_compare24(x0, x1, False) 29.16/12.44 new_esEs24(x0, x1, ty_@0) 29.16/12.44 new_esEs28(x0, x1, ty_@0) 29.16/12.44 new_ltEs4(x0, x1) 29.16/12.44 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_esEs10(x0, x1) 29.16/12.44 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 29.16/12.44 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 29.16/12.44 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_esEs26(x0, x1, app(ty_[], x2)) 29.16/12.44 new_esEs24(x0, x1, ty_Float) 29.16/12.44 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 29.16/12.44 new_esEs32(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_primEqNat0(Succ(x0), Succ(x1)) 29.16/12.44 new_esEs23(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_compare27(x0, x1, False, x2) 29.16/12.44 new_primMulInt(Neg(x0), Neg(x1)) 29.16/12.44 new_esEs22(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_ltEs20(x0, x1, ty_Float) 29.16/12.44 new_esEs24(x0, x1, ty_Ordering) 29.16/12.44 new_compare19(x0, x1, True) 29.16/12.44 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_esEs4(Just(x0), Just(x1), ty_Bool) 29.16/12.44 new_lt19(x0, x1, ty_Char) 29.16/12.44 new_esEs31(x0, x1, ty_@0) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), ty_Integer) 29.16/12.44 new_esEs22(x0, x1, app(ty_[], x2)) 29.16/12.44 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_lt20(x0, x1, ty_Bool) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 29.16/12.44 new_compare25(Left(x0), Right(x1), False, x2, x3) 29.16/12.44 new_compare25(Right(x0), Left(x1), False, x2, x3) 29.16/12.44 new_ltEs21(x0, x1, app(ty_[], x2)) 29.16/12.44 new_ltEs20(x0, x1, ty_Ordering) 29.16/12.44 new_compare111(x0, x1, False) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 29.16/12.44 new_esEs16(x0, x1, ty_Integer) 29.16/12.44 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.16/12.44 new_esEs14(Double(x0, x1), Double(x2, x3)) 29.16/12.44 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.16/12.44 new_esEs26(x0, x1, ty_Integer) 29.16/12.44 new_ltEs12(Left(x0), Right(x1), x2, x3) 29.16/12.44 new_lt16(x0, x1, ty_Int) 29.16/12.44 new_esEs20(x0, x1, app(ty_[], x2)) 29.16/12.44 new_ltEs12(Right(x0), Left(x1), x2, x3) 29.16/12.44 new_esEs28(x0, x1, app(ty_[], x2)) 29.16/12.44 new_ltEs7(x0, x1, x2) 29.16/12.44 new_esEs21(x0, x1, ty_Float) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.16/12.44 new_compare17(x0, x1, x2, x3, x4) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.16/12.44 new_lt7(x0, x1, x2) 29.16/12.44 new_esEs29(x0, x1, ty_@0) 29.16/12.44 new_esEs24(x0, x1, ty_Int) 29.16/12.44 new_compare114(x0, x1, True, x2, x3, x4) 29.16/12.44 new_ltEs21(x0, x1, ty_Int) 29.16/12.44 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_compare15(x0, x1, x2, x3) 29.16/12.44 new_esEs31(x0, x1, ty_Bool) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 29.16/12.44 new_compare26(x0, x1, False) 29.16/12.44 new_esEs29(x0, x1, app(ty_Ratio, x2)) 29.16/12.44 new_esEs27(x0, x1, ty_Integer) 29.16/12.44 new_compare110(x0, x1, True, x2, x3) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.16/12.44 new_compare11(x0, x1, x2, x3) 29.16/12.44 new_compare5(x0, x1, ty_Double) 29.16/12.44 new_esEs32(x0, x1, ty_Integer) 29.16/12.44 new_ltEs5(EQ, GT) 29.16/12.44 new_ltEs5(GT, EQ) 29.16/12.44 new_compare112(x0, x1, False, x2, x3) 29.16/12.44 new_lt16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.44 new_primMulNat0(Zero, Succ(x0)) 29.16/12.44 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 29.16/12.44 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.16/12.44 new_pePe(True, x0) 29.16/12.44 new_primMulNat0(Succ(x0), Succ(x1)) 29.16/12.44 new_esEs30(x0, x1, ty_Integer) 29.16/12.44 new_esEs26(x0, x1, ty_@0) 29.16/12.44 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.44 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_ltEs21(x0, x1, ty_Char) 29.16/12.44 new_ltEs18(x0, x1, ty_Ordering) 29.16/12.44 new_esEs21(x0, x1, ty_Int) 29.16/12.44 new_esEs28(x0, x1, app(ty_Maybe, x2)) 29.16/12.44 new_primCompAux00(x0, LT) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 29.16/12.44 new_ltEs19(x0, x1, app(ty_[], x2)) 29.16/12.44 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 29.16/12.44 new_esEs25(x0, x1, ty_Float) 29.16/12.44 new_lt16(x0, x1, ty_Char) 29.16/12.44 new_esEs8(GT, GT) 29.16/12.44 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 29.16/12.44 new_esEs21(x0, x1, ty_Ordering) 29.16/12.44 new_esEs8(LT, EQ) 29.16/12.44 new_esEs8(EQ, LT) 29.16/12.44 new_ltEs10(Just(x0), Just(x1), ty_Bool) 29.16/12.44 new_primCmpInt(Neg(Zero), Neg(Zero)) 29.16/12.44 new_esEs22(x0, x1, ty_Integer) 29.16/12.44 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 29.16/12.44 new_ltEs9(False, True) 29.16/12.44 new_ltEs9(True, False) 29.16/12.44 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 29.16/12.44 new_esEs21(x0, x1, ty_Integer) 29.16/12.44 new_esEs13(False, True) 29.16/12.44 new_esEs13(True, False) 29.16/12.44 new_esEs23(x0, x1, ty_Double) 29.16/12.44 new_lt16(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.44 new_esEs23(x0, x1, ty_@0) 29.16/12.45 new_lt11(x0, x1) 29.16/12.45 new_primCompAux00(x0, EQ) 29.16/12.45 new_esEs8(LT, LT) 29.16/12.45 new_lt19(x0, x1, ty_Bool) 29.16/12.45 new_primCmpInt(Pos(Zero), Neg(Zero)) 29.16/12.45 new_primCmpInt(Neg(Zero), Pos(Zero)) 29.16/12.45 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_esEs4(Just(x0), Just(x1), ty_Char) 29.16/12.45 new_primMulInt(Pos(x0), Neg(x1)) 29.16/12.45 new_primMulInt(Neg(x0), Pos(x1)) 29.16/12.45 new_ltEs10(Nothing, Just(x0), x1) 29.16/12.45 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) 29.16/12.45 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs30(x0, x1, app(ty_[], x2)) 29.16/12.45 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 29.16/12.45 new_esEs23(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 29.16/12.45 new_esEs32(x0, x1, ty_Ordering) 29.16/12.45 new_esEs31(x0, x1, ty_Integer) 29.16/12.45 new_esEs21(x0, x1, ty_Char) 29.16/12.45 new_lt19(x0, x1, ty_Float) 29.16/12.45 new_primMulInt(Pos(x0), Pos(x1)) 29.16/12.45 new_ltEs11(x0, x1) 29.16/12.45 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.16/12.45 new_compare7(x0, x1) 29.16/12.45 new_primPlusNat0(Zero, x0) 29.16/12.45 new_lt5(x0, x1, x2, x3) 29.16/12.45 new_esEs30(x0, x1, ty_Char) 29.16/12.45 new_lt20(x0, x1, ty_Integer) 29.16/12.45 new_lt16(x0, x1, ty_Float) 29.16/12.45 new_esEs22(x0, x1, ty_Ordering) 29.16/12.45 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 29.16/12.45 new_lt16(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs29(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_esEs31(x0, x1, ty_Ordering) 29.16/12.45 new_esEs20(x0, x1, ty_@0) 29.16/12.45 new_ltEs19(x0, x1, ty_@0) 29.16/12.45 new_esEs20(x0, x1, ty_Double) 29.16/12.45 new_esEs21(x0, x1, ty_Bool) 29.16/12.45 new_ltEs19(x0, x1, ty_Double) 29.16/12.45 new_compare113(x0, x1, False, x2) 29.16/12.45 new_esEs26(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_lt4(x0, x1, x2) 29.16/12.45 new_esEs30(x0, x1, ty_Bool) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), ty_Float) 29.16/12.45 new_lt19(x0, x1, ty_Int) 29.16/12.45 new_esEs27(x0, x1, ty_Bool) 29.16/12.45 new_ltEs21(x0, x1, ty_Float) 29.16/12.45 new_ltEs10(Just(x0), Nothing, x1) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 29.16/12.45 new_esEs24(x0, x1, ty_Integer) 29.16/12.45 new_ltEs20(x0, x1, ty_Integer) 29.16/12.45 new_lt20(x0, x1, ty_Ordering) 29.16/12.45 new_compare115(x0, x1, False, x2, x3) 29.16/12.45 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 29.16/12.45 new_esEs29(x0, x1, ty_Ordering) 29.16/12.45 new_esEs4(Just(x0), Just(x1), ty_Float) 29.16/12.45 new_esEs23(x0, x1, app(ty_[], x2)) 29.16/12.45 new_compare19(x0, x1, False) 29.16/12.45 new_compare111(x0, x1, True) 29.16/12.45 new_esEs31(x0, x1, ty_Double) 29.16/12.45 new_esEs30(x0, x1, ty_Float) 29.16/12.45 new_compare(:(x0, x1), :(x2, x3), x4) 29.16/12.45 new_compare28(x0, x1, False, x2, x3, x4) 29.16/12.45 new_esEs28(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_lt20(x0, x1, ty_Double) 29.16/12.45 new_primMulNat0(Zero, Zero) 29.16/12.45 new_esEs22(x0, x1, ty_@0) 29.16/12.45 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs21(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_lt18(x0, x1) 29.16/12.45 new_compare25(x0, x1, True, x2, x3) 29.16/12.45 new_compare24(x0, x1, True) 29.16/12.45 new_lt12(x0, x1, x2, x3) 29.16/12.45 new_lt16(x0, x1, app(ty_[], x2)) 29.16/12.45 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 29.16/12.45 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 29.16/12.45 new_ltEs18(x0, x1, ty_@0) 29.16/12.45 new_esEs32(x0, x1, ty_@0) 29.16/12.45 new_compare5(x0, x1, ty_Char) 29.16/12.45 new_esEs26(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs27(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_compare25(Right(x0), Right(x1), False, x2, x3) 29.16/12.45 new_compare5(x0, x1, ty_@0) 29.16/12.45 new_lt9(x0, x1, x2, x3, x4) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_esEs26(x0, x1, ty_Float) 29.16/12.45 new_esEs29(x0, x1, ty_Int) 29.16/12.45 new_lt16(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs11(Integer(x0), Integer(x1)) 29.16/12.45 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 29.16/12.45 new_esEs29(x0, x1, ty_Double) 29.16/12.45 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_esEs22(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_compare10(@0, @0) 29.16/12.45 new_compare12(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 29.16/12.45 new_ltEs18(x0, x1, ty_Integer) 29.16/12.45 new_lt19(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_esEs25(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs29(x0, x1, ty_Char) 29.16/12.45 new_not(True) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 29.16/12.45 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_esEs27(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 29.16/12.45 new_lt6(x0, x1) 29.16/12.45 new_esEs31(x0, x1, ty_Char) 29.16/12.45 new_esEs31(x0, x1, app(ty_[], x2)) 29.16/12.45 new_primCmpNat0(Zero, Succ(x0)) 29.16/12.45 new_compare5(x0, x1, ty_Int) 29.16/12.45 new_esEs27(x0, x1, ty_Float) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.16/12.45 new_esEs19(:(x0, x1), [], x2) 29.16/12.45 new_esEs8(EQ, GT) 29.16/12.45 new_esEs8(GT, EQ) 29.16/12.45 new_esEs22(x0, x1, ty_Int) 29.16/12.45 new_esEs32(x0, x1, ty_Bool) 29.16/12.45 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.16/12.45 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 29.16/12.45 new_esEs32(x0, x1, ty_Int) 29.16/12.45 new_compare5(x0, x1, app(ty_[], x2)) 29.16/12.45 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.16/12.45 new_esEs9(Float(x0, x1), Float(x2, x3)) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.16/12.45 new_primPlusNat0(Succ(x0), x1) 29.16/12.45 new_compare12(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 29.16/12.45 new_compare12(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 29.16/12.45 new_compare12(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 29.16/12.45 new_fsEs(x0) 29.16/12.45 new_esEs13(True, True) 29.16/12.45 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs4(Nothing, Just(x0), x1) 29.16/12.45 new_primPlusNat1(Zero, Succ(x0)) 29.16/12.45 new_ltEs18(x0, x1, ty_Char) 29.16/12.45 new_esEs22(x0, x1, ty_Bool) 29.16/12.45 new_ltEs21(x0, x1, ty_Ordering) 29.16/12.45 new_primEqNat0(Succ(x0), Zero) 29.16/12.45 new_esEs20(x0, x1, ty_Ordering) 29.16/12.45 new_esEs32(x0, x1, ty_Char) 29.16/12.45 new_esEs31(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_compare110(x0, x1, False, x2, x3) 29.16/12.45 new_compare26(x0, x1, True) 29.16/12.45 new_lt20(x0, x1, ty_Char) 29.16/12.45 new_lt19(x0, x1, ty_Ordering) 29.16/12.45 new_esEs22(x0, x1, ty_Char) 29.16/12.45 new_esEs31(x0, x1, ty_Int) 29.16/12.45 new_lt20(x0, x1, ty_@0) 29.16/12.45 new_esEs32(x0, x1, ty_Double) 29.16/12.45 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_ltEs18(x0, x1, app(ty_[], x2)) 29.16/12.45 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 29.16/12.45 new_lt20(x0, x1, ty_Int) 29.16/12.45 new_esEs28(x0, x1, ty_Float) 29.16/12.45 new_esEs4(Just(x0), Just(x1), ty_Integer) 29.16/12.45 new_ltEs5(LT, LT) 29.16/12.45 new_esEs22(x0, x1, ty_Double) 29.16/12.45 new_ltEs15(x0, x1) 29.16/12.45 new_primCmpInt(Pos(Zero), Pos(Zero)) 29.16/12.45 new_compare6(x0, x1) 29.16/12.45 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.16/12.45 new_ltEs18(x0, x1, ty_Bool) 29.16/12.45 new_esEs19([], :(x0, x1), x2) 29.16/12.45 new_compare115(x0, x1, True, x2, x3) 29.16/12.45 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 29.16/12.45 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 29.16/12.45 new_esEs30(x0, x1, ty_@0) 29.16/12.45 new_esEs23(x0, x1, ty_Char) 29.16/12.45 new_esEs20(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 29.16/12.45 new_compare(:(x0, x1), [], x2) 29.16/12.45 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_ltEs19(x0, x1, ty_Ordering) 29.16/12.45 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_esEs32(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_sr(x0, x1) 29.16/12.45 new_ltEs5(LT, EQ) 29.16/12.45 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_ltEs5(EQ, LT) 29.16/12.45 new_ltEs20(x0, x1, ty_Double) 29.16/12.45 new_esEs24(x0, x1, ty_Double) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.16/12.45 new_ltEs5(GT, GT) 29.16/12.45 new_primCompAux00(x0, GT) 29.16/12.45 new_esEs19(:(x0, x1), :(x2, x3), x4) 29.16/12.45 new_lt16(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_compare28(x0, x1, True, x2, x3, x4) 29.16/12.45 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs21(x0, x1, ty_Double) 29.16/12.45 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs12(@0, @0) 29.16/12.45 new_ltEs18(x0, x1, ty_Int) 29.16/12.45 new_esEs4(Just(x0), Just(x1), ty_@0) 29.16/12.45 new_esEs29(x0, x1, ty_Bool) 29.16/12.45 new_lt16(x0, x1, ty_Ordering) 29.16/12.45 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs24(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_esEs8(LT, GT) 29.16/12.45 new_esEs8(GT, LT) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 29.16/12.45 new_esEs24(x0, x1, app(ty_[], x2)) 29.16/12.45 new_ltEs19(x0, x1, ty_Float) 29.16/12.45 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 29.16/12.45 new_lt16(x0, x1, ty_Double) 29.16/12.45 new_compare8(Integer(x0), Integer(x1)) 29.16/12.45 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs23(x0, x1, ty_Int) 29.16/12.45 new_esEs22(x0, x1, ty_Float) 29.16/12.45 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 29.16/12.45 new_primCompAux0(x0, x1, x2, x3) 29.16/12.45 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_compare113(x0, x1, True, x2) 29.16/12.45 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs30(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_esEs25(x0, x1, ty_Integer) 29.16/12.45 new_ltEs20(x0, x1, app(ty_[], x2)) 29.16/12.45 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_ltEs21(x0, x1, ty_Double) 29.16/12.45 new_esEs32(x0, x1, ty_Float) 29.16/12.45 new_esEs23(x0, x1, ty_Ordering) 29.16/12.45 new_compare([], [], x0) 29.16/12.45 new_ltEs18(x0, x1, ty_Float) 29.16/12.45 new_esEs24(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs28(x0, x1, ty_Bool) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 29.16/12.45 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 29.16/12.45 new_ltEs8(x0, x1, x2) 29.16/12.45 new_ltEs6(x0, x1) 29.16/12.45 new_ltEs16(@2(x0, x1), @2(x2, x3), x4, x5) 29.16/12.45 new_lt20(x0, x1, app(ty_[], x2)) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 29.16/12.45 new_primEqNat0(Zero, Zero) 29.16/12.45 new_esEs13(False, False) 29.16/12.45 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_lt8(x0, x1) 29.16/12.45 new_lt19(x0, x1, ty_Double) 29.16/12.45 new_primPlusNat1(Succ(x0), Succ(x1)) 29.16/12.45 new_ltEs9(False, False) 29.16/12.45 new_lt19(x0, x1, ty_@0) 29.16/12.45 new_not(False) 29.16/12.45 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_ltEs13(x0, x1) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), ty_@0) 29.16/12.45 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs21(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs19([], [], x0) 29.16/12.45 new_compare14(Char(x0), Char(x1)) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), ty_Double) 29.16/12.45 new_ltEs14(x0, x1) 29.16/12.45 new_esEs27(x0, x1, ty_Double) 29.16/12.45 new_esEs31(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 29.16/12.45 new_esEs25(x0, x1, ty_Ordering) 29.16/12.45 new_compare5(x0, x1, ty_Ordering) 29.16/12.45 new_compare5(x0, x1, ty_Integer) 29.16/12.45 new_ltEs21(x0, x1, ty_@0) 29.16/12.45 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_compare5(x0, x1, ty_Bool) 29.16/12.45 new_lt16(x0, x1, ty_@0) 29.16/12.45 new_esEs17(x0, x1, ty_Integer) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 29.16/12.45 new_lt20(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_compare29(x0, x1, False, x2, x3) 29.16/12.45 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 29.16/12.45 new_esEs20(x0, x1, ty_Float) 29.16/12.45 new_esEs29(x0, x1, ty_Integer) 29.16/12.45 new_ltEs5(EQ, EQ) 29.16/12.45 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 29.16/12.45 new_compare5(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 29.16/12.45 new_esEs20(x0, x1, ty_Char) 29.16/12.45 new_compare5(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_ltEs19(x0, x1, ty_Char) 29.16/12.45 new_lt10(x0, x1, x2) 29.16/12.45 new_ltEs19(x0, x1, ty_Int) 29.16/12.45 new_esEs28(x0, x1, ty_Integer) 29.16/12.45 new_lt14(x0, x1) 29.16/12.45 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.16/12.45 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs32(x0, x1, app(ty_[], x2)) 29.16/12.45 new_primMulNat0(Succ(x0), Zero) 29.16/12.45 new_lt19(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.16/12.45 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.16/12.45 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 29.16/12.45 new_primCmpNat0(Zero, Zero) 29.16/12.45 new_esEs23(x0, x1, ty_Bool) 29.16/12.45 new_esEs20(x0, x1, ty_Int) 29.16/12.45 29.16/12.45 We have to consider all minimal (P,Q,R)-chains. 29.16/12.45 ---------------------------------------- 29.16/12.45 29.16/12.45 (33) QDPSizeChangeProof (EQUIVALENT) 29.16/12.45 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 29.16/12.45 29.16/12.45 From the DPs we obtained the following set of size-change graphs: 29.16/12.45 *new_addToFM_C11(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu64, Right(xuu311000), xuu31101, bc, bd, be) 29.16/12.45 The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 29.16/12.45 29.16/12.45 29.16/12.45 *new_addToFM_C(Branch(Left(xuu600), xuu61, xuu62, xuu63, xuu64), Right(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Right(xuu311000), Left(xuu600), False, bc, bd), LT), bc, bd, be) 29.16/12.45 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 29.16/12.45 29.16/12.45 29.16/12.45 *new_addToFM_C(Branch(Right(xuu600), xuu61, xuu62, xuu63, xuu64), Right(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C22(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Right(xuu311000), Right(xuu600), new_esEs31(xuu311000, xuu600, bd), bc, bd), LT), bc, bd, be) 29.16/12.45 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 29.16/12.45 29.16/12.45 29.16/12.45 *new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, bc, bd, be) -> new_addToFM_C11(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Right(xuu311000), Left(xuu600), False, bc, bd), GT), bc, bd, be) 29.16/12.45 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 29.16/12.45 29.16/12.45 29.16/12.45 *new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu63, Right(xuu311000), xuu31101, bc, bd, be) 29.16/12.45 The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 29.16/12.45 29.16/12.45 29.16/12.45 *new_addToFM_C22(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, False, bf, bg, bh) -> new_addToFM_C12(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, new_esEs8(new_compare25(Right(xuu39), Right(xuu34), new_esEs32(xuu39, xuu34, bg), bf, bg), GT), bf, bg, bh) 29.16/12.45 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 29.16/12.45 29.16/12.45 29.16/12.45 *new_addToFM_C22(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bf, bg, bh) -> new_addToFM_C(xuu37, Right(xuu39), xuu40, bf, bg, bh) 29.16/12.45 The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 29.16/12.45 29.16/12.45 29.16/12.45 *new_addToFM_C12(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bf, bg, bh) -> new_addToFM_C(xuu38, Right(xuu39), xuu40, bf, bg, bh) 29.16/12.45 The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 29.16/12.45 29.16/12.45 29.16/12.45 ---------------------------------------- 29.16/12.45 29.16/12.45 (34) 29.16/12.45 YES 29.16/12.45 29.16/12.45 ---------------------------------------- 29.16/12.45 29.16/12.45 (35) 29.16/12.45 Obligation: 29.16/12.45 Q DP problem: 29.16/12.45 The TRS P consists of the following rules: 29.16/12.45 29.16/12.45 new_addToFM_C(Branch(Left(xuu600), xuu61, xuu62, xuu63, xuu64), Left(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Left(xuu311000), Left(xuu600), new_esEs30(xuu311000, xuu600, bc), bc, bd), LT), bc, bd, be) 29.16/12.45 new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu20, Left(xuu22), xuu23, h, ba, bb) 29.16/12.45 new_addToFM_C(Branch(Right(xuu600), xuu61, xuu62, xuu63, xuu64), Left(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Left(xuu311000), Right(xuu600), False, bc, bd), LT), bc, bd, be) 29.16/12.45 new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, bc, bd, be) -> new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Left(xuu311000), Right(xuu600), False, bc, bd), GT), bc, bd, be) 29.16/12.45 new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu64, Left(xuu311000), xuu31101, bc, bd, be) 29.16/12.45 new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu63, Left(xuu311000), xuu31101, bc, bd, be) 29.16/12.45 new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, h, ba, bb) -> new_addToFM_C1(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare25(Left(xuu22), Left(xuu17), new_esEs29(xuu22, xuu17, h), h, ba), GT), h, ba, bb) 29.16/12.45 new_addToFM_C1(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu21, Left(xuu22), xuu23, h, ba, bb) 29.16/12.45 29.16/12.45 The TRS R consists of the following rules: 29.16/12.45 29.16/12.45 new_esEs26(xuu50000, xuu51000, ty_Float) -> new_esEs9(xuu50000, xuu51000) 29.16/12.45 new_esEs30(xuu311000, xuu600, app(ty_[], cge)) -> new_esEs19(xuu311000, xuu600, cge) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, ty_Integer) -> new_ltEs11(xuu5000, xuu5100) 29.16/12.45 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 29.16/12.45 new_primCmpInt(Neg(Succ(xuu5000)), Pos(xuu510)) -> LT 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Ordering) -> new_ltEs5(xuu50000, xuu51000) 29.16/12.45 new_pePe(True, xuu209) -> True 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Ordering, bge) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.45 new_lt20(xuu50000, xuu51000, app(ty_Ratio, eae)) -> new_lt10(xuu50000, xuu51000, eae) 29.16/12.45 new_esEs30(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, ceg), ceh)) -> new_esEs6(xuu3110000, xuu6000, ceg, ceh) 29.16/12.45 new_esEs21(xuu3110000, xuu6000, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs7(xuu3110000, xuu6000, ccg, cch, cda) 29.16/12.45 new_esEs30(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Bool, bge) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.45 new_compare12(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.45 new_compare(:(xuu50000, xuu50001), [], ca) -> GT 29.16/12.45 new_lt19(xuu50001, xuu51001, ty_Char) -> new_lt14(xuu50001, xuu51001) 29.16/12.45 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 29.16/12.45 new_esEs24(xuu3110001, xuu6001, app(ty_[], dcf)) -> new_esEs19(xuu3110001, xuu6001, dcf) 29.16/12.45 new_esEs27(xuu50001, xuu51001, app(app(ty_Either, dgg), dgh)) -> new_esEs5(xuu50001, xuu51001, dgg, dgh) 29.16/12.45 new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT 29.16/12.45 new_compare(:(xuu50000, xuu50001), :(xuu51000, xuu51001), ca) -> new_primCompAux0(xuu50000, xuu51000, new_compare(xuu50001, xuu51001, ca), ca) 29.16/12.45 new_compare11(xuu50000, xuu51000, de, df) -> new_compare25(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, de, df), de, df) 29.16/12.45 new_esEs21(xuu3110000, xuu6000, app(app(ty_@2, cdd), cde)) -> new_esEs6(xuu3110000, xuu6000, cdd, cde) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 29.16/12.45 new_esEs28(xuu50000, xuu51000, ty_Char) -> new_esEs18(xuu50000, xuu51000) 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(ty_Ratio, bdb)) -> new_ltEs7(xuu50000, xuu51000, bdb) 29.16/12.45 new_lt16(xuu50000, xuu51000, ty_Double) -> new_lt15(xuu50000, xuu51000) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Integer, bah) -> new_ltEs11(xuu50000, xuu51000) 29.16/12.45 new_primCmpInt(Neg(Succ(xuu5000)), Neg(xuu510)) -> new_primCmpNat0(xuu510, Succ(xuu5000)) 29.16/12.45 new_ltEs11(xuu5000, xuu5100) -> new_fsEs(new_compare8(xuu5000, xuu5100)) 29.16/12.45 new_lt7(xuu50000, xuu51000, bag) -> new_esEs8(new_compare9(xuu50000, xuu51000, bag), LT) 29.16/12.45 new_lt4(xuu50000, xuu51000, dg) -> new_esEs8(new_compare(xuu50000, xuu51000, dg), LT) 29.16/12.45 new_esEs29(xuu22, xuu17, ty_@0) -> new_esEs12(xuu22, xuu17) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Integer) -> new_ltEs11(xuu50000, xuu51000) 29.16/12.45 new_ltEs12(Left(xuu50000), Right(xuu51000), bcc, bah) -> True 29.16/12.45 new_compare115(xuu50000, xuu51000, True, bac, bad) -> LT 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs17(xuu50000, xuu51000, bdc, bdd, bde) 29.16/12.45 new_esEs20(xuu3110001, xuu6001, ty_@0) -> new_esEs12(xuu3110001, xuu6001) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, ty_Float) -> new_ltEs14(xuu50002, xuu51002) 29.16/12.45 new_esEs9(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 29.16/12.45 new_lt16(xuu50000, xuu51000, ty_Int) -> new_lt17(xuu50000, xuu51000) 29.16/12.45 new_lt19(xuu50001, xuu51001, app(ty_Maybe, dgf)) -> new_lt7(xuu50001, xuu51001, dgf) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.45 new_compare13(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.45 new_compare13(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, app(app(ty_Either, dag), dah)) -> new_esEs5(xuu3110002, xuu6002, dag, dah) 29.16/12.45 new_compare24(xuu50000, xuu51000, False) -> new_compare19(xuu50000, xuu51000, new_ltEs5(xuu50000, xuu51000)) 29.16/12.45 new_esEs30(xuu311000, xuu600, ty_Integer) -> new_esEs11(xuu311000, xuu600) 29.16/12.45 new_compare26(xuu50000, xuu51000, True) -> EQ 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Integer, bge) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.45 new_esEs8(GT, GT) -> True 29.16/12.45 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 29.16/12.45 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 29.16/12.45 new_esEs24(xuu3110001, xuu6001, ty_Integer) -> new_esEs11(xuu3110001, xuu6001) 29.16/12.45 new_compare5(xuu50000, xuu51000, app(app(ty_@2, cf), cg)) -> new_compare15(xuu50000, xuu51000, cf, cg) 29.16/12.45 new_fsEs(xuu193) -> new_not(new_esEs8(xuu193, GT)) 29.16/12.45 new_ltEs9(False, True) -> True 29.16/12.45 new_lt16(xuu50000, xuu51000, ty_Ordering) -> new_lt13(xuu50000, xuu51000) 29.16/12.45 new_compare18(xuu50000, xuu51000) -> new_compare26(xuu50000, xuu51000, new_esEs13(xuu50000, xuu51000)) 29.16/12.45 new_esEs31(xuu311000, xuu600, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs7(xuu311000, xuu600, eb, ec, ed) 29.16/12.45 new_ltEs20(xuu50001, xuu51001, ty_@0) -> new_ltEs4(xuu50001, xuu51001) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, app(ty_Ratio, dce)) -> new_esEs15(xuu3110001, xuu6001, dce) 29.16/12.45 new_lt20(xuu50000, xuu51000, app(ty_Maybe, dhh)) -> new_lt7(xuu50000, xuu51000, dhh) 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, bhc), bhd), bge) -> new_esEs6(xuu3110000, xuu6000, bhc, bhd) 29.16/12.45 new_esEs8(EQ, EQ) -> True 29.16/12.45 new_esEs29(xuu22, xuu17, app(ty_[], ge)) -> new_esEs19(xuu22, xuu17, ge) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Float, bah) -> new_ltEs14(xuu50000, xuu51000) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, cgf)) -> new_esEs4(xuu3110000, xuu6000, cgf) 29.16/12.45 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.45 new_lt19(xuu50001, xuu51001, app(ty_[], dge)) -> new_lt4(xuu50001, xuu51001, dge) 29.16/12.45 new_esEs29(xuu22, xuu17, ty_Integer) -> new_esEs11(xuu22, xuu17) 29.16/12.45 new_ltEs14(xuu5000, xuu5100) -> new_fsEs(new_compare13(xuu5000, xuu5100)) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), app(ty_Ratio, bbg), bah) -> new_ltEs7(xuu50000, xuu51000, bbg) 29.16/12.45 new_compare5(xuu50000, xuu51000, ty_Int) -> new_compare6(xuu50000, xuu51000) 29.16/12.45 new_not(True) -> False 29.16/12.45 new_compare5(xuu50000, xuu51000, ty_Char) -> new_compare14(xuu50000, xuu51000) 29.16/12.45 new_esEs27(xuu50001, xuu51001, ty_Double) -> new_esEs14(xuu50001, xuu51001) 29.16/12.45 new_primCompAux00(xuu223, LT) -> LT 29.16/12.45 new_primCmpNat0(Zero, Zero) -> EQ 29.16/12.45 new_esEs21(xuu3110000, xuu6000, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.45 new_esEs28(xuu50000, xuu51000, app(ty_[], dhg)) -> new_esEs19(xuu50000, xuu51000, dhg) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, app(ty_Ratio, dh)) -> new_ltEs7(xuu5000, xuu5100, dh) 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_@0, bge) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(ty_Maybe, bhh)) -> new_esEs4(xuu3110000, xuu6000, bhh) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, ty_Char) -> new_esEs18(xuu3110002, xuu6002) 29.16/12.45 new_esEs30(xuu311000, xuu600, ty_@0) -> new_esEs12(xuu311000, xuu600) 29.16/12.45 new_esEs28(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_@0, bah) -> new_ltEs4(xuu50000, xuu51000) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs7(xuu3110000, xuu6000, dch, dda, ddb) 29.16/12.45 new_esEs30(xuu311000, xuu600, app(ty_Ratio, bgc)) -> new_esEs15(xuu311000, xuu600, bgc) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_@0) -> new_ltEs4(xuu50000, xuu51000) 29.16/12.45 new_compare27(xuu50000, xuu51000, True, bag) -> EQ 29.16/12.45 new_ltEs18(xuu5000, xuu5100, ty_@0) -> new_ltEs4(xuu5000, xuu5100) 29.16/12.45 new_compare17(xuu50000, xuu51000, bfg, bfh, bga) -> new_compare28(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, bfg, bfh, bga), bfg, bfh, bga) 29.16/12.45 new_esEs31(xuu311000, xuu600, ty_@0) -> new_esEs12(xuu311000, xuu600) 29.16/12.45 new_primEqNat0(Succ(xuu31100000), Zero) -> False 29.16/12.45 new_primEqNat0(Zero, Succ(xuu60000)) -> False 29.16/12.45 new_esEs18(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 29.16/12.45 new_ltEs20(xuu50001, xuu51001, ty_Int) -> new_ltEs6(xuu50001, xuu51001) 29.16/12.45 new_lt20(xuu50000, xuu51000, app(ty_[], dhg)) -> new_lt4(xuu50000, xuu51000, dhg) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, ty_Int) -> new_ltEs6(xuu5000, xuu5100) 29.16/12.45 new_esEs27(xuu50001, xuu51001, ty_Int) -> new_esEs10(xuu50001, xuu51001) 29.16/12.45 new_esEs29(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) 29.16/12.45 new_ltEs20(xuu50001, xuu51001, ty_Integer) -> new_ltEs11(xuu50001, xuu51001) 29.16/12.45 new_primCompAux00(xuu223, GT) -> GT 29.16/12.45 new_ltEs19(xuu5000, xuu5100, ty_@0) -> new_ltEs4(xuu5000, xuu5100) 29.16/12.45 new_esEs17(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.45 new_compare7(xuu50000, xuu51000) -> new_compare24(xuu50000, xuu51000, new_esEs8(xuu50000, xuu51000)) 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs7(xuu3110000, xuu6000, ceb, cec, ced) 29.16/12.45 new_esEs32(xuu39, xuu34, ty_Double) -> new_esEs14(xuu39, xuu34) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Float) -> new_ltEs14(xuu50000, xuu51000) 29.16/12.45 new_compare5(xuu50000, xuu51000, app(app(ty_Either, cd), ce)) -> new_compare11(xuu50000, xuu51000, cd, ce) 29.16/12.45 new_ltEs10(Nothing, Just(xuu51000), gh) -> True 29.16/12.45 new_esEs23(xuu3110002, xuu6002, ty_Int) -> new_esEs10(xuu3110002, xuu6002) 29.16/12.45 new_esEs20(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 29.16/12.45 new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Integer) -> new_compare8(new_sr0(xuu50000, xuu51001), new_sr0(xuu51000, xuu50001)) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, ty_Int) -> new_ltEs6(xuu50002, xuu51002) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Int) -> new_ltEs6(xuu50000, xuu51000) 29.16/12.45 new_compare27(xuu50000, xuu51000, False, bag) -> new_compare113(xuu50000, xuu51000, new_ltEs10(xuu50000, xuu51000, bag), bag) 29.16/12.45 new_lt19(xuu50001, xuu51001, app(app(ty_@2, dha), dhb)) -> new_lt5(xuu50001, xuu51001, dha, dhb) 29.16/12.45 new_primCmpInt(Pos(Succ(xuu5000)), Neg(xuu510)) -> GT 29.16/12.45 new_esEs28(xuu50000, xuu51000, ty_Int) -> new_esEs10(xuu50000, xuu51000) 29.16/12.45 new_compare10(@0, @0) -> EQ 29.16/12.45 new_esEs28(xuu50000, xuu51000, ty_Integer) -> new_esEs11(xuu50000, xuu51000) 29.16/12.45 new_lt16(xuu50000, xuu51000, ty_Float) -> new_lt11(xuu50000, xuu51000) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs17(xuu5000, xuu5100, beb, bec, bed) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, ty_Float) -> new_ltEs14(xuu5000, xuu5100) 29.16/12.45 new_esEs20(xuu3110001, xuu6001, app(ty_Ratio, ccd)) -> new_esEs15(xuu3110001, xuu6001, ccd) 29.16/12.45 new_compare110(xuu190, xuu191, True, gf, gg) -> LT 29.16/12.45 new_esEs26(xuu50000, xuu51000, ty_Double) -> new_esEs14(xuu50000, xuu51000) 29.16/12.45 new_compare5(xuu50000, xuu51000, app(ty_Maybe, cc)) -> new_compare9(xuu50000, xuu51000, cc) 29.16/12.45 new_ltEs5(LT, GT) -> True 29.16/12.45 new_esEs32(xuu39, xuu34, ty_Float) -> new_esEs9(xuu39, xuu34) 29.16/12.45 new_ltEs20(xuu50001, xuu51001, ty_Float) -> new_ltEs14(xuu50001, xuu51001) 29.16/12.45 new_ltEs7(xuu5000, xuu5100, dh) -> new_fsEs(new_compare16(xuu5000, xuu5100, dh)) 29.16/12.45 new_compare19(xuu50000, xuu51000, True) -> LT 29.16/12.45 new_primPlusNat1(Succ(xuu53200), Succ(xuu13400)) -> Succ(Succ(new_primPlusNat1(xuu53200, xuu13400))) 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, bgd), bge) -> new_esEs4(xuu3110000, xuu6000, bgd) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, ty_@0) -> new_esEs12(xuu3110001, xuu6001) 29.16/12.45 new_primCmpNat0(Zero, Succ(xuu5100)) -> LT 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.45 new_esEs26(xuu50000, xuu51000, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs7(xuu50000, xuu51000, bfg, bfh, bga) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, ty_Bool) -> new_ltEs9(xuu50002, xuu51002) 29.16/12.45 new_lt20(xuu50000, xuu51000, ty_Char) -> new_lt14(xuu50000, xuu51000) 29.16/12.45 new_esEs19(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), cge) -> new_asAs(new_esEs22(xuu3110000, xuu6000, cge), new_esEs19(xuu3110001, xuu6001, cge)) 29.16/12.45 new_esEs32(xuu39, xuu34, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs7(xuu39, xuu34, cfd, cfe, cff) 29.16/12.45 new_lt16(xuu50000, xuu51000, ty_@0) -> new_lt18(xuu50000, xuu51000) 29.16/12.45 new_primCmpNat0(Succ(xuu5000), Zero) -> GT 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_[], cfb)) -> new_esEs19(xuu3110000, xuu6000, cfb) 29.16/12.45 new_pePe(False, xuu209) -> xuu209 29.16/12.45 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, chd), che)) -> new_esEs6(xuu3110000, xuu6000, chd, che) 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(ty_[], bcd)) -> new_ltEs8(xuu50000, xuu51000, bcd) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), app(ty_Maybe, hb)) -> new_ltEs10(xuu50000, xuu51000, hb) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) 29.16/12.45 new_esEs19([], [], cge) -> True 29.16/12.45 new_compare25(xuu500, xuu510, True, bdf, bdg) -> EQ 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(ty_Ratio, cah)) -> new_esEs15(xuu3110000, xuu6000, cah) 29.16/12.45 new_ltEs9(True, True) -> True 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.45 new_lt20(xuu50000, xuu51000, app(app(app(ty_@3, eaf), eag), eah)) -> new_lt9(xuu50000, xuu51000, eaf, eag, eah) 29.16/12.45 new_compare112(xuu183, xuu184, True, bae, baf) -> LT 29.16/12.45 new_esEs20(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 29.16/12.45 new_esEs26(xuu50000, xuu51000, ty_@0) -> new_esEs12(xuu50000, xuu51000) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, ty_Integer) -> new_ltEs11(xuu5000, xuu5100) 29.16/12.45 new_lt19(xuu50001, xuu51001, app(app(ty_Either, dgg), dgh)) -> new_lt12(xuu50001, xuu51001, dgg, dgh) 29.16/12.45 new_compare113(xuu50000, xuu51000, True, bag) -> LT 29.16/12.45 new_esEs27(xuu50001, xuu51001, ty_Float) -> new_esEs9(xuu50001, xuu51001) 29.16/12.45 new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Int) -> new_compare6(new_sr(xuu50000, xuu51001), new_sr(xuu51000, xuu50001)) 29.16/12.45 new_esEs8(LT, EQ) -> False 29.16/12.45 new_esEs8(EQ, LT) -> False 29.16/12.45 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 29.16/12.45 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 29.16/12.45 new_esEs23(xuu3110002, xuu6002, app(ty_Maybe, dac)) -> new_esEs4(xuu3110002, xuu6002, dac) 29.16/12.45 new_esEs21(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, app(app(ty_@2, dcc), dcd)) -> new_esEs6(xuu3110001, xuu6001, dcc, dcd) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), app(app(ty_Either, bbc), bbd), bah) -> new_ltEs12(xuu50000, xuu51000, bbc, bbd) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, ty_Integer) -> new_esEs11(xuu3110002, xuu6002) 29.16/12.45 new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), bgc) -> new_asAs(new_esEs17(xuu3110000, xuu6000, bgc), new_esEs16(xuu3110001, xuu6001, bgc)) 29.16/12.45 new_esEs30(xuu311000, xuu600, ty_Int) -> new_esEs10(xuu311000, xuu600) 29.16/12.45 new_lt16(xuu50000, xuu51000, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt9(xuu50000, xuu51000, bfg, bfh, bga) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, app(app(ty_Either, bcc), bah)) -> new_ltEs12(xuu5000, xuu5100, bcc, bah) 29.16/12.45 new_esEs29(xuu22, xuu17, ty_Char) -> new_esEs18(xuu22, xuu17) 29.16/12.45 new_esEs31(xuu311000, xuu600, ty_Float) -> new_esEs9(xuu311000, xuu600) 29.16/12.45 new_ltEs16(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), bdh, bea) -> new_pePe(new_lt16(xuu50000, xuu51000, bdh), new_asAs(new_esEs26(xuu50000, xuu51000, bdh), new_ltEs20(xuu50001, xuu51001, bea))) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, app(app(ty_Either, dca), dcb)) -> new_esEs5(xuu3110001, xuu6001, dca, dcb) 29.16/12.45 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.45 new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT 29.16/12.45 new_ltEs20(xuu50001, xuu51001, app(app(app(ty_@3, deh), dfa), dfb)) -> new_ltEs17(xuu50001, xuu51001, deh, dfa, dfb) 29.16/12.45 new_esEs21(xuu3110000, xuu6000, app(ty_[], cdg)) -> new_esEs19(xuu3110000, xuu6000, cdg) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, ty_Double) -> new_ltEs13(xuu50002, xuu51002) 29.16/12.45 new_compare9(xuu50000, xuu51000, bag) -> new_compare27(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, bag), bag) 29.16/12.45 new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.45 new_esEs31(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) 29.16/12.45 new_lt6(xuu50000, xuu51000) -> new_esEs8(new_compare8(xuu50000, xuu51000), LT) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, ty_Char) -> new_ltEs15(xuu50002, xuu51002) 29.16/12.45 new_lt17(xuu500, xuu510) -> new_esEs8(new_compare6(xuu500, xuu510), LT) 29.16/12.45 new_esEs26(xuu50000, xuu51000, app(app(ty_@2, bac), bad)) -> new_esEs6(xuu50000, xuu51000, bac, bad) 29.16/12.45 new_esEs32(xuu39, xuu34, app(app(ty_Either, cfg), cfh)) -> new_esEs5(xuu39, xuu34, cfg, cfh) 29.16/12.45 new_esEs28(xuu50000, xuu51000, ty_@0) -> new_esEs12(xuu50000, xuu51000) 29.16/12.45 new_esEs29(xuu22, xuu17, ty_Int) -> new_esEs10(xuu22, xuu17) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs7(xuu3110000, xuu6000, cgg, cgh, cha) 29.16/12.45 new_compare28(xuu50000, xuu51000, False, bfg, bfh, bga) -> new_compare114(xuu50000, xuu51000, new_ltEs17(xuu50000, xuu51000, bfg, bfh, bga), bfg, bfh, bga) 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cfa)) -> new_esEs15(xuu3110000, xuu6000, cfa) 29.16/12.45 new_primMulNat0(Succ(xuu311000100), Zero) -> Zero 29.16/12.45 new_primMulNat0(Zero, Succ(xuu600000)) -> Zero 29.16/12.45 new_primPlusNat0(Zero, xuu600000) -> Succ(xuu600000) 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Int) -> new_ltEs6(xuu50000, xuu51000) 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.45 new_lt19(xuu50001, xuu51001, ty_Ordering) -> new_lt13(xuu50001, xuu51001) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, ty_Bool) -> new_ltEs9(xuu5000, xuu5100) 29.16/12.45 new_esEs31(xuu311000, xuu600, app(ty_Maybe, ea)) -> new_esEs4(xuu311000, xuu600, ea) 29.16/12.45 new_ltEs5(EQ, EQ) -> True 29.16/12.45 new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 29.16/12.45 new_compare26(xuu50000, xuu51000, False) -> new_compare111(xuu50000, xuu51000, new_ltEs9(xuu50000, xuu51000)) 29.16/12.45 new_esEs26(xuu50000, xuu51000, ty_Integer) -> new_esEs11(xuu50000, xuu51000) 29.16/12.45 new_lt16(xuu50000, xuu51000, app(app(ty_@2, bac), bad)) -> new_lt5(xuu50000, xuu51000, bac, bad) 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, bha), bhb), bge) -> new_esEs5(xuu3110000, xuu6000, bha, bhb) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs7(xuu3110000, xuu6000, caa, cab, cac) 29.16/12.45 new_esEs32(xuu39, xuu34, ty_Int) -> new_esEs10(xuu39, xuu34) 29.16/12.45 new_esEs21(xuu3110000, xuu6000, app(app(ty_Either, cdb), cdc)) -> new_esEs5(xuu3110000, xuu6000, cdb, cdc) 29.16/12.45 new_lt16(xuu50000, xuu51000, app(ty_Maybe, bag)) -> new_lt7(xuu50000, xuu51000, bag) 29.16/12.45 new_esEs8(LT, LT) -> True 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_[], bhf), bge) -> new_esEs19(xuu3110000, xuu6000, bhf) 29.16/12.45 new_compare111(xuu50000, xuu51000, True) -> LT 29.16/12.45 new_lt12(xuu50000, xuu51000, de, df) -> new_esEs8(new_compare11(xuu50000, xuu51000, de, df), LT) 29.16/12.45 new_compare19(xuu50000, xuu51000, False) -> GT 29.16/12.45 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, chf)) -> new_esEs15(xuu3110000, xuu6000, chf) 29.16/12.45 new_esEs26(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) 29.16/12.45 new_esEs20(xuu3110001, xuu6001, app(ty_Maybe, cbd)) -> new_esEs4(xuu3110001, xuu6001, cbd) 29.16/12.45 new_lt15(xuu50000, xuu51000) -> new_esEs8(new_compare12(xuu50000, xuu51000), LT) 29.16/12.45 new_primPlusNat1(Succ(xuu53200), Zero) -> Succ(xuu53200) 29.16/12.45 new_primPlusNat1(Zero, Succ(xuu13400)) -> Succ(xuu13400) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs7(xuu3110001, xuu6001, dbf, dbg, dbh) 29.16/12.45 new_lt16(xuu50000, xuu51000, ty_Integer) -> new_lt6(xuu50000, xuu51000) 29.16/12.45 new_esEs30(xuu311000, xuu600, ty_Float) -> new_esEs9(xuu311000, xuu600) 29.16/12.45 new_lt9(xuu50000, xuu51000, bfg, bfh, bga) -> new_esEs8(new_compare17(xuu50000, xuu51000, bfg, bfh, bga), LT) 29.16/12.45 new_esEs30(xuu311000, xuu600, ty_Char) -> new_esEs18(xuu311000, xuu600) 29.16/12.45 new_esEs13(True, True) -> True 29.16/12.45 new_esEs20(xuu3110001, xuu6001, app(ty_[], cce)) -> new_esEs19(xuu3110001, xuu6001, cce) 29.16/12.45 new_ltEs20(xuu50001, xuu51001, ty_Double) -> new_ltEs13(xuu50001, xuu51001) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Double, bah) -> new_ltEs13(xuu50000, xuu51000) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, app(ty_Ratio, dbc)) -> new_esEs15(xuu3110002, xuu6002, dbc) 29.16/12.45 new_esEs28(xuu50000, xuu51000, ty_Double) -> new_esEs14(xuu50000, xuu51000) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, ty_Char) -> new_ltEs15(xuu5000, xuu5100) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Ordering) -> new_ltEs5(xuu50000, xuu51000) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.45 new_esEs20(xuu3110001, xuu6001, ty_Char) -> new_esEs18(xuu3110001, xuu6001) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs7(xuu3110002, xuu6002, dad, dae, daf) 29.16/12.45 new_compare115(xuu50000, xuu51000, False, bac, bad) -> GT 29.16/12.45 new_ltEs5(LT, LT) -> True 29.16/12.45 new_esEs21(xuu3110000, xuu6000, app(ty_Maybe, ccf)) -> new_esEs4(xuu3110000, xuu6000, ccf) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.45 new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, ty_Char) -> new_ltEs15(xuu5000, xuu5100) 29.16/12.45 new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat0(Zero, Succ(xuu5100)) 29.16/12.45 new_esEs29(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Bool, bah) -> new_ltEs9(xuu50000, xuu51000) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(app(ty_@2, caf), cag)) -> new_esEs6(xuu3110000, xuu6000, caf, cag) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, app(app(ty_@2, dde), ddf)) -> new_esEs6(xuu3110000, xuu6000, dde, ddf) 29.16/12.45 new_lt16(xuu50000, xuu51000, ty_Bool) -> new_lt8(xuu50000, xuu51000) 29.16/12.45 new_compare([], :(xuu51000, xuu51001), ca) -> LT 29.16/12.45 new_ltEs5(LT, EQ) -> True 29.16/12.45 new_esEs32(xuu39, xuu34, app(ty_Maybe, cfc)) -> new_esEs4(xuu39, xuu34, cfc) 29.16/12.45 new_esEs31(xuu311000, xuu600, ty_Int) -> new_esEs10(xuu311000, xuu600) 29.16/12.45 new_compare5(xuu50000, xuu51000, app(ty_Ratio, da)) -> new_compare16(xuu50000, xuu51000, da) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, ty_Double) -> new_ltEs13(xuu5000, xuu5100) 29.16/12.45 new_esEs31(xuu311000, xuu600, ty_Char) -> new_esEs18(xuu311000, xuu600) 29.16/12.45 new_esEs31(xuu311000, xuu600, app(ty_[], fb)) -> new_esEs19(xuu311000, xuu600, fb) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, chb), chc)) -> new_esEs5(xuu3110000, xuu6000, chb, chc) 29.16/12.45 new_compare12(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.45 new_compare12(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, cea)) -> new_esEs4(xuu3110000, xuu6000, cea) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 29.16/12.45 new_esEs29(xuu22, xuu17, ty_Float) -> new_esEs9(xuu22, xuu17) 29.16/12.45 new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), chh, daa, dab) -> new_asAs(new_esEs25(xuu3110000, xuu6000, chh), new_asAs(new_esEs24(xuu3110001, xuu6001, daa), new_esEs23(xuu3110002, xuu6002, dab))) 29.16/12.45 new_compare6(xuu50, xuu51) -> new_primCmpInt(xuu50, xuu51) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_ltEs17(xuu50002, xuu51002, dgb, dgc, dgd) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.45 new_esEs27(xuu50001, xuu51001, ty_@0) -> new_esEs12(xuu50001, xuu51001) 29.16/12.45 new_lt20(xuu50000, xuu51000, ty_Integer) -> new_lt6(xuu50000, xuu51000) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, ty_Bool) -> new_ltEs9(xuu5000, xuu5100) 29.16/12.45 new_compare8(Integer(xuu50000), Integer(xuu51000)) -> new_primCmpInt(xuu50000, xuu51000) 29.16/12.45 new_primMulInt(Pos(xuu31100010), Neg(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.45 new_primMulInt(Neg(xuu31100010), Pos(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(app(ty_Either, bcf), bcg)) -> new_ltEs12(xuu50000, xuu51000, bcf, bcg) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, app(ty_Ratio, dga)) -> new_ltEs7(xuu50002, xuu51002, dga) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, app(ty_Maybe, gh)) -> new_ltEs10(xuu5000, xuu5100, gh) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, app(app(ty_@2, dba), dbb)) -> new_esEs6(xuu3110002, xuu6002, dba, dbb) 29.16/12.45 new_esEs30(xuu311000, xuu600, app(ty_Maybe, cdh)) -> new_esEs4(xuu311000, xuu600, cdh) 29.16/12.45 new_ltEs12(Right(xuu50000), Left(xuu51000), bcc, bah) -> False 29.16/12.45 new_esEs24(xuu3110001, xuu6001, app(ty_Maybe, dbe)) -> new_esEs4(xuu3110001, xuu6001, dbe) 29.16/12.45 new_lt8(xuu50000, xuu51000) -> new_esEs8(new_compare18(xuu50000, xuu51000), LT) 29.16/12.45 new_esEs26(xuu50000, xuu51000, app(ty_Ratio, bgb)) -> new_esEs15(xuu50000, xuu51000, bgb) 29.16/12.45 new_lt5(xuu50000, xuu51000, bac, bad) -> new_esEs8(new_compare15(xuu50000, xuu51000, bac, bad), LT) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.45 new_lt20(xuu50000, xuu51000, ty_Float) -> new_lt11(xuu50000, xuu51000) 29.16/12.45 new_compare13(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.45 new_esEs19(:(xuu3110000, xuu3110001), [], cge) -> False 29.16/12.45 new_esEs19([], :(xuu6000, xuu6001), cge) -> False 29.16/12.45 new_sr0(Integer(xuu500000), Integer(xuu510010)) -> Integer(new_primMulInt(xuu500000, xuu510010)) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 29.16/12.45 new_compare25(Left(xuu5000), Left(xuu5100), False, bdf, bdg) -> new_compare112(xuu5000, xuu5100, new_ltEs18(xuu5000, xuu5100, bdf), bdf, bdg) 29.16/12.45 new_esEs13(False, False) -> True 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Double, bge) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.45 new_esEs30(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) 29.16/12.45 new_compare5(xuu50000, xuu51000, ty_Float) -> new_compare13(xuu50000, xuu51000) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Char) -> new_ltEs15(xuu50000, xuu51000) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Char, bah) -> new_ltEs15(xuu50000, xuu51000) 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(app(ty_@2, bch), bda)) -> new_ltEs16(xuu50000, xuu51000, bch, bda) 29.16/12.45 new_esEs28(xuu50000, xuu51000, app(app(app(ty_@3, eaf), eag), eah)) -> new_esEs7(xuu50000, xuu51000, eaf, eag, eah) 29.16/12.45 new_ltEs20(xuu50001, xuu51001, ty_Char) -> new_ltEs15(xuu50001, xuu51001) 29.16/12.45 new_compare25(Left(xuu5000), Right(xuu5100), False, bdf, bdg) -> LT 29.16/12.45 new_ltEs18(xuu5000, xuu5100, ty_Double) -> new_ltEs13(xuu5000, xuu5100) 29.16/12.45 new_esEs32(xuu39, xuu34, app(ty_[], cgd)) -> new_esEs19(xuu39, xuu34, cgd) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, app(app(ty_Either, dfe), dff)) -> new_ltEs12(xuu50002, xuu51002, dfe, dff) 29.16/12.45 new_asAs(True, xuu178) -> xuu178 29.16/12.45 new_esEs32(xuu39, xuu34, ty_Char) -> new_esEs18(xuu39, xuu34) 29.16/12.45 new_esEs28(xuu50000, xuu51000, ty_Float) -> new_esEs9(xuu50000, xuu51000) 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.45 new_lt20(xuu50000, xuu51000, ty_Ordering) -> new_lt13(xuu50000, xuu51000) 29.16/12.45 new_ltEs5(GT, LT) -> False 29.16/12.45 new_esEs32(xuu39, xuu34, app(ty_Ratio, cgc)) -> new_esEs15(xuu39, xuu34, cgc) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.45 new_esEs21(xuu3110000, xuu6000, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.45 new_esEs21(xuu3110000, xuu6000, app(ty_Ratio, cdf)) -> new_esEs15(xuu3110000, xuu6000, cdf) 29.16/12.45 new_lt20(xuu50000, xuu51000, ty_Bool) -> new_lt8(xuu50000, xuu51000) 29.16/12.45 new_esEs26(xuu50000, xuu51000, ty_Char) -> new_esEs18(xuu50000, xuu51000) 29.16/12.45 new_lt20(xuu50000, xuu51000, ty_Int) -> new_lt17(xuu50000, xuu51000) 29.16/12.45 new_esEs26(xuu50000, xuu51000, app(ty_[], dg)) -> new_esEs19(xuu50000, xuu51000, dg) 29.16/12.45 new_lt19(xuu50001, xuu51001, ty_Integer) -> new_lt6(xuu50001, xuu51001) 29.16/12.45 new_ltEs8(xuu5000, xuu5100, ca) -> new_fsEs(new_compare(xuu5000, xuu5100, ca)) 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, cee), cef)) -> new_esEs5(xuu3110000, xuu6000, cee, cef) 29.16/12.45 new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs17(xuu5000, xuu5100, bfd, bfe, bff) 29.16/12.45 new_primCmpInt(Pos(Succ(xuu5000)), Pos(xuu510)) -> new_primCmpNat0(Succ(xuu5000), xuu510) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, app(ty_[], ca)) -> new_ltEs8(xuu5000, xuu5100, ca) 29.16/12.45 new_esEs29(xuu22, xuu17, app(app(ty_Either, fh), ga)) -> new_esEs5(xuu22, xuu17, fh, ga) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, app(app(ty_@2, dfg), dfh)) -> new_ltEs16(xuu50002, xuu51002, dfg, dfh) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.45 new_primCompAux00(xuu223, EQ) -> xuu223 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Ordering, bah) -> new_ltEs5(xuu50000, xuu51000) 29.16/12.45 new_ltEs4(xuu5000, xuu5100) -> new_fsEs(new_compare10(xuu5000, xuu5100)) 29.16/12.45 new_lt10(xuu50000, xuu51000, bgb) -> new_esEs8(new_compare16(xuu50000, xuu51000, bgb), LT) 29.16/12.45 new_sr(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) 29.16/12.45 new_lt20(xuu50000, xuu51000, app(app(ty_Either, eaa), eab)) -> new_lt12(xuu50000, xuu51000, eaa, eab) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(ty_[], cba)) -> new_esEs19(xuu3110000, xuu6000, cba) 29.16/12.45 new_esEs27(xuu50001, xuu51001, app(app(ty_@2, dha), dhb)) -> new_esEs6(xuu50001, xuu51001, dha, dhb) 29.16/12.45 new_esEs27(xuu50001, xuu51001, ty_Bool) -> new_esEs13(xuu50001, xuu51001) 29.16/12.45 new_ltEs9(False, False) -> True 29.16/12.45 new_primMulNat0(Zero, Zero) -> Zero 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), app(ty_Ratio, hg)) -> new_ltEs7(xuu50000, xuu51000, hg) 29.16/12.45 new_esEs27(xuu50001, xuu51001, ty_Ordering) -> new_esEs8(xuu50001, xuu51001) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, ty_@0) -> new_esEs12(xuu3110002, xuu6002) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, app(ty_Ratio, bfc)) -> new_ltEs7(xuu5000, xuu5100, bfc) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, app(ty_[], bee)) -> new_ltEs8(xuu5000, xuu5100, bee) 29.16/12.45 new_compare111(xuu50000, xuu51000, False) -> GT 29.16/12.45 new_ltEs20(xuu50001, xuu51001, ty_Bool) -> new_ltEs9(xuu50001, xuu51001) 29.16/12.45 new_lt19(xuu50001, xuu51001, ty_Int) -> new_lt17(xuu50001, xuu51001) 29.16/12.45 new_esEs28(xuu50000, xuu51000, app(ty_Maybe, dhh)) -> new_esEs4(xuu50000, xuu51000, dhh) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), app(ty_Maybe, bbb), bah) -> new_ltEs10(xuu50000, xuu51000, bbb) 29.16/12.45 new_ltEs20(xuu50001, xuu51001, app(app(ty_@2, dee), def)) -> new_ltEs16(xuu50001, xuu51001, dee, def) 29.16/12.45 new_compare28(xuu50000, xuu51000, True, bfg, bfh, bga) -> EQ 29.16/12.45 new_esEs4(Nothing, Nothing, cdh) -> True 29.16/12.45 new_esEs20(xuu3110001, xuu6001, app(app(ty_Either, cbh), cca)) -> new_esEs5(xuu3110001, xuu6001, cbh, cca) 29.16/12.45 new_esEs20(xuu3110001, xuu6001, ty_Float) -> new_esEs9(xuu3110001, xuu6001) 29.16/12.45 new_esEs27(xuu50001, xuu51001, ty_Integer) -> new_esEs11(xuu50001, xuu51001) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, app(app(ty_Either, cad), cae)) -> new_esEs5(xuu3110000, xuu6000, cad, cae) 29.16/12.45 new_esEs4(Nothing, Just(xuu6000), cdh) -> False 29.16/12.45 new_esEs4(Just(xuu3110000), Nothing, cdh) -> False 29.16/12.45 new_lt20(xuu50000, xuu51000, ty_@0) -> new_lt18(xuu50000, xuu51000) 29.16/12.45 new_esEs27(xuu50001, xuu51001, app(ty_[], dge)) -> new_esEs19(xuu50001, xuu51001, dge) 29.16/12.45 new_ltEs5(EQ, LT) -> False 29.16/12.45 new_compare14(Char(xuu50000), Char(xuu51000)) -> new_primCmpNat0(xuu50000, xuu51000) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, app(app(ty_Either, beg), beh)) -> new_ltEs12(xuu5000, xuu5100, beg, beh) 29.16/12.45 new_lt19(xuu50001, xuu51001, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_lt9(xuu50001, xuu51001, dhd, dhe, dhf) 29.16/12.45 new_lt19(xuu50001, xuu51001, ty_Bool) -> new_lt8(xuu50001, xuu51001) 29.16/12.45 new_esEs28(xuu50000, xuu51000, app(app(ty_@2, eac), ead)) -> new_esEs6(xuu50000, xuu51000, eac, ead) 29.16/12.45 new_esEs17(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Float) -> new_ltEs14(xuu50000, xuu51000) 29.16/12.45 new_esEs32(xuu39, xuu34, ty_Ordering) -> new_esEs8(xuu39, xuu34) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), app(app(app(ty_@3, bbh), bca), bcb), bah) -> new_ltEs17(xuu50000, xuu51000, bbh, bca, bcb) 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Integer) -> new_ltEs11(xuu50000, xuu51000) 29.16/12.45 new_ltEs9(True, False) -> False 29.16/12.45 new_ltEs19(xuu5000, xuu5100, app(app(ty_@2, bfa), bfb)) -> new_ltEs16(xuu5000, xuu5100, bfa, bfb) 29.16/12.45 new_ltEs20(xuu50001, xuu51001, app(ty_[], dea)) -> new_ltEs8(xuu50001, xuu51001, dea) 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_@0) -> new_ltEs4(xuu50000, xuu51000) 29.16/12.45 new_esEs20(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 29.16/12.45 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 29.16/12.45 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 29.16/12.45 new_esEs11(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 29.16/12.45 new_esEs16(xuu3110001, xuu6001, ty_Integer) -> new_esEs11(xuu3110001, xuu6001) 29.16/12.45 new_compare([], [], ca) -> EQ 29.16/12.45 new_ltEs20(xuu50001, xuu51001, app(app(ty_Either, dec), ded)) -> new_ltEs12(xuu50001, xuu51001, dec, ded) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), app(app(ty_Either, hc), hd)) -> new_ltEs12(xuu50000, xuu51000, hc, hd) 29.16/12.45 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 29.16/12.45 new_esEs13(False, True) -> False 29.16/12.45 new_esEs13(True, False) -> False 29.16/12.45 new_esEs16(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), app(app(ty_@2, he), hf)) -> new_ltEs16(xuu50000, xuu51000, he, hf) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.45 new_compare5(xuu50000, xuu51000, ty_@0) -> new_compare10(xuu50000, xuu51000) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), app(ty_[], ha)) -> new_ltEs8(xuu50000, xuu51000, ha) 29.16/12.45 new_compare24(xuu50000, xuu51000, True) -> EQ 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, app(ty_Maybe, bce)) -> new_ltEs10(xuu50000, xuu51000, bce) 29.16/12.45 new_compare114(xuu50000, xuu51000, True, bfg, bfh, bga) -> LT 29.16/12.45 new_esEs22(xuu3110000, xuu6000, app(ty_[], chg)) -> new_esEs19(xuu3110000, xuu6000, chg) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, app(app(ty_Either, ddc), ddd)) -> new_esEs5(xuu3110000, xuu6000, ddc, ddd) 29.16/12.45 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 29.16/12.45 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 29.16/12.45 new_esEs26(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) 29.16/12.45 new_ltEs20(xuu50001, xuu51001, app(ty_Ratio, deg)) -> new_ltEs7(xuu50001, xuu51001, deg) 29.16/12.45 new_esEs31(xuu311000, xuu600, app(ty_Ratio, fa)) -> new_esEs15(xuu311000, xuu600, fa) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, app(ty_Ratio, ddg)) -> new_esEs15(xuu3110000, xuu6000, ddg) 29.16/12.45 new_lt16(xuu50000, xuu51000, app(ty_Ratio, bgb)) -> new_lt10(xuu50000, xuu51000, bgb) 29.16/12.45 new_lt19(xuu50001, xuu51001, ty_@0) -> new_lt18(xuu50001, xuu51001) 29.16/12.45 new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat0(Succ(xuu5100), Zero) 29.16/12.45 new_esEs31(xuu311000, xuu600, app(app(ty_Either, ee), ef)) -> new_esEs5(xuu311000, xuu600, ee, ef) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.45 new_esEs29(xuu22, xuu17, app(ty_Maybe, fc)) -> new_esEs4(xuu22, xuu17, fc) 29.16/12.45 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 29.16/12.45 new_ltEs6(xuu5000, xuu5100) -> new_fsEs(new_compare6(xuu5000, xuu5100)) 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, bhe), bge) -> new_esEs15(xuu3110000, xuu6000, bhe) 29.16/12.45 new_esEs27(xuu50001, xuu51001, ty_Char) -> new_esEs18(xuu50001, xuu51001) 29.16/12.45 new_esEs26(xuu50000, xuu51000, app(app(ty_Either, de), df)) -> new_esEs5(xuu50000, xuu51000, de, df) 29.16/12.45 new_lt11(xuu50000, xuu51000) -> new_esEs8(new_compare13(xuu50000, xuu51000), LT) 29.16/12.45 new_lt16(xuu50000, xuu51000, app(ty_[], dg)) -> new_lt4(xuu50000, xuu51000, dg) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, app(ty_[], dbd)) -> new_esEs19(xuu3110002, xuu6002, dbd) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, app(ty_Maybe, bef)) -> new_ltEs10(xuu5000, xuu5100, bef) 29.16/12.45 new_compare25(Right(xuu5000), Right(xuu5100), False, bdf, bdg) -> new_compare110(xuu5000, xuu5100, new_ltEs19(xuu5000, xuu5100, bdg), bdf, bdg) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Bool) -> new_ltEs9(xuu50000, xuu51000) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) 29.16/12.45 new_compare112(xuu183, xuu184, False, bae, baf) -> GT 29.16/12.45 new_ltEs5(EQ, GT) -> True 29.16/12.45 new_esEs29(xuu22, xuu17, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs7(xuu22, xuu17, fd, ff, fg) 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.45 new_not(False) -> True 29.16/12.45 new_esEs31(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) 29.16/12.45 new_esEs21(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.45 new_esEs21(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.45 new_esEs31(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 29.16/12.45 new_primCompAux0(xuu50000, xuu51000, xuu210, ca) -> new_primCompAux00(xuu210, new_compare5(xuu50000, xuu51000, ca)) 29.16/12.45 new_esEs20(xuu3110001, xuu6001, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs7(xuu3110001, xuu6001, cbe, cbf, cbg) 29.16/12.45 new_esEs30(xuu311000, xuu600, app(app(ty_@2, cbb), cbc)) -> new_esEs6(xuu311000, xuu600, cbb, cbc) 29.16/12.45 new_compare25(Right(xuu5000), Left(xuu5100), False, bdf, bdg) -> GT 29.16/12.45 new_ltEs5(GT, GT) -> True 29.16/12.45 new_ltEs17(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), beb, bec, bed) -> new_pePe(new_lt20(xuu50000, xuu51000, beb), new_asAs(new_esEs28(xuu50000, xuu51000, beb), new_pePe(new_lt19(xuu50001, xuu51001, bec), new_asAs(new_esEs27(xuu50001, xuu51001, bec), new_ltEs21(xuu50002, xuu51002, bed))))) 29.16/12.45 new_esEs8(LT, GT) -> False 29.16/12.45 new_esEs8(GT, LT) -> False 29.16/12.45 new_ltEs15(xuu5000, xuu5100) -> new_fsEs(new_compare14(xuu5000, xuu5100)) 29.16/12.45 new_lt20(xuu50000, xuu51000, app(app(ty_@2, eac), ead)) -> new_lt5(xuu50000, xuu51000, eac, ead) 29.16/12.45 new_compare5(xuu50000, xuu51000, ty_Integer) -> new_compare8(xuu50000, xuu51000) 29.16/12.45 new_esEs27(xuu50001, xuu51001, app(ty_Ratio, dhc)) -> new_esEs15(xuu50001, xuu51001, dhc) 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.45 new_esEs5(Left(xuu3110000), Right(xuu6000), bhg, bge) -> False 29.16/12.45 new_esEs5(Right(xuu3110000), Left(xuu6000), bhg, bge) -> False 29.16/12.45 new_lt16(xuu50000, xuu51000, ty_Char) -> new_lt14(xuu50000, xuu51000) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, ty_@0) -> new_ltEs4(xuu50002, xuu51002) 29.16/12.45 new_esEs30(xuu311000, xuu600, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs7(xuu311000, xuu600, chh, daa, dab) 29.16/12.45 new_esEs20(xuu3110001, xuu6001, app(app(ty_@2, ccb), ccc)) -> new_esEs6(xuu3110001, xuu6001, ccb, ccc) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, ty_Ordering) -> new_ltEs5(xuu50002, xuu51002) 29.16/12.45 new_esEs29(xuu22, xuu17, app(ty_Ratio, gd)) -> new_esEs15(xuu22, xuu17, gd) 29.16/12.45 new_esEs32(xuu39, xuu34, ty_@0) -> new_esEs12(xuu39, xuu34) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.45 new_ltEs10(Just(xuu50000), Nothing, gh) -> False 29.16/12.45 new_ltEs10(Nothing, Nothing, gh) -> True 29.16/12.45 new_ltEs18(xuu5000, xuu5100, ty_Int) -> new_ltEs6(xuu5000, xuu5100) 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Int, bge) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.45 new_ltEs13(xuu5000, xuu5100) -> new_fsEs(new_compare12(xuu5000, xuu5100)) 29.16/12.45 new_compare113(xuu50000, xuu51000, False, bag) -> GT 29.16/12.45 new_esEs27(xuu50001, xuu51001, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_esEs7(xuu50001, xuu51001, dhd, dhe, dhf) 29.16/12.45 new_esEs30(xuu311000, xuu600, app(app(ty_Either, bhg), bge)) -> new_esEs5(xuu311000, xuu600, bhg, bge) 29.16/12.45 new_primPlusNat0(Succ(xuu1430), xuu600000) -> Succ(Succ(new_primPlusNat1(xuu1430, xuu600000))) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, app(app(ty_@2, bdh), bea)) -> new_ltEs16(xuu5000, xuu5100, bdh, bea) 29.16/12.45 new_esEs29(xuu22, xuu17, app(app(ty_@2, gb), gc)) -> new_esEs6(xuu22, xuu17, gb, gc) 29.16/12.45 new_compare13(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Bool) -> new_ltEs9(xuu50000, xuu51000) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 29.16/12.45 new_esEs10(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), app(ty_[], bba), bah) -> new_ltEs8(xuu50000, xuu51000, bba) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, app(ty_[], dfc)) -> new_ltEs8(xuu50002, xuu51002, dfc) 29.16/12.45 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 29.16/12.45 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 29.16/12.45 new_primPlusNat1(Zero, Zero) -> Zero 29.16/12.45 new_compare5(xuu50000, xuu51000, app(app(app(ty_@3, db), dc), dd)) -> new_compare17(xuu50000, xuu51000, db, dc, dd) 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), app(app(ty_@2, bbe), bbf), bah) -> new_ltEs16(xuu50000, xuu51000, bbe, bbf) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, ty_Ordering) -> new_ltEs5(xuu5000, xuu5100) 29.16/12.45 new_compare5(xuu50000, xuu51000, ty_Bool) -> new_compare18(xuu50000, xuu51000) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, ty_Float) -> new_ltEs14(xuu5000, xuu5100) 29.16/12.45 new_compare5(xuu50000, xuu51000, ty_Double) -> new_compare12(xuu50000, xuu51000) 29.16/12.45 new_compare15(xuu50000, xuu51000, bac, bad) -> new_compare29(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, bac, bad), bac, bad) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, app(ty_Maybe, dcg)) -> new_esEs4(xuu3110000, xuu6000, dcg) 29.16/12.45 new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.45 new_esEs32(xuu39, xuu34, app(app(ty_@2, cga), cgb)) -> new_esEs6(xuu39, xuu34, cga, cgb) 29.16/12.45 new_lt13(xuu50000, xuu51000) -> new_esEs8(new_compare7(xuu50000, xuu51000), LT) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.45 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 29.16/12.45 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, app(ty_Maybe, dfd)) -> new_ltEs10(xuu50002, xuu51002, dfd) 29.16/12.45 new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat0(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, ty_Integer) -> new_ltEs11(xuu50002, xuu51002) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs17(xuu50000, xuu51000, hh, baa, bab) 29.16/12.45 new_esEs12(@0, @0) -> True 29.16/12.45 new_compare29(xuu50000, xuu51000, True, bac, bad) -> EQ 29.16/12.45 new_primCmpNat0(Succ(xuu5000), Succ(xuu5100)) -> new_primCmpNat0(xuu5000, xuu5100) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Int, bah) -> new_ltEs6(xuu50000, xuu51000) 29.16/12.45 new_esEs27(xuu50001, xuu51001, app(ty_Maybe, dgf)) -> new_esEs4(xuu50001, xuu51001, dgf) 29.16/12.45 new_esEs6(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cbb, cbc) -> new_asAs(new_esEs21(xuu3110000, xuu6000, cbb), new_esEs20(xuu3110001, xuu6001, cbc)) 29.16/12.45 new_esEs32(xuu39, xuu34, ty_Integer) -> new_esEs11(xuu39, xuu34) 29.16/12.45 new_ltEs20(xuu50001, xuu51001, app(ty_Maybe, deb)) -> new_ltEs10(xuu50001, xuu51001, deb) 29.16/12.45 new_esEs26(xuu50000, xuu51000, ty_Int) -> new_esEs10(xuu50000, xuu51000) 29.16/12.45 new_esEs21(xuu3110000, xuu6000, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), bhg, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.45 new_esEs28(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Char, bge) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Double) -> new_ltEs13(xuu50000, xuu51000) 29.16/12.45 new_compare114(xuu50000, xuu51000, False, bfg, bfh, bga) -> GT 29.16/12.45 new_esEs24(xuu3110001, xuu6001, ty_Char) -> new_esEs18(xuu3110001, xuu6001) 29.16/12.45 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 29.16/12.45 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 29.16/12.45 new_lt14(xuu50000, xuu51000) -> new_esEs8(new_compare14(xuu50000, xuu51000), LT) 29.16/12.45 new_lt19(xuu50001, xuu51001, ty_Float) -> new_lt11(xuu50001, xuu51001) 29.16/12.45 new_compare12(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.45 new_compare110(xuu190, xuu191, False, gf, gg) -> GT 29.16/12.45 new_compare5(xuu50000, xuu51000, app(ty_[], cb)) -> new_compare(xuu50000, xuu51000, cb) 29.16/12.45 new_esEs26(xuu50000, xuu51000, app(ty_Maybe, bag)) -> new_esEs4(xuu50000, xuu51000, bag) 29.16/12.45 new_esEs32(xuu39, xuu34, ty_Bool) -> new_esEs13(xuu39, xuu34) 29.16/12.45 new_primEqNat0(Zero, Zero) -> True 29.16/12.45 new_esEs28(xuu50000, xuu51000, app(app(ty_Either, eaa), eab)) -> new_esEs5(xuu50000, xuu51000, eaa, eab) 29.16/12.45 new_esEs31(xuu311000, xuu600, ty_Integer) -> new_esEs11(xuu311000, xuu600) 29.16/12.45 new_lt19(xuu50001, xuu51001, ty_Double) -> new_lt15(xuu50001, xuu51001) 29.16/12.45 new_esEs20(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, ty_Float) -> new_esEs9(xuu3110001, xuu6001) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, app(ty_[], ddh)) -> new_esEs19(xuu3110000, xuu6000, ddh) 29.16/12.45 new_esEs29(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, ty_Float) -> new_esEs9(xuu3110002, xuu6002) 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Float, bge) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, ty_Ordering) -> new_ltEs5(xuu5000, xuu5100) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.45 new_esEs31(xuu311000, xuu600, app(app(ty_@2, eg), eh)) -> new_esEs6(xuu311000, xuu600, eg, eh) 29.16/12.45 new_asAs(False, xuu178) -> False 29.16/12.45 new_lt16(xuu50000, xuu51000, app(app(ty_Either, de), df)) -> new_lt12(xuu50000, xuu51000, de, df) 29.16/12.45 new_esEs20(xuu3110001, xuu6001, ty_Integer) -> new_esEs11(xuu3110001, xuu6001) 29.16/12.45 new_lt19(xuu50001, xuu51001, app(ty_Ratio, dhc)) -> new_lt10(xuu50001, xuu51001, dhc) 29.16/12.45 new_esEs28(xuu50000, xuu51000, app(ty_Ratio, eae)) -> new_esEs15(xuu50000, xuu51000, eae) 29.16/12.45 new_ltEs5(GT, EQ) -> False 29.16/12.45 new_ltEs20(xuu50001, xuu51001, ty_Ordering) -> new_ltEs5(xuu50001, xuu51001) 29.16/12.45 new_lt18(xuu50000, xuu51000) -> new_esEs8(new_compare10(xuu50000, xuu51000), LT) 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Double) -> new_ltEs13(xuu50000, xuu51000) 29.16/12.45 new_esEs8(EQ, GT) -> False 29.16/12.45 new_esEs8(GT, EQ) -> False 29.16/12.45 new_compare5(xuu50000, xuu51000, ty_Ordering) -> new_compare7(xuu50000, xuu51000) 29.16/12.45 new_lt20(xuu50000, xuu51000, ty_Double) -> new_lt15(xuu50000, xuu51000) 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), bcc, ty_Char) -> new_ltEs15(xuu50000, xuu51000) 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, bgf), bgg), bgh), bge) -> new_esEs7(xuu3110000, xuu6000, bgf, bgg, bgh) 29.16/12.45 new_compare29(xuu50000, xuu51000, False, bac, bad) -> new_compare115(xuu50000, xuu51000, new_ltEs16(xuu50000, xuu51000, bac, bad), bac, bad) 29.16/12.45 29.16/12.45 The set Q consists of the following terms: 29.16/12.45 29.16/12.45 new_ltEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.16/12.45 new_esEs8(EQ, EQ) 29.16/12.45 new_esEs30(x0, x1, ty_Double) 29.16/12.45 new_esEs26(x0, x1, ty_Int) 29.16/12.45 new_ltEs21(x0, x1, ty_Integer) 29.16/12.45 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_ltEs20(x0, x1, ty_Bool) 29.16/12.45 new_esEs24(x0, x1, ty_Bool) 29.16/12.45 new_esEs4(Just(x0), Just(x1), ty_Ordering) 29.16/12.45 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 29.16/12.45 new_esEs18(Char(x0), Char(x1)) 29.16/12.45 new_compare([], :(x0, x1), x2) 29.16/12.45 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 29.16/12.45 new_esEs4(Just(x0), Just(x1), ty_Double) 29.16/12.45 new_ltEs20(x0, x1, ty_@0) 29.16/12.45 new_lt16(x0, x1, ty_Integer) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 29.16/12.45 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.16/12.45 new_esEs29(x0, x1, app(ty_[], x2)) 29.16/12.45 new_esEs28(x0, x1, ty_Ordering) 29.16/12.45 new_lt19(x0, x1, ty_Integer) 29.16/12.45 new_lt20(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_pePe(False, x0) 29.16/12.45 new_esEs29(x0, x1, ty_Float) 29.16/12.45 new_primPlusNat1(Zero, Zero) 29.16/12.45 new_esEs31(x0, x1, ty_Float) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), ty_Int) 29.16/12.45 new_compare25(Left(x0), Left(x1), False, x2, x3) 29.16/12.45 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 29.16/12.45 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 29.16/12.45 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), ty_Char) 29.16/12.45 new_ltEs19(x0, x1, ty_Bool) 29.16/12.45 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.16/12.45 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_esEs28(x0, x1, ty_Int) 29.16/12.45 new_esEs20(x0, x1, ty_Integer) 29.16/12.45 new_lt20(x0, x1, ty_Float) 29.16/12.45 new_esEs4(Nothing, Nothing, x0) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.16/12.45 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_esEs26(x0, x1, ty_Char) 29.16/12.45 new_esEs4(Just(x0), Nothing, x1) 29.16/12.45 new_esEs27(x0, x1, ty_Char) 29.16/12.45 new_esEs4(Just(x0), Just(x1), ty_Int) 29.16/12.45 new_esEs25(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_ltEs19(x0, x1, ty_Integer) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 29.16/12.45 new_esEs25(x0, x1, ty_@0) 29.16/12.45 new_esEs28(x0, x1, ty_Char) 29.16/12.45 new_ltEs21(x0, x1, ty_Bool) 29.16/12.45 new_esEs21(x0, x1, app(ty_[], x2)) 29.16/12.45 new_lt16(x0, x1, ty_Bool) 29.16/12.45 new_primEqInt(Pos(Zero), Pos(Zero)) 29.16/12.45 new_esEs20(x0, x1, ty_Bool) 29.16/12.45 new_esEs27(x0, x1, ty_Int) 29.16/12.45 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 29.16/12.45 new_compare27(x0, x1, True, x2) 29.16/12.45 new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) 29.16/12.45 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_esEs28(x0, x1, ty_Double) 29.16/12.45 new_esEs30(x0, x1, ty_Int) 29.16/12.45 new_esEs16(x0, x1, ty_Int) 29.16/12.45 new_compare114(x0, x1, False, x2, x3, x4) 29.16/12.45 new_esEs30(x0, x1, ty_Ordering) 29.16/12.45 new_esEs23(x0, x1, ty_Integer) 29.16/12.45 new_primCmpNat0(Succ(x0), Zero) 29.16/12.45 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) 29.16/12.45 new_esEs27(x0, x1, ty_@0) 29.16/12.45 new_esEs27(x0, x1, app(ty_[], x2)) 29.16/12.45 new_primEqNat0(Zero, Succ(x0)) 29.16/12.45 new_asAs(True, x0) 29.16/12.45 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 29.16/12.45 new_primEqInt(Neg(Zero), Neg(Zero)) 29.16/12.45 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs21(x0, x1, ty_@0) 29.16/12.45 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 29.16/12.45 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 29.16/12.45 new_esEs25(x0, x1, app(ty_[], x2)) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 29.16/12.45 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_sr0(Integer(x0), Integer(x1)) 29.16/12.45 new_esEs26(x0, x1, ty_Ordering) 29.16/12.45 new_ltEs9(True, True) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 29.16/12.45 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.16/12.45 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 29.16/12.45 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 29.16/12.45 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 29.16/12.45 new_primCmpNat0(Succ(x0), Succ(x1)) 29.16/12.45 new_ltEs5(LT, GT) 29.16/12.45 new_ltEs5(GT, LT) 29.16/12.45 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs23(x0, x1, ty_Float) 29.16/12.45 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs27(x0, x1, ty_Ordering) 29.16/12.45 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_ltEs20(x0, x1, ty_Char) 29.16/12.45 new_esEs30(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs5(Left(x0), Right(x1), x2, x3) 29.16/12.45 new_esEs5(Right(x0), Left(x1), x2, x3) 29.16/12.45 new_asAs(False, x0) 29.16/12.45 new_esEs20(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_primPlusNat1(Succ(x0), Zero) 29.16/12.45 new_compare18(x0, x1) 29.16/12.45 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_esEs24(x0, x1, ty_Char) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.16/12.45 new_esEs25(x0, x1, ty_Int) 29.16/12.45 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 29.16/12.45 new_lt13(x0, x1) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 29.16/12.45 new_lt17(x0, x1) 29.16/12.45 new_lt15(x0, x1) 29.16/12.45 new_esEs26(x0, x1, ty_Double) 29.16/12.45 new_esEs26(x0, x1, ty_Bool) 29.16/12.45 new_esEs25(x0, x1, ty_Char) 29.16/12.45 new_ltEs20(x0, x1, ty_Int) 29.16/12.45 new_primEqInt(Pos(Zero), Neg(Zero)) 29.16/12.45 new_primEqInt(Neg(Zero), Pos(Zero)) 29.16/12.45 new_lt19(x0, x1, app(ty_[], x2)) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), ty_Ordering) 29.16/12.45 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 29.16/12.45 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 29.16/12.45 new_ltEs10(Nothing, Nothing, x0) 29.16/12.45 new_ltEs18(x0, x1, ty_Double) 29.16/12.45 new_compare112(x0, x1, True, x2, x3) 29.16/12.45 new_esEs25(x0, x1, ty_Double) 29.16/12.45 new_esEs17(x0, x1, ty_Int) 29.16/12.45 new_compare9(x0, x1, x2) 29.16/12.45 new_compare5(x0, x1, ty_Float) 29.16/12.45 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_compare29(x0, x1, True, x2, x3) 29.16/12.45 new_esEs25(x0, x1, ty_Bool) 29.16/12.45 new_compare24(x0, x1, False) 29.16/12.45 new_esEs24(x0, x1, ty_@0) 29.16/12.45 new_esEs28(x0, x1, ty_@0) 29.16/12.45 new_ltEs4(x0, x1) 29.16/12.45 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_esEs10(x0, x1) 29.16/12.45 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 29.16/12.45 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 29.16/12.45 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs26(x0, x1, app(ty_[], x2)) 29.16/12.45 new_esEs24(x0, x1, ty_Float) 29.16/12.45 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 29.16/12.45 new_esEs32(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_primEqNat0(Succ(x0), Succ(x1)) 29.16/12.45 new_esEs23(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_compare27(x0, x1, False, x2) 29.16/12.45 new_primMulInt(Neg(x0), Neg(x1)) 29.16/12.45 new_esEs22(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_ltEs20(x0, x1, ty_Float) 29.16/12.45 new_esEs24(x0, x1, ty_Ordering) 29.16/12.45 new_compare19(x0, x1, True) 29.16/12.45 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs4(Just(x0), Just(x1), ty_Bool) 29.16/12.45 new_lt19(x0, x1, ty_Char) 29.16/12.45 new_esEs31(x0, x1, ty_@0) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), ty_Integer) 29.16/12.45 new_esEs22(x0, x1, app(ty_[], x2)) 29.16/12.45 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_lt20(x0, x1, ty_Bool) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 29.16/12.45 new_compare25(Left(x0), Right(x1), False, x2, x3) 29.16/12.45 new_compare25(Right(x0), Left(x1), False, x2, x3) 29.16/12.45 new_ltEs21(x0, x1, app(ty_[], x2)) 29.16/12.45 new_ltEs20(x0, x1, ty_Ordering) 29.16/12.45 new_compare111(x0, x1, False) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 29.16/12.45 new_esEs16(x0, x1, ty_Integer) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.16/12.45 new_esEs14(Double(x0, x1), Double(x2, x3)) 29.16/12.45 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.16/12.45 new_esEs26(x0, x1, ty_Integer) 29.16/12.45 new_ltEs12(Left(x0), Right(x1), x2, x3) 29.16/12.45 new_lt16(x0, x1, ty_Int) 29.16/12.45 new_esEs20(x0, x1, app(ty_[], x2)) 29.16/12.45 new_ltEs12(Right(x0), Left(x1), x2, x3) 29.16/12.45 new_esEs28(x0, x1, app(ty_[], x2)) 29.16/12.45 new_ltEs7(x0, x1, x2) 29.16/12.45 new_esEs21(x0, x1, ty_Float) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.16/12.45 new_compare17(x0, x1, x2, x3, x4) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.16/12.45 new_lt7(x0, x1, x2) 29.16/12.45 new_esEs29(x0, x1, ty_@0) 29.16/12.45 new_esEs24(x0, x1, ty_Int) 29.16/12.45 new_compare114(x0, x1, True, x2, x3, x4) 29.16/12.45 new_ltEs21(x0, x1, ty_Int) 29.16/12.45 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_compare15(x0, x1, x2, x3) 29.16/12.45 new_esEs31(x0, x1, ty_Bool) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 29.16/12.45 new_compare26(x0, x1, False) 29.16/12.45 new_esEs29(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs27(x0, x1, ty_Integer) 29.16/12.45 new_compare110(x0, x1, True, x2, x3) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.16/12.45 new_compare11(x0, x1, x2, x3) 29.16/12.45 new_compare5(x0, x1, ty_Double) 29.16/12.45 new_esEs32(x0, x1, ty_Integer) 29.16/12.45 new_ltEs5(EQ, GT) 29.16/12.45 new_ltEs5(GT, EQ) 29.16/12.45 new_compare112(x0, x1, False, x2, x3) 29.16/12.45 new_lt16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_primMulNat0(Zero, Succ(x0)) 29.16/12.45 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 29.16/12.45 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.16/12.45 new_pePe(True, x0) 29.16/12.45 new_primMulNat0(Succ(x0), Succ(x1)) 29.16/12.45 new_esEs30(x0, x1, ty_Integer) 29.16/12.45 new_esEs26(x0, x1, ty_@0) 29.16/12.45 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_ltEs21(x0, x1, ty_Char) 29.16/12.45 new_ltEs18(x0, x1, ty_Ordering) 29.16/12.45 new_esEs21(x0, x1, ty_Int) 29.16/12.45 new_esEs28(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_primCompAux00(x0, LT) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 29.16/12.45 new_ltEs19(x0, x1, app(ty_[], x2)) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 29.16/12.45 new_esEs25(x0, x1, ty_Float) 29.16/12.45 new_lt16(x0, x1, ty_Char) 29.16/12.45 new_esEs8(GT, GT) 29.16/12.45 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 29.16/12.45 new_esEs21(x0, x1, ty_Ordering) 29.16/12.45 new_esEs8(LT, EQ) 29.16/12.45 new_esEs8(EQ, LT) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), ty_Bool) 29.16/12.45 new_primCmpInt(Neg(Zero), Neg(Zero)) 29.16/12.45 new_esEs22(x0, x1, ty_Integer) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 29.16/12.45 new_ltEs9(False, True) 29.16/12.45 new_ltEs9(True, False) 29.16/12.45 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 29.16/12.45 new_esEs21(x0, x1, ty_Integer) 29.16/12.45 new_esEs13(False, True) 29.16/12.45 new_esEs13(True, False) 29.16/12.45 new_esEs23(x0, x1, ty_Double) 29.16/12.45 new_lt16(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs23(x0, x1, ty_@0) 29.16/12.45 new_lt11(x0, x1) 29.16/12.45 new_primCompAux00(x0, EQ) 29.16/12.45 new_esEs8(LT, LT) 29.16/12.45 new_lt19(x0, x1, ty_Bool) 29.16/12.45 new_primCmpInt(Pos(Zero), Neg(Zero)) 29.16/12.45 new_primCmpInt(Neg(Zero), Pos(Zero)) 29.16/12.45 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_esEs4(Just(x0), Just(x1), ty_Char) 29.16/12.45 new_primMulInt(Pos(x0), Neg(x1)) 29.16/12.45 new_primMulInt(Neg(x0), Pos(x1)) 29.16/12.45 new_ltEs10(Nothing, Just(x0), x1) 29.16/12.45 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) 29.16/12.45 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs30(x0, x1, app(ty_[], x2)) 29.16/12.45 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 29.16/12.45 new_esEs23(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 29.16/12.45 new_esEs32(x0, x1, ty_Ordering) 29.16/12.45 new_esEs31(x0, x1, ty_Integer) 29.16/12.45 new_esEs21(x0, x1, ty_Char) 29.16/12.45 new_lt19(x0, x1, ty_Float) 29.16/12.45 new_primMulInt(Pos(x0), Pos(x1)) 29.16/12.45 new_ltEs11(x0, x1) 29.16/12.45 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.16/12.45 new_compare7(x0, x1) 29.16/12.45 new_primPlusNat0(Zero, x0) 29.16/12.45 new_lt5(x0, x1, x2, x3) 29.16/12.45 new_esEs30(x0, x1, ty_Char) 29.16/12.45 new_lt20(x0, x1, ty_Integer) 29.16/12.45 new_lt16(x0, x1, ty_Float) 29.16/12.45 new_esEs22(x0, x1, ty_Ordering) 29.16/12.45 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 29.16/12.45 new_lt16(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs29(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_esEs31(x0, x1, ty_Ordering) 29.16/12.45 new_esEs20(x0, x1, ty_@0) 29.16/12.45 new_ltEs19(x0, x1, ty_@0) 29.16/12.45 new_esEs20(x0, x1, ty_Double) 29.16/12.45 new_esEs21(x0, x1, ty_Bool) 29.16/12.45 new_ltEs19(x0, x1, ty_Double) 29.16/12.45 new_compare113(x0, x1, False, x2) 29.16/12.45 new_esEs26(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_lt4(x0, x1, x2) 29.16/12.45 new_esEs30(x0, x1, ty_Bool) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), ty_Float) 29.16/12.45 new_lt19(x0, x1, ty_Int) 29.16/12.45 new_esEs27(x0, x1, ty_Bool) 29.16/12.45 new_ltEs21(x0, x1, ty_Float) 29.16/12.45 new_ltEs10(Just(x0), Nothing, x1) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 29.16/12.45 new_esEs24(x0, x1, ty_Integer) 29.16/12.45 new_ltEs20(x0, x1, ty_Integer) 29.16/12.45 new_lt20(x0, x1, ty_Ordering) 29.16/12.45 new_compare115(x0, x1, False, x2, x3) 29.16/12.45 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 29.16/12.45 new_esEs29(x0, x1, ty_Ordering) 29.16/12.45 new_esEs4(Just(x0), Just(x1), ty_Float) 29.16/12.45 new_esEs23(x0, x1, app(ty_[], x2)) 29.16/12.45 new_compare19(x0, x1, False) 29.16/12.45 new_compare111(x0, x1, True) 29.16/12.45 new_esEs31(x0, x1, ty_Double) 29.16/12.45 new_esEs30(x0, x1, ty_Float) 29.16/12.45 new_compare(:(x0, x1), :(x2, x3), x4) 29.16/12.45 new_compare28(x0, x1, False, x2, x3, x4) 29.16/12.45 new_esEs28(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_lt20(x0, x1, ty_Double) 29.16/12.45 new_primMulNat0(Zero, Zero) 29.16/12.45 new_esEs22(x0, x1, ty_@0) 29.16/12.45 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs21(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_lt18(x0, x1) 29.16/12.45 new_compare25(x0, x1, True, x2, x3) 29.16/12.45 new_compare24(x0, x1, True) 29.16/12.45 new_lt12(x0, x1, x2, x3) 29.16/12.45 new_lt16(x0, x1, app(ty_[], x2)) 29.16/12.45 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 29.16/12.45 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 29.16/12.45 new_ltEs18(x0, x1, ty_@0) 29.16/12.45 new_esEs32(x0, x1, ty_@0) 29.16/12.45 new_compare5(x0, x1, ty_Char) 29.16/12.45 new_esEs26(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs27(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_compare25(Right(x0), Right(x1), False, x2, x3) 29.16/12.45 new_compare5(x0, x1, ty_@0) 29.16/12.45 new_lt9(x0, x1, x2, x3, x4) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_esEs26(x0, x1, ty_Float) 29.16/12.45 new_esEs29(x0, x1, ty_Int) 29.16/12.45 new_lt16(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs11(Integer(x0), Integer(x1)) 29.16/12.45 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 29.16/12.45 new_esEs29(x0, x1, ty_Double) 29.16/12.45 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_esEs22(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_compare10(@0, @0) 29.16/12.45 new_compare12(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 29.16/12.45 new_ltEs18(x0, x1, ty_Integer) 29.16/12.45 new_lt19(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_esEs25(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs29(x0, x1, ty_Char) 29.16/12.45 new_not(True) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 29.16/12.45 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_esEs27(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 29.16/12.45 new_lt6(x0, x1) 29.16/12.45 new_esEs31(x0, x1, ty_Char) 29.16/12.45 new_esEs31(x0, x1, app(ty_[], x2)) 29.16/12.45 new_primCmpNat0(Zero, Succ(x0)) 29.16/12.45 new_compare5(x0, x1, ty_Int) 29.16/12.45 new_esEs27(x0, x1, ty_Float) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.16/12.45 new_esEs19(:(x0, x1), [], x2) 29.16/12.45 new_esEs8(EQ, GT) 29.16/12.45 new_esEs8(GT, EQ) 29.16/12.45 new_esEs22(x0, x1, ty_Int) 29.16/12.45 new_esEs32(x0, x1, ty_Bool) 29.16/12.45 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.16/12.45 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 29.16/12.45 new_esEs32(x0, x1, ty_Int) 29.16/12.45 new_compare5(x0, x1, app(ty_[], x2)) 29.16/12.45 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.16/12.45 new_esEs9(Float(x0, x1), Float(x2, x3)) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.16/12.45 new_primPlusNat0(Succ(x0), x1) 29.16/12.45 new_compare12(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 29.16/12.45 new_compare12(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 29.16/12.45 new_compare12(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 29.16/12.45 new_fsEs(x0) 29.16/12.45 new_esEs13(True, True) 29.16/12.45 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs4(Nothing, Just(x0), x1) 29.16/12.45 new_primPlusNat1(Zero, Succ(x0)) 29.16/12.45 new_ltEs18(x0, x1, ty_Char) 29.16/12.45 new_esEs22(x0, x1, ty_Bool) 29.16/12.45 new_ltEs21(x0, x1, ty_Ordering) 29.16/12.45 new_primEqNat0(Succ(x0), Zero) 29.16/12.45 new_esEs20(x0, x1, ty_Ordering) 29.16/12.45 new_esEs32(x0, x1, ty_Char) 29.16/12.45 new_esEs31(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_compare110(x0, x1, False, x2, x3) 29.16/12.45 new_compare26(x0, x1, True) 29.16/12.45 new_lt20(x0, x1, ty_Char) 29.16/12.45 new_lt19(x0, x1, ty_Ordering) 29.16/12.45 new_esEs22(x0, x1, ty_Char) 29.16/12.45 new_esEs31(x0, x1, ty_Int) 29.16/12.45 new_lt20(x0, x1, ty_@0) 29.16/12.45 new_esEs32(x0, x1, ty_Double) 29.16/12.45 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_ltEs18(x0, x1, app(ty_[], x2)) 29.16/12.45 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 29.16/12.45 new_lt20(x0, x1, ty_Int) 29.16/12.45 new_esEs28(x0, x1, ty_Float) 29.16/12.45 new_esEs4(Just(x0), Just(x1), ty_Integer) 29.16/12.45 new_ltEs5(LT, LT) 29.16/12.45 new_esEs22(x0, x1, ty_Double) 29.16/12.45 new_ltEs15(x0, x1) 29.16/12.45 new_primCmpInt(Pos(Zero), Pos(Zero)) 29.16/12.45 new_compare6(x0, x1) 29.16/12.45 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.16/12.45 new_ltEs18(x0, x1, ty_Bool) 29.16/12.45 new_esEs19([], :(x0, x1), x2) 29.16/12.45 new_compare115(x0, x1, True, x2, x3) 29.16/12.45 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 29.16/12.45 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 29.16/12.45 new_esEs30(x0, x1, ty_@0) 29.16/12.45 new_esEs23(x0, x1, ty_Char) 29.16/12.45 new_esEs20(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 29.16/12.45 new_compare(:(x0, x1), [], x2) 29.16/12.45 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_ltEs19(x0, x1, ty_Ordering) 29.16/12.45 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_esEs32(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_sr(x0, x1) 29.16/12.45 new_ltEs5(LT, EQ) 29.16/12.45 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_ltEs5(EQ, LT) 29.16/12.45 new_ltEs20(x0, x1, ty_Double) 29.16/12.45 new_esEs24(x0, x1, ty_Double) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.16/12.45 new_ltEs5(GT, GT) 29.16/12.45 new_primCompAux00(x0, GT) 29.16/12.45 new_esEs19(:(x0, x1), :(x2, x3), x4) 29.16/12.45 new_lt16(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_compare28(x0, x1, True, x2, x3, x4) 29.16/12.45 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs21(x0, x1, ty_Double) 29.16/12.45 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs12(@0, @0) 29.16/12.45 new_ltEs18(x0, x1, ty_Int) 29.16/12.45 new_esEs4(Just(x0), Just(x1), ty_@0) 29.16/12.45 new_esEs29(x0, x1, ty_Bool) 29.16/12.45 new_lt16(x0, x1, ty_Ordering) 29.16/12.45 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs24(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_esEs8(LT, GT) 29.16/12.45 new_esEs8(GT, LT) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 29.16/12.45 new_esEs24(x0, x1, app(ty_[], x2)) 29.16/12.45 new_ltEs19(x0, x1, ty_Float) 29.16/12.45 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 29.16/12.45 new_lt16(x0, x1, ty_Double) 29.16/12.45 new_compare8(Integer(x0), Integer(x1)) 29.16/12.45 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs23(x0, x1, ty_Int) 29.16/12.45 new_esEs22(x0, x1, ty_Float) 29.16/12.45 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 29.16/12.45 new_primCompAux0(x0, x1, x2, x3) 29.16/12.45 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_compare113(x0, x1, True, x2) 29.16/12.45 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs30(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_esEs25(x0, x1, ty_Integer) 29.16/12.45 new_ltEs20(x0, x1, app(ty_[], x2)) 29.16/12.45 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_ltEs21(x0, x1, ty_Double) 29.16/12.45 new_esEs32(x0, x1, ty_Float) 29.16/12.45 new_esEs23(x0, x1, ty_Ordering) 29.16/12.45 new_compare([], [], x0) 29.16/12.45 new_ltEs18(x0, x1, ty_Float) 29.16/12.45 new_esEs24(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs28(x0, x1, ty_Bool) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 29.16/12.45 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 29.16/12.45 new_ltEs8(x0, x1, x2) 29.16/12.45 new_ltEs6(x0, x1) 29.16/12.45 new_ltEs16(@2(x0, x1), @2(x2, x3), x4, x5) 29.16/12.45 new_lt20(x0, x1, app(ty_[], x2)) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 29.16/12.45 new_primEqNat0(Zero, Zero) 29.16/12.45 new_esEs13(False, False) 29.16/12.45 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_lt8(x0, x1) 29.16/12.45 new_lt19(x0, x1, ty_Double) 29.16/12.45 new_primPlusNat1(Succ(x0), Succ(x1)) 29.16/12.45 new_ltEs9(False, False) 29.16/12.45 new_lt19(x0, x1, ty_@0) 29.16/12.45 new_not(False) 29.16/12.45 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_ltEs13(x0, x1) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), ty_@0) 29.16/12.45 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs21(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_esEs19([], [], x0) 29.16/12.45 new_compare14(Char(x0), Char(x1)) 29.16/12.45 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.16/12.45 new_ltEs10(Just(x0), Just(x1), ty_Double) 29.16/12.45 new_ltEs14(x0, x1) 29.16/12.45 new_esEs27(x0, x1, ty_Double) 29.16/12.45 new_esEs31(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 29.16/12.45 new_esEs25(x0, x1, ty_Ordering) 29.16/12.45 new_compare5(x0, x1, ty_Ordering) 29.16/12.45 new_compare5(x0, x1, ty_Integer) 29.16/12.45 new_ltEs21(x0, x1, ty_@0) 29.16/12.45 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_compare5(x0, x1, ty_Bool) 29.16/12.45 new_lt16(x0, x1, ty_@0) 29.16/12.45 new_esEs17(x0, x1, ty_Integer) 29.16/12.45 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 29.16/12.45 new_lt20(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_compare29(x0, x1, False, x2, x3) 29.16/12.45 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 29.16/12.45 new_esEs20(x0, x1, ty_Float) 29.16/12.45 new_esEs29(x0, x1, ty_Integer) 29.16/12.45 new_ltEs5(EQ, EQ) 29.16/12.45 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.16/12.45 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 29.16/12.45 new_compare5(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 29.16/12.45 new_esEs20(x0, x1, ty_Char) 29.16/12.45 new_compare5(x0, x1, app(ty_Maybe, x2)) 29.16/12.45 new_ltEs19(x0, x1, ty_Char) 29.16/12.45 new_lt10(x0, x1, x2) 29.16/12.45 new_ltEs19(x0, x1, ty_Int) 29.16/12.45 new_esEs28(x0, x1, ty_Integer) 29.16/12.45 new_lt14(x0, x1) 29.16/12.45 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.45 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.16/12.45 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.45 new_esEs32(x0, x1, app(ty_[], x2)) 29.16/12.45 new_primMulNat0(Succ(x0), Zero) 29.16/12.45 new_lt19(x0, x1, app(ty_Ratio, x2)) 29.16/12.45 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.16/12.45 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.16/12.45 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 29.16/12.45 new_primCmpNat0(Zero, Zero) 29.16/12.45 new_esEs23(x0, x1, ty_Bool) 29.16/12.45 new_esEs20(x0, x1, ty_Int) 29.16/12.45 29.16/12.45 We have to consider all minimal (P,Q,R)-chains. 29.16/12.45 ---------------------------------------- 29.16/12.45 29.16/12.45 (36) QDPSizeChangeProof (EQUIVALENT) 29.16/12.45 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 29.16/12.45 29.16/12.45 From the DPs we obtained the following set of size-change graphs: 29.16/12.45 *new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu20, Left(xuu22), xuu23, h, ba, bb) 29.16/12.45 The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 29.16/12.45 29.16/12.45 29.16/12.45 *new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, h, ba, bb) -> new_addToFM_C1(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare25(Left(xuu22), Left(xuu17), new_esEs29(xuu22, xuu17, h), h, ba), GT), h, ba, bb) 29.16/12.45 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 29.16/12.45 29.16/12.45 29.16/12.45 *new_addToFM_C(Branch(Left(xuu600), xuu61, xuu62, xuu63, xuu64), Left(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Left(xuu311000), Left(xuu600), new_esEs30(xuu311000, xuu600, bc), bc, bd), LT), bc, bd, be) 29.16/12.45 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 29.16/12.45 29.16/12.45 29.16/12.45 *new_addToFM_C(Branch(Right(xuu600), xuu61, xuu62, xuu63, xuu64), Left(xuu311000), xuu31101, bc, bd, be) -> new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Left(xuu311000), Right(xuu600), False, bc, bd), LT), bc, bd, be) 29.16/12.45 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 29.16/12.45 29.16/12.45 29.16/12.45 *new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, bc, bd, be) -> new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Left(xuu311000), Right(xuu600), False, bc, bd), GT), bc, bd, be) 29.16/12.45 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 29.16/12.45 29.16/12.45 29.16/12.45 *new_addToFM_C20(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu63, Left(xuu311000), xuu31101, bc, bd, be) 29.16/12.45 The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 29.16/12.45 29.16/12.45 29.16/12.45 *new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, bc, bd, be) -> new_addToFM_C(xuu64, Left(xuu311000), xuu31101, bc, bd, be) 29.16/12.45 The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 29.16/12.45 29.16/12.45 29.16/12.45 *new_addToFM_C1(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu21, Left(xuu22), xuu23, h, ba, bb) 29.16/12.45 The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 29.16/12.45 29.16/12.45 29.16/12.45 ---------------------------------------- 29.16/12.45 29.16/12.45 (37) 29.16/12.45 YES 29.16/12.45 29.16/12.45 ---------------------------------------- 29.16/12.45 29.16/12.45 (38) 29.16/12.45 Obligation: 29.16/12.45 Q DP problem: 29.16/12.45 The TRS P consists of the following rules: 29.16/12.45 29.16/12.45 new_foldl(xuu6, :(xuu3110, xuu3111), h, ba, bb) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba, bb), xuu3111, h, ba, bb) 29.16/12.45 29.16/12.45 The TRS R consists of the following rules: 29.16/12.45 29.16/12.45 new_esEs30(xuu311000, xuu600, app(ty_[], cae)) -> new_esEs19(xuu311000, xuu600, cae) 29.16/12.45 new_esEs26(xuu50000, xuu51000, ty_Float) -> new_esEs9(xuu50000, xuu51000) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, ty_Integer) -> new_ltEs11(xuu5000, xuu5100) 29.16/12.45 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 29.16/12.45 new_primCmpInt(Neg(Succ(xuu5000)), Pos(xuu510)) -> LT 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), cfa, ty_Ordering) -> new_ltEs5(xuu50000, xuu51000) 29.16/12.45 new_pePe(True, xuu209) -> True 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Ordering, cac) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.45 new_lt20(xuu50000, xuu51000, app(ty_Ratio, eag)) -> new_lt10(xuu50000, xuu51000, eag) 29.16/12.45 new_esEs30(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bca), bcb)) -> new_esEs6(xuu3110000, xuu6000, bca, bcb) 29.16/12.45 new_esEs21(xuu3110000, xuu6000, app(app(app(ty_@3, baa), bab), bac)) -> new_esEs7(xuu3110000, xuu6000, baa, bab, bac) 29.16/12.45 new_esEs30(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Bool, cac) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.45 new_addToFM_C25(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, cf, cg, da) -> new_addToFM_C13(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare25(Left(xuu22), Left(xuu17), new_esEs29(xuu22, xuu17, cf), cf, cg), GT), cf, cg, da) 29.16/12.45 new_compare12(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.45 new_compare(:(xuu50000, xuu50001), [], bc) -> GT 29.16/12.45 new_lt19(xuu50001, xuu51001, ty_Char) -> new_lt14(xuu50001, xuu51001) 29.16/12.45 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 29.16/12.45 new_esEs24(xuu3110001, xuu6001, app(ty_[], bfc)) -> new_esEs19(xuu3110001, xuu6001, bfc) 29.16/12.45 new_esEs27(xuu50001, xuu51001, app(app(ty_Either, dha), dhb)) -> new_esEs5(xuu50001, xuu51001, dha, dhb) 29.16/12.45 new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT 29.16/12.45 new_compare(:(xuu50000, xuu50001), :(xuu51000, xuu51001), bc) -> new_primCompAux0(xuu50000, xuu51000, new_compare(xuu50001, xuu51001, bc), bc) 29.16/12.45 new_mkBalBranch6MkBalBranch30(xuu600, xuu61, xuu64, xuu45, False, h, ba, bb) -> new_mkBranch(Succ(Zero), Right(xuu600), xuu61, xuu45, xuu64, app(app(ty_Either, h), ba), bb) 29.16/12.45 new_compare11(xuu50000, xuu51000, db, dc) -> new_compare25(xuu50000, xuu51000, new_esEs5(xuu50000, xuu51000, db, dc), db, dc) 29.16/12.45 new_esEs21(xuu3110000, xuu6000, app(app(ty_@2, baf), bag)) -> new_esEs6(xuu3110000, xuu6000, baf, bag) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 29.16/12.45 new_esEs28(xuu50000, xuu51000, ty_Char) -> new_esEs18(xuu50000, xuu51000) 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), cfa, app(ty_Ratio, cfh)) -> new_ltEs7(xuu50000, xuu51000, cfh) 29.16/12.45 new_lt16(xuu50000, xuu51000, ty_Double) -> new_lt15(xuu50000, xuu51000) 29.16/12.45 new_primCmpInt(Neg(Succ(xuu5000)), Neg(xuu510)) -> new_primCmpNat0(xuu510, Succ(xuu5000)) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Integer, cdf) -> new_ltEs11(xuu50000, xuu51000) 29.16/12.45 new_ltEs11(xuu5000, xuu5100) -> new_fsEs(new_compare8(xuu5000, xuu5100)) 29.16/12.45 new_lt7(xuu50000, xuu51000, fg) -> new_esEs8(new_compare9(xuu50000, xuu51000, fg), LT) 29.16/12.45 new_esEs29(xuu22, xuu17, ty_@0) -> new_esEs12(xuu22, xuu17) 29.16/12.45 new_lt4(xuu50000, xuu51000, cbh) -> new_esEs8(new_compare(xuu50000, xuu51000, cbh), LT) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Integer) -> new_ltEs11(xuu50000, xuu51000) 29.16/12.45 new_ltEs12(Left(xuu50000), Right(xuu51000), cfa, cdf) -> True 29.16/12.45 new_compare115(xuu50000, xuu51000, True, de, df) -> LT 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), cab, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.45 new_esEs20(xuu3110001, xuu6001, ty_@0) -> new_esEs12(xuu3110001, xuu6001) 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), cfa, app(app(app(ty_@3, cga), cgb), cgc)) -> new_ltEs17(xuu50000, xuu51000, cga, cgb, cgc) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, ty_Float) -> new_ltEs14(xuu50002, xuu51002) 29.16/12.45 new_esEs9(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 29.16/12.45 new_lt16(xuu50000, xuu51000, ty_Int) -> new_lt17(xuu50000, xuu51000) 29.16/12.45 new_lt19(xuu50001, xuu51001, app(ty_Maybe, dgh)) -> new_lt7(xuu50001, xuu51001, dgh) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.45 new_compare13(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.45 new_compare13(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, app(app(ty_Either, bdd), bde)) -> new_esEs5(xuu3110002, xuu6002, bdd, bde) 29.16/12.45 new_compare24(xuu50000, xuu51000, False) -> new_compare19(xuu50000, xuu51000, new_ltEs5(xuu50000, xuu51000)) 29.16/12.45 new_esEs30(xuu311000, xuu600, ty_Integer) -> new_esEs11(xuu311000, xuu600) 29.16/12.45 new_compare26(xuu50000, xuu51000, True) -> EQ 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Integer, cac) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.45 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 29.16/12.45 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 29.16/12.45 new_esEs8(GT, GT) -> True 29.16/12.45 new_esEs24(xuu3110001, xuu6001, ty_Integer) -> new_esEs11(xuu3110001, xuu6001) 29.16/12.45 new_compare5(xuu50000, xuu51000, app(app(ty_@2, bh), ca)) -> new_compare15(xuu50000, xuu51000, bh, ca) 29.16/12.45 new_fsEs(xuu193) -> new_not(new_esEs8(xuu193, GT)) 29.16/12.45 new_ltEs9(False, True) -> True 29.16/12.45 new_lt16(xuu50000, xuu51000, ty_Ordering) -> new_lt13(xuu50000, xuu51000) 29.16/12.45 new_compare18(xuu50000, xuu51000) -> new_compare26(xuu50000, xuu51000, new_esEs13(xuu50000, xuu51000)) 29.16/12.45 new_esEs31(xuu311000, xuu600, app(app(app(ty_@3, cag), cah), cba)) -> new_esEs7(xuu311000, xuu600, cag, cah, cba) 29.16/12.45 new_ltEs20(xuu50001, xuu51001, ty_@0) -> new_ltEs4(xuu50001, xuu51001) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, app(ty_Ratio, bfb)) -> new_esEs15(xuu3110001, xuu6001, bfb) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), cab, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.45 new_lt20(xuu50000, xuu51000, app(ty_Maybe, eab)) -> new_lt7(xuu50000, xuu51000, eab) 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, dbc), dbd), cac) -> new_esEs6(xuu3110000, xuu6000, dbc, dbd) 29.16/12.45 new_esEs29(xuu22, xuu17, app(ty_[], caa)) -> new_esEs19(xuu22, xuu17, caa) 29.16/12.45 new_esEs8(EQ, EQ) -> True 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Float, cdf) -> new_ltEs14(xuu50000, xuu51000) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, dda)) -> new_esEs4(xuu3110000, xuu6000, dda) 29.16/12.45 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.45 new_lt19(xuu50001, xuu51001, app(ty_[], dgg)) -> new_lt4(xuu50001, xuu51001, dgg) 29.16/12.45 new_esEs29(xuu22, xuu17, ty_Integer) -> new_esEs11(xuu22, xuu17) 29.16/12.45 new_ltEs14(xuu5000, xuu5100) -> new_fsEs(new_compare13(xuu5000, xuu5100)) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), app(ty_Ratio, cee), cdf) -> new_ltEs7(xuu50000, xuu51000, cee) 29.16/12.45 new_compare5(xuu50000, xuu51000, ty_Int) -> new_compare6(xuu50000, xuu51000) 29.16/12.45 new_not(True) -> False 29.16/12.45 new_compare5(xuu50000, xuu51000, ty_Char) -> new_compare14(xuu50000, xuu51000) 29.16/12.45 new_esEs27(xuu50001, xuu51001, ty_Double) -> new_esEs14(xuu50001, xuu51001) 29.16/12.45 new_primCompAux00(xuu223, LT) -> LT 29.16/12.45 new_primCmpNat0(Zero, Zero) -> EQ 29.16/12.45 new_esEs21(xuu3110000, xuu6000, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.45 new_esEs28(xuu50000, xuu51000, app(ty_[], eaa)) -> new_esEs19(xuu50000, xuu51000, eaa) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, app(ty_Ratio, dd)) -> new_ltEs7(xuu5000, xuu5100, dd) 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_@0, cac) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), cab, app(ty_Maybe, dbg)) -> new_esEs4(xuu3110000, xuu6000, dbg) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, ty_Char) -> new_esEs18(xuu3110002, xuu6002) 29.16/12.45 new_esEs30(xuu311000, xuu600, ty_@0) -> new_esEs12(xuu311000, xuu600) 29.16/12.45 new_esEs28(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs7(xuu3110000, xuu6000, bfe, bff, bfg) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_@0, cdf) -> new_ltEs4(xuu50000, xuu51000) 29.16/12.45 new_esEs30(xuu311000, xuu600, app(ty_Ratio, cad)) -> new_esEs15(xuu311000, xuu600, cad) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_@0) -> new_ltEs4(xuu50000, xuu51000) 29.16/12.45 new_compare27(xuu50000, xuu51000, True, fg) -> EQ 29.16/12.45 new_ltEs18(xuu5000, xuu5100, ty_@0) -> new_ltEs4(xuu5000, xuu5100) 29.16/12.45 new_compare17(xuu50000, xuu51000, fh, ga, gb) -> new_compare28(xuu50000, xuu51000, new_esEs7(xuu50000, xuu51000, fh, ga, gb), fh, ga, gb) 29.16/12.45 new_mkBalBranch6Size_l(xuu600, xuu61, xuu64, xuu53, h, ba, bb) -> new_sizeFM(xuu53, h, ba, bb) 29.16/12.45 new_mkBalBranch6MkBalBranch01(xuu600, xuu61, xuu640, xuu641, xuu642, Branch(xuu6430, xuu6431, xuu6432, xuu6433, xuu6434), xuu644, xuu53, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu6430, xuu6431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Left(xuu600), xuu61, xuu53, xuu6433, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu640, xuu641, xuu6434, xuu644, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) 29.16/12.45 new_mkBalBranch(xuu600, xuu61, xuu53, xuu64, h, ba, bb) -> new_mkBalBranch6MkBalBranch5(xuu600, xuu61, xuu64, xuu53, new_esEs8(new_primCmpInt0(xuu53, xuu600, xuu61, xuu64, h, ba, bb), LT), h, ba, bb) 29.16/12.45 new_esEs31(xuu311000, xuu600, ty_@0) -> new_esEs12(xuu311000, xuu600) 29.16/12.45 new_primEqNat0(Succ(xuu31100000), Zero) -> False 29.16/12.45 new_primEqNat0(Zero, Succ(xuu60000)) -> False 29.16/12.45 new_esEs18(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 29.16/12.45 new_addToFM_C24(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, ea, eb, ec) -> new_mkBalBranch0(xuu34, xuu35, new_addToFM_C0(xuu37, Right(xuu39), xuu40, ea, eb, ec), xuu38, ea, eb, ec) 29.16/12.45 new_ltEs20(xuu50001, xuu51001, ty_Int) -> new_ltEs6(xuu50001, xuu51001) 29.16/12.45 new_lt20(xuu50000, xuu51000, app(ty_[], eaa)) -> new_lt4(xuu50000, xuu51000, eaa) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, ty_Int) -> new_ltEs6(xuu5000, xuu5100) 29.16/12.45 new_esEs27(xuu50001, xuu51001, ty_Int) -> new_esEs10(xuu50001, xuu51001) 29.16/12.45 new_mkBalBranch6MkBalBranch40(xuu600, xuu61, Branch(xuu640, xuu641, xuu642, xuu643, xuu644), xuu45, True, h, ba, bb) -> new_mkBalBranch6MkBalBranch010(xuu600, xuu61, xuu640, xuu641, xuu642, xuu643, xuu644, xuu45, new_lt17(new_sizeFM(xuu643, h, ba, bb), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu644, h, ba, bb))), h, ba, bb) 29.16/12.45 new_esEs29(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) 29.16/12.45 new_ltEs20(xuu50001, xuu51001, ty_Integer) -> new_ltEs11(xuu50001, xuu51001) 29.16/12.45 new_primCompAux00(xuu223, GT) -> GT 29.16/12.45 new_ltEs19(xuu5000, xuu5100, ty_@0) -> new_ltEs4(xuu5000, xuu5100) 29.16/12.45 new_esEs17(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.45 new_primMinusNat0(Succ(xuu53200), Zero) -> Pos(Succ(xuu53200)) 29.16/12.45 new_compare7(xuu50000, xuu51000) -> new_compare24(xuu50000, xuu51000, new_esEs8(xuu50000, xuu51000)) 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs7(xuu3110000, xuu6000, bbd, bbe, bbf) 29.16/12.45 new_esEs32(xuu39, xuu34, ty_Double) -> new_esEs14(xuu39, xuu34) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Float) -> new_ltEs14(xuu50000, xuu51000) 29.16/12.45 new_compare5(xuu50000, xuu51000, app(app(ty_Either, bf), bg)) -> new_compare11(xuu50000, xuu51000, bf, bg) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, ty_Int) -> new_esEs10(xuu3110002, xuu6002) 29.16/12.45 new_ltEs10(Nothing, Just(xuu51000), ccc) -> True 29.16/12.45 new_esEs20(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 29.16/12.45 new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Integer) -> new_compare8(new_sr0(xuu50000, xuu51001), new_sr0(xuu51000, xuu50001)) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, ty_Int) -> new_ltEs6(xuu50002, xuu51002) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Int) -> new_ltEs6(xuu50000, xuu51000) 29.16/12.45 new_compare27(xuu50000, xuu51000, False, fg) -> new_compare113(xuu50000, xuu51000, new_ltEs10(xuu50000, xuu51000, fg), fg) 29.16/12.45 new_lt19(xuu50001, xuu51001, app(app(ty_@2, dhc), dhd)) -> new_lt5(xuu50001, xuu51001, dhc, dhd) 29.16/12.45 new_primCmpInt(Pos(Succ(xuu5000)), Neg(xuu510)) -> GT 29.16/12.45 new_esEs28(xuu50000, xuu51000, ty_Int) -> new_esEs10(xuu50000, xuu51000) 29.16/12.45 new_compare10(@0, @0) -> EQ 29.16/12.45 new_esEs28(xuu50000, xuu51000, ty_Integer) -> new_esEs11(xuu50000, xuu51000) 29.16/12.45 new_lt16(xuu50000, xuu51000, ty_Float) -> new_lt11(xuu50000, xuu51000) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, app(app(app(ty_@3, cgh), cha), chb)) -> new_ltEs17(xuu5000, xuu5100, cgh, cha, chb) 29.16/12.45 new_esEs20(xuu3110001, xuu6001, app(ty_Ratio, hf)) -> new_esEs15(xuu3110001, xuu6001, hf) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, ty_Float) -> new_ltEs14(xuu5000, xuu5100) 29.16/12.45 new_compare110(xuu190, xuu191, True, cca, ccb) -> LT 29.16/12.45 new_mkBalBranch6MkBalBranch30(xuu600, xuu61, xuu64, EmptyFM, True, h, ba, bb) -> error([]) 29.16/12.45 new_esEs26(xuu50000, xuu51000, ty_Double) -> new_esEs14(xuu50000, xuu51000) 29.16/12.45 new_addToFM_C16(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba, bb) -> new_mkBalBranch0(xuu600, xuu61, xuu63, new_addToFM_C0(xuu64, Left(xuu311000), xuu31101, h, ba, bb), h, ba, bb) 29.16/12.45 new_compare5(xuu50000, xuu51000, app(ty_Maybe, be)) -> new_compare9(xuu50000, xuu51000, be) 29.16/12.45 new_esEs32(xuu39, xuu34, ty_Float) -> new_esEs9(xuu39, xuu34) 29.16/12.45 new_ltEs5(LT, GT) -> True 29.16/12.45 new_ltEs20(xuu50001, xuu51001, ty_Float) -> new_ltEs14(xuu50001, xuu51001) 29.16/12.45 new_ltEs7(xuu5000, xuu5100, dd) -> new_fsEs(new_compare16(xuu5000, xuu5100, dd)) 29.16/12.45 new_primPlusNat1(Succ(xuu53200), Succ(xuu13400)) -> Succ(Succ(new_primPlusNat1(xuu53200, xuu13400))) 29.16/12.45 new_compare19(xuu50000, xuu51000, True) -> LT 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, dae), cac) -> new_esEs4(xuu3110000, xuu6000, dae) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, ty_@0) -> new_esEs12(xuu3110001, xuu6001) 29.16/12.45 new_primCmpNat0(Zero, Succ(xuu5100)) -> LT 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.45 new_esEs26(xuu50000, xuu51000, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs7(xuu50000, xuu51000, fh, ga, gb) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, ty_Bool) -> new_ltEs9(xuu50002, xuu51002) 29.16/12.45 new_lt20(xuu50000, xuu51000, ty_Char) -> new_lt14(xuu50000, xuu51000) 29.16/12.45 new_esEs19(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), cae) -> new_asAs(new_esEs22(xuu3110000, xuu6000, cae), new_esEs19(xuu3110001, xuu6001, cae)) 29.16/12.45 new_esEs32(xuu39, xuu34, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs7(xuu39, xuu34, ee, ef, eg) 29.16/12.45 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 29.16/12.45 new_lt16(xuu50000, xuu51000, ty_@0) -> new_lt18(xuu50000, xuu51000) 29.16/12.45 new_primCmpNat0(Succ(xuu5000), Zero) -> GT 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_[], bcd)) -> new_esEs19(xuu3110000, xuu6000, bcd) 29.16/12.45 new_mkBalBranch6Size_r(xuu600, xuu61, xuu64, xuu53, h, ba, bb) -> new_sizeFM(xuu64, h, ba, bb) 29.16/12.45 new_pePe(False, xuu209) -> xuu209 29.16/12.45 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, ddg), ddh)) -> new_esEs6(xuu3110000, xuu6000, ddg, ddh) 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), cfa, app(ty_[], cfb)) -> new_ltEs8(xuu50000, xuu51000, cfb) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), app(ty_Maybe, cce)) -> new_ltEs10(xuu50000, xuu51000, cce) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) 29.16/12.45 new_esEs19([], [], cae) -> True 29.16/12.45 new_compare25(xuu500, xuu510, True, cgd, cge) -> EQ 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), cab, app(ty_Ratio, dcg)) -> new_esEs15(xuu3110000, xuu6000, dcg) 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.45 new_ltEs9(True, True) -> True 29.16/12.45 new_mkBalBranch6Size_r0(xuu600, xuu61, xuu64, xuu45, h, ba, bb) -> new_sizeFM(xuu64, h, ba, bb) 29.16/12.45 new_lt20(xuu50000, xuu51000, app(app(app(ty_@3, eah), eba), ebb)) -> new_lt9(xuu50000, xuu51000, eah, eba, ebb) 29.16/12.45 new_compare112(xuu183, xuu184, True, dg, dh) -> LT 29.16/12.45 new_esEs20(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 29.16/12.45 new_primMinusNat0(Succ(xuu53200), Succ(xuu13400)) -> new_primMinusNat0(xuu53200, xuu13400) 29.16/12.45 new_esEs26(xuu50000, xuu51000, ty_@0) -> new_esEs12(xuu50000, xuu51000) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, ty_Integer) -> new_ltEs11(xuu5000, xuu5100) 29.16/12.45 new_compare113(xuu50000, xuu51000, True, fg) -> LT 29.16/12.45 new_lt19(xuu50001, xuu51001, app(app(ty_Either, dha), dhb)) -> new_lt12(xuu50001, xuu51001, dha, dhb) 29.16/12.45 new_esEs27(xuu50001, xuu51001, ty_Float) -> new_esEs9(xuu50001, xuu51001) 29.16/12.45 new_compare16(:%(xuu50000, xuu50001), :%(xuu51000, xuu51001), ty_Int) -> new_compare6(new_sr(xuu50000, xuu51001), new_sr(xuu51000, xuu50001)) 29.16/12.45 new_esEs8(LT, EQ) -> False 29.16/12.45 new_esEs8(EQ, LT) -> False 29.16/12.45 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 29.16/12.45 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 29.16/12.45 new_esEs23(xuu3110002, xuu6002, app(ty_Maybe, bch)) -> new_esEs4(xuu3110002, xuu6002, bch) 29.16/12.45 new_esEs21(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, app(app(ty_@2, beh), bfa)) -> new_esEs6(xuu3110001, xuu6001, beh, bfa) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, ty_Integer) -> new_esEs11(xuu3110002, xuu6002) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), app(app(ty_Either, cea), ceb), cdf) -> new_ltEs12(xuu50000, xuu51000, cea, ceb) 29.16/12.45 new_mkBalBranch0(xuu600, xuu61, xuu45, xuu64, h, ba, bb) -> new_mkBalBranch6MkBalBranch50(xuu600, xuu61, xuu64, xuu45, new_esEs8(new_primCmpInt1(xuu45, xuu600, xuu61, xuu64, h, ba, bb), LT), h, ba, bb) 29.16/12.45 new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cad) -> new_asAs(new_esEs17(xuu3110000, xuu6000, cad), new_esEs16(xuu3110001, xuu6001, cad)) 29.16/12.45 new_esEs30(xuu311000, xuu600, ty_Int) -> new_esEs10(xuu311000, xuu600) 29.16/12.45 new_lt16(xuu50000, xuu51000, app(app(app(ty_@3, fh), ga), gb)) -> new_lt9(xuu50000, xuu51000, fh, ga, gb) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, app(app(ty_Either, cfa), cdf)) -> new_ltEs12(xuu5000, xuu5100, cfa, cdf) 29.16/12.45 new_esEs29(xuu22, xuu17, ty_Char) -> new_esEs18(xuu22, xuu17) 29.16/12.45 new_esEs31(xuu311000, xuu600, ty_Float) -> new_esEs9(xuu311000, xuu600) 29.16/12.45 new_ltEs16(@2(xuu50000, xuu50001), @2(xuu51000, xuu51001), cgf, cgg) -> new_pePe(new_lt16(xuu50000, xuu51000, cgf), new_asAs(new_esEs26(xuu50000, xuu51000, cgf), new_ltEs20(xuu50001, xuu51001, cgg))) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, app(app(ty_Either, bef), beg)) -> new_esEs5(xuu3110001, xuu6001, bef, beg) 29.16/12.45 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.45 new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT 29.16/12.45 new_emptyFM(h, ba, bb) -> EmptyFM 29.16/12.45 new_ltEs20(xuu50001, xuu51001, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_ltEs17(xuu50001, xuu51001, dfb, dfc, dfd) 29.16/12.45 new_esEs21(xuu3110000, xuu6000, app(ty_[], bba)) -> new_esEs19(xuu3110000, xuu6000, bba) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, ty_Double) -> new_ltEs13(xuu50002, xuu51002) 29.16/12.45 new_compare9(xuu50000, xuu51000, fg) -> new_compare27(xuu50000, xuu51000, new_esEs4(xuu50000, xuu51000, fg), fg) 29.16/12.45 new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.45 new_mkBalBranch6MkBalBranch40(xuu600, xuu61, EmptyFM, xuu45, True, h, ba, bb) -> error([]) 29.16/12.45 new_esEs31(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) 29.16/12.45 new_lt6(xuu50000, xuu51000) -> new_esEs8(new_compare8(xuu50000, xuu51000), LT) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, ty_Char) -> new_ltEs15(xuu50002, xuu51002) 29.16/12.45 new_addToFM_C23(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba, bb) -> new_addToFM_C14(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Right(xuu311000), Left(xuu600), False, h, ba), GT), h, ba, bb) 29.16/12.45 new_lt17(xuu500, xuu510) -> new_esEs8(new_compare6(xuu500, xuu510), LT) 29.16/12.45 new_esEs26(xuu50000, xuu51000, app(app(ty_@2, de), df)) -> new_esEs6(xuu50000, xuu51000, de, df) 29.16/12.45 new_esEs32(xuu39, xuu34, app(app(ty_Either, eh), fa)) -> new_esEs5(xuu39, xuu34, eh, fa) 29.16/12.45 new_esEs28(xuu50000, xuu51000, ty_@0) -> new_esEs12(xuu50000, xuu51000) 29.16/12.45 new_esEs29(xuu22, xuu17, ty_Int) -> new_esEs10(xuu22, xuu17) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_esEs7(xuu3110000, xuu6000, ddb, ddc, ddd) 29.16/12.45 new_compare28(xuu50000, xuu51000, False, fh, ga, gb) -> new_compare114(xuu50000, xuu51000, new_ltEs17(xuu50000, xuu51000, fh, ga, gb), fh, ga, gb) 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, bcc)) -> new_esEs15(xuu3110000, xuu6000, bcc) 29.16/12.45 new_primMulNat0(Succ(xuu311000100), Zero) -> Zero 29.16/12.45 new_primMulNat0(Zero, Succ(xuu600000)) -> Zero 29.16/12.45 new_primPlusNat0(Zero, xuu600000) -> Succ(xuu600000) 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), cfa, ty_Int) -> new_ltEs6(xuu50000, xuu51000) 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.45 new_primPlusInt(Pos(xuu5320), Pos(xuu1340)) -> Pos(new_primPlusNat1(xuu5320, xuu1340)) 29.16/12.45 new_lt19(xuu50001, xuu51001, ty_Ordering) -> new_lt13(xuu50001, xuu51001) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, ty_Bool) -> new_ltEs9(xuu5000, xuu5100) 29.16/12.45 new_esEs31(xuu311000, xuu600, app(ty_Maybe, caf)) -> new_esEs4(xuu311000, xuu600, caf) 29.16/12.45 new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 29.16/12.45 new_ltEs5(EQ, EQ) -> True 29.16/12.45 new_compare26(xuu50000, xuu51000, False) -> new_compare111(xuu50000, xuu51000, new_ltEs9(xuu50000, xuu51000)) 29.16/12.45 new_addToFM_C15(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, ea, eb, ec) -> new_mkBalBranch0(xuu34, xuu35, xuu37, new_addToFM_C0(xuu38, Right(xuu39), xuu40, ea, eb, ec), ea, eb, ec) 29.16/12.45 new_esEs26(xuu50000, xuu51000, ty_Integer) -> new_esEs11(xuu50000, xuu51000) 29.16/12.45 new_primCmpInt1(EmptyFM, xuu600, xuu61, xuu64, h, ba, bb) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r0(xuu600, xuu61, xuu64, EmptyFM, h, ba, bb)), Pos(Succ(Succ(Zero)))) 29.16/12.45 new_lt16(xuu50000, xuu51000, app(app(ty_@2, de), df)) -> new_lt5(xuu50000, xuu51000, de, df) 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, dba), dbb), cac) -> new_esEs5(xuu3110000, xuu6000, dba, dbb) 29.16/12.45 new_esEs32(xuu39, xuu34, ty_Int) -> new_esEs10(xuu39, xuu34) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), cab, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs7(xuu3110000, xuu6000, dbh, dca, dcb) 29.16/12.45 new_esEs21(xuu3110000, xuu6000, app(app(ty_Either, bad), bae)) -> new_esEs5(xuu3110000, xuu6000, bad, bae) 29.16/12.45 new_lt16(xuu50000, xuu51000, app(ty_Maybe, fg)) -> new_lt7(xuu50000, xuu51000, fg) 29.16/12.45 new_esEs8(LT, LT) -> True 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_[], dbf), cac) -> new_esEs19(xuu3110000, xuu6000, dbf) 29.16/12.45 new_compare111(xuu50000, xuu51000, True) -> LT 29.16/12.45 new_lt12(xuu50000, xuu51000, db, dc) -> new_esEs8(new_compare11(xuu50000, xuu51000, db, dc), LT) 29.16/12.45 new_compare19(xuu50000, xuu51000, False) -> GT 29.16/12.45 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, dea)) -> new_esEs15(xuu3110000, xuu6000, dea) 29.16/12.45 new_esEs26(xuu50000, xuu51000, ty_Bool) -> new_esEs13(xuu50000, xuu51000) 29.16/12.45 new_mkBalBranch6MkBalBranch11(xuu600, xuu61, xuu64, xuu450, xuu451, xuu452, xuu453, EmptyFM, False, h, ba, bb) -> error([]) 29.16/12.45 new_esEs20(xuu3110001, xuu6001, app(ty_Maybe, gf)) -> new_esEs4(xuu3110001, xuu6001, gf) 29.16/12.45 new_primCmpInt0(EmptyFM, xuu600, xuu61, xuu64, h, ba, bb) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r(xuu600, xuu61, xuu64, EmptyFM, h, ba, bb)), Pos(Succ(Succ(Zero)))) 29.16/12.45 new_lt15(xuu50000, xuu51000) -> new_esEs8(new_compare12(xuu50000, xuu51000), LT) 29.16/12.45 new_primPlusNat1(Succ(xuu53200), Zero) -> Succ(xuu53200) 29.16/12.45 new_primPlusNat1(Zero, Succ(xuu13400)) -> Succ(xuu13400) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs7(xuu3110001, xuu6001, bec, bed, bee) 29.16/12.45 new_lt16(xuu50000, xuu51000, ty_Integer) -> new_lt6(xuu50000, xuu51000) 29.16/12.45 new_esEs30(xuu311000, xuu600, ty_Float) -> new_esEs9(xuu311000, xuu600) 29.16/12.45 new_lt9(xuu50000, xuu51000, fh, ga, gb) -> new_esEs8(new_compare17(xuu50000, xuu51000, fh, ga, gb), LT) 29.16/12.45 new_addToFM_C16(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba, bb) -> Branch(Left(xuu311000), new_addListToFM0(xuu61, xuu31101, bb), xuu62, xuu63, xuu64) 29.16/12.45 new_esEs30(xuu311000, xuu600, ty_Char) -> new_esEs18(xuu311000, xuu600) 29.16/12.45 new_esEs13(True, True) -> True 29.16/12.45 new_esEs20(xuu3110001, xuu6001, app(ty_[], hg)) -> new_esEs19(xuu3110001, xuu6001, hg) 29.16/12.45 new_ltEs20(xuu50001, xuu51001, ty_Double) -> new_ltEs13(xuu50001, xuu51001) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Double, cdf) -> new_ltEs13(xuu50000, xuu51000) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), cab, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, app(ty_Ratio, bdh)) -> new_esEs15(xuu3110002, xuu6002, bdh) 29.16/12.45 new_esEs28(xuu50000, xuu51000, ty_Double) -> new_esEs14(xuu50000, xuu51000) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, ty_Char) -> new_ltEs15(xuu5000, xuu5100) 29.16/12.45 new_esEs20(xuu3110001, xuu6001, ty_Char) -> new_esEs18(xuu3110001, xuu6001) 29.16/12.45 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Ordering) -> new_ltEs5(xuu50000, xuu51000) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), cab, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.45 new_addToFM_C26(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba, bb) -> new_addToFM_C16(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Left(xuu311000), Right(xuu600), False, h, ba), GT), h, ba, bb) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs7(xuu3110002, xuu6002, bda, bdb, bdc) 29.16/12.45 new_compare115(xuu50000, xuu51000, False, de, df) -> GT 29.16/12.45 new_mkBalBranch6MkBalBranch3(xuu600, xuu61, xuu64, xuu53, False, h, ba, bb) -> new_mkBranch(Succ(Zero), Left(xuu600), xuu61, xuu53, xuu64, app(app(ty_Either, h), ba), bb) 29.16/12.45 new_ltEs5(LT, LT) -> True 29.16/12.45 new_esEs21(xuu3110000, xuu6000, app(ty_Maybe, hh)) -> new_esEs4(xuu3110000, xuu6000, hh) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.45 new_mkBalBranch6MkBalBranch110(xuu600, xuu61, xuu64, xuu530, xuu531, xuu532, xuu533, xuu534, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu530, xuu531, xuu533, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Left(xuu600), xuu61, xuu534, xuu64, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) 29.16/12.45 new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.45 new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat0(Zero, Succ(xuu5100)) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, ty_Char) -> new_ltEs15(xuu5000, xuu5100) 29.16/12.45 new_esEs29(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) 29.16/12.45 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Bool, cdf) -> new_ltEs9(xuu50000, xuu51000) 29.16/12.45 new_addListToFM0(xuu18, xuu23, da) -> xuu23 29.16/12.45 new_esEs25(xuu3110000, xuu6000, app(app(ty_@2, bgb), bgc)) -> new_esEs6(xuu3110000, xuu6000, bgb, bgc) 29.16/12.45 new_esEs5(Right(xuu3110000), Right(xuu6000), cab, app(app(ty_@2, dce), dcf)) -> new_esEs6(xuu3110000, xuu6000, dce, dcf) 29.16/12.45 new_mkBalBranch6MkBalBranch5(xuu600, xuu61, xuu64, xuu53, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch4(xuu600, xuu61, xuu64, xuu53, new_gt(new_mkBalBranch6Size_r(xuu600, xuu61, xuu64, xuu53, h, ba, bb), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu600, xuu61, xuu64, xuu53, h, ba, bb))), h, ba, bb) 29.16/12.45 new_lt16(xuu50000, xuu51000, ty_Bool) -> new_lt8(xuu50000, xuu51000) 29.16/12.45 new_compare([], :(xuu51000, xuu51001), bc) -> LT 29.16/12.45 new_mkBalBranch6MkBalBranch11(xuu600, xuu61, xuu64, xuu450, xuu451, xuu452, xuu453, xuu454, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu450, xuu451, xuu453, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Right(xuu600), xuu61, xuu454, xuu64, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) 29.16/12.45 new_ltEs5(LT, EQ) -> True 29.16/12.45 new_esEs32(xuu39, xuu34, app(ty_Maybe, ed)) -> new_esEs4(xuu39, xuu34, ed) 29.16/12.45 new_addToFM_C0(Branch(Left(xuu600), xuu61, xuu62, xuu63, xuu64), Left(xuu311000), xuu31101, h, ba, bb) -> new_addToFM_C25(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Left(xuu311000), Left(xuu600), new_esEs30(xuu311000, xuu600, h), h, ba), LT), h, ba, bb) 29.16/12.45 new_esEs31(xuu311000, xuu600, ty_Int) -> new_esEs10(xuu311000, xuu600) 29.16/12.45 new_primCmpInt1(Branch(xuu450, xuu451, xuu452, xuu453, xuu454), xuu600, xuu61, xuu64, h, ba, bb) -> new_primCmpInt(new_primPlusInt(xuu452, new_mkBalBranch6Size_r0(xuu600, xuu61, xuu64, Branch(xuu450, xuu451, xuu452, xuu453, xuu454), h, ba, bb)), Pos(Succ(Succ(Zero)))) 29.16/12.45 new_compare5(xuu50000, xuu51000, app(ty_Ratio, cb)) -> new_compare16(xuu50000, xuu51000, cb) 29.16/12.45 new_ltEs19(xuu5000, xuu5100, ty_Double) -> new_ltEs13(xuu5000, xuu5100) 29.16/12.45 new_esEs31(xuu311000, xuu600, ty_Char) -> new_esEs18(xuu311000, xuu600) 29.16/12.45 new_esEs31(xuu311000, xuu600, app(ty_[], cbg)) -> new_esEs19(xuu311000, xuu600, cbg) 29.16/12.45 new_compare12(Double(xuu50000, Pos(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.45 new_compare12(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, dde), ddf)) -> new_esEs5(xuu3110000, xuu6000, dde, ddf) 29.16/12.45 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, bbc)) -> new_esEs4(xuu3110000, xuu6000, bbc) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 29.16/12.45 new_esEs29(xuu22, xuu17, ty_Float) -> new_esEs9(xuu22, xuu17) 29.16/12.45 new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bce, bcf, bcg) -> new_asAs(new_esEs25(xuu3110000, xuu6000, bce), new_asAs(new_esEs24(xuu3110001, xuu6001, bcf), new_esEs23(xuu3110002, xuu6002, bcg))) 29.16/12.45 new_compare6(xuu50, xuu51) -> new_primCmpInt(xuu50, xuu51) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, app(app(app(ty_@3, dgd), dge), dgf)) -> new_ltEs17(xuu50002, xuu51002, dgd, dge, dgf) 29.16/12.45 new_esEs25(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.45 new_esEs27(xuu50001, xuu51001, ty_@0) -> new_esEs12(xuu50001, xuu51001) 29.16/12.45 new_lt20(xuu50000, xuu51000, ty_Integer) -> new_lt6(xuu50000, xuu51000) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, ty_Bool) -> new_ltEs9(xuu5000, xuu5100) 29.16/12.45 new_compare8(Integer(xuu50000), Integer(xuu51000)) -> new_primCmpInt(xuu50000, xuu51000) 29.16/12.45 new_primMulInt(Pos(xuu31100010), Neg(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.45 new_primMulInt(Neg(xuu31100010), Pos(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 29.16/12.45 new_ltEs12(Right(xuu50000), Right(xuu51000), cfa, app(app(ty_Either, cfd), cfe)) -> new_ltEs12(xuu50000, xuu51000, cfd, cfe) 29.16/12.45 new_ltEs21(xuu50002, xuu51002, app(ty_Ratio, dgc)) -> new_ltEs7(xuu50002, xuu51002, dgc) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.45 new_ltEs18(xuu5000, xuu5100, app(ty_Maybe, ccc)) -> new_ltEs10(xuu5000, xuu5100, ccc) 29.16/12.45 new_mkBalBranch6MkBalBranch01(xuu600, xuu61, xuu640, xuu641, xuu642, EmptyFM, xuu644, xuu53, False, h, ba, bb) -> error([]) 29.16/12.45 new_esEs23(xuu3110002, xuu6002, app(app(ty_@2, bdf), bdg)) -> new_esEs6(xuu3110002, xuu6002, bdf, bdg) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.45 new_esEs30(xuu311000, xuu600, app(ty_Maybe, bbb)) -> new_esEs4(xuu311000, xuu600, bbb) 29.16/12.45 new_ltEs12(Right(xuu50000), Left(xuu51000), cfa, cdf) -> False 29.16/12.45 new_esEs24(xuu3110001, xuu6001, app(ty_Maybe, beb)) -> new_esEs4(xuu3110001, xuu6001, beb) 29.16/12.45 new_lt8(xuu50000, xuu51000) -> new_esEs8(new_compare18(xuu50000, xuu51000), LT) 29.16/12.45 new_esEs26(xuu50000, xuu51000, app(ty_Ratio, gc)) -> new_esEs15(xuu50000, xuu51000, gc) 29.16/12.45 new_lt5(xuu50000, xuu51000, de, df) -> new_esEs8(new_compare15(xuu50000, xuu51000, de, df), LT) 29.16/12.45 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.45 new_lt20(xuu50000, xuu51000, ty_Float) -> new_lt11(xuu50000, xuu51000) 29.16/12.45 new_compare13(Float(xuu50000, Pos(xuu500010)), Float(xuu51000, Pos(xuu510010))) -> new_compare6(new_sr(xuu50000, Pos(xuu510010)), new_sr(Pos(xuu500010), xuu51000)) 29.16/12.45 new_esEs19(:(xuu3110000, xuu3110001), [], cae) -> False 29.16/12.45 new_esEs19([], :(xuu6000, xuu6001), cae) -> False 29.16/12.45 new_primPlusInt(Neg(xuu5320), Neg(xuu1340)) -> Neg(new_primPlusNat1(xuu5320, xuu1340)) 29.16/12.45 new_sr0(Integer(xuu500000), Integer(xuu510010)) -> Integer(new_primMulInt(xuu500000, xuu510010)) 29.16/12.45 new_esEs24(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 29.16/12.45 new_compare25(Left(xuu5000), Left(xuu5100), False, cgd, cge) -> new_compare112(xuu5000, xuu5100, new_ltEs18(xuu5000, xuu5100, cgd), cgd, cge) 29.16/12.45 new_esEs13(False, False) -> True 29.16/12.45 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Double, cac) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.46 new_esEs30(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) 29.16/12.46 new_compare5(xuu50000, xuu51000, ty_Float) -> new_compare13(xuu50000, xuu51000) 29.16/12.46 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Char) -> new_ltEs15(xuu50000, xuu51000) 29.16/12.46 new_addToFM_C0(Branch(Left(xuu600), xuu61, xuu62, xuu63, xuu64), Right(xuu311000), xuu31101, h, ba, bb) -> new_addToFM_C23(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Right(xuu311000), Left(xuu600), False, h, ba), LT), h, ba, bb) 29.16/12.46 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Char, cdf) -> new_ltEs15(xuu50000, xuu51000) 29.16/12.46 new_ltEs12(Right(xuu50000), Right(xuu51000), cfa, app(app(ty_@2, cff), cfg)) -> new_ltEs16(xuu50000, xuu51000, cff, cfg) 29.16/12.46 new_esEs28(xuu50000, xuu51000, app(app(app(ty_@3, eah), eba), ebb)) -> new_esEs7(xuu50000, xuu51000, eah, eba, ebb) 29.16/12.46 new_ltEs20(xuu50001, xuu51001, ty_Char) -> new_ltEs15(xuu50001, xuu51001) 29.16/12.46 new_compare25(Left(xuu5000), Right(xuu5100), False, cgd, cge) -> LT 29.16/12.46 new_ltEs18(xuu5000, xuu5100, ty_Double) -> new_ltEs13(xuu5000, xuu5100) 29.16/12.46 new_esEs32(xuu39, xuu34, app(ty_[], ff)) -> new_esEs19(xuu39, xuu34, ff) 29.16/12.46 new_ltEs21(xuu50002, xuu51002, app(app(ty_Either, dfg), dfh)) -> new_ltEs12(xuu50002, xuu51002, dfg, dfh) 29.16/12.46 new_asAs(True, xuu178) -> xuu178 29.16/12.46 new_esEs32(xuu39, xuu34, ty_Char) -> new_esEs18(xuu39, xuu34) 29.16/12.46 new_esEs28(xuu50000, xuu51000, ty_Float) -> new_esEs9(xuu50000, xuu51000) 29.16/12.46 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.46 new_lt20(xuu50000, xuu51000, ty_Ordering) -> new_lt13(xuu50000, xuu51000) 29.16/12.46 new_esEs32(xuu39, xuu34, app(ty_Ratio, fd)) -> new_esEs15(xuu39, xuu34, fd) 29.16/12.46 new_ltEs5(GT, LT) -> False 29.16/12.46 new_mkBalBranch6MkBalBranch3(xuu600, xuu61, xuu64, Branch(xuu530, xuu531, xuu532, xuu533, xuu534), True, h, ba, bb) -> new_mkBalBranch6MkBalBranch110(xuu600, xuu61, xuu64, xuu530, xuu531, xuu532, xuu533, xuu534, new_lt17(new_sizeFM(xuu534, h, ba, bb), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu533, h, ba, bb))), h, ba, bb) 29.16/12.46 new_addToFM_C0(EmptyFM, xuu31100, xuu31101, h, ba, bb) -> Branch(xuu31100, xuu31101, Pos(Succ(Zero)), new_emptyFM(h, ba, bb), new_emptyFM(h, ba, bb)) 29.16/12.46 new_esEs5(Right(xuu3110000), Right(xuu6000), cab, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.46 new_esEs21(xuu3110000, xuu6000, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.46 new_esEs21(xuu3110000, xuu6000, app(ty_Ratio, bah)) -> new_esEs15(xuu3110000, xuu6000, bah) 29.16/12.46 new_lt20(xuu50000, xuu51000, ty_Bool) -> new_lt8(xuu50000, xuu51000) 29.16/12.46 new_esEs26(xuu50000, xuu51000, ty_Char) -> new_esEs18(xuu50000, xuu51000) 29.16/12.46 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 29.16/12.46 new_lt20(xuu50000, xuu51000, ty_Int) -> new_lt17(xuu50000, xuu51000) 29.16/12.46 new_primPlusInt(Pos(xuu5320), Neg(xuu1340)) -> new_primMinusNat0(xuu5320, xuu1340) 29.16/12.46 new_primPlusInt(Neg(xuu5320), Pos(xuu1340)) -> new_primMinusNat0(xuu1340, xuu5320) 29.16/12.46 new_mkBalBranch6MkBalBranch110(xuu600, xuu61, xuu64, xuu530, xuu531, xuu532, xuu533, Branch(xuu5340, xuu5341, xuu5342, xuu5343, xuu5344), False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu5340, xuu5341, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu530, xuu531, xuu533, xuu5343, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Left(xuu600), xuu61, xuu5344, xuu64, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) 29.16/12.46 new_esEs26(xuu50000, xuu51000, app(ty_[], cbh)) -> new_esEs19(xuu50000, xuu51000, cbh) 29.16/12.46 new_lt19(xuu50001, xuu51001, ty_Integer) -> new_lt6(xuu50001, xuu51001) 29.16/12.46 new_ltEs8(xuu5000, xuu5100, bc) -> new_fsEs(new_compare(xuu5000, xuu5100, bc)) 29.16/12.46 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, bbg), bbh)) -> new_esEs5(xuu3110000, xuu6000, bbg, bbh) 29.16/12.46 new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.46 new_primCmpInt(Pos(Succ(xuu5000)), Pos(xuu510)) -> new_primCmpNat0(Succ(xuu5000), xuu510) 29.16/12.46 new_ltEs19(xuu5000, xuu5100, app(app(app(ty_@3, dab), dac), dad)) -> new_ltEs17(xuu5000, xuu5100, dab, dac, dad) 29.16/12.46 new_ltEs18(xuu5000, xuu5100, app(ty_[], bc)) -> new_ltEs8(xuu5000, xuu5100, bc) 29.16/12.46 new_esEs29(xuu22, xuu17, app(app(ty_Either, bhd), bhe)) -> new_esEs5(xuu22, xuu17, bhd, bhe) 29.16/12.46 new_ltEs21(xuu50002, xuu51002, app(app(ty_@2, dga), dgb)) -> new_ltEs16(xuu50002, xuu51002, dga, dgb) 29.16/12.46 new_esEs5(Right(xuu3110000), Right(xuu6000), cab, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 29.16/12.46 new_primCompAux00(xuu223, EQ) -> xuu223 29.16/12.46 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Ordering, cdf) -> new_ltEs5(xuu50000, xuu51000) 29.16/12.46 new_ltEs4(xuu5000, xuu5100) -> new_fsEs(new_compare10(xuu5000, xuu5100)) 29.16/12.46 new_lt10(xuu50000, xuu51000, gc) -> new_esEs8(new_compare16(xuu50000, xuu51000, gc), LT) 29.16/12.46 new_sr(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) 29.16/12.46 new_lt20(xuu50000, xuu51000, app(app(ty_Either, eac), ead)) -> new_lt12(xuu50000, xuu51000, eac, ead) 29.16/12.46 new_esEs5(Right(xuu3110000), Right(xuu6000), cab, app(ty_[], dch)) -> new_esEs19(xuu3110000, xuu6000, dch) 29.16/12.46 new_esEs27(xuu50001, xuu51001, app(app(ty_@2, dhc), dhd)) -> new_esEs6(xuu50001, xuu51001, dhc, dhd) 29.16/12.46 new_esEs27(xuu50001, xuu51001, ty_Bool) -> new_esEs13(xuu50001, xuu51001) 29.16/12.46 new_primCmpInt0(Branch(xuu530, xuu531, xuu532, xuu533, xuu534), xuu600, xuu61, xuu64, h, ba, bb) -> new_primCmpInt(new_primPlusInt(xuu532, new_mkBalBranch6Size_r(xuu600, xuu61, xuu64, Branch(xuu530, xuu531, xuu532, xuu533, xuu534), h, ba, bb)), Pos(Succ(Succ(Zero)))) 29.16/12.46 new_ltEs9(False, False) -> True 29.16/12.46 new_primMulNat0(Zero, Zero) -> Zero 29.16/12.46 new_ltEs10(Just(xuu50000), Just(xuu51000), app(ty_Ratio, cdb)) -> new_ltEs7(xuu50000, xuu51000, cdb) 29.16/12.46 new_gt(xuu127, xuu126) -> new_esEs8(new_compare6(xuu127, xuu126), GT) 29.16/12.46 new_esEs27(xuu50001, xuu51001, ty_Ordering) -> new_esEs8(xuu50001, xuu51001) 29.16/12.46 new_esEs23(xuu3110002, xuu6002, ty_@0) -> new_esEs12(xuu3110002, xuu6002) 29.16/12.46 new_ltEs19(xuu5000, xuu5100, app(ty_Ratio, daa)) -> new_ltEs7(xuu5000, xuu5100, daa) 29.16/12.46 new_sizeFM(Branch(xuu640, xuu641, xuu642, xuu643, xuu644), h, ba, bb) -> xuu642 29.16/12.46 new_ltEs19(xuu5000, xuu5100, app(ty_[], chc)) -> new_ltEs8(xuu5000, xuu5100, chc) 29.16/12.46 new_compare111(xuu50000, xuu51000, False) -> GT 29.16/12.46 new_ltEs20(xuu50001, xuu51001, ty_Bool) -> new_ltEs9(xuu50001, xuu51001) 29.16/12.46 new_lt19(xuu50001, xuu51001, ty_Int) -> new_lt17(xuu50001, xuu51001) 29.16/12.46 new_esEs28(xuu50000, xuu51000, app(ty_Maybe, eab)) -> new_esEs4(xuu50000, xuu51000, eab) 29.16/12.46 new_ltEs12(Left(xuu50000), Left(xuu51000), app(ty_Maybe, cdh), cdf) -> new_ltEs10(xuu50000, xuu51000, cdh) 29.16/12.46 new_ltEs20(xuu50001, xuu51001, app(app(ty_@2, deg), deh)) -> new_ltEs16(xuu50001, xuu51001, deg, deh) 29.16/12.46 new_compare28(xuu50000, xuu51000, True, fh, ga, gb) -> EQ 29.16/12.46 new_esEs4(Nothing, Nothing, bbb) -> True 29.16/12.46 new_esEs20(xuu3110001, xuu6001, app(app(ty_Either, hb), hc)) -> new_esEs5(xuu3110001, xuu6001, hb, hc) 29.16/12.46 new_esEs20(xuu3110001, xuu6001, ty_Float) -> new_esEs9(xuu3110001, xuu6001) 29.16/12.46 new_esEs27(xuu50001, xuu51001, ty_Integer) -> new_esEs11(xuu50001, xuu51001) 29.16/12.46 new_esEs4(Nothing, Just(xuu6000), bbb) -> False 29.16/12.46 new_esEs4(Just(xuu3110000), Nothing, bbb) -> False 29.16/12.46 new_esEs5(Right(xuu3110000), Right(xuu6000), cab, app(app(ty_Either, dcc), dcd)) -> new_esEs5(xuu3110000, xuu6000, dcc, dcd) 29.16/12.46 new_mkBalBranch6MkBalBranch50(xuu600, xuu61, xuu64, xuu45, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch40(xuu600, xuu61, xuu64, xuu45, new_gt(new_mkBalBranch6Size_r0(xuu600, xuu61, xuu64, xuu45, h, ba, bb), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l0(xuu600, xuu61, xuu64, xuu45, h, ba, bb))), h, ba, bb) 29.16/12.46 new_lt20(xuu50000, xuu51000, ty_@0) -> new_lt18(xuu50000, xuu51000) 29.16/12.46 new_esEs27(xuu50001, xuu51001, app(ty_[], dgg)) -> new_esEs19(xuu50001, xuu51001, dgg) 29.16/12.46 new_addListToFM_CAdd(xuu6, @2(xuu31100, xuu31101), h, ba, bb) -> new_addToFM_C0(xuu6, xuu31100, xuu31101, h, ba, bb) 29.16/12.46 new_ltEs5(EQ, LT) -> False 29.16/12.46 new_compare14(Char(xuu50000), Char(xuu51000)) -> new_primCmpNat0(xuu50000, xuu51000) 29.16/12.46 new_ltEs19(xuu5000, xuu5100, app(app(ty_Either, che), chf)) -> new_ltEs12(xuu5000, xuu5100, che, chf) 29.16/12.46 new_lt19(xuu50001, xuu51001, app(app(app(ty_@3, dhf), dhg), dhh)) -> new_lt9(xuu50001, xuu51001, dhf, dhg, dhh) 29.16/12.46 new_lt19(xuu50001, xuu51001, ty_Bool) -> new_lt8(xuu50001, xuu51001) 29.16/12.46 new_esEs28(xuu50000, xuu51000, app(app(ty_@2, eae), eaf)) -> new_esEs6(xuu50000, xuu51000, eae, eaf) 29.16/12.46 new_esEs17(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.46 new_mkBalBranch6MkBalBranch010(xuu600, xuu61, xuu640, xuu641, xuu642, Branch(xuu6430, xuu6431, xuu6432, xuu6433, xuu6434), xuu644, xuu45, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu6430, xuu6431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Right(xuu600), xuu61, xuu45, xuu6433, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu640, xuu641, xuu6434, xuu644, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) 29.16/12.46 new_ltEs12(Right(xuu50000), Right(xuu51000), cfa, ty_Float) -> new_ltEs14(xuu50000, xuu51000) 29.16/12.46 new_esEs32(xuu39, xuu34, ty_Ordering) -> new_esEs8(xuu39, xuu34) 29.16/12.46 new_ltEs12(Left(xuu50000), Left(xuu51000), app(app(app(ty_@3, cef), ceg), ceh), cdf) -> new_ltEs17(xuu50000, xuu51000, cef, ceg, ceh) 29.16/12.46 new_ltEs12(Right(xuu50000), Right(xuu51000), cfa, ty_Integer) -> new_ltEs11(xuu50000, xuu51000) 29.16/12.46 new_ltEs9(True, False) -> False 29.16/12.46 new_ltEs19(xuu5000, xuu5100, app(app(ty_@2, chg), chh)) -> new_ltEs16(xuu5000, xuu5100, chg, chh) 29.16/12.46 new_ltEs20(xuu50001, xuu51001, app(ty_[], dec)) -> new_ltEs8(xuu50001, xuu51001, dec) 29.16/12.46 new_ltEs12(Right(xuu50000), Right(xuu51000), cfa, ty_@0) -> new_ltEs4(xuu50000, xuu51000) 29.16/12.46 new_esEs20(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) 29.16/12.46 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 29.16/12.46 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 29.16/12.46 new_esEs11(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 29.16/12.46 new_esEs16(xuu3110001, xuu6001, ty_Integer) -> new_esEs11(xuu3110001, xuu6001) 29.16/12.46 new_compare([], [], bc) -> EQ 29.16/12.46 new_ltEs20(xuu50001, xuu51001, app(app(ty_Either, dee), def)) -> new_ltEs12(xuu50001, xuu51001, dee, def) 29.16/12.46 new_ltEs10(Just(xuu50000), Just(xuu51000), app(app(ty_Either, ccf), ccg)) -> new_ltEs12(xuu50000, xuu51000, ccf, ccg) 29.16/12.46 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 29.16/12.46 new_esEs13(False, True) -> False 29.16/12.46 new_esEs13(True, False) -> False 29.16/12.46 new_esEs16(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 29.16/12.46 new_ltEs10(Just(xuu50000), Just(xuu51000), app(app(ty_@2, cch), cda)) -> new_ltEs16(xuu50000, xuu51000, cch, cda) 29.16/12.46 new_mkBalBranch6MkBalBranch01(xuu600, xuu61, xuu640, xuu641, xuu642, xuu643, xuu644, xuu53, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Zero)), xuu640, xuu641, new_mkBranch(Succ(Succ(Succ(Zero))), Left(xuu600), xuu61, xuu53, xuu643, app(app(ty_Either, h), ba), bb), xuu644, app(app(ty_Either, h), ba), bb) 29.16/12.46 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.46 new_compare5(xuu50000, xuu51000, ty_@0) -> new_compare10(xuu50000, xuu51000) 29.16/12.46 new_esEs5(Right(xuu3110000), Right(xuu6000), cab, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.46 new_ltEs10(Just(xuu50000), Just(xuu51000), app(ty_[], ccd)) -> new_ltEs8(xuu50000, xuu51000, ccd) 29.16/12.46 new_compare24(xuu50000, xuu51000, True) -> EQ 29.16/12.46 new_ltEs12(Right(xuu50000), Right(xuu51000), cfa, app(ty_Maybe, cfc)) -> new_ltEs10(xuu50000, xuu51000, cfc) 29.16/12.46 new_compare114(xuu50000, xuu51000, True, fh, ga, gb) -> LT 29.16/12.46 new_esEs25(xuu3110000, xuu6000, app(app(ty_Either, bfh), bga)) -> new_esEs5(xuu3110000, xuu6000, bfh, bga) 29.16/12.46 new_esEs22(xuu3110000, xuu6000, app(ty_[], deb)) -> new_esEs19(xuu3110000, xuu6000, deb) 29.16/12.46 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 29.16/12.46 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 29.16/12.46 new_esEs26(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) 29.16/12.46 new_addToFM_C14(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba, bb) -> new_mkBalBranch(xuu600, xuu61, xuu63, new_addToFM_C0(xuu64, Right(xuu311000), xuu31101, h, ba, bb), h, ba, bb) 29.16/12.46 new_ltEs20(xuu50001, xuu51001, app(ty_Ratio, dfa)) -> new_ltEs7(xuu50001, xuu51001, dfa) 29.16/12.46 new_esEs25(xuu3110000, xuu6000, app(ty_Ratio, bgd)) -> new_esEs15(xuu3110000, xuu6000, bgd) 29.16/12.46 new_esEs31(xuu311000, xuu600, app(ty_Ratio, cbf)) -> new_esEs15(xuu311000, xuu600, cbf) 29.16/12.46 new_lt16(xuu50000, xuu51000, app(ty_Ratio, gc)) -> new_lt10(xuu50000, xuu51000, gc) 29.16/12.46 new_lt19(xuu50001, xuu51001, ty_@0) -> new_lt18(xuu50001, xuu51001) 29.16/12.46 new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat0(Succ(xuu5100), Zero) 29.16/12.46 new_esEs31(xuu311000, xuu600, app(app(ty_Either, cbb), cbc)) -> new_esEs5(xuu311000, xuu600, cbb, cbc) 29.16/12.46 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.46 new_esEs29(xuu22, xuu17, app(ty_Maybe, bgh)) -> new_esEs4(xuu22, xuu17, bgh) 29.16/12.46 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 29.16/12.46 new_ltEs6(xuu5000, xuu5100) -> new_fsEs(new_compare6(xuu5000, xuu5100)) 29.16/12.46 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, dbe), cac) -> new_esEs15(xuu3110000, xuu6000, dbe) 29.16/12.46 new_esEs27(xuu50001, xuu51001, ty_Char) -> new_esEs18(xuu50001, xuu51001) 29.16/12.46 new_esEs26(xuu50000, xuu51000, app(app(ty_Either, db), dc)) -> new_esEs5(xuu50000, xuu51000, db, dc) 29.16/12.46 new_lt11(xuu50000, xuu51000) -> new_esEs8(new_compare13(xuu50000, xuu51000), LT) 29.16/12.46 new_lt16(xuu50000, xuu51000, app(ty_[], cbh)) -> new_lt4(xuu50000, xuu51000, cbh) 29.16/12.46 new_sizeFM0(Branch(xuu2660, xuu2661, xuu2662, xuu2663, xuu2664), bgf, bgg) -> xuu2662 29.16/12.46 new_esEs23(xuu3110002, xuu6002, app(ty_[], bea)) -> new_esEs19(xuu3110002, xuu6002, bea) 29.16/12.46 new_ltEs19(xuu5000, xuu5100, app(ty_Maybe, chd)) -> new_ltEs10(xuu5000, xuu5100, chd) 29.16/12.46 new_compare25(Right(xuu5000), Right(xuu5100), False, cgd, cge) -> new_compare110(xuu5000, xuu5100, new_ltEs19(xuu5000, xuu5100, cge), cgd, cge) 29.16/12.46 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Bool) -> new_ltEs9(xuu50000, xuu51000) 29.16/12.46 new_esEs23(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) 29.16/12.46 new_compare112(xuu183, xuu184, False, dg, dh) -> GT 29.16/12.46 new_ltEs5(EQ, GT) -> True 29.16/12.46 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.46 new_esEs29(xuu22, xuu17, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs7(xuu22, xuu17, bha, bhb, bhc) 29.16/12.46 new_esEs31(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) 29.16/12.46 new_not(False) -> True 29.16/12.46 new_esEs21(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.46 new_esEs21(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.46 new_addToFM_C13(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, cf, cg, da) -> Branch(Left(xuu22), new_addListToFM0(xuu18, xuu23, da), xuu19, xuu20, xuu21) 29.16/12.46 new_esEs31(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 29.16/12.46 new_primCompAux0(xuu50000, xuu51000, xuu210, bc) -> new_primCompAux00(xuu210, new_compare5(xuu50000, xuu51000, bc)) 29.16/12.46 new_esEs20(xuu3110001, xuu6001, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs7(xuu3110001, xuu6001, gg, gh, ha) 29.16/12.46 new_mkBalBranch6MkBalBranch110(xuu600, xuu61, xuu64, xuu530, xuu531, xuu532, xuu533, EmptyFM, False, h, ba, bb) -> error([]) 29.16/12.46 new_esEs30(xuu311000, xuu600, app(app(ty_@2, gd), ge)) -> new_esEs6(xuu311000, xuu600, gd, ge) 29.16/12.46 new_compare25(Right(xuu5000), Left(xuu5100), False, cgd, cge) -> GT 29.16/12.46 new_ltEs5(GT, GT) -> True 29.16/12.46 new_ltEs17(@3(xuu50000, xuu50001, xuu50002), @3(xuu51000, xuu51001, xuu51002), cgh, cha, chb) -> new_pePe(new_lt20(xuu50000, xuu51000, cgh), new_asAs(new_esEs28(xuu50000, xuu51000, cgh), new_pePe(new_lt19(xuu50001, xuu51001, cha), new_asAs(new_esEs27(xuu50001, xuu51001, cha), new_ltEs21(xuu50002, xuu51002, chb))))) 29.16/12.46 new_esEs8(LT, GT) -> False 29.16/12.46 new_esEs8(GT, LT) -> False 29.16/12.46 new_ltEs15(xuu5000, xuu5100) -> new_fsEs(new_compare14(xuu5000, xuu5100)) 29.16/12.46 new_mkBalBranch6MkBalBranch010(xuu600, xuu61, xuu640, xuu641, xuu642, xuu643, xuu644, xuu45, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Zero)), xuu640, xuu641, new_mkBranch(Succ(Succ(Succ(Zero))), Right(xuu600), xuu61, xuu45, xuu643, app(app(ty_Either, h), ba), bb), xuu644, app(app(ty_Either, h), ba), bb) 29.16/12.46 new_lt20(xuu50000, xuu51000, app(app(ty_@2, eae), eaf)) -> new_lt5(xuu50000, xuu51000, eae, eaf) 29.16/12.46 new_compare5(xuu50000, xuu51000, ty_Integer) -> new_compare8(xuu50000, xuu51000) 29.16/12.46 new_esEs27(xuu50001, xuu51001, app(ty_Ratio, dhe)) -> new_esEs15(xuu50001, xuu51001, dhe) 29.16/12.46 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) 29.16/12.46 new_esEs5(Left(xuu3110000), Right(xuu6000), cab, cac) -> False 29.16/12.46 new_esEs5(Right(xuu3110000), Left(xuu6000), cab, cac) -> False 29.16/12.46 new_lt16(xuu50000, xuu51000, ty_Char) -> new_lt14(xuu50000, xuu51000) 29.16/12.46 new_ltEs21(xuu50002, xuu51002, ty_@0) -> new_ltEs4(xuu50002, xuu51002) 29.16/12.46 new_esEs30(xuu311000, xuu600, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs7(xuu311000, xuu600, bce, bcf, bcg) 29.16/12.46 new_esEs20(xuu3110001, xuu6001, app(app(ty_@2, hd), he)) -> new_esEs6(xuu3110001, xuu6001, hd, he) 29.16/12.46 new_mkBranch(xuu262, xuu263, xuu264, xuu265, xuu266, bgf, bgg) -> Branch(xuu263, xuu264, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(xuu265, bgf, bgg)), new_sizeFM0(xuu266, bgf, bgg)), xuu265, xuu266) 29.16/12.46 new_ltEs21(xuu50002, xuu51002, ty_Ordering) -> new_ltEs5(xuu50002, xuu51002) 29.16/12.46 new_esEs29(xuu22, xuu17, app(ty_Ratio, bhh)) -> new_esEs15(xuu22, xuu17, bhh) 29.16/12.46 new_esEs32(xuu39, xuu34, ty_@0) -> new_esEs12(xuu39, xuu34) 29.16/12.46 new_esEs25(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) 29.16/12.46 new_ltEs10(Just(xuu50000), Nothing, ccc) -> False 29.16/12.46 new_ltEs10(Nothing, Nothing, ccc) -> True 29.16/12.46 new_ltEs18(xuu5000, xuu5100, ty_Int) -> new_ltEs6(xuu5000, xuu5100) 29.16/12.46 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Int, cac) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.46 new_ltEs13(xuu5000, xuu5100) -> new_fsEs(new_compare12(xuu5000, xuu5100)) 29.16/12.46 new_compare113(xuu50000, xuu51000, False, fg) -> GT 29.16/12.46 new_esEs27(xuu50001, xuu51001, app(app(app(ty_@3, dhf), dhg), dhh)) -> new_esEs7(xuu50001, xuu51001, dhf, dhg, dhh) 29.16/12.46 new_esEs30(xuu311000, xuu600, app(app(ty_Either, cab), cac)) -> new_esEs5(xuu311000, xuu600, cab, cac) 29.16/12.46 new_addToFM_C26(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba, bb) -> new_mkBalBranch0(xuu600, xuu61, new_addToFM_C0(xuu63, Left(xuu311000), xuu31101, h, ba, bb), xuu64, h, ba, bb) 29.16/12.46 new_primPlusNat0(Succ(xuu1430), xuu600000) -> Succ(Succ(new_primPlusNat1(xuu1430, xuu600000))) 29.16/12.46 new_ltEs18(xuu5000, xuu5100, app(app(ty_@2, cgf), cgg)) -> new_ltEs16(xuu5000, xuu5100, cgf, cgg) 29.16/12.46 new_esEs29(xuu22, xuu17, app(app(ty_@2, bhf), bhg)) -> new_esEs6(xuu22, xuu17, bhf, bhg) 29.16/12.46 new_compare13(Float(xuu50000, Neg(xuu500010)), Float(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.46 new_ltEs12(Right(xuu50000), Right(xuu51000), cfa, ty_Bool) -> new_ltEs9(xuu50000, xuu51000) 29.16/12.46 new_esEs24(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 29.16/12.46 new_esEs10(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 29.16/12.46 new_ltEs12(Left(xuu50000), Left(xuu51000), app(ty_[], cdg), cdf) -> new_ltEs8(xuu50000, xuu51000, cdg) 29.16/12.46 new_ltEs21(xuu50002, xuu51002, app(ty_[], dfe)) -> new_ltEs8(xuu50002, xuu51002, dfe) 29.16/12.46 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 29.16/12.46 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 29.16/12.46 new_primPlusNat1(Zero, Zero) -> Zero 29.16/12.46 new_compare5(xuu50000, xuu51000, app(app(app(ty_@3, cc), cd), ce)) -> new_compare17(xuu50000, xuu51000, cc, cd, ce) 29.16/12.46 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.46 new_ltEs12(Left(xuu50000), Left(xuu51000), app(app(ty_@2, cec), ced), cdf) -> new_ltEs16(xuu50000, xuu51000, cec, ced) 29.16/12.46 new_esEs25(xuu3110000, xuu6000, ty_Float) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.46 new_ltEs18(xuu5000, xuu5100, ty_Ordering) -> new_ltEs5(xuu5000, xuu5100) 29.16/12.46 new_compare5(xuu50000, xuu51000, ty_Bool) -> new_compare18(xuu50000, xuu51000) 29.16/12.46 new_ltEs18(xuu5000, xuu5100, ty_Float) -> new_ltEs14(xuu5000, xuu5100) 29.16/12.46 new_compare5(xuu50000, xuu51000, ty_Double) -> new_compare12(xuu50000, xuu51000) 29.16/12.46 new_compare15(xuu50000, xuu51000, de, df) -> new_compare29(xuu50000, xuu51000, new_esEs6(xuu50000, xuu51000, de, df), de, df) 29.16/12.46 new_esEs25(xuu3110000, xuu6000, app(ty_Maybe, bfd)) -> new_esEs4(xuu3110000, xuu6000, bfd) 29.16/12.46 new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.46 new_esEs32(xuu39, xuu34, app(app(ty_@2, fb), fc)) -> new_esEs6(xuu39, xuu34, fb, fc) 29.16/12.46 new_addToFM_C0(Branch(Right(xuu600), xuu61, xuu62, xuu63, xuu64), Right(xuu311000), xuu31101, h, ba, bb) -> new_addToFM_C24(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Right(xuu311000), Right(xuu600), new_esEs31(xuu311000, xuu600, ba), h, ba), LT), h, ba, bb) 29.16/12.46 new_addToFM_C13(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, cf, cg, da) -> new_mkBalBranch(xuu17, xuu18, xuu20, new_addToFM_C0(xuu21, Left(xuu22), xuu23, cf, cg, da), cf, cg, da) 29.16/12.46 new_lt13(xuu50000, xuu51000) -> new_esEs8(new_compare7(xuu50000, xuu51000), LT) 29.16/12.46 new_mkBalBranch6MkBalBranch11(xuu600, xuu61, xuu64, xuu450, xuu451, xuu452, xuu453, Branch(xuu4540, xuu4541, xuu4542, xuu4543, xuu4544), False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu4540, xuu4541, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu450, xuu451, xuu453, xuu4543, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Right(xuu600), xuu61, xuu4544, xuu64, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) 29.16/12.46 new_esEs25(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 29.16/12.46 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 29.16/12.46 new_addToFM_C24(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, False, ea, eb, ec) -> new_addToFM_C15(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, new_esEs8(new_compare25(Right(xuu39), Right(xuu34), new_esEs32(xuu39, xuu34, eb), ea, eb), GT), ea, eb, ec) 29.16/12.46 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.46 new_ltEs21(xuu50002, xuu51002, app(ty_Maybe, dff)) -> new_ltEs10(xuu50002, xuu51002, dff) 29.16/12.46 new_mkBalBranch6MkBalBranch010(xuu600, xuu61, xuu640, xuu641, xuu642, EmptyFM, xuu644, xuu45, False, h, ba, bb) -> error([]) 29.16/12.46 new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat0(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) 29.16/12.46 new_ltEs21(xuu50002, xuu51002, ty_Integer) -> new_ltEs11(xuu50002, xuu51002) 29.16/12.46 new_ltEs10(Just(xuu50000), Just(xuu51000), app(app(app(ty_@3, cdc), cdd), cde)) -> new_ltEs17(xuu50000, xuu51000, cdc, cdd, cde) 29.16/12.46 new_esEs12(@0, @0) -> True 29.16/12.46 new_compare29(xuu50000, xuu51000, True, de, df) -> EQ 29.16/12.46 new_mkBalBranch6MkBalBranch4(xuu600, xuu61, EmptyFM, xuu53, True, h, ba, bb) -> error([]) 29.16/12.46 new_primCmpNat0(Succ(xuu5000), Succ(xuu5100)) -> new_primCmpNat0(xuu5000, xuu5100) 29.16/12.46 new_addToFM_C15(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, False, ea, eb, ec) -> Branch(Right(xuu39), new_addListToFM0(xuu35, xuu40, ec), xuu36, xuu37, xuu38) 29.16/12.46 new_sizeFM(EmptyFM, h, ba, bb) -> Pos(Zero) 29.16/12.46 new_mkBalBranch6Size_l0(xuu600, xuu61, xuu64, xuu45, h, ba, bb) -> new_sizeFM(xuu45, h, ba, bb) 29.16/12.46 new_ltEs12(Left(xuu50000), Left(xuu51000), ty_Int, cdf) -> new_ltEs6(xuu50000, xuu51000) 29.16/12.46 new_mkBalBranch6MkBalBranch3(xuu600, xuu61, xuu64, EmptyFM, True, h, ba, bb) -> error([]) 29.16/12.46 new_mkBalBranch6MkBalBranch4(xuu600, xuu61, xuu64, xuu53, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch3(xuu600, xuu61, xuu64, xuu53, new_gt(new_mkBalBranch6Size_l(xuu600, xuu61, xuu64, xuu53, h, ba, bb), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu600, xuu61, xuu64, xuu53, h, ba, bb))), h, ba, bb) 29.16/12.46 new_esEs27(xuu50001, xuu51001, app(ty_Maybe, dgh)) -> new_esEs4(xuu50001, xuu51001, dgh) 29.16/12.46 new_esEs6(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), gd, ge) -> new_asAs(new_esEs21(xuu3110000, xuu6000, gd), new_esEs20(xuu3110001, xuu6001, ge)) 29.16/12.46 new_addToFM_C0(Branch(Right(xuu600), xuu61, xuu62, xuu63, xuu64), Left(xuu311000), xuu31101, h, ba, bb) -> new_addToFM_C26(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare25(Left(xuu311000), Right(xuu600), False, h, ba), LT), h, ba, bb) 29.16/12.46 new_esEs32(xuu39, xuu34, ty_Integer) -> new_esEs11(xuu39, xuu34) 29.16/12.46 new_ltEs20(xuu50001, xuu51001, app(ty_Maybe, ded)) -> new_ltEs10(xuu50001, xuu51001, ded) 29.16/12.46 new_esEs26(xuu50000, xuu51000, ty_Int) -> new_esEs10(xuu50000, xuu51000) 29.16/12.46 new_esEs21(xuu3110000, xuu6000, ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.46 new_esEs5(Right(xuu3110000), Right(xuu6000), cab, ty_Integer) -> new_esEs11(xuu3110000, xuu6000) 29.16/12.46 new_primMinusNat0(Zero, Succ(xuu13400)) -> Neg(Succ(xuu13400)) 29.16/12.46 new_esEs28(xuu50000, xuu51000, ty_Ordering) -> new_esEs8(xuu50000, xuu51000) 29.16/12.46 new_addToFM_C23(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba, bb) -> new_mkBalBranch(xuu600, xuu61, new_addToFM_C0(xuu63, Right(xuu311000), xuu31101, h, ba, bb), xuu64, h, ba, bb) 29.16/12.46 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs12(xuu3110000, xuu6000) 29.16/12.46 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Char, cac) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.46 new_ltEs10(Just(xuu50000), Just(xuu51000), ty_Double) -> new_ltEs13(xuu50000, xuu51000) 29.16/12.46 new_compare114(xuu50000, xuu51000, False, fh, ga, gb) -> GT 29.16/12.46 new_esEs24(xuu3110001, xuu6001, ty_Char) -> new_esEs18(xuu3110001, xuu6001) 29.16/12.46 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 29.16/12.46 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 29.16/12.46 new_lt14(xuu50000, xuu51000) -> new_esEs8(new_compare14(xuu50000, xuu51000), LT) 29.16/12.46 new_lt19(xuu50001, xuu51001, ty_Float) -> new_lt11(xuu50001, xuu51001) 29.16/12.46 new_compare12(Double(xuu50000, Neg(xuu500010)), Double(xuu51000, Neg(xuu510010))) -> new_compare6(new_sr(xuu50000, Neg(xuu510010)), new_sr(Neg(xuu500010), xuu51000)) 29.16/12.46 new_addToFM_C14(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba, bb) -> Branch(Right(xuu311000), new_addListToFM0(xuu61, xuu31101, bb), xuu62, xuu63, xuu64) 29.16/12.46 new_compare110(xuu190, xuu191, False, cca, ccb) -> GT 29.16/12.46 new_compare5(xuu50000, xuu51000, app(ty_[], bd)) -> new_compare(xuu50000, xuu51000, bd) 29.16/12.46 new_esEs26(xuu50000, xuu51000, app(ty_Maybe, fg)) -> new_esEs4(xuu50000, xuu51000, fg) 29.16/12.46 new_esEs32(xuu39, xuu34, ty_Bool) -> new_esEs13(xuu39, xuu34) 29.16/12.46 new_primEqNat0(Zero, Zero) -> True 29.16/12.46 new_esEs28(xuu50000, xuu51000, app(app(ty_Either, eac), ead)) -> new_esEs5(xuu50000, xuu51000, eac, ead) 29.16/12.46 new_esEs31(xuu311000, xuu600, ty_Integer) -> new_esEs11(xuu311000, xuu600) 29.16/12.46 new_lt19(xuu50001, xuu51001, ty_Double) -> new_lt15(xuu50001, xuu51001) 29.16/12.46 new_esEs20(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) 29.16/12.46 new_esEs24(xuu3110001, xuu6001, ty_Float) -> new_esEs9(xuu3110001, xuu6001) 29.16/12.46 new_esEs25(xuu3110000, xuu6000, app(ty_[], bge)) -> new_esEs19(xuu3110000, xuu6000, bge) 29.16/12.46 new_esEs29(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) 29.16/12.46 new_esEs23(xuu3110002, xuu6002, ty_Float) -> new_esEs9(xuu3110002, xuu6002) 29.16/12.46 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Float, cac) -> new_esEs9(xuu3110000, xuu6000) 29.16/12.46 new_ltEs19(xuu5000, xuu5100, ty_Ordering) -> new_ltEs5(xuu5000, xuu5100) 29.16/12.46 new_esEs25(xuu3110000, xuu6000, ty_Char) -> new_esEs18(xuu3110000, xuu6000) 29.16/12.46 new_esEs31(xuu311000, xuu600, app(app(ty_@2, cbd), cbe)) -> new_esEs6(xuu311000, xuu600, cbd, cbe) 29.16/12.46 new_asAs(False, xuu178) -> False 29.16/12.46 new_addToFM_C25(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, cf, cg, da) -> new_mkBalBranch(xuu17, xuu18, new_addToFM_C0(xuu20, Left(xuu22), xuu23, cf, cg, da), xuu21, cf, cg, da) 29.16/12.46 new_lt16(xuu50000, xuu51000, app(app(ty_Either, db), dc)) -> new_lt12(xuu50000, xuu51000, db, dc) 29.16/12.46 new_esEs20(xuu3110001, xuu6001, ty_Integer) -> new_esEs11(xuu3110001, xuu6001) 29.16/12.46 new_mkBalBranch6MkBalBranch30(xuu600, xuu61, xuu64, Branch(xuu450, xuu451, xuu452, xuu453, xuu454), True, h, ba, bb) -> new_mkBalBranch6MkBalBranch11(xuu600, xuu61, xuu64, xuu450, xuu451, xuu452, xuu453, xuu454, new_lt17(new_sizeFM(xuu454, h, ba, bb), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu453, h, ba, bb))), h, ba, bb) 29.16/12.46 new_mkBalBranch6MkBalBranch4(xuu600, xuu61, Branch(xuu640, xuu641, xuu642, xuu643, xuu644), xuu53, True, h, ba, bb) -> new_mkBalBranch6MkBalBranch01(xuu600, xuu61, xuu640, xuu641, xuu642, xuu643, xuu644, xuu53, new_lt17(new_sizeFM(xuu643, h, ba, bb), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu644, h, ba, bb))), h, ba, bb) 29.16/12.46 new_mkBalBranch6MkBalBranch40(xuu600, xuu61, xuu64, xuu45, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch30(xuu600, xuu61, xuu64, xuu45, new_gt(new_mkBalBranch6Size_l0(xuu600, xuu61, xuu64, xuu45, h, ba, bb), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r0(xuu600, xuu61, xuu64, xuu45, h, ba, bb))), h, ba, bb) 29.16/12.46 new_lt19(xuu50001, xuu51001, app(ty_Ratio, dhe)) -> new_lt10(xuu50001, xuu51001, dhe) 29.16/12.46 new_esEs28(xuu50000, xuu51000, app(ty_Ratio, eag)) -> new_esEs15(xuu50000, xuu51000, eag) 29.16/12.46 new_ltEs5(GT, EQ) -> False 29.16/12.46 new_ltEs20(xuu50001, xuu51001, ty_Ordering) -> new_ltEs5(xuu50001, xuu51001) 29.16/12.46 new_lt18(xuu50000, xuu51000) -> new_esEs8(new_compare10(xuu50000, xuu51000), LT) 29.16/12.46 new_ltEs12(Right(xuu50000), Right(xuu51000), cfa, ty_Double) -> new_ltEs13(xuu50000, xuu51000) 29.16/12.46 new_esEs8(EQ, GT) -> False 29.16/12.46 new_esEs8(GT, EQ) -> False 29.16/12.46 new_compare5(xuu50000, xuu51000, ty_Ordering) -> new_compare7(xuu50000, xuu51000) 29.16/12.46 new_sizeFM0(EmptyFM, bgf, bgg) -> Pos(Zero) 29.16/12.46 new_lt20(xuu50000, xuu51000, ty_Double) -> new_lt15(xuu50000, xuu51000) 29.16/12.46 new_ltEs12(Right(xuu50000), Right(xuu51000), cfa, ty_Char) -> new_ltEs15(xuu50000, xuu51000) 29.16/12.46 new_mkBalBranch6MkBalBranch50(xuu600, xuu61, xuu64, xuu45, True, h, ba, bb) -> new_mkBranch(Zero, Right(xuu600), xuu61, xuu45, xuu64, app(app(ty_Either, h), ba), bb) 29.16/12.46 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, daf), dag), dah), cac) -> new_esEs7(xuu3110000, xuu6000, daf, dag, dah) 29.16/12.46 new_compare29(xuu50000, xuu51000, False, de, df) -> new_compare115(xuu50000, xuu51000, new_ltEs16(xuu50000, xuu51000, de, df), de, df) 29.16/12.46 new_mkBalBranch6MkBalBranch5(xuu600, xuu61, xuu64, xuu53, True, h, ba, bb) -> new_mkBranch(Zero, Left(xuu600), xuu61, xuu53, xuu64, app(app(ty_Either, h), ba), bb) 29.16/12.46 29.16/12.46 The set Q consists of the following terms: 29.16/12.46 29.16/12.46 new_esEs8(EQ, EQ) 29.16/12.46 new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.16/12.46 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.16/12.46 new_esEs30(x0, x1, ty_Double) 29.16/12.46 new_esEs22(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_esEs26(x0, x1, ty_Int) 29.16/12.46 new_ltEs21(x0, x1, ty_Integer) 29.16/12.46 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 29.16/12.46 new_ltEs20(x0, x1, ty_Bool) 29.16/12.46 new_ltEs10(Just(x0), Nothing, x1) 29.16/12.46 new_esEs24(x0, x1, ty_Bool) 29.16/12.46 new_compare113(x0, x1, True, x2) 29.16/12.46 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 29.16/12.46 new_gt(x0, x1) 29.16/12.46 new_esEs4(Just(x0), Just(x1), ty_Ordering) 29.16/12.46 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 29.16/12.46 new_esEs18(Char(x0), Char(x1)) 29.16/12.46 new_esEs4(Just(x0), Just(x1), ty_Double) 29.16/12.46 new_ltEs20(x0, x1, ty_@0) 29.16/12.46 new_lt20(x0, x1, app(ty_[], x2)) 29.16/12.46 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.16/12.46 new_lt16(x0, x1, ty_Integer) 29.16/12.46 new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.16/12.46 new_esEs28(x0, x1, ty_Ordering) 29.16/12.46 new_lt19(x0, x1, ty_Integer) 29.16/12.46 new_pePe(False, x0) 29.16/12.46 new_compare(:(x0, x1), :(x2, x3), x4) 29.16/12.46 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 29.16/12.46 new_esEs29(x0, x1, ty_Float) 29.16/12.46 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.16/12.46 new_primPlusNat1(Zero, Zero) 29.16/12.46 new_esEs31(x0, x1, ty_Float) 29.16/12.46 new_ltEs10(Just(x0), Just(x1), ty_Int) 29.16/12.46 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 29.16/12.46 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 29.16/12.46 new_ltEs10(Just(x0), Just(x1), ty_Char) 29.16/12.46 new_ltEs19(x0, x1, ty_Bool) 29.16/12.46 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.16/12.46 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, EmptyFM, False, x7, x8, x9) 29.16/12.46 new_esEs28(x0, x1, ty_Int) 29.16/12.46 new_esEs20(x0, x1, ty_Integer) 29.16/12.46 new_lt20(x0, x1, ty_Float) 29.16/12.46 new_esEs4(Nothing, Just(x0), x1) 29.16/12.46 new_lt5(x0, x1, x2, x3) 29.16/12.46 new_esEs26(x0, x1, ty_Char) 29.16/12.46 new_esEs27(x0, x1, ty_Char) 29.16/12.46 new_esEs4(Just(x0), Just(x1), ty_Int) 29.16/12.46 new_esEs26(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6, x7) 29.16/12.46 new_ltEs19(x0, x1, ty_Integer) 29.16/12.46 new_lt10(x0, x1, x2) 29.16/12.46 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_esEs25(x0, x1, ty_@0) 29.16/12.46 new_esEs28(x0, x1, ty_Char) 29.16/12.46 new_ltEs21(x0, x1, ty_Bool) 29.16/12.46 new_lt16(x0, x1, ty_Bool) 29.16/12.46 new_primEqInt(Pos(Zero), Pos(Zero)) 29.16/12.46 new_esEs20(x0, x1, ty_Bool) 29.16/12.46 new_primMinusNat0(Zero, Zero) 29.16/12.46 new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5, x6) 29.16/12.46 new_ltEs10(Nothing, Nothing, x0) 29.16/12.46 new_mkBalBranch6MkBalBranch30(x0, x1, x2, x3, False, x4, x5, x6) 29.16/12.46 new_esEs27(x0, x1, ty_Int) 29.16/12.46 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) 29.16/12.46 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_compare25(Left(x0), Right(x1), False, x2, x3) 29.16/12.46 new_compare25(Right(x0), Left(x1), False, x2, x3) 29.16/12.46 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_esEs28(x0, x1, ty_Double) 29.16/12.46 new_esEs30(x0, x1, ty_Int) 29.16/12.46 new_esEs16(x0, x1, ty_Int) 29.16/12.46 new_esEs30(x0, x1, ty_Ordering) 29.16/12.46 new_esEs23(x0, x1, ty_Integer) 29.16/12.46 new_primCmpNat0(Succ(x0), Zero) 29.16/12.46 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.16/12.46 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 29.16/12.46 new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 29.16/12.46 new_esEs32(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_esEs27(x0, x1, ty_@0) 29.16/12.46 new_primEqNat0(Zero, Succ(x0)) 29.16/12.46 new_asAs(True, x0) 29.16/12.46 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 29.16/12.46 new_primEqInt(Neg(Zero), Neg(Zero)) 29.16/12.46 new_esEs21(x0, x1, ty_@0) 29.16/12.46 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 29.16/12.46 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 29.16/12.46 new_ltEs21(x0, x1, app(ty_[], x2)) 29.16/12.46 new_sr0(Integer(x0), Integer(x1)) 29.16/12.46 new_esEs26(x0, x1, ty_Ordering) 29.16/12.46 new_ltEs9(True, True) 29.16/12.46 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 29.16/12.46 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 29.16/12.46 new_sIZE_RATIO 29.16/12.46 new_addToFM_C25(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 29.16/12.46 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_primCmpNat0(Succ(x0), Succ(x1)) 29.16/12.46 new_ltEs5(LT, GT) 29.16/12.46 new_ltEs5(GT, LT) 29.16/12.46 new_esEs23(x0, x1, ty_Float) 29.16/12.46 new_esEs27(x0, x1, ty_Ordering) 29.16/12.46 new_ltEs20(x0, x1, ty_Char) 29.16/12.46 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_asAs(False, x0) 29.16/12.46 new_addToFM_C0(Branch(Left(x0), x1, x2, x3, x4), Right(x5), x6, x7, x8, x9) 29.16/12.46 new_primPlusNat1(Succ(x0), Zero) 29.16/12.46 new_compare18(x0, x1) 29.16/12.46 new_esEs24(x0, x1, ty_Char) 29.16/12.46 new_esEs21(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_esEs25(x0, x1, ty_Int) 29.16/12.46 new_mkBalBranch6MkBalBranch40(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9, x10) 29.16/12.46 new_lt13(x0, x1) 29.16/12.46 new_lt17(x0, x1) 29.16/12.46 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.16/12.46 new_lt15(x0, x1) 29.16/12.46 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.16/12.46 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_compare25(x0, x1, True, x2, x3) 29.16/12.46 new_esEs26(x0, x1, ty_Double) 29.16/12.46 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), False, x12, x13, x14) 29.16/12.46 new_mkBalBranch6MkBalBranch40(x0, x1, x2, x3, False, x4, x5, x6) 29.16/12.46 new_esEs26(x0, x1, ty_Bool) 29.16/12.46 new_esEs25(x0, x1, ty_Char) 29.16/12.46 new_ltEs20(x0, x1, ty_Int) 29.16/12.46 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 29.16/12.46 new_primEqInt(Pos(Zero), Neg(Zero)) 29.16/12.46 new_primEqInt(Neg(Zero), Pos(Zero)) 29.16/12.46 new_esEs23(x0, x1, app(ty_[], x2)) 29.16/12.46 new_compare115(x0, x1, False, x2, x3) 29.16/12.46 new_compare28(x0, x1, False, x2, x3, x4) 29.16/12.46 new_ltEs10(Just(x0), Just(x1), ty_Ordering) 29.16/12.46 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 29.16/12.46 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 29.16/12.46 new_esEs30(x0, x1, app(ty_[], x2)) 29.16/12.46 new_ltEs18(x0, x1, ty_Double) 29.16/12.46 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_esEs28(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_esEs25(x0, x1, ty_Double) 29.16/12.46 new_esEs17(x0, x1, ty_Int) 29.16/12.46 new_compare5(x0, x1, ty_Float) 29.16/12.46 new_compare17(x0, x1, x2, x3, x4) 29.16/12.46 new_compare5(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_esEs25(x0, x1, ty_Bool) 29.16/12.46 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_compare24(x0, x1, False) 29.16/12.46 new_esEs24(x0, x1, ty_@0) 29.16/12.46 new_esEs28(x0, x1, ty_@0) 29.16/12.46 new_ltEs4(x0, x1) 29.16/12.46 new_esEs23(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_esEs26(x0, x1, app(ty_[], x2)) 29.16/12.46 new_addToFM_C0(Branch(Right(x0), x1, x2, x3, x4), Left(x5), x6, x7, x8, x9) 29.16/12.46 new_esEs10(x0, x1) 29.16/12.46 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 29.16/12.46 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_esEs24(x0, x1, ty_Float) 29.16/12.46 new_lt16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_esEs21(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_compare113(x0, x1, False, x2) 29.16/12.46 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.16/12.46 new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 29.16/12.46 new_primEqNat0(Succ(x0), Succ(x1)) 29.16/12.46 new_ltEs10(Nothing, Just(x0), x1) 29.16/12.46 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 29.16/12.46 new_primMulInt(Neg(x0), Neg(x1)) 29.16/12.46 new_ltEs20(x0, x1, ty_Float) 29.16/12.46 new_esEs24(x0, x1, ty_Ordering) 29.16/12.46 new_ltEs16(@2(x0, x1), @2(x2, x3), x4, x5) 29.16/12.46 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_compare19(x0, x1, True) 29.16/12.46 new_esEs4(Just(x0), Just(x1), ty_Bool) 29.16/12.46 new_lt19(x0, x1, ty_Char) 29.16/12.46 new_esEs31(x0, x1, ty_@0) 29.16/12.46 new_ltEs10(Just(x0), Just(x1), ty_Integer) 29.16/12.46 new_compare(:(x0, x1), [], x2) 29.16/12.46 new_compare114(x0, x1, True, x2, x3, x4) 29.16/12.46 new_esEs5(Left(x0), Right(x1), x2, x3) 29.16/12.46 new_esEs5(Right(x0), Left(x1), x2, x3) 29.16/12.46 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) 29.16/12.46 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_lt20(x0, x1, ty_Bool) 29.16/12.46 new_esEs29(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_mkBalBranch6MkBalBranch4(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9, x10) 29.16/12.46 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_ltEs20(x0, x1, ty_Ordering) 29.16/12.46 new_compare111(x0, x1, False) 29.16/12.46 new_esEs16(x0, x1, ty_Integer) 29.16/12.46 new_esEs14(Double(x0, x1), Double(x2, x3)) 29.16/12.46 new_esEs26(x0, x1, ty_Integer) 29.16/12.46 new_lt16(x0, x1, ty_Int) 29.16/12.46 new_esEs21(x0, x1, ty_Float) 29.16/12.46 new_compare25(Left(x0), Left(x1), False, x2, x3) 29.16/12.46 new_esEs27(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_esEs26(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_esEs29(x0, x1, ty_@0) 29.16/12.46 new_esEs24(x0, x1, ty_Int) 29.16/12.46 new_ltEs21(x0, x1, ty_Int) 29.16/12.46 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.16/12.46 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_mkBalBranch6MkBalBranch50(x0, x1, x2, x3, False, x4, x5, x6) 29.16/12.46 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) 29.16/12.46 new_esEs31(x0, x1, ty_Bool) 29.16/12.46 new_compare28(x0, x1, True, x2, x3, x4) 29.16/12.46 new_compare26(x0, x1, False) 29.16/12.46 new_esEs27(x0, x1, ty_Integer) 29.16/12.46 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 29.16/12.46 new_esEs29(x0, x1, app(ty_[], x2)) 29.16/12.46 new_lt12(x0, x1, x2, x3) 29.16/12.46 new_lt16(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_compare5(x0, x1, ty_Double) 29.16/12.46 new_esEs32(x0, x1, ty_Integer) 29.16/12.46 new_compare5(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_ltEs5(EQ, GT) 29.16/12.46 new_ltEs5(GT, EQ) 29.16/12.46 new_primMulNat0(Zero, Succ(x0)) 29.16/12.46 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 29.16/12.46 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 29.16/12.46 new_primCmpInt0(EmptyFM, x0, x1, x2, x3, x4, x5) 29.16/12.46 new_pePe(True, x0) 29.16/12.46 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5, x6) 29.16/12.46 new_primMulNat0(Succ(x0), Succ(x1)) 29.16/12.46 new_esEs30(x0, x1, ty_Integer) 29.16/12.46 new_esEs26(x0, x1, ty_@0) 29.16/12.46 new_esEs25(x0, x1, app(ty_[], x2)) 29.16/12.46 new_ltEs21(x0, x1, ty_Char) 29.16/12.46 new_ltEs18(x0, x1, ty_Ordering) 29.16/12.46 new_esEs21(x0, x1, ty_Int) 29.16/12.46 new_primCompAux00(x0, LT) 29.16/12.46 new_compare25(Right(x0), Right(x1), False, x2, x3) 29.16/12.46 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 29.16/12.46 new_esEs25(x0, x1, ty_Float) 29.16/12.46 new_lt16(x0, x1, ty_Char) 29.16/12.46 new_esEs19(:(x0, x1), :(x2, x3), x4) 29.16/12.46 new_esEs25(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_esEs8(GT, GT) 29.16/12.46 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 29.16/12.46 new_esEs28(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_esEs21(x0, x1, ty_Ordering) 29.16/12.46 new_esEs8(LT, EQ) 29.16/12.46 new_esEs8(EQ, LT) 29.16/12.46 new_ltEs10(Just(x0), Just(x1), ty_Bool) 29.16/12.46 new_primCmpInt(Neg(Zero), Neg(Zero)) 29.16/12.46 new_esEs22(x0, x1, ty_Integer) 29.16/12.46 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, x11, False, x12, x13, x14) 29.16/12.46 new_ltEs9(False, True) 29.16/12.46 new_ltEs9(True, False) 29.16/12.46 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 29.16/12.46 new_esEs21(x0, x1, ty_Integer) 29.16/12.46 new_esEs13(False, True) 29.16/12.46 new_esEs13(True, False) 29.16/12.46 new_esEs23(x0, x1, ty_Double) 29.16/12.46 new_esEs23(x0, x1, ty_@0) 29.16/12.46 new_lt11(x0, x1) 29.16/12.46 new_primCompAux00(x0, EQ) 29.16/12.46 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 29.16/12.46 new_esEs8(LT, LT) 29.16/12.46 new_ltEs18(x0, x1, app(ty_[], x2)) 29.16/12.46 new_lt19(x0, x1, ty_Bool) 29.16/12.46 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 29.16/12.46 new_primCmpInt(Pos(Zero), Neg(Zero)) 29.16/12.46 new_primCmpInt(Neg(Zero), Pos(Zero)) 29.16/12.46 new_esEs4(Just(x0), Just(x1), ty_Char) 29.16/12.46 new_primMulInt(Pos(x0), Neg(x1)) 29.16/12.46 new_primMulInt(Neg(x0), Pos(x1)) 29.16/12.46 new_primMinusNat0(Succ(x0), Zero) 29.16/12.46 new_mkBalBranch6MkBalBranch30(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9, x10) 29.16/12.46 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 29.16/12.46 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 29.16/12.46 new_ltEs19(x0, x1, app(ty_[], x2)) 29.16/12.46 new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) 29.16/12.46 new_esEs19(:(x0, x1), [], x2) 29.16/12.46 new_esEs22(x0, x1, app(ty_[], x2)) 29.16/12.46 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_ltEs7(x0, x1, x2) 29.16/12.46 new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 29.16/12.46 new_esEs32(x0, x1, ty_Ordering) 29.16/12.46 new_esEs31(x0, x1, ty_Integer) 29.16/12.46 new_esEs21(x0, x1, ty_Char) 29.16/12.46 new_lt19(x0, x1, ty_Float) 29.16/12.46 new_primMulInt(Pos(x0), Pos(x1)) 29.16/12.46 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_ltEs11(x0, x1) 29.16/12.46 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 29.16/12.46 new_compare7(x0, x1) 29.16/12.46 new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.16/12.46 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_lt7(x0, x1, x2) 29.16/12.46 new_primPlusNat0(Zero, x0) 29.16/12.46 new_esEs30(x0, x1, ty_Char) 29.16/12.46 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 29.16/12.46 new_lt20(x0, x1, ty_Integer) 29.16/12.46 new_lt16(x0, x1, ty_Float) 29.16/12.46 new_esEs22(x0, x1, ty_Ordering) 29.16/12.46 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_compare27(x0, x1, False, x2) 29.16/12.46 new_compare5(x0, x1, app(ty_[], x2)) 29.16/12.46 new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 29.16/12.46 new_compare115(x0, x1, True, x2, x3) 29.16/12.46 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.16/12.46 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_ltEs12(Left(x0), Right(x1), x2, x3) 29.16/12.46 new_ltEs12(Right(x0), Left(x1), x2, x3) 29.16/12.46 new_primCmpInt1(EmptyFM, x0, x1, x2, x3, x4, x5) 29.16/12.46 new_esEs31(x0, x1, ty_Ordering) 29.16/12.46 new_esEs20(x0, x1, ty_@0) 29.16/12.46 new_esEs31(x0, x1, app(ty_[], x2)) 29.16/12.46 new_esEs31(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5, x6) 29.16/12.46 new_ltEs19(x0, x1, ty_@0) 29.16/12.46 new_esEs20(x0, x1, ty_Double) 29.16/12.46 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_esEs4(Nothing, Nothing, x0) 29.16/12.46 new_esEs21(x0, x1, ty_Bool) 29.16/12.46 new_ltEs19(x0, x1, ty_Double) 29.16/12.46 new_compare110(x0, x1, False, x2, x3) 29.16/12.46 new_primMinusNat0(Zero, Succ(x0)) 29.16/12.46 new_addToFM_C26(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 29.16/12.46 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 29.16/12.46 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_compare9(x0, x1, x2) 29.16/12.46 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.16/12.46 new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5, x6) 29.16/12.46 new_esEs30(x0, x1, ty_Bool) 29.16/12.46 new_ltEs10(Just(x0), Just(x1), ty_Float) 29.16/12.46 new_lt19(x0, x1, ty_Int) 29.16/12.46 new_esEs27(x0, x1, ty_Bool) 29.16/12.46 new_ltEs21(x0, x1, ty_Float) 29.16/12.46 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_compare([], :(x0, x1), x2) 29.16/12.46 new_esEs24(x0, x1, ty_Integer) 29.16/12.46 new_ltEs20(x0, x1, ty_Integer) 29.16/12.46 new_sizeFM(EmptyFM, x0, x1, x2) 29.16/12.46 new_lt20(x0, x1, ty_Ordering) 29.16/12.46 new_mkBalBranch6MkBalBranch4(x0, x1, EmptyFM, x2, True, x3, x4, x5) 29.16/12.46 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 29.16/12.46 new_compare112(x0, x1, True, x2, x3) 29.16/12.46 new_esEs25(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.16/12.46 new_esEs29(x0, x1, ty_Ordering) 29.16/12.46 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 29.16/12.46 new_esEs4(Just(x0), Just(x1), ty_Float) 29.16/12.46 new_mkBalBranch6MkBalBranch3(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9, x10) 29.16/12.46 new_lt19(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_esEs20(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_compare19(x0, x1, False) 29.16/12.46 new_compare111(x0, x1, True) 29.16/12.46 new_lt16(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 29.16/12.46 new_esEs31(x0, x1, ty_Double) 29.16/12.46 new_esEs30(x0, x1, ty_Float) 29.16/12.46 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 29.16/12.46 new_compare114(x0, x1, False, x2, x3, x4) 29.16/12.46 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 29.16/12.46 new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 29.16/12.46 new_lt20(x0, x1, ty_Double) 29.16/12.46 new_primMulNat0(Zero, Zero) 29.16/12.46 new_esEs22(x0, x1, ty_@0) 29.16/12.46 new_mkBalBranch6Size_l0(x0, x1, x2, x3, x4, x5, x6) 29.16/12.46 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) 29.16/12.46 new_lt18(x0, x1) 29.16/12.46 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), False, x12, x13, x14) 29.16/12.46 new_esEs28(x0, x1, app(ty_[], x2)) 29.16/12.46 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 29.16/12.46 new_compare24(x0, x1, True) 29.16/12.46 new_compare29(x0, x1, False, x2, x3) 29.16/12.46 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, x11, False, x12, x13, x14) 29.16/12.46 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_esEs32(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_esEs32(x0, x1, app(ty_[], x2)) 29.16/12.46 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 29.16/12.46 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_ltEs18(x0, x1, ty_@0) 29.16/12.46 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 29.16/12.46 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.16/12.46 new_esEs32(x0, x1, ty_@0) 29.16/12.46 new_compare5(x0, x1, ty_Char) 29.16/12.46 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_compare27(x0, x1, True, x2) 29.16/12.46 new_compare5(x0, x1, ty_@0) 29.16/12.46 new_mkBalBranch6MkBalBranch50(x0, x1, x2, x3, True, x4, x5, x6) 29.16/12.46 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, EmptyFM, x5, x6, False, x7, x8, x9) 29.16/12.46 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_esEs26(x0, x1, ty_Float) 29.16/12.46 new_compare11(x0, x1, x2, x3) 29.16/12.46 new_esEs29(x0, x1, ty_Int) 29.16/12.46 new_esEs11(Integer(x0), Integer(x1)) 29.16/12.46 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 29.16/12.46 new_esEs29(x0, x1, ty_Double) 29.16/12.46 new_compare10(@0, @0) 29.16/12.46 new_compare12(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 29.16/12.46 new_ltEs18(x0, x1, ty_Integer) 29.16/12.46 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.16/12.46 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.16/12.46 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_esEs29(x0, x1, ty_Char) 29.16/12.46 new_addToFM_C0(EmptyFM, x0, x1, x2, x3, x4) 29.16/12.46 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) 29.16/12.46 new_not(True) 29.16/12.46 new_addToFM_C25(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 29.16/12.46 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_lt6(x0, x1) 29.16/12.46 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.16/12.46 new_esEs31(x0, x1, ty_Char) 29.16/12.46 new_primCmpNat0(Zero, Succ(x0)) 29.16/12.46 new_compare5(x0, x1, ty_Int) 29.16/12.46 new_esEs27(x0, x1, ty_Float) 29.16/12.46 new_esEs8(EQ, GT) 29.16/12.46 new_esEs8(GT, EQ) 29.16/12.46 new_lt16(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_mkBalBranch6MkBalBranch3(x0, x1, x2, EmptyFM, True, x3, x4, x5) 29.16/12.46 new_esEs22(x0, x1, ty_Int) 29.16/12.46 new_esEs19([], [], x0) 29.16/12.46 new_esEs32(x0, x1, ty_Bool) 29.16/12.46 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_esEs24(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_esEs32(x0, x1, ty_Int) 29.16/12.46 new_esEs22(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_esEs9(Float(x0, x1), Float(x2, x3)) 29.16/12.46 new_lt20(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 29.16/12.46 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 29.16/12.46 new_primPlusNat0(Succ(x0), x1) 29.16/12.46 new_esEs20(x0, x1, app(ty_[], x2)) 29.16/12.46 new_compare12(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 29.16/12.46 new_compare12(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 29.16/12.46 new_compare12(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 29.16/12.46 new_fsEs(x0) 29.16/12.46 new_lt19(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_esEs13(True, True) 29.16/12.46 new_addToFM_C23(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 29.16/12.46 new_addToFM_C0(Branch(Right(x0), x1, x2, x3, x4), Right(x5), x6, x7, x8, x9) 29.16/12.46 new_primPlusNat1(Zero, Succ(x0)) 29.16/12.46 new_ltEs18(x0, x1, ty_Char) 29.16/12.46 new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 29.16/12.46 new_primPlusInt(Neg(x0), Neg(x1)) 29.16/12.46 new_primCmpInt0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9, x10) 29.16/12.46 new_esEs22(x0, x1, ty_Bool) 29.16/12.46 new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.16/12.46 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 29.16/12.46 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_ltEs21(x0, x1, ty_Ordering) 29.16/12.46 new_primEqNat0(Succ(x0), Zero) 29.16/12.46 new_esEs20(x0, x1, ty_Ordering) 29.16/12.46 new_esEs32(x0, x1, ty_Char) 29.16/12.46 new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_addListToFM0(x0, x1, x2) 29.16/12.46 new_esEs31(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_compare26(x0, x1, True) 29.16/12.46 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.16/12.46 new_lt20(x0, x1, ty_Char) 29.16/12.46 new_lt16(x0, x1, app(ty_[], x2)) 29.16/12.46 new_lt19(x0, x1, ty_Ordering) 29.16/12.46 new_esEs22(x0, x1, ty_Char) 29.16/12.46 new_esEs31(x0, x1, ty_Int) 29.16/12.46 new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 29.16/12.46 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 29.16/12.46 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.16/12.46 new_esEs29(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_esEs30(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_lt20(x0, x1, ty_@0) 29.16/12.46 new_esEs32(x0, x1, ty_Double) 29.16/12.46 new_ltEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.16/12.46 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 29.16/12.46 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_lt20(x0, x1, ty_Int) 29.16/12.46 new_esEs28(x0, x1, ty_Float) 29.16/12.46 new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) 29.16/12.46 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_esEs4(Just(x0), Just(x1), ty_Integer) 29.16/12.46 new_ltEs5(LT, LT) 29.16/12.46 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, EmptyFM, x5, x6, False, x7, x8, x9) 29.16/12.46 new_esEs22(x0, x1, ty_Double) 29.16/12.46 new_ltEs15(x0, x1) 29.16/12.46 new_primCmpInt(Pos(Zero), Pos(Zero)) 29.16/12.46 new_compare6(x0, x1) 29.16/12.46 new_esEs21(x0, x1, app(ty_[], x2)) 29.16/12.46 new_ltEs18(x0, x1, ty_Bool) 29.16/12.46 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 29.16/12.46 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 29.16/12.46 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 29.16/12.46 new_esEs30(x0, x1, ty_@0) 29.16/12.46 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 29.16/12.46 new_esEs23(x0, x1, ty_Char) 29.16/12.46 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.16/12.46 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.16/12.46 new_compare112(x0, x1, False, x2, x3) 29.16/12.46 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 29.16/12.46 new_ltEs19(x0, x1, ty_Ordering) 29.16/12.46 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.16/12.46 new_sr(x0, x1) 29.16/12.46 new_compare([], [], x0) 29.16/12.46 new_ltEs5(LT, EQ) 29.16/12.46 new_ltEs5(EQ, LT) 29.16/12.46 new_ltEs20(x0, x1, ty_Double) 29.16/12.46 new_esEs24(x0, x1, ty_Double) 29.16/12.46 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_ltEs5(GT, GT) 29.16/12.46 new_primCompAux00(x0, GT) 29.16/12.46 new_esEs21(x0, x1, ty_Double) 29.16/12.46 new_compare15(x0, x1, x2, x3) 29.16/12.46 new_esEs12(@0, @0) 29.16/12.46 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5, x6) 29.16/12.46 new_ltEs18(x0, x1, ty_Int) 29.16/12.46 new_compare29(x0, x1, True, x2, x3) 29.16/12.46 new_esEs27(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_esEs4(Just(x0), Just(x1), ty_@0) 29.16/12.46 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 29.16/12.46 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.16/12.46 new_primCompAux0(x0, x1, x2, x3) 29.16/12.46 new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 29.16/12.46 new_esEs29(x0, x1, ty_Bool) 29.16/12.46 new_lt16(x0, x1, ty_Ordering) 29.16/12.46 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_esEs8(LT, GT) 29.16/12.46 new_esEs8(GT, LT) 29.16/12.46 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_mkBalBranch(x0, x1, x2, x3, x4, x5, x6) 29.16/12.46 new_ltEs19(x0, x1, ty_Float) 29.16/12.46 new_esEs19([], :(x0, x1), x2) 29.16/12.46 new_compare110(x0, x1, True, x2, x3) 29.16/12.46 new_mkBalBranch6Size_r0(x0, x1, x2, x3, x4, x5, x6) 29.16/12.46 new_addToFM_C0(Branch(Left(x0), x1, x2, x3, x4), Left(x5), x6, x7, x8, x9) 29.16/12.46 new_lt16(x0, x1, ty_Double) 29.16/12.46 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.16/12.46 new_compare8(Integer(x0), Integer(x1)) 29.16/12.46 new_esEs27(x0, x1, app(ty_[], x2)) 29.16/12.46 new_lt20(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_esEs23(x0, x1, ty_Int) 29.16/12.46 new_esEs22(x0, x1, ty_Float) 29.16/12.46 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_esEs24(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_lt4(x0, x1, x2) 29.16/12.46 new_addToFM_C26(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 29.16/12.46 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_esEs25(x0, x1, ty_Integer) 29.16/12.46 new_mkBalBranch6MkBalBranch40(x0, x1, EmptyFM, x2, True, x3, x4, x5) 29.16/12.46 new_ltEs21(x0, x1, ty_Double) 29.16/12.46 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.16/12.46 new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 29.16/12.46 new_esEs32(x0, x1, ty_Float) 29.16/12.46 new_esEs23(x0, x1, ty_Ordering) 29.16/12.46 new_ltEs18(x0, x1, ty_Float) 29.16/12.46 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, EmptyFM, False, x7, x8, x9) 29.16/12.46 new_primPlusInt(Pos(x0), Neg(x1)) 29.16/12.46 new_primPlusInt(Neg(x0), Pos(x1)) 29.16/12.46 new_mkBalBranch0(x0, x1, x2, x3, x4, x5, x6) 29.16/12.46 new_esEs28(x0, x1, ty_Bool) 29.16/12.46 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 29.16/12.46 new_ltEs6(x0, x1) 29.16/12.46 new_primEqNat0(Zero, Zero) 29.16/12.46 new_esEs13(False, False) 29.16/12.46 new_ltEs20(x0, x1, app(ty_[], x2)) 29.16/12.46 new_lt8(x0, x1) 29.16/12.46 new_lt19(x0, x1, ty_Double) 29.16/12.46 new_lt9(x0, x1, x2, x3, x4) 29.16/12.46 new_primPlusNat1(Succ(x0), Succ(x1)) 29.16/12.46 new_ltEs9(False, False) 29.16/12.46 new_lt19(x0, x1, ty_@0) 29.16/12.46 new_not(False) 29.16/12.46 new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 29.16/12.46 new_ltEs13(x0, x1) 29.16/12.46 new_ltEs10(Just(x0), Just(x1), ty_@0) 29.16/12.46 new_ltEs8(x0, x1, x2) 29.16/12.46 new_esEs23(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_esEs4(Just(x0), Nothing, x1) 29.16/12.46 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_compare14(Char(x0), Char(x1)) 29.16/12.46 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) 29.16/12.46 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_esEs24(x0, x1, app(ty_[], x2)) 29.16/12.46 new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4, x5) 29.16/12.46 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.16/12.46 new_ltEs10(Just(x0), Just(x1), ty_Double) 29.16/12.46 new_ltEs14(x0, x1) 29.16/12.46 new_esEs27(x0, x1, ty_Double) 29.16/12.46 new_primCmpInt1(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9, x10) 29.16/12.46 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 29.16/12.46 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 29.16/12.46 new_esEs25(x0, x1, ty_Ordering) 29.16/12.46 new_compare5(x0, x1, ty_Ordering) 29.16/12.46 new_primMinusNat0(Succ(x0), Succ(x1)) 29.16/12.46 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_esEs30(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_emptyFM(x0, x1, x2) 29.16/12.46 new_compare5(x0, x1, ty_Integer) 29.16/12.46 new_ltEs21(x0, x1, ty_@0) 29.16/12.46 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 29.16/12.46 new_compare5(x0, x1, ty_Bool) 29.16/12.46 new_lt16(x0, x1, ty_@0) 29.16/12.46 new_esEs17(x0, x1, ty_Integer) 29.16/12.46 new_esEs20(x0, x1, app(ty_Maybe, x2)) 29.16/12.46 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5, x6) 29.16/12.46 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 29.16/12.46 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 29.16/12.46 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 29.16/12.46 new_esEs20(x0, x1, ty_Float) 29.16/12.46 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 29.16/12.46 new_lt16(x0, x1, app(ty_Ratio, x2)) 29.16/12.46 new_esEs29(x0, x1, ty_Integer) 29.16/12.46 new_ltEs5(EQ, EQ) 29.16/12.46 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 29.16/12.46 new_esEs20(x0, x1, ty_Char) 29.16/12.46 new_ltEs19(x0, x1, ty_Char) 29.16/12.46 new_addToFM_C23(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 29.16/12.46 new_primPlusInt(Pos(x0), Pos(x1)) 29.16/12.46 new_mkBranch(x0, x1, x2, x3, x4, x5, x6) 29.16/12.46 new_ltEs19(x0, x1, ty_Int) 29.16/12.46 new_esEs28(x0, x1, ty_Integer) 29.16/12.46 new_lt14(x0, x1) 29.16/12.46 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.16/12.46 new_sizeFM0(EmptyFM, x0, x1) 29.16/12.46 new_lt19(x0, x1, app(ty_[], x2)) 29.16/12.46 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 29.16/12.46 new_primMulNat0(Succ(x0), Zero) 29.16/12.46 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.16/12.46 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 29.16/12.46 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.16/12.46 new_primCmpNat0(Zero, Zero) 29.16/12.46 new_esEs23(x0, x1, ty_Bool) 29.16/12.46 new_esEs20(x0, x1, ty_Int) 29.16/12.46 new_mkBalBranch6MkBalBranch30(x0, x1, x2, EmptyFM, True, x3, x4, x5) 29.16/12.46 29.16/12.46 We have to consider all minimal (P,Q,R)-chains. 29.16/12.46 ---------------------------------------- 29.16/12.46 29.16/12.46 (39) QDPSizeChangeProof (EQUIVALENT) 29.16/12.46 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 29.16/12.46 29.16/12.46 From the DPs we obtained the following set of size-change graphs: 29.16/12.46 *new_foldl(xuu6, :(xuu3110, xuu3111), h, ba, bb) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba, bb), xuu3111, h, ba, bb) 29.16/12.46 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4, 5 >= 5 29.16/12.46 29.16/12.46 29.16/12.46 ---------------------------------------- 29.16/12.46 29.16/12.46 (40) 29.16/12.46 YES 29.16/12.46 29.16/12.46 ---------------------------------------- 29.16/12.46 29.16/12.46 (41) 29.16/12.46 Obligation: 29.16/12.46 Q DP problem: 29.16/12.46 The TRS P consists of the following rules: 29.16/12.46 29.16/12.46 new_primEqNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat(xuu31100000, xuu60000) 29.16/12.46 29.16/12.46 R is empty. 29.16/12.46 Q is empty. 29.16/12.46 We have to consider all minimal (P,Q,R)-chains. 29.16/12.46 ---------------------------------------- 29.16/12.46 29.16/12.46 (42) QDPSizeChangeProof (EQUIVALENT) 29.16/12.46 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 29.16/12.46 29.16/12.46 From the DPs we obtained the following set of size-change graphs: 29.16/12.46 *new_primEqNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat(xuu31100000, xuu60000) 29.16/12.46 The graph contains the following edges 1 > 1, 2 > 2 29.16/12.46 29.16/12.46 29.16/12.46 ---------------------------------------- 29.16/12.46 29.16/12.46 (43) 29.16/12.46 YES 29.16/12.46 29.16/12.46 ---------------------------------------- 29.16/12.46 29.16/12.46 (44) 29.16/12.46 Obligation: 29.16/12.46 Q DP problem: 29.16/12.46 The TRS P consists of the following rules: 29.16/12.46 29.16/12.46 new_primMinusNat(Succ(xuu53200), Succ(xuu13400)) -> new_primMinusNat(xuu53200, xuu13400) 29.16/12.46 29.16/12.46 R is empty. 29.16/12.46 Q is empty. 29.16/12.46 We have to consider all minimal (P,Q,R)-chains. 29.16/12.46 ---------------------------------------- 29.16/12.46 29.16/12.46 (45) QDPSizeChangeProof (EQUIVALENT) 29.16/12.46 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 29.16/12.46 29.16/12.46 From the DPs we obtained the following set of size-change graphs: 29.16/12.46 *new_primMinusNat(Succ(xuu53200), Succ(xuu13400)) -> new_primMinusNat(xuu53200, xuu13400) 29.16/12.46 The graph contains the following edges 1 > 1, 2 > 2 29.16/12.46 29.16/12.46 29.16/12.46 ---------------------------------------- 29.16/12.46 29.16/12.46 (46) 29.16/12.46 YES 29.16/12.46 29.16/12.46 ---------------------------------------- 29.16/12.46 29.16/12.46 (47) 29.16/12.46 Obligation: 29.16/12.46 Q DP problem: 29.16/12.46 The TRS P consists of the following rules: 29.16/12.46 29.16/12.46 new_primPlusNat(Succ(xuu53200), Succ(xuu13400)) -> new_primPlusNat(xuu53200, xuu13400) 29.16/12.46 29.16/12.46 R is empty. 29.16/12.46 Q is empty. 29.16/12.46 We have to consider all minimal (P,Q,R)-chains. 29.16/12.46 ---------------------------------------- 29.16/12.46 29.16/12.46 (48) QDPSizeChangeProof (EQUIVALENT) 29.16/12.46 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 29.16/12.46 29.16/12.46 From the DPs we obtained the following set of size-change graphs: 29.16/12.46 *new_primPlusNat(Succ(xuu53200), Succ(xuu13400)) -> new_primPlusNat(xuu53200, xuu13400) 29.16/12.46 The graph contains the following edges 1 > 1, 2 > 2 29.16/12.46 29.16/12.46 29.16/12.46 ---------------------------------------- 29.16/12.46 29.16/12.46 (49) 29.16/12.46 YES 29.21/12.51 EOF