31.96/12.71 YES 34.22/13.41 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 34.22/13.41 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 34.22/13.41 34.22/13.41 34.22/13.41 H-Termination with start terms of the given HASKELL could be proven: 34.22/13.41 34.22/13.41 (0) HASKELL 34.22/13.41 (1) LR [EQUIVALENT, 0 ms] 34.22/13.41 (2) HASKELL 34.22/13.41 (3) CR [EQUIVALENT, 0 ms] 34.22/13.41 (4) HASKELL 34.22/13.41 (5) IFR [EQUIVALENT, 0 ms] 34.22/13.41 (6) HASKELL 34.22/13.41 (7) BR [EQUIVALENT, 2 ms] 34.22/13.41 (8) HASKELL 34.22/13.41 (9) COR [EQUIVALENT, 0 ms] 34.22/13.41 (10) HASKELL 34.22/13.41 (11) LetRed [EQUIVALENT, 0 ms] 34.22/13.41 (12) HASKELL 34.22/13.41 (13) NumRed [SOUND, 0 ms] 34.22/13.41 (14) HASKELL 34.22/13.41 (15) Narrow [SOUND, 0 ms] 34.22/13.41 (16) AND 34.22/13.41 (17) QDP 34.22/13.41 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 34.22/13.41 (19) YES 34.22/13.41 (20) QDP 34.22/13.41 (21) TransformationProof [EQUIVALENT, 2320 ms] 34.22/13.41 (22) QDP 34.22/13.41 (23) QDPSizeChangeProof [EQUIVALENT, 0 ms] 34.22/13.41 (24) YES 34.22/13.41 (25) QDP 34.22/13.41 (26) QDPSizeChangeProof [EQUIVALENT, 36 ms] 34.22/13.41 (27) YES 34.22/13.41 (28) QDP 34.22/13.41 (29) QDPSizeChangeProof [EQUIVALENT, 60 ms] 34.22/13.41 (30) YES 34.22/13.41 (31) QDP 34.22/13.41 (32) QDPSizeChangeProof [EQUIVALENT, 0 ms] 34.22/13.41 (33) YES 34.22/13.41 (34) QDP 34.22/13.41 (35) QDPSizeChangeProof [EQUIVALENT, 0 ms] 34.22/13.41 (36) YES 34.22/13.41 (37) QDP 34.22/13.41 (38) QDPSizeChangeProof [EQUIVALENT, 0 ms] 34.22/13.41 (39) YES 34.22/13.41 (40) QDP 34.22/13.41 (41) QDPSizeChangeProof [EQUIVALENT, 0 ms] 34.22/13.41 (42) YES 34.22/13.41 (43) QDP 34.22/13.41 (44) QDPSizeChangeProof [EQUIVALENT, 0 ms] 34.22/13.41 (45) YES 34.22/13.41 34.22/13.41 34.22/13.41 ---------------------------------------- 34.22/13.41 34.22/13.41 (0) 34.22/13.41 Obligation: 34.22/13.41 mainModule Main 34.22/13.41 module FiniteMap where { 34.22/13.41 import qualified Main; 34.22/13.41 import qualified Maybe; 34.22/13.41 import qualified Prelude; 34.22/13.41 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 34.22/13.41 34.22/13.41 instance (Eq a, Eq b) => Eq FiniteMap a b where { 34.22/13.41 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 34.22/13.41 } 34.22/13.41 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 34.22/13.41 addListToFM fm key_elt_pairs = addListToFM_C (\old new ->new) fm key_elt_pairs; 34.22/13.41 34.22/13.41 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 34.22/13.41 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 34.22/13.41 add fmap (key,elt) = addToFM_C combiner fmap key elt; 34.22/13.41 }; 34.22/13.41 34.22/13.41 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 34.22/13.41 addToFM_C combiner EmptyFM key elt = unitFM key elt; 34.22/13.41 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 34.22/13.41 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 34.22/13.41 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 34.22/13.41 34.22/13.41 emptyFM :: FiniteMap b a; 34.22/13.41 emptyFM = EmptyFM; 34.22/13.41 34.22/13.41 findMax :: FiniteMap a b -> (a,b); 34.22/13.41 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 34.22/13.41 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 34.22/13.41 34.22/13.41 findMin :: FiniteMap a b -> (a,b); 34.22/13.41 findMin (Branch key elt _ EmptyFM _) = (key,elt); 34.22/13.41 findMin (Branch key elt _ fm_l _) = findMin fm_l; 34.22/13.41 34.22/13.41 fmToList :: FiniteMap b a -> [(b,a)]; 34.22/13.41 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 34.22/13.41 34.22/13.41 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 34.22/13.41 foldFM k z EmptyFM = z; 34.22/13.41 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 34.22/13.41 34.22/13.41 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 34.22/13.41 listToFM = addListToFM emptyFM; 34.22/13.41 34.22/13.41 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 34.22/13.41 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 34.22/13.41 | size_r > sIZE_RATIO * size_l = case fm_R of { 34.22/13.41 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 34.22/13.41 | otherwise -> double_L fm_L fm_R; 34.22/13.41 } 34.22/13.41 | size_l > sIZE_RATIO * size_r = case fm_L of { 34.22/13.41 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 34.22/13.41 | otherwise -> double_R fm_L fm_R; 34.22/13.41 } 34.22/13.41 | otherwise = mkBranch 2 key elt fm_L fm_R where { 34.22/13.41 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 34.22/13.41 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 34.22/13.41 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 34.22/13.41 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 34.22/13.41 size_l = sizeFM fm_L; 34.22/13.41 size_r = sizeFM fm_R; 34.22/13.41 }; 34.22/13.41 34.22/13.41 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 34.22/13.41 mkBranch which key elt fm_l fm_r = let { 34.22/13.41 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 34.22/13.41 } in result where { 34.22/13.41 balance_ok = True; 34.22/13.41 left_ok = case fm_l of { 34.22/13.41 EmptyFM-> True; 34.22/13.41 Branch left_key _ _ _ _-> let { 34.22/13.41 biggest_left_key = fst (findMax fm_l); 34.22/13.41 } in biggest_left_key < key; 34.22/13.41 } ; 34.22/13.41 left_size = sizeFM fm_l; 34.22/13.41 right_ok = case fm_r of { 34.22/13.41 EmptyFM-> True; 34.22/13.41 Branch right_key _ _ _ _-> let { 34.22/13.41 smallest_right_key = fst (findMin fm_r); 34.22/13.41 } in key < smallest_right_key; 34.22/13.41 } ; 34.22/13.41 right_size = sizeFM fm_r; 34.22/13.41 unbox :: Int -> Int; 34.22/13.41 unbox x = x; 34.22/13.41 }; 34.22/13.41 34.22/13.41 sIZE_RATIO :: Int; 34.22/13.41 sIZE_RATIO = 5; 34.22/13.41 34.22/13.41 sizeFM :: FiniteMap a b -> Int; 34.22/13.41 sizeFM EmptyFM = 0; 34.22/13.41 sizeFM (Branch _ _ size _ _) = size; 34.22/13.41 34.22/13.41 unitFM :: b -> a -> FiniteMap b a; 34.22/13.41 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 34.22/13.41 34.22/13.41 } 34.22/13.41 module Maybe where { 34.22/13.41 import qualified FiniteMap; 34.22/13.41 import qualified Main; 34.22/13.41 import qualified Prelude; 34.22/13.41 } 34.22/13.41 module Main where { 34.22/13.41 import qualified FiniteMap; 34.22/13.41 import qualified Maybe; 34.22/13.41 import qualified Prelude; 34.22/13.41 } 34.22/13.41 34.22/13.41 ---------------------------------------- 34.22/13.41 34.22/13.41 (1) LR (EQUIVALENT) 34.22/13.41 Lambda Reductions: 34.22/13.41 The following Lambda expression 34.22/13.41 "\oldnew->new" 34.22/13.41 is transformed to 34.22/13.41 "addListToFM0 old new = new; 34.22/13.41 " 34.22/13.41 The following Lambda expression 34.22/13.41 "\keyeltrest->(key,elt) : rest" 34.22/13.41 is transformed to 34.22/13.41 "fmToList0 key elt rest = (key,elt) : rest; 34.22/13.41 " 34.22/13.41 34.22/13.41 ---------------------------------------- 34.22/13.41 34.22/13.41 (2) 34.22/13.41 Obligation: 34.22/13.41 mainModule Main 34.22/13.41 module FiniteMap where { 34.22/13.41 import qualified Main; 34.22/13.41 import qualified Maybe; 34.22/13.41 import qualified Prelude; 34.22/13.41 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 34.22/13.41 34.22/13.41 instance (Eq a, Eq b) => Eq FiniteMap a b where { 34.22/13.41 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 34.22/13.41 } 34.22/13.41 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 34.22/13.41 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 34.22/13.41 34.22/13.41 addListToFM0 old new = new; 34.22/13.41 34.22/13.41 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 34.22/13.41 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 34.22/13.41 add fmap (key,elt) = addToFM_C combiner fmap key elt; 34.22/13.41 }; 34.22/13.41 34.22/13.41 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 34.22/13.41 addToFM_C combiner EmptyFM key elt = unitFM key elt; 34.22/13.41 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 34.22/13.41 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 34.22/13.41 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 34.22/13.41 34.22/13.41 emptyFM :: FiniteMap b a; 34.22/13.41 emptyFM = EmptyFM; 34.22/13.41 34.22/13.41 findMax :: FiniteMap b a -> (b,a); 34.22/13.41 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 34.22/13.41 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 34.22/13.41 34.22/13.41 findMin :: FiniteMap a b -> (a,b); 34.22/13.41 findMin (Branch key elt _ EmptyFM _) = (key,elt); 34.22/13.41 findMin (Branch key elt _ fm_l _) = findMin fm_l; 34.22/13.41 34.22/13.41 fmToList :: FiniteMap b a -> [(b,a)]; 34.22/13.41 fmToList fm = foldFM fmToList0 [] fm; 34.22/13.41 34.22/13.41 fmToList0 key elt rest = (key,elt) : rest; 34.22/13.41 34.22/13.41 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 34.22/13.41 foldFM k z EmptyFM = z; 34.22/13.41 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 34.22/13.41 34.22/13.41 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 34.22/13.41 listToFM = addListToFM emptyFM; 34.22/13.41 34.22/13.41 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 34.22/13.41 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 34.22/13.41 | size_r > sIZE_RATIO * size_l = case fm_R of { 34.22/13.41 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 34.22/13.41 | otherwise -> double_L fm_L fm_R; 34.22/13.41 } 34.22/13.41 | size_l > sIZE_RATIO * size_r = case fm_L of { 34.73/13.54 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 34.73/13.54 | otherwise -> double_R fm_L fm_R; 34.73/13.54 } 34.73/13.54 | otherwise = mkBranch 2 key elt fm_L fm_R where { 34.73/13.54 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 34.73/13.54 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 34.73/13.54 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 34.73/13.54 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 34.73/13.54 size_l = sizeFM fm_L; 34.73/13.54 size_r = sizeFM fm_R; 34.73/13.54 }; 34.73/13.54 34.73/13.54 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 34.73/13.54 mkBranch which key elt fm_l fm_r = let { 34.73/13.54 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 34.73/13.54 } in result where { 34.73/13.54 balance_ok = True; 34.73/13.54 left_ok = case fm_l of { 34.73/13.54 EmptyFM-> True; 34.73/13.54 Branch left_key _ _ _ _-> let { 34.73/13.54 biggest_left_key = fst (findMax fm_l); 34.73/13.54 } in biggest_left_key < key; 34.73/13.54 } ; 34.73/13.54 left_size = sizeFM fm_l; 34.73/13.54 right_ok = case fm_r of { 34.73/13.54 EmptyFM-> True; 34.73/13.54 Branch right_key _ _ _ _-> let { 34.73/13.54 smallest_right_key = fst (findMin fm_r); 34.73/13.54 } in key < smallest_right_key; 34.73/13.54 } ; 34.73/13.54 right_size = sizeFM fm_r; 34.73/13.54 unbox :: Int -> Int; 34.73/13.54 unbox x = x; 34.73/13.54 }; 34.73/13.54 34.73/13.54 sIZE_RATIO :: Int; 34.73/13.54 sIZE_RATIO = 5; 34.73/13.54 34.73/13.54 sizeFM :: FiniteMap a b -> Int; 34.73/13.54 sizeFM EmptyFM = 0; 34.73/13.54 sizeFM (Branch _ _ size _ _) = size; 34.73/13.54 34.73/13.54 unitFM :: b -> a -> FiniteMap b a; 34.73/13.54 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 34.73/13.54 34.73/13.54 } 34.73/13.54 module Maybe where { 34.73/13.54 import qualified FiniteMap; 34.73/13.54 import qualified Main; 34.73/13.54 import qualified Prelude; 34.73/13.54 } 34.73/13.54 module Main where { 34.73/13.54 import qualified FiniteMap; 34.73/13.54 import qualified Maybe; 34.73/13.54 import qualified Prelude; 34.73/13.54 } 34.73/13.54 34.73/13.54 ---------------------------------------- 34.73/13.54 34.73/13.54 (3) CR (EQUIVALENT) 34.73/13.54 Case Reductions: 34.73/13.54 The following Case expression 34.73/13.54 "case compare x y of { 34.73/13.54 EQ -> o; 34.73/13.54 LT -> LT; 34.73/13.54 GT -> GT} 34.73/13.54 " 34.73/13.54 is transformed to 34.73/13.54 "primCompAux0 o EQ = o; 34.73/13.54 primCompAux0 o LT = LT; 34.73/13.54 primCompAux0 o GT = GT; 34.73/13.54 " 34.73/13.54 The following Case expression 34.73/13.54 "case fm_r of { 34.73/13.54 EmptyFM -> True; 34.73/13.54 Branch right_key _ _ _ _ -> let { 34.73/13.54 smallest_right_key = fst (findMin fm_r); 34.73/13.54 } in key < smallest_right_key} 34.73/13.54 " 34.73/13.54 is transformed to 34.73/13.54 "right_ok0 fm_r key EmptyFM = True; 34.73/13.54 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 34.73/13.54 smallest_right_key = fst (findMin fm_r); 34.73/13.54 } in key < smallest_right_key; 34.73/13.54 " 34.73/13.54 The following Case expression 34.73/13.54 "case fm_l of { 34.73/13.54 EmptyFM -> True; 34.73/13.54 Branch left_key _ _ _ _ -> let { 34.73/13.54 biggest_left_key = fst (findMax fm_l); 34.73/13.54 } in biggest_left_key < key} 34.73/13.54 " 34.73/13.54 is transformed to 34.73/13.54 "left_ok0 fm_l key EmptyFM = True; 34.73/13.54 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 34.73/13.54 biggest_left_key = fst (findMax fm_l); 34.73/13.54 } in biggest_left_key < key; 34.73/13.54 " 34.73/13.54 The following Case expression 34.73/13.54 "case fm_R of { 34.73/13.54 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 34.73/13.54 " 34.73/13.54 is transformed to 34.73/13.54 "mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 34.73/13.54 " 34.73/13.54 The following Case expression 34.73/13.54 "case fm_L of { 34.73/13.54 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 34.73/13.54 " 34.73/13.54 is transformed to 34.73/13.54 "mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 34.73/13.54 " 34.73/13.54 34.73/13.54 ---------------------------------------- 34.73/13.54 34.73/13.54 (4) 34.73/13.54 Obligation: 34.73/13.54 mainModule Main 34.73/13.54 module FiniteMap where { 34.73/13.54 import qualified Main; 34.73/13.54 import qualified Maybe; 34.73/13.54 import qualified Prelude; 34.73/13.54 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 34.73/13.54 34.73/13.54 instance (Eq a, Eq b) => Eq FiniteMap b a where { 34.73/13.54 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 34.73/13.54 } 34.73/13.54 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 34.73/13.54 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 34.73/13.54 34.73/13.54 addListToFM0 old new = new; 34.73/13.54 34.73/13.54 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 34.73/13.54 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 34.73/13.54 add fmap (key,elt) = addToFM_C combiner fmap key elt; 34.73/13.54 }; 34.73/13.54 34.73/13.54 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 34.73/13.54 addToFM_C combiner EmptyFM key elt = unitFM key elt; 34.73/13.54 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 34.73/13.54 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 34.73/13.54 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 34.73/13.54 34.73/13.54 emptyFM :: FiniteMap b a; 34.73/13.54 emptyFM = EmptyFM; 34.73/13.54 34.73/13.54 findMax :: FiniteMap b a -> (b,a); 34.73/13.54 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 34.73/13.54 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 34.73/13.54 34.73/13.54 findMin :: FiniteMap b a -> (b,a); 34.73/13.54 findMin (Branch key elt _ EmptyFM _) = (key,elt); 34.73/13.54 findMin (Branch key elt _ fm_l _) = findMin fm_l; 34.73/13.54 34.73/13.54 fmToList :: FiniteMap a b -> [(a,b)]; 34.73/13.54 fmToList fm = foldFM fmToList0 [] fm; 34.73/13.54 34.73/13.54 fmToList0 key elt rest = (key,elt) : rest; 34.73/13.54 34.73/13.54 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 34.73/13.54 foldFM k z EmptyFM = z; 34.73/13.54 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 34.73/13.54 34.73/13.54 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 34.73/13.54 listToFM = addListToFM emptyFM; 34.73/13.54 34.73/13.54 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 34.73/13.54 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 34.73/13.54 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 34.73/13.54 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 34.73/13.54 | otherwise = mkBranch 2 key elt fm_L fm_R where { 34.73/13.54 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 34.73/13.54 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 34.73/13.54 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 34.73/13.54 | otherwise = double_L fm_L fm_R; 34.73/13.54 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 34.73/13.54 | otherwise = double_R fm_L fm_R; 34.73/13.54 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 34.73/13.54 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 34.73/13.54 size_l = sizeFM fm_L; 34.73/13.54 size_r = sizeFM fm_R; 34.73/13.54 }; 34.73/13.54 34.73/13.54 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 34.73/13.54 mkBranch which key elt fm_l fm_r = let { 34.73/13.54 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 34.73/13.54 } in result where { 34.73/13.54 balance_ok = True; 34.73/13.54 left_ok = left_ok0 fm_l key fm_l; 34.73/13.54 left_ok0 fm_l key EmptyFM = True; 34.73/13.54 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 34.73/13.54 biggest_left_key = fst (findMax fm_l); 34.73/13.54 } in biggest_left_key < key; 34.73/13.54 left_size = sizeFM fm_l; 34.73/13.54 right_ok = right_ok0 fm_r key fm_r; 34.73/13.54 right_ok0 fm_r key EmptyFM = True; 34.73/13.54 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 34.73/13.54 smallest_right_key = fst (findMin fm_r); 34.73/13.54 } in key < smallest_right_key; 34.73/13.54 right_size = sizeFM fm_r; 34.73/13.54 unbox :: Int -> Int; 34.73/13.54 unbox x = x; 34.73/13.54 }; 34.73/13.54 34.73/13.54 sIZE_RATIO :: Int; 34.73/13.54 sIZE_RATIO = 5; 34.73/13.54 34.73/13.54 sizeFM :: FiniteMap a b -> Int; 34.73/13.54 sizeFM EmptyFM = 0; 34.73/13.54 sizeFM (Branch _ _ size _ _) = size; 34.73/13.54 34.73/13.54 unitFM :: b -> a -> FiniteMap b a; 34.73/13.54 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 34.73/13.54 34.73/13.54 } 34.73/13.54 module Maybe where { 34.73/13.54 import qualified FiniteMap; 34.73/13.54 import qualified Main; 34.73/13.54 import qualified Prelude; 34.73/13.54 } 34.73/13.54 module Main where { 34.73/13.54 import qualified FiniteMap; 34.73/13.54 import qualified Maybe; 34.73/13.54 import qualified Prelude; 34.73/13.54 } 34.73/13.54 34.73/13.54 ---------------------------------------- 34.73/13.54 34.73/13.54 (5) IFR (EQUIVALENT) 34.73/13.54 If Reductions: 34.73/13.54 The following If expression 34.73/13.54 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 34.73/13.54 is transformed to 34.73/13.54 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 34.73/13.54 primDivNatS0 x y False = Zero; 34.73/13.54 " 34.73/13.54 The following If expression 34.73/13.54 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 34.73/13.54 is transformed to 34.73/13.54 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 34.73/13.54 primModNatS0 x y False = Succ x; 34.73/13.54 " 34.73/13.54 34.73/13.54 ---------------------------------------- 34.73/13.54 34.73/13.54 (6) 34.73/13.54 Obligation: 34.73/13.54 mainModule Main 34.73/13.54 module FiniteMap where { 34.73/13.54 import qualified Main; 34.73/13.54 import qualified Maybe; 34.73/13.54 import qualified Prelude; 34.73/13.54 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 34.73/13.54 34.73/13.54 instance (Eq a, Eq b) => Eq FiniteMap b a where { 34.73/13.54 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 34.73/13.54 } 34.73/13.54 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 34.73/13.54 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 34.73/13.54 34.73/13.54 addListToFM0 old new = new; 34.73/13.54 34.73/13.54 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 34.73/13.54 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 34.73/13.54 add fmap (key,elt) = addToFM_C combiner fmap key elt; 34.73/13.54 }; 34.73/13.54 34.73/13.54 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 34.73/13.54 addToFM_C combiner EmptyFM key elt = unitFM key elt; 34.73/13.54 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 34.73/13.54 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 34.73/13.54 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 34.73/13.54 34.73/13.54 emptyFM :: FiniteMap a b; 34.73/13.54 emptyFM = EmptyFM; 34.73/13.54 34.73/13.54 findMax :: FiniteMap b a -> (b,a); 34.73/13.54 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 34.73/13.54 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 34.73/13.54 34.73/13.54 findMin :: FiniteMap b a -> (b,a); 34.73/13.54 findMin (Branch key elt _ EmptyFM _) = (key,elt); 34.73/13.54 findMin (Branch key elt _ fm_l _) = findMin fm_l; 34.73/13.54 34.73/13.54 fmToList :: FiniteMap a b -> [(a,b)]; 34.73/13.54 fmToList fm = foldFM fmToList0 [] fm; 34.73/13.54 34.73/13.54 fmToList0 key elt rest = (key,elt) : rest; 34.73/13.54 34.73/13.54 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 34.73/13.54 foldFM k z EmptyFM = z; 34.73/13.54 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 34.73/13.54 34.73/13.54 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 34.73/13.54 listToFM = addListToFM emptyFM; 34.73/13.54 34.73/13.54 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 34.73/13.54 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 34.73/13.54 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 34.73/13.54 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 34.73/13.54 | otherwise = mkBranch 2 key elt fm_L fm_R where { 34.73/13.54 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 34.73/13.54 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 34.73/13.54 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 34.73/13.54 | otherwise = double_L fm_L fm_R; 34.73/13.54 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 34.73/13.54 | otherwise = double_R fm_L fm_R; 34.73/13.54 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 34.73/13.54 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 34.73/13.54 size_l = sizeFM fm_L; 34.73/13.54 size_r = sizeFM fm_R; 34.73/13.54 }; 34.73/13.54 34.73/13.54 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 34.73/13.54 mkBranch which key elt fm_l fm_r = let { 34.73/13.54 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 34.73/13.54 } in result where { 34.73/13.54 balance_ok = True; 34.73/13.54 left_ok = left_ok0 fm_l key fm_l; 34.73/13.54 left_ok0 fm_l key EmptyFM = True; 34.73/13.54 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 34.73/13.54 biggest_left_key = fst (findMax fm_l); 34.73/13.54 } in biggest_left_key < key; 34.73/13.54 left_size = sizeFM fm_l; 34.73/13.54 right_ok = right_ok0 fm_r key fm_r; 34.73/13.54 right_ok0 fm_r key EmptyFM = True; 34.73/13.54 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 34.73/13.54 smallest_right_key = fst (findMin fm_r); 34.73/13.54 } in key < smallest_right_key; 34.73/13.54 right_size = sizeFM fm_r; 34.73/13.54 unbox :: Int -> Int; 34.73/13.54 unbox x = x; 34.73/13.54 }; 34.73/13.54 34.73/13.54 sIZE_RATIO :: Int; 34.73/13.54 sIZE_RATIO = 5; 34.73/13.54 34.73/13.54 sizeFM :: FiniteMap b a -> Int; 34.73/13.54 sizeFM EmptyFM = 0; 34.73/13.54 sizeFM (Branch _ _ size _ _) = size; 34.73/13.54 34.73/13.54 unitFM :: b -> a -> FiniteMap b a; 34.73/13.54 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 34.73/13.54 34.73/13.54 } 34.73/13.54 module Maybe where { 34.73/13.54 import qualified FiniteMap; 34.73/13.54 import qualified Main; 34.73/13.54 import qualified Prelude; 34.73/13.54 } 34.73/13.54 module Main where { 34.73/13.54 import qualified FiniteMap; 34.73/13.54 import qualified Maybe; 34.73/13.54 import qualified Prelude; 34.73/13.54 } 34.73/13.54 34.73/13.54 ---------------------------------------- 34.73/13.54 34.73/13.54 (7) BR (EQUIVALENT) 34.73/13.54 Replaced joker patterns by fresh variables and removed binding patterns. 34.73/13.54 ---------------------------------------- 34.73/13.54 34.73/13.54 (8) 34.73/13.54 Obligation: 34.73/13.54 mainModule Main 34.73/13.54 module FiniteMap where { 34.73/13.54 import qualified Main; 34.73/13.54 import qualified Maybe; 34.73/13.54 import qualified Prelude; 34.73/13.54 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 34.73/13.54 34.73/13.54 instance (Eq a, Eq b) => Eq FiniteMap a b where { 34.73/13.54 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 34.73/13.54 } 34.73/13.54 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 34.73/13.54 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 34.73/13.54 34.73/13.54 addListToFM0 old new = new; 34.73/13.54 34.73/13.54 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 34.73/13.54 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 34.73/13.54 add fmap (key,elt) = addToFM_C combiner fmap key elt; 34.73/13.54 }; 34.73/13.54 34.73/13.54 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 34.73/13.54 addToFM_C combiner EmptyFM key elt = unitFM key elt; 34.73/13.54 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 34.73/13.54 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 34.73/13.54 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 34.73/13.54 34.73/13.54 emptyFM :: FiniteMap b a; 34.73/13.54 emptyFM = EmptyFM; 34.73/13.54 34.73/13.54 findMax :: FiniteMap b a -> (b,a); 34.73/13.54 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 34.73/13.54 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 34.73/13.54 34.73/13.54 findMin :: FiniteMap a b -> (a,b); 34.73/13.54 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 34.73/13.54 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 34.73/13.54 34.73/13.54 fmToList :: FiniteMap a b -> [(a,b)]; 34.73/13.54 fmToList fm = foldFM fmToList0 [] fm; 34.73/13.54 34.73/13.54 fmToList0 key elt rest = (key,elt) : rest; 34.73/13.54 34.73/13.54 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 34.73/13.54 foldFM k z EmptyFM = z; 34.73/13.54 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 34.73/13.54 34.73/13.54 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 34.73/13.54 listToFM = addListToFM emptyFM; 34.73/13.54 34.73/13.54 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 34.73/13.54 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 34.73/13.54 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 34.73/13.54 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 34.73/13.54 | otherwise = mkBranch 2 key elt fm_L fm_R where { 34.73/13.54 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 34.73/13.54 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 34.73/13.54 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 34.73/13.54 | otherwise = double_L fm_L fm_R; 34.73/13.54 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 34.73/13.54 | otherwise = double_R fm_L fm_R; 34.73/13.54 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 34.73/13.54 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 34.73/13.54 size_l = sizeFM fm_L; 34.73/13.54 size_r = sizeFM fm_R; 34.73/13.54 }; 34.73/13.54 34.73/13.54 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 34.73/13.54 mkBranch which key elt fm_l fm_r = let { 34.73/13.54 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 35.32/13.63 } in result where { 35.32/13.63 balance_ok = True; 35.32/13.63 left_ok = left_ok0 fm_l key fm_l; 35.32/13.63 left_ok0 fm_l key EmptyFM = True; 35.32/13.63 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 35.32/13.63 biggest_left_key = fst (findMax fm_l); 35.32/13.63 } in biggest_left_key < key; 35.32/13.63 left_size = sizeFM fm_l; 35.32/13.63 right_ok = right_ok0 fm_r key fm_r; 35.32/13.63 right_ok0 fm_r key EmptyFM = True; 35.32/13.63 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 35.32/13.63 smallest_right_key = fst (findMin fm_r); 35.32/13.63 } in key < smallest_right_key; 35.32/13.63 right_size = sizeFM fm_r; 35.32/13.63 unbox :: Int -> Int; 35.32/13.63 unbox x = x; 35.32/13.63 }; 35.32/13.63 35.32/13.63 sIZE_RATIO :: Int; 35.32/13.63 sIZE_RATIO = 5; 35.32/13.63 35.32/13.63 sizeFM :: FiniteMap b a -> Int; 35.32/13.63 sizeFM EmptyFM = 0; 35.32/13.63 sizeFM (Branch vyu vyv size vyw vyx) = size; 35.32/13.63 35.32/13.63 unitFM :: a -> b -> FiniteMap a b; 35.32/13.63 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 35.32/13.63 35.32/13.63 } 35.32/13.63 module Maybe where { 35.32/13.63 import qualified FiniteMap; 35.32/13.63 import qualified Main; 35.32/13.63 import qualified Prelude; 35.32/13.63 } 35.32/13.63 module Main where { 35.32/13.63 import qualified FiniteMap; 35.32/13.63 import qualified Maybe; 35.32/13.63 import qualified Prelude; 35.32/13.63 } 35.32/13.63 35.32/13.63 ---------------------------------------- 35.32/13.63 35.32/13.63 (9) COR (EQUIVALENT) 35.32/13.63 Cond Reductions: 35.32/13.63 The following Function with conditions 35.32/13.63 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 35.32/13.63 " 35.32/13.63 is transformed to 35.32/13.63 "compare x y = compare3 x y; 35.32/13.63 " 35.32/13.63 "compare2 x y True = EQ; 35.32/13.63 compare2 x y False = compare1 x y (x <= y); 35.32/13.63 " 35.32/13.63 "compare1 x y True = LT; 35.32/13.63 compare1 x y False = compare0 x y otherwise; 35.32/13.63 " 35.32/13.63 "compare0 x y True = GT; 35.32/13.63 " 35.32/13.63 "compare3 x y = compare2 x y (x == y); 35.32/13.63 " 35.32/13.63 The following Function with conditions 35.32/13.63 "absReal x|x >= 0x|otherwise`negate` x; 35.32/13.63 " 35.32/13.63 is transformed to 35.32/13.63 "absReal x = absReal2 x; 35.32/13.63 " 35.32/13.63 "absReal0 x True = `negate` x; 35.32/13.63 " 35.32/13.63 "absReal1 x True = x; 35.32/13.63 absReal1 x False = absReal0 x otherwise; 35.32/13.63 " 35.32/13.63 "absReal2 x = absReal1 x (x >= 0); 35.32/13.63 " 35.32/13.63 The following Function with conditions 35.32/13.63 "gcd' x 0 = x; 35.32/13.63 gcd' x y = gcd' y (x `rem` y); 35.32/13.63 " 35.32/13.63 is transformed to 35.32/13.63 "gcd' x vzw = gcd'2 x vzw; 35.32/13.63 gcd' x y = gcd'0 x y; 35.32/13.63 " 35.32/13.63 "gcd'0 x y = gcd' y (x `rem` y); 35.32/13.63 " 35.32/13.63 "gcd'1 True x vzw = x; 35.32/13.63 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 35.32/13.63 " 35.32/13.63 "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 35.32/13.63 gcd'2 wuu wuv = gcd'0 wuu wuv; 35.32/13.63 " 35.32/13.63 The following Function with conditions 35.32/13.63 "gcd 0 0 = error []; 35.32/13.63 gcd x y = gcd' (abs x) (abs y) where { 35.32/13.63 gcd' x 0 = x; 35.32/13.63 gcd' x y = gcd' y (x `rem` y); 35.32/13.63 } 35.32/13.63 ; 35.32/13.63 " 35.32/13.63 is transformed to 35.32/13.63 "gcd wuw wux = gcd3 wuw wux; 35.32/13.63 gcd x y = gcd0 x y; 35.32/13.63 " 35.32/13.63 "gcd0 x y = gcd' (abs x) (abs y) where { 35.32/13.63 gcd' x vzw = gcd'2 x vzw; 35.32/13.63 gcd' x y = gcd'0 x y; 35.32/13.63 ; 35.32/13.63 gcd'0 x y = gcd' y (x `rem` y); 35.32/13.63 ; 35.32/13.63 gcd'1 True x vzw = x; 35.32/13.63 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 35.32/13.63 ; 35.32/13.63 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 35.32/13.63 gcd'2 wuu wuv = gcd'0 wuu wuv; 35.32/13.63 } 35.32/13.63 ; 35.32/13.63 " 35.32/13.63 "gcd1 True wuw wux = error []; 35.32/13.63 gcd1 wuy wuz wvu = gcd0 wuz wvu; 35.32/13.63 " 35.32/13.63 "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; 35.32/13.63 gcd2 wvv wvw wvx = gcd0 wvw wvx; 35.32/13.63 " 35.32/13.63 "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; 35.32/13.63 gcd3 wvy wvz = gcd0 wvy wvz; 35.32/13.63 " 35.32/13.63 The following Function with conditions 35.32/13.63 "undefined |Falseundefined; 35.32/13.63 " 35.32/13.63 is transformed to 35.32/13.63 "undefined = undefined1; 35.32/13.63 " 35.32/13.63 "undefined0 True = undefined; 35.32/13.63 " 35.32/13.63 "undefined1 = undefined0 False; 35.32/13.63 " 35.32/13.63 The following Function with conditions 35.32/13.63 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 35.32/13.63 d = gcd x y; 35.32/13.63 } 35.32/13.63 ; 35.32/13.63 " 35.32/13.63 is transformed to 35.32/13.63 "reduce x y = reduce2 x y; 35.32/13.63 " 35.32/13.63 "reduce2 x y = reduce1 x y (y == 0) where { 35.32/13.63 d = gcd x y; 35.32/13.63 ; 35.32/13.63 reduce0 x y True = x `quot` d :% (y `quot` d); 35.32/13.63 ; 35.32/13.63 reduce1 x y True = error []; 35.32/13.63 reduce1 x y False = reduce0 x y otherwise; 35.32/13.63 } 35.32/13.63 ; 35.32/13.63 " 35.32/13.63 The following Function with conditions 35.32/13.63 "addToFM_C combiner EmptyFM key elt = unitFM key elt; 35.32/13.63 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt|new_key < keymkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r|new_key > keymkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt)|otherwiseBranch new_key (combiner elt new_elt) size fm_l fm_r; 35.32/13.63 " 35.32/13.63 is transformed to 35.32/13.63 "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 35.32/13.63 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; 35.32/13.63 " 35.32/13.63 "addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; 35.32/13.63 " 35.32/13.63 "addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); 35.32/13.63 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; 35.32/13.63 " 35.32/13.63 "addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; 35.32/13.63 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); 35.32/13.63 " 35.32/13.63 "addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); 35.32/13.63 " 35.32/13.63 "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 35.32/13.63 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 35.32/13.63 " 35.32/13.63 The following Function with conditions 35.32/13.63 "mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 35.32/13.63 " 35.32/13.63 is transformed to 35.32/13.63 "mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 35.32/13.63 " 35.32/13.63 "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 35.32/13.63 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 35.32/13.63 " 35.32/13.63 "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 35.32/13.63 " 35.32/13.63 "mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 35.32/13.63 " 35.32/13.63 The following Function with conditions 35.32/13.63 "mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 35.32/13.63 " 35.32/13.63 is transformed to 35.32/13.63 "mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 35.32/13.63 " 35.32/13.63 "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 35.32/13.63 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 35.32/13.63 " 35.32/13.63 "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 35.32/13.63 " 35.32/13.63 "mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 35.32/13.63 " 35.32/13.63 The following Function with conditions 35.32/13.63 "mkBalBranch key elt fm_L fm_R|size_l + size_r < 2mkBranch 1 key elt fm_L fm_R|size_r > sIZE_RATIO * size_lmkBalBranch0 fm_L fm_R fm_R|size_l > sIZE_RATIO * size_rmkBalBranch1 fm_L fm_R fm_L|otherwisemkBranch 2 key elt fm_L fm_R where { 35.32/13.63 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 35.32/13.63 ; 35.32/13.63 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 35.32/13.63 ; 35.32/13.63 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 35.32/13.63 ; 35.32/13.63 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 35.32/13.63 ; 35.32/13.63 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 35.32/13.63 ; 35.32/13.63 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 35.32/13.63 ; 35.32/13.63 size_l = sizeFM fm_L; 35.32/13.63 ; 35.32/13.63 size_r = sizeFM fm_R; 35.32/13.63 } 35.32/13.63 ; 35.32/13.63 " 35.32/13.63 is transformed to 35.32/13.63 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 35.32/13.63 " 35.32/13.63 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 35.32/13.63 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 35.32/13.63 ; 35.32/13.63 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 35.32/13.63 ; 35.32/13.63 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 35.32/13.63 ; 35.32/13.63 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 35.32/13.63 ; 35.32/13.63 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 35.32/13.63 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 35.32/13.63 ; 35.32/13.63 mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 35.32/13.63 ; 35.32/13.63 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 35.32/13.63 ; 35.32/13.63 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 35.32/13.63 ; 35.32/13.63 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 35.32/13.63 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 35.32/13.63 ; 35.32/13.63 mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 35.32/13.63 ; 35.32/13.63 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 35.32/13.63 ; 35.32/13.63 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 35.32/13.63 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 35.32/13.63 ; 35.32/13.63 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 35.32/13.63 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 35.32/13.63 ; 35.32/13.63 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 35.32/13.63 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 35.32/13.63 ; 35.32/13.63 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 35.32/13.63 ; 35.32/13.63 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 35.32/13.63 ; 35.32/13.63 size_l = sizeFM fm_L; 35.32/13.63 ; 35.32/13.63 size_r = sizeFM fm_R; 35.32/13.63 } 35.32/13.63 ; 35.32/13.63 " 35.32/13.63 35.32/13.63 ---------------------------------------- 35.32/13.63 35.32/13.63 (10) 35.32/13.63 Obligation: 35.32/13.63 mainModule Main 35.32/13.63 module FiniteMap where { 35.32/13.63 import qualified Main; 35.32/13.63 import qualified Maybe; 35.32/13.63 import qualified Prelude; 35.32/13.63 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 35.32/13.63 35.32/13.63 instance (Eq a, Eq b) => Eq FiniteMap b a where { 35.32/13.63 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 35.32/13.63 } 35.32/13.63 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 35.32/13.63 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 35.32/13.63 35.32/13.63 addListToFM0 old new = new; 35.32/13.63 35.32/13.63 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 35.32/13.63 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 35.32/13.63 add fmap (key,elt) = addToFM_C combiner fmap key elt; 35.32/13.63 }; 35.32/13.63 35.32/13.63 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 35.32/13.63 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 35.32/13.63 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; 35.32/13.63 35.32/13.63 addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; 35.32/13.63 35.32/13.63 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); 35.32/13.63 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; 35.32/13.63 35.32/13.63 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; 35.32/13.63 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); 35.32/13.63 35.32/13.63 addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); 35.32/13.63 35.32/13.63 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 35.32/13.63 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 35.32/13.63 35.32/13.63 emptyFM :: FiniteMap b a; 35.32/13.63 emptyFM = EmptyFM; 35.32/13.63 35.32/13.63 findMax :: FiniteMap b a -> (b,a); 35.32/13.63 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 35.32/13.63 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 35.32/13.63 35.32/13.63 findMin :: FiniteMap a b -> (a,b); 35.32/13.63 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 35.32/13.63 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 35.32/13.63 35.32/13.63 fmToList :: FiniteMap a b -> [(a,b)]; 35.32/13.63 fmToList fm = foldFM fmToList0 [] fm; 35.32/13.63 35.32/13.63 fmToList0 key elt rest = (key,elt) : rest; 35.32/13.63 35.32/13.63 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 35.32/13.63 foldFM k z EmptyFM = z; 35.32/13.63 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 35.32/13.63 35.32/13.63 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 35.32/13.63 listToFM = addListToFM emptyFM; 35.32/13.63 35.32/13.63 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 35.32/13.63 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 35.32/13.63 35.32/13.63 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 35.32/13.63 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 35.32/13.63 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 35.32/13.63 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 35.32/13.63 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 35.32/13.63 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 35.32/13.63 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 35.32/13.63 mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 35.32/13.63 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 35.32/13.63 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 35.32/13.63 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 35.32/13.63 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 35.32/13.63 mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 35.32/13.63 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 35.32/13.63 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 35.32/13.63 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 35.32/13.63 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 35.32/13.63 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 35.32/13.63 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 35.32/13.63 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 35.32/13.63 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 35.32/13.63 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 35.32/13.63 size_l = sizeFM fm_L; 35.32/13.63 size_r = sizeFM fm_R; 35.32/13.63 }; 35.32/13.63 35.32/13.63 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 35.32/13.63 mkBranch which key elt fm_l fm_r = let { 35.32/13.63 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 35.32/13.63 } in result where { 35.32/13.63 balance_ok = True; 35.32/13.63 left_ok = left_ok0 fm_l key fm_l; 35.32/13.63 left_ok0 fm_l key EmptyFM = True; 35.32/13.63 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 35.32/13.63 biggest_left_key = fst (findMax fm_l); 35.32/13.63 } in biggest_left_key < key; 35.32/13.63 left_size = sizeFM fm_l; 35.32/13.63 right_ok = right_ok0 fm_r key fm_r; 35.32/13.63 right_ok0 fm_r key EmptyFM = True; 35.32/13.63 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 35.32/13.63 smallest_right_key = fst (findMin fm_r); 35.32/13.63 } in key < smallest_right_key; 35.32/13.63 right_size = sizeFM fm_r; 35.32/13.63 unbox :: Int -> Int; 35.32/13.63 unbox x = x; 35.32/13.63 }; 35.32/13.63 35.32/13.63 sIZE_RATIO :: Int; 35.32/13.63 sIZE_RATIO = 5; 35.32/13.63 35.32/13.63 sizeFM :: FiniteMap b a -> Int; 35.32/13.63 sizeFM EmptyFM = 0; 35.32/13.63 sizeFM (Branch vyu vyv size vyw vyx) = size; 35.32/13.63 35.32/13.63 unitFM :: a -> b -> FiniteMap a b; 35.32/13.63 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 35.32/13.63 35.32/13.63 } 35.32/13.63 module Maybe where { 35.32/13.63 import qualified FiniteMap; 35.32/13.63 import qualified Main; 35.32/13.63 import qualified Prelude; 35.32/13.63 } 35.32/13.63 module Main where { 35.32/13.63 import qualified FiniteMap; 35.32/13.63 import qualified Maybe; 35.32/13.63 import qualified Prelude; 35.32/13.63 } 35.32/13.63 35.32/13.63 ---------------------------------------- 35.32/13.63 35.32/13.63 (11) LetRed (EQUIVALENT) 35.32/13.63 Let/Where Reductions: 35.32/13.63 The bindings of the following Let/Where expression 35.32/13.63 "gcd' (abs x) (abs y) where { 35.32/13.63 gcd' x vzw = gcd'2 x vzw; 35.32/13.63 gcd' x y = gcd'0 x y; 35.32/13.63 ; 35.32/13.63 gcd'0 x y = gcd' y (x `rem` y); 35.32/13.63 ; 35.32/13.63 gcd'1 True x vzw = x; 35.32/13.63 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 35.32/13.63 ; 35.32/13.63 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 35.32/13.63 gcd'2 wuu wuv = gcd'0 wuu wuv; 35.32/13.63 } 35.32/13.63 " 35.32/13.63 are unpacked to the following functions on top level 35.32/13.63 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 35.32/13.63 " 35.32/13.63 "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; 35.32/13.63 gcd0Gcd' x y = gcd0Gcd'0 x y; 35.32/13.63 " 35.32/13.63 "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; 35.32/13.63 gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; 35.32/13.63 " 35.32/13.63 "gcd0Gcd'1 True x vzw = x; 35.32/13.63 gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; 35.32/13.63 " 35.32/13.63 The bindings of the following Let/Where expression 35.32/13.63 "reduce1 x y (y == 0) where { 35.32/13.63 d = gcd x y; 35.32/13.63 ; 35.32/13.63 reduce0 x y True = x `quot` d :% (y `quot` d); 35.32/13.63 ; 35.32/13.63 reduce1 x y True = error []; 35.32/13.63 reduce1 x y False = reduce0 x y otherwise; 35.32/13.63 } 35.32/13.63 " 35.32/13.63 are unpacked to the following functions on top level 35.32/13.63 "reduce2D wxw wxx = gcd wxw wxx; 35.32/13.63 " 35.32/13.63 "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); 35.32/13.63 " 35.32/13.63 "reduce2Reduce1 wxw wxx x y True = error []; 35.32/13.63 reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; 35.32/13.63 " 35.32/13.63 The bindings of the following Let/Where expression 35.32/13.63 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 35.32/13.63 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 35.32/13.63 ; 35.32/13.63 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 35.32/13.63 ; 35.32/13.63 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 35.32/13.63 ; 35.32/13.63 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 35.32/13.63 ; 35.32/13.63 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 35.32/13.63 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 35.32/13.63 ; 35.32/13.63 mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 35.32/13.63 ; 35.32/13.63 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 35.32/13.63 ; 35.32/13.63 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 35.32/13.63 ; 35.32/13.63 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 35.32/13.63 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 35.32/13.63 ; 35.32/13.63 mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 35.32/13.63 ; 35.32/13.63 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 35.32/13.63 ; 35.32/13.63 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 35.32/13.63 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 35.32/13.63 ; 35.32/13.63 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 35.32/13.63 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 35.32/13.63 ; 35.32/13.63 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 35.32/13.63 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 35.32/13.63 ; 35.32/13.63 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 35.32/13.63 ; 35.32/13.63 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 35.32/13.63 ; 35.32/13.63 size_l = sizeFM fm_L; 35.32/13.63 ; 35.32/13.63 size_r = sizeFM fm_R; 35.32/13.63 } 35.32/13.63 " 35.32/13.63 are unpacked to the following functions on top level 35.32/13.63 "mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; 35.32/13.63 " 35.32/13.63 "mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; 35.32/13.63 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 35.32/13.63 " 35.32/13.63 "mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 35.32/13.63 " 35.32/13.63 "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); 35.32/13.63 " 35.32/13.63 "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 35.32/13.63 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); 35.32/13.63 " 35.32/13.63 "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 35.32/13.63 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 35.32/13.63 " 35.32/13.63 "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); 35.32/13.63 " 35.32/13.63 "mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 35.32/13.63 " 35.32/13.63 "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyu; 35.32/13.63 " 35.32/13.63 "mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; 35.32/13.63 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 35.32/13.63 " 35.32/13.63 "mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 35.32/13.63 " 35.32/13.63 "mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; 35.32/13.63 " 35.32/13.63 "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 35.32/13.63 " 35.32/13.63 "mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 35.32/13.63 " 35.32/13.63 "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; 35.32/13.63 " 35.32/13.63 "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); 35.32/13.63 " 35.32/13.63 "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 35.32/13.63 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); 35.32/13.63 " 35.32/13.63 "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; 35.32/13.63 " 35.32/13.63 The bindings of the following Let/Where expression 35.32/13.63 "foldl add fm key_elt_pairs where { 35.32/13.63 add fmap (key,elt) = addToFM_C combiner fmap key elt; 35.32/13.63 } 35.32/13.63 " 35.32/13.63 are unpacked to the following functions on top level 35.32/13.63 "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 35.32/13.63 " 35.32/13.63 The bindings of the following Let/Where expression 35.32/13.63 "let { 35.32/13.63 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 35.32/13.63 } in result where { 35.32/13.63 balance_ok = True; 35.32/13.63 ; 35.32/13.63 left_ok = left_ok0 fm_l key fm_l; 35.32/13.63 ; 35.32/13.63 left_ok0 fm_l key EmptyFM = True; 35.32/13.63 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 35.32/13.63 biggest_left_key = fst (findMax fm_l); 35.32/13.63 } in biggest_left_key < key; 35.32/13.63 ; 35.32/13.63 left_size = sizeFM fm_l; 35.32/13.63 ; 35.32/13.63 right_ok = right_ok0 fm_r key fm_r; 35.32/13.63 ; 35.32/13.63 right_ok0 fm_r key EmptyFM = True; 35.32/13.63 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 35.32/13.63 smallest_right_key = fst (findMin fm_r); 35.32/13.63 } in key < smallest_right_key; 35.32/13.63 ; 35.32/13.63 right_size = sizeFM fm_r; 35.32/13.63 ; 35.32/13.63 unbox x = x; 35.32/13.63 } 35.32/13.63 " 35.32/13.63 are unpacked to the following functions on top level 35.32/13.63 "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 35.39/13.68 " 35.39/13.68 "mkBranchBalance_ok wyx wyy wyz = True; 35.39/13.68 " 35.39/13.68 "mkBranchRight_size wyx wyy wyz = sizeFM wyx; 35.39/13.68 " 35.39/13.68 "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 35.39/13.68 " 35.39/13.68 "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 35.39/13.68 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 35.39/13.68 " 35.39/13.68 "mkBranchUnbox wyx wyy wyz x = x; 35.39/13.68 " 35.39/13.68 "mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 35.39/13.68 " 35.39/13.68 "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 35.39/13.68 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 35.39/13.68 " 35.39/13.68 The bindings of the following Let/Where expression 35.39/13.68 "let { 35.39/13.68 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 35.39/13.68 } in result" 35.39/13.68 are unpacked to the following functions on top level 35.39/13.68 "mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; 35.39/13.68 " 35.39/13.68 The bindings of the following Let/Where expression 35.39/13.68 "let { 35.39/13.68 biggest_left_key = fst (findMax fm_l); 35.39/13.68 } in biggest_left_key < key" 35.39/13.68 are unpacked to the following functions on top level 35.39/13.68 "mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 35.39/13.68 " 35.39/13.68 The bindings of the following Let/Where expression 35.39/13.68 "let { 35.39/13.68 smallest_right_key = fst (findMin fm_r); 35.39/13.68 } in key < smallest_right_key" 35.39/13.68 are unpacked to the following functions on top level 35.39/13.68 "mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 35.39/13.68 " 35.39/13.68 35.39/13.68 ---------------------------------------- 35.39/13.68 35.39/13.68 (12) 35.39/13.68 Obligation: 35.39/13.68 mainModule Main 35.39/13.68 module FiniteMap where { 35.39/13.68 import qualified Main; 35.39/13.68 import qualified Maybe; 35.39/13.68 import qualified Prelude; 35.39/13.68 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 35.39/13.68 35.39/13.68 instance (Eq a, Eq b) => Eq FiniteMap a b where { 35.39/13.68 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 35.39/13.68 } 35.39/13.68 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 35.39/13.68 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 35.39/13.68 35.39/13.68 addListToFM0 old new = new; 35.39/13.68 35.39/13.68 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 35.39/13.68 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 35.39/13.68 35.39/13.68 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 35.39/13.68 35.39/13.68 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 35.39/13.68 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 35.39/13.68 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; 35.39/13.68 35.39/13.68 addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; 35.39/13.68 35.39/13.68 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); 35.39/13.68 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; 35.39/13.68 35.39/13.68 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; 35.39/13.68 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); 35.39/13.68 35.39/13.68 addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); 35.39/13.68 35.39/13.68 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 35.39/13.68 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 35.39/13.68 35.39/13.68 emptyFM :: FiniteMap b a; 35.39/13.68 emptyFM = EmptyFM; 35.39/13.68 35.39/13.68 findMax :: FiniteMap a b -> (a,b); 35.39/13.68 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 35.39/13.68 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 35.39/13.68 35.39/13.68 findMin :: FiniteMap a b -> (a,b); 35.39/13.68 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 35.39/13.68 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 35.39/13.68 35.39/13.68 fmToList :: FiniteMap b a -> [(b,a)]; 35.39/13.68 fmToList fm = foldFM fmToList0 [] fm; 35.39/13.68 35.39/13.68 fmToList0 key elt rest = (key,elt) : rest; 35.39/13.68 35.39/13.68 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 35.39/13.68 foldFM k z EmptyFM = z; 35.39/13.68 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 35.39/13.68 35.39/13.68 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 35.39/13.68 listToFM = addListToFM emptyFM; 35.39/13.68 35.39/13.68 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 35.39/13.68 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 35.39/13.68 35.39/13.68 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); 35.39/13.68 35.39/13.68 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); 35.39/13.68 35.39/13.68 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); 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; 35.39/13.68 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; 35.39/13.68 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 35.39/13.68 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 35.39/13.68 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 35.39/13.68 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); 35.39/13.68 35.39/13.68 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; 35.39/13.68 35.39/13.68 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); 35.39/13.68 35.39/13.68 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; 35.39/13.68 35.39/13.68 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyu; 35.39/13.68 35.39/13.68 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 35.39/13.68 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 35.39/13.68 35.39/13.68 mkBranchBalance_ok wyx wyy wyz = True; 35.39/13.68 35.39/13.68 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 35.39/13.68 35.39/13.68 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 35.39/13.68 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 35.39/13.68 35.39/13.68 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 35.39/13.68 35.39/13.68 mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 35.39/13.68 35.39/13.68 mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; 35.39/13.68 35.39/13.68 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 35.39/13.68 35.39/13.68 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 35.39/13.68 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 35.39/13.68 35.39/13.68 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 35.39/13.68 35.39/13.68 mkBranchRight_size wyx wyy wyz = sizeFM wyx; 35.39/13.68 35.39/13.68 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 35.39/13.68 mkBranchUnbox wyx wyy wyz x = x; 35.39/13.68 35.39/13.68 sIZE_RATIO :: Int; 35.39/13.68 sIZE_RATIO = 5; 35.39/13.68 35.39/13.68 sizeFM :: FiniteMap a b -> Int; 35.39/13.68 sizeFM EmptyFM = 0; 35.39/13.68 sizeFM (Branch vyu vyv size vyw vyx) = size; 35.39/13.68 35.39/13.68 unitFM :: a -> b -> FiniteMap a b; 35.39/13.68 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 35.39/13.68 35.39/13.68 } 35.39/13.68 module Maybe where { 35.39/13.68 import qualified FiniteMap; 35.39/13.68 import qualified Main; 35.39/13.68 import qualified Prelude; 35.39/13.68 } 35.39/13.68 module Main where { 35.39/13.68 import qualified FiniteMap; 35.39/13.68 import qualified Maybe; 35.39/13.68 import qualified Prelude; 35.39/13.68 } 35.39/13.68 35.39/13.68 ---------------------------------------- 35.39/13.68 35.39/13.68 (13) NumRed (SOUND) 35.39/13.68 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 35.39/13.68 ---------------------------------------- 35.39/13.68 35.39/13.68 (14) 35.39/13.68 Obligation: 35.39/13.68 mainModule Main 35.39/13.68 module FiniteMap where { 35.39/13.68 import qualified Main; 35.39/13.68 import qualified Maybe; 35.39/13.68 import qualified Prelude; 35.39/13.68 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 35.39/13.68 35.39/13.68 instance (Eq a, Eq b) => Eq FiniteMap a b where { 35.39/13.68 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 35.39/13.68 } 35.39/13.68 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 35.39/13.68 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 35.39/13.68 35.39/13.68 addListToFM0 old new = new; 35.39/13.68 35.39/13.68 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 35.39/13.68 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 35.39/13.68 35.39/13.68 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 35.39/13.68 35.39/13.68 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 35.39/13.68 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 35.39/13.68 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; 35.39/13.68 35.39/13.68 addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; 35.39/13.68 35.39/13.68 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); 35.39/13.68 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; 35.39/13.68 35.39/13.68 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; 35.39/13.68 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); 35.39/13.68 35.39/13.68 addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); 35.39/13.68 35.39/13.68 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 35.39/13.68 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 35.39/13.68 35.39/13.68 emptyFM :: FiniteMap a b; 35.39/13.68 emptyFM = EmptyFM; 35.39/13.68 35.39/13.68 findMax :: FiniteMap a b -> (a,b); 35.39/13.68 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 35.39/13.68 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 35.39/13.68 35.39/13.68 findMin :: FiniteMap b a -> (b,a); 35.39/13.68 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 35.39/13.68 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 35.39/13.68 35.39/13.68 fmToList :: FiniteMap a b -> [(a,b)]; 35.39/13.68 fmToList fm = foldFM fmToList0 [] fm; 35.39/13.68 35.39/13.68 fmToList0 key elt rest = (key,elt) : rest; 35.39/13.68 35.39/13.68 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 35.39/13.68 foldFM k z EmptyFM = z; 35.39/13.68 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 35.39/13.68 35.39/13.68 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 35.39/13.68 listToFM = addListToFM emptyFM; 35.39/13.68 35.39/13.68 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 35.39/13.68 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 35.39/13.68 35.39/13.68 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))); 35.39/13.68 35.39/13.68 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); 35.39/13.68 35.39/13.68 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); 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; 35.39/13.68 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; 35.39/13.68 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 35.39/13.68 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 35.39/13.68 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); 35.39/13.68 35.39/13.68 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 35.39/13.68 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); 35.39/13.68 35.39/13.68 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; 35.39/13.68 35.39/13.68 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); 35.39/13.68 35.39/13.68 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; 35.39/13.68 35.39/13.68 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyu; 35.39/13.68 35.39/13.68 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 35.39/13.68 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 35.39/13.68 35.39/13.68 mkBranchBalance_ok wyx wyy wyz = True; 35.39/13.68 35.39/13.68 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 35.39/13.68 35.39/13.68 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 35.39/13.68 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 35.39/13.68 35.39/13.68 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 35.39/13.68 35.39/13.68 mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 35.39/13.68 35.39/13.68 mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (Pos (Succ Zero) + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; 35.39/13.68 35.39/13.68 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 35.39/13.68 35.39/13.68 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 35.39/13.68 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 35.39/13.68 35.39/13.68 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 35.39/13.68 35.39/13.68 mkBranchRight_size wyx wyy wyz = sizeFM wyx; 35.39/13.68 35.39/13.68 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 35.39/13.68 mkBranchUnbox wyx wyy wyz x = x; 35.39/13.68 35.39/13.68 sIZE_RATIO :: Int; 35.39/13.68 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 35.39/13.68 35.39/13.68 sizeFM :: FiniteMap b a -> Int; 35.39/13.68 sizeFM EmptyFM = Pos Zero; 35.39/13.68 sizeFM (Branch vyu vyv size vyw vyx) = size; 35.39/13.68 35.39/13.68 unitFM :: a -> b -> FiniteMap a b; 35.39/13.68 unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; 35.39/13.68 35.39/13.68 } 35.39/13.68 module Maybe where { 35.39/13.68 import qualified FiniteMap; 35.39/13.68 import qualified Main; 35.39/13.68 import qualified Prelude; 35.39/13.68 } 35.39/13.68 module Main where { 35.39/13.68 import qualified FiniteMap; 35.39/13.68 import qualified Maybe; 35.39/13.68 import qualified Prelude; 35.39/13.68 } 35.39/13.68 35.39/13.68 ---------------------------------------- 35.39/13.68 35.39/13.68 (15) Narrow (SOUND) 35.39/13.68 Haskell To QDPs 35.39/13.68 35.39/13.68 digraph dp_graph { 35.39/13.68 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.listToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 35.39/13.68 3[label="FiniteMap.listToFM xuu3",fontsize=16,color="black",shape="triangle"];3 -> 4[label="",style="solid", color="black", weight=3]; 35.39/13.68 4[label="FiniteMap.addListToFM FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];4 -> 5[label="",style="solid", color="black", weight=3]; 35.39/13.68 5[label="FiniteMap.addListToFM_C FiniteMap.addListToFM0 FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 35.39/13.68 6 -> 20[label="",style="dashed", color="red", weight=0]; 35.39/13.68 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) FiniteMap.emptyFM xuu3",fontsize=16,color="magenta"];6 -> 21[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 6 -> 22[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 21[label="xuu3",fontsize=16,color="green",shape="box"];22[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];22 -> 27[label="",style="solid", color="black", weight=3]; 35.39/13.68 20[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 xuu311",fontsize=16,color="burlywood",shape="triangle"];2871[label="xuu311/xuu3110 : xuu3111",fontsize=10,color="white",style="solid",shape="box"];20 -> 2871[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2871 -> 28[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2872[label="xuu311/[]",fontsize=10,color="white",style="solid",shape="box"];20 -> 2872[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2872 -> 29[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 27[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];28[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 (xuu3110 : xuu3111)",fontsize=16,color="black",shape="box"];28 -> 30[label="",style="solid", color="black", weight=3]; 35.39/13.68 29[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 []",fontsize=16,color="black",shape="box"];29 -> 31[label="",style="solid", color="black", weight=3]; 35.39/13.68 30 -> 20[label="",style="dashed", color="red", weight=0]; 35.39/13.68 30[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 xuu3110) xuu3111",fontsize=16,color="magenta"];30 -> 32[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 30 -> 33[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 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"];2873[label="xuu3110/(xuu31100,xuu31101)",fontsize=10,color="white",style="solid",shape="box"];33 -> 2873[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2873 -> 34[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 34[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 (xuu31100,xuu31101)",fontsize=16,color="black",shape="box"];34 -> 35[label="",style="solid", color="black", weight=3]; 35.39/13.68 35[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu6 xuu31100 xuu31101",fontsize=16,color="burlywood",shape="triangle"];2874[label="xuu6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];35 -> 2874[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2874 -> 36[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2875[label="xuu6/FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64",fontsize=10,color="white",style="solid",shape="box"];35 -> 2875[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2875 -> 37[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 36[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];36 -> 38[label="",style="solid", color="black", weight=3]; 35.39/13.68 37[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];37 -> 39[label="",style="solid", color="black", weight=3]; 35.39/13.68 38[label="FiniteMap.addToFM_C4 FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];38 -> 40[label="",style="solid", color="black", weight=3]; 35.39/13.68 39[label="FiniteMap.addToFM_C3 FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];39 -> 41[label="",style="solid", color="black", weight=3]; 35.39/13.68 40[label="FiniteMap.unitFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];40 -> 42[label="",style="solid", color="black", weight=3]; 35.39/13.68 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]; 35.39/13.68 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]; 35.39/13.68 42 -> 45[label="",style="dashed", color="green", weight=3]; 35.39/13.68 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]; 35.39/13.68 44 -> 22[label="",style="dashed", color="red", weight=0]; 35.39/13.68 44[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];45 -> 22[label="",style="dashed", color="red", weight=0]; 35.39/13.68 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]; 35.39/13.68 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"];2876[label="xuu31100/(xuu311000,xuu311001)",fontsize=10,color="white",style="solid",shape="box"];47 -> 2876[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2876 -> 48[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 48[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 (xuu311000,xuu311001) xuu31101 (compare2 (xuu311000,xuu311001) xuu60 ((xuu311000,xuu311001) == xuu60) == LT)",fontsize=16,color="burlywood",shape="box"];2877[label="xuu60/(xuu600,xuu601)",fontsize=10,color="white",style="solid",shape="box"];48 -> 2877[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2877 -> 49[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 49[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu600,xuu601) xuu61 xuu62 xuu63 xuu64 (xuu311000,xuu311001) xuu31101 (compare2 (xuu311000,xuu311001) (xuu600,xuu601) ((xuu311000,xuu311001) == (xuu600,xuu601)) == LT)",fontsize=16,color="black",shape="box"];49 -> 50[label="",style="solid", color="black", weight=3]; 35.39/13.68 50 -> 135[label="",style="dashed", color="red", weight=0]; 35.39/13.68 50[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu600,xuu601) xuu61 xuu62 xuu63 xuu64 (xuu311000,xuu311001) xuu31101 (compare2 (xuu311000,xuu311001) (xuu600,xuu601) (xuu311000 == xuu600 && xuu311001 == xuu601) == LT)",fontsize=16,color="magenta"];50 -> 136[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 50 -> 137[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 50 -> 138[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 50 -> 139[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 50 -> 140[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 50 -> 141[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 50 -> 142[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 50 -> 143[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 50 -> 144[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 50 -> 145[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 136[label="xuu311001",fontsize=16,color="green",shape="box"];137[label="xuu63",fontsize=16,color="green",shape="box"];138 -> 149[label="",style="dashed", color="red", weight=0]; 35.39/13.68 138[label="compare2 (xuu311000,xuu311001) (xuu600,xuu601) (xuu311000 == xuu600 && xuu311001 == xuu601) == LT",fontsize=16,color="magenta"];138 -> 150[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 138 -> 151[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 138 -> 152[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 138 -> 153[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 138 -> 154[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 139[label="xuu31101",fontsize=16,color="green",shape="box"];140[label="xuu61",fontsize=16,color="green",shape="box"];141[label="xuu601",fontsize=16,color="green",shape="box"];142[label="xuu64",fontsize=16,color="green",shape="box"];143[label="xuu600",fontsize=16,color="green",shape="box"];144[label="xuu62",fontsize=16,color="green",shape="box"];145[label="xuu311000",fontsize=16,color="green",shape="box"];135[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 xuu29",fontsize=16,color="burlywood",shape="triangle"];2878[label="xuu29/False",fontsize=10,color="white",style="solid",shape="box"];135 -> 2878[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2878 -> 155[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2879[label="xuu29/True",fontsize=10,color="white",style="solid",shape="box"];135 -> 2879[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2879 -> 156[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 150[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];2880[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2880[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2880 -> 157[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2881[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2881[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2881 -> 158[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2882[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2882[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2882 -> 159[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2883[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2883[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2883 -> 160[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2884[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2884[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2884 -> 161[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2885[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2885[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2885 -> 162[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2886[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2886[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2886 -> 163[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2887[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2887[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2887 -> 164[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2888[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2888[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2888 -> 165[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2889[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2889[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2889 -> 166[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2890[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2890[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2890 -> 167[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2891[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2891[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2891 -> 168[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2892[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2892[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2892 -> 169[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2893[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];150 -> 2893[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2893 -> 170[label="",style="solid", color="blue", weight=3]; 35.39/13.68 151[label="xuu311000",fontsize=16,color="green",shape="box"];152[label="xuu600",fontsize=16,color="green",shape="box"];153[label="xuu311001",fontsize=16,color="green",shape="box"];154[label="xuu601",fontsize=16,color="green",shape="box"];149[label="compare2 (xuu36,xuu37) (xuu38,xuu39) (xuu40 && xuu37 == xuu39) == LT",fontsize=16,color="burlywood",shape="triangle"];2894[label="xuu40/False",fontsize=10,color="white",style="solid",shape="box"];149 -> 2894[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2894 -> 171[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2895[label="xuu40/True",fontsize=10,color="white",style="solid",shape="box"];149 -> 2895[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2895 -> 172[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 155[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 False",fontsize=16,color="black",shape="box"];155 -> 173[label="",style="solid", color="black", weight=3]; 35.39/13.68 156[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 True",fontsize=16,color="black",shape="box"];156 -> 174[label="",style="solid", color="black", weight=3]; 35.39/13.68 157[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2896[label="xuu311000/Nothing",fontsize=10,color="white",style="solid",shape="box"];157 -> 2896[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2896 -> 175[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2897[label="xuu311000/Just xuu3110000",fontsize=10,color="white",style="solid",shape="box"];157 -> 2897[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2897 -> 176[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 158[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2898[label="xuu311000/False",fontsize=10,color="white",style="solid",shape="box"];158 -> 2898[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2898 -> 177[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2899[label="xuu311000/True",fontsize=10,color="white",style="solid",shape="box"];158 -> 2899[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2899 -> 178[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 159[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];159 -> 179[label="",style="solid", color="black", weight=3]; 35.39/13.68 160[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2900[label="xuu311000/(xuu3110000,xuu3110001,xuu3110002)",fontsize=10,color="white",style="solid",shape="box"];160 -> 2900[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2900 -> 180[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 161[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2901[label="xuu311000/Left xuu3110000",fontsize=10,color="white",style="solid",shape="box"];161 -> 2901[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2901 -> 181[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2902[label="xuu311000/Right xuu3110000",fontsize=10,color="white",style="solid",shape="box"];161 -> 2902[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2902 -> 182[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 162[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2903[label="xuu311000/(xuu3110000,xuu3110001)",fontsize=10,color="white",style="solid",shape="box"];162 -> 2903[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2903 -> 183[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 163[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2904[label="xuu311000/Integer xuu3110000",fontsize=10,color="white",style="solid",shape="box"];163 -> 2904[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2904 -> 184[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 164[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];164 -> 185[label="",style="solid", color="black", weight=3]; 35.39/13.68 165[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2905[label="xuu311000/xuu3110000 :% xuu3110001",fontsize=10,color="white",style="solid",shape="box"];165 -> 2905[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2905 -> 186[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 166[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2906[label="xuu311000/()",fontsize=10,color="white",style="solid",shape="box"];166 -> 2906[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2906 -> 187[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 167[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];167 -> 188[label="",style="solid", color="black", weight=3]; 35.39/13.68 168[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2907[label="xuu311000/xuu3110000 : xuu3110001",fontsize=10,color="white",style="solid",shape="box"];168 -> 2907[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2907 -> 189[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2908[label="xuu311000/[]",fontsize=10,color="white",style="solid",shape="box"];168 -> 2908[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2908 -> 190[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 169[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];169 -> 191[label="",style="solid", color="black", weight=3]; 35.39/13.68 170[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];2909[label="xuu311000/LT",fontsize=10,color="white",style="solid",shape="box"];170 -> 2909[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2909 -> 192[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2910[label="xuu311000/EQ",fontsize=10,color="white",style="solid",shape="box"];170 -> 2910[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2910 -> 193[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2911[label="xuu311000/GT",fontsize=10,color="white",style="solid",shape="box"];170 -> 2911[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2911 -> 194[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 171[label="compare2 (xuu36,xuu37) (xuu38,xuu39) (False && xuu37 == xuu39) == LT",fontsize=16,color="black",shape="box"];171 -> 195[label="",style="solid", color="black", weight=3]; 35.39/13.68 172[label="compare2 (xuu36,xuu37) (xuu38,xuu39) (True && xuu37 == xuu39) == LT",fontsize=16,color="black",shape="box"];172 -> 196[label="",style="solid", color="black", weight=3]; 35.39/13.68 173 -> 239[label="",style="dashed", color="red", weight=0]; 35.39/13.68 173[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 ((xuu25,xuu26) > (xuu19,xuu20))",fontsize=16,color="magenta"];173 -> 240[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 174 -> 198[label="",style="dashed", color="red", weight=0]; 35.39/13.68 174[label="FiniteMap.mkBalBranch (xuu19,xuu20) xuu21 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu23 (xuu25,xuu26) xuu27) xuu24",fontsize=16,color="magenta"];174 -> 199[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 175[label="Nothing == xuu600",fontsize=16,color="burlywood",shape="box"];2912[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];175 -> 2912[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2912 -> 200[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2913[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];175 -> 2913[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2913 -> 201[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 176[label="Just xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];2914[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];176 -> 2914[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2914 -> 202[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2915[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];176 -> 2915[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2915 -> 203[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 177[label="False == xuu600",fontsize=16,color="burlywood",shape="box"];2916[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];177 -> 2916[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2916 -> 204[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2917[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];177 -> 2917[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2917 -> 205[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 178[label="True == xuu600",fontsize=16,color="burlywood",shape="box"];2918[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];178 -> 2918[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2918 -> 206[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2919[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];178 -> 2919[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2919 -> 207[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 179[label="primEqDouble xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];2920[label="xuu311000/Double xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];179 -> 2920[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2920 -> 208[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 180[label="(xuu3110000,xuu3110001,xuu3110002) == xuu600",fontsize=16,color="burlywood",shape="box"];2921[label="xuu600/(xuu6000,xuu6001,xuu6002)",fontsize=10,color="white",style="solid",shape="box"];180 -> 2921[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2921 -> 209[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 181[label="Left xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];2922[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];181 -> 2922[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2922 -> 210[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2923[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];181 -> 2923[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2923 -> 211[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 182[label="Right xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];2924[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];182 -> 2924[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2924 -> 212[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2925[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];182 -> 2925[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2925 -> 213[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 183[label="(xuu3110000,xuu3110001) == xuu600",fontsize=16,color="burlywood",shape="box"];2926[label="xuu600/(xuu6000,xuu6001)",fontsize=10,color="white",style="solid",shape="box"];183 -> 2926[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2926 -> 214[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 184[label="Integer xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];2927[label="xuu600/Integer xuu6000",fontsize=10,color="white",style="solid",shape="box"];184 -> 2927[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2927 -> 215[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 185[label="primEqChar xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];2928[label="xuu311000/Char xuu3110000",fontsize=10,color="white",style="solid",shape="box"];185 -> 2928[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2928 -> 216[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 186[label="xuu3110000 :% xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];2929[label="xuu600/xuu6000 :% xuu6001",fontsize=10,color="white",style="solid",shape="box"];186 -> 2929[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2929 -> 217[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 187[label="() == xuu600",fontsize=16,color="burlywood",shape="box"];2930[label="xuu600/()",fontsize=10,color="white",style="solid",shape="box"];187 -> 2930[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2930 -> 218[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 188[label="primEqFloat xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];2931[label="xuu311000/Float xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];188 -> 2931[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2931 -> 219[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 189[label="xuu3110000 : xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];2932[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];189 -> 2932[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2932 -> 220[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2933[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];189 -> 2933[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2933 -> 221[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 190[label="[] == xuu600",fontsize=16,color="burlywood",shape="box"];2934[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];190 -> 2934[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2934 -> 222[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2935[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];190 -> 2935[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2935 -> 223[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 191[label="primEqInt xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];2936[label="xuu311000/Pos xuu3110000",fontsize=10,color="white",style="solid",shape="box"];191 -> 2936[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2936 -> 224[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2937[label="xuu311000/Neg xuu3110000",fontsize=10,color="white",style="solid",shape="box"];191 -> 2937[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2937 -> 225[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 192[label="LT == xuu600",fontsize=16,color="burlywood",shape="box"];2938[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];192 -> 2938[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2938 -> 226[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2939[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];192 -> 2939[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2939 -> 227[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2940[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];192 -> 2940[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2940 -> 228[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 193[label="EQ == xuu600",fontsize=16,color="burlywood",shape="box"];2941[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];193 -> 2941[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2941 -> 229[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2942[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];193 -> 2942[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2942 -> 230[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2943[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];193 -> 2943[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2943 -> 231[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 194[label="GT == xuu600",fontsize=16,color="burlywood",shape="box"];2944[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];194 -> 2944[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2944 -> 232[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2945[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];194 -> 2945[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2945 -> 233[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2946[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];194 -> 2946[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2946 -> 234[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 195 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.68 195[label="compare2 (xuu36,xuu37) (xuu38,xuu39) False == LT",fontsize=16,color="magenta"];195 -> 235[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 195 -> 236[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 196 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.68 196[label="compare2 (xuu36,xuu37) (xuu38,xuu39) (xuu37 == xuu39) == LT",fontsize=16,color="magenta"];196 -> 237[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 196 -> 238[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 240[label="(xuu25,xuu26) > (xuu19,xuu20)",fontsize=16,color="black",shape="box"];240 -> 242[label="",style="solid", color="black", weight=3]; 35.39/13.68 239[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 xuu42",fontsize=16,color="burlywood",shape="triangle"];2947[label="xuu42/False",fontsize=10,color="white",style="solid",shape="box"];239 -> 2947[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2947 -> 243[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2948[label="xuu42/True",fontsize=10,color="white",style="solid",shape="box"];239 -> 2948[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2948 -> 244[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 199 -> 35[label="",style="dashed", color="red", weight=0]; 35.39/13.68 199[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu23 (xuu25,xuu26) xuu27",fontsize=16,color="magenta"];199 -> 245[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 199 -> 246[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 199 -> 247[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 198[label="FiniteMap.mkBalBranch (xuu19,xuu20) xuu21 xuu41 xuu24",fontsize=16,color="black",shape="triangle"];198 -> 248[label="",style="solid", color="black", weight=3]; 35.39/13.68 200[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];200 -> 249[label="",style="solid", color="black", weight=3]; 35.39/13.68 201[label="Nothing == Just xuu6000",fontsize=16,color="black",shape="box"];201 -> 250[label="",style="solid", color="black", weight=3]; 35.39/13.68 202[label="Just xuu3110000 == Nothing",fontsize=16,color="black",shape="box"];202 -> 251[label="",style="solid", color="black", weight=3]; 35.39/13.68 203[label="Just xuu3110000 == Just xuu6000",fontsize=16,color="black",shape="box"];203 -> 252[label="",style="solid", color="black", weight=3]; 35.39/13.68 204[label="False == False",fontsize=16,color="black",shape="box"];204 -> 253[label="",style="solid", color="black", weight=3]; 35.39/13.68 205[label="False == True",fontsize=16,color="black",shape="box"];205 -> 254[label="",style="solid", color="black", weight=3]; 35.39/13.68 206[label="True == False",fontsize=16,color="black",shape="box"];206 -> 255[label="",style="solid", color="black", weight=3]; 35.39/13.68 207[label="True == True",fontsize=16,color="black",shape="box"];207 -> 256[label="",style="solid", color="black", weight=3]; 35.39/13.68 208[label="primEqDouble (Double xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];2949[label="xuu600/Double xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];208 -> 2949[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2949 -> 257[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 209[label="(xuu3110000,xuu3110001,xuu3110002) == (xuu6000,xuu6001,xuu6002)",fontsize=16,color="black",shape="box"];209 -> 258[label="",style="solid", color="black", weight=3]; 35.39/13.68 210[label="Left xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];210 -> 259[label="",style="solid", color="black", weight=3]; 35.39/13.68 211[label="Left xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];211 -> 260[label="",style="solid", color="black", weight=3]; 35.39/13.68 212[label="Right xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];212 -> 261[label="",style="solid", color="black", weight=3]; 35.39/13.68 213[label="Right xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];213 -> 262[label="",style="solid", color="black", weight=3]; 35.39/13.68 214[label="(xuu3110000,xuu3110001) == (xuu6000,xuu6001)",fontsize=16,color="black",shape="box"];214 -> 263[label="",style="solid", color="black", weight=3]; 35.39/13.68 215[label="Integer xuu3110000 == Integer xuu6000",fontsize=16,color="black",shape="box"];215 -> 264[label="",style="solid", color="black", weight=3]; 35.39/13.68 216[label="primEqChar (Char xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];2950[label="xuu600/Char xuu6000",fontsize=10,color="white",style="solid",shape="box"];216 -> 2950[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2950 -> 265[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 217[label="xuu3110000 :% xuu3110001 == xuu6000 :% xuu6001",fontsize=16,color="black",shape="box"];217 -> 266[label="",style="solid", color="black", weight=3]; 35.39/13.68 218[label="() == ()",fontsize=16,color="black",shape="box"];218 -> 267[label="",style="solid", color="black", weight=3]; 35.39/13.68 219[label="primEqFloat (Float xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];2951[label="xuu600/Float xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];219 -> 2951[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2951 -> 268[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 220[label="xuu3110000 : xuu3110001 == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];220 -> 269[label="",style="solid", color="black", weight=3]; 35.39/13.68 221[label="xuu3110000 : xuu3110001 == []",fontsize=16,color="black",shape="box"];221 -> 270[label="",style="solid", color="black", weight=3]; 35.39/13.68 222[label="[] == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];222 -> 271[label="",style="solid", color="black", weight=3]; 35.39/13.68 223[label="[] == []",fontsize=16,color="black",shape="box"];223 -> 272[label="",style="solid", color="black", weight=3]; 35.39/13.68 224[label="primEqInt (Pos xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];2952[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];224 -> 2952[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2952 -> 273[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2953[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];224 -> 2953[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2953 -> 274[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 225[label="primEqInt (Neg xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];2954[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];225 -> 2954[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2954 -> 275[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2955[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];225 -> 2955[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2955 -> 276[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 226[label="LT == LT",fontsize=16,color="black",shape="box"];226 -> 277[label="",style="solid", color="black", weight=3]; 35.39/13.68 227[label="LT == EQ",fontsize=16,color="black",shape="box"];227 -> 278[label="",style="solid", color="black", weight=3]; 35.39/13.68 228[label="LT == GT",fontsize=16,color="black",shape="box"];228 -> 279[label="",style="solid", color="black", weight=3]; 35.39/13.68 229[label="EQ == LT",fontsize=16,color="black",shape="box"];229 -> 280[label="",style="solid", color="black", weight=3]; 35.39/13.68 230[label="EQ == EQ",fontsize=16,color="black",shape="box"];230 -> 281[label="",style="solid", color="black", weight=3]; 35.39/13.68 231[label="EQ == GT",fontsize=16,color="black",shape="box"];231 -> 282[label="",style="solid", color="black", weight=3]; 35.39/13.68 232[label="GT == LT",fontsize=16,color="black",shape="box"];232 -> 283[label="",style="solid", color="black", weight=3]; 35.39/13.68 233[label="GT == EQ",fontsize=16,color="black",shape="box"];233 -> 284[label="",style="solid", color="black", weight=3]; 35.39/13.68 234[label="GT == GT",fontsize=16,color="black",shape="box"];234 -> 285[label="",style="solid", color="black", weight=3]; 35.39/13.68 235[label="LT",fontsize=16,color="green",shape="box"];236 -> 1346[label="",style="dashed", color="red", weight=0]; 35.39/13.68 236[label="compare2 (xuu36,xuu37) (xuu38,xuu39) False",fontsize=16,color="magenta"];236 -> 1347[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 236 -> 1348[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 236 -> 1349[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 237[label="LT",fontsize=16,color="green",shape="box"];238 -> 1346[label="",style="dashed", color="red", weight=0]; 35.39/13.68 238[label="compare2 (xuu36,xuu37) (xuu38,xuu39) (xuu37 == xuu39)",fontsize=16,color="magenta"];238 -> 1350[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 238 -> 1351[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 238 -> 1352[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 242 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.68 242[label="compare (xuu25,xuu26) (xuu19,xuu20) == GT",fontsize=16,color="magenta"];242 -> 298[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 242 -> 299[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 243[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 False",fontsize=16,color="black",shape="box"];243 -> 300[label="",style="solid", color="black", weight=3]; 35.39/13.68 244[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 True",fontsize=16,color="black",shape="box"];244 -> 301[label="",style="solid", color="black", weight=3]; 35.39/13.68 245[label="xuu27",fontsize=16,color="green",shape="box"];246[label="xuu23",fontsize=16,color="green",shape="box"];247[label="(xuu25,xuu26)",fontsize=16,color="green",shape="box"];248[label="FiniteMap.mkBalBranch6 (xuu19,xuu20) xuu21 xuu41 xuu24",fontsize=16,color="black",shape="box"];248 -> 302[label="",style="solid", color="black", weight=3]; 35.39/13.68 249[label="True",fontsize=16,color="green",shape="box"];250[label="False",fontsize=16,color="green",shape="box"];251[label="False",fontsize=16,color="green",shape="box"];252[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];2956[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2956[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2956 -> 303[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2957[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2957[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2957 -> 304[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2958[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2958[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2958 -> 305[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2959[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2959[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2959 -> 306[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2960[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2960[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2960 -> 307[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2961[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2961[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2961 -> 308[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2962[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2962[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2962 -> 309[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2963[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2963[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2963 -> 310[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2964[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2964[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2964 -> 311[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2965[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2965[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2965 -> 312[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2966[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2966[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2966 -> 313[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2967[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2967[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2967 -> 314[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2968[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2968[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2968 -> 315[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2969[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2969[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2969 -> 316[label="",style="solid", color="blue", weight=3]; 35.39/13.68 253[label="True",fontsize=16,color="green",shape="box"];254[label="False",fontsize=16,color="green",shape="box"];255[label="False",fontsize=16,color="green",shape="box"];256[label="True",fontsize=16,color="green",shape="box"];257[label="primEqDouble (Double xuu3110000 xuu3110001) (Double xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];257 -> 317[label="",style="solid", color="black", weight=3]; 35.39/13.68 258 -> 439[label="",style="dashed", color="red", weight=0]; 35.39/13.68 258[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];258 -> 440[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 258 -> 441[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 259[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];2970[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2970[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2970 -> 324[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2971[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2971[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2971 -> 325[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2972[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2972[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2972 -> 326[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2973[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2973[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2973 -> 327[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2974[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2974[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2974 -> 328[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2975[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2975[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2975 -> 329[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2976[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2976[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2976 -> 330[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2977[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2977[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2977 -> 331[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2978[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2978[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2978 -> 332[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2979[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2979[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2979 -> 333[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2980[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2980[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2980 -> 334[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2981[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2981[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2981 -> 335[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2982[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2982[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2982 -> 336[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2983[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2983[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2983 -> 337[label="",style="solid", color="blue", weight=3]; 35.39/13.68 260[label="False",fontsize=16,color="green",shape="box"];261[label="False",fontsize=16,color="green",shape="box"];262[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];2984[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];262 -> 2984[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2984 -> 338[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2985[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];262 -> 2985[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2985 -> 339[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2986[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];262 -> 2986[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2986 -> 340[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2987[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];262 -> 2987[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2987 -> 341[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2988[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];262 -> 2988[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2988 -> 342[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2989[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];262 -> 2989[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2989 -> 343[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2990[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];262 -> 2990[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2990 -> 344[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2991[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];262 -> 2991[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2991 -> 345[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2992[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];262 -> 2992[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2992 -> 346[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2993[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];262 -> 2993[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2993 -> 347[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2994[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];262 -> 2994[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2994 -> 348[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2995[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];262 -> 2995[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2995 -> 349[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2996[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];262 -> 2996[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2996 -> 350[label="",style="solid", color="blue", weight=3]; 35.39/13.68 2997[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];262 -> 2997[label="",style="solid", color="blue", weight=9]; 35.39/13.68 2997 -> 351[label="",style="solid", color="blue", weight=3]; 35.39/13.68 263 -> 439[label="",style="dashed", color="red", weight=0]; 35.39/13.68 263[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];263 -> 442[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 263 -> 443[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 264 -> 191[label="",style="dashed", color="red", weight=0]; 35.39/13.68 264[label="primEqInt xuu3110000 xuu6000",fontsize=16,color="magenta"];264 -> 362[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 264 -> 363[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 265[label="primEqChar (Char xuu3110000) (Char xuu6000)",fontsize=16,color="black",shape="box"];265 -> 364[label="",style="solid", color="black", weight=3]; 35.39/13.68 266 -> 439[label="",style="dashed", color="red", weight=0]; 35.39/13.68 266[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];266 -> 444[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 266 -> 445[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 267[label="True",fontsize=16,color="green",shape="box"];268[label="primEqFloat (Float xuu3110000 xuu3110001) (Float xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];268 -> 365[label="",style="solid", color="black", weight=3]; 35.39/13.68 269 -> 439[label="",style="dashed", color="red", weight=0]; 35.39/13.68 269[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];269 -> 446[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 269 -> 447[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 270[label="False",fontsize=16,color="green",shape="box"];271[label="False",fontsize=16,color="green",shape="box"];272[label="True",fontsize=16,color="green",shape="box"];273[label="primEqInt (Pos (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];2998[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];273 -> 2998[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2998 -> 366[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 2999[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];273 -> 2999[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 2999 -> 367[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 274[label="primEqInt (Pos Zero) xuu600",fontsize=16,color="burlywood",shape="box"];3000[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];274 -> 3000[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3000 -> 368[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3001[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];274 -> 3001[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3001 -> 369[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 275[label="primEqInt (Neg (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];3002[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];275 -> 3002[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3002 -> 370[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3003[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];275 -> 3003[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3003 -> 371[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 276[label="primEqInt (Neg Zero) xuu600",fontsize=16,color="burlywood",shape="box"];3004[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];276 -> 3004[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3004 -> 372[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3005[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];276 -> 3005[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3005 -> 373[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 277[label="True",fontsize=16,color="green",shape="box"];278[label="False",fontsize=16,color="green",shape="box"];279[label="False",fontsize=16,color="green",shape="box"];280[label="False",fontsize=16,color="green",shape="box"];281[label="True",fontsize=16,color="green",shape="box"];282[label="False",fontsize=16,color="green",shape="box"];283[label="False",fontsize=16,color="green",shape="box"];284[label="False",fontsize=16,color="green",shape="box"];285[label="True",fontsize=16,color="green",shape="box"];1347[label="False",fontsize=16,color="green",shape="box"];1348[label="(xuu38,xuu39)",fontsize=16,color="green",shape="box"];1349[label="(xuu36,xuu37)",fontsize=16,color="green",shape="box"];1346[label="compare2 xuu49 xuu51 xuu106",fontsize=16,color="burlywood",shape="triangle"];3006[label="xuu106/False",fontsize=10,color="white",style="solid",shape="box"];1346 -> 3006[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3006 -> 1360[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3007[label="xuu106/True",fontsize=10,color="white",style="solid",shape="box"];1346 -> 3007[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3007 -> 1361[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 1350[label="xuu37 == xuu39",fontsize=16,color="blue",shape="box"];3008[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1350 -> 3008[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3008 -> 1362[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3009[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1350 -> 3009[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3009 -> 1363[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3010[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1350 -> 3010[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3010 -> 1364[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3011[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1350 -> 3011[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3011 -> 1365[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3012[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1350 -> 3012[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3012 -> 1366[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3013[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1350 -> 3013[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3013 -> 1367[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3014[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1350 -> 3014[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3014 -> 1368[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3015[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1350 -> 3015[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3015 -> 1369[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3016[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1350 -> 3016[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3016 -> 1370[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3017[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1350 -> 3017[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3017 -> 1371[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3018[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1350 -> 3018[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3018 -> 1372[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3019[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1350 -> 3019[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3019 -> 1373[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3020[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1350 -> 3020[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3020 -> 1374[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3021[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1350 -> 3021[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3021 -> 1375[label="",style="solid", color="blue", weight=3]; 35.39/13.68 1351[label="(xuu38,xuu39)",fontsize=16,color="green",shape="box"];1352[label="(xuu36,xuu37)",fontsize=16,color="green",shape="box"];298[label="GT",fontsize=16,color="green",shape="box"];299[label="compare (xuu25,xuu26) (xuu19,xuu20)",fontsize=16,color="black",shape="box"];299 -> 390[label="",style="solid", color="black", weight=3]; 35.39/13.68 300[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 otherwise",fontsize=16,color="black",shape="box"];300 -> 391[label="",style="solid", color="black", weight=3]; 35.39/13.68 301 -> 198[label="",style="dashed", color="red", weight=0]; 35.39/13.68 301[label="FiniteMap.mkBalBranch (xuu19,xuu20) xuu21 xuu23 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu24 (xuu25,xuu26) xuu27)",fontsize=16,color="magenta"];301 -> 392[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 301 -> 393[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 302 -> 626[label="",style="dashed", color="red", weight=0]; 35.39/13.68 302[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 (FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41 + FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];302 -> 627[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 303 -> 157[label="",style="dashed", color="red", weight=0]; 35.39/13.68 303[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];303 -> 395[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 303 -> 396[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 304 -> 158[label="",style="dashed", color="red", weight=0]; 35.39/13.68 304[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];304 -> 397[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 304 -> 398[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 305 -> 159[label="",style="dashed", color="red", weight=0]; 35.39/13.68 305[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];305 -> 399[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 305 -> 400[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 306 -> 160[label="",style="dashed", color="red", weight=0]; 35.39/13.68 306[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];306 -> 401[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 306 -> 402[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 307 -> 161[label="",style="dashed", color="red", weight=0]; 35.39/13.68 307[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];307 -> 403[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 307 -> 404[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 308 -> 162[label="",style="dashed", color="red", weight=0]; 35.39/13.68 308[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];308 -> 405[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 308 -> 406[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 309 -> 163[label="",style="dashed", color="red", weight=0]; 35.39/13.68 309[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];309 -> 407[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 309 -> 408[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 310 -> 164[label="",style="dashed", color="red", weight=0]; 35.39/13.68 310[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];310 -> 409[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 310 -> 410[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 311 -> 165[label="",style="dashed", color="red", weight=0]; 35.39/13.68 311[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];311 -> 411[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 311 -> 412[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 312 -> 166[label="",style="dashed", color="red", weight=0]; 35.39/13.68 312[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];312 -> 413[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 312 -> 414[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 313 -> 167[label="",style="dashed", color="red", weight=0]; 35.39/13.68 313[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];313 -> 415[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 313 -> 416[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 314 -> 168[label="",style="dashed", color="red", weight=0]; 35.39/13.68 314[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];314 -> 417[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 314 -> 418[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 315 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.68 315[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];315 -> 419[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 315 -> 420[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 316 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.68 316[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];316 -> 421[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 316 -> 422[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 317 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.68 317[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];317 -> 423[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 317 -> 424[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 440 -> 439[label="",style="dashed", color="red", weight=0]; 35.39/13.68 440[label="xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];440 -> 451[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 440 -> 452[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 441[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3022[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 3022[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3022 -> 453[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3023[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 3023[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3023 -> 454[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3024[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 3024[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3024 -> 455[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3025[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 3025[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3025 -> 456[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3026[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 3026[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3026 -> 457[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3027[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 3027[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3027 -> 458[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3028[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 3028[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3028 -> 459[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3029[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 3029[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3029 -> 460[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3030[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 3030[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3030 -> 461[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3031[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 3031[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3031 -> 462[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3032[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 3032[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3032 -> 463[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3033[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 3033[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3033 -> 464[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3034[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 3034[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3034 -> 465[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3035[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];441 -> 3035[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3035 -> 466[label="",style="solid", color="blue", weight=3]; 35.39/13.68 439[label="xuu60 && xuu72",fontsize=16,color="burlywood",shape="triangle"];3036[label="xuu60/False",fontsize=10,color="white",style="solid",shape="box"];439 -> 3036[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3036 -> 467[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3037[label="xuu60/True",fontsize=10,color="white",style="solid",shape="box"];439 -> 3037[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3037 -> 468[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 324 -> 157[label="",style="dashed", color="red", weight=0]; 35.39/13.68 324[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];324 -> 469[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 324 -> 470[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 325 -> 158[label="",style="dashed", color="red", weight=0]; 35.39/13.68 325[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];325 -> 471[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 325 -> 472[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 326 -> 159[label="",style="dashed", color="red", weight=0]; 35.39/13.68 326[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];326 -> 473[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 326 -> 474[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 327 -> 160[label="",style="dashed", color="red", weight=0]; 35.39/13.68 327[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];327 -> 475[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 327 -> 476[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 328 -> 161[label="",style="dashed", color="red", weight=0]; 35.39/13.68 328[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];328 -> 477[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 328 -> 478[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 329 -> 162[label="",style="dashed", color="red", weight=0]; 35.39/13.68 329[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];329 -> 479[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 329 -> 480[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 330 -> 163[label="",style="dashed", color="red", weight=0]; 35.39/13.68 330[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];330 -> 481[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 330 -> 482[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 331 -> 164[label="",style="dashed", color="red", weight=0]; 35.39/13.68 331[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];331 -> 483[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 331 -> 484[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 332 -> 165[label="",style="dashed", color="red", weight=0]; 35.39/13.68 332[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];332 -> 485[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 332 -> 486[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 333 -> 166[label="",style="dashed", color="red", weight=0]; 35.39/13.68 333[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];333 -> 487[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 333 -> 488[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 334 -> 167[label="",style="dashed", color="red", weight=0]; 35.39/13.68 334[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];334 -> 489[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 334 -> 490[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 335 -> 168[label="",style="dashed", color="red", weight=0]; 35.39/13.68 335[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];335 -> 491[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 335 -> 492[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 336 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.68 336[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];336 -> 493[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 336 -> 494[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 337 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.68 337[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];337 -> 495[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 337 -> 496[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 338 -> 157[label="",style="dashed", color="red", weight=0]; 35.39/13.68 338[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];338 -> 497[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 338 -> 498[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 339 -> 158[label="",style="dashed", color="red", weight=0]; 35.39/13.68 339[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];339 -> 499[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 339 -> 500[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 340 -> 159[label="",style="dashed", color="red", weight=0]; 35.39/13.68 340[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];340 -> 501[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 340 -> 502[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 341 -> 160[label="",style="dashed", color="red", weight=0]; 35.39/13.68 341[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];341 -> 503[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 341 -> 504[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 342 -> 161[label="",style="dashed", color="red", weight=0]; 35.39/13.68 342[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];342 -> 505[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 342 -> 506[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 343 -> 162[label="",style="dashed", color="red", weight=0]; 35.39/13.68 343[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];343 -> 507[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 343 -> 508[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 344 -> 163[label="",style="dashed", color="red", weight=0]; 35.39/13.68 344[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];344 -> 509[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 344 -> 510[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 345 -> 164[label="",style="dashed", color="red", weight=0]; 35.39/13.68 345[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];345 -> 511[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 345 -> 512[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 346 -> 165[label="",style="dashed", color="red", weight=0]; 35.39/13.68 346[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];346 -> 513[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 346 -> 514[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 347 -> 166[label="",style="dashed", color="red", weight=0]; 35.39/13.68 347[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];347 -> 515[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 347 -> 516[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 348 -> 167[label="",style="dashed", color="red", weight=0]; 35.39/13.68 348[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];348 -> 517[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 348 -> 518[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 349 -> 168[label="",style="dashed", color="red", weight=0]; 35.39/13.68 349[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];349 -> 519[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 349 -> 520[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 350 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.68 350[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];350 -> 521[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 350 -> 522[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 351 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.68 351[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];351 -> 523[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 351 -> 524[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 442[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];3038[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 3038[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3038 -> 525[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3039[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 3039[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3039 -> 526[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3040[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 3040[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3040 -> 527[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3041[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 3041[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3041 -> 528[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3042[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 3042[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3042 -> 529[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3043[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 3043[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3043 -> 530[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3044[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 3044[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3044 -> 531[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3045[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 3045[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3045 -> 532[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3046[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 3046[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3046 -> 533[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3047[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 3047[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3047 -> 534[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3048[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 3048[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3048 -> 535[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3049[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 3049[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3049 -> 536[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3050[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 3050[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3050 -> 537[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3051[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];442 -> 3051[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3051 -> 538[label="",style="solid", color="blue", weight=3]; 35.39/13.68 443[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3052[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 3052[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3052 -> 539[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3053[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 3053[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3053 -> 540[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3054[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 3054[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3054 -> 541[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3055[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 3055[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3055 -> 542[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3056[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 3056[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3056 -> 543[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3057[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 3057[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3057 -> 544[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3058[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 3058[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3058 -> 545[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3059[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 3059[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3059 -> 546[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3060[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 3060[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3060 -> 547[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3061[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 3061[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3061 -> 548[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3062[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 3062[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3062 -> 549[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3063[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 3063[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3063 -> 550[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3064[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 3064[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3064 -> 551[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3065[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];443 -> 3065[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3065 -> 552[label="",style="solid", color="blue", weight=3]; 35.39/13.68 362[label="xuu6000",fontsize=16,color="green",shape="box"];363[label="xuu3110000",fontsize=16,color="green",shape="box"];364[label="primEqNat xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="triangle"];3066[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];364 -> 3066[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3066 -> 553[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3067[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];364 -> 3067[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3067 -> 554[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 444[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];3068[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];444 -> 3068[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3068 -> 555[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3069[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];444 -> 3069[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3069 -> 556[label="",style="solid", color="blue", weight=3]; 35.39/13.68 445[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3070[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];445 -> 3070[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3070 -> 557[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3071[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];445 -> 3071[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3071 -> 558[label="",style="solid", color="blue", weight=3]; 35.39/13.68 365 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.68 365[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];365 -> 559[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 365 -> 560[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 446 -> 168[label="",style="dashed", color="red", weight=0]; 35.39/13.68 446[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];446 -> 561[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 446 -> 562[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 447[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3072[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 3072[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3072 -> 563[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3073[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 3073[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3073 -> 564[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3074[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 3074[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3074 -> 565[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3075[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 3075[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3075 -> 566[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3076[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 3076[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3076 -> 567[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3077[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 3077[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3077 -> 568[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3078[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 3078[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3078 -> 569[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3079[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 3079[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3079 -> 570[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3080[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 3080[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3080 -> 571[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3081[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 3081[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3081 -> 572[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3082[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 3082[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3082 -> 573[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3083[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 3083[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3083 -> 574[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3084[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 3084[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3084 -> 575[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3085[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];447 -> 3085[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3085 -> 576[label="",style="solid", color="blue", weight=3]; 35.39/13.68 366[label="primEqInt (Pos (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];3086[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];366 -> 3086[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3086 -> 577[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3087[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];366 -> 3087[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3087 -> 578[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 367[label="primEqInt (Pos (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="black",shape="box"];367 -> 579[label="",style="solid", color="black", weight=3]; 35.39/13.68 368[label="primEqInt (Pos Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];3088[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];368 -> 3088[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3088 -> 580[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3089[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];368 -> 3089[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3089 -> 581[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 369[label="primEqInt (Pos Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];3090[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];369 -> 3090[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3090 -> 582[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3091[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];369 -> 3091[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3091 -> 583[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 370[label="primEqInt (Neg (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="black",shape="box"];370 -> 584[label="",style="solid", color="black", weight=3]; 35.39/13.68 371[label="primEqInt (Neg (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];3092[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];371 -> 3092[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3092 -> 585[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3093[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];371 -> 3093[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3093 -> 586[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 372[label="primEqInt (Neg Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];3094[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];372 -> 3094[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3094 -> 587[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3095[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];372 -> 3095[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3095 -> 588[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 373[label="primEqInt (Neg Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];3096[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];373 -> 3096[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3096 -> 589[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3097[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];373 -> 3097[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3097 -> 590[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 1360[label="compare2 xuu49 xuu51 False",fontsize=16,color="black",shape="box"];1360 -> 1380[label="",style="solid", color="black", weight=3]; 35.39/13.68 1361[label="compare2 xuu49 xuu51 True",fontsize=16,color="black",shape="box"];1361 -> 1381[label="",style="solid", color="black", weight=3]; 35.39/13.68 1362 -> 157[label="",style="dashed", color="red", weight=0]; 35.39/13.68 1362[label="xuu37 == xuu39",fontsize=16,color="magenta"];1362 -> 1382[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1362 -> 1383[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1363 -> 158[label="",style="dashed", color="red", weight=0]; 35.39/13.68 1363[label="xuu37 == xuu39",fontsize=16,color="magenta"];1363 -> 1384[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1363 -> 1385[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1364 -> 159[label="",style="dashed", color="red", weight=0]; 35.39/13.68 1364[label="xuu37 == xuu39",fontsize=16,color="magenta"];1364 -> 1386[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1364 -> 1387[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1365 -> 160[label="",style="dashed", color="red", weight=0]; 35.39/13.68 1365[label="xuu37 == xuu39",fontsize=16,color="magenta"];1365 -> 1388[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1365 -> 1389[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1366 -> 161[label="",style="dashed", color="red", weight=0]; 35.39/13.68 1366[label="xuu37 == xuu39",fontsize=16,color="magenta"];1366 -> 1390[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1366 -> 1391[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1367 -> 162[label="",style="dashed", color="red", weight=0]; 35.39/13.68 1367[label="xuu37 == xuu39",fontsize=16,color="magenta"];1367 -> 1392[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1367 -> 1393[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1368 -> 163[label="",style="dashed", color="red", weight=0]; 35.39/13.68 1368[label="xuu37 == xuu39",fontsize=16,color="magenta"];1368 -> 1394[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1368 -> 1395[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1369 -> 164[label="",style="dashed", color="red", weight=0]; 35.39/13.68 1369[label="xuu37 == xuu39",fontsize=16,color="magenta"];1369 -> 1396[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1369 -> 1397[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1370 -> 165[label="",style="dashed", color="red", weight=0]; 35.39/13.68 1370[label="xuu37 == xuu39",fontsize=16,color="magenta"];1370 -> 1398[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1370 -> 1399[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1371 -> 166[label="",style="dashed", color="red", weight=0]; 35.39/13.68 1371[label="xuu37 == xuu39",fontsize=16,color="magenta"];1371 -> 1400[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1371 -> 1401[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1372 -> 167[label="",style="dashed", color="red", weight=0]; 35.39/13.68 1372[label="xuu37 == xuu39",fontsize=16,color="magenta"];1372 -> 1402[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1372 -> 1403[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1373 -> 168[label="",style="dashed", color="red", weight=0]; 35.39/13.68 1373[label="xuu37 == xuu39",fontsize=16,color="magenta"];1373 -> 1404[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1373 -> 1405[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1374 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.68 1374[label="xuu37 == xuu39",fontsize=16,color="magenta"];1374 -> 1406[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1374 -> 1407[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1375 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.68 1375[label="xuu37 == xuu39",fontsize=16,color="magenta"];1375 -> 1408[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1375 -> 1409[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 390[label="compare3 (xuu25,xuu26) (xuu19,xuu20)",fontsize=16,color="black",shape="box"];390 -> 621[label="",style="solid", color="black", weight=3]; 35.39/13.68 391[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (xuu19,xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25,xuu26) xuu27 True",fontsize=16,color="black",shape="box"];391 -> 622[label="",style="solid", color="black", weight=3]; 35.39/13.68 392[label="xuu23",fontsize=16,color="green",shape="box"];393 -> 35[label="",style="dashed", color="red", weight=0]; 35.39/13.68 393[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu24 (xuu25,xuu26) xuu27",fontsize=16,color="magenta"];393 -> 623[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 393 -> 624[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 393 -> 625[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 627[label="FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41 + FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];627 -> 629[label="",style="solid", color="black", weight=3]; 35.39/13.68 626[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 xuu73",fontsize=16,color="burlywood",shape="triangle"];3098[label="xuu73/False",fontsize=10,color="white",style="solid",shape="box"];626 -> 3098[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3098 -> 630[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3099[label="xuu73/True",fontsize=10,color="white",style="solid",shape="box"];626 -> 3099[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3099 -> 631[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 395[label="xuu6000",fontsize=16,color="green",shape="box"];396[label="xuu3110000",fontsize=16,color="green",shape="box"];397[label="xuu6000",fontsize=16,color="green",shape="box"];398[label="xuu3110000",fontsize=16,color="green",shape="box"];399[label="xuu6000",fontsize=16,color="green",shape="box"];400[label="xuu3110000",fontsize=16,color="green",shape="box"];401[label="xuu6000",fontsize=16,color="green",shape="box"];402[label="xuu3110000",fontsize=16,color="green",shape="box"];403[label="xuu6000",fontsize=16,color="green",shape="box"];404[label="xuu3110000",fontsize=16,color="green",shape="box"];405[label="xuu6000",fontsize=16,color="green",shape="box"];406[label="xuu3110000",fontsize=16,color="green",shape="box"];407[label="xuu6000",fontsize=16,color="green",shape="box"];408[label="xuu3110000",fontsize=16,color="green",shape="box"];409[label="xuu6000",fontsize=16,color="green",shape="box"];410[label="xuu3110000",fontsize=16,color="green",shape="box"];411[label="xuu6000",fontsize=16,color="green",shape="box"];412[label="xuu3110000",fontsize=16,color="green",shape="box"];413[label="xuu6000",fontsize=16,color="green",shape="box"];414[label="xuu3110000",fontsize=16,color="green",shape="box"];415[label="xuu6000",fontsize=16,color="green",shape="box"];416[label="xuu3110000",fontsize=16,color="green",shape="box"];417[label="xuu6000",fontsize=16,color="green",shape="box"];418[label="xuu3110000",fontsize=16,color="green",shape="box"];419[label="xuu6000",fontsize=16,color="green",shape="box"];420[label="xuu3110000",fontsize=16,color="green",shape="box"];421[label="xuu6000",fontsize=16,color="green",shape="box"];422[label="xuu3110000",fontsize=16,color="green",shape="box"];423[label="xuu3110001 * xuu6000",fontsize=16,color="black",shape="triangle"];423 -> 632[label="",style="solid", color="black", weight=3]; 35.39/13.68 424 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.68 424[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];424 -> 633[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 424 -> 634[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 451[label="xuu3110002 == xuu6002",fontsize=16,color="blue",shape="box"];3100[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];451 -> 3100[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3100 -> 635[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3101[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];451 -> 3101[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3101 -> 636[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3102[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];451 -> 3102[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3102 -> 637[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3103[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];451 -> 3103[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3103 -> 638[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3104[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];451 -> 3104[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3104 -> 639[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3105[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];451 -> 3105[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3105 -> 640[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3106[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];451 -> 3106[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3106 -> 641[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3107[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];451 -> 3107[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3107 -> 642[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3108[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];451 -> 3108[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3108 -> 643[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3109[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];451 -> 3109[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3109 -> 644[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3110[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];451 -> 3110[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3110 -> 645[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3111[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];451 -> 3111[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3111 -> 646[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3112[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];451 -> 3112[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3112 -> 647[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3113[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];451 -> 3113[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3113 -> 648[label="",style="solid", color="blue", weight=3]; 35.39/13.68 452[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];3114[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3114[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3114 -> 649[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3115[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3115[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3115 -> 650[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3116[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3116[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3116 -> 651[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3117[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3117[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3117 -> 652[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3118[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3118[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3118 -> 653[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3119[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3119[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3119 -> 654[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3120[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3120[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3120 -> 655[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3121[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3121[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3121 -> 656[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3122[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3122[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3122 -> 657[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3123[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3123[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3123 -> 658[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3124[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3124[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3124 -> 659[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3125[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3125[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3125 -> 660[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3126[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3126[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3126 -> 661[label="",style="solid", color="blue", weight=3]; 35.39/13.68 3127[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3127[label="",style="solid", color="blue", weight=9]; 35.39/13.68 3127 -> 662[label="",style="solid", color="blue", weight=3]; 35.39/13.68 453 -> 157[label="",style="dashed", color="red", weight=0]; 35.39/13.68 453[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];453 -> 663[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 453 -> 664[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 454 -> 158[label="",style="dashed", color="red", weight=0]; 35.39/13.68 454[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];454 -> 665[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 454 -> 666[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 455 -> 159[label="",style="dashed", color="red", weight=0]; 35.39/13.68 455[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];455 -> 667[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 455 -> 668[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 456 -> 160[label="",style="dashed", color="red", weight=0]; 35.39/13.68 456[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];456 -> 669[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 456 -> 670[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 457 -> 161[label="",style="dashed", color="red", weight=0]; 35.39/13.68 457[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];457 -> 671[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 457 -> 672[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 458 -> 162[label="",style="dashed", color="red", weight=0]; 35.39/13.68 458[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];458 -> 673[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 458 -> 674[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 459 -> 163[label="",style="dashed", color="red", weight=0]; 35.39/13.68 459[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];459 -> 675[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 459 -> 676[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 460 -> 164[label="",style="dashed", color="red", weight=0]; 35.39/13.68 460[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];460 -> 677[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 460 -> 678[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 461 -> 165[label="",style="dashed", color="red", weight=0]; 35.39/13.68 461[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];461 -> 679[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 461 -> 680[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 462 -> 166[label="",style="dashed", color="red", weight=0]; 35.39/13.68 462[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];462 -> 681[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 462 -> 682[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 463 -> 167[label="",style="dashed", color="red", weight=0]; 35.39/13.68 463[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];463 -> 683[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 463 -> 684[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 464 -> 168[label="",style="dashed", color="red", weight=0]; 35.39/13.68 464[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];464 -> 685[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 464 -> 686[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 465 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.68 465[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];465 -> 687[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 465 -> 688[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 466 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.68 466[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];466 -> 689[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 466 -> 690[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 467[label="False && xuu72",fontsize=16,color="black",shape="box"];467 -> 691[label="",style="solid", color="black", weight=3]; 35.39/13.68 468[label="True && xuu72",fontsize=16,color="black",shape="box"];468 -> 692[label="",style="solid", color="black", weight=3]; 35.39/13.68 469[label="xuu6000",fontsize=16,color="green",shape="box"];470[label="xuu3110000",fontsize=16,color="green",shape="box"];471[label="xuu6000",fontsize=16,color="green",shape="box"];472[label="xuu3110000",fontsize=16,color="green",shape="box"];473[label="xuu6000",fontsize=16,color="green",shape="box"];474[label="xuu3110000",fontsize=16,color="green",shape="box"];475[label="xuu6000",fontsize=16,color="green",shape="box"];476[label="xuu3110000",fontsize=16,color="green",shape="box"];477[label="xuu6000",fontsize=16,color="green",shape="box"];478[label="xuu3110000",fontsize=16,color="green",shape="box"];479[label="xuu6000",fontsize=16,color="green",shape="box"];480[label="xuu3110000",fontsize=16,color="green",shape="box"];481[label="xuu6000",fontsize=16,color="green",shape="box"];482[label="xuu3110000",fontsize=16,color="green",shape="box"];483[label="xuu6000",fontsize=16,color="green",shape="box"];484[label="xuu3110000",fontsize=16,color="green",shape="box"];485[label="xuu6000",fontsize=16,color="green",shape="box"];486[label="xuu3110000",fontsize=16,color="green",shape="box"];487[label="xuu6000",fontsize=16,color="green",shape="box"];488[label="xuu3110000",fontsize=16,color="green",shape="box"];489[label="xuu6000",fontsize=16,color="green",shape="box"];490[label="xuu3110000",fontsize=16,color="green",shape="box"];491[label="xuu6000",fontsize=16,color="green",shape="box"];492[label="xuu3110000",fontsize=16,color="green",shape="box"];493[label="xuu6000",fontsize=16,color="green",shape="box"];494[label="xuu3110000",fontsize=16,color="green",shape="box"];495[label="xuu6000",fontsize=16,color="green",shape="box"];496[label="xuu3110000",fontsize=16,color="green",shape="box"];497[label="xuu6000",fontsize=16,color="green",shape="box"];498[label="xuu3110000",fontsize=16,color="green",shape="box"];499[label="xuu6000",fontsize=16,color="green",shape="box"];500[label="xuu3110000",fontsize=16,color="green",shape="box"];501[label="xuu6000",fontsize=16,color="green",shape="box"];502[label="xuu3110000",fontsize=16,color="green",shape="box"];503[label="xuu6000",fontsize=16,color="green",shape="box"];504[label="xuu3110000",fontsize=16,color="green",shape="box"];505[label="xuu6000",fontsize=16,color="green",shape="box"];506[label="xuu3110000",fontsize=16,color="green",shape="box"];507[label="xuu6000",fontsize=16,color="green",shape="box"];508[label="xuu3110000",fontsize=16,color="green",shape="box"];509[label="xuu6000",fontsize=16,color="green",shape="box"];510[label="xuu3110000",fontsize=16,color="green",shape="box"];511[label="xuu6000",fontsize=16,color="green",shape="box"];512[label="xuu3110000",fontsize=16,color="green",shape="box"];513[label="xuu6000",fontsize=16,color="green",shape="box"];514[label="xuu3110000",fontsize=16,color="green",shape="box"];515[label="xuu6000",fontsize=16,color="green",shape="box"];516[label="xuu3110000",fontsize=16,color="green",shape="box"];517[label="xuu6000",fontsize=16,color="green",shape="box"];518[label="xuu3110000",fontsize=16,color="green",shape="box"];519[label="xuu6000",fontsize=16,color="green",shape="box"];520[label="xuu3110000",fontsize=16,color="green",shape="box"];521[label="xuu6000",fontsize=16,color="green",shape="box"];522[label="xuu3110000",fontsize=16,color="green",shape="box"];523[label="xuu6000",fontsize=16,color="green",shape="box"];524[label="xuu3110000",fontsize=16,color="green",shape="box"];525 -> 157[label="",style="dashed", color="red", weight=0]; 35.39/13.68 525[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];525 -> 693[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 525 -> 694[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 526 -> 158[label="",style="dashed", color="red", weight=0]; 35.39/13.68 526[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];526 -> 695[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 526 -> 696[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 527 -> 159[label="",style="dashed", color="red", weight=0]; 35.39/13.68 527[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];527 -> 697[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 527 -> 698[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 528 -> 160[label="",style="dashed", color="red", weight=0]; 35.39/13.68 528[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];528 -> 699[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 528 -> 700[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 529 -> 161[label="",style="dashed", color="red", weight=0]; 35.39/13.68 529[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];529 -> 701[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 529 -> 702[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 530 -> 162[label="",style="dashed", color="red", weight=0]; 35.39/13.68 530[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];530 -> 703[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 530 -> 704[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 531 -> 163[label="",style="dashed", color="red", weight=0]; 35.39/13.68 531[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];531 -> 705[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 531 -> 706[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 532 -> 164[label="",style="dashed", color="red", weight=0]; 35.39/13.68 532[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];532 -> 707[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 532 -> 708[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 533 -> 165[label="",style="dashed", color="red", weight=0]; 35.39/13.68 533[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];533 -> 709[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 533 -> 710[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 534 -> 166[label="",style="dashed", color="red", weight=0]; 35.39/13.68 534[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];534 -> 711[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 534 -> 712[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 535 -> 167[label="",style="dashed", color="red", weight=0]; 35.39/13.68 535[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];535 -> 713[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 535 -> 714[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 536 -> 168[label="",style="dashed", color="red", weight=0]; 35.39/13.68 536[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];536 -> 715[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 536 -> 716[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 537 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.68 537[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];537 -> 717[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 537 -> 718[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 538 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.68 538[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];538 -> 719[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 538 -> 720[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 539 -> 157[label="",style="dashed", color="red", weight=0]; 35.39/13.68 539[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];539 -> 721[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 539 -> 722[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 540 -> 158[label="",style="dashed", color="red", weight=0]; 35.39/13.68 540[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];540 -> 723[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 540 -> 724[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 541 -> 159[label="",style="dashed", color="red", weight=0]; 35.39/13.68 541[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];541 -> 725[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 541 -> 726[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 542 -> 160[label="",style="dashed", color="red", weight=0]; 35.39/13.68 542[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];542 -> 727[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 542 -> 728[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 543 -> 161[label="",style="dashed", color="red", weight=0]; 35.39/13.68 543[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];543 -> 729[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 543 -> 730[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 544 -> 162[label="",style="dashed", color="red", weight=0]; 35.39/13.68 544[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];544 -> 731[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 544 -> 732[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 545 -> 163[label="",style="dashed", color="red", weight=0]; 35.39/13.68 545[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];545 -> 733[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 545 -> 734[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 546 -> 164[label="",style="dashed", color="red", weight=0]; 35.39/13.68 546[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];546 -> 735[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 546 -> 736[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 547 -> 165[label="",style="dashed", color="red", weight=0]; 35.39/13.68 547[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];547 -> 737[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 547 -> 738[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 548 -> 166[label="",style="dashed", color="red", weight=0]; 35.39/13.68 548[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];548 -> 739[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 548 -> 740[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 549 -> 167[label="",style="dashed", color="red", weight=0]; 35.39/13.68 549[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];549 -> 741[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 549 -> 742[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 550 -> 168[label="",style="dashed", color="red", weight=0]; 35.39/13.68 550[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];550 -> 743[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 550 -> 744[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 551 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.68 551[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];551 -> 745[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 551 -> 746[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 552 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.68 552[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];552 -> 747[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 552 -> 748[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 553[label="primEqNat (Succ xuu31100000) xuu6000",fontsize=16,color="burlywood",shape="box"];3128[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];553 -> 3128[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3128 -> 749[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3129[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];553 -> 3129[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3129 -> 750[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 554[label="primEqNat Zero xuu6000",fontsize=16,color="burlywood",shape="box"];3130[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];554 -> 3130[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3130 -> 751[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3131[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];554 -> 3131[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3131 -> 752[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 555 -> 163[label="",style="dashed", color="red", weight=0]; 35.39/13.68 555[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];555 -> 753[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 555 -> 754[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 556 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.68 556[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];556 -> 755[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 556 -> 756[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 557 -> 163[label="",style="dashed", color="red", weight=0]; 35.39/13.68 557[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];557 -> 757[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 557 -> 758[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 558 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.68 558[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];558 -> 759[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 558 -> 760[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 559 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.68 559[label="xuu3110001 * xuu6000",fontsize=16,color="magenta"];559 -> 761[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 559 -> 762[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 560 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.68 560[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];560 -> 763[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 560 -> 764[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 561[label="xuu6001",fontsize=16,color="green",shape="box"];562[label="xuu3110001",fontsize=16,color="green",shape="box"];563 -> 157[label="",style="dashed", color="red", weight=0]; 35.39/13.68 563[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];563 -> 765[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 563 -> 766[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 564 -> 158[label="",style="dashed", color="red", weight=0]; 35.39/13.68 564[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];564 -> 767[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 564 -> 768[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 565 -> 159[label="",style="dashed", color="red", weight=0]; 35.39/13.68 565[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];565 -> 769[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 565 -> 770[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 566 -> 160[label="",style="dashed", color="red", weight=0]; 35.39/13.68 566[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];566 -> 771[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 566 -> 772[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 567 -> 161[label="",style="dashed", color="red", weight=0]; 35.39/13.68 567[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];567 -> 773[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 567 -> 774[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 568 -> 162[label="",style="dashed", color="red", weight=0]; 35.39/13.68 568[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];568 -> 775[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 568 -> 776[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 569 -> 163[label="",style="dashed", color="red", weight=0]; 35.39/13.68 569[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];569 -> 777[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 569 -> 778[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 570 -> 164[label="",style="dashed", color="red", weight=0]; 35.39/13.68 570[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];570 -> 779[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 570 -> 780[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 571 -> 165[label="",style="dashed", color="red", weight=0]; 35.39/13.68 571[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];571 -> 781[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 571 -> 782[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 572 -> 166[label="",style="dashed", color="red", weight=0]; 35.39/13.68 572[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];572 -> 783[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 572 -> 784[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 573 -> 167[label="",style="dashed", color="red", weight=0]; 35.39/13.68 573[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];573 -> 785[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 573 -> 786[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 574 -> 168[label="",style="dashed", color="red", weight=0]; 35.39/13.68 574[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];574 -> 787[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 574 -> 788[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 575 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.68 575[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];575 -> 789[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 575 -> 790[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 576 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.68 576[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];576 -> 791[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 576 -> 792[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 577[label="primEqInt (Pos (Succ xuu31100000)) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];577 -> 793[label="",style="solid", color="black", weight=3]; 35.39/13.68 578[label="primEqInt (Pos (Succ xuu31100000)) (Pos Zero)",fontsize=16,color="black",shape="box"];578 -> 794[label="",style="solid", color="black", weight=3]; 35.39/13.68 579[label="False",fontsize=16,color="green",shape="box"];580[label="primEqInt (Pos Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];580 -> 795[label="",style="solid", color="black", weight=3]; 35.39/13.68 581[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];581 -> 796[label="",style="solid", color="black", weight=3]; 35.39/13.68 582[label="primEqInt (Pos Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];582 -> 797[label="",style="solid", color="black", weight=3]; 35.39/13.68 583[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];583 -> 798[label="",style="solid", color="black", weight=3]; 35.39/13.68 584[label="False",fontsize=16,color="green",shape="box"];585[label="primEqInt (Neg (Succ xuu31100000)) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];585 -> 799[label="",style="solid", color="black", weight=3]; 35.39/13.68 586[label="primEqInt (Neg (Succ xuu31100000)) (Neg Zero)",fontsize=16,color="black",shape="box"];586 -> 800[label="",style="solid", color="black", weight=3]; 35.39/13.68 587[label="primEqInt (Neg Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];587 -> 801[label="",style="solid", color="black", weight=3]; 35.39/13.68 588[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];588 -> 802[label="",style="solid", color="black", weight=3]; 35.39/13.68 589[label="primEqInt (Neg Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];589 -> 803[label="",style="solid", color="black", weight=3]; 35.39/13.68 590[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];590 -> 804[label="",style="solid", color="black", weight=3]; 35.39/13.68 1380[label="compare1 xuu49 xuu51 (xuu49 <= xuu51)",fontsize=16,color="burlywood",shape="box"];3132[label="xuu49/(xuu490,xuu491)",fontsize=10,color="white",style="solid",shape="box"];1380 -> 3132[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3132 -> 1420[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 1381[label="EQ",fontsize=16,color="green",shape="box"];1382[label="xuu39",fontsize=16,color="green",shape="box"];1383[label="xuu37",fontsize=16,color="green",shape="box"];1384[label="xuu39",fontsize=16,color="green",shape="box"];1385[label="xuu37",fontsize=16,color="green",shape="box"];1386[label="xuu39",fontsize=16,color="green",shape="box"];1387[label="xuu37",fontsize=16,color="green",shape="box"];1388[label="xuu39",fontsize=16,color="green",shape="box"];1389[label="xuu37",fontsize=16,color="green",shape="box"];1390[label="xuu39",fontsize=16,color="green",shape="box"];1391[label="xuu37",fontsize=16,color="green",shape="box"];1392[label="xuu39",fontsize=16,color="green",shape="box"];1393[label="xuu37",fontsize=16,color="green",shape="box"];1394[label="xuu39",fontsize=16,color="green",shape="box"];1395[label="xuu37",fontsize=16,color="green",shape="box"];1396[label="xuu39",fontsize=16,color="green",shape="box"];1397[label="xuu37",fontsize=16,color="green",shape="box"];1398[label="xuu39",fontsize=16,color="green",shape="box"];1399[label="xuu37",fontsize=16,color="green",shape="box"];1400[label="xuu39",fontsize=16,color="green",shape="box"];1401[label="xuu37",fontsize=16,color="green",shape="box"];1402[label="xuu39",fontsize=16,color="green",shape="box"];1403[label="xuu37",fontsize=16,color="green",shape="box"];1404[label="xuu39",fontsize=16,color="green",shape="box"];1405[label="xuu37",fontsize=16,color="green",shape="box"];1406[label="xuu39",fontsize=16,color="green",shape="box"];1407[label="xuu37",fontsize=16,color="green",shape="box"];1408[label="xuu39",fontsize=16,color="green",shape="box"];1409[label="xuu37",fontsize=16,color="green",shape="box"];621 -> 1346[label="",style="dashed", color="red", weight=0]; 35.39/13.68 621[label="compare2 (xuu25,xuu26) (xuu19,xuu20) ((xuu25,xuu26) == (xuu19,xuu20))",fontsize=16,color="magenta"];621 -> 1356[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 621 -> 1357[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 621 -> 1358[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 622[label="FiniteMap.Branch (xuu25,xuu26) (FiniteMap.addListToFM0 xuu21 xuu27) xuu22 xuu23 xuu24",fontsize=16,color="green",shape="box"];622 -> 811[label="",style="dashed", color="green", weight=3]; 35.39/13.68 623[label="xuu27",fontsize=16,color="green",shape="box"];624[label="xuu24",fontsize=16,color="green",shape="box"];625[label="(xuu25,xuu26)",fontsize=16,color="green",shape="box"];629 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.68 629[label="compare (FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41 + FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];629 -> 812[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 629 -> 813[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 630[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 False",fontsize=16,color="black",shape="box"];630 -> 814[label="",style="solid", color="black", weight=3]; 35.39/13.68 631[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 True",fontsize=16,color="black",shape="box"];631 -> 815[label="",style="solid", color="black", weight=3]; 35.39/13.68 632[label="primMulInt xuu3110001 xuu6000",fontsize=16,color="burlywood",shape="triangle"];3133[label="xuu3110001/Pos xuu31100010",fontsize=10,color="white",style="solid",shape="box"];632 -> 3133[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3133 -> 816[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3134[label="xuu3110001/Neg xuu31100010",fontsize=10,color="white",style="solid",shape="box"];632 -> 3134[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3134 -> 817[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 633[label="xuu6001",fontsize=16,color="green",shape="box"];634[label="xuu3110000",fontsize=16,color="green",shape="box"];635 -> 157[label="",style="dashed", color="red", weight=0]; 35.39/13.68 635[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];635 -> 818[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 635 -> 819[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 636 -> 158[label="",style="dashed", color="red", weight=0]; 35.39/13.68 636[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];636 -> 820[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 636 -> 821[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 637 -> 159[label="",style="dashed", color="red", weight=0]; 35.39/13.68 637[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];637 -> 822[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 637 -> 823[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 638 -> 160[label="",style="dashed", color="red", weight=0]; 35.39/13.68 638[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];638 -> 824[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 638 -> 825[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 639 -> 161[label="",style="dashed", color="red", weight=0]; 35.39/13.68 639[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];639 -> 826[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 639 -> 827[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 640 -> 162[label="",style="dashed", color="red", weight=0]; 35.39/13.68 640[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];640 -> 828[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 640 -> 829[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 641 -> 163[label="",style="dashed", color="red", weight=0]; 35.39/13.68 641[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];641 -> 830[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 641 -> 831[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 642 -> 164[label="",style="dashed", color="red", weight=0]; 35.39/13.68 642[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];642 -> 832[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 642 -> 833[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 643 -> 165[label="",style="dashed", color="red", weight=0]; 35.39/13.68 643[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];643 -> 834[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 643 -> 835[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 644 -> 166[label="",style="dashed", color="red", weight=0]; 35.39/13.68 644[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];644 -> 836[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 644 -> 837[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 645 -> 167[label="",style="dashed", color="red", weight=0]; 35.39/13.68 645[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];645 -> 838[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 645 -> 839[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 646 -> 168[label="",style="dashed", color="red", weight=0]; 35.39/13.68 646[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];646 -> 840[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 646 -> 841[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 647 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.68 647[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];647 -> 842[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 647 -> 843[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 648 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.68 648[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];648 -> 844[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 648 -> 845[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 649 -> 157[label="",style="dashed", color="red", weight=0]; 35.39/13.68 649[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];649 -> 846[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 649 -> 847[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 650 -> 158[label="",style="dashed", color="red", weight=0]; 35.39/13.68 650[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];650 -> 848[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 650 -> 849[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 651 -> 159[label="",style="dashed", color="red", weight=0]; 35.39/13.68 651[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];651 -> 850[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 651 -> 851[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 652 -> 160[label="",style="dashed", color="red", weight=0]; 35.39/13.68 652[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];652 -> 852[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 652 -> 853[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 653 -> 161[label="",style="dashed", color="red", weight=0]; 35.39/13.68 653[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];653 -> 854[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 653 -> 855[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 654 -> 162[label="",style="dashed", color="red", weight=0]; 35.39/13.68 654[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];654 -> 856[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 654 -> 857[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 655 -> 163[label="",style="dashed", color="red", weight=0]; 35.39/13.68 655[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];655 -> 858[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 655 -> 859[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 656 -> 164[label="",style="dashed", color="red", weight=0]; 35.39/13.68 656[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];656 -> 860[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 656 -> 861[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 657 -> 165[label="",style="dashed", color="red", weight=0]; 35.39/13.68 657[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];657 -> 862[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 657 -> 863[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 658 -> 166[label="",style="dashed", color="red", weight=0]; 35.39/13.68 658[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];658 -> 864[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 658 -> 865[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 659 -> 167[label="",style="dashed", color="red", weight=0]; 35.39/13.68 659[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];659 -> 866[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 659 -> 867[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 660 -> 168[label="",style="dashed", color="red", weight=0]; 35.39/13.68 660[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];660 -> 868[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 660 -> 869[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 661 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.68 661[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];661 -> 870[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 661 -> 871[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 662 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.68 662[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];662 -> 872[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 662 -> 873[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 663[label="xuu6000",fontsize=16,color="green",shape="box"];664[label="xuu3110000",fontsize=16,color="green",shape="box"];665[label="xuu6000",fontsize=16,color="green",shape="box"];666[label="xuu3110000",fontsize=16,color="green",shape="box"];667[label="xuu6000",fontsize=16,color="green",shape="box"];668[label="xuu3110000",fontsize=16,color="green",shape="box"];669[label="xuu6000",fontsize=16,color="green",shape="box"];670[label="xuu3110000",fontsize=16,color="green",shape="box"];671[label="xuu6000",fontsize=16,color="green",shape="box"];672[label="xuu3110000",fontsize=16,color="green",shape="box"];673[label="xuu6000",fontsize=16,color="green",shape="box"];674[label="xuu3110000",fontsize=16,color="green",shape="box"];675[label="xuu6000",fontsize=16,color="green",shape="box"];676[label="xuu3110000",fontsize=16,color="green",shape="box"];677[label="xuu6000",fontsize=16,color="green",shape="box"];678[label="xuu3110000",fontsize=16,color="green",shape="box"];679[label="xuu6000",fontsize=16,color="green",shape="box"];680[label="xuu3110000",fontsize=16,color="green",shape="box"];681[label="xuu6000",fontsize=16,color="green",shape="box"];682[label="xuu3110000",fontsize=16,color="green",shape="box"];683[label="xuu6000",fontsize=16,color="green",shape="box"];684[label="xuu3110000",fontsize=16,color="green",shape="box"];685[label="xuu6000",fontsize=16,color="green",shape="box"];686[label="xuu3110000",fontsize=16,color="green",shape="box"];687[label="xuu6000",fontsize=16,color="green",shape="box"];688[label="xuu3110000",fontsize=16,color="green",shape="box"];689[label="xuu6000",fontsize=16,color="green",shape="box"];690[label="xuu3110000",fontsize=16,color="green",shape="box"];691[label="False",fontsize=16,color="green",shape="box"];692[label="xuu72",fontsize=16,color="green",shape="box"];693[label="xuu6001",fontsize=16,color="green",shape="box"];694[label="xuu3110001",fontsize=16,color="green",shape="box"];695[label="xuu6001",fontsize=16,color="green",shape="box"];696[label="xuu3110001",fontsize=16,color="green",shape="box"];697[label="xuu6001",fontsize=16,color="green",shape="box"];698[label="xuu3110001",fontsize=16,color="green",shape="box"];699[label="xuu6001",fontsize=16,color="green",shape="box"];700[label="xuu3110001",fontsize=16,color="green",shape="box"];701[label="xuu6001",fontsize=16,color="green",shape="box"];702[label="xuu3110001",fontsize=16,color="green",shape="box"];703[label="xuu6001",fontsize=16,color="green",shape="box"];704[label="xuu3110001",fontsize=16,color="green",shape="box"];705[label="xuu6001",fontsize=16,color="green",shape="box"];706[label="xuu3110001",fontsize=16,color="green",shape="box"];707[label="xuu6001",fontsize=16,color="green",shape="box"];708[label="xuu3110001",fontsize=16,color="green",shape="box"];709[label="xuu6001",fontsize=16,color="green",shape="box"];710[label="xuu3110001",fontsize=16,color="green",shape="box"];711[label="xuu6001",fontsize=16,color="green",shape="box"];712[label="xuu3110001",fontsize=16,color="green",shape="box"];713[label="xuu6001",fontsize=16,color="green",shape="box"];714[label="xuu3110001",fontsize=16,color="green",shape="box"];715[label="xuu6001",fontsize=16,color="green",shape="box"];716[label="xuu3110001",fontsize=16,color="green",shape="box"];717[label="xuu6001",fontsize=16,color="green",shape="box"];718[label="xuu3110001",fontsize=16,color="green",shape="box"];719[label="xuu6001",fontsize=16,color="green",shape="box"];720[label="xuu3110001",fontsize=16,color="green",shape="box"];721[label="xuu6000",fontsize=16,color="green",shape="box"];722[label="xuu3110000",fontsize=16,color="green",shape="box"];723[label="xuu6000",fontsize=16,color="green",shape="box"];724[label="xuu3110000",fontsize=16,color="green",shape="box"];725[label="xuu6000",fontsize=16,color="green",shape="box"];726[label="xuu3110000",fontsize=16,color="green",shape="box"];727[label="xuu6000",fontsize=16,color="green",shape="box"];728[label="xuu3110000",fontsize=16,color="green",shape="box"];729[label="xuu6000",fontsize=16,color="green",shape="box"];730[label="xuu3110000",fontsize=16,color="green",shape="box"];731[label="xuu6000",fontsize=16,color="green",shape="box"];732[label="xuu3110000",fontsize=16,color="green",shape="box"];733[label="xuu6000",fontsize=16,color="green",shape="box"];734[label="xuu3110000",fontsize=16,color="green",shape="box"];735[label="xuu6000",fontsize=16,color="green",shape="box"];736[label="xuu3110000",fontsize=16,color="green",shape="box"];737[label="xuu6000",fontsize=16,color="green",shape="box"];738[label="xuu3110000",fontsize=16,color="green",shape="box"];739[label="xuu6000",fontsize=16,color="green",shape="box"];740[label="xuu3110000",fontsize=16,color="green",shape="box"];741[label="xuu6000",fontsize=16,color="green",shape="box"];742[label="xuu3110000",fontsize=16,color="green",shape="box"];743[label="xuu6000",fontsize=16,color="green",shape="box"];744[label="xuu3110000",fontsize=16,color="green",shape="box"];745[label="xuu6000",fontsize=16,color="green",shape="box"];746[label="xuu3110000",fontsize=16,color="green",shape="box"];747[label="xuu6000",fontsize=16,color="green",shape="box"];748[label="xuu3110000",fontsize=16,color="green",shape="box"];749[label="primEqNat (Succ xuu31100000) (Succ xuu60000)",fontsize=16,color="black",shape="box"];749 -> 874[label="",style="solid", color="black", weight=3]; 35.39/13.68 750[label="primEqNat (Succ xuu31100000) Zero",fontsize=16,color="black",shape="box"];750 -> 875[label="",style="solid", color="black", weight=3]; 35.39/13.68 751[label="primEqNat Zero (Succ xuu60000)",fontsize=16,color="black",shape="box"];751 -> 876[label="",style="solid", color="black", weight=3]; 35.39/13.68 752[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];752 -> 877[label="",style="solid", color="black", weight=3]; 35.39/13.68 753[label="xuu6001",fontsize=16,color="green",shape="box"];754[label="xuu3110001",fontsize=16,color="green",shape="box"];755[label="xuu6001",fontsize=16,color="green",shape="box"];756[label="xuu3110001",fontsize=16,color="green",shape="box"];757[label="xuu6000",fontsize=16,color="green",shape="box"];758[label="xuu3110000",fontsize=16,color="green",shape="box"];759[label="xuu6000",fontsize=16,color="green",shape="box"];760[label="xuu3110000",fontsize=16,color="green",shape="box"];761[label="xuu6000",fontsize=16,color="green",shape="box"];762[label="xuu3110001",fontsize=16,color="green",shape="box"];763[label="xuu6001",fontsize=16,color="green",shape="box"];764[label="xuu3110000",fontsize=16,color="green",shape="box"];765[label="xuu6000",fontsize=16,color="green",shape="box"];766[label="xuu3110000",fontsize=16,color="green",shape="box"];767[label="xuu6000",fontsize=16,color="green",shape="box"];768[label="xuu3110000",fontsize=16,color="green",shape="box"];769[label="xuu6000",fontsize=16,color="green",shape="box"];770[label="xuu3110000",fontsize=16,color="green",shape="box"];771[label="xuu6000",fontsize=16,color="green",shape="box"];772[label="xuu3110000",fontsize=16,color="green",shape="box"];773[label="xuu6000",fontsize=16,color="green",shape="box"];774[label="xuu3110000",fontsize=16,color="green",shape="box"];775[label="xuu6000",fontsize=16,color="green",shape="box"];776[label="xuu3110000",fontsize=16,color="green",shape="box"];777[label="xuu6000",fontsize=16,color="green",shape="box"];778[label="xuu3110000",fontsize=16,color="green",shape="box"];779[label="xuu6000",fontsize=16,color="green",shape="box"];780[label="xuu3110000",fontsize=16,color="green",shape="box"];781[label="xuu6000",fontsize=16,color="green",shape="box"];782[label="xuu3110000",fontsize=16,color="green",shape="box"];783[label="xuu6000",fontsize=16,color="green",shape="box"];784[label="xuu3110000",fontsize=16,color="green",shape="box"];785[label="xuu6000",fontsize=16,color="green",shape="box"];786[label="xuu3110000",fontsize=16,color="green",shape="box"];787[label="xuu6000",fontsize=16,color="green",shape="box"];788[label="xuu3110000",fontsize=16,color="green",shape="box"];789[label="xuu6000",fontsize=16,color="green",shape="box"];790[label="xuu3110000",fontsize=16,color="green",shape="box"];791[label="xuu6000",fontsize=16,color="green",shape="box"];792[label="xuu3110000",fontsize=16,color="green",shape="box"];793 -> 364[label="",style="dashed", color="red", weight=0]; 35.39/13.68 793[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];793 -> 878[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 793 -> 879[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 794[label="False",fontsize=16,color="green",shape="box"];795[label="False",fontsize=16,color="green",shape="box"];796[label="True",fontsize=16,color="green",shape="box"];797[label="False",fontsize=16,color="green",shape="box"];798[label="True",fontsize=16,color="green",shape="box"];799 -> 364[label="",style="dashed", color="red", weight=0]; 35.39/13.68 799[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];799 -> 880[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 799 -> 881[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 800[label="False",fontsize=16,color="green",shape="box"];801[label="False",fontsize=16,color="green",shape="box"];802[label="True",fontsize=16,color="green",shape="box"];803[label="False",fontsize=16,color="green",shape="box"];804[label="True",fontsize=16,color="green",shape="box"];1420[label="compare1 (xuu490,xuu491) xuu51 ((xuu490,xuu491) <= xuu51)",fontsize=16,color="burlywood",shape="box"];3135[label="xuu51/(xuu510,xuu511)",fontsize=10,color="white",style="solid",shape="box"];1420 -> 3135[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3135 -> 1427[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 1356 -> 162[label="",style="dashed", color="red", weight=0]; 35.39/13.68 1356[label="(xuu25,xuu26) == (xuu19,xuu20)",fontsize=16,color="magenta"];1356 -> 1376[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1356 -> 1377[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 1357[label="(xuu19,xuu20)",fontsize=16,color="green",shape="box"];1358[label="(xuu25,xuu26)",fontsize=16,color="green",shape="box"];811[label="FiniteMap.addListToFM0 xuu21 xuu27",fontsize=16,color="black",shape="box"];811 -> 886[label="",style="solid", color="black", weight=3]; 35.39/13.68 812[label="LT",fontsize=16,color="green",shape="box"];813[label="compare (FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41 + FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];813 -> 887[label="",style="solid", color="black", weight=3]; 35.39/13.68 814 -> 986[label="",style="dashed", color="red", weight=0]; 35.39/13.68 814[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41)",fontsize=16,color="magenta"];814 -> 987[label="",style="dashed", color="magenta", weight=3]; 35.39/13.68 815[label="FiniteMap.mkBranch (Pos (Succ Zero)) (xuu19,xuu20) xuu21 xuu41 xuu24",fontsize=16,color="black",shape="box"];815 -> 890[label="",style="solid", color="black", weight=3]; 35.39/13.68 816[label="primMulInt (Pos xuu31100010) xuu6000",fontsize=16,color="burlywood",shape="box"];3136[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];816 -> 3136[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3136 -> 891[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3137[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];816 -> 3137[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3137 -> 892[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 817[label="primMulInt (Neg xuu31100010) xuu6000",fontsize=16,color="burlywood",shape="box"];3138[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];817 -> 3138[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3138 -> 893[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 3139[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];817 -> 3139[label="",style="solid", color="burlywood", weight=9]; 35.39/13.68 3139 -> 894[label="",style="solid", color="burlywood", weight=3]; 35.39/13.68 818[label="xuu6002",fontsize=16,color="green",shape="box"];819[label="xuu3110002",fontsize=16,color="green",shape="box"];820[label="xuu6002",fontsize=16,color="green",shape="box"];821[label="xuu3110002",fontsize=16,color="green",shape="box"];822[label="xuu6002",fontsize=16,color="green",shape="box"];823[label="xuu3110002",fontsize=16,color="green",shape="box"];824[label="xuu6002",fontsize=16,color="green",shape="box"];825[label="xuu3110002",fontsize=16,color="green",shape="box"];826[label="xuu6002",fontsize=16,color="green",shape="box"];827[label="xuu3110002",fontsize=16,color="green",shape="box"];828[label="xuu6002",fontsize=16,color="green",shape="box"];829[label="xuu3110002",fontsize=16,color="green",shape="box"];830[label="xuu6002",fontsize=16,color="green",shape="box"];831[label="xuu3110002",fontsize=16,color="green",shape="box"];832[label="xuu6002",fontsize=16,color="green",shape="box"];833[label="xuu3110002",fontsize=16,color="green",shape="box"];834[label="xuu6002",fontsize=16,color="green",shape="box"];835[label="xuu3110002",fontsize=16,color="green",shape="box"];836[label="xuu6002",fontsize=16,color="green",shape="box"];837[label="xuu3110002",fontsize=16,color="green",shape="box"];838[label="xuu6002",fontsize=16,color="green",shape="box"];839[label="xuu3110002",fontsize=16,color="green",shape="box"];840[label="xuu6002",fontsize=16,color="green",shape="box"];841[label="xuu3110002",fontsize=16,color="green",shape="box"];842[label="xuu6002",fontsize=16,color="green",shape="box"];843[label="xuu3110002",fontsize=16,color="green",shape="box"];844[label="xuu6002",fontsize=16,color="green",shape="box"];845[label="xuu3110002",fontsize=16,color="green",shape="box"];846[label="xuu6001",fontsize=16,color="green",shape="box"];847[label="xuu3110001",fontsize=16,color="green",shape="box"];848[label="xuu6001",fontsize=16,color="green",shape="box"];849[label="xuu3110001",fontsize=16,color="green",shape="box"];850[label="xuu6001",fontsize=16,color="green",shape="box"];851[label="xuu3110001",fontsize=16,color="green",shape="box"];852[label="xuu6001",fontsize=16,color="green",shape="box"];853[label="xuu3110001",fontsize=16,color="green",shape="box"];854[label="xuu6001",fontsize=16,color="green",shape="box"];855[label="xuu3110001",fontsize=16,color="green",shape="box"];856[label="xuu6001",fontsize=16,color="green",shape="box"];857[label="xuu3110001",fontsize=16,color="green",shape="box"];858[label="xuu6001",fontsize=16,color="green",shape="box"];859[label="xuu3110001",fontsize=16,color="green",shape="box"];860[label="xuu6001",fontsize=16,color="green",shape="box"];861[label="xuu3110001",fontsize=16,color="green",shape="box"];862[label="xuu6001",fontsize=16,color="green",shape="box"];863[label="xuu3110001",fontsize=16,color="green",shape="box"];864[label="xuu6001",fontsize=16,color="green",shape="box"];865[label="xuu3110001",fontsize=16,color="green",shape="box"];866[label="xuu6001",fontsize=16,color="green",shape="box"];867[label="xuu3110001",fontsize=16,color="green",shape="box"];868[label="xuu6001",fontsize=16,color="green",shape="box"];869[label="xuu3110001",fontsize=16,color="green",shape="box"];870[label="xuu6001",fontsize=16,color="green",shape="box"];871[label="xuu3110001",fontsize=16,color="green",shape="box"];872[label="xuu6001",fontsize=16,color="green",shape="box"];873[label="xuu3110001",fontsize=16,color="green",shape="box"];874 -> 364[label="",style="dashed", color="red", weight=0]; 35.39/13.69 874[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];874 -> 895[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 874 -> 896[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 875[label="False",fontsize=16,color="green",shape="box"];876[label="False",fontsize=16,color="green",shape="box"];877[label="True",fontsize=16,color="green",shape="box"];878[label="xuu31100000",fontsize=16,color="green",shape="box"];879[label="xuu60000",fontsize=16,color="green",shape="box"];880[label="xuu31100000",fontsize=16,color="green",shape="box"];881[label="xuu60000",fontsize=16,color="green",shape="box"];1427[label="compare1 (xuu490,xuu491) (xuu510,xuu511) ((xuu490,xuu491) <= (xuu510,xuu511))",fontsize=16,color="black",shape="box"];1427 -> 1434[label="",style="solid", color="black", weight=3]; 35.39/13.69 1376[label="(xuu19,xuu20)",fontsize=16,color="green",shape="box"];1377[label="(xuu25,xuu26)",fontsize=16,color="green",shape="box"];886[label="xuu27",fontsize=16,color="green",shape="box"];887[label="primCmpInt (FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41 + FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];887 -> 930[label="",style="solid", color="black", weight=3]; 35.39/13.69 987 -> 1226[label="",style="dashed", color="red", weight=0]; 35.39/13.69 987[label="FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="magenta"];987 -> 1227[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 987 -> 1228[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 986[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 xuu89",fontsize=16,color="burlywood",shape="triangle"];3140[label="xuu89/False",fontsize=10,color="white",style="solid",shape="box"];986 -> 3140[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3140 -> 992[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3141[label="xuu89/True",fontsize=10,color="white",style="solid",shape="box"];986 -> 3141[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3141 -> 993[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 890[label="FiniteMap.mkBranchResult (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="black",shape="triangle"];890 -> 934[label="",style="solid", color="black", weight=3]; 35.39/13.69 891[label="primMulInt (Pos xuu31100010) (Pos xuu60000)",fontsize=16,color="black",shape="box"];891 -> 935[label="",style="solid", color="black", weight=3]; 35.39/13.69 892[label="primMulInt (Pos xuu31100010) (Neg xuu60000)",fontsize=16,color="black",shape="box"];892 -> 936[label="",style="solid", color="black", weight=3]; 35.39/13.69 893[label="primMulInt (Neg xuu31100010) (Pos xuu60000)",fontsize=16,color="black",shape="box"];893 -> 937[label="",style="solid", color="black", weight=3]; 35.39/13.69 894[label="primMulInt (Neg xuu31100010) (Neg xuu60000)",fontsize=16,color="black",shape="box"];894 -> 938[label="",style="solid", color="black", weight=3]; 35.39/13.69 895[label="xuu31100000",fontsize=16,color="green",shape="box"];896[label="xuu60000",fontsize=16,color="green",shape="box"];1434 -> 1466[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1434[label="compare1 (xuu490,xuu491) (xuu510,xuu511) (xuu490 < xuu510 || xuu490 == xuu510 && xuu491 <= xuu511)",fontsize=16,color="magenta"];1434 -> 1467[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1434 -> 1468[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1434 -> 1469[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1434 -> 1470[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1434 -> 1471[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1434 -> 1472[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 930[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41) (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];930 -> 983[label="",style="solid", color="black", weight=3]; 35.39/13.69 1227[label="FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="black",shape="triangle"];1227 -> 1233[label="",style="solid", color="black", weight=3]; 35.39/13.69 1228 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1228[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="magenta"];1228 -> 1234[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1228 -> 1235[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1226[label="xuu99 > xuu98",fontsize=16,color="black",shape="triangle"];1226 -> 1236[label="",style="solid", color="black", weight=3]; 35.39/13.69 992[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 False",fontsize=16,color="black",shape="box"];992 -> 1082[label="",style="solid", color="black", weight=3]; 35.39/13.69 993[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 True",fontsize=16,color="black",shape="box"];993 -> 1083[label="",style="solid", color="black", weight=3]; 35.39/13.69 934[label="FiniteMap.Branch (xuu19,xuu20) xuu21 (FiniteMap.mkBranchUnbox xuu24 (xuu19,xuu20) xuu41 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu24 (xuu19,xuu20) xuu41 + FiniteMap.mkBranchRight_size xuu24 (xuu19,xuu20) xuu41)) xuu41 xuu24",fontsize=16,color="green",shape="box"];934 -> 997[label="",style="dashed", color="green", weight=3]; 35.39/13.69 935[label="Pos (primMulNat xuu31100010 xuu60000)",fontsize=16,color="green",shape="box"];935 -> 998[label="",style="dashed", color="green", weight=3]; 35.39/13.69 936[label="Neg (primMulNat xuu31100010 xuu60000)",fontsize=16,color="green",shape="box"];936 -> 999[label="",style="dashed", color="green", weight=3]; 35.39/13.69 937[label="Neg (primMulNat xuu31100010 xuu60000)",fontsize=16,color="green",shape="box"];937 -> 1000[label="",style="dashed", color="green", weight=3]; 35.39/13.69 938[label="Pos (primMulNat xuu31100010 xuu60000)",fontsize=16,color="green",shape="box"];938 -> 1001[label="",style="dashed", color="green", weight=3]; 35.39/13.69 1467[label="xuu491",fontsize=16,color="green",shape="box"];1468[label="xuu510",fontsize=16,color="green",shape="box"];1469[label="xuu511",fontsize=16,color="green",shape="box"];1470[label="xuu490",fontsize=16,color="green",shape="box"];1471 -> 439[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1471[label="xuu490 == xuu510 && xuu491 <= xuu511",fontsize=16,color="magenta"];1471 -> 1479[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1471 -> 1480[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1472[label="xuu490 < xuu510",fontsize=16,color="blue",shape="box"];3142[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3142[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3142 -> 1481[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3143[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3143[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3143 -> 1482[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3144[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3144[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3144 -> 1483[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3145[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3145[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3145 -> 1484[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3146[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3146[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3146 -> 1485[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3147[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3147[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3147 -> 1486[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3148[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3148[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3148 -> 1487[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3149[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3149[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3149 -> 1488[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3150[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3150[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3150 -> 1489[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3151[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3151[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3151 -> 1490[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3152[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3152[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3152 -> 1491[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3153[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3153[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3153 -> 1492[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3154[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3154[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3154 -> 1493[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3155[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3155[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3155 -> 1494[label="",style="solid", color="blue", weight=3]; 35.39/13.69 1466[label="compare1 (xuu121,xuu122) (xuu123,xuu124) (xuu125 || xuu126)",fontsize=16,color="burlywood",shape="triangle"];3156[label="xuu125/False",fontsize=10,color="white",style="solid",shape="box"];1466 -> 3156[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3156 -> 1495[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3157[label="xuu125/True",fontsize=10,color="white",style="solid",shape="box"];1466 -> 3157[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3157 -> 1496[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 983[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu41) (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];3158[label="xuu41/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];983 -> 3158[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3158 -> 1080[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3159[label="xuu41/FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414",fontsize=10,color="white",style="solid",shape="box"];983 -> 3159[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3159 -> 1081[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1233[label="FiniteMap.sizeFM xuu24",fontsize=16,color="burlywood",shape="triangle"];3160[label="xuu24/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3160[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3160 -> 1311[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3161[label="xuu24/FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3161[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3161 -> 1312[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1234 -> 1231[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1234[label="FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="magenta"];1235[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1235 -> 1313[label="",style="solid", color="black", weight=3]; 35.39/13.69 1236 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1236[label="compare xuu99 xuu98 == GT",fontsize=16,color="magenta"];1236 -> 1314[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1236 -> 1315[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1082 -> 1222[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1082[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 (FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41)",fontsize=16,color="magenta"];1082 -> 1223[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1083[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu19,xuu20) xuu21 xuu24 xuu41 xuu41 xuu24 xuu24",fontsize=16,color="burlywood",shape="box"];3162[label="xuu24/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3162[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3162 -> 1148[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3163[label="xuu24/FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3163[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3163 -> 1149[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 997 -> 2760[label="",style="dashed", color="red", weight=0]; 35.39/13.69 997[label="FiniteMap.mkBranchUnbox xuu24 (xuu19,xuu20) xuu41 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu24 (xuu19,xuu20) xuu41 + FiniteMap.mkBranchRight_size xuu24 (xuu19,xuu20) xuu41)",fontsize=16,color="magenta"];997 -> 2761[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 997 -> 2762[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 997 -> 2763[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 997 -> 2764[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 998[label="primMulNat xuu31100010 xuu60000",fontsize=16,color="burlywood",shape="triangle"];3164[label="xuu31100010/Succ xuu311000100",fontsize=10,color="white",style="solid",shape="box"];998 -> 3164[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3164 -> 1089[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3165[label="xuu31100010/Zero",fontsize=10,color="white",style="solid",shape="box"];998 -> 3165[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3165 -> 1090[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 999 -> 998[label="",style="dashed", color="red", weight=0]; 35.39/13.69 999[label="primMulNat xuu31100010 xuu60000",fontsize=16,color="magenta"];999 -> 1091[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1000 -> 998[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1000[label="primMulNat xuu31100010 xuu60000",fontsize=16,color="magenta"];1000 -> 1092[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1001 -> 998[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1001[label="primMulNat xuu31100010 xuu60000",fontsize=16,color="magenta"];1001 -> 1093[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1001 -> 1094[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1479[label="xuu491 <= xuu511",fontsize=16,color="blue",shape="box"];3166[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 3166[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3166 -> 1504[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3167[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 3167[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3167 -> 1505[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3168[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 3168[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3168 -> 1506[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3169[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 3169[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3169 -> 1507[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3170[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 3170[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3170 -> 1508[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3171[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 3171[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3171 -> 1509[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3172[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 3172[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3172 -> 1510[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3173[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 3173[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3173 -> 1511[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3174[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 3174[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3174 -> 1512[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3175[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 3175[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3175 -> 1513[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3176[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 3176[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3176 -> 1514[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3177[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 3177[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3177 -> 1515[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3178[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 3178[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3178 -> 1516[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3179[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 3179[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3179 -> 1517[label="",style="solid", color="blue", weight=3]; 35.39/13.69 1480[label="xuu490 == xuu510",fontsize=16,color="blue",shape="box"];3180[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3180[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3180 -> 1518[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3181[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3181[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3181 -> 1519[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3182[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3182[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3182 -> 1520[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3183[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3183[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3183 -> 1521[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3184[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3184[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3184 -> 1522[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3185[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3185[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3185 -> 1523[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3186[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3186[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3186 -> 1524[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3187[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3187[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3187 -> 1525[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3188[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3188[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3188 -> 1526[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3189[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3189[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3189 -> 1527[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3190[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3190[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3190 -> 1528[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3191[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3191[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3191 -> 1529[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3192[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3192[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3192 -> 1530[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3193[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 3193[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3193 -> 1531[label="",style="solid", color="blue", weight=3]; 35.39/13.69 1481[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1481 -> 1532[label="",style="solid", color="black", weight=3]; 35.39/13.69 1482[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1482 -> 1533[label="",style="solid", color="black", weight=3]; 35.39/13.69 1483[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1483 -> 1534[label="",style="solid", color="black", weight=3]; 35.39/13.69 1484[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1484 -> 1535[label="",style="solid", color="black", weight=3]; 35.39/13.69 1485[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1485 -> 1536[label="",style="solid", color="black", weight=3]; 35.39/13.69 1486[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1486 -> 1537[label="",style="solid", color="black", weight=3]; 35.39/13.69 1487[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1487 -> 1538[label="",style="solid", color="black", weight=3]; 35.39/13.69 1488[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1488 -> 1539[label="",style="solid", color="black", weight=3]; 35.39/13.69 1489[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1489 -> 1540[label="",style="solid", color="black", weight=3]; 35.39/13.69 1490[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1490 -> 1541[label="",style="solid", color="black", weight=3]; 35.39/13.69 1491[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1491 -> 1542[label="",style="solid", color="black", weight=3]; 35.39/13.69 1492[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1492 -> 1543[label="",style="solid", color="black", weight=3]; 35.39/13.69 1493[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1493 -> 1544[label="",style="solid", color="black", weight=3]; 35.39/13.69 1494[label="xuu490 < xuu510",fontsize=16,color="black",shape="triangle"];1494 -> 1545[label="",style="solid", color="black", weight=3]; 35.39/13.69 1495[label="compare1 (xuu121,xuu122) (xuu123,xuu124) (False || xuu126)",fontsize=16,color="black",shape="box"];1495 -> 1546[label="",style="solid", color="black", weight=3]; 35.39/13.69 1496[label="compare1 (xuu121,xuu122) (xuu123,xuu124) (True || xuu126)",fontsize=16,color="black",shape="box"];1496 -> 1547[label="",style="solid", color="black", weight=3]; 35.39/13.69 1080[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 FiniteMap.EmptyFM)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1080 -> 1143[label="",style="solid", color="black", weight=3]; 35.39/13.69 1081[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)) (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414))) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1081 -> 1144[label="",style="solid", color="black", weight=3]; 35.39/13.69 1311[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1311 -> 1326[label="",style="solid", color="black", weight=3]; 35.39/13.69 1312[label="FiniteMap.sizeFM (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244)",fontsize=16,color="black",shape="box"];1312 -> 1327[label="",style="solid", color="black", weight=3]; 35.39/13.69 1231[label="FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="black",shape="triangle"];1231 -> 1239[label="",style="solid", color="black", weight=3]; 35.39/13.69 1313[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1314[label="GT",fontsize=16,color="green",shape="box"];1315 -> 1050[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1315[label="compare xuu99 xuu98",fontsize=16,color="magenta"];1315 -> 1328[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1315 -> 1329[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1223 -> 1226[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1223[label="FiniteMap.mkBalBranch6Size_l (xuu19,xuu20) xuu21 xuu24 xuu41 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="magenta"];1223 -> 1231[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1223 -> 1232[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1222[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 xuu96",fontsize=16,color="burlywood",shape="triangle"];3194[label="xuu96/False",fontsize=10,color="white",style="solid",shape="box"];1222 -> 3194[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3194 -> 1237[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3195[label="xuu96/True",fontsize=10,color="white",style="solid",shape="box"];1222 -> 3195[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3195 -> 1238[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1148[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu19,xuu20) xuu21 FiniteMap.EmptyFM xuu41 xuu41 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1148 -> 1171[label="",style="solid", color="black", weight=3]; 35.39/13.69 1149[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244)",fontsize=16,color="black",shape="box"];1149 -> 1172[label="",style="solid", color="black", weight=3]; 35.39/13.69 2761[label="(xuu19,xuu20)",fontsize=16,color="green",shape="box"];2762 -> 2782[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2762[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu24 (xuu19,xuu20) xuu41 + FiniteMap.mkBranchRight_size xuu24 (xuu19,xuu20) xuu41",fontsize=16,color="magenta"];2762 -> 2783[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2762 -> 2784[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2762 -> 2785[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2762 -> 2786[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2763[label="xuu41",fontsize=16,color="green",shape="box"];2764[label="xuu24",fontsize=16,color="green",shape="box"];2760[label="FiniteMap.mkBranchUnbox xuu234 xuu158 xuu160 xuu224",fontsize=16,color="black",shape="triangle"];2760 -> 2781[label="",style="solid", color="black", weight=3]; 35.39/13.69 1089[label="primMulNat (Succ xuu311000100) xuu60000",fontsize=16,color="burlywood",shape="box"];3196[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1089 -> 3196[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3196 -> 1158[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3197[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1089 -> 3197[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3197 -> 1159[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1090[label="primMulNat Zero xuu60000",fontsize=16,color="burlywood",shape="box"];3198[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3198[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3198 -> 1160[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3199[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3199[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3199 -> 1161[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1091[label="xuu60000",fontsize=16,color="green",shape="box"];1092[label="xuu31100010",fontsize=16,color="green",shape="box"];1093[label="xuu31100010",fontsize=16,color="green",shape="box"];1094[label="xuu60000",fontsize=16,color="green",shape="box"];1504[label="xuu491 <= xuu511",fontsize=16,color="black",shape="triangle"];1504 -> 1573[label="",style="solid", color="black", weight=3]; 35.39/13.69 1505[label="xuu491 <= xuu511",fontsize=16,color="burlywood",shape="triangle"];3200[label="xuu491/LT",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3200[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3200 -> 1574[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3201[label="xuu491/EQ",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3201[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3201 -> 1575[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3202[label="xuu491/GT",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3202[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3202 -> 1576[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1506[label="xuu491 <= xuu511",fontsize=16,color="black",shape="triangle"];1506 -> 1577[label="",style="solid", color="black", weight=3]; 35.39/13.69 1507[label="xuu491 <= xuu511",fontsize=16,color="black",shape="triangle"];1507 -> 1578[label="",style="solid", color="black", weight=3]; 35.39/13.69 1508[label="xuu491 <= xuu511",fontsize=16,color="burlywood",shape="triangle"];3203[label="xuu491/Nothing",fontsize=10,color="white",style="solid",shape="box"];1508 -> 3203[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3203 -> 1579[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3204[label="xuu491/Just xuu4910",fontsize=10,color="white",style="solid",shape="box"];1508 -> 3204[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3204 -> 1580[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1509[label="xuu491 <= xuu511",fontsize=16,color="black",shape="triangle"];1509 -> 1581[label="",style="solid", color="black", weight=3]; 35.39/13.69 1510[label="xuu491 <= xuu511",fontsize=16,color="burlywood",shape="triangle"];3205[label="xuu491/Left xuu4910",fontsize=10,color="white",style="solid",shape="box"];1510 -> 3205[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3205 -> 1582[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3206[label="xuu491/Right xuu4910",fontsize=10,color="white",style="solid",shape="box"];1510 -> 3206[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3206 -> 1583[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1511[label="xuu491 <= xuu511",fontsize=16,color="black",shape="triangle"];1511 -> 1584[label="",style="solid", color="black", weight=3]; 35.39/13.69 1512[label="xuu491 <= xuu511",fontsize=16,color="black",shape="triangle"];1512 -> 1585[label="",style="solid", color="black", weight=3]; 35.39/13.69 1513[label="xuu491 <= xuu511",fontsize=16,color="black",shape="triangle"];1513 -> 1586[label="",style="solid", color="black", weight=3]; 35.39/13.69 1514[label="xuu491 <= xuu511",fontsize=16,color="burlywood",shape="triangle"];3207[label="xuu491/(xuu4910,xuu4911)",fontsize=10,color="white",style="solid",shape="box"];1514 -> 3207[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3207 -> 1587[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1515[label="xuu491 <= xuu511",fontsize=16,color="black",shape="triangle"];1515 -> 1588[label="",style="solid", color="black", weight=3]; 35.39/13.69 1516[label="xuu491 <= xuu511",fontsize=16,color="burlywood",shape="triangle"];3208[label="xuu491/(xuu4910,xuu4911,xuu4912)",fontsize=10,color="white",style="solid",shape="box"];1516 -> 3208[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3208 -> 1589[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1517[label="xuu491 <= xuu511",fontsize=16,color="burlywood",shape="triangle"];3209[label="xuu491/False",fontsize=10,color="white",style="solid",shape="box"];1517 -> 3209[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3209 -> 1590[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3210[label="xuu491/True",fontsize=10,color="white",style="solid",shape="box"];1517 -> 3210[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3210 -> 1591[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1518 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1518[label="xuu490 == xuu510",fontsize=16,color="magenta"];1518 -> 1592[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1518 -> 1593[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1519 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1519[label="xuu490 == xuu510",fontsize=16,color="magenta"];1519 -> 1594[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1519 -> 1595[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1520 -> 168[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1520[label="xuu490 == xuu510",fontsize=16,color="magenta"];1520 -> 1596[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1520 -> 1597[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1521 -> 163[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1521[label="xuu490 == xuu510",fontsize=16,color="magenta"];1521 -> 1598[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1521 -> 1599[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1522 -> 157[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1522[label="xuu490 == xuu510",fontsize=16,color="magenta"];1522 -> 1600[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1522 -> 1601[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1523 -> 166[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1523[label="xuu490 == xuu510",fontsize=16,color="magenta"];1523 -> 1602[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1523 -> 1603[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1524 -> 161[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1524[label="xuu490 == xuu510",fontsize=16,color="magenta"];1524 -> 1604[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1524 -> 1605[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1525 -> 159[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1525[label="xuu490 == xuu510",fontsize=16,color="magenta"];1525 -> 1606[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1525 -> 1607[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1526 -> 167[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1526[label="xuu490 == xuu510",fontsize=16,color="magenta"];1526 -> 1608[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1526 -> 1609[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1527 -> 164[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1527[label="xuu490 == xuu510",fontsize=16,color="magenta"];1527 -> 1610[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1527 -> 1611[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1528 -> 162[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1528[label="xuu490 == xuu510",fontsize=16,color="magenta"];1528 -> 1612[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1528 -> 1613[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1529 -> 165[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1529[label="xuu490 == xuu510",fontsize=16,color="magenta"];1529 -> 1614[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1529 -> 1615[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1530 -> 160[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1530[label="xuu490 == xuu510",fontsize=16,color="magenta"];1530 -> 1616[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1530 -> 1617[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1531 -> 158[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1531[label="xuu490 == xuu510",fontsize=16,color="magenta"];1531 -> 1618[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1531 -> 1619[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1532 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1532[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1532 -> 1620[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1532 -> 1621[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1533 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1533[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1533 -> 1622[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1533 -> 1623[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1534 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1534[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1534 -> 1624[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1534 -> 1625[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1535 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1535[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1535 -> 1626[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1535 -> 1627[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1536 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1536[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1536 -> 1628[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1536 -> 1629[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1537 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1537[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1537 -> 1630[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1537 -> 1631[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1538 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1538[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1538 -> 1632[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1538 -> 1633[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1539 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1539[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1539 -> 1634[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1539 -> 1635[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1540 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1540[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1540 -> 1636[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1540 -> 1637[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1541 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1541[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1541 -> 1638[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1541 -> 1639[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1542 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1542[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1542 -> 1640[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1542 -> 1641[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1543 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1543[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1543 -> 1642[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1543 -> 1643[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1544 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1544[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1544 -> 1644[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1544 -> 1645[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1545 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1545[label="compare xuu490 xuu510 == LT",fontsize=16,color="magenta"];1545 -> 1646[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1545 -> 1647[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1546[label="compare1 (xuu121,xuu122) (xuu123,xuu124) xuu126",fontsize=16,color="burlywood",shape="triangle"];3211[label="xuu126/False",fontsize=10,color="white",style="solid",shape="box"];1546 -> 3211[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3211 -> 1648[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3212[label="xuu126/True",fontsize=10,color="white",style="solid",shape="box"];1546 -> 3212[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3212 -> 1649[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1547 -> 1546[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1547[label="compare1 (xuu121,xuu122) (xuu123,xuu124) True",fontsize=16,color="magenta"];1547 -> 1650[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1143 -> 1126[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1143[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 FiniteMap.EmptyFM)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1143 -> 1215[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1143 -> 1216[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1144 -> 1126[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1144[label="primCmpInt (primPlusInt xuu412 (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414))) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1144 -> 1217[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1144 -> 1218[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1326[label="Pos Zero",fontsize=16,color="green",shape="box"];1327[label="xuu242",fontsize=16,color="green",shape="box"];1239 -> 1233[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1239[label="FiniteMap.sizeFM xuu41",fontsize=16,color="magenta"];1239 -> 1330[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1328[label="xuu98",fontsize=16,color="green",shape="box"];1329[label="xuu99",fontsize=16,color="green",shape="box"];1050[label="compare xuu49 xuu51",fontsize=16,color="black",shape="triangle"];1050 -> 1126[label="",style="solid", color="black", weight=3]; 35.39/13.69 1232 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1232[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="magenta"];1232 -> 1240[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1232 -> 1241[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1237[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 False",fontsize=16,color="black",shape="box"];1237 -> 1316[label="",style="solid", color="black", weight=3]; 35.39/13.69 1238[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 True",fontsize=16,color="black",shape="box"];1238 -> 1317[label="",style="solid", color="black", weight=3]; 35.39/13.69 1171[label="error []",fontsize=16,color="red",shape="box"];1172[label="FiniteMap.mkBalBranch6MkBalBranch02 (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244)",fontsize=16,color="black",shape="box"];1172 -> 1242[label="",style="solid", color="black", weight=3]; 35.39/13.69 2783[label="xuu24",fontsize=16,color="green",shape="box"];2784[label="(xuu19,xuu20)",fontsize=16,color="green",shape="box"];2785[label="xuu41",fontsize=16,color="green",shape="box"];2786[label="xuu41",fontsize=16,color="green",shape="box"];2782[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu244 xuu240 xuu236 + FiniteMap.mkBranchRight_size xuu244 xuu240 xuu235",fontsize=16,color="black",shape="triangle"];2782 -> 2797[label="",style="solid", color="black", weight=3]; 35.39/13.69 2781[label="xuu224",fontsize=16,color="green",shape="box"];1158[label="primMulNat (Succ xuu311000100) (Succ xuu600000)",fontsize=16,color="black",shape="box"];1158 -> 1244[label="",style="solid", color="black", weight=3]; 35.39/13.69 1159[label="primMulNat (Succ xuu311000100) Zero",fontsize=16,color="black",shape="box"];1159 -> 1245[label="",style="solid", color="black", weight=3]; 35.39/13.69 1160[label="primMulNat Zero (Succ xuu600000)",fontsize=16,color="black",shape="box"];1160 -> 1246[label="",style="solid", color="black", weight=3]; 35.39/13.69 1161[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1161 -> 1247[label="",style="solid", color="black", weight=3]; 35.39/13.69 1573 -> 1680[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1573[label="compare xuu491 xuu511 /= GT",fontsize=16,color="magenta"];1573 -> 1681[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1574[label="LT <= xuu511",fontsize=16,color="burlywood",shape="box"];3213[label="xuu511/LT",fontsize=10,color="white",style="solid",shape="box"];1574 -> 3213[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3213 -> 1689[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3214[label="xuu511/EQ",fontsize=10,color="white",style="solid",shape="box"];1574 -> 3214[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3214 -> 1690[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3215[label="xuu511/GT",fontsize=10,color="white",style="solid",shape="box"];1574 -> 3215[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3215 -> 1691[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1575[label="EQ <= xuu511",fontsize=16,color="burlywood",shape="box"];3216[label="xuu511/LT",fontsize=10,color="white",style="solid",shape="box"];1575 -> 3216[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3216 -> 1692[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3217[label="xuu511/EQ",fontsize=10,color="white",style="solid",shape="box"];1575 -> 3217[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3217 -> 1693[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3218[label="xuu511/GT",fontsize=10,color="white",style="solid",shape="box"];1575 -> 3218[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3218 -> 1694[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1576[label="GT <= xuu511",fontsize=16,color="burlywood",shape="box"];3219[label="xuu511/LT",fontsize=10,color="white",style="solid",shape="box"];1576 -> 3219[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3219 -> 1695[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3220[label="xuu511/EQ",fontsize=10,color="white",style="solid",shape="box"];1576 -> 3220[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3220 -> 1696[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3221[label="xuu511/GT",fontsize=10,color="white",style="solid",shape="box"];1576 -> 3221[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3221 -> 1697[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1577 -> 1680[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1577[label="compare xuu491 xuu511 /= GT",fontsize=16,color="magenta"];1577 -> 1682[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1578 -> 1680[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1578[label="compare xuu491 xuu511 /= GT",fontsize=16,color="magenta"];1578 -> 1683[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1579[label="Nothing <= xuu511",fontsize=16,color="burlywood",shape="box"];3222[label="xuu511/Nothing",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3222[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3222 -> 1698[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3223[label="xuu511/Just xuu5110",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3223[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3223 -> 1699[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1580[label="Just xuu4910 <= xuu511",fontsize=16,color="burlywood",shape="box"];3224[label="xuu511/Nothing",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3224[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3224 -> 1700[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3225[label="xuu511/Just xuu5110",fontsize=10,color="white",style="solid",shape="box"];1580 -> 3225[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3225 -> 1701[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1581 -> 1680[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1581[label="compare xuu491 xuu511 /= GT",fontsize=16,color="magenta"];1581 -> 1684[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1582[label="Left xuu4910 <= xuu511",fontsize=16,color="burlywood",shape="box"];3226[label="xuu511/Left xuu5110",fontsize=10,color="white",style="solid",shape="box"];1582 -> 3226[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3226 -> 1702[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3227[label="xuu511/Right xuu5110",fontsize=10,color="white",style="solid",shape="box"];1582 -> 3227[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3227 -> 1703[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1583[label="Right xuu4910 <= xuu511",fontsize=16,color="burlywood",shape="box"];3228[label="xuu511/Left xuu5110",fontsize=10,color="white",style="solid",shape="box"];1583 -> 3228[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3228 -> 1704[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3229[label="xuu511/Right xuu5110",fontsize=10,color="white",style="solid",shape="box"];1583 -> 3229[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3229 -> 1705[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1584 -> 1680[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1584[label="compare xuu491 xuu511 /= GT",fontsize=16,color="magenta"];1584 -> 1685[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1585 -> 1680[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1585[label="compare xuu491 xuu511 /= GT",fontsize=16,color="magenta"];1585 -> 1686[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1586 -> 1680[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1586[label="compare xuu491 xuu511 /= GT",fontsize=16,color="magenta"];1586 -> 1687[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1587[label="(xuu4910,xuu4911) <= xuu511",fontsize=16,color="burlywood",shape="box"];3230[label="xuu511/(xuu5110,xuu5111)",fontsize=10,color="white",style="solid",shape="box"];1587 -> 3230[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3230 -> 1706[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1588 -> 1680[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1588[label="compare xuu491 xuu511 /= GT",fontsize=16,color="magenta"];1588 -> 1688[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1589[label="(xuu4910,xuu4911,xuu4912) <= xuu511",fontsize=16,color="burlywood",shape="box"];3231[label="xuu511/(xuu5110,xuu5111,xuu5112)",fontsize=10,color="white",style="solid",shape="box"];1589 -> 3231[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3231 -> 1707[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1590[label="False <= xuu511",fontsize=16,color="burlywood",shape="box"];3232[label="xuu511/False",fontsize=10,color="white",style="solid",shape="box"];1590 -> 3232[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3232 -> 1708[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3233[label="xuu511/True",fontsize=10,color="white",style="solid",shape="box"];1590 -> 3233[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3233 -> 1709[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1591[label="True <= xuu511",fontsize=16,color="burlywood",shape="box"];3234[label="xuu511/False",fontsize=10,color="white",style="solid",shape="box"];1591 -> 3234[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3234 -> 1710[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3235[label="xuu511/True",fontsize=10,color="white",style="solid",shape="box"];1591 -> 3235[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3235 -> 1711[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1592[label="xuu510",fontsize=16,color="green",shape="box"];1593[label="xuu490",fontsize=16,color="green",shape="box"];1594[label="xuu510",fontsize=16,color="green",shape="box"];1595[label="xuu490",fontsize=16,color="green",shape="box"];1596[label="xuu510",fontsize=16,color="green",shape="box"];1597[label="xuu490",fontsize=16,color="green",shape="box"];1598[label="xuu510",fontsize=16,color="green",shape="box"];1599[label="xuu490",fontsize=16,color="green",shape="box"];1600[label="xuu510",fontsize=16,color="green",shape="box"];1601[label="xuu490",fontsize=16,color="green",shape="box"];1602[label="xuu510",fontsize=16,color="green",shape="box"];1603[label="xuu490",fontsize=16,color="green",shape="box"];1604[label="xuu510",fontsize=16,color="green",shape="box"];1605[label="xuu490",fontsize=16,color="green",shape="box"];1606[label="xuu510",fontsize=16,color="green",shape="box"];1607[label="xuu490",fontsize=16,color="green",shape="box"];1608[label="xuu510",fontsize=16,color="green",shape="box"];1609[label="xuu490",fontsize=16,color="green",shape="box"];1610[label="xuu510",fontsize=16,color="green",shape="box"];1611[label="xuu490",fontsize=16,color="green",shape="box"];1612[label="xuu510",fontsize=16,color="green",shape="box"];1613[label="xuu490",fontsize=16,color="green",shape="box"];1614[label="xuu510",fontsize=16,color="green",shape="box"];1615[label="xuu490",fontsize=16,color="green",shape="box"];1616[label="xuu510",fontsize=16,color="green",shape="box"];1617[label="xuu490",fontsize=16,color="green",shape="box"];1618[label="xuu510",fontsize=16,color="green",shape="box"];1619[label="xuu490",fontsize=16,color="green",shape="box"];1620[label="LT",fontsize=16,color="green",shape="box"];1621 -> 1050[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1621[label="compare xuu490 xuu510",fontsize=16,color="magenta"];1621 -> 1712[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1621 -> 1713[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1622[label="LT",fontsize=16,color="green",shape="box"];1623[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1623 -> 1714[label="",style="solid", color="black", weight=3]; 35.39/13.69 1624[label="LT",fontsize=16,color="green",shape="box"];1625[label="compare xuu490 xuu510",fontsize=16,color="burlywood",shape="triangle"];3236[label="xuu490/xuu4900 : xuu4901",fontsize=10,color="white",style="solid",shape="box"];1625 -> 3236[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3236 -> 1715[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3237[label="xuu490/[]",fontsize=10,color="white",style="solid",shape="box"];1625 -> 3237[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3237 -> 1716[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1626[label="LT",fontsize=16,color="green",shape="box"];1627[label="compare xuu490 xuu510",fontsize=16,color="burlywood",shape="triangle"];3238[label="xuu490/Integer xuu4900",fontsize=10,color="white",style="solid",shape="box"];1627 -> 3238[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3238 -> 1717[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1628[label="LT",fontsize=16,color="green",shape="box"];1629[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1629 -> 1718[label="",style="solid", color="black", weight=3]; 35.39/13.69 1630[label="LT",fontsize=16,color="green",shape="box"];1631[label="compare xuu490 xuu510",fontsize=16,color="burlywood",shape="triangle"];3239[label="xuu490/()",fontsize=10,color="white",style="solid",shape="box"];1631 -> 3239[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3239 -> 1719[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1632[label="LT",fontsize=16,color="green",shape="box"];1633[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1633 -> 1720[label="",style="solid", color="black", weight=3]; 35.39/13.69 1634[label="LT",fontsize=16,color="green",shape="box"];1635[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1635 -> 1721[label="",style="solid", color="black", weight=3]; 35.39/13.69 1636[label="LT",fontsize=16,color="green",shape="box"];1637[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1637 -> 1722[label="",style="solid", color="black", weight=3]; 35.39/13.69 1638[label="LT",fontsize=16,color="green",shape="box"];1639[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1639 -> 1723[label="",style="solid", color="black", weight=3]; 35.39/13.69 1640[label="LT",fontsize=16,color="green",shape="box"];1641[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1641 -> 1724[label="",style="solid", color="black", weight=3]; 35.39/13.69 1642[label="LT",fontsize=16,color="green",shape="box"];1643[label="compare xuu490 xuu510",fontsize=16,color="burlywood",shape="triangle"];3240[label="xuu490/xuu4900 :% xuu4901",fontsize=10,color="white",style="solid",shape="box"];1643 -> 3240[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3240 -> 1725[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1644[label="LT",fontsize=16,color="green",shape="box"];1645[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1645 -> 1726[label="",style="solid", color="black", weight=3]; 35.39/13.69 1646[label="LT",fontsize=16,color="green",shape="box"];1647[label="compare xuu490 xuu510",fontsize=16,color="black",shape="triangle"];1647 -> 1727[label="",style="solid", color="black", weight=3]; 35.39/13.69 1648[label="compare1 (xuu121,xuu122) (xuu123,xuu124) False",fontsize=16,color="black",shape="box"];1648 -> 1728[label="",style="solid", color="black", weight=3]; 35.39/13.69 1649[label="compare1 (xuu121,xuu122) (xuu123,xuu124) True",fontsize=16,color="black",shape="box"];1649 -> 1729[label="",style="solid", color="black", weight=3]; 35.39/13.69 1650[label="True",fontsize=16,color="green",shape="box"];1215[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1216 -> 1410[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1216[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 FiniteMap.EmptyFM)",fontsize=16,color="magenta"];1216 -> 1413[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1216 -> 1414[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1126[label="primCmpInt xuu49 xuu51",fontsize=16,color="burlywood",shape="triangle"];3241[label="xuu49/Pos xuu490",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3241[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3241 -> 1196[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3242[label="xuu49/Neg xuu490",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3242[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3242 -> 1197[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1217[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1218 -> 1410[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1218[label="primPlusInt xuu412 (FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414))",fontsize=16,color="magenta"];1218 -> 1415[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1330[label="xuu41",fontsize=16,color="green",shape="box"];1240 -> 1227[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1240[label="FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="magenta"];1241 -> 1235[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1241[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1316[label="FiniteMap.mkBalBranch6MkBalBranch2 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 otherwise",fontsize=16,color="black",shape="box"];1316 -> 1421[label="",style="solid", color="black", weight=3]; 35.39/13.69 1317[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu19,xuu20) xuu21 xuu24 xuu41 xuu41 xuu24 xuu41",fontsize=16,color="burlywood",shape="box"];3243[label="xuu41/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1317 -> 3243[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3243 -> 1422[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3244[label="xuu41/FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414",fontsize=10,color="white",style="solid",shape="box"];1317 -> 3244[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3244 -> 1423[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1242 -> 1500[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1242[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu240 xuu241 xuu242 xuu243 xuu244 (FiniteMap.sizeFM xuu243 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu244)",fontsize=16,color="magenta"];1242 -> 1501[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2797 -> 1410[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2797[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu244 xuu240 xuu236) (FiniteMap.mkBranchRight_size xuu244 xuu240 xuu235)",fontsize=16,color="magenta"];2797 -> 2849[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2797 -> 2850[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1244 -> 1432[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1244[label="primPlusNat (primMulNat xuu311000100 (Succ xuu600000)) (Succ xuu600000)",fontsize=16,color="magenta"];1244 -> 1433[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1245[label="Zero",fontsize=16,color="green",shape="box"];1246[label="Zero",fontsize=16,color="green",shape="box"];1247[label="Zero",fontsize=16,color="green",shape="box"];1681 -> 1050[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1681[label="compare xuu491 xuu511",fontsize=16,color="magenta"];1681 -> 1730[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1681 -> 1731[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1680[label="xuu133 /= GT",fontsize=16,color="black",shape="triangle"];1680 -> 1732[label="",style="solid", color="black", weight=3]; 35.39/13.69 1689[label="LT <= LT",fontsize=16,color="black",shape="box"];1689 -> 1773[label="",style="solid", color="black", weight=3]; 35.39/13.69 1690[label="LT <= EQ",fontsize=16,color="black",shape="box"];1690 -> 1774[label="",style="solid", color="black", weight=3]; 35.39/13.69 1691[label="LT <= GT",fontsize=16,color="black",shape="box"];1691 -> 1775[label="",style="solid", color="black", weight=3]; 35.39/13.69 1692[label="EQ <= LT",fontsize=16,color="black",shape="box"];1692 -> 1776[label="",style="solid", color="black", weight=3]; 35.39/13.69 1693[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1693 -> 1777[label="",style="solid", color="black", weight=3]; 35.39/13.69 1694[label="EQ <= GT",fontsize=16,color="black",shape="box"];1694 -> 1778[label="",style="solid", color="black", weight=3]; 35.39/13.69 1695[label="GT <= LT",fontsize=16,color="black",shape="box"];1695 -> 1779[label="",style="solid", color="black", weight=3]; 35.39/13.69 1696[label="GT <= EQ",fontsize=16,color="black",shape="box"];1696 -> 1780[label="",style="solid", color="black", weight=3]; 35.39/13.69 1697[label="GT <= GT",fontsize=16,color="black",shape="box"];1697 -> 1781[label="",style="solid", color="black", weight=3]; 35.39/13.69 1682 -> 1625[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1682[label="compare xuu491 xuu511",fontsize=16,color="magenta"];1682 -> 1733[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1682 -> 1734[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1683 -> 1627[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1683[label="compare xuu491 xuu511",fontsize=16,color="magenta"];1683 -> 1735[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1683 -> 1736[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1698[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1698 -> 1782[label="",style="solid", color="black", weight=3]; 35.39/13.69 1699[label="Nothing <= Just xuu5110",fontsize=16,color="black",shape="box"];1699 -> 1783[label="",style="solid", color="black", weight=3]; 35.39/13.69 1700[label="Just xuu4910 <= Nothing",fontsize=16,color="black",shape="box"];1700 -> 1784[label="",style="solid", color="black", weight=3]; 35.39/13.69 1701[label="Just xuu4910 <= Just xuu5110",fontsize=16,color="black",shape="box"];1701 -> 1785[label="",style="solid", color="black", weight=3]; 35.39/13.69 1684 -> 1631[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1684[label="compare xuu491 xuu511",fontsize=16,color="magenta"];1684 -> 1737[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1684 -> 1738[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1702[label="Left xuu4910 <= Left xuu5110",fontsize=16,color="black",shape="box"];1702 -> 1786[label="",style="solid", color="black", weight=3]; 35.39/13.69 1703[label="Left xuu4910 <= Right xuu5110",fontsize=16,color="black",shape="box"];1703 -> 1787[label="",style="solid", color="black", weight=3]; 35.39/13.69 1704[label="Right xuu4910 <= Left xuu5110",fontsize=16,color="black",shape="box"];1704 -> 1788[label="",style="solid", color="black", weight=3]; 35.39/13.69 1705[label="Right xuu4910 <= Right xuu5110",fontsize=16,color="black",shape="box"];1705 -> 1789[label="",style="solid", color="black", weight=3]; 35.39/13.69 1685 -> 1635[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1685[label="compare xuu491 xuu511",fontsize=16,color="magenta"];1685 -> 1739[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1685 -> 1740[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1686 -> 1637[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1686[label="compare xuu491 xuu511",fontsize=16,color="magenta"];1686 -> 1741[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1686 -> 1742[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1687 -> 1639[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1687[label="compare xuu491 xuu511",fontsize=16,color="magenta"];1687 -> 1743[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1687 -> 1744[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1706[label="(xuu4910,xuu4911) <= (xuu5110,xuu5111)",fontsize=16,color="black",shape="box"];1706 -> 1790[label="",style="solid", color="black", weight=3]; 35.39/13.69 1688 -> 1643[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1688[label="compare xuu491 xuu511",fontsize=16,color="magenta"];1688 -> 1745[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1688 -> 1746[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1707[label="(xuu4910,xuu4911,xuu4912) <= (xuu5110,xuu5111,xuu5112)",fontsize=16,color="black",shape="box"];1707 -> 1791[label="",style="solid", color="black", weight=3]; 35.39/13.69 1708[label="False <= False",fontsize=16,color="black",shape="box"];1708 -> 1792[label="",style="solid", color="black", weight=3]; 35.39/13.69 1709[label="False <= True",fontsize=16,color="black",shape="box"];1709 -> 1793[label="",style="solid", color="black", weight=3]; 35.39/13.69 1710[label="True <= False",fontsize=16,color="black",shape="box"];1710 -> 1794[label="",style="solid", color="black", weight=3]; 35.39/13.69 1711[label="True <= True",fontsize=16,color="black",shape="box"];1711 -> 1795[label="",style="solid", color="black", weight=3]; 35.39/13.69 1712[label="xuu510",fontsize=16,color="green",shape="box"];1713[label="xuu490",fontsize=16,color="green",shape="box"];1714[label="compare3 xuu490 xuu510",fontsize=16,color="black",shape="box"];1714 -> 1796[label="",style="solid", color="black", weight=3]; 35.39/13.69 1715[label="compare (xuu4900 : xuu4901) xuu510",fontsize=16,color="burlywood",shape="box"];3245[label="xuu510/xuu5100 : xuu5101",fontsize=10,color="white",style="solid",shape="box"];1715 -> 3245[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3245 -> 1797[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3246[label="xuu510/[]",fontsize=10,color="white",style="solid",shape="box"];1715 -> 3246[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3246 -> 1798[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1716[label="compare [] xuu510",fontsize=16,color="burlywood",shape="box"];3247[label="xuu510/xuu5100 : xuu5101",fontsize=10,color="white",style="solid",shape="box"];1716 -> 3247[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3247 -> 1799[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3248[label="xuu510/[]",fontsize=10,color="white",style="solid",shape="box"];1716 -> 3248[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3248 -> 1800[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1717[label="compare (Integer xuu4900) xuu510",fontsize=16,color="burlywood",shape="box"];3249[label="xuu510/Integer xuu5100",fontsize=10,color="white",style="solid",shape="box"];1717 -> 3249[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3249 -> 1801[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1718[label="compare3 xuu490 xuu510",fontsize=16,color="black",shape="box"];1718 -> 1802[label="",style="solid", color="black", weight=3]; 35.39/13.69 1719[label="compare () xuu510",fontsize=16,color="burlywood",shape="box"];3250[label="xuu510/()",fontsize=10,color="white",style="solid",shape="box"];1719 -> 3250[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3250 -> 1803[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1720[label="compare3 xuu490 xuu510",fontsize=16,color="black",shape="box"];1720 -> 1804[label="",style="solid", color="black", weight=3]; 35.39/13.69 1721[label="primCmpDouble xuu490 xuu510",fontsize=16,color="burlywood",shape="box"];3251[label="xuu490/Double xuu4900 xuu4901",fontsize=10,color="white",style="solid",shape="box"];1721 -> 3251[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3251 -> 1805[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1722[label="primCmpFloat xuu490 xuu510",fontsize=16,color="burlywood",shape="box"];3252[label="xuu490/Float xuu4900 xuu4901",fontsize=10,color="white",style="solid",shape="box"];1722 -> 3252[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3252 -> 1806[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1723[label="primCmpChar xuu490 xuu510",fontsize=16,color="burlywood",shape="box"];3253[label="xuu490/Char xuu4900",fontsize=10,color="white",style="solid",shape="box"];1723 -> 3253[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3253 -> 1807[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1724[label="compare3 xuu490 xuu510",fontsize=16,color="black",shape="box"];1724 -> 1808[label="",style="solid", color="black", weight=3]; 35.39/13.69 1725[label="compare (xuu4900 :% xuu4901) xuu510",fontsize=16,color="burlywood",shape="box"];3254[label="xuu510/xuu5100 :% xuu5101",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3254[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3254 -> 1809[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1726[label="compare3 xuu490 xuu510",fontsize=16,color="black",shape="box"];1726 -> 1810[label="",style="solid", color="black", weight=3]; 35.39/13.69 1727[label="compare3 xuu490 xuu510",fontsize=16,color="black",shape="box"];1727 -> 1811[label="",style="solid", color="black", weight=3]; 35.39/13.69 1728[label="compare0 (xuu121,xuu122) (xuu123,xuu124) otherwise",fontsize=16,color="black",shape="box"];1728 -> 1812[label="",style="solid", color="black", weight=3]; 35.39/13.69 1729[label="LT",fontsize=16,color="green",shape="box"];1413[label="Pos Zero",fontsize=16,color="green",shape="box"];1414 -> 1227[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1414[label="FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 FiniteMap.EmptyFM",fontsize=16,color="magenta"];1414 -> 1435[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1410[label="primPlusInt xuu412 xuu108",fontsize=16,color="burlywood",shape="triangle"];3255[label="xuu412/Pos xuu4120",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3255[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3255 -> 1430[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3256[label="xuu412/Neg xuu4120",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3256[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3256 -> 1431[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1196[label="primCmpInt (Pos xuu490) xuu51",fontsize=16,color="burlywood",shape="box"];3257[label="xuu490/Succ xuu4900",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3257[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3257 -> 1320[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3258[label="xuu490/Zero",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3258[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3258 -> 1321[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1197[label="primCmpInt (Neg xuu490) xuu51",fontsize=16,color="burlywood",shape="box"];3259[label="xuu490/Succ xuu4900",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3259[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3259 -> 1322[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3260[label="xuu490/Zero",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3260[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3260 -> 1323[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1415 -> 1227[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1415[label="FiniteMap.mkBalBranch6Size_r (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="magenta"];1415 -> 1436[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1421[label="FiniteMap.mkBalBranch6MkBalBranch2 (xuu19,xuu20) xuu21 xuu24 xuu41 (xuu19,xuu20) xuu21 xuu41 xuu24 True",fontsize=16,color="black",shape="box"];1421 -> 1437[label="",style="solid", color="black", weight=3]; 35.39/13.69 1422[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu19,xuu20) xuu21 xuu24 FiniteMap.EmptyFM FiniteMap.EmptyFM xuu24 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1422 -> 1438[label="",style="solid", color="black", weight=3]; 35.39/13.69 1423[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="black",shape="box"];1423 -> 1439[label="",style="solid", color="black", weight=3]; 35.39/13.69 1501 -> 1481[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1501[label="FiniteMap.sizeFM xuu243 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu244",fontsize=16,color="magenta"];1501 -> 1548[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1501 -> 1549[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1500[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu240 xuu241 xuu242 xuu243 xuu244 xuu127",fontsize=16,color="burlywood",shape="triangle"];3261[label="xuu127/False",fontsize=10,color="white",style="solid",shape="box"];1500 -> 3261[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3261 -> 1550[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3262[label="xuu127/True",fontsize=10,color="white",style="solid",shape="box"];1500 -> 3262[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3262 -> 1551[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 2849[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu244 xuu240 xuu236",fontsize=16,color="black",shape="box"];2849 -> 2856[label="",style="solid", color="black", weight=3]; 35.39/13.69 2850[label="FiniteMap.mkBranchRight_size xuu244 xuu240 xuu235",fontsize=16,color="black",shape="box"];2850 -> 2857[label="",style="solid", color="black", weight=3]; 35.39/13.69 1433 -> 998[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1433[label="primMulNat xuu311000100 (Succ xuu600000)",fontsize=16,color="magenta"];1433 -> 1450[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1433 -> 1451[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1432[label="primPlusNat xuu112 (Succ xuu600000)",fontsize=16,color="burlywood",shape="triangle"];3263[label="xuu112/Succ xuu1120",fontsize=10,color="white",style="solid",shape="box"];1432 -> 3263[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3263 -> 1452[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3264[label="xuu112/Zero",fontsize=10,color="white",style="solid",shape="box"];1432 -> 3264[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3264 -> 1453[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1730[label="xuu511",fontsize=16,color="green",shape="box"];1731[label="xuu491",fontsize=16,color="green",shape="box"];1732 -> 1813[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1732[label="not (xuu133 == GT)",fontsize=16,color="magenta"];1732 -> 1814[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1773[label="True",fontsize=16,color="green",shape="box"];1774[label="True",fontsize=16,color="green",shape="box"];1775[label="True",fontsize=16,color="green",shape="box"];1776[label="False",fontsize=16,color="green",shape="box"];1777[label="True",fontsize=16,color="green",shape="box"];1778[label="True",fontsize=16,color="green",shape="box"];1779[label="False",fontsize=16,color="green",shape="box"];1780[label="False",fontsize=16,color="green",shape="box"];1781[label="True",fontsize=16,color="green",shape="box"];1733[label="xuu511",fontsize=16,color="green",shape="box"];1734[label="xuu491",fontsize=16,color="green",shape="box"];1735[label="xuu511",fontsize=16,color="green",shape="box"];1736[label="xuu491",fontsize=16,color="green",shape="box"];1782[label="True",fontsize=16,color="green",shape="box"];1783[label="True",fontsize=16,color="green",shape="box"];1784[label="False",fontsize=16,color="green",shape="box"];1785[label="xuu4910 <= xuu5110",fontsize=16,color="blue",shape="box"];3265[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1785 -> 3265[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3265 -> 1815[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3266[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1785 -> 3266[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3266 -> 1816[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3267[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1785 -> 3267[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3267 -> 1817[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3268[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1785 -> 3268[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3268 -> 1818[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3269[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1785 -> 3269[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3269 -> 1819[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3270[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1785 -> 3270[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3270 -> 1820[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3271[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1785 -> 3271[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3271 -> 1821[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3272[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1785 -> 3272[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3272 -> 1822[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3273[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1785 -> 3273[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3273 -> 1823[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3274[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1785 -> 3274[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3274 -> 1824[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3275[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1785 -> 3275[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3275 -> 1825[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3276[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1785 -> 3276[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3276 -> 1826[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3277[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1785 -> 3277[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3277 -> 1827[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3278[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1785 -> 3278[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3278 -> 1828[label="",style="solid", color="blue", weight=3]; 35.39/13.69 1737[label="xuu511",fontsize=16,color="green",shape="box"];1738[label="xuu491",fontsize=16,color="green",shape="box"];1786[label="xuu4910 <= xuu5110",fontsize=16,color="blue",shape="box"];3279[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1786 -> 3279[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3279 -> 1829[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3280[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1786 -> 3280[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3280 -> 1830[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3281[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1786 -> 3281[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3281 -> 1831[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3282[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1786 -> 3282[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3282 -> 1832[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3283[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1786 -> 3283[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3283 -> 1833[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3284[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1786 -> 3284[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3284 -> 1834[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3285[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1786 -> 3285[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3285 -> 1835[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3286[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1786 -> 3286[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3286 -> 1836[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3287[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1786 -> 3287[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3287 -> 1837[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3288[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1786 -> 3288[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3288 -> 1838[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3289[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1786 -> 3289[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3289 -> 1839[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3290[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1786 -> 3290[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3290 -> 1840[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3291[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1786 -> 3291[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3291 -> 1841[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3292[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1786 -> 3292[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3292 -> 1842[label="",style="solid", color="blue", weight=3]; 35.39/13.69 1787[label="True",fontsize=16,color="green",shape="box"];1788[label="False",fontsize=16,color="green",shape="box"];1789[label="xuu4910 <= xuu5110",fontsize=16,color="blue",shape="box"];3293[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1789 -> 3293[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3293 -> 1843[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3294[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1789 -> 3294[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3294 -> 1844[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3295[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1789 -> 3295[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3295 -> 1845[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3296[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1789 -> 3296[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3296 -> 1846[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3297[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1789 -> 3297[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3297 -> 1847[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3298[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1789 -> 3298[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3298 -> 1848[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3299[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1789 -> 3299[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3299 -> 1849[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3300[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1789 -> 3300[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3300 -> 1850[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3301[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1789 -> 3301[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3301 -> 1851[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3302[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1789 -> 3302[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3302 -> 1852[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3303[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1789 -> 3303[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3303 -> 1853[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3304[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1789 -> 3304[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3304 -> 1854[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3305[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1789 -> 3305[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3305 -> 1855[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3306[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1789 -> 3306[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3306 -> 1856[label="",style="solid", color="blue", weight=3]; 35.39/13.69 1739[label="xuu511",fontsize=16,color="green",shape="box"];1740[label="xuu491",fontsize=16,color="green",shape="box"];1741[label="xuu511",fontsize=16,color="green",shape="box"];1742[label="xuu491",fontsize=16,color="green",shape="box"];1743[label="xuu511",fontsize=16,color="green",shape="box"];1744[label="xuu491",fontsize=16,color="green",shape="box"];1790 -> 1978[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1790[label="xuu4910 < xuu5110 || xuu4910 == xuu5110 && xuu4911 <= xuu5111",fontsize=16,color="magenta"];1790 -> 1979[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1790 -> 1980[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1745[label="xuu511",fontsize=16,color="green",shape="box"];1746[label="xuu491",fontsize=16,color="green",shape="box"];1791 -> 1978[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1791[label="xuu4910 < xuu5110 || xuu4910 == xuu5110 && (xuu4911 < xuu5111 || xuu4911 == xuu5111 && xuu4912 <= xuu5112)",fontsize=16,color="magenta"];1791 -> 1981[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1791 -> 1982[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1792[label="True",fontsize=16,color="green",shape="box"];1793[label="True",fontsize=16,color="green",shape="box"];1794[label="False",fontsize=16,color="green",shape="box"];1795[label="True",fontsize=16,color="green",shape="box"];1796 -> 1862[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1796[label="compare2 xuu490 xuu510 (xuu490 == xuu510)",fontsize=16,color="magenta"];1796 -> 1863[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1797[label="compare (xuu4900 : xuu4901) (xuu5100 : xuu5101)",fontsize=16,color="black",shape="box"];1797 -> 1864[label="",style="solid", color="black", weight=3]; 35.39/13.69 1798[label="compare (xuu4900 : xuu4901) []",fontsize=16,color="black",shape="box"];1798 -> 1865[label="",style="solid", color="black", weight=3]; 35.39/13.69 1799[label="compare [] (xuu5100 : xuu5101)",fontsize=16,color="black",shape="box"];1799 -> 1866[label="",style="solid", color="black", weight=3]; 35.39/13.69 1800[label="compare [] []",fontsize=16,color="black",shape="box"];1800 -> 1867[label="",style="solid", color="black", weight=3]; 35.39/13.69 1801[label="compare (Integer xuu4900) (Integer xuu5100)",fontsize=16,color="black",shape="box"];1801 -> 1868[label="",style="solid", color="black", weight=3]; 35.39/13.69 1802 -> 1869[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1802[label="compare2 xuu490 xuu510 (xuu490 == xuu510)",fontsize=16,color="magenta"];1802 -> 1870[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1803[label="compare () ()",fontsize=16,color="black",shape="box"];1803 -> 1871[label="",style="solid", color="black", weight=3]; 35.39/13.69 1804 -> 1872[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1804[label="compare2 xuu490 xuu510 (xuu490 == xuu510)",fontsize=16,color="magenta"];1804 -> 1873[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1805[label="primCmpDouble (Double xuu4900 xuu4901) xuu510",fontsize=16,color="burlywood",shape="box"];3307[label="xuu4901/Pos xuu49010",fontsize=10,color="white",style="solid",shape="box"];1805 -> 3307[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3307 -> 1874[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3308[label="xuu4901/Neg xuu49010",fontsize=10,color="white",style="solid",shape="box"];1805 -> 3308[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3308 -> 1875[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1806[label="primCmpFloat (Float xuu4900 xuu4901) xuu510",fontsize=16,color="burlywood",shape="box"];3309[label="xuu4901/Pos xuu49010",fontsize=10,color="white",style="solid",shape="box"];1806 -> 3309[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3309 -> 1876[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3310[label="xuu4901/Neg xuu49010",fontsize=10,color="white",style="solid",shape="box"];1806 -> 3310[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3310 -> 1877[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1807[label="primCmpChar (Char xuu4900) xuu510",fontsize=16,color="burlywood",shape="box"];3311[label="xuu510/Char xuu5100",fontsize=10,color="white",style="solid",shape="box"];1807 -> 3311[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3311 -> 1878[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1808 -> 1346[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1808[label="compare2 xuu490 xuu510 (xuu490 == xuu510)",fontsize=16,color="magenta"];1808 -> 1879[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1808 -> 1880[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1808 -> 1881[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1809[label="compare (xuu4900 :% xuu4901) (xuu5100 :% xuu5101)",fontsize=16,color="black",shape="box"];1809 -> 1882[label="",style="solid", color="black", weight=3]; 35.39/13.69 1810 -> 1883[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1810[label="compare2 xuu490 xuu510 (xuu490 == xuu510)",fontsize=16,color="magenta"];1810 -> 1884[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1811 -> 1885[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1811[label="compare2 xuu490 xuu510 (xuu490 == xuu510)",fontsize=16,color="magenta"];1811 -> 1886[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1812[label="compare0 (xuu121,xuu122) (xuu123,xuu124) True",fontsize=16,color="black",shape="box"];1812 -> 1887[label="",style="solid", color="black", weight=3]; 35.39/13.69 1435[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];1430[label="primPlusInt (Pos xuu4120) xuu108",fontsize=16,color="burlywood",shape="box"];3312[label="xuu108/Pos xuu1080",fontsize=10,color="white",style="solid",shape="box"];1430 -> 3312[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3312 -> 1446[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3313[label="xuu108/Neg xuu1080",fontsize=10,color="white",style="solid",shape="box"];1430 -> 3313[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3313 -> 1447[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1431[label="primPlusInt (Neg xuu4120) xuu108",fontsize=16,color="burlywood",shape="box"];3314[label="xuu108/Pos xuu1080",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3314[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3314 -> 1448[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3315[label="xuu108/Neg xuu1080",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3315[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3315 -> 1449[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1320[label="primCmpInt (Pos (Succ xuu4900)) xuu51",fontsize=16,color="burlywood",shape="box"];3316[label="xuu51/Pos xuu510",fontsize=10,color="white",style="solid",shape="box"];1320 -> 3316[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3316 -> 1454[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3317[label="xuu51/Neg xuu510",fontsize=10,color="white",style="solid",shape="box"];1320 -> 3317[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3317 -> 1455[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1321[label="primCmpInt (Pos Zero) xuu51",fontsize=16,color="burlywood",shape="box"];3318[label="xuu51/Pos xuu510",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3318[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3318 -> 1456[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3319[label="xuu51/Neg xuu510",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3319[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3319 -> 1457[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1322[label="primCmpInt (Neg (Succ xuu4900)) xuu51",fontsize=16,color="burlywood",shape="box"];3320[label="xuu51/Pos xuu510",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3320[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3320 -> 1458[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3321[label="xuu51/Neg xuu510",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3321[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3321 -> 1459[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1323[label="primCmpInt (Neg Zero) xuu51",fontsize=16,color="burlywood",shape="box"];3322[label="xuu51/Pos xuu510",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3322[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3322 -> 1460[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3323[label="xuu51/Neg xuu510",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3323[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3323 -> 1461[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1436[label="FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414",fontsize=16,color="green",shape="box"];1437[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (xuu19,xuu20) xuu21 xuu41 xuu24",fontsize=16,color="black",shape="box"];1437 -> 1497[label="",style="solid", color="black", weight=3]; 35.39/13.69 1438[label="error []",fontsize=16,color="red",shape="box"];1439[label="FiniteMap.mkBalBranch6MkBalBranch12 (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="black",shape="box"];1439 -> 1498[label="",style="solid", color="black", weight=3]; 35.39/13.69 1548 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1548[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu244",fontsize=16,color="magenta"];1548 -> 1651[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1548 -> 1652[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1549 -> 1233[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1549[label="FiniteMap.sizeFM xuu243",fontsize=16,color="magenta"];1549 -> 1653[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1550[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu240 xuu241 xuu242 xuu243 xuu244 False",fontsize=16,color="black",shape="box"];1550 -> 1654[label="",style="solid", color="black", weight=3]; 35.39/13.69 1551[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu240 xuu241 xuu242 xuu243 xuu244 True",fontsize=16,color="black",shape="box"];1551 -> 1655[label="",style="solid", color="black", weight=3]; 35.39/13.69 2856 -> 1410[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2856[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu244 xuu240 xuu236)",fontsize=16,color="magenta"];2856 -> 2862[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2856 -> 2863[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2857 -> 1233[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2857[label="FiniteMap.sizeFM xuu244",fontsize=16,color="magenta"];2857 -> 2864[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1450[label="xuu311000100",fontsize=16,color="green",shape="box"];1451[label="Succ xuu600000",fontsize=16,color="green",shape="box"];1452[label="primPlusNat (Succ xuu1120) (Succ xuu600000)",fontsize=16,color="black",shape="box"];1452 -> 1557[label="",style="solid", color="black", weight=3]; 35.39/13.69 1453[label="primPlusNat Zero (Succ xuu600000)",fontsize=16,color="black",shape="box"];1453 -> 1558[label="",style="solid", color="black", weight=3]; 35.39/13.69 1814 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1814[label="xuu133 == GT",fontsize=16,color="magenta"];1814 -> 1888[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1814 -> 1889[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1813[label="not xuu134",fontsize=16,color="burlywood",shape="triangle"];3324[label="xuu134/False",fontsize=10,color="white",style="solid",shape="box"];1813 -> 3324[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3324 -> 1890[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3325[label="xuu134/True",fontsize=10,color="white",style="solid",shape="box"];1813 -> 3325[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3325 -> 1891[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1815 -> 1504[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1815[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1815 -> 1892[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1815 -> 1893[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1816 -> 1505[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1816[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1816 -> 1894[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1816 -> 1895[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1817 -> 1506[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1817[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1817 -> 1896[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1817 -> 1897[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1818 -> 1507[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1818[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1818 -> 1898[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1818 -> 1899[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1819 -> 1508[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1819[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1819 -> 1900[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1819 -> 1901[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1820 -> 1509[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1820[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1820 -> 1902[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1820 -> 1903[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1821 -> 1510[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1821[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1821 -> 1904[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1821 -> 1905[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1822 -> 1511[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1822[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1822 -> 1906[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1822 -> 1907[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1823 -> 1512[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1823[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1823 -> 1908[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1823 -> 1909[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1824 -> 1513[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1824[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1824 -> 1910[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1824 -> 1911[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1825 -> 1514[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1825[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1825 -> 1912[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1825 -> 1913[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1826 -> 1515[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1826[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1826 -> 1914[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1826 -> 1915[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1827 -> 1516[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1827[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1827 -> 1916[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1827 -> 1917[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1828 -> 1517[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1828[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1828 -> 1918[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1828 -> 1919[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1829 -> 1504[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1829[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1829 -> 1920[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1829 -> 1921[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1830 -> 1505[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1830[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1830 -> 1922[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1830 -> 1923[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1831 -> 1506[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1831[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1831 -> 1924[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1831 -> 1925[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1832 -> 1507[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1832[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1832 -> 1926[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1832 -> 1927[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1833 -> 1508[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1833[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1833 -> 1928[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1833 -> 1929[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1834 -> 1509[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1834[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1834 -> 1930[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1834 -> 1931[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1835 -> 1510[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1835[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1835 -> 1932[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1835 -> 1933[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1836 -> 1511[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1836[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1836 -> 1934[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1836 -> 1935[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1837 -> 1512[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1837[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1837 -> 1936[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1837 -> 1937[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1838 -> 1513[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1838[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1838 -> 1938[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1838 -> 1939[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1839 -> 1514[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1839[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1839 -> 1940[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1839 -> 1941[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1840 -> 1515[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1840[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1840 -> 1942[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1840 -> 1943[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1841 -> 1516[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1841[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1841 -> 1944[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1841 -> 1945[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1842 -> 1517[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1842[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1842 -> 1946[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1842 -> 1947[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1843 -> 1504[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1843[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1843 -> 1948[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1843 -> 1949[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1844 -> 1505[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1844[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1844 -> 1950[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1844 -> 1951[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1845 -> 1506[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1845[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1845 -> 1952[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1845 -> 1953[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1846 -> 1507[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1846[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1846 -> 1954[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1846 -> 1955[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1847 -> 1508[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1847[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1847 -> 1956[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1847 -> 1957[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1848 -> 1509[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1848[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1848 -> 1958[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1848 -> 1959[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1849 -> 1510[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1849[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1849 -> 1960[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1849 -> 1961[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1850 -> 1511[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1850[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1850 -> 1962[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1850 -> 1963[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1851 -> 1512[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1851[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1851 -> 1964[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1851 -> 1965[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1852 -> 1513[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1852[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1852 -> 1966[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1852 -> 1967[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1853 -> 1514[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1853[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1853 -> 1968[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1853 -> 1969[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1854 -> 1515[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1854[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1854 -> 1970[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1854 -> 1971[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1855 -> 1516[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1855[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1855 -> 1972[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1855 -> 1973[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1856 -> 1517[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1856[label="xuu4910 <= xuu5110",fontsize=16,color="magenta"];1856 -> 1974[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1856 -> 1975[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1979[label="xuu4910 < xuu5110",fontsize=16,color="blue",shape="box"];3326[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 3326[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3326 -> 1985[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3327[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 3327[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3327 -> 1986[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3328[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 3328[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3328 -> 1987[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3329[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 3329[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3329 -> 1988[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3330[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 3330[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3330 -> 1989[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3331[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 3331[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3331 -> 1990[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3332[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 3332[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3332 -> 1991[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3333[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 3333[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3333 -> 1992[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3334[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 3334[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3334 -> 1993[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3335[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 3335[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3335 -> 1994[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3336[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 3336[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3336 -> 1995[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3337[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 3337[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3337 -> 1996[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3338[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 3338[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3338 -> 1997[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3339[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 3339[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3339 -> 1998[label="",style="solid", color="blue", weight=3]; 35.39/13.69 1980 -> 439[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1980[label="xuu4910 == xuu5110 && xuu4911 <= xuu5111",fontsize=16,color="magenta"];1980 -> 1999[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1980 -> 2000[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1978[label="xuu144 || xuu145",fontsize=16,color="burlywood",shape="triangle"];3340[label="xuu144/False",fontsize=10,color="white",style="solid",shape="box"];1978 -> 3340[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3340 -> 2001[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3341[label="xuu144/True",fontsize=10,color="white",style="solid",shape="box"];1978 -> 3341[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3341 -> 2002[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1981[label="xuu4910 < xuu5110",fontsize=16,color="blue",shape="box"];3342[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1981 -> 3342[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3342 -> 2003[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3343[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1981 -> 3343[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3343 -> 2004[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3344[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1981 -> 3344[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3344 -> 2005[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3345[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1981 -> 3345[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3345 -> 2006[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3346[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1981 -> 3346[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3346 -> 2007[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3347[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1981 -> 3347[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3347 -> 2008[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3348[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1981 -> 3348[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3348 -> 2009[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3349[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1981 -> 3349[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3349 -> 2010[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3350[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1981 -> 3350[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3350 -> 2011[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3351[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1981 -> 3351[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3351 -> 2012[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3352[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1981 -> 3352[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3352 -> 2013[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3353[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1981 -> 3353[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3353 -> 2014[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3354[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1981 -> 3354[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3354 -> 2015[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3355[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1981 -> 3355[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3355 -> 2016[label="",style="solid", color="blue", weight=3]; 35.39/13.69 1982 -> 439[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1982[label="xuu4910 == xuu5110 && (xuu4911 < xuu5111 || xuu4911 == xuu5111 && xuu4912 <= xuu5112)",fontsize=16,color="magenta"];1982 -> 2017[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1982 -> 2018[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1863 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1863[label="xuu490 == xuu510",fontsize=16,color="magenta"];1863 -> 2019[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1863 -> 2020[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1862[label="compare2 xuu490 xuu510 xuu136",fontsize=16,color="burlywood",shape="triangle"];3356[label="xuu136/False",fontsize=10,color="white",style="solid",shape="box"];1862 -> 3356[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3356 -> 2021[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3357[label="xuu136/True",fontsize=10,color="white",style="solid",shape="box"];1862 -> 3357[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3357 -> 2022[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1864 -> 2023[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1864[label="primCompAux xuu4900 xuu5100 (compare xuu4901 xuu5101)",fontsize=16,color="magenta"];1864 -> 2024[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1865[label="GT",fontsize=16,color="green",shape="box"];1866[label="LT",fontsize=16,color="green",shape="box"];1867[label="EQ",fontsize=16,color="green",shape="box"];1868 -> 1126[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1868[label="primCmpInt xuu4900 xuu5100",fontsize=16,color="magenta"];1868 -> 2025[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1868 -> 2026[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1870 -> 157[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1870[label="xuu490 == xuu510",fontsize=16,color="magenta"];1870 -> 2027[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1870 -> 2028[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1869[label="compare2 xuu490 xuu510 xuu137",fontsize=16,color="burlywood",shape="triangle"];3358[label="xuu137/False",fontsize=10,color="white",style="solid",shape="box"];1869 -> 3358[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3358 -> 2029[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3359[label="xuu137/True",fontsize=10,color="white",style="solid",shape="box"];1869 -> 3359[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3359 -> 2030[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1871[label="EQ",fontsize=16,color="green",shape="box"];1873 -> 161[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1873[label="xuu490 == xuu510",fontsize=16,color="magenta"];1873 -> 2031[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1873 -> 2032[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1872[label="compare2 xuu490 xuu510 xuu138",fontsize=16,color="burlywood",shape="triangle"];3360[label="xuu138/False",fontsize=10,color="white",style="solid",shape="box"];1872 -> 3360[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3360 -> 2033[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3361[label="xuu138/True",fontsize=10,color="white",style="solid",shape="box"];1872 -> 3361[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3361 -> 2034[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1874[label="primCmpDouble (Double xuu4900 (Pos xuu49010)) xuu510",fontsize=16,color="burlywood",shape="box"];3362[label="xuu510/Double xuu5100 xuu5101",fontsize=10,color="white",style="solid",shape="box"];1874 -> 3362[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3362 -> 2035[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1875[label="primCmpDouble (Double xuu4900 (Neg xuu49010)) xuu510",fontsize=16,color="burlywood",shape="box"];3363[label="xuu510/Double xuu5100 xuu5101",fontsize=10,color="white",style="solid",shape="box"];1875 -> 3363[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3363 -> 2036[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1876[label="primCmpFloat (Float xuu4900 (Pos xuu49010)) xuu510",fontsize=16,color="burlywood",shape="box"];3364[label="xuu510/Float xuu5100 xuu5101",fontsize=10,color="white",style="solid",shape="box"];1876 -> 3364[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3364 -> 2037[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1877[label="primCmpFloat (Float xuu4900 (Neg xuu49010)) xuu510",fontsize=16,color="burlywood",shape="box"];3365[label="xuu510/Float xuu5100 xuu5101",fontsize=10,color="white",style="solid",shape="box"];1877 -> 3365[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3365 -> 2038[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1878[label="primCmpChar (Char xuu4900) (Char xuu5100)",fontsize=16,color="black",shape="box"];1878 -> 2039[label="",style="solid", color="black", weight=3]; 35.39/13.69 1879 -> 162[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1879[label="xuu490 == xuu510",fontsize=16,color="magenta"];1879 -> 2040[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1879 -> 2041[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1880[label="xuu510",fontsize=16,color="green",shape="box"];1881[label="xuu490",fontsize=16,color="green",shape="box"];1882[label="compare (xuu4900 * xuu5101) (xuu5100 * xuu4901)",fontsize=16,color="blue",shape="box"];3366[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1882 -> 3366[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3366 -> 2042[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3367[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1882 -> 3367[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3367 -> 2043[label="",style="solid", color="blue", weight=3]; 35.39/13.69 1884 -> 160[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1884[label="xuu490 == xuu510",fontsize=16,color="magenta"];1884 -> 2044[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1884 -> 2045[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1883[label="compare2 xuu490 xuu510 xuu139",fontsize=16,color="burlywood",shape="triangle"];3368[label="xuu139/False",fontsize=10,color="white",style="solid",shape="box"];1883 -> 3368[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3368 -> 2046[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3369[label="xuu139/True",fontsize=10,color="white",style="solid",shape="box"];1883 -> 3369[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3369 -> 2047[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1886 -> 158[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1886[label="xuu490 == xuu510",fontsize=16,color="magenta"];1886 -> 2048[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1886 -> 2049[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1885[label="compare2 xuu490 xuu510 xuu140",fontsize=16,color="burlywood",shape="triangle"];3370[label="xuu140/False",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3370[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3370 -> 2050[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3371[label="xuu140/True",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3371[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3371 -> 2051[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1887[label="GT",fontsize=16,color="green",shape="box"];1446[label="primPlusInt (Pos xuu4120) (Pos xuu1080)",fontsize=16,color="black",shape="box"];1446 -> 1553[label="",style="solid", color="black", weight=3]; 35.39/13.69 1447[label="primPlusInt (Pos xuu4120) (Neg xuu1080)",fontsize=16,color="black",shape="box"];1447 -> 1554[label="",style="solid", color="black", weight=3]; 35.39/13.69 1448[label="primPlusInt (Neg xuu4120) (Pos xuu1080)",fontsize=16,color="black",shape="box"];1448 -> 1555[label="",style="solid", color="black", weight=3]; 35.39/13.69 1449[label="primPlusInt (Neg xuu4120) (Neg xuu1080)",fontsize=16,color="black",shape="box"];1449 -> 1556[label="",style="solid", color="black", weight=3]; 35.39/13.69 1454[label="primCmpInt (Pos (Succ xuu4900)) (Pos xuu510)",fontsize=16,color="black",shape="box"];1454 -> 1559[label="",style="solid", color="black", weight=3]; 35.39/13.69 1455[label="primCmpInt (Pos (Succ xuu4900)) (Neg xuu510)",fontsize=16,color="black",shape="box"];1455 -> 1560[label="",style="solid", color="black", weight=3]; 35.39/13.69 1456[label="primCmpInt (Pos Zero) (Pos xuu510)",fontsize=16,color="burlywood",shape="box"];3372[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1456 -> 3372[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3372 -> 1561[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3373[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1456 -> 3373[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3373 -> 1562[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1457[label="primCmpInt (Pos Zero) (Neg xuu510)",fontsize=16,color="burlywood",shape="box"];3374[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1457 -> 3374[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3374 -> 1563[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3375[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1457 -> 3375[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3375 -> 1564[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1458[label="primCmpInt (Neg (Succ xuu4900)) (Pos xuu510)",fontsize=16,color="black",shape="box"];1458 -> 1565[label="",style="solid", color="black", weight=3]; 35.39/13.69 1459[label="primCmpInt (Neg (Succ xuu4900)) (Neg xuu510)",fontsize=16,color="black",shape="box"];1459 -> 1566[label="",style="solid", color="black", weight=3]; 35.39/13.69 1460[label="primCmpInt (Neg Zero) (Pos xuu510)",fontsize=16,color="burlywood",shape="box"];3376[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1460 -> 3376[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3376 -> 1567[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3377[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1460 -> 3377[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3377 -> 1568[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1461[label="primCmpInt (Neg Zero) (Neg xuu510)",fontsize=16,color="burlywood",shape="box"];3378[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1461 -> 3378[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3378 -> 1569[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3379[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1461 -> 3379[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3379 -> 1570[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1497 -> 890[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1497[label="FiniteMap.mkBranchResult (xuu19,xuu20) xuu21 xuu24 xuu41",fontsize=16,color="magenta"];1498 -> 1571[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1498[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24 xuu410 xuu411 xuu412 xuu413 xuu414 (FiniteMap.sizeFM xuu414 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu413)",fontsize=16,color="magenta"];1498 -> 1572[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1651 -> 1233[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1651[label="FiniteMap.sizeFM xuu244",fontsize=16,color="magenta"];1651 -> 1747[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1652[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1653[label="xuu243",fontsize=16,color="green",shape="box"];1654[label="FiniteMap.mkBalBranch6MkBalBranch00 (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu240 xuu241 xuu242 xuu243 xuu244 otherwise",fontsize=16,color="black",shape="box"];1654 -> 1748[label="",style="solid", color="black", weight=3]; 35.39/13.69 1655[label="FiniteMap.mkBalBranch6Single_L (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244)",fontsize=16,color="black",shape="box"];1655 -> 1749[label="",style="solid", color="black", weight=3]; 35.39/13.69 2862[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];2863[label="FiniteMap.mkBranchLeft_size xuu244 xuu240 xuu236",fontsize=16,color="black",shape="box"];2863 -> 2869[label="",style="solid", color="black", weight=3]; 35.39/13.69 2864[label="xuu244",fontsize=16,color="green",shape="box"];1557[label="Succ (Succ (primPlusNat xuu1120 xuu600000))",fontsize=16,color="green",shape="box"];1557 -> 1663[label="",style="dashed", color="green", weight=3]; 35.39/13.69 1558[label="Succ xuu600000",fontsize=16,color="green",shape="box"];1888[label="GT",fontsize=16,color="green",shape="box"];1889[label="xuu133",fontsize=16,color="green",shape="box"];1890[label="not False",fontsize=16,color="black",shape="box"];1890 -> 2052[label="",style="solid", color="black", weight=3]; 35.39/13.69 1891[label="not True",fontsize=16,color="black",shape="box"];1891 -> 2053[label="",style="solid", color="black", weight=3]; 35.39/13.69 1892[label="xuu4910",fontsize=16,color="green",shape="box"];1893[label="xuu5110",fontsize=16,color="green",shape="box"];1894[label="xuu4910",fontsize=16,color="green",shape="box"];1895[label="xuu5110",fontsize=16,color="green",shape="box"];1896[label="xuu4910",fontsize=16,color="green",shape="box"];1897[label="xuu5110",fontsize=16,color="green",shape="box"];1898[label="xuu4910",fontsize=16,color="green",shape="box"];1899[label="xuu5110",fontsize=16,color="green",shape="box"];1900[label="xuu4910",fontsize=16,color="green",shape="box"];1901[label="xuu5110",fontsize=16,color="green",shape="box"];1902[label="xuu4910",fontsize=16,color="green",shape="box"];1903[label="xuu5110",fontsize=16,color="green",shape="box"];1904[label="xuu4910",fontsize=16,color="green",shape="box"];1905[label="xuu5110",fontsize=16,color="green",shape="box"];1906[label="xuu4910",fontsize=16,color="green",shape="box"];1907[label="xuu5110",fontsize=16,color="green",shape="box"];1908[label="xuu4910",fontsize=16,color="green",shape="box"];1909[label="xuu5110",fontsize=16,color="green",shape="box"];1910[label="xuu4910",fontsize=16,color="green",shape="box"];1911[label="xuu5110",fontsize=16,color="green",shape="box"];1912[label="xuu4910",fontsize=16,color="green",shape="box"];1913[label="xuu5110",fontsize=16,color="green",shape="box"];1914[label="xuu4910",fontsize=16,color="green",shape="box"];1915[label="xuu5110",fontsize=16,color="green",shape="box"];1916[label="xuu4910",fontsize=16,color="green",shape="box"];1917[label="xuu5110",fontsize=16,color="green",shape="box"];1918[label="xuu4910",fontsize=16,color="green",shape="box"];1919[label="xuu5110",fontsize=16,color="green",shape="box"];1920[label="xuu4910",fontsize=16,color="green",shape="box"];1921[label="xuu5110",fontsize=16,color="green",shape="box"];1922[label="xuu4910",fontsize=16,color="green",shape="box"];1923[label="xuu5110",fontsize=16,color="green",shape="box"];1924[label="xuu4910",fontsize=16,color="green",shape="box"];1925[label="xuu5110",fontsize=16,color="green",shape="box"];1926[label="xuu4910",fontsize=16,color="green",shape="box"];1927[label="xuu5110",fontsize=16,color="green",shape="box"];1928[label="xuu4910",fontsize=16,color="green",shape="box"];1929[label="xuu5110",fontsize=16,color="green",shape="box"];1930[label="xuu4910",fontsize=16,color="green",shape="box"];1931[label="xuu5110",fontsize=16,color="green",shape="box"];1932[label="xuu4910",fontsize=16,color="green",shape="box"];1933[label="xuu5110",fontsize=16,color="green",shape="box"];1934[label="xuu4910",fontsize=16,color="green",shape="box"];1935[label="xuu5110",fontsize=16,color="green",shape="box"];1936[label="xuu4910",fontsize=16,color="green",shape="box"];1937[label="xuu5110",fontsize=16,color="green",shape="box"];1938[label="xuu4910",fontsize=16,color="green",shape="box"];1939[label="xuu5110",fontsize=16,color="green",shape="box"];1940[label="xuu4910",fontsize=16,color="green",shape="box"];1941[label="xuu5110",fontsize=16,color="green",shape="box"];1942[label="xuu4910",fontsize=16,color="green",shape="box"];1943[label="xuu5110",fontsize=16,color="green",shape="box"];1944[label="xuu4910",fontsize=16,color="green",shape="box"];1945[label="xuu5110",fontsize=16,color="green",shape="box"];1946[label="xuu4910",fontsize=16,color="green",shape="box"];1947[label="xuu5110",fontsize=16,color="green",shape="box"];1948[label="xuu4910",fontsize=16,color="green",shape="box"];1949[label="xuu5110",fontsize=16,color="green",shape="box"];1950[label="xuu4910",fontsize=16,color="green",shape="box"];1951[label="xuu5110",fontsize=16,color="green",shape="box"];1952[label="xuu4910",fontsize=16,color="green",shape="box"];1953[label="xuu5110",fontsize=16,color="green",shape="box"];1954[label="xuu4910",fontsize=16,color="green",shape="box"];1955[label="xuu5110",fontsize=16,color="green",shape="box"];1956[label="xuu4910",fontsize=16,color="green",shape="box"];1957[label="xuu5110",fontsize=16,color="green",shape="box"];1958[label="xuu4910",fontsize=16,color="green",shape="box"];1959[label="xuu5110",fontsize=16,color="green",shape="box"];1960[label="xuu4910",fontsize=16,color="green",shape="box"];1961[label="xuu5110",fontsize=16,color="green",shape="box"];1962[label="xuu4910",fontsize=16,color="green",shape="box"];1963[label="xuu5110",fontsize=16,color="green",shape="box"];1964[label="xuu4910",fontsize=16,color="green",shape="box"];1965[label="xuu5110",fontsize=16,color="green",shape="box"];1966[label="xuu4910",fontsize=16,color="green",shape="box"];1967[label="xuu5110",fontsize=16,color="green",shape="box"];1968[label="xuu4910",fontsize=16,color="green",shape="box"];1969[label="xuu5110",fontsize=16,color="green",shape="box"];1970[label="xuu4910",fontsize=16,color="green",shape="box"];1971[label="xuu5110",fontsize=16,color="green",shape="box"];1972[label="xuu4910",fontsize=16,color="green",shape="box"];1973[label="xuu5110",fontsize=16,color="green",shape="box"];1974[label="xuu4910",fontsize=16,color="green",shape="box"];1975[label="xuu5110",fontsize=16,color="green",shape="box"];1985 -> 1481[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1985[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1985 -> 2054[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1985 -> 2055[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1986 -> 1482[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1986[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1986 -> 2056[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1986 -> 2057[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1987 -> 1483[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1987[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1987 -> 2058[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1987 -> 2059[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1988 -> 1484[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1988[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1988 -> 2060[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1988 -> 2061[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1989 -> 1485[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1989[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1989 -> 2062[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1989 -> 2063[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1990 -> 1486[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1990[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1990 -> 2064[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1990 -> 2065[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1991 -> 1487[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1991[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1991 -> 2066[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1991 -> 2067[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1992 -> 1488[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1992[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1992 -> 2068[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1992 -> 2069[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1993 -> 1489[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1993[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1993 -> 2070[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1993 -> 2071[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1994 -> 1490[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1994[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1994 -> 2072[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1994 -> 2073[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1995 -> 1491[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1995[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1995 -> 2074[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1995 -> 2075[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1996 -> 1492[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1996[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1996 -> 2076[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1996 -> 2077[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1997 -> 1493[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1997[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1997 -> 2078[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1997 -> 2079[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1998 -> 1494[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1998[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];1998 -> 2080[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1998 -> 2081[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1999[label="xuu4911 <= xuu5111",fontsize=16,color="blue",shape="box"];3380[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1999 -> 3380[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3380 -> 2082[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3381[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1999 -> 3381[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3381 -> 2083[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3382[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1999 -> 3382[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3382 -> 2084[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3383[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1999 -> 3383[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3383 -> 2085[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3384[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1999 -> 3384[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3384 -> 2086[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3385[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1999 -> 3385[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3385 -> 2087[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3386[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1999 -> 3386[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3386 -> 2088[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3387[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1999 -> 3387[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3387 -> 2089[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3388[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1999 -> 3388[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3388 -> 2090[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3389[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1999 -> 3389[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3389 -> 2091[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3390[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1999 -> 3390[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3390 -> 2092[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3391[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1999 -> 3391[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3391 -> 2093[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3392[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1999 -> 3392[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3392 -> 2094[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3393[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1999 -> 3393[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3393 -> 2095[label="",style="solid", color="blue", weight=3]; 35.39/13.69 2000[label="xuu4910 == xuu5110",fontsize=16,color="blue",shape="box"];3394[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2000 -> 3394[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3394 -> 2096[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3395[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2000 -> 3395[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3395 -> 2097[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3396[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2000 -> 3396[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3396 -> 2098[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3397[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2000 -> 3397[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3397 -> 2099[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3398[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2000 -> 3398[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3398 -> 2100[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3399[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2000 -> 3399[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3399 -> 2101[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3400[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2000 -> 3400[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3400 -> 2102[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3401[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2000 -> 3401[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3401 -> 2103[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3402[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2000 -> 3402[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3402 -> 2104[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3403[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2000 -> 3403[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3403 -> 2105[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3404[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2000 -> 3404[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3404 -> 2106[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3405[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2000 -> 3405[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3405 -> 2107[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3406[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2000 -> 3406[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3406 -> 2108[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3407[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2000 -> 3407[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3407 -> 2109[label="",style="solid", color="blue", weight=3]; 35.39/13.69 2001[label="False || xuu145",fontsize=16,color="black",shape="box"];2001 -> 2110[label="",style="solid", color="black", weight=3]; 35.39/13.69 2002[label="True || xuu145",fontsize=16,color="black",shape="box"];2002 -> 2111[label="",style="solid", color="black", weight=3]; 35.39/13.69 2003 -> 1481[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2003[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];2003 -> 2112[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2003 -> 2113[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2004 -> 1482[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2004[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];2004 -> 2114[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2004 -> 2115[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2005 -> 1483[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2005[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];2005 -> 2116[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2005 -> 2117[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2006 -> 1484[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2006[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];2006 -> 2118[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2006 -> 2119[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2007 -> 1485[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2007[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];2007 -> 2120[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2007 -> 2121[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2008 -> 1486[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2008[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];2008 -> 2122[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2008 -> 2123[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2009 -> 1487[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2009[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];2009 -> 2124[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2009 -> 2125[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2010 -> 1488[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2010[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];2010 -> 2126[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2010 -> 2127[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2011 -> 1489[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2011[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];2011 -> 2128[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2011 -> 2129[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2012 -> 1490[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2012[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];2012 -> 2130[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2012 -> 2131[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2013 -> 1491[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2013[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];2013 -> 2132[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2013 -> 2133[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2014 -> 1492[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2014[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];2014 -> 2134[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2014 -> 2135[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2015 -> 1493[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2015[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];2015 -> 2136[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2015 -> 2137[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2016 -> 1494[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2016[label="xuu4910 < xuu5110",fontsize=16,color="magenta"];2016 -> 2138[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2016 -> 2139[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2017 -> 1978[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2017[label="xuu4911 < xuu5111 || xuu4911 == xuu5111 && xuu4912 <= xuu5112",fontsize=16,color="magenta"];2017 -> 2140[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2017 -> 2141[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2018[label="xuu4910 == xuu5110",fontsize=16,color="blue",shape="box"];3408[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3408[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3408 -> 2142[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3409[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3409[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3409 -> 2143[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3410[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3410[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3410 -> 2144[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3411[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3411[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3411 -> 2145[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3412[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3412[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3412 -> 2146[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3413[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3413[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3413 -> 2147[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3414[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3414[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3414 -> 2148[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3415[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3415[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3415 -> 2149[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3416[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3416[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3416 -> 2150[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3417[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3417[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3417 -> 2151[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3418[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3418[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3418 -> 2152[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3419[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3419[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3419 -> 2153[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3420[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3420[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3420 -> 2154[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3421[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 3421[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3421 -> 2155[label="",style="solid", color="blue", weight=3]; 35.39/13.69 2019[label="xuu510",fontsize=16,color="green",shape="box"];2020[label="xuu490",fontsize=16,color="green",shape="box"];2021[label="compare2 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];2021 -> 2156[label="",style="solid", color="black", weight=3]; 35.39/13.69 2022[label="compare2 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2022 -> 2157[label="",style="solid", color="black", weight=3]; 35.39/13.69 2024 -> 1625[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2024[label="compare xuu4901 xuu5101",fontsize=16,color="magenta"];2024 -> 2158[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2024 -> 2159[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2023[label="primCompAux xuu4900 xuu5100 xuu146",fontsize=16,color="black",shape="triangle"];2023 -> 2160[label="",style="solid", color="black", weight=3]; 35.39/13.69 2025[label="xuu5100",fontsize=16,color="green",shape="box"];2026[label="xuu4900",fontsize=16,color="green",shape="box"];2027[label="xuu510",fontsize=16,color="green",shape="box"];2028[label="xuu490",fontsize=16,color="green",shape="box"];2029[label="compare2 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];2029 -> 2178[label="",style="solid", color="black", weight=3]; 35.39/13.69 2030[label="compare2 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2030 -> 2179[label="",style="solid", color="black", weight=3]; 35.39/13.69 2031[label="xuu510",fontsize=16,color="green",shape="box"];2032[label="xuu490",fontsize=16,color="green",shape="box"];2033[label="compare2 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];2033 -> 2180[label="",style="solid", color="black", weight=3]; 35.39/13.69 2034[label="compare2 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2034 -> 2181[label="",style="solid", color="black", weight=3]; 35.39/13.69 2035[label="primCmpDouble (Double xuu4900 (Pos xuu49010)) (Double xuu5100 xuu5101)",fontsize=16,color="burlywood",shape="box"];3422[label="xuu5101/Pos xuu51010",fontsize=10,color="white",style="solid",shape="box"];2035 -> 3422[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3422 -> 2182[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3423[label="xuu5101/Neg xuu51010",fontsize=10,color="white",style="solid",shape="box"];2035 -> 3423[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3423 -> 2183[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 2036[label="primCmpDouble (Double xuu4900 (Neg xuu49010)) (Double xuu5100 xuu5101)",fontsize=16,color="burlywood",shape="box"];3424[label="xuu5101/Pos xuu51010",fontsize=10,color="white",style="solid",shape="box"];2036 -> 3424[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3424 -> 2184[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3425[label="xuu5101/Neg xuu51010",fontsize=10,color="white",style="solid",shape="box"];2036 -> 3425[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3425 -> 2185[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 2037[label="primCmpFloat (Float xuu4900 (Pos xuu49010)) (Float xuu5100 xuu5101)",fontsize=16,color="burlywood",shape="box"];3426[label="xuu5101/Pos xuu51010",fontsize=10,color="white",style="solid",shape="box"];2037 -> 3426[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3426 -> 2186[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3427[label="xuu5101/Neg xuu51010",fontsize=10,color="white",style="solid",shape="box"];2037 -> 3427[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3427 -> 2187[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 2038[label="primCmpFloat (Float xuu4900 (Neg xuu49010)) (Float xuu5100 xuu5101)",fontsize=16,color="burlywood",shape="box"];3428[label="xuu5101/Pos xuu51010",fontsize=10,color="white",style="solid",shape="box"];2038 -> 3428[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3428 -> 2188[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3429[label="xuu5101/Neg xuu51010",fontsize=10,color="white",style="solid",shape="box"];2038 -> 3429[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3429 -> 2189[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 2039 -> 1760[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2039[label="primCmpNat xuu4900 xuu5100",fontsize=16,color="magenta"];2039 -> 2190[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2039 -> 2191[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2040[label="xuu510",fontsize=16,color="green",shape="box"];2041[label="xuu490",fontsize=16,color="green",shape="box"];2042 -> 1050[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2042[label="compare (xuu4900 * xuu5101) (xuu5100 * xuu4901)",fontsize=16,color="magenta"];2042 -> 2192[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2042 -> 2193[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2043 -> 1627[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2043[label="compare (xuu4900 * xuu5101) (xuu5100 * xuu4901)",fontsize=16,color="magenta"];2043 -> 2194[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2043 -> 2195[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2044[label="xuu510",fontsize=16,color="green",shape="box"];2045[label="xuu490",fontsize=16,color="green",shape="box"];2046[label="compare2 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];2046 -> 2196[label="",style="solid", color="black", weight=3]; 35.39/13.69 2047[label="compare2 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2047 -> 2197[label="",style="solid", color="black", weight=3]; 35.39/13.69 2048[label="xuu510",fontsize=16,color="green",shape="box"];2049[label="xuu490",fontsize=16,color="green",shape="box"];2050[label="compare2 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];2050 -> 2198[label="",style="solid", color="black", weight=3]; 35.39/13.69 2051[label="compare2 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2051 -> 2199[label="",style="solid", color="black", weight=3]; 35.39/13.69 1553[label="Pos (primPlusNat xuu4120 xuu1080)",fontsize=16,color="green",shape="box"];1553 -> 1657[label="",style="dashed", color="green", weight=3]; 35.39/13.69 1554[label="primMinusNat xuu4120 xuu1080",fontsize=16,color="burlywood",shape="triangle"];3430[label="xuu4120/Succ xuu41200",fontsize=10,color="white",style="solid",shape="box"];1554 -> 3430[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3430 -> 1658[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3431[label="xuu4120/Zero",fontsize=10,color="white",style="solid",shape="box"];1554 -> 3431[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3431 -> 1659[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1555 -> 1554[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1555[label="primMinusNat xuu1080 xuu4120",fontsize=16,color="magenta"];1555 -> 1660[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1555 -> 1661[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1556[label="Neg (primPlusNat xuu4120 xuu1080)",fontsize=16,color="green",shape="box"];1556 -> 1662[label="",style="dashed", color="green", weight=3]; 35.39/13.69 1559[label="primCmpNat (Succ xuu4900) xuu510",fontsize=16,color="burlywood",shape="triangle"];3432[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1559 -> 3432[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3432 -> 1664[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3433[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1559 -> 3433[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3433 -> 1665[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1560[label="GT",fontsize=16,color="green",shape="box"];1561[label="primCmpInt (Pos Zero) (Pos (Succ xuu5100))",fontsize=16,color="black",shape="box"];1561 -> 1666[label="",style="solid", color="black", weight=3]; 35.39/13.69 1562[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1562 -> 1667[label="",style="solid", color="black", weight=3]; 35.39/13.69 1563[label="primCmpInt (Pos Zero) (Neg (Succ xuu5100))",fontsize=16,color="black",shape="box"];1563 -> 1668[label="",style="solid", color="black", weight=3]; 35.39/13.69 1564[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1564 -> 1669[label="",style="solid", color="black", weight=3]; 35.39/13.69 1565[label="LT",fontsize=16,color="green",shape="box"];1566[label="primCmpNat xuu510 (Succ xuu4900)",fontsize=16,color="burlywood",shape="triangle"];3434[label="xuu510/Succ xuu5100",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3434[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3434 -> 1670[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3435[label="xuu510/Zero",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3435[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3435 -> 1671[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1567[label="primCmpInt (Neg Zero) (Pos (Succ xuu5100))",fontsize=16,color="black",shape="box"];1567 -> 1672[label="",style="solid", color="black", weight=3]; 35.39/13.69 1568[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1568 -> 1673[label="",style="solid", color="black", weight=3]; 35.39/13.69 1569[label="primCmpInt (Neg Zero) (Neg (Succ xuu5100))",fontsize=16,color="black",shape="box"];1569 -> 1674[label="",style="solid", color="black", weight=3]; 35.39/13.69 1570[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1570 -> 1675[label="",style="solid", color="black", weight=3]; 35.39/13.69 1572 -> 1481[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1572[label="FiniteMap.sizeFM xuu414 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu413",fontsize=16,color="magenta"];1572 -> 1676[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1572 -> 1677[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1571[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24 xuu410 xuu411 xuu412 xuu413 xuu414 xuu129",fontsize=16,color="burlywood",shape="triangle"];3436[label="xuu129/False",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3436[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3436 -> 1678[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3437[label="xuu129/True",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3437[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3437 -> 1679[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1747[label="xuu244",fontsize=16,color="green",shape="box"];1748[label="FiniteMap.mkBalBranch6MkBalBranch00 (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu240 xuu241 xuu242 xuu243 xuu244 True",fontsize=16,color="black",shape="box"];1748 -> 2161[label="",style="solid", color="black", weight=3]; 35.39/13.69 1749[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu240 xuu241 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243) xuu244",fontsize=16,color="black",shape="box"];1749 -> 2162[label="",style="solid", color="black", weight=3]; 35.39/13.69 2869 -> 1233[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2869[label="FiniteMap.sizeFM xuu236",fontsize=16,color="magenta"];2869 -> 2870[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1663 -> 1657[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1663[label="primPlusNat xuu1120 xuu600000",fontsize=16,color="magenta"];1663 -> 1758[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1663 -> 1759[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2052[label="True",fontsize=16,color="green",shape="box"];2053[label="False",fontsize=16,color="green",shape="box"];2054[label="xuu5110",fontsize=16,color="green",shape="box"];2055[label="xuu4910",fontsize=16,color="green",shape="box"];2056[label="xuu5110",fontsize=16,color="green",shape="box"];2057[label="xuu4910",fontsize=16,color="green",shape="box"];2058[label="xuu5110",fontsize=16,color="green",shape="box"];2059[label="xuu4910",fontsize=16,color="green",shape="box"];2060[label="xuu5110",fontsize=16,color="green",shape="box"];2061[label="xuu4910",fontsize=16,color="green",shape="box"];2062[label="xuu5110",fontsize=16,color="green",shape="box"];2063[label="xuu4910",fontsize=16,color="green",shape="box"];2064[label="xuu5110",fontsize=16,color="green",shape="box"];2065[label="xuu4910",fontsize=16,color="green",shape="box"];2066[label="xuu5110",fontsize=16,color="green",shape="box"];2067[label="xuu4910",fontsize=16,color="green",shape="box"];2068[label="xuu5110",fontsize=16,color="green",shape="box"];2069[label="xuu4910",fontsize=16,color="green",shape="box"];2070[label="xuu5110",fontsize=16,color="green",shape="box"];2071[label="xuu4910",fontsize=16,color="green",shape="box"];2072[label="xuu5110",fontsize=16,color="green",shape="box"];2073[label="xuu4910",fontsize=16,color="green",shape="box"];2074[label="xuu5110",fontsize=16,color="green",shape="box"];2075[label="xuu4910",fontsize=16,color="green",shape="box"];2076[label="xuu5110",fontsize=16,color="green",shape="box"];2077[label="xuu4910",fontsize=16,color="green",shape="box"];2078[label="xuu5110",fontsize=16,color="green",shape="box"];2079[label="xuu4910",fontsize=16,color="green",shape="box"];2080[label="xuu5110",fontsize=16,color="green",shape="box"];2081[label="xuu4910",fontsize=16,color="green",shape="box"];2082 -> 1504[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2082[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2082 -> 2200[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2082 -> 2201[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2083 -> 1505[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2083[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2083 -> 2202[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2083 -> 2203[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2084 -> 1506[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2084[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2084 -> 2204[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2084 -> 2205[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2085 -> 1507[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2085[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2085 -> 2206[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2085 -> 2207[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2086 -> 1508[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2086[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2086 -> 2208[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2086 -> 2209[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2087 -> 1509[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2087[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2087 -> 2210[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2087 -> 2211[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2088 -> 1510[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2088[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2088 -> 2212[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2088 -> 2213[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2089 -> 1511[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2089[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2089 -> 2214[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2089 -> 2215[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2090 -> 1512[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2090[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2090 -> 2216[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2090 -> 2217[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2091 -> 1513[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2091[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2091 -> 2218[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2091 -> 2219[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2092 -> 1514[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2092[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2092 -> 2220[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2092 -> 2221[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2093 -> 1515[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2093[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2093 -> 2222[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2093 -> 2223[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2094 -> 1516[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2094[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2094 -> 2224[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2094 -> 2225[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2095 -> 1517[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2095[label="xuu4911 <= xuu5111",fontsize=16,color="magenta"];2095 -> 2226[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2095 -> 2227[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2096 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2096[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2096 -> 2228[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2096 -> 2229[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2097 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2097[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2097 -> 2230[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2097 -> 2231[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2098 -> 168[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2098[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2098 -> 2232[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2098 -> 2233[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2099 -> 163[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2099[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2099 -> 2234[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2099 -> 2235[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2100 -> 157[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2100[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2100 -> 2236[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2100 -> 2237[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2101 -> 166[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2101[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2101 -> 2238[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2101 -> 2239[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2102 -> 161[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2102[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2102 -> 2240[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2102 -> 2241[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2103 -> 159[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2103[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2103 -> 2242[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2103 -> 2243[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2104 -> 167[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2104[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2104 -> 2244[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2104 -> 2245[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2105 -> 164[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2105[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2105 -> 2246[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2105 -> 2247[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2106 -> 162[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2106[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2106 -> 2248[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2106 -> 2249[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2107 -> 165[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2107[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2107 -> 2250[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2107 -> 2251[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2108 -> 160[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2108[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2108 -> 2252[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2108 -> 2253[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2109 -> 158[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2109[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2109 -> 2254[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2109 -> 2255[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2110[label="xuu145",fontsize=16,color="green",shape="box"];2111[label="True",fontsize=16,color="green",shape="box"];2112[label="xuu5110",fontsize=16,color="green",shape="box"];2113[label="xuu4910",fontsize=16,color="green",shape="box"];2114[label="xuu5110",fontsize=16,color="green",shape="box"];2115[label="xuu4910",fontsize=16,color="green",shape="box"];2116[label="xuu5110",fontsize=16,color="green",shape="box"];2117[label="xuu4910",fontsize=16,color="green",shape="box"];2118[label="xuu5110",fontsize=16,color="green",shape="box"];2119[label="xuu4910",fontsize=16,color="green",shape="box"];2120[label="xuu5110",fontsize=16,color="green",shape="box"];2121[label="xuu4910",fontsize=16,color="green",shape="box"];2122[label="xuu5110",fontsize=16,color="green",shape="box"];2123[label="xuu4910",fontsize=16,color="green",shape="box"];2124[label="xuu5110",fontsize=16,color="green",shape="box"];2125[label="xuu4910",fontsize=16,color="green",shape="box"];2126[label="xuu5110",fontsize=16,color="green",shape="box"];2127[label="xuu4910",fontsize=16,color="green",shape="box"];2128[label="xuu5110",fontsize=16,color="green",shape="box"];2129[label="xuu4910",fontsize=16,color="green",shape="box"];2130[label="xuu5110",fontsize=16,color="green",shape="box"];2131[label="xuu4910",fontsize=16,color="green",shape="box"];2132[label="xuu5110",fontsize=16,color="green",shape="box"];2133[label="xuu4910",fontsize=16,color="green",shape="box"];2134[label="xuu5110",fontsize=16,color="green",shape="box"];2135[label="xuu4910",fontsize=16,color="green",shape="box"];2136[label="xuu5110",fontsize=16,color="green",shape="box"];2137[label="xuu4910",fontsize=16,color="green",shape="box"];2138[label="xuu5110",fontsize=16,color="green",shape="box"];2139[label="xuu4910",fontsize=16,color="green",shape="box"];2140[label="xuu4911 < xuu5111",fontsize=16,color="blue",shape="box"];3438[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3438[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3438 -> 2256[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3439[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3439[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3439 -> 2257[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3440[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3440[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3440 -> 2258[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3441[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3441[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3441 -> 2259[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3442[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3442[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3442 -> 2260[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3443[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3443[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3443 -> 2261[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3444[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3444[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3444 -> 2262[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3445[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3445[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3445 -> 2263[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3446[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3446[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3446 -> 2264[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3447[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3447[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3447 -> 2265[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3448[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3448[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3448 -> 2266[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3449[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3449[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3449 -> 2267[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3450[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3450[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3450 -> 2268[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3451[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3451[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3451 -> 2269[label="",style="solid", color="blue", weight=3]; 35.39/13.69 2141 -> 439[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2141[label="xuu4911 == xuu5111 && xuu4912 <= xuu5112",fontsize=16,color="magenta"];2141 -> 2270[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2141 -> 2271[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2142 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2142[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2142 -> 2272[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2142 -> 2273[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2143 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2143[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2143 -> 2274[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2143 -> 2275[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2144 -> 168[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2144[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2144 -> 2276[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2144 -> 2277[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2145 -> 163[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2145[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2145 -> 2278[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2145 -> 2279[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2146 -> 157[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2146[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2146 -> 2280[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2146 -> 2281[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2147 -> 166[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2147[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2147 -> 2282[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2147 -> 2283[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2148 -> 161[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2148[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2148 -> 2284[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2148 -> 2285[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2149 -> 159[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2149[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2149 -> 2286[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2149 -> 2287[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2150 -> 167[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2150[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2150 -> 2288[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2150 -> 2289[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2151 -> 164[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2151[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2151 -> 2290[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2151 -> 2291[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2152 -> 162[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2152[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2152 -> 2292[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2152 -> 2293[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2153 -> 165[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2153[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2153 -> 2294[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2153 -> 2295[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2154 -> 160[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2154[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2154 -> 2296[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2154 -> 2297[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2155 -> 158[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2155[label="xuu4910 == xuu5110",fontsize=16,color="magenta"];2155 -> 2298[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2155 -> 2299[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2156 -> 2300[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2156[label="compare1 xuu490 xuu510 (xuu490 <= xuu510)",fontsize=16,color="magenta"];2156 -> 2301[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2157[label="EQ",fontsize=16,color="green",shape="box"];2158[label="xuu5101",fontsize=16,color="green",shape="box"];2159[label="xuu4901",fontsize=16,color="green",shape="box"];2160 -> 2302[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2160[label="primCompAux0 xuu146 (compare xuu4900 xuu5100)",fontsize=16,color="magenta"];2160 -> 2303[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2160 -> 2304[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2178 -> 2305[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2178[label="compare1 xuu490 xuu510 (xuu490 <= xuu510)",fontsize=16,color="magenta"];2178 -> 2306[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2179[label="EQ",fontsize=16,color="green",shape="box"];2180 -> 2307[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2180[label="compare1 xuu490 xuu510 (xuu490 <= xuu510)",fontsize=16,color="magenta"];2180 -> 2308[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2181[label="EQ",fontsize=16,color="green",shape="box"];2182[label="primCmpDouble (Double xuu4900 (Pos xuu49010)) (Double xuu5100 (Pos xuu51010))",fontsize=16,color="black",shape="box"];2182 -> 2309[label="",style="solid", color="black", weight=3]; 35.39/13.69 2183[label="primCmpDouble (Double xuu4900 (Pos xuu49010)) (Double xuu5100 (Neg xuu51010))",fontsize=16,color="black",shape="box"];2183 -> 2310[label="",style="solid", color="black", weight=3]; 35.39/13.69 2184[label="primCmpDouble (Double xuu4900 (Neg xuu49010)) (Double xuu5100 (Pos xuu51010))",fontsize=16,color="black",shape="box"];2184 -> 2311[label="",style="solid", color="black", weight=3]; 35.39/13.69 2185[label="primCmpDouble (Double xuu4900 (Neg xuu49010)) (Double xuu5100 (Neg xuu51010))",fontsize=16,color="black",shape="box"];2185 -> 2312[label="",style="solid", color="black", weight=3]; 35.39/13.69 2186[label="primCmpFloat (Float xuu4900 (Pos xuu49010)) (Float xuu5100 (Pos xuu51010))",fontsize=16,color="black",shape="box"];2186 -> 2313[label="",style="solid", color="black", weight=3]; 35.39/13.69 2187[label="primCmpFloat (Float xuu4900 (Pos xuu49010)) (Float xuu5100 (Neg xuu51010))",fontsize=16,color="black",shape="box"];2187 -> 2314[label="",style="solid", color="black", weight=3]; 35.39/13.69 2188[label="primCmpFloat (Float xuu4900 (Neg xuu49010)) (Float xuu5100 (Pos xuu51010))",fontsize=16,color="black",shape="box"];2188 -> 2315[label="",style="solid", color="black", weight=3]; 35.39/13.69 2189[label="primCmpFloat (Float xuu4900 (Neg xuu49010)) (Float xuu5100 (Neg xuu51010))",fontsize=16,color="black",shape="box"];2189 -> 2316[label="",style="solid", color="black", weight=3]; 35.39/13.69 2190[label="xuu5100",fontsize=16,color="green",shape="box"];2191[label="xuu4900",fontsize=16,color="green",shape="box"];1760[label="primCmpNat xuu4900 xuu5100",fontsize=16,color="burlywood",shape="triangle"];3452[label="xuu4900/Succ xuu49000",fontsize=10,color="white",style="solid",shape="box"];1760 -> 3452[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3452 -> 2171[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3453[label="xuu4900/Zero",fontsize=10,color="white",style="solid",shape="box"];1760 -> 3453[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3453 -> 2172[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 2192 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2192[label="xuu5100 * xuu4901",fontsize=16,color="magenta"];2192 -> 2317[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2192 -> 2318[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2193 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2193[label="xuu4900 * xuu5101",fontsize=16,color="magenta"];2193 -> 2319[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2193 -> 2320[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2194[label="xuu5100 * xuu4901",fontsize=16,color="burlywood",shape="triangle"];3454[label="xuu5100/Integer xuu51000",fontsize=10,color="white",style="solid",shape="box"];2194 -> 3454[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3454 -> 2321[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 2195 -> 2194[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2195[label="xuu4900 * xuu5101",fontsize=16,color="magenta"];2195 -> 2322[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2195 -> 2323[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2196 -> 2324[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2196[label="compare1 xuu490 xuu510 (xuu490 <= xuu510)",fontsize=16,color="magenta"];2196 -> 2325[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2197[label="EQ",fontsize=16,color="green",shape="box"];2198 -> 2326[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2198[label="compare1 xuu490 xuu510 (xuu490 <= xuu510)",fontsize=16,color="magenta"];2198 -> 2327[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2199[label="EQ",fontsize=16,color="green",shape="box"];1657[label="primPlusNat xuu4120 xuu1080",fontsize=16,color="burlywood",shape="triangle"];3455[label="xuu4120/Succ xuu41200",fontsize=10,color="white",style="solid",shape="box"];1657 -> 3455[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3455 -> 1750[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3456[label="xuu4120/Zero",fontsize=10,color="white",style="solid",shape="box"];1657 -> 3456[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3456 -> 1751[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1658[label="primMinusNat (Succ xuu41200) xuu1080",fontsize=16,color="burlywood",shape="box"];3457[label="xuu1080/Succ xuu10800",fontsize=10,color="white",style="solid",shape="box"];1658 -> 3457[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3457 -> 1752[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3458[label="xuu1080/Zero",fontsize=10,color="white",style="solid",shape="box"];1658 -> 3458[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3458 -> 1753[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1659[label="primMinusNat Zero xuu1080",fontsize=16,color="burlywood",shape="box"];3459[label="xuu1080/Succ xuu10800",fontsize=10,color="white",style="solid",shape="box"];1659 -> 3459[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3459 -> 1754[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3460[label="xuu1080/Zero",fontsize=10,color="white",style="solid",shape="box"];1659 -> 3460[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3460 -> 1755[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 1660[label="xuu4120",fontsize=16,color="green",shape="box"];1661[label="xuu1080",fontsize=16,color="green",shape="box"];1662 -> 1657[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1662[label="primPlusNat xuu4120 xuu1080",fontsize=16,color="magenta"];1662 -> 1756[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1662 -> 1757[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1664[label="primCmpNat (Succ xuu4900) (Succ xuu5100)",fontsize=16,color="black",shape="box"];1664 -> 1760[label="",style="solid", color="black", weight=3]; 35.39/13.69 1665[label="primCmpNat (Succ xuu4900) Zero",fontsize=16,color="black",shape="box"];1665 -> 1761[label="",style="solid", color="black", weight=3]; 35.39/13.69 1666 -> 1566[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1666[label="primCmpNat Zero (Succ xuu5100)",fontsize=16,color="magenta"];1666 -> 1762[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1666 -> 1763[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1667[label="EQ",fontsize=16,color="green",shape="box"];1668[label="GT",fontsize=16,color="green",shape="box"];1669[label="EQ",fontsize=16,color="green",shape="box"];1670[label="primCmpNat (Succ xuu5100) (Succ xuu4900)",fontsize=16,color="black",shape="box"];1670 -> 1764[label="",style="solid", color="black", weight=3]; 35.39/13.69 1671[label="primCmpNat Zero (Succ xuu4900)",fontsize=16,color="black",shape="box"];1671 -> 1765[label="",style="solid", color="black", weight=3]; 35.39/13.69 1672[label="LT",fontsize=16,color="green",shape="box"];1673[label="EQ",fontsize=16,color="green",shape="box"];1674 -> 1559[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1674[label="primCmpNat (Succ xuu5100) Zero",fontsize=16,color="magenta"];1674 -> 1766[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1674 -> 1767[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1675[label="EQ",fontsize=16,color="green",shape="box"];1676 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1676[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu413",fontsize=16,color="magenta"];1676 -> 1768[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1676 -> 1769[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1677 -> 1233[label="",style="dashed", color="red", weight=0]; 35.39/13.69 1677[label="FiniteMap.sizeFM xuu414",fontsize=16,color="magenta"];1677 -> 1770[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 1678[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24 xuu410 xuu411 xuu412 xuu413 xuu414 False",fontsize=16,color="black",shape="box"];1678 -> 1771[label="",style="solid", color="black", weight=3]; 35.39/13.69 1679[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24 xuu410 xuu411 xuu412 xuu413 xuu414 True",fontsize=16,color="black",shape="box"];1679 -> 1772[label="",style="solid", color="black", weight=3]; 35.39/13.69 2161[label="FiniteMap.mkBalBranch6Double_L (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 xuu243 xuu244)",fontsize=16,color="burlywood",shape="box"];3461[label="xuu243/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2161 -> 3461[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3461 -> 2328[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 3462[label="xuu243/FiniteMap.Branch xuu2430 xuu2431 xuu2432 xuu2433 xuu2434",fontsize=10,color="white",style="solid",shape="box"];2161 -> 3462[label="",style="solid", color="burlywood", weight=9]; 35.39/13.69 3462 -> 2329[label="",style="solid", color="burlywood", weight=3]; 35.39/13.69 2162[label="FiniteMap.mkBranchResult xuu240 xuu241 xuu244 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243)",fontsize=16,color="black",shape="box"];2162 -> 2330[label="",style="solid", color="black", weight=3]; 35.39/13.69 2870[label="xuu236",fontsize=16,color="green",shape="box"];1758[label="xuu600000",fontsize=16,color="green",shape="box"];1759[label="xuu1120",fontsize=16,color="green",shape="box"];2200[label="xuu4911",fontsize=16,color="green",shape="box"];2201[label="xuu5111",fontsize=16,color="green",shape="box"];2202[label="xuu4911",fontsize=16,color="green",shape="box"];2203[label="xuu5111",fontsize=16,color="green",shape="box"];2204[label="xuu4911",fontsize=16,color="green",shape="box"];2205[label="xuu5111",fontsize=16,color="green",shape="box"];2206[label="xuu4911",fontsize=16,color="green",shape="box"];2207[label="xuu5111",fontsize=16,color="green",shape="box"];2208[label="xuu4911",fontsize=16,color="green",shape="box"];2209[label="xuu5111",fontsize=16,color="green",shape="box"];2210[label="xuu4911",fontsize=16,color="green",shape="box"];2211[label="xuu5111",fontsize=16,color="green",shape="box"];2212[label="xuu4911",fontsize=16,color="green",shape="box"];2213[label="xuu5111",fontsize=16,color="green",shape="box"];2214[label="xuu4911",fontsize=16,color="green",shape="box"];2215[label="xuu5111",fontsize=16,color="green",shape="box"];2216[label="xuu4911",fontsize=16,color="green",shape="box"];2217[label="xuu5111",fontsize=16,color="green",shape="box"];2218[label="xuu4911",fontsize=16,color="green",shape="box"];2219[label="xuu5111",fontsize=16,color="green",shape="box"];2220[label="xuu4911",fontsize=16,color="green",shape="box"];2221[label="xuu5111",fontsize=16,color="green",shape="box"];2222[label="xuu4911",fontsize=16,color="green",shape="box"];2223[label="xuu5111",fontsize=16,color="green",shape="box"];2224[label="xuu4911",fontsize=16,color="green",shape="box"];2225[label="xuu5111",fontsize=16,color="green",shape="box"];2226[label="xuu4911",fontsize=16,color="green",shape="box"];2227[label="xuu5111",fontsize=16,color="green",shape="box"];2228[label="xuu5110",fontsize=16,color="green",shape="box"];2229[label="xuu4910",fontsize=16,color="green",shape="box"];2230[label="xuu5110",fontsize=16,color="green",shape="box"];2231[label="xuu4910",fontsize=16,color="green",shape="box"];2232[label="xuu5110",fontsize=16,color="green",shape="box"];2233[label="xuu4910",fontsize=16,color="green",shape="box"];2234[label="xuu5110",fontsize=16,color="green",shape="box"];2235[label="xuu4910",fontsize=16,color="green",shape="box"];2236[label="xuu5110",fontsize=16,color="green",shape="box"];2237[label="xuu4910",fontsize=16,color="green",shape="box"];2238[label="xuu5110",fontsize=16,color="green",shape="box"];2239[label="xuu4910",fontsize=16,color="green",shape="box"];2240[label="xuu5110",fontsize=16,color="green",shape="box"];2241[label="xuu4910",fontsize=16,color="green",shape="box"];2242[label="xuu5110",fontsize=16,color="green",shape="box"];2243[label="xuu4910",fontsize=16,color="green",shape="box"];2244[label="xuu5110",fontsize=16,color="green",shape="box"];2245[label="xuu4910",fontsize=16,color="green",shape="box"];2246[label="xuu5110",fontsize=16,color="green",shape="box"];2247[label="xuu4910",fontsize=16,color="green",shape="box"];2248[label="xuu5110",fontsize=16,color="green",shape="box"];2249[label="xuu4910",fontsize=16,color="green",shape="box"];2250[label="xuu5110",fontsize=16,color="green",shape="box"];2251[label="xuu4910",fontsize=16,color="green",shape="box"];2252[label="xuu5110",fontsize=16,color="green",shape="box"];2253[label="xuu4910",fontsize=16,color="green",shape="box"];2254[label="xuu5110",fontsize=16,color="green",shape="box"];2255[label="xuu4910",fontsize=16,color="green",shape="box"];2256 -> 1481[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2256[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2256 -> 2331[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2256 -> 2332[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2257 -> 1482[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2257[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2257 -> 2333[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2257 -> 2334[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2258 -> 1483[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2258[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2258 -> 2335[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2258 -> 2336[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2259 -> 1484[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2259[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2259 -> 2337[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2259 -> 2338[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2260 -> 1485[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2260[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2260 -> 2339[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2260 -> 2340[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2261 -> 1486[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2261[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2261 -> 2341[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2261 -> 2342[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2262 -> 1487[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2262[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2262 -> 2343[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2262 -> 2344[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2263 -> 1488[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2263[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2263 -> 2345[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2263 -> 2346[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2264 -> 1489[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2264[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2264 -> 2347[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2264 -> 2348[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2265 -> 1490[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2265[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2265 -> 2349[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2265 -> 2350[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2266 -> 1491[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2266[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2266 -> 2351[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2266 -> 2352[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2267 -> 1492[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2267[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2267 -> 2353[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2267 -> 2354[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2268 -> 1493[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2268[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2268 -> 2355[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2268 -> 2356[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2269 -> 1494[label="",style="dashed", color="red", weight=0]; 35.39/13.69 2269[label="xuu4911 < xuu5111",fontsize=16,color="magenta"];2269 -> 2357[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2269 -> 2358[label="",style="dashed", color="magenta", weight=3]; 35.39/13.69 2270[label="xuu4912 <= xuu5112",fontsize=16,color="blue",shape="box"];3463[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2270 -> 3463[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3463 -> 2359[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3464[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2270 -> 3464[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3464 -> 2360[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3465[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2270 -> 3465[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3465 -> 2361[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3466[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2270 -> 3466[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3466 -> 2362[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3467[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2270 -> 3467[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3467 -> 2363[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3468[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2270 -> 3468[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3468 -> 2364[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3469[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2270 -> 3469[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3469 -> 2365[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3470[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2270 -> 3470[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3470 -> 2366[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3471[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2270 -> 3471[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3471 -> 2367[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3472[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2270 -> 3472[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3472 -> 2368[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3473[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2270 -> 3473[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3473 -> 2369[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3474[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2270 -> 3474[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3474 -> 2370[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3475[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2270 -> 3475[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3475 -> 2371[label="",style="solid", color="blue", weight=3]; 35.39/13.69 3476[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2270 -> 3476[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3476 -> 2372[label="",style="solid", color="blue", weight=3]; 35.39/13.69 2271[label="xuu4911 == xuu5111",fontsize=16,color="blue",shape="box"];3477[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3477[label="",style="solid", color="blue", weight=9]; 35.39/13.69 3477 -> 2373[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3478[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3478[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3478 -> 2374[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3479[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3479[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3479 -> 2375[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3480[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3480[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3480 -> 2376[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3481[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3481[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3481 -> 2377[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3482[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3482[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3482 -> 2378[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3483[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3483[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3483 -> 2379[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3484[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3484[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3484 -> 2380[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3485[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3485[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3485 -> 2381[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3486[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3486[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3486 -> 2382[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3487[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3487[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3487 -> 2383[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3488[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3488[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3488 -> 2384[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3489[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3489[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3489 -> 2385[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3490[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3490[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3490 -> 2386[label="",style="solid", color="blue", weight=3]; 35.39/13.70 2272[label="xuu5110",fontsize=16,color="green",shape="box"];2273[label="xuu4910",fontsize=16,color="green",shape="box"];2274[label="xuu5110",fontsize=16,color="green",shape="box"];2275[label="xuu4910",fontsize=16,color="green",shape="box"];2276[label="xuu5110",fontsize=16,color="green",shape="box"];2277[label="xuu4910",fontsize=16,color="green",shape="box"];2278[label="xuu5110",fontsize=16,color="green",shape="box"];2279[label="xuu4910",fontsize=16,color="green",shape="box"];2280[label="xuu5110",fontsize=16,color="green",shape="box"];2281[label="xuu4910",fontsize=16,color="green",shape="box"];2282[label="xuu5110",fontsize=16,color="green",shape="box"];2283[label="xuu4910",fontsize=16,color="green",shape="box"];2284[label="xuu5110",fontsize=16,color="green",shape="box"];2285[label="xuu4910",fontsize=16,color="green",shape="box"];2286[label="xuu5110",fontsize=16,color="green",shape="box"];2287[label="xuu4910",fontsize=16,color="green",shape="box"];2288[label="xuu5110",fontsize=16,color="green",shape="box"];2289[label="xuu4910",fontsize=16,color="green",shape="box"];2290[label="xuu5110",fontsize=16,color="green",shape="box"];2291[label="xuu4910",fontsize=16,color="green",shape="box"];2292[label="xuu5110",fontsize=16,color="green",shape="box"];2293[label="xuu4910",fontsize=16,color="green",shape="box"];2294[label="xuu5110",fontsize=16,color="green",shape="box"];2295[label="xuu4910",fontsize=16,color="green",shape="box"];2296[label="xuu5110",fontsize=16,color="green",shape="box"];2297[label="xuu4910",fontsize=16,color="green",shape="box"];2298[label="xuu5110",fontsize=16,color="green",shape="box"];2299[label="xuu4910",fontsize=16,color="green",shape="box"];2301 -> 1505[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2301[label="xuu490 <= xuu510",fontsize=16,color="magenta"];2301 -> 2387[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2301 -> 2388[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2300[label="compare1 xuu490 xuu510 xuu147",fontsize=16,color="burlywood",shape="triangle"];3491[label="xuu147/False",fontsize=10,color="white",style="solid",shape="box"];2300 -> 3491[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3491 -> 2389[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 3492[label="xuu147/True",fontsize=10,color="white",style="solid",shape="box"];2300 -> 3492[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3492 -> 2390[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 2303[label="compare xuu4900 xuu5100",fontsize=16,color="blue",shape="box"];3493[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3493[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3493 -> 2391[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3494[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3494[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3494 -> 2392[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3495[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3495[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3495 -> 2393[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3496[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3496[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3496 -> 2394[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3497[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3497[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3497 -> 2395[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3498[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3498[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3498 -> 2396[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3499[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3499[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3499 -> 2397[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3500[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3500[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3500 -> 2398[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3501[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3501[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3501 -> 2399[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3502[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3502[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3502 -> 2400[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3503[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3503[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3503 -> 2401[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3504[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3504[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3504 -> 2402[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3505[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3505[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3505 -> 2403[label="",style="solid", color="blue", weight=3]; 35.39/13.70 3506[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3506[label="",style="solid", color="blue", weight=9]; 35.39/13.70 3506 -> 2404[label="",style="solid", color="blue", weight=3]; 35.39/13.70 2304[label="xuu146",fontsize=16,color="green",shape="box"];2302[label="primCompAux0 xuu151 xuu152",fontsize=16,color="burlywood",shape="triangle"];3507[label="xuu152/LT",fontsize=10,color="white",style="solid",shape="box"];2302 -> 3507[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3507 -> 2405[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 3508[label="xuu152/EQ",fontsize=10,color="white",style="solid",shape="box"];2302 -> 3508[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3508 -> 2406[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 3509[label="xuu152/GT",fontsize=10,color="white",style="solid",shape="box"];2302 -> 3509[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3509 -> 2407[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 2306 -> 1508[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2306[label="xuu490 <= xuu510",fontsize=16,color="magenta"];2306 -> 2408[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2306 -> 2409[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2305[label="compare1 xuu490 xuu510 xuu153",fontsize=16,color="burlywood",shape="triangle"];3510[label="xuu153/False",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3510[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3510 -> 2410[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 3511[label="xuu153/True",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3511[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3511 -> 2411[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 2308 -> 1510[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2308[label="xuu490 <= xuu510",fontsize=16,color="magenta"];2308 -> 2412[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2308 -> 2413[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2307[label="compare1 xuu490 xuu510 xuu154",fontsize=16,color="burlywood",shape="triangle"];3512[label="xuu154/False",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3512[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3512 -> 2414[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 3513[label="xuu154/True",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3513[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3513 -> 2415[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 2309 -> 1050[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2309[label="compare (xuu4900 * Pos xuu51010) (Pos xuu49010 * xuu5100)",fontsize=16,color="magenta"];2309 -> 2416[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2309 -> 2417[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2310 -> 1050[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2310[label="compare (xuu4900 * Pos xuu51010) (Neg xuu49010 * xuu5100)",fontsize=16,color="magenta"];2310 -> 2418[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2310 -> 2419[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2311 -> 1050[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2311[label="compare (xuu4900 * Neg xuu51010) (Pos xuu49010 * xuu5100)",fontsize=16,color="magenta"];2311 -> 2420[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2311 -> 2421[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2312 -> 1050[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2312[label="compare (xuu4900 * Neg xuu51010) (Neg xuu49010 * xuu5100)",fontsize=16,color="magenta"];2312 -> 2422[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2312 -> 2423[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2313 -> 1050[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2313[label="compare (xuu4900 * Pos xuu51010) (Pos xuu49010 * xuu5100)",fontsize=16,color="magenta"];2313 -> 2424[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2313 -> 2425[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2314 -> 1050[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2314[label="compare (xuu4900 * Pos xuu51010) (Neg xuu49010 * xuu5100)",fontsize=16,color="magenta"];2314 -> 2426[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2314 -> 2427[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2315 -> 1050[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2315[label="compare (xuu4900 * Neg xuu51010) (Pos xuu49010 * xuu5100)",fontsize=16,color="magenta"];2315 -> 2428[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2315 -> 2429[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2316 -> 1050[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2316[label="compare (xuu4900 * Neg xuu51010) (Neg xuu49010 * xuu5100)",fontsize=16,color="magenta"];2316 -> 2430[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2316 -> 2431[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2171[label="primCmpNat (Succ xuu49000) xuu5100",fontsize=16,color="burlywood",shape="box"];3514[label="xuu5100/Succ xuu51000",fontsize=10,color="white",style="solid",shape="box"];2171 -> 3514[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3514 -> 2432[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 3515[label="xuu5100/Zero",fontsize=10,color="white",style="solid",shape="box"];2171 -> 3515[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3515 -> 2433[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 2172[label="primCmpNat Zero xuu5100",fontsize=16,color="burlywood",shape="box"];3516[label="xuu5100/Succ xuu51000",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3516[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3516 -> 2434[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 3517[label="xuu5100/Zero",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3517[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3517 -> 2435[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 2317[label="xuu4901",fontsize=16,color="green",shape="box"];2318[label="xuu5100",fontsize=16,color="green",shape="box"];2319[label="xuu5101",fontsize=16,color="green",shape="box"];2320[label="xuu4900",fontsize=16,color="green",shape="box"];2321[label="Integer xuu51000 * xuu4901",fontsize=16,color="burlywood",shape="box"];3518[label="xuu4901/Integer xuu49010",fontsize=10,color="white",style="solid",shape="box"];2321 -> 3518[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3518 -> 2436[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 2322[label="xuu5101",fontsize=16,color="green",shape="box"];2323[label="xuu4900",fontsize=16,color="green",shape="box"];2325 -> 1516[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2325[label="xuu490 <= xuu510",fontsize=16,color="magenta"];2325 -> 2437[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2325 -> 2438[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2324[label="compare1 xuu490 xuu510 xuu155",fontsize=16,color="burlywood",shape="triangle"];3519[label="xuu155/False",fontsize=10,color="white",style="solid",shape="box"];2324 -> 3519[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3519 -> 2439[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 3520[label="xuu155/True",fontsize=10,color="white",style="solid",shape="box"];2324 -> 3520[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3520 -> 2440[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 2327 -> 1517[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2327[label="xuu490 <= xuu510",fontsize=16,color="magenta"];2327 -> 2441[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2327 -> 2442[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2326[label="compare1 xuu490 xuu510 xuu156",fontsize=16,color="burlywood",shape="triangle"];3521[label="xuu156/False",fontsize=10,color="white",style="solid",shape="box"];2326 -> 3521[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3521 -> 2443[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 3522[label="xuu156/True",fontsize=10,color="white",style="solid",shape="box"];2326 -> 3522[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3522 -> 2444[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 1750[label="primPlusNat (Succ xuu41200) xuu1080",fontsize=16,color="burlywood",shape="box"];3523[label="xuu1080/Succ xuu10800",fontsize=10,color="white",style="solid",shape="box"];1750 -> 3523[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3523 -> 2163[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 3524[label="xuu1080/Zero",fontsize=10,color="white",style="solid",shape="box"];1750 -> 3524[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3524 -> 2164[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 1751[label="primPlusNat Zero xuu1080",fontsize=16,color="burlywood",shape="box"];3525[label="xuu1080/Succ xuu10800",fontsize=10,color="white",style="solid",shape="box"];1751 -> 3525[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3525 -> 2165[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 3526[label="xuu1080/Zero",fontsize=10,color="white",style="solid",shape="box"];1751 -> 3526[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3526 -> 2166[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 1752[label="primMinusNat (Succ xuu41200) (Succ xuu10800)",fontsize=16,color="black",shape="box"];1752 -> 2167[label="",style="solid", color="black", weight=3]; 35.39/13.70 1753[label="primMinusNat (Succ xuu41200) Zero",fontsize=16,color="black",shape="box"];1753 -> 2168[label="",style="solid", color="black", weight=3]; 35.39/13.70 1754[label="primMinusNat Zero (Succ xuu10800)",fontsize=16,color="black",shape="box"];1754 -> 2169[label="",style="solid", color="black", weight=3]; 35.39/13.70 1755[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];1755 -> 2170[label="",style="solid", color="black", weight=3]; 35.39/13.70 1756[label="xuu1080",fontsize=16,color="green",shape="box"];1757[label="xuu4120",fontsize=16,color="green",shape="box"];1761[label="GT",fontsize=16,color="green",shape="box"];1762[label="Zero",fontsize=16,color="green",shape="box"];1763[label="xuu5100",fontsize=16,color="green",shape="box"];1764 -> 1760[label="",style="dashed", color="red", weight=0]; 35.39/13.70 1764[label="primCmpNat xuu5100 xuu4900",fontsize=16,color="magenta"];1764 -> 2173[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 1764 -> 2174[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 1765[label="LT",fontsize=16,color="green",shape="box"];1766[label="xuu5100",fontsize=16,color="green",shape="box"];1767[label="Zero",fontsize=16,color="green",shape="box"];1768 -> 1233[label="",style="dashed", color="red", weight=0]; 35.39/13.70 1768[label="FiniteMap.sizeFM xuu413",fontsize=16,color="magenta"];1768 -> 2175[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 1769[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1770[label="xuu414",fontsize=16,color="green",shape="box"];1771[label="FiniteMap.mkBalBranch6MkBalBranch10 (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24 xuu410 xuu411 xuu412 xuu413 xuu414 otherwise",fontsize=16,color="black",shape="box"];1771 -> 2176[label="",style="solid", color="black", weight=3]; 35.39/13.70 1772[label="FiniteMap.mkBalBranch6Single_R (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24",fontsize=16,color="black",shape="box"];1772 -> 2177[label="",style="solid", color="black", weight=3]; 35.39/13.70 2328[label="FiniteMap.mkBalBranch6Double_L (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 FiniteMap.EmptyFM xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 FiniteMap.EmptyFM xuu244)",fontsize=16,color="black",shape="box"];2328 -> 2462[label="",style="solid", color="black", weight=3]; 35.39/13.70 2329[label="FiniteMap.mkBalBranch6Double_L (xuu19,xuu20) xuu21 (FiniteMap.Branch xuu240 xuu241 xuu242 (FiniteMap.Branch xuu2430 xuu2431 xuu2432 xuu2433 xuu2434) xuu244) xuu41 xuu41 (FiniteMap.Branch xuu240 xuu241 xuu242 (FiniteMap.Branch xuu2430 xuu2431 xuu2432 xuu2433 xuu2434) xuu244)",fontsize=16,color="black",shape="box"];2329 -> 2463[label="",style="solid", color="black", weight=3]; 35.39/13.70 2330[label="FiniteMap.Branch xuu240 xuu241 (FiniteMap.mkBranchUnbox xuu244 xuu240 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243) (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu244 xuu240 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243) + FiniteMap.mkBranchRight_size xuu244 xuu240 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243))) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243) xuu244",fontsize=16,color="green",shape="box"];2330 -> 2464[label="",style="dashed", color="green", weight=3]; 35.39/13.70 2330 -> 2465[label="",style="dashed", color="green", weight=3]; 35.39/13.70 2331[label="xuu5111",fontsize=16,color="green",shape="box"];2332[label="xuu4911",fontsize=16,color="green",shape="box"];2333[label="xuu5111",fontsize=16,color="green",shape="box"];2334[label="xuu4911",fontsize=16,color="green",shape="box"];2335[label="xuu5111",fontsize=16,color="green",shape="box"];2336[label="xuu4911",fontsize=16,color="green",shape="box"];2337[label="xuu5111",fontsize=16,color="green",shape="box"];2338[label="xuu4911",fontsize=16,color="green",shape="box"];2339[label="xuu5111",fontsize=16,color="green",shape="box"];2340[label="xuu4911",fontsize=16,color="green",shape="box"];2341[label="xuu5111",fontsize=16,color="green",shape="box"];2342[label="xuu4911",fontsize=16,color="green",shape="box"];2343[label="xuu5111",fontsize=16,color="green",shape="box"];2344[label="xuu4911",fontsize=16,color="green",shape="box"];2345[label="xuu5111",fontsize=16,color="green",shape="box"];2346[label="xuu4911",fontsize=16,color="green",shape="box"];2347[label="xuu5111",fontsize=16,color="green",shape="box"];2348[label="xuu4911",fontsize=16,color="green",shape="box"];2349[label="xuu5111",fontsize=16,color="green",shape="box"];2350[label="xuu4911",fontsize=16,color="green",shape="box"];2351[label="xuu5111",fontsize=16,color="green",shape="box"];2352[label="xuu4911",fontsize=16,color="green",shape="box"];2353[label="xuu5111",fontsize=16,color="green",shape="box"];2354[label="xuu4911",fontsize=16,color="green",shape="box"];2355[label="xuu5111",fontsize=16,color="green",shape="box"];2356[label="xuu4911",fontsize=16,color="green",shape="box"];2357[label="xuu5111",fontsize=16,color="green",shape="box"];2358[label="xuu4911",fontsize=16,color="green",shape="box"];2359 -> 1504[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2359[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2359 -> 2466[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2359 -> 2467[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2360 -> 1505[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2360[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2360 -> 2468[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2360 -> 2469[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2361 -> 1506[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2361[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2361 -> 2470[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2361 -> 2471[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2362 -> 1507[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2362[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2362 -> 2472[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2362 -> 2473[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2363 -> 1508[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2363[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2363 -> 2474[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2363 -> 2475[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2364 -> 1509[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2364[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2364 -> 2476[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2364 -> 2477[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2365 -> 1510[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2365[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2365 -> 2478[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2365 -> 2479[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2366 -> 1511[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2366[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2366 -> 2480[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2366 -> 2481[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2367 -> 1512[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2367[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2367 -> 2482[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2367 -> 2483[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2368 -> 1513[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2368[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2368 -> 2484[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2368 -> 2485[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2369 -> 1514[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2369[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2369 -> 2486[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2369 -> 2487[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2370 -> 1515[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2370[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2370 -> 2488[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2370 -> 2489[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2371 -> 1516[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2371[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2371 -> 2490[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2371 -> 2491[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2372 -> 1517[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2372[label="xuu4912 <= xuu5112",fontsize=16,color="magenta"];2372 -> 2492[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2372 -> 2493[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2373 -> 169[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2373[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2373 -> 2494[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2373 -> 2495[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2374 -> 170[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2374[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2374 -> 2496[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2374 -> 2497[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2375 -> 168[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2375[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2375 -> 2498[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2375 -> 2499[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2376 -> 163[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2376[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2376 -> 2500[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2376 -> 2501[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2377 -> 157[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2377[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2377 -> 2502[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2377 -> 2503[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2378 -> 166[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2378[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2378 -> 2504[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2378 -> 2505[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2379 -> 161[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2379[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2379 -> 2506[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2379 -> 2507[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2380 -> 159[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2380[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2380 -> 2508[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2380 -> 2509[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2381 -> 167[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2381[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2381 -> 2510[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2381 -> 2511[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2382 -> 164[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2382[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2382 -> 2512[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2382 -> 2513[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2383 -> 162[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2383[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2383 -> 2514[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2383 -> 2515[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2384 -> 165[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2384[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2384 -> 2516[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2384 -> 2517[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2385 -> 160[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2385[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2385 -> 2518[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2385 -> 2519[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2386 -> 158[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2386[label="xuu4911 == xuu5111",fontsize=16,color="magenta"];2386 -> 2520[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2386 -> 2521[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2387[label="xuu490",fontsize=16,color="green",shape="box"];2388[label="xuu510",fontsize=16,color="green",shape="box"];2389[label="compare1 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];2389 -> 2522[label="",style="solid", color="black", weight=3]; 35.39/13.70 2390[label="compare1 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2390 -> 2523[label="",style="solid", color="black", weight=3]; 35.39/13.70 2391 -> 1050[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2391[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2391 -> 2524[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2391 -> 2525[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2392 -> 1623[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2392[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2392 -> 2526[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2392 -> 2527[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2393 -> 1625[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2393[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2393 -> 2528[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2393 -> 2529[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2394 -> 1627[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2394[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2394 -> 2530[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2394 -> 2531[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2395 -> 1629[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2395[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2395 -> 2532[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2395 -> 2533[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2396 -> 1631[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2396[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2396 -> 2534[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2396 -> 2535[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2397 -> 1633[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2397[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2397 -> 2536[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2397 -> 2537[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2398 -> 1635[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2398[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2398 -> 2538[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2398 -> 2539[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2399 -> 1637[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2399[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2399 -> 2540[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2399 -> 2541[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2400 -> 1639[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2400[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2400 -> 2542[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2400 -> 2543[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2401 -> 1641[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2401[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2401 -> 2544[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2401 -> 2545[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2402 -> 1643[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2402[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2402 -> 2546[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2402 -> 2547[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2403 -> 1645[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2403[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2403 -> 2548[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2403 -> 2549[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2404 -> 1647[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2404[label="compare xuu4900 xuu5100",fontsize=16,color="magenta"];2404 -> 2550[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2404 -> 2551[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2405[label="primCompAux0 xuu151 LT",fontsize=16,color="black",shape="box"];2405 -> 2552[label="",style="solid", color="black", weight=3]; 35.39/13.70 2406[label="primCompAux0 xuu151 EQ",fontsize=16,color="black",shape="box"];2406 -> 2553[label="",style="solid", color="black", weight=3]; 35.39/13.70 2407[label="primCompAux0 xuu151 GT",fontsize=16,color="black",shape="box"];2407 -> 2554[label="",style="solid", color="black", weight=3]; 35.39/13.70 2408[label="xuu490",fontsize=16,color="green",shape="box"];2409[label="xuu510",fontsize=16,color="green",shape="box"];2410[label="compare1 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];2410 -> 2555[label="",style="solid", color="black", weight=3]; 35.39/13.70 2411[label="compare1 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2411 -> 2556[label="",style="solid", color="black", weight=3]; 35.39/13.70 2412[label="xuu490",fontsize=16,color="green",shape="box"];2413[label="xuu510",fontsize=16,color="green",shape="box"];2414[label="compare1 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];2414 -> 2557[label="",style="solid", color="black", weight=3]; 35.39/13.70 2415[label="compare1 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2415 -> 2558[label="",style="solid", color="black", weight=3]; 35.39/13.70 2416 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2416[label="Pos xuu49010 * xuu5100",fontsize=16,color="magenta"];2416 -> 2559[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2416 -> 2560[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2417 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2417[label="xuu4900 * Pos xuu51010",fontsize=16,color="magenta"];2417 -> 2561[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2417 -> 2562[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2418 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2418[label="Neg xuu49010 * xuu5100",fontsize=16,color="magenta"];2418 -> 2563[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2418 -> 2564[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2419 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2419[label="xuu4900 * Pos xuu51010",fontsize=16,color="magenta"];2419 -> 2565[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2419 -> 2566[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2420 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2420[label="Pos xuu49010 * xuu5100",fontsize=16,color="magenta"];2420 -> 2567[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2420 -> 2568[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2421 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2421[label="xuu4900 * Neg xuu51010",fontsize=16,color="magenta"];2421 -> 2569[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2421 -> 2570[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2422 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2422[label="Neg xuu49010 * xuu5100",fontsize=16,color="magenta"];2422 -> 2571[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2422 -> 2572[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2423 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2423[label="xuu4900 * Neg xuu51010",fontsize=16,color="magenta"];2423 -> 2573[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2423 -> 2574[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2424 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2424[label="Pos xuu49010 * xuu5100",fontsize=16,color="magenta"];2424 -> 2575[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2424 -> 2576[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2425 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2425[label="xuu4900 * Pos xuu51010",fontsize=16,color="magenta"];2425 -> 2577[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2425 -> 2578[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2426 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2426[label="Neg xuu49010 * xuu5100",fontsize=16,color="magenta"];2426 -> 2579[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2426 -> 2580[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2427 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2427[label="xuu4900 * Pos xuu51010",fontsize=16,color="magenta"];2427 -> 2581[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2427 -> 2582[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2428 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2428[label="Pos xuu49010 * xuu5100",fontsize=16,color="magenta"];2428 -> 2583[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2428 -> 2584[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2429 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2429[label="xuu4900 * Neg xuu51010",fontsize=16,color="magenta"];2429 -> 2585[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2429 -> 2586[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2430 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2430[label="Neg xuu49010 * xuu5100",fontsize=16,color="magenta"];2430 -> 2587[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2430 -> 2588[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2431 -> 423[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2431[label="xuu4900 * Neg xuu51010",fontsize=16,color="magenta"];2431 -> 2589[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2431 -> 2590[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2432[label="primCmpNat (Succ xuu49000) (Succ xuu51000)",fontsize=16,color="black",shape="box"];2432 -> 2591[label="",style="solid", color="black", weight=3]; 35.39/13.70 2433[label="primCmpNat (Succ xuu49000) Zero",fontsize=16,color="black",shape="box"];2433 -> 2592[label="",style="solid", color="black", weight=3]; 35.39/13.70 2434[label="primCmpNat Zero (Succ xuu51000)",fontsize=16,color="black",shape="box"];2434 -> 2593[label="",style="solid", color="black", weight=3]; 35.39/13.70 2435[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2435 -> 2594[label="",style="solid", color="black", weight=3]; 35.39/13.70 2436[label="Integer xuu51000 * Integer xuu49010",fontsize=16,color="black",shape="box"];2436 -> 2595[label="",style="solid", color="black", weight=3]; 35.39/13.70 2437[label="xuu490",fontsize=16,color="green",shape="box"];2438[label="xuu510",fontsize=16,color="green",shape="box"];2439[label="compare1 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];2439 -> 2596[label="",style="solid", color="black", weight=3]; 35.39/13.70 2440[label="compare1 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2440 -> 2597[label="",style="solid", color="black", weight=3]; 35.39/13.70 2441[label="xuu490",fontsize=16,color="green",shape="box"];2442[label="xuu510",fontsize=16,color="green",shape="box"];2443[label="compare1 xuu490 xuu510 False",fontsize=16,color="black",shape="box"];2443 -> 2598[label="",style="solid", color="black", weight=3]; 35.39/13.70 2444[label="compare1 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2444 -> 2599[label="",style="solid", color="black", weight=3]; 35.39/13.70 2163[label="primPlusNat (Succ xuu41200) (Succ xuu10800)",fontsize=16,color="black",shape="box"];2163 -> 2445[label="",style="solid", color="black", weight=3]; 35.39/13.70 2164[label="primPlusNat (Succ xuu41200) Zero",fontsize=16,color="black",shape="box"];2164 -> 2446[label="",style="solid", color="black", weight=3]; 35.39/13.70 2165[label="primPlusNat Zero (Succ xuu10800)",fontsize=16,color="black",shape="box"];2165 -> 2447[label="",style="solid", color="black", weight=3]; 35.39/13.70 2166[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2166 -> 2448[label="",style="solid", color="black", weight=3]; 35.39/13.70 2167 -> 1554[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2167[label="primMinusNat xuu41200 xuu10800",fontsize=16,color="magenta"];2167 -> 2449[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2167 -> 2450[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2168[label="Pos (Succ xuu41200)",fontsize=16,color="green",shape="box"];2169[label="Neg (Succ xuu10800)",fontsize=16,color="green",shape="box"];2170[label="Pos Zero",fontsize=16,color="green",shape="box"];2173[label="xuu4900",fontsize=16,color="green",shape="box"];2174[label="xuu5100",fontsize=16,color="green",shape="box"];2175[label="xuu413",fontsize=16,color="green",shape="box"];2176[label="FiniteMap.mkBalBranch6MkBalBranch10 (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24 xuu410 xuu411 xuu412 xuu413 xuu414 True",fontsize=16,color="black",shape="box"];2176 -> 2451[label="",style="solid", color="black", weight=3]; 35.39/13.70 2177 -> 2452[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2177[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu410 xuu411 xuu413 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (xuu19,xuu20) xuu21 xuu414 xuu24)",fontsize=16,color="magenta"];2177 -> 2453[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2177 -> 2454[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2177 -> 2455[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2177 -> 2456[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2177 -> 2457[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2177 -> 2458[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2177 -> 2459[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2177 -> 2460[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2177 -> 2461[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2462[label="error []",fontsize=16,color="red",shape="box"];2463 -> 2604[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2463[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu2430 xuu2431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu19,xuu20) xuu21 xuu41 xuu2433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu240 xuu241 xuu2434 xuu244)",fontsize=16,color="magenta"];2463 -> 2605[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2463 -> 2606[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2463 -> 2607[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2463 -> 2608[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2463 -> 2609[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2463 -> 2610[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2463 -> 2611[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2463 -> 2612[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2463 -> 2613[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2463 -> 2614[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2463 -> 2615[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2463 -> 2616[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2464 -> 2760[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2464[label="FiniteMap.mkBranchUnbox xuu244 xuu240 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243) (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu244 xuu240 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243) + FiniteMap.mkBranchRight_size xuu244 xuu240 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243))",fontsize=16,color="magenta"];2464 -> 2765[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2464 -> 2766[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2464 -> 2767[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2464 -> 2768[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2465[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243",fontsize=16,color="black",shape="triangle"];2465 -> 2618[label="",style="solid", color="black", weight=3]; 35.39/13.70 2466[label="xuu4912",fontsize=16,color="green",shape="box"];2467[label="xuu5112",fontsize=16,color="green",shape="box"];2468[label="xuu4912",fontsize=16,color="green",shape="box"];2469[label="xuu5112",fontsize=16,color="green",shape="box"];2470[label="xuu4912",fontsize=16,color="green",shape="box"];2471[label="xuu5112",fontsize=16,color="green",shape="box"];2472[label="xuu4912",fontsize=16,color="green",shape="box"];2473[label="xuu5112",fontsize=16,color="green",shape="box"];2474[label="xuu4912",fontsize=16,color="green",shape="box"];2475[label="xuu5112",fontsize=16,color="green",shape="box"];2476[label="xuu4912",fontsize=16,color="green",shape="box"];2477[label="xuu5112",fontsize=16,color="green",shape="box"];2478[label="xuu4912",fontsize=16,color="green",shape="box"];2479[label="xuu5112",fontsize=16,color="green",shape="box"];2480[label="xuu4912",fontsize=16,color="green",shape="box"];2481[label="xuu5112",fontsize=16,color="green",shape="box"];2482[label="xuu4912",fontsize=16,color="green",shape="box"];2483[label="xuu5112",fontsize=16,color="green",shape="box"];2484[label="xuu4912",fontsize=16,color="green",shape="box"];2485[label="xuu5112",fontsize=16,color="green",shape="box"];2486[label="xuu4912",fontsize=16,color="green",shape="box"];2487[label="xuu5112",fontsize=16,color="green",shape="box"];2488[label="xuu4912",fontsize=16,color="green",shape="box"];2489[label="xuu5112",fontsize=16,color="green",shape="box"];2490[label="xuu4912",fontsize=16,color="green",shape="box"];2491[label="xuu5112",fontsize=16,color="green",shape="box"];2492[label="xuu4912",fontsize=16,color="green",shape="box"];2493[label="xuu5112",fontsize=16,color="green",shape="box"];2494[label="xuu5111",fontsize=16,color="green",shape="box"];2495[label="xuu4911",fontsize=16,color="green",shape="box"];2496[label="xuu5111",fontsize=16,color="green",shape="box"];2497[label="xuu4911",fontsize=16,color="green",shape="box"];2498[label="xuu5111",fontsize=16,color="green",shape="box"];2499[label="xuu4911",fontsize=16,color="green",shape="box"];2500[label="xuu5111",fontsize=16,color="green",shape="box"];2501[label="xuu4911",fontsize=16,color="green",shape="box"];2502[label="xuu5111",fontsize=16,color="green",shape="box"];2503[label="xuu4911",fontsize=16,color="green",shape="box"];2504[label="xuu5111",fontsize=16,color="green",shape="box"];2505[label="xuu4911",fontsize=16,color="green",shape="box"];2506[label="xuu5111",fontsize=16,color="green",shape="box"];2507[label="xuu4911",fontsize=16,color="green",shape="box"];2508[label="xuu5111",fontsize=16,color="green",shape="box"];2509[label="xuu4911",fontsize=16,color="green",shape="box"];2510[label="xuu5111",fontsize=16,color="green",shape="box"];2511[label="xuu4911",fontsize=16,color="green",shape="box"];2512[label="xuu5111",fontsize=16,color="green",shape="box"];2513[label="xuu4911",fontsize=16,color="green",shape="box"];2514[label="xuu5111",fontsize=16,color="green",shape="box"];2515[label="xuu4911",fontsize=16,color="green",shape="box"];2516[label="xuu5111",fontsize=16,color="green",shape="box"];2517[label="xuu4911",fontsize=16,color="green",shape="box"];2518[label="xuu5111",fontsize=16,color="green",shape="box"];2519[label="xuu4911",fontsize=16,color="green",shape="box"];2520[label="xuu5111",fontsize=16,color="green",shape="box"];2521[label="xuu4911",fontsize=16,color="green",shape="box"];2522[label="compare0 xuu490 xuu510 otherwise",fontsize=16,color="black",shape="box"];2522 -> 2619[label="",style="solid", color="black", weight=3]; 35.39/13.70 2523[label="LT",fontsize=16,color="green",shape="box"];2524[label="xuu5100",fontsize=16,color="green",shape="box"];2525[label="xuu4900",fontsize=16,color="green",shape="box"];2526[label="xuu5100",fontsize=16,color="green",shape="box"];2527[label="xuu4900",fontsize=16,color="green",shape="box"];2528[label="xuu5100",fontsize=16,color="green",shape="box"];2529[label="xuu4900",fontsize=16,color="green",shape="box"];2530[label="xuu5100",fontsize=16,color="green",shape="box"];2531[label="xuu4900",fontsize=16,color="green",shape="box"];2532[label="xuu5100",fontsize=16,color="green",shape="box"];2533[label="xuu4900",fontsize=16,color="green",shape="box"];2534[label="xuu5100",fontsize=16,color="green",shape="box"];2535[label="xuu4900",fontsize=16,color="green",shape="box"];2536[label="xuu5100",fontsize=16,color="green",shape="box"];2537[label="xuu4900",fontsize=16,color="green",shape="box"];2538[label="xuu5100",fontsize=16,color="green",shape="box"];2539[label="xuu4900",fontsize=16,color="green",shape="box"];2540[label="xuu5100",fontsize=16,color="green",shape="box"];2541[label="xuu4900",fontsize=16,color="green",shape="box"];2542[label="xuu5100",fontsize=16,color="green",shape="box"];2543[label="xuu4900",fontsize=16,color="green",shape="box"];2544[label="xuu5100",fontsize=16,color="green",shape="box"];2545[label="xuu4900",fontsize=16,color="green",shape="box"];2546[label="xuu5100",fontsize=16,color="green",shape="box"];2547[label="xuu4900",fontsize=16,color="green",shape="box"];2548[label="xuu5100",fontsize=16,color="green",shape="box"];2549[label="xuu4900",fontsize=16,color="green",shape="box"];2550[label="xuu5100",fontsize=16,color="green",shape="box"];2551[label="xuu4900",fontsize=16,color="green",shape="box"];2552[label="LT",fontsize=16,color="green",shape="box"];2553[label="xuu151",fontsize=16,color="green",shape="box"];2554[label="GT",fontsize=16,color="green",shape="box"];2555[label="compare0 xuu490 xuu510 otherwise",fontsize=16,color="black",shape="box"];2555 -> 2620[label="",style="solid", color="black", weight=3]; 35.39/13.70 2556[label="LT",fontsize=16,color="green",shape="box"];2557[label="compare0 xuu490 xuu510 otherwise",fontsize=16,color="black",shape="box"];2557 -> 2621[label="",style="solid", color="black", weight=3]; 35.39/13.70 2558[label="LT",fontsize=16,color="green",shape="box"];2559[label="xuu5100",fontsize=16,color="green",shape="box"];2560[label="Pos xuu49010",fontsize=16,color="green",shape="box"];2561[label="Pos xuu51010",fontsize=16,color="green",shape="box"];2562[label="xuu4900",fontsize=16,color="green",shape="box"];2563[label="xuu5100",fontsize=16,color="green",shape="box"];2564[label="Neg xuu49010",fontsize=16,color="green",shape="box"];2565[label="Pos xuu51010",fontsize=16,color="green",shape="box"];2566[label="xuu4900",fontsize=16,color="green",shape="box"];2567[label="xuu5100",fontsize=16,color="green",shape="box"];2568[label="Pos xuu49010",fontsize=16,color="green",shape="box"];2569[label="Neg xuu51010",fontsize=16,color="green",shape="box"];2570[label="xuu4900",fontsize=16,color="green",shape="box"];2571[label="xuu5100",fontsize=16,color="green",shape="box"];2572[label="Neg xuu49010",fontsize=16,color="green",shape="box"];2573[label="Neg xuu51010",fontsize=16,color="green",shape="box"];2574[label="xuu4900",fontsize=16,color="green",shape="box"];2575[label="xuu5100",fontsize=16,color="green",shape="box"];2576[label="Pos xuu49010",fontsize=16,color="green",shape="box"];2577[label="Pos xuu51010",fontsize=16,color="green",shape="box"];2578[label="xuu4900",fontsize=16,color="green",shape="box"];2579[label="xuu5100",fontsize=16,color="green",shape="box"];2580[label="Neg xuu49010",fontsize=16,color="green",shape="box"];2581[label="Pos xuu51010",fontsize=16,color="green",shape="box"];2582[label="xuu4900",fontsize=16,color="green",shape="box"];2583[label="xuu5100",fontsize=16,color="green",shape="box"];2584[label="Pos xuu49010",fontsize=16,color="green",shape="box"];2585[label="Neg xuu51010",fontsize=16,color="green",shape="box"];2586[label="xuu4900",fontsize=16,color="green",shape="box"];2587[label="xuu5100",fontsize=16,color="green",shape="box"];2588[label="Neg xuu49010",fontsize=16,color="green",shape="box"];2589[label="Neg xuu51010",fontsize=16,color="green",shape="box"];2590[label="xuu4900",fontsize=16,color="green",shape="box"];2591 -> 1760[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2591[label="primCmpNat xuu49000 xuu51000",fontsize=16,color="magenta"];2591 -> 2622[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2591 -> 2623[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2592[label="GT",fontsize=16,color="green",shape="box"];2593[label="LT",fontsize=16,color="green",shape="box"];2594[label="EQ",fontsize=16,color="green",shape="box"];2595[label="Integer (primMulInt xuu51000 xuu49010)",fontsize=16,color="green",shape="box"];2595 -> 2624[label="",style="dashed", color="green", weight=3]; 35.39/13.70 2596[label="compare0 xuu490 xuu510 otherwise",fontsize=16,color="black",shape="box"];2596 -> 2625[label="",style="solid", color="black", weight=3]; 35.39/13.70 2597[label="LT",fontsize=16,color="green",shape="box"];2598[label="compare0 xuu490 xuu510 otherwise",fontsize=16,color="black",shape="box"];2598 -> 2626[label="",style="solid", color="black", weight=3]; 35.39/13.70 2599[label="LT",fontsize=16,color="green",shape="box"];2445[label="Succ (Succ (primPlusNat xuu41200 xuu10800))",fontsize=16,color="green",shape="box"];2445 -> 2600[label="",style="dashed", color="green", weight=3]; 35.39/13.70 2446[label="Succ xuu41200",fontsize=16,color="green",shape="box"];2447[label="Succ xuu10800",fontsize=16,color="green",shape="box"];2448[label="Zero",fontsize=16,color="green",shape="box"];2449[label="xuu10800",fontsize=16,color="green",shape="box"];2450[label="xuu41200",fontsize=16,color="green",shape="box"];2451[label="FiniteMap.mkBalBranch6Double_R (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu24",fontsize=16,color="burlywood",shape="box"];3527[label="xuu414/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3527[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3527 -> 2601[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 3528[label="xuu414/FiniteMap.Branch xuu4140 xuu4141 xuu4142 xuu4143 xuu4144",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3528[label="",style="solid", color="burlywood", weight=9]; 35.39/13.70 3528 -> 2602[label="",style="solid", color="burlywood", weight=3]; 35.39/13.70 2453[label="xuu24",fontsize=16,color="green",shape="box"];2454[label="xuu21",fontsize=16,color="green",shape="box"];2455[label="xuu414",fontsize=16,color="green",shape="box"];2456[label="xuu410",fontsize=16,color="green",shape="box"];2457[label="xuu411",fontsize=16,color="green",shape="box"];2458[label="xuu19",fontsize=16,color="green",shape="box"];2459[label="xuu413",fontsize=16,color="green",shape="box"];2460[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];2461[label="xuu20",fontsize=16,color="green",shape="box"];2452[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu158 xuu159 xuu160 (FiniteMap.mkBranch (Pos (Succ xuu161)) (xuu162,xuu163) xuu164 xuu165 xuu166)",fontsize=16,color="black",shape="triangle"];2452 -> 2603[label="",style="solid", color="black", weight=3]; 35.39/13.70 2605[label="xuu2433",fontsize=16,color="green",shape="box"];2606[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];2607[label="xuu19",fontsize=16,color="green",shape="box"];2608[label="xuu20",fontsize=16,color="green",shape="box"];2609[label="xuu41",fontsize=16,color="green",shape="box"];2610[label="xuu241",fontsize=16,color="green",shape="box"];2611[label="xuu2434",fontsize=16,color="green",shape="box"];2612[label="xuu2431",fontsize=16,color="green",shape="box"];2613[label="xuu240",fontsize=16,color="green",shape="box"];2614[label="xuu2430",fontsize=16,color="green",shape="box"];2615[label="xuu21",fontsize=16,color="green",shape="box"];2616[label="xuu244",fontsize=16,color="green",shape="box"];2604[label="FiniteMap.mkBranch (Pos (Succ xuu168)) xuu169 xuu170 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu171,xuu172) xuu173 xuu174 xuu175) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu176 xuu177 xuu178 xuu179)",fontsize=16,color="black",shape="triangle"];2604 -> 2627[label="",style="solid", color="black", weight=3]; 35.39/13.70 2765[label="xuu240",fontsize=16,color="green",shape="box"];2766 -> 2782[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2766[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu244 xuu240 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243) + FiniteMap.mkBranchRight_size xuu244 xuu240 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243)",fontsize=16,color="magenta"];2766 -> 2787[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2766 -> 2788[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2767 -> 2666[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2767[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243",fontsize=16,color="magenta"];2767 -> 2798[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2767 -> 2799[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2767 -> 2800[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2767 -> 2801[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2767 -> 2802[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2767 -> 2803[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2768[label="xuu244",fontsize=16,color="green",shape="box"];2618 -> 890[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2618[label="FiniteMap.mkBranchResult (xuu19,xuu20) xuu21 xuu243 xuu41",fontsize=16,color="magenta"];2618 -> 2641[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2619[label="compare0 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2619 -> 2642[label="",style="solid", color="black", weight=3]; 35.39/13.70 2620[label="compare0 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2620 -> 2643[label="",style="solid", color="black", weight=3]; 35.39/13.70 2621[label="compare0 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2621 -> 2644[label="",style="solid", color="black", weight=3]; 35.39/13.70 2622[label="xuu51000",fontsize=16,color="green",shape="box"];2623[label="xuu49000",fontsize=16,color="green",shape="box"];2624 -> 632[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2624[label="primMulInt xuu51000 xuu49010",fontsize=16,color="magenta"];2624 -> 2645[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2624 -> 2646[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2625[label="compare0 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2625 -> 2647[label="",style="solid", color="black", weight=3]; 35.39/13.70 2626[label="compare0 xuu490 xuu510 True",fontsize=16,color="black",shape="box"];2626 -> 2648[label="",style="solid", color="black", weight=3]; 35.39/13.70 2600 -> 1657[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2600[label="primPlusNat xuu41200 xuu10800",fontsize=16,color="magenta"];2600 -> 2628[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2600 -> 2629[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2601[label="FiniteMap.mkBalBranch6Double_R (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 FiniteMap.EmptyFM) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 FiniteMap.EmptyFM) xuu24",fontsize=16,color="black",shape="box"];2601 -> 2630[label="",style="solid", color="black", weight=3]; 35.39/13.70 2602[label="FiniteMap.mkBalBranch6Double_R (xuu19,xuu20) xuu21 xuu24 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 (FiniteMap.Branch xuu4140 xuu4141 xuu4142 xuu4143 xuu4144)) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 (FiniteMap.Branch xuu4140 xuu4141 xuu4142 xuu4143 xuu4144)) xuu24",fontsize=16,color="black",shape="box"];2602 -> 2631[label="",style="solid", color="black", weight=3]; 35.39/13.70 2603[label="FiniteMap.mkBranchResult xuu158 xuu159 (FiniteMap.mkBranch (Pos (Succ xuu161)) (xuu162,xuu163) xuu164 xuu165 xuu166) xuu160",fontsize=16,color="black",shape="triangle"];2603 -> 2632[label="",style="solid", color="black", weight=3]; 35.39/13.70 2627[label="FiniteMap.mkBranchResult xuu169 xuu170 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu176 xuu177 xuu178 xuu179) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu171,xuu172) xuu173 xuu174 xuu175)",fontsize=16,color="black",shape="box"];2627 -> 2649[label="",style="solid", color="black", weight=3]; 35.39/13.70 2787 -> 2666[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2787[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243",fontsize=16,color="magenta"];2787 -> 2804[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2787 -> 2805[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2787 -> 2806[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2787 -> 2807[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2787 -> 2808[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2787 -> 2809[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2788 -> 2666[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2788[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu19,xuu20) xuu21 xuu41 xuu243",fontsize=16,color="magenta"];2788 -> 2810[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2788 -> 2811[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2788 -> 2812[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2788 -> 2813[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2788 -> 2814[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2788 -> 2815[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2798[label="xuu243",fontsize=16,color="green",shape="box"];2799[label="xuu21",fontsize=16,color="green",shape="box"];2800[label="xuu41",fontsize=16,color="green",shape="box"];2801[label="xuu19",fontsize=16,color="green",shape="box"];2802[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2803[label="xuu20",fontsize=16,color="green",shape="box"];2666[label="FiniteMap.mkBranch (Pos (Succ xuu161)) (xuu162,xuu163) xuu164 xuu165 xuu166",fontsize=16,color="black",shape="triangle"];2666 -> 2735[label="",style="solid", color="black", weight=3]; 35.39/13.70 2641[label="xuu243",fontsize=16,color="green",shape="box"];2642[label="GT",fontsize=16,color="green",shape="box"];2643[label="GT",fontsize=16,color="green",shape="box"];2644[label="GT",fontsize=16,color="green",shape="box"];2645[label="xuu49010",fontsize=16,color="green",shape="box"];2646[label="xuu51000",fontsize=16,color="green",shape="box"];2647[label="GT",fontsize=16,color="green",shape="box"];2648[label="GT",fontsize=16,color="green",shape="box"];2628[label="xuu10800",fontsize=16,color="green",shape="box"];2629[label="xuu41200",fontsize=16,color="green",shape="box"];2630[label="error []",fontsize=16,color="red",shape="box"];2631 -> 2699[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2631[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu4140 xuu4141 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu410 xuu411 xuu413 xuu4143) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (xuu19,xuu20) xuu21 xuu4144 xuu24)",fontsize=16,color="magenta"];2631 -> 2700[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2631 -> 2701[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2631 -> 2702[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2631 -> 2703[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2631 -> 2704[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2631 -> 2705[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2631 -> 2706[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2631 -> 2707[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2631 -> 2708[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2631 -> 2709[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2631 -> 2710[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2631 -> 2711[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2631 -> 2712[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2631 -> 2713[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2632[label="FiniteMap.Branch xuu158 xuu159 (FiniteMap.mkBranchUnbox (FiniteMap.mkBranch (Pos (Succ xuu161)) (xuu162,xuu163) xuu164 xuu165 xuu166) xuu158 xuu160 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ xuu161)) (xuu162,xuu163) xuu164 xuu165 xuu166) xuu158 xuu160 + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ xuu161)) (xuu162,xuu163) xuu164 xuu165 xuu166) xuu158 xuu160)) xuu160 (FiniteMap.mkBranch (Pos (Succ xuu161)) (xuu162,xuu163) xuu164 xuu165 xuu166)",fontsize=16,color="green",shape="box"];2632 -> 2665[label="",style="dashed", color="green", weight=3]; 35.39/13.70 2632 -> 2666[label="",style="dashed", color="green", weight=3]; 35.39/13.70 2649[label="FiniteMap.Branch xuu169 xuu170 (FiniteMap.mkBranchUnbox (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu176 xuu177 xuu178 xuu179) xuu169 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu171,xuu172) xuu173 xuu174 xuu175) (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu176 xuu177 xuu178 xuu179) xuu169 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu171,xuu172) xuu173 xuu174 xuu175) + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu176 xuu177 xuu178 xuu179) xuu169 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu171,xuu172) xuu173 xuu174 xuu175))) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu171,xuu172) xuu173 xuu174 xuu175) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu176 xuu177 xuu178 xuu179)",fontsize=16,color="green",shape="box"];2649 -> 2667[label="",style="dashed", color="green", weight=3]; 35.39/13.70 2649 -> 2668[label="",style="dashed", color="green", weight=3]; 35.39/13.70 2649 -> 2669[label="",style="dashed", color="green", weight=3]; 35.39/13.70 2804[label="xuu243",fontsize=16,color="green",shape="box"];2805[label="xuu21",fontsize=16,color="green",shape="box"];2806[label="xuu41",fontsize=16,color="green",shape="box"];2807[label="xuu19",fontsize=16,color="green",shape="box"];2808[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2809[label="xuu20",fontsize=16,color="green",shape="box"];2810[label="xuu243",fontsize=16,color="green",shape="box"];2811[label="xuu21",fontsize=16,color="green",shape="box"];2812[label="xuu41",fontsize=16,color="green",shape="box"];2813[label="xuu19",fontsize=16,color="green",shape="box"];2814[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2815[label="xuu20",fontsize=16,color="green",shape="box"];2735 -> 890[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2735[label="FiniteMap.mkBranchResult (xuu162,xuu163) xuu164 xuu166 xuu165",fontsize=16,color="magenta"];2735 -> 2816[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2735 -> 2817[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2735 -> 2818[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2735 -> 2819[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2735 -> 2820[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2700[label="xuu19",fontsize=16,color="green",shape="box"];2701[label="xuu4141",fontsize=16,color="green",shape="box"];2702[label="xuu21",fontsize=16,color="green",shape="box"];2703[label="xuu20",fontsize=16,color="green",shape="box"];2704[label="xuu24",fontsize=16,color="green",shape="box"];2705[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];2706[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];2707[label="xuu410",fontsize=16,color="green",shape="box"];2708[label="xuu413",fontsize=16,color="green",shape="box"];2709[label="xuu411",fontsize=16,color="green",shape="box"];2710[label="xuu4143",fontsize=16,color="green",shape="box"];2711[label="xuu4144",fontsize=16,color="green",shape="box"];2712[label="xuu4140",fontsize=16,color="green",shape="box"];2713[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];2699[label="FiniteMap.mkBranch (Pos (Succ xuu210)) xuu211 xuu212 (FiniteMap.mkBranch (Pos (Succ xuu213)) xuu214 xuu215 xuu216 xuu217) (FiniteMap.mkBranch (Pos (Succ xuu218)) (xuu219,xuu220) xuu221 xuu222 xuu223)",fontsize=16,color="black",shape="triangle"];2699 -> 2731[label="",style="solid", color="black", weight=3]; 35.39/13.70 2665 -> 2760[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2665[label="FiniteMap.mkBranchUnbox (FiniteMap.mkBranch (Pos (Succ xuu161)) (xuu162,xuu163) xuu164 xuu165 xuu166) xuu158 xuu160 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ xuu161)) (xuu162,xuu163) xuu164 xuu165 xuu166) xuu158 xuu160 + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ xuu161)) (xuu162,xuu163) xuu164 xuu165 xuu166) xuu158 xuu160)",fontsize=16,color="magenta"];2665 -> 2769[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2665 -> 2770[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2667 -> 2760[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2667[label="FiniteMap.mkBranchUnbox (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu176 xuu177 xuu178 xuu179) xuu169 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu171,xuu172) xuu173 xuu174 xuu175) (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu176 xuu177 xuu178 xuu179) xuu169 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu171,xuu172) xuu173 xuu174 xuu175) + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu176 xuu177 xuu178 xuu179) xuu169 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu171,xuu172) xuu173 xuu174 xuu175))",fontsize=16,color="magenta"];2667 -> 2771[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2667 -> 2772[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2667 -> 2773[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2667 -> 2774[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2668 -> 2666[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2668[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu171,xuu172) xuu173 xuu174 xuu175",fontsize=16,color="magenta"];2668 -> 2740[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2668 -> 2741[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2668 -> 2742[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2668 -> 2743[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2668 -> 2744[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2668 -> 2745[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2669[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu176 xuu177 xuu178 xuu179",fontsize=16,color="black",shape="triangle"];2669 -> 2746[label="",style="solid", color="black", weight=3]; 35.39/13.70 2816[label="xuu164",fontsize=16,color="green",shape="box"];2817[label="xuu165",fontsize=16,color="green",shape="box"];2818[label="xuu163",fontsize=16,color="green",shape="box"];2819[label="xuu166",fontsize=16,color="green",shape="box"];2820[label="xuu162",fontsize=16,color="green",shape="box"];2731 -> 2603[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2731[label="FiniteMap.mkBranchResult xuu211 xuu212 (FiniteMap.mkBranch (Pos (Succ xuu218)) (xuu219,xuu220) xuu221 xuu222 xuu223) (FiniteMap.mkBranch (Pos (Succ xuu213)) xuu214 xuu215 xuu216 xuu217)",fontsize=16,color="magenta"];2731 -> 2747[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2731 -> 2748[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2731 -> 2749[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2731 -> 2750[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2731 -> 2751[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2731 -> 2752[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2731 -> 2753[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2731 -> 2754[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2731 -> 2755[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2769 -> 2782[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2769[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ xuu161)) (xuu162,xuu163) xuu164 xuu165 xuu166) xuu158 xuu160 + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ xuu161)) (xuu162,xuu163) xuu164 xuu165 xuu166) xuu158 xuu160",fontsize=16,color="magenta"];2769 -> 2789[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2769 -> 2790[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2769 -> 2791[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2769 -> 2792[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2770 -> 2666[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2770[label="FiniteMap.mkBranch (Pos (Succ xuu161)) (xuu162,xuu163) xuu164 xuu165 xuu166",fontsize=16,color="magenta"];2771[label="xuu169",fontsize=16,color="green",shape="box"];2772 -> 2782[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2772[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu176 xuu177 xuu178 xuu179) xuu169 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu171,xuu172) xuu173 xuu174 xuu175) + FiniteMap.mkBranchRight_size (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu176 xuu177 xuu178 xuu179) xuu169 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu171,xuu172) xuu173 xuu174 xuu175)",fontsize=16,color="magenta"];2772 -> 2793[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2772 -> 2794[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2772 -> 2795[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2772 -> 2796[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2773 -> 2666[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2773[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu171,xuu172) xuu173 xuu174 xuu175",fontsize=16,color="magenta"];2773 -> 2821[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2773 -> 2822[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2773 -> 2823[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2773 -> 2824[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2773 -> 2825[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2773 -> 2826[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2774 -> 2669[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2774[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu176 xuu177 xuu178 xuu179",fontsize=16,color="magenta"];2740[label="xuu175",fontsize=16,color="green",shape="box"];2741[label="xuu173",fontsize=16,color="green",shape="box"];2742[label="xuu174",fontsize=16,color="green",shape="box"];2743[label="xuu171",fontsize=16,color="green",shape="box"];2744[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];2745[label="xuu172",fontsize=16,color="green",shape="box"];2746[label="FiniteMap.mkBranchResult xuu176 xuu177 xuu179 xuu178",fontsize=16,color="black",shape="triangle"];2746 -> 2827[label="",style="solid", color="black", weight=3]; 35.39/13.70 2747[label="xuu223",fontsize=16,color="green",shape="box"];2748[label="xuu221",fontsize=16,color="green",shape="box"];2749[label="xuu222",fontsize=16,color="green",shape="box"];2750[label="xuu211",fontsize=16,color="green",shape="box"];2751[label="xuu212",fontsize=16,color="green",shape="box"];2752[label="xuu219",fontsize=16,color="green",shape="box"];2753[label="FiniteMap.mkBranch (Pos (Succ xuu213)) xuu214 xuu215 xuu216 xuu217",fontsize=16,color="black",shape="triangle"];2753 -> 2828[label="",style="solid", color="black", weight=3]; 35.39/13.70 2754[label="xuu218",fontsize=16,color="green",shape="box"];2755[label="xuu220",fontsize=16,color="green",shape="box"];2789 -> 2753[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2789[label="FiniteMap.mkBranch (Pos (Succ xuu161)) (xuu162,xuu163) xuu164 xuu165 xuu166",fontsize=16,color="magenta"];2789 -> 2829[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2789 -> 2830[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2789 -> 2831[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2789 -> 2832[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2789 -> 2833[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2790[label="xuu158",fontsize=16,color="green",shape="box"];2791[label="xuu160",fontsize=16,color="green",shape="box"];2792[label="xuu160",fontsize=16,color="green",shape="box"];2793 -> 2753[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2793[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu176 xuu177 xuu178 xuu179",fontsize=16,color="magenta"];2793 -> 2834[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2793 -> 2835[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2793 -> 2836[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2793 -> 2837[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2793 -> 2838[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2794[label="xuu169",fontsize=16,color="green",shape="box"];2795 -> 2753[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2795[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu171,xuu172) xuu173 xuu174 xuu175",fontsize=16,color="magenta"];2795 -> 2839[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2795 -> 2840[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2795 -> 2841[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2795 -> 2842[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2795 -> 2843[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2796 -> 2753[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2796[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu171,xuu172) xuu173 xuu174 xuu175",fontsize=16,color="magenta"];2796 -> 2844[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2796 -> 2845[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2796 -> 2846[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2796 -> 2847[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2796 -> 2848[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2821[label="xuu175",fontsize=16,color="green",shape="box"];2822[label="xuu173",fontsize=16,color="green",shape="box"];2823[label="xuu174",fontsize=16,color="green",shape="box"];2824[label="xuu171",fontsize=16,color="green",shape="box"];2825[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];2826[label="xuu172",fontsize=16,color="green",shape="box"];2827[label="FiniteMap.Branch xuu176 xuu177 (FiniteMap.mkBranchUnbox xuu179 xuu176 xuu178 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu179 xuu176 xuu178 + FiniteMap.mkBranchRight_size xuu179 xuu176 xuu178)) xuu178 xuu179",fontsize=16,color="green",shape="box"];2827 -> 2851[label="",style="dashed", color="green", weight=3]; 35.39/13.70 2828 -> 2746[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2828[label="FiniteMap.mkBranchResult xuu214 xuu215 xuu217 xuu216",fontsize=16,color="magenta"];2828 -> 2852[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2828 -> 2853[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2828 -> 2854[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2828 -> 2855[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2829[label="xuu165",fontsize=16,color="green",shape="box"];2830[label="xuu164",fontsize=16,color="green",shape="box"];2831[label="xuu166",fontsize=16,color="green",shape="box"];2832[label="xuu161",fontsize=16,color="green",shape="box"];2833[label="(xuu162,xuu163)",fontsize=16,color="green",shape="box"];2834[label="xuu178",fontsize=16,color="green",shape="box"];2835[label="xuu177",fontsize=16,color="green",shape="box"];2836[label="xuu179",fontsize=16,color="green",shape="box"];2837[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];2838[label="xuu176",fontsize=16,color="green",shape="box"];2839[label="xuu174",fontsize=16,color="green",shape="box"];2840[label="xuu173",fontsize=16,color="green",shape="box"];2841[label="xuu175",fontsize=16,color="green",shape="box"];2842[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];2843[label="(xuu171,xuu172)",fontsize=16,color="green",shape="box"];2844[label="xuu174",fontsize=16,color="green",shape="box"];2845[label="xuu173",fontsize=16,color="green",shape="box"];2846[label="xuu175",fontsize=16,color="green",shape="box"];2847[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];2848[label="(xuu171,xuu172)",fontsize=16,color="green",shape="box"];2851 -> 2760[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2851[label="FiniteMap.mkBranchUnbox xuu179 xuu176 xuu178 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu179 xuu176 xuu178 + FiniteMap.mkBranchRight_size xuu179 xuu176 xuu178)",fontsize=16,color="magenta"];2851 -> 2858[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2851 -> 2859[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2851 -> 2860[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2851 -> 2861[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2852[label="xuu215",fontsize=16,color="green",shape="box"];2853[label="xuu216",fontsize=16,color="green",shape="box"];2854[label="xuu214",fontsize=16,color="green",shape="box"];2855[label="xuu217",fontsize=16,color="green",shape="box"];2858[label="xuu176",fontsize=16,color="green",shape="box"];2859 -> 2782[label="",style="dashed", color="red", weight=0]; 35.39/13.70 2859[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu179 xuu176 xuu178 + FiniteMap.mkBranchRight_size xuu179 xuu176 xuu178",fontsize=16,color="magenta"];2859 -> 2865[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2859 -> 2866[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2859 -> 2867[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2859 -> 2868[label="",style="dashed", color="magenta", weight=3]; 35.39/13.70 2860[label="xuu178",fontsize=16,color="green",shape="box"];2861[label="xuu179",fontsize=16,color="green",shape="box"];2865[label="xuu179",fontsize=16,color="green",shape="box"];2866[label="xuu176",fontsize=16,color="green",shape="box"];2867[label="xuu178",fontsize=16,color="green",shape="box"];2868[label="xuu178",fontsize=16,color="green",shape="box"];} 35.39/13.70 35.39/13.70 ---------------------------------------- 35.39/13.70 35.39/13.70 (16) 35.39/13.70 Complex Obligation (AND) 35.39/13.70 35.39/13.70 ---------------------------------------- 35.39/13.70 35.39/13.70 (17) 35.39/13.70 Obligation: 35.39/13.70 Q DP problem: 35.39/13.70 The TRS P consists of the following rules: 35.39/13.70 35.39/13.70 new_primCmpNat(Succ(xuu49000), Succ(xuu51000)) -> new_primCmpNat(xuu49000, xuu51000) 35.39/13.70 35.39/13.70 R is empty. 35.39/13.70 Q is empty. 35.39/13.70 We have to consider all minimal (P,Q,R)-chains. 35.39/13.70 ---------------------------------------- 35.39/13.70 35.39/13.70 (18) QDPSizeChangeProof (EQUIVALENT) 35.39/13.70 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 35.39/13.70 35.39/13.70 From the DPs we obtained the following set of size-change graphs: 35.39/13.70 *new_primCmpNat(Succ(xuu49000), Succ(xuu51000)) -> new_primCmpNat(xuu49000, xuu51000) 35.39/13.70 The graph contains the following edges 1 > 1, 2 > 2 35.39/13.70 35.39/13.70 35.39/13.70 ---------------------------------------- 35.39/13.70 35.39/13.70 (19) 35.39/13.70 YES 35.39/13.70 35.39/13.70 ---------------------------------------- 35.39/13.70 35.39/13.70 (20) 35.39/13.70 Obligation: 35.39/13.70 Q DP problem: 35.39/13.70 The TRS P consists of the following rules: 35.39/13.70 35.39/13.70 new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, False, h, ba, bb) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_esEs8(new_compare211(@2(xuu25, xuu26), @2(xuu19, xuu20), new_esEs6(@2(xuu25, xuu26), @2(xuu19, xuu20), h, ba), h, ba), GT), h, ba, bb) 35.39/13.70 new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, True, h, ba, bb) -> new_addToFM_C(xuu23, @2(xuu25, xuu26), xuu27, h, ba, bb) 35.39/13.70 new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, True, h, ba, bb) -> new_addToFM_C(xuu24, @2(xuu25, xuu26), xuu27, h, ba, bb) 35.39/13.70 new_addToFM_C(Branch(@2(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), @2(xuu311000, xuu311001), xuu31101, bc, bd, be) -> new_addToFM_C2(xuu600, xuu601, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, new_esEs30(xuu311000, xuu311001, xuu600, xuu601, new_esEs31(xuu311000, xuu600, bc), bc, bd), bc, bd, be) 35.39/13.70 35.39/13.70 The TRS R consists of the following rules: 35.39/13.70 35.39/13.70 new_esEs28(xuu490, xuu510, app(ty_[], bga)) -> new_esEs20(xuu490, xuu510, bga) 35.39/13.70 new_esEs27(xuu4910, xuu5110, ty_Double) -> new_esEs15(xuu4910, xuu5110) 35.39/13.70 new_lt19(xuu4910, xuu5110, ty_Bool) -> new_lt5(xuu4910, xuu5110) 35.39/13.70 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 35.39/13.70 new_primCmpInt(Neg(Succ(xuu4900)), Pos(xuu510)) -> LT 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), app(app(ty_@2, cc), cd), bf) -> new_ltEs14(xuu4910, xuu5110, cc, cd) 35.39/13.70 new_primPlusNat0(Zero, Zero) -> Zero 35.39/13.70 new_esEs30(xuu36, xuu37, xuu38, xuu39, False, bee, bef) -> new_esEs8(new_compare211(@2(xuu36, xuu37), @2(xuu38, xuu39), False, bee, bef), LT) 35.39/13.70 new_pePe(True, xuu145) -> True 35.39/13.70 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Ordering, bhe) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.70 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, cdd), cde)) -> new_esEs6(xuu3110000, xuu6000, cdd, cde) 35.39/13.70 new_lt12(xuu4910, xuu5110, ty_Char) -> new_lt17(xuu4910, xuu5110) 35.39/13.70 new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bda)) -> new_esEs18(xuu3110001, xuu6001, bda) 35.39/13.70 new_lt4(xuu490, xuu510, ee, ef) -> new_esEs8(new_compare6(xuu490, xuu510, ee, ef), LT) 35.39/13.70 new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs7(xuu3110001, xuu6001, bcb, bcc, bcd) 35.39/13.70 new_ltEs18(xuu4911, xuu5111, ty_Float) -> new_ltEs12(xuu4911, xuu5111) 35.39/13.70 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 35.39/13.70 new_esEs27(xuu4910, xuu5110, app(app(ty_Either, chd), che)) -> new_esEs5(xuu4910, xuu5110, chd, che) 35.39/13.70 new_ltEs5(Right(xuu4910), Right(xuu5110), db, ty_Integer) -> new_ltEs8(xuu4910, xuu5110) 35.39/13.70 new_lt19(xuu4910, xuu5110, ty_Float) -> new_lt16(xuu4910, xuu5110) 35.39/13.70 new_lt20(xuu4911, xuu5111, app(ty_Ratio, dbb)) -> new_lt18(xuu4911, xuu5111, dbb) 35.39/13.70 new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT 35.39/13.70 new_esEs12(xuu3110001, xuu6001, ty_Double) -> new_esEs15(xuu3110001, xuu6001) 35.39/13.70 new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bcg), bch)) -> new_esEs6(xuu3110001, xuu6001, bcg, bch) 35.39/13.70 new_esEs27(xuu4910, xuu5110, ty_Integer) -> new_esEs16(xuu4910, xuu5110) 35.39/13.70 new_esEs13(xuu3110000, xuu6000, app(ty_[], bbf)) -> new_esEs20(xuu3110000, xuu6000, bbf) 35.39/13.70 new_esEs23(xuu3110001, xuu6001, ty_Integer) -> new_esEs16(xuu3110001, xuu6001) 35.39/13.70 new_esEs13(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.70 new_lt12(xuu4910, xuu5110, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_lt7(xuu4910, xuu5110, cfb, cfc, cfd) 35.39/13.70 new_ltEs19(xuu4912, xuu5112, app(ty_Maybe, dbg)) -> new_ltEs9(xuu4912, xuu5112, dbg) 35.39/13.70 new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat1(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Int, bf) -> new_ltEs6(xuu4910, xuu5110) 35.39/13.70 new_esEs11(xuu3110002, xuu6002, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs7(xuu3110002, xuu6002, gb, gc, gd) 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Double, bf) -> new_ltEs11(xuu4910, xuu5110) 35.39/13.70 new_ltEs18(xuu4911, xuu5111, ty_@0) -> new_ltEs10(xuu4911, xuu5111) 35.39/13.70 new_lt19(xuu4910, xuu5110, app(app(ty_@2, chf), chg)) -> new_lt4(xuu4910, xuu5110, chf, chg) 35.39/13.70 new_ltEs19(xuu4912, xuu5112, ty_Double) -> new_ltEs11(xuu4912, xuu5112) 35.39/13.70 new_ltEs5(Left(xuu4910), Right(xuu5110), db, bf) -> True 35.39/13.70 new_ltEs9(Just(xuu4910), Just(xuu5110), app(app(ty_@2, dde), ddf)) -> new_ltEs14(xuu4910, xuu5110, dde, ddf) 35.39/13.70 new_compare26(xuu490, xuu510, False, eh, fa, fb) -> new_compare113(xuu490, xuu510, new_ltEs16(xuu490, xuu510, eh, fa, fb), eh, fa, fb) 35.39/13.70 new_ltEs11(xuu491, xuu511) -> new_fsEs(new_compare28(xuu491, xuu511)) 35.39/13.70 new_ltEs20(xuu491, xuu511, app(ty_Maybe, dch)) -> new_ltEs9(xuu491, xuu511, dch) 35.39/13.70 new_esEs8(GT, GT) -> True 35.39/13.70 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 35.39/13.70 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 35.39/13.70 new_ltEs4(GT, EQ) -> False 35.39/13.70 new_fsEs(xuu133) -> new_not(new_esEs8(xuu133, GT)) 35.39/13.70 new_lt19(xuu4910, xuu5110, app(ty_Ratio, chh)) -> new_lt18(xuu4910, xuu5110, chh) 35.39/13.70 new_esEs31(xuu311000, xuu600, app(app(app(ty_@3, ff), fg), fh)) -> new_esEs7(xuu311000, xuu600, ff, fg, fh) 35.39/13.70 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cac), cad), bhe) -> new_esEs6(xuu3110000, xuu6000, cac, cad) 35.39/13.70 new_esEs8(EQ, EQ) -> True 35.39/13.70 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bdc)) -> new_esEs4(xuu3110000, xuu6000, bdc) 35.39/13.70 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Bool) -> new_ltEs17(xuu4910, xuu5110) 35.39/13.70 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cdf)) -> new_esEs18(xuu3110000, xuu6000, cdf) 35.39/13.70 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 35.39/13.70 new_compare18(xuu4900, xuu5100, ty_Int) -> new_compare9(xuu4900, xuu5100) 35.39/13.70 new_esEs31(xuu311000, xuu600, ty_Bool) -> new_esEs14(xuu311000, xuu600) 35.39/13.70 new_esEs12(xuu3110001, xuu6001, app(app(ty_Either, hg), hh)) -> new_esEs5(xuu3110001, xuu6001, hg, hh) 35.39/13.70 new_ltEs9(Just(xuu4910), Just(xuu5110), app(app(app(ty_@3, ddh), dea), deb)) -> new_ltEs16(xuu4910, xuu5110, ddh, dea, deb) 35.39/13.70 new_lt18(xuu490, xuu510, dec) -> new_esEs8(new_compare8(xuu490, xuu510, dec), LT) 35.39/13.70 new_not(True) -> False 35.39/13.70 new_esEs28(xuu490, xuu510, ty_Char) -> new_esEs17(xuu490, xuu510) 35.39/13.70 new_esEs25(xuu4910, xuu5110, ty_Bool) -> new_esEs14(xuu4910, xuu5110) 35.39/13.70 new_lt21(xuu490, xuu510, app(app(ty_Either, fc), fd)) -> new_lt9(xuu490, xuu510, fc, fd) 35.39/13.70 new_lt20(xuu4911, xuu5111, ty_Float) -> new_lt16(xuu4911, xuu5111) 35.39/13.70 new_esEs27(xuu4910, xuu5110, ty_Float) -> new_esEs19(xuu4910, xuu5110) 35.39/13.70 new_primCompAux00(xuu151, LT) -> LT 35.39/13.70 new_esEs13(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.70 new_primCmpNat0(Zero, Zero) -> EQ 35.39/13.70 new_compare17(xuu490, xuu510, False, fc, fd) -> GT 35.39/13.70 new_esEs12(xuu3110001, xuu6001, app(ty_Maybe, hc)) -> new_esEs4(xuu3110001, xuu6001, hc) 35.39/13.70 new_lt12(xuu4910, xuu5110, ty_Double) -> new_lt15(xuu4910, xuu5110) 35.39/13.70 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, app(ty_Maybe, cah)) -> new_esEs4(xuu3110000, xuu6000, cah) 35.39/13.70 new_compare28(Double(xuu4900, Pos(xuu49010)), Double(xuu5100, Pos(xuu51010))) -> new_compare9(new_sr(xuu4900, Pos(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) 35.39/13.70 new_lt21(xuu490, xuu510, ty_Bool) -> new_lt5(xuu490, xuu510) 35.39/13.70 new_esEs11(xuu3110002, xuu6002, app(ty_Maybe, ga)) -> new_esEs4(xuu3110002, xuu6002, ga) 35.39/13.70 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Bool, bhe) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.70 new_lt12(xuu4910, xuu5110, ty_@0) -> new_lt10(xuu4910, xuu5110) 35.39/13.70 new_esEs25(xuu4910, xuu5110, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs7(xuu4910, xuu5110, cfb, cfc, cfd) 35.39/13.70 new_esEs27(xuu4910, xuu5110, ty_Char) -> new_esEs17(xuu4910, xuu5110) 35.39/13.70 new_esEs28(xuu490, xuu510, ty_Float) -> new_esEs19(xuu490, xuu510) 35.39/13.70 new_esEs11(xuu3110002, xuu6002, app(ty_Ratio, ha)) -> new_esEs18(xuu3110002, xuu6002, ha) 35.39/13.70 new_esEs13(xuu3110000, xuu6000, app(app(ty_Either, bba), bbb)) -> new_esEs5(xuu3110000, xuu6000, bba, bbb) 35.39/13.70 new_ltEs10(xuu491, xuu511) -> new_fsEs(new_compare16(xuu491, xuu511)) 35.39/13.70 new_primEqNat0(Succ(xuu31100000), Zero) -> False 35.39/13.70 new_primEqNat0(Zero, Succ(xuu60000)) -> False 35.39/13.70 new_ltEs20(xuu491, xuu511, ty_Double) -> new_ltEs11(xuu491, xuu511) 35.39/13.70 new_compare112(xuu490, xuu510, False) -> GT 35.39/13.70 new_ltEs20(xuu491, xuu511, ty_Int) -> new_ltEs6(xuu491, xuu511) 35.39/13.70 new_ltEs19(xuu4912, xuu5112, ty_Int) -> new_ltEs6(xuu4912, xuu5112) 35.39/13.70 new_esEs27(xuu4910, xuu5110, ty_Int) -> new_esEs10(xuu4910, xuu5110) 35.39/13.70 new_esEs11(xuu3110002, xuu6002, app(app(ty_@2, gg), gh)) -> new_esEs6(xuu3110002, xuu6002, gg, gh) 35.39/13.70 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Char, bf) -> new_ltEs13(xuu4910, xuu5110) 35.39/13.70 new_lt21(xuu490, xuu510, ty_Float) -> new_lt16(xuu490, xuu510) 35.39/13.70 new_primCompAux00(xuu151, GT) -> GT 35.39/13.70 new_esEs14(False, True) -> False 35.39/13.70 new_esEs14(True, False) -> False 35.39/13.70 new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat2(xuu5100, Zero) 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), app(app(ty_Either, ca), cb), bf) -> new_ltEs5(xuu4910, xuu5110, ca, cb) 35.39/13.70 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs7(xuu3110000, xuu6000, ccg, cch, cda) 35.39/13.70 new_ltEs16(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), cgg, cgh, cha) -> new_pePe(new_lt19(xuu4910, xuu5110, cgg), new_asAs(new_esEs27(xuu4910, xuu5110, cgg), new_pePe(new_lt20(xuu4911, xuu5111, cgh), new_asAs(new_esEs26(xuu4911, xuu5111, cgh), new_ltEs19(xuu4912, xuu5112, cha))))) 35.39/13.70 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Ordering) -> new_ltEs4(xuu4910, xuu5110) 35.39/13.70 new_compare13(xuu490, xuu510, False, eg) -> GT 35.39/13.70 new_esEs23(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_@0, bf) -> new_ltEs10(xuu4910, xuu5110) 35.39/13.70 new_lt20(xuu4911, xuu5111, ty_Integer) -> new_lt13(xuu4911, xuu5111) 35.39/13.70 new_compare25(xuu490, xuu510, False, eg) -> new_compare13(xuu490, xuu510, new_ltEs9(xuu490, xuu510, eg), eg) 35.39/13.70 new_esEs28(xuu490, xuu510, ty_Int) -> new_esEs10(xuu490, xuu510) 35.39/13.70 new_primCmpInt(Pos(Succ(xuu4900)), Neg(xuu510)) -> GT 35.39/13.70 new_ltEs20(xuu491, xuu511, ty_@0) -> new_ltEs10(xuu491, xuu511) 35.39/13.70 new_compare9(xuu49, xuu51) -> new_primCmpInt(xuu49, xuu51) 35.39/13.70 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Integer) -> new_ltEs8(xuu4910, xuu5110) 35.39/13.70 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_[], caf), bhe) -> new_esEs20(xuu3110000, xuu6000, caf) 35.39/13.70 new_esEs29(xuu3110000, xuu6000, app(ty_[], dga)) -> new_esEs20(xuu3110000, xuu6000, dga) 35.39/13.70 new_esEs12(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 35.39/13.70 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, bhd), bhe) -> new_esEs4(xuu3110000, xuu6000, bhd) 35.39/13.70 new_lt19(xuu4910, xuu5110, ty_Integer) -> new_lt13(xuu4910, xuu5110) 35.39/13.70 new_primCmpNat0(Zero, Succ(xuu51000)) -> LT 35.39/13.70 new_compare18(xuu4900, xuu5100, app(ty_[], bgb)) -> new_compare0(xuu4900, xuu5100, bgb) 35.39/13.70 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bec)) -> new_esEs18(xuu3110000, xuu6000, bec) 35.39/13.70 new_ltEs19(xuu4912, xuu5112, ty_@0) -> new_ltEs10(xuu4912, xuu5112) 35.39/13.70 new_esEs26(xuu4911, xuu5111, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs7(xuu4911, xuu5111, dbc, dbd, dbe) 35.39/13.70 new_esEs20([], [], deg) -> True 35.39/13.70 new_esEs29(xuu3110000, xuu6000, ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.70 new_compare210(xuu490, xuu510, True) -> EQ 35.39/13.70 new_esEs32(xuu37, xuu39, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs7(xuu37, xuu39, beh, bfa, bfb) 35.39/13.70 new_compare18(xuu4900, xuu5100, app(ty_Ratio, bgh)) -> new_compare8(xuu4900, xuu5100, bgh) 35.39/13.70 new_esEs32(xuu37, xuu39, ty_Integer) -> new_esEs16(xuu37, xuu39) 35.39/13.70 new_primCmpNat0(Succ(xuu49000), Zero) -> GT 35.39/13.70 new_pePe(False, xuu145) -> xuu145 35.39/13.70 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bea), beb)) -> new_esEs6(xuu3110000, xuu6000, bea, beb) 35.39/13.70 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.70 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.70 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.70 new_lt13(xuu490, xuu510) -> new_esEs8(new_compare11(xuu490, xuu510), LT) 35.39/13.70 new_esEs26(xuu4911, xuu5111, ty_Bool) -> new_esEs14(xuu4911, xuu5111) 35.39/13.70 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Float, bhe) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.70 new_ltEs20(xuu491, xuu511, ty_Char) -> new_ltEs13(xuu491, xuu511) 35.39/13.70 new_esEs26(xuu4911, xuu5111, ty_@0) -> new_esEs9(xuu4911, xuu5111) 35.39/13.70 new_compare111(xuu121, xuu122, xuu123, xuu124, False, xuu126, ccb, ccc) -> new_compare110(xuu121, xuu122, xuu123, xuu124, xuu126, ccb, ccc) 35.39/13.70 new_esEs27(xuu4910, xuu5110, app(ty_[], chb)) -> new_esEs20(xuu4910, xuu5110, chb) 35.39/13.70 new_ltEs18(xuu4911, xuu5111, ty_Bool) -> new_ltEs17(xuu4911, xuu5111) 35.39/13.70 new_lt20(xuu4911, xuu5111, app(ty_[], dad)) -> new_lt11(xuu4911, xuu5111, dad) 35.39/13.70 new_esEs8(LT, EQ) -> False 35.39/13.70 new_esEs8(EQ, LT) -> False 35.39/13.70 new_compare18(xuu4900, xuu5100, ty_Double) -> new_compare28(xuu4900, xuu5100) 35.39/13.70 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 35.39/13.70 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 35.39/13.70 new_compare28(Double(xuu4900, Pos(xuu49010)), Double(xuu5100, Neg(xuu51010))) -> new_compare9(new_sr(xuu4900, Pos(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) 35.39/13.70 new_compare28(Double(xuu4900, Neg(xuu49010)), Double(xuu5100, Pos(xuu51010))) -> new_compare9(new_sr(xuu4900, Neg(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), app(ty_Maybe, bh), bf) -> new_ltEs9(xuu4910, xuu5110, bh) 35.39/13.70 new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 35.39/13.70 new_lt8(xuu490, xuu510) -> new_esEs8(new_compare9(xuu490, xuu510), LT) 35.39/13.70 new_ltEs4(LT, GT) -> True 35.39/13.70 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Char) -> new_ltEs13(xuu4910, xuu5110) 35.39/13.70 new_esEs12(xuu3110001, xuu6001, app(ty_Ratio, bac)) -> new_esEs18(xuu3110001, xuu6001, bac) 35.39/13.70 new_esEs13(xuu3110000, xuu6000, ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.70 new_compare5(Float(xuu4900, Pos(xuu49010)), Float(xuu5100, Neg(xuu51010))) -> new_compare9(new_sr(xuu4900, Pos(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) 35.39/13.70 new_compare5(Float(xuu4900, Neg(xuu49010)), Float(xuu5100, Pos(xuu51010))) -> new_compare9(new_sr(xuu4900, Neg(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) 35.39/13.70 new_ltEs19(xuu4912, xuu5112, ty_Char) -> new_ltEs13(xuu4912, xuu5112) 35.39/13.70 new_esEs32(xuu37, xuu39, ty_Double) -> new_esEs15(xuu37, xuu39) 35.39/13.70 new_compare18(xuu4900, xuu5100, ty_Ordering) -> new_compare12(xuu4900, xuu5100) 35.39/13.70 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Double) -> new_ltEs11(xuu4910, xuu5110) 35.39/13.70 new_ltEs19(xuu4912, xuu5112, app(app(ty_@2, dcb), dcc)) -> new_ltEs14(xuu4912, xuu5112, dcb, dcc) 35.39/13.70 new_esEs6(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bbg, bbh) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bbg), new_esEs21(xuu3110001, xuu6001, bbh)) 35.39/13.70 new_esEs25(xuu4910, xuu5110, ty_Ordering) -> new_esEs8(xuu4910, xuu5110) 35.39/13.70 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 35.39/13.70 new_ltEs18(xuu4911, xuu5111, ty_Double) -> new_ltEs11(xuu4911, xuu5111) 35.39/13.70 new_esEs28(xuu490, xuu510, ty_Integer) -> new_esEs16(xuu490, xuu510) 35.39/13.70 new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT 35.39/13.70 new_esEs25(xuu4910, xuu5110, app(ty_[], cec)) -> new_esEs20(xuu4910, xuu5110, cec) 35.39/13.70 new_ltEs4(LT, LT) -> True 35.39/13.70 new_ltEs4(EQ, LT) -> False 35.39/13.70 new_ltEs18(xuu4911, xuu5111, app(app(app(ty_@3, cgd), cge), cgf)) -> new_ltEs16(xuu4911, xuu5111, cgd, cge, cgf) 35.39/13.70 new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 35.39/13.70 new_compare18(xuu4900, xuu5100, ty_Char) -> new_compare29(xuu4900, xuu5100) 35.39/13.70 new_esEs28(xuu490, xuu510, ty_Double) -> new_esEs15(xuu490, xuu510) 35.39/13.70 new_esEs28(xuu490, xuu510, ty_Bool) -> new_esEs14(xuu490, xuu510) 35.39/13.70 new_esEs26(xuu4911, xuu5111, app(app(ty_@2, dah), dba)) -> new_esEs6(xuu4911, xuu5111, dah, dba) 35.39/13.70 new_esEs28(xuu490, xuu510, ty_@0) -> new_esEs9(xuu490, xuu510) 35.39/13.70 new_esEs32(xuu37, xuu39, app(app(ty_Either, bfc), bfd)) -> new_esEs5(xuu37, xuu39, bfc, bfd) 35.39/13.70 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs7(xuu3110000, xuu6000, bdd, bde, bdf) 35.39/13.70 new_esEs29(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.70 new_esEs20(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), deg) -> new_asAs(new_esEs29(xuu3110000, xuu6000, deg), new_esEs20(xuu3110001, xuu6001, deg)) 35.39/13.70 new_esEs12(xuu3110001, xuu6001, app(app(ty_@2, baa), bab)) -> new_esEs6(xuu3110001, xuu6001, baa, bab) 35.39/13.70 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, app(ty_Ratio, cbh)) -> new_esEs18(xuu3110000, xuu6000, cbh) 35.39/13.70 new_primMulNat0(Succ(xuu311000100), Zero) -> Zero 35.39/13.70 new_primMulNat0(Zero, Succ(xuu600000)) -> Zero 35.39/13.70 new_lt21(xuu490, xuu510, ty_Integer) -> new_lt13(xuu490, xuu510) 35.39/13.70 new_lt19(xuu4910, xuu5110, app(app(ty_Either, chd), che)) -> new_lt9(xuu4910, xuu5110, chd, che) 35.39/13.70 new_esEs31(xuu311000, xuu600, app(ty_Maybe, cce)) -> new_esEs4(xuu311000, xuu600, cce) 35.39/13.70 new_primPlusNat1(Succ(xuu1120), xuu600000) -> Succ(Succ(new_primPlusNat0(xuu1120, xuu600000))) 35.39/13.70 new_ltEs19(xuu4912, xuu5112, ty_Float) -> new_ltEs12(xuu4912, xuu5112) 35.39/13.70 new_esEs13(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.70 new_lt20(xuu4911, xuu5111, ty_@0) -> new_lt10(xuu4911, xuu5111) 35.39/13.70 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, caa), cab), bhe) -> new_esEs5(xuu3110000, xuu6000, caa, cab) 35.39/13.70 new_primPlusNat0(Succ(xuu41200), Zero) -> Succ(xuu41200) 35.39/13.70 new_primPlusNat0(Zero, Succ(xuu10800)) -> Succ(xuu10800) 35.39/13.70 new_lt19(xuu4910, xuu5110, app(ty_[], chb)) -> new_lt11(xuu4910, xuu5110, chb) 35.39/13.70 new_esEs32(xuu37, xuu39, ty_Int) -> new_esEs10(xuu37, xuu39) 35.39/13.70 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, app(app(app(ty_@3, cba), cbb), cbc)) -> new_esEs7(xuu3110000, xuu6000, cba, cbb, cbc) 35.39/13.70 new_ltEs9(Just(xuu4910), Just(xuu5110), app(app(ty_Either, ddc), ddd)) -> new_ltEs5(xuu4910, xuu5110, ddc, ddd) 35.39/13.70 new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bce), bcf)) -> new_esEs5(xuu3110001, xuu6001, bce, bcf) 35.39/13.70 new_esEs26(xuu4911, xuu5111, app(ty_Ratio, dbb)) -> new_esEs18(xuu4911, xuu5111, dbb) 35.39/13.70 new_primPlusNat1(Zero, xuu600000) -> Succ(xuu600000) 35.39/13.70 new_ltEs15(xuu491, xuu511, cdh) -> new_fsEs(new_compare8(xuu491, xuu511, cdh)) 35.39/13.70 new_compare17(xuu490, xuu510, True, fc, fd) -> LT 35.39/13.70 new_compare6(xuu490, xuu510, ee, ef) -> new_compare211(xuu490, xuu510, new_esEs6(xuu490, xuu510, ee, ef), ee, ef) 35.39/13.70 new_lt12(xuu4910, xuu5110, ty_Int) -> new_lt8(xuu4910, xuu5110) 35.39/13.70 new_esEs8(LT, LT) -> True 35.39/13.70 new_compare15(xuu490, xuu510, fc, fd) -> new_compare27(xuu490, xuu510, new_esEs5(xuu490, xuu510, fc, fd), fc, fd) 35.39/13.70 new_ltEs20(xuu491, xuu511, ty_Float) -> new_ltEs12(xuu491, xuu511) 35.39/13.70 new_esEs12(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) 35.39/13.70 new_esEs30(xuu36, xuu37, xuu38, xuu39, True, bee, bef) -> new_esEs8(new_compare211(@2(xuu36, xuu37), @2(xuu38, xuu39), new_esEs32(xuu37, xuu39, bef), bee, bef), LT) 35.39/13.70 new_ltEs20(xuu491, xuu511, app(app(ty_@2, cea), ceb)) -> new_ltEs14(xuu491, xuu511, cea, ceb) 35.39/13.70 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.70 new_esEs25(xuu4910, xuu5110, ty_Float) -> new_esEs19(xuu4910, xuu5110) 35.39/13.70 new_ltEs5(Right(xuu4910), Right(xuu5110), db, ty_Float) -> new_ltEs12(xuu4910, xuu5110) 35.39/13.70 new_esEs11(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 35.39/13.70 new_esEs27(xuu4910, xuu5110, ty_@0) -> new_esEs9(xuu4910, xuu5110) 35.39/13.70 new_lt21(xuu490, xuu510, app(ty_Ratio, dec)) -> new_lt18(xuu490, xuu510, dec) 35.39/13.70 new_esEs13(xuu3110000, xuu6000, app(app(ty_@2, bbc), bbd)) -> new_esEs6(xuu3110000, xuu6000, bbc, bbd) 35.39/13.70 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.70 new_ltEs18(xuu4911, xuu5111, app(ty_Maybe, cff)) -> new_ltEs9(xuu4911, xuu5111, cff) 35.39/13.70 new_ltEs4(LT, EQ) -> True 35.39/13.70 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.70 new_ltEs20(xuu491, xuu511, app(app(app(ty_@3, cgg), cgh), cha)) -> new_ltEs16(xuu491, xuu511, cgg, cgh, cha) 35.39/13.70 new_esEs29(xuu3110000, xuu6000, ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.70 new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bca)) -> new_esEs4(xuu3110001, xuu6001, bca) 35.39/13.70 new_lt12(xuu4910, xuu5110, app(ty_Maybe, ced)) -> new_lt14(xuu4910, xuu5110, ced) 35.39/13.70 new_esEs26(xuu4911, xuu5111, app(ty_[], dad)) -> new_esEs20(xuu4911, xuu5111, dad) 35.39/13.70 new_esEs13(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Ordering, bf) -> new_ltEs4(xuu4910, xuu5110) 35.39/13.70 new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 35.39/13.70 new_compare25(xuu490, xuu510, True, eg) -> EQ 35.39/13.70 new_ltEs5(Right(xuu4910), Right(xuu5110), db, app(ty_Ratio, ea)) -> new_ltEs15(xuu4910, xuu5110, ea) 35.39/13.70 new_esEs14(True, True) -> True 35.39/13.70 new_ltEs20(xuu491, xuu511, ty_Bool) -> new_ltEs17(xuu491, xuu511) 35.39/13.70 new_esEs13(xuu3110000, xuu6000, app(ty_Ratio, bbe)) -> new_esEs18(xuu3110000, xuu6000, bbe) 35.39/13.70 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, app(app(ty_@2, cbf), cbg)) -> new_esEs6(xuu3110000, xuu6000, cbf, cbg) 35.39/13.70 new_esEs25(xuu4910, xuu5110, app(app(ty_@2, ceg), ceh)) -> new_esEs6(xuu4910, xuu5110, ceg, ceh) 35.39/13.70 new_esEs11(xuu3110002, xuu6002, app(app(ty_Either, ge), gf)) -> new_esEs5(xuu3110002, xuu6002, ge, gf) 35.39/13.70 new_esEs32(xuu37, xuu39, app(ty_Maybe, beg)) -> new_esEs4(xuu37, xuu39, beg) 35.39/13.70 new_ltEs4(EQ, EQ) -> True 35.39/13.70 new_esEs12(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 35.39/13.70 new_esEs29(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.70 new_esEs31(xuu311000, xuu600, ty_Int) -> new_esEs10(xuu311000, xuu600) 35.39/13.70 new_lt21(xuu490, xuu510, ty_@0) -> new_lt10(xuu490, xuu510) 35.39/13.70 new_ltEs18(xuu4911, xuu5111, ty_Integer) -> new_ltEs8(xuu4911, xuu5111) 35.39/13.70 new_esEs25(xuu4910, xuu5110, app(ty_Ratio, cfa)) -> new_esEs18(xuu4910, xuu5110, cfa) 35.39/13.70 new_esEs12(xuu3110001, xuu6001, app(app(app(ty_@3, hd), he), hf)) -> new_esEs7(xuu3110001, xuu6001, hd, he, hf) 35.39/13.70 new_compare18(xuu4900, xuu5100, ty_Integer) -> new_compare11(xuu4900, xuu5100) 35.39/13.70 new_ltEs9(Just(xuu4910), Just(xuu5110), app(ty_[], dda)) -> new_ltEs7(xuu4910, xuu5110, dda) 35.39/13.70 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bdg), bdh)) -> new_esEs5(xuu3110000, xuu6000, bdg, bdh) 35.39/13.70 new_compare19(xuu490, xuu510, eg) -> new_compare25(xuu490, xuu510, new_esEs4(xuu490, xuu510, eg), eg) 35.39/13.70 new_ltEs5(Right(xuu4910), Right(xuu5110), db, ty_Bool) -> new_ltEs17(xuu4910, xuu5110) 35.39/13.70 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, ccf)) -> new_esEs4(xuu3110000, xuu6000, ccf) 35.39/13.70 new_primCmpNat2(xuu4900, Zero) -> GT 35.39/13.70 new_esEs29(xuu3110000, xuu6000, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.70 new_compare210(xuu490, xuu510, False) -> new_compare112(xuu490, xuu510, new_ltEs17(xuu490, xuu510)) 35.39/13.70 new_compare24(xuu490, xuu510, False) -> new_compare10(xuu490, xuu510, new_ltEs4(xuu490, xuu510)) 35.39/13.70 new_compare26(xuu490, xuu510, True, eh, fa, fb) -> EQ 35.39/13.70 new_compare112(xuu490, xuu510, True) -> LT 35.39/13.70 new_compare18(xuu4900, xuu5100, app(app(app(ty_@3, bha), bhb), bhc)) -> new_compare14(xuu4900, xuu5100, bha, bhb, bhc) 35.39/13.70 new_esEs27(xuu4910, xuu5110, ty_Bool) -> new_esEs14(xuu4910, xuu5110) 35.39/13.70 new_esEs25(xuu4910, xuu5110, ty_Integer) -> new_esEs16(xuu4910, xuu5110) 35.39/13.70 new_ltEs19(xuu4912, xuu5112, app(app(ty_Either, dbh), dca)) -> new_ltEs5(xuu4912, xuu5112, dbh, dca) 35.39/13.70 new_compare18(xuu4900, xuu5100, ty_Bool) -> new_compare7(xuu4900, xuu5100) 35.39/13.70 new_lt19(xuu4910, xuu5110, app(ty_Maybe, chc)) -> new_lt14(xuu4910, xuu5110, chc) 35.39/13.70 new_lt20(xuu4911, xuu5111, ty_Char) -> new_lt17(xuu4911, xuu5111) 35.39/13.70 new_compare7(xuu490, xuu510) -> new_compare210(xuu490, xuu510, new_esEs14(xuu490, xuu510)) 35.39/13.70 new_primMulInt(Pos(xuu31100010), Neg(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 35.39/13.70 new_primMulInt(Neg(xuu31100010), Pos(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 35.39/13.70 new_esEs13(xuu3110000, xuu6000, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs7(xuu3110000, xuu6000, baf, bag, bah) 35.39/13.70 new_lt12(xuu4910, xuu5110, app(ty_Ratio, cfa)) -> new_lt18(xuu4910, xuu5110, cfa) 35.39/13.70 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.70 new_primCmpNat1(Succ(xuu5100), xuu4900) -> new_primCmpNat0(xuu5100, xuu4900) 35.39/13.70 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.70 new_lt10(xuu490, xuu510) -> new_esEs8(new_compare16(xuu490, xuu510), LT) 35.39/13.70 new_ltEs9(Just(xuu4910), Just(xuu5110), app(ty_Ratio, ddg)) -> new_ltEs15(xuu4910, xuu5110, ddg) 35.39/13.70 new_lt12(xuu4910, xuu5110, ty_Integer) -> new_lt13(xuu4910, xuu5110) 35.39/13.70 new_ltEs18(xuu4911, xuu5111, app(app(ty_@2, cga), cgb)) -> new_ltEs14(xuu4911, xuu5111, cga, cgb) 35.39/13.70 new_sr0(Integer(xuu51000), Integer(xuu49010)) -> Integer(new_primMulInt(xuu51000, xuu49010)) 35.39/13.70 new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) 35.39/13.70 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.70 new_ltEs19(xuu4912, xuu5112, app(app(app(ty_@3, dce), dcf), dcg)) -> new_ltEs16(xuu4912, xuu5112, dce, dcf, dcg) 35.39/13.70 new_ltEs6(xuu491, xuu511) -> new_fsEs(new_compare9(xuu491, xuu511)) 35.39/13.70 new_ltEs19(xuu4912, xuu5112, ty_Bool) -> new_ltEs17(xuu4912, xuu5112) 35.39/13.70 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_@0) -> new_ltEs10(xuu4910, xuu5110) 35.39/13.70 new_ltEs18(xuu4911, xuu5111, ty_Ordering) -> new_ltEs4(xuu4911, xuu5111) 35.39/13.70 new_esEs28(xuu490, xuu510, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs7(xuu490, xuu510, eh, fa, fb) 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Bool, bf) -> new_ltEs17(xuu4910, xuu5110) 35.39/13.70 new_esEs31(xuu311000, xuu600, ty_Float) -> new_esEs19(xuu311000, xuu600) 35.39/13.70 new_primCompAux0(xuu4900, xuu5100, xuu146, bga) -> new_primCompAux00(xuu146, new_compare18(xuu4900, xuu5100, bga)) 35.39/13.70 new_compare111(xuu121, xuu122, xuu123, xuu124, True, xuu126, ccb, ccc) -> new_compare110(xuu121, xuu122, xuu123, xuu124, True, ccb, ccc) 35.39/13.70 new_esEs25(xuu4910, xuu5110, ty_Char) -> new_esEs17(xuu4910, xuu5110) 35.39/13.70 new_ltEs19(xuu4912, xuu5112, ty_Integer) -> new_ltEs8(xuu4912, xuu5112) 35.39/13.70 new_ltEs9(Nothing, Just(xuu5110), dch) -> True 35.39/13.70 new_compare0([], :(xuu5100, xuu5101), bga) -> LT 35.39/13.70 new_asAs(True, xuu72) -> xuu72 35.39/13.70 new_lt12(xuu4910, xuu5110, ty_Bool) -> new_lt5(xuu4910, xuu5110) 35.39/13.70 new_ltEs5(Right(xuu4910), Left(xuu5110), db, bf) -> False 35.39/13.70 new_compare113(xuu490, xuu510, True, eh, fa, fb) -> LT 35.39/13.70 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.70 new_ltEs18(xuu4911, xuu5111, ty_Char) -> new_ltEs13(xuu4911, xuu5111) 35.39/13.70 new_esEs31(xuu311000, xuu600, ty_Double) -> new_esEs15(xuu311000, xuu600) 35.39/13.70 new_esEs25(xuu4910, xuu5110, ty_Double) -> new_esEs15(xuu4910, xuu5110) 35.39/13.70 new_lt16(xuu490, xuu510) -> new_esEs8(new_compare5(xuu490, xuu510), LT) 35.39/13.70 new_esEs31(xuu311000, xuu600, ty_Char) -> new_esEs17(xuu311000, xuu600) 35.39/13.70 new_compare14(xuu490, xuu510, eh, fa, fb) -> new_compare26(xuu490, xuu510, new_esEs7(xuu490, xuu510, eh, fa, fb), eh, fa, fb) 35.39/13.70 new_lt20(xuu4911, xuu5111, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_lt7(xuu4911, xuu5111, dbc, dbd, dbe) 35.39/13.70 new_esEs31(xuu311000, xuu600, ty_Integer) -> new_esEs16(xuu311000, xuu600) 35.39/13.70 new_primCmpNat2(xuu4900, Succ(xuu5100)) -> new_primCmpNat0(xuu4900, xuu5100) 35.39/13.70 new_lt19(xuu4910, xuu5110, ty_@0) -> new_lt10(xuu4910, xuu5110) 35.39/13.70 new_ltEs20(xuu491, xuu511, app(app(ty_Either, db), bf)) -> new_ltEs5(xuu491, xuu511, db, bf) 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), app(app(app(ty_@3, cf), cg), da), bf) -> new_ltEs16(xuu4910, xuu5110, cf, cg, da) 35.39/13.70 new_ltEs20(xuu491, xuu511, ty_Integer) -> new_ltEs8(xuu491, xuu511) 35.39/13.70 new_compare13(xuu490, xuu510, True, eg) -> LT 35.39/13.70 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, cdb), cdc)) -> new_esEs5(xuu3110000, xuu6000, cdb, cdc) 35.39/13.70 new_lt21(xuu490, xuu510, app(ty_[], bga)) -> new_lt11(xuu490, xuu510, bga) 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Integer, bf) -> new_ltEs8(xuu4910, xuu5110) 35.39/13.70 new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 35.39/13.70 new_esEs11(xuu3110002, xuu6002, app(ty_[], hb)) -> new_esEs20(xuu3110002, xuu6002, hb) 35.39/13.70 new_lt19(xuu4910, xuu5110, ty_Int) -> new_lt8(xuu4910, xuu5110) 35.39/13.70 new_ltEs5(Right(xuu4910), Right(xuu5110), db, app(app(ty_Either, de), df)) -> new_ltEs5(xuu4910, xuu5110, de, df) 35.39/13.70 new_lt11(xuu490, xuu510, bga) -> new_esEs8(new_compare0(xuu490, xuu510, bga), LT) 35.39/13.70 new_esEs31(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) 35.39/13.70 new_esEs29(xuu3110000, xuu6000, app(app(ty_Either, dfd), dfe)) -> new_esEs5(xuu3110000, xuu6000, dfd, dfe) 35.39/13.70 new_esEs25(xuu4910, xuu5110, ty_@0) -> new_esEs9(xuu4910, xuu5110) 35.39/13.70 new_esEs9(@0, @0) -> True 35.39/13.70 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.70 new_primCompAux00(xuu151, EQ) -> xuu151 35.39/13.70 new_compare0([], [], bga) -> EQ 35.39/13.70 new_sr(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) 35.39/13.70 new_compare211(@2(xuu490, xuu491), @2(xuu510, xuu511), False, dee, def) -> new_compare111(xuu490, xuu491, xuu510, xuu511, new_lt21(xuu490, xuu510, dee), new_asAs(new_esEs28(xuu490, xuu510, dee), new_ltEs20(xuu491, xuu511, def)), dee, def) 35.39/13.70 new_esEs27(xuu4910, xuu5110, app(app(ty_@2, chf), chg)) -> new_esEs6(xuu4910, xuu5110, chf, chg) 35.39/13.70 new_esEs17(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 35.39/13.70 new_primMulNat0(Zero, Zero) -> Zero 35.39/13.70 new_lt19(xuu4910, xuu5110, app(app(app(ty_@3, daa), dab), dac)) -> new_lt7(xuu4910, xuu5110, daa, dab, dac) 35.39/13.70 new_esEs11(xuu3110002, xuu6002, ty_Char) -> new_esEs17(xuu3110002, xuu6002) 35.39/13.70 new_esEs11(xuu3110002, xuu6002, ty_Float) -> new_esEs19(xuu3110002, xuu6002) 35.39/13.70 new_compare16(@0, @0) -> EQ 35.39/13.70 new_ltEs13(xuu491, xuu511) -> new_fsEs(new_compare29(xuu491, xuu511)) 35.39/13.70 new_compare10(xuu490, xuu510, False) -> GT 35.39/13.70 new_esEs27(xuu4910, xuu5110, ty_Ordering) -> new_esEs8(xuu4910, xuu5110) 35.39/13.70 new_esEs31(xuu311000, xuu600, app(ty_[], deg)) -> new_esEs20(xuu311000, xuu600, deg) 35.39/13.70 new_lt12(xuu4910, xuu5110, app(app(ty_@2, ceg), ceh)) -> new_lt4(xuu4910, xuu5110, ceg, ceh) 35.39/13.70 new_compare11(Integer(xuu4900), Integer(xuu5100)) -> new_primCmpInt(xuu4900, xuu5100) 35.39/13.70 new_lt12(xuu4910, xuu5110, ty_Ordering) -> new_lt6(xuu4910, xuu5110) 35.39/13.70 new_esEs28(xuu490, xuu510, app(ty_Maybe, eg)) -> new_esEs4(xuu490, xuu510, eg) 35.39/13.70 new_compare12(xuu490, xuu510) -> new_compare24(xuu490, xuu510, new_esEs8(xuu490, xuu510)) 35.39/13.70 new_primCmpNat1(Zero, xuu4900) -> LT 35.39/13.70 new_esEs13(xuu3110000, xuu6000, app(ty_Maybe, bae)) -> new_esEs4(xuu3110000, xuu6000, bae) 35.39/13.70 new_esEs4(Nothing, Nothing, cce) -> True 35.39/13.70 new_esEs26(xuu4911, xuu5111, ty_Float) -> new_esEs19(xuu4911, xuu5111) 35.39/13.70 new_esEs26(xuu4911, xuu5111, ty_Char) -> new_esEs17(xuu4911, xuu5111) 35.39/13.70 new_lt20(xuu4911, xuu5111, app(app(ty_Either, daf), dag)) -> new_lt9(xuu4911, xuu5111, daf, dag) 35.39/13.70 new_compare8(:%(xuu4900, xuu4901), :%(xuu5100, xuu5101), ty_Int) -> new_compare9(new_sr(xuu4900, xuu5101), new_sr(xuu5100, xuu4901)) 35.39/13.70 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, app(app(ty_Either, cbd), cbe)) -> new_esEs5(xuu3110000, xuu6000, cbd, cbe) 35.39/13.70 new_esEs4(Nothing, Just(xuu6000), cce) -> False 35.39/13.70 new_esEs4(Just(xuu3110000), Nothing, cce) -> False 35.39/13.70 new_lt7(xuu490, xuu510, eh, fa, fb) -> new_esEs8(new_compare14(xuu490, xuu510, eh, fa, fb), LT) 35.39/13.70 new_esEs27(xuu4910, xuu5110, app(ty_Ratio, chh)) -> new_esEs18(xuu4910, xuu5110, chh) 35.39/13.70 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.70 new_esEs28(xuu490, xuu510, app(ty_Ratio, dec)) -> new_esEs18(xuu490, xuu510, dec) 35.39/13.70 new_lt21(xuu490, xuu510, app(ty_Maybe, eg)) -> new_lt14(xuu490, xuu510, eg) 35.39/13.70 new_ltEs5(Right(xuu4910), Right(xuu5110), db, ty_@0) -> new_ltEs10(xuu4910, xuu5110) 35.39/13.70 new_esEs28(xuu490, xuu510, app(app(ty_@2, ee), ef)) -> new_esEs6(xuu490, xuu510, ee, ef) 35.39/13.70 new_esEs32(xuu37, xuu39, ty_Char) -> new_esEs17(xuu37, xuu39) 35.39/13.70 new_esEs32(xuu37, xuu39, ty_Ordering) -> new_esEs8(xuu37, xuu39) 35.39/13.70 new_esEs11(xuu3110002, xuu6002, ty_Int) -> new_esEs10(xuu3110002, xuu6002) 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), app(ty_[], bg), bf) -> new_ltEs7(xuu4910, xuu5110, bg) 35.39/13.70 new_lt21(xuu490, xuu510, ty_Int) -> new_lt8(xuu490, xuu510) 35.39/13.70 new_ltEs17(False, False) -> True 35.39/13.70 new_ltEs18(xuu4911, xuu5111, app(ty_[], cfe)) -> new_ltEs7(xuu4911, xuu5111, cfe) 35.39/13.70 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.70 new_lt20(xuu4911, xuu5111, app(ty_Maybe, dae)) -> new_lt14(xuu4911, xuu5111, dae) 35.39/13.70 new_lt5(xuu490, xuu510) -> new_esEs8(new_compare7(xuu490, xuu510), LT) 35.39/13.70 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 35.39/13.70 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 35.39/13.70 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_@0, bhe) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.70 new_esEs15(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 35.39/13.70 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 35.39/13.70 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.70 new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs15(xuu3110001, xuu6001) 35.39/13.70 new_compare24(xuu490, xuu510, True) -> EQ 35.39/13.70 new_ltEs5(Right(xuu4910), Right(xuu5110), db, ty_Char) -> new_ltEs13(xuu4910, xuu5110) 35.39/13.70 new_esEs12(xuu3110001, xuu6001, ty_Bool) -> new_esEs14(xuu3110001, xuu6001) 35.39/13.70 new_esEs25(xuu4910, xuu5110, app(app(ty_Either, cee), cef)) -> new_esEs5(xuu4910, xuu5110, cee, cef) 35.39/13.70 new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) 35.39/13.70 new_ltEs5(Right(xuu4910), Right(xuu5110), db, ty_Double) -> new_ltEs11(xuu4910, xuu5110) 35.39/13.70 new_ltEs18(xuu4911, xuu5111, app(app(ty_Either, cfg), cfh)) -> new_ltEs5(xuu4911, xuu5111, cfg, cfh) 35.39/13.70 new_ltEs5(Right(xuu4910), Right(xuu5110), db, ty_Int) -> new_ltEs6(xuu4910, xuu5110) 35.39/13.70 new_esEs26(xuu4911, xuu5111, ty_Ordering) -> new_esEs8(xuu4911, xuu5111) 35.39/13.70 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 35.39/13.70 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 35.39/13.70 new_esEs14(False, False) -> True 35.39/13.70 new_ltEs9(Just(xuu4910), Just(xuu5110), app(ty_Maybe, ddb)) -> new_ltEs9(xuu4910, xuu5110, ddb) 35.39/13.70 new_ltEs4(EQ, GT) -> True 35.39/13.70 new_esEs31(xuu311000, xuu600, app(app(ty_Either, cag), bhe)) -> new_esEs5(xuu311000, xuu600, cag, bhe) 35.39/13.70 new_esEs29(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.70 new_compare211(xuu49, xuu51, True, dee, def) -> EQ 35.39/13.70 new_esEs20(:(xuu3110000, xuu3110001), [], deg) -> False 35.39/13.70 new_esEs20([], :(xuu6000, xuu6001), deg) -> False 35.39/13.70 new_compare27(xuu490, xuu510, False, fc, fd) -> new_compare17(xuu490, xuu510, new_ltEs5(xuu490, xuu510, fc, fd), fc, fd) 35.39/13.70 new_esEs29(xuu3110000, xuu6000, app(ty_Maybe, deh)) -> new_esEs4(xuu3110000, xuu6000, deh) 35.39/13.70 new_ltEs5(Right(xuu4910), Right(xuu5110), db, app(ty_[], dc)) -> new_ltEs7(xuu4910, xuu5110, dc) 35.39/13.70 new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs16(xuu3110001, xuu6001) 35.39/13.70 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 35.39/13.70 new_ltEs17(True, False) -> False 35.39/13.70 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.70 new_esEs19(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 35.39/13.70 new_compare18(xuu4900, xuu5100, app(app(ty_Either, bgd), bge)) -> new_compare15(xuu4900, xuu5100, bgd, bge) 35.39/13.70 new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ff, fg, fh) -> new_asAs(new_esEs13(xuu3110000, xuu6000, ff), new_asAs(new_esEs12(xuu3110001, xuu6001, fg), new_esEs11(xuu3110002, xuu6002, fh))) 35.39/13.70 new_esEs26(xuu4911, xuu5111, app(app(ty_Either, daf), dag)) -> new_esEs5(xuu4911, xuu5111, daf, dag) 35.39/13.70 new_lt15(xuu490, xuu510) -> new_esEs8(new_compare28(xuu490, xuu510), LT) 35.39/13.70 new_esEs32(xuu37, xuu39, ty_@0) -> new_esEs9(xuu37, xuu39) 35.39/13.70 new_ltEs17(False, True) -> True 35.39/13.70 new_ltEs7(xuu491, xuu511, ded) -> new_fsEs(new_compare0(xuu491, xuu511, ded)) 35.39/13.70 new_lt21(xuu490, xuu510, app(app(app(ty_@3, eh), fa), fb)) -> new_lt7(xuu490, xuu510, eh, fa, fb) 35.39/13.70 new_esEs11(xuu3110002, xuu6002, ty_Bool) -> new_esEs14(xuu3110002, xuu6002) 35.39/13.70 new_esEs18(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ccd) -> new_asAs(new_esEs24(xuu3110000, xuu6000, ccd), new_esEs23(xuu3110001, xuu6001, ccd)) 35.39/13.70 new_esEs11(xuu3110002, xuu6002, ty_Double) -> new_esEs15(xuu3110002, xuu6002) 35.39/13.70 new_esEs12(xuu3110001, xuu6001, app(ty_[], bad)) -> new_esEs20(xuu3110001, xuu6001, bad) 35.39/13.70 new_ltEs5(Right(xuu4910), Right(xuu5110), db, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs16(xuu4910, xuu5110, eb, ec, ed) 35.39/13.70 new_esEs29(xuu3110000, xuu6000, app(app(app(ty_@3, dfa), dfb), dfc)) -> new_esEs7(xuu3110000, xuu6000, dfa, dfb, dfc) 35.39/13.70 new_ltEs19(xuu4912, xuu5112, app(ty_[], dbf)) -> new_ltEs7(xuu4912, xuu5112, dbf) 35.39/13.70 new_esEs26(xuu4911, xuu5111, ty_Integer) -> new_esEs16(xuu4911, xuu5111) 35.39/13.70 new_not(False) -> True 35.39/13.70 new_compare18(xuu4900, xuu5100, app(ty_Maybe, bgc)) -> new_compare19(xuu4900, xuu5100, bgc) 35.39/13.70 new_ltEs12(xuu491, xuu511) -> new_fsEs(new_compare5(xuu491, xuu511)) 35.39/13.70 new_esEs31(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 35.39/13.70 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.70 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, app(ty_[], cca)) -> new_esEs20(xuu3110000, xuu6000, cca) 35.39/13.70 new_primCmpInt(Neg(Succ(xuu4900)), Neg(xuu510)) -> new_primCmpNat1(xuu510, xuu4900) 35.39/13.70 new_compare0(:(xuu4900, xuu4901), [], bga) -> GT 35.39/13.70 new_esEs8(LT, GT) -> False 35.39/13.70 new_esEs8(GT, LT) -> False 35.39/13.70 new_primPlusNat0(Succ(xuu41200), Succ(xuu10800)) -> Succ(Succ(new_primPlusNat0(xuu41200, xuu10800))) 35.39/13.70 new_esEs16(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 35.39/13.70 new_esEs26(xuu4911, xuu5111, ty_Double) -> new_esEs15(xuu4911, xuu5111) 35.39/13.70 new_compare18(xuu4900, xuu5100, ty_Float) -> new_compare5(xuu4900, xuu5100) 35.39/13.70 new_esEs5(Left(xuu3110000), Right(xuu6000), cag, bhe) -> False 35.39/13.70 new_esEs5(Right(xuu3110000), Left(xuu6000), cag, bhe) -> False 35.39/13.70 new_primCmpInt(Pos(Succ(xuu4900)), Pos(xuu510)) -> new_primCmpNat2(xuu4900, xuu510) 35.39/13.70 new_ltEs5(Right(xuu4910), Right(xuu5110), db, app(app(ty_@2, dg), dh)) -> new_ltEs14(xuu4910, xuu5110, dg, dh) 35.39/13.70 new_lt14(xuu490, xuu510, eg) -> new_esEs8(new_compare19(xuu490, xuu510, eg), LT) 35.39/13.70 new_compare28(Double(xuu4900, Neg(xuu49010)), Double(xuu5100, Neg(xuu51010))) -> new_compare9(new_sr(xuu4900, Neg(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) 35.39/13.70 new_esEs11(xuu3110002, xuu6002, ty_Integer) -> new_esEs16(xuu3110002, xuu6002) 35.39/13.70 new_compare27(xuu490, xuu510, True, fc, fd) -> EQ 35.39/13.70 new_ltEs20(xuu491, xuu511, app(ty_[], ded)) -> new_ltEs7(xuu491, xuu511, ded) 35.39/13.70 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Int) -> new_ltEs6(xuu4910, xuu5110) 35.39/13.70 new_ltEs4(GT, LT) -> False 35.39/13.70 new_esEs11(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) 35.39/13.70 new_ltEs18(xuu4911, xuu5111, ty_Int) -> new_ltEs6(xuu4911, xuu5111) 35.39/13.70 new_esEs29(xuu3110000, xuu6000, app(ty_Ratio, dfh)) -> new_esEs18(xuu3110000, xuu6000, dfh) 35.39/13.70 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Int, bhe) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.70 new_lt12(xuu4910, xuu5110, app(ty_[], cec)) -> new_lt11(xuu4910, xuu5110, cec) 35.39/13.70 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.70 new_esEs27(xuu4910, xuu5110, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs7(xuu4910, xuu5110, daa, dab, dac) 35.39/13.70 new_compare110(xuu121, xuu122, xuu123, xuu124, False, ccb, ccc) -> GT 35.39/13.70 new_lt20(xuu4911, xuu5111, ty_Int) -> new_lt8(xuu4911, xuu5111) 35.39/13.70 new_ltEs8(xuu491, xuu511) -> new_fsEs(new_compare11(xuu491, xuu511)) 35.39/13.70 new_esEs12(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 35.39/13.70 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.70 new_esEs29(xuu3110000, xuu6000, app(app(ty_@2, dff), dfg)) -> new_esEs6(xuu3110000, xuu6000, dff, dfg) 35.39/13.70 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.70 new_lt17(xuu490, xuu510) -> new_esEs8(new_compare29(xuu490, xuu510), LT) 35.39/13.70 new_esEs32(xuu37, xuu39, ty_Float) -> new_esEs19(xuu37, xuu39) 35.39/13.70 new_esEs24(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.70 new_compare5(Float(xuu4900, Neg(xuu49010)), Float(xuu5100, Neg(xuu51010))) -> new_compare9(new_sr(xuu4900, Neg(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) 35.39/13.70 new_esEs10(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 35.39/13.70 new_lt21(xuu490, xuu510, ty_Char) -> new_lt17(xuu490, xuu510) 35.39/13.70 new_ltEs5(Right(xuu4910), Right(xuu5110), db, ty_Ordering) -> new_ltEs4(xuu4910, xuu5110) 35.39/13.70 new_compare10(xuu490, xuu510, True) -> LT 35.39/13.70 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 35.39/13.70 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 35.39/13.70 new_lt21(xuu490, xuu510, ty_Double) -> new_lt15(xuu490, xuu510) 35.39/13.70 new_compare0(:(xuu4900, xuu4901), :(xuu5100, xuu5101), bga) -> new_primCompAux0(xuu4900, xuu5100, new_compare0(xuu4901, xuu5101, bga), bga) 35.39/13.70 new_esEs32(xuu37, xuu39, app(ty_Ratio, bfg)) -> new_esEs18(xuu37, xuu39, bfg) 35.39/13.70 new_lt20(xuu4911, xuu5111, app(app(ty_@2, dah), dba)) -> new_lt4(xuu4911, xuu5111, dah, dba) 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Float, bf) -> new_ltEs12(xuu4910, xuu5110) 35.39/13.70 new_esEs25(xuu4910, xuu5110, app(ty_Maybe, ced)) -> new_esEs4(xuu4910, xuu5110, ced) 35.39/13.70 new_lt21(xuu490, xuu510, ty_Ordering) -> new_lt6(xuu490, xuu510) 35.39/13.70 new_esEs32(xuu37, xuu39, app(app(ty_@2, bfe), bff)) -> new_esEs6(xuu37, xuu39, bfe, bff) 35.39/13.70 new_esEs25(xuu4910, xuu5110, ty_Int) -> new_esEs10(xuu4910, xuu5110) 35.39/13.70 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 35.39/13.70 new_compare8(:%(xuu4900, xuu4901), :%(xuu5100, xuu5101), ty_Integer) -> new_compare11(new_sr0(xuu4900, xuu5101), new_sr0(xuu5100, xuu4901)) 35.39/13.70 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, cae), bhe) -> new_esEs18(xuu3110000, xuu6000, cae) 35.39/13.70 new_lt6(xuu490, xuu510) -> new_esEs8(new_compare12(xuu490, xuu510), LT) 35.39/13.70 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.70 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_[], cdg)) -> new_esEs20(xuu3110000, xuu6000, cdg) 35.39/13.70 new_primCmpNat0(Succ(xuu49000), Succ(xuu51000)) -> new_primCmpNat0(xuu49000, xuu51000) 35.39/13.70 new_lt12(xuu4910, xuu5110, ty_Float) -> new_lt16(xuu4910, xuu5110) 35.39/13.70 new_ltEs19(xuu4912, xuu5112, app(ty_Ratio, dcd)) -> new_ltEs15(xuu4912, xuu5112, dcd) 35.39/13.70 new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat1(Zero, xuu5100) 35.39/13.70 new_esEs12(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) 35.39/13.70 new_compare110(xuu121, xuu122, xuu123, xuu124, True, ccb, ccc) -> LT 35.39/13.70 new_esEs27(xuu4910, xuu5110, app(ty_Maybe, chc)) -> new_esEs4(xuu4910, xuu5110, chc) 35.39/13.70 new_ltEs20(xuu491, xuu511, ty_Ordering) -> new_ltEs4(xuu491, xuu511) 35.39/13.70 new_esEs26(xuu4911, xuu5111, ty_Int) -> new_esEs10(xuu4911, xuu5111) 35.39/13.70 new_esEs22(xuu3110000, xuu6000, app(ty_[], bed)) -> new_esEs20(xuu3110000, xuu6000, bed) 35.39/13.70 new_esEs28(xuu490, xuu510, ty_Ordering) -> new_esEs8(xuu490, xuu510) 35.39/13.70 new_compare18(xuu4900, xuu5100, ty_@0) -> new_compare16(xuu4900, xuu5100) 35.39/13.70 new_lt20(xuu4911, xuu5111, ty_Bool) -> new_lt5(xuu4911, xuu5111) 35.39/13.70 new_compare5(Float(xuu4900, Pos(xuu49010)), Float(xuu5100, Pos(xuu51010))) -> new_compare9(new_sr(xuu4900, Pos(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) 35.39/13.70 new_esEs32(xuu37, xuu39, app(ty_[], bfh)) -> new_esEs20(xuu37, xuu39, bfh) 35.39/13.70 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 35.39/13.70 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 35.39/13.70 new_esEs13(xuu3110000, xuu6000, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.70 new_ltEs18(xuu4911, xuu5111, app(ty_Ratio, cgc)) -> new_ltEs15(xuu4911, xuu5111, cgc) 35.39/13.70 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Float) -> new_ltEs12(xuu4910, xuu5110) 35.39/13.70 new_esEs29(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.70 new_esEs21(xuu3110001, xuu6001, app(ty_[], bdb)) -> new_esEs20(xuu3110001, xuu6001, bdb) 35.39/13.70 new_lt21(xuu490, xuu510, app(app(ty_@2, ee), ef)) -> new_lt4(xuu490, xuu510, ee, ef) 35.39/13.70 new_esEs31(xuu311000, xuu600, app(ty_Ratio, ccd)) -> new_esEs18(xuu311000, xuu600, ccd) 35.39/13.70 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.70 new_ltEs20(xuu491, xuu511, app(ty_Ratio, cdh)) -> new_ltEs15(xuu491, xuu511, cdh) 35.39/13.70 new_esEs13(xuu3110000, xuu6000, ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.70 new_compare29(Char(xuu4900), Char(xuu5100)) -> new_primCmpNat0(xuu4900, xuu5100) 35.39/13.70 new_ltEs19(xuu4912, xuu5112, ty_Ordering) -> new_ltEs4(xuu4912, xuu5112) 35.39/13.70 new_esEs26(xuu4911, xuu5111, app(ty_Maybe, dae)) -> new_esEs4(xuu4911, xuu5111, dae) 35.39/13.70 new_primEqNat0(Zero, Zero) -> True 35.39/13.70 new_lt19(xuu4910, xuu5110, ty_Ordering) -> new_lt6(xuu4910, xuu5110) 35.39/13.70 new_esEs28(xuu490, xuu510, app(app(ty_Either, fc), fd)) -> new_esEs5(xuu490, xuu510, fc, fd) 35.39/13.70 new_ltEs9(Just(xuu4910), Nothing, dch) -> False 35.39/13.70 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Integer, bhe) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.70 new_ltEs5(Right(xuu4910), Right(xuu5110), db, app(ty_Maybe, dd)) -> new_ltEs9(xuu4910, xuu5110, dd) 35.39/13.70 new_lt19(xuu4910, xuu5110, ty_Double) -> new_lt15(xuu4910, xuu5110) 35.39/13.70 new_ltEs9(Nothing, Nothing, dch) -> True 35.39/13.70 new_esEs13(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.70 new_lt12(xuu4910, xuu5110, app(app(ty_Either, cee), cef)) -> new_lt9(xuu4910, xuu5110, cee, cef) 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), app(ty_Ratio, ce), bf) -> new_ltEs15(xuu4910, xuu5110, ce) 35.39/13.70 new_esEs29(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.70 new_lt9(xuu490, xuu510, fc, fd) -> new_esEs8(new_compare15(xuu490, xuu510, fc, fd), LT) 35.39/13.70 new_ltEs4(GT, GT) -> True 35.39/13.70 new_ltEs17(True, True) -> True 35.39/13.70 new_esEs32(xuu37, xuu39, ty_Bool) -> new_esEs14(xuu37, xuu39) 35.39/13.70 new_compare113(xuu490, xuu510, False, eh, fa, fb) -> GT 35.39/13.70 new_esEs31(xuu311000, xuu600, app(app(ty_@2, bbg), bbh)) -> new_esEs6(xuu311000, xuu600, bbg, bbh) 35.39/13.70 new_asAs(False, xuu72) -> False 35.39/13.70 new_compare18(xuu4900, xuu5100, app(app(ty_@2, bgf), bgg)) -> new_compare6(xuu4900, xuu5100, bgf, bgg) 35.39/13.70 new_lt20(xuu4911, xuu5111, ty_Ordering) -> new_lt6(xuu4911, xuu5111) 35.39/13.70 new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs14(xuu3110001, xuu6001) 35.39/13.70 new_esEs24(xuu3110000, xuu6000, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.70 new_esEs12(xuu3110001, xuu6001, ty_Integer) -> new_esEs16(xuu3110001, xuu6001) 35.39/13.70 new_esEs8(EQ, GT) -> False 35.39/13.70 new_esEs8(GT, EQ) -> False 35.39/13.70 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.70 new_lt19(xuu4910, xuu5110, ty_Char) -> new_lt17(xuu4910, xuu5110) 35.39/13.70 new_lt20(xuu4911, xuu5111, ty_Double) -> new_lt15(xuu4911, xuu5111) 35.39/13.70 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.70 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Double, bhe) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.70 new_ltEs14(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), cea, ceb) -> new_pePe(new_lt12(xuu4910, xuu5110, cea), new_asAs(new_esEs25(xuu4910, xuu5110, cea), new_ltEs18(xuu4911, xuu5111, ceb))) 35.39/13.70 new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 35.39/13.70 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, bhf), bhg), bhh), bhe) -> new_esEs7(xuu3110000, xuu6000, bhf, bhg, bhh) 35.39/13.70 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Char, bhe) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.70 35.39/13.70 The set Q consists of the following terms: 35.39/13.70 35.39/13.70 new_primCmpNat0(Succ(x0), Zero) 35.39/13.70 new_lt21(x0, x1, ty_Integer) 35.39/13.70 new_lt7(x0, x1, x2, x3, x4) 35.39/13.70 new_esEs8(EQ, EQ) 35.39/13.70 new_lt12(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_primCompAux00(x0, LT) 35.39/13.70 new_primCmpNat2(x0, Succ(x1)) 35.39/13.70 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 35.39/13.70 new_lt12(x0, x1, ty_Integer) 35.39/13.70 new_esEs4(Just(x0), Just(x1), ty_Ordering) 35.39/13.70 new_lt4(x0, x1, x2, x3) 35.39/13.70 new_esEs29(x0, x1, ty_Char) 35.39/13.70 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 35.39/13.70 new_esEs4(Just(x0), Just(x1), ty_Double) 35.39/13.70 new_ltEs19(x0, x1, ty_Int) 35.39/13.70 new_esEs11(x0, x1, ty_Bool) 35.39/13.70 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 35.39/13.70 new_lt20(x0, x1, ty_Int) 35.39/13.70 new_esEs13(x0, x1, ty_Ordering) 35.39/13.70 new_compare18(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_ltEs4(LT, LT) 35.39/13.70 new_lt6(x0, x1) 35.39/13.70 new_ltEs9(Just(x0), Just(x1), ty_Float) 35.39/13.70 new_esEs31(x0, x1, ty_Float) 35.39/13.70 new_esEs32(x0, x1, ty_Float) 35.39/13.70 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_esEs31(x0, x1, app(ty_[], x2)) 35.39/13.70 new_compare27(x0, x1, False, x2, x3) 35.39/13.70 new_ltEs18(x0, x1, ty_Double) 35.39/13.70 new_esEs12(x0, x1, ty_Char) 35.39/13.70 new_esEs13(x0, x1, ty_Int) 35.39/13.70 new_esEs4(Nothing, Nothing, x0) 35.39/13.70 new_lt20(x0, x1, ty_Char) 35.39/13.70 new_esEs4(Just(x0), Just(x1), ty_Int) 35.39/13.70 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_compare18(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_lt8(x0, x1) 35.39/13.70 new_compare26(x0, x1, False, x2, x3, x4) 35.39/13.70 new_primEqInt(Pos(Zero), Pos(Zero)) 35.39/13.70 new_ltEs20(x0, x1, ty_Float) 35.39/13.70 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 35.39/13.70 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 35.39/13.70 new_lt10(x0, x1) 35.39/13.70 new_ltEs18(x0, x1, ty_Int) 35.39/13.70 new_esEs11(x0, x1, ty_Integer) 35.39/13.70 new_asAs(False, x0) 35.39/13.70 new_esEs32(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_lt12(x0, x1, ty_@0) 35.39/13.70 new_esEs14(True, True) 35.39/13.70 new_ltEs18(x0, x1, ty_Ordering) 35.39/13.70 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 35.39/13.70 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 35.39/13.70 new_esEs28(x0, x1, ty_Integer) 35.39/13.70 new_primEqNat0(Zero, Succ(x0)) 35.39/13.70 new_ltEs19(x0, x1, ty_Ordering) 35.39/13.70 new_compare0([], :(x0, x1), x2) 35.39/13.70 new_esEs25(x0, x1, ty_Float) 35.39/13.70 new_primEqInt(Neg(Zero), Neg(Zero)) 35.39/13.70 new_compare18(x0, x1, ty_Float) 35.39/13.70 new_esEs29(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 35.39/13.70 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 35.39/13.70 new_esEs11(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_esEs12(x0, x1, ty_Bool) 35.39/13.70 new_ltEs9(Just(x0), Nothing, x1) 35.39/13.70 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 35.39/13.70 new_compare18(x0, x1, ty_Integer) 35.39/13.70 new_esEs11(x0, x1, ty_@0) 35.39/13.70 new_esEs26(x0, x1, ty_Float) 35.39/13.70 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_esEs28(x0, x1, ty_Float) 35.39/13.70 new_pePe(True, x0) 35.39/13.70 new_esEs12(x0, x1, ty_Ordering) 35.39/13.70 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 35.39/13.70 new_compare28(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 35.39/13.70 new_compare28(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 35.39/13.70 new_compare28(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 35.39/13.70 new_esEs25(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_esEs28(x0, x1, ty_Bool) 35.39/13.70 new_ltEs20(x0, x1, app(ty_[], x2)) 35.39/13.70 new_esEs14(False, True) 35.39/13.70 new_esEs14(True, False) 35.39/13.70 new_lt20(x0, x1, app(ty_[], x2)) 35.39/13.70 new_esEs26(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 35.39/13.70 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_lt12(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 35.39/13.70 new_esEs20([], :(x0, x1), x2) 35.39/13.70 new_ltEs17(True, True) 35.39/13.70 new_lt18(x0, x1, x2) 35.39/13.70 new_esEs11(x0, x1, ty_Char) 35.39/13.70 new_lt20(x0, x1, ty_Double) 35.39/13.70 new_esEs28(x0, x1, ty_@0) 35.39/13.70 new_esEs5(Left(x0), Right(x1), x2, x3) 35.39/13.70 new_esEs5(Right(x0), Left(x1), x2, x3) 35.39/13.70 new_esEs4(Just(x0), Nothing, x1) 35.39/13.70 new_ltEs19(x0, x1, ty_Double) 35.39/13.70 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_primCmpNat0(Succ(x0), Succ(x1)) 35.39/13.70 new_primEqInt(Pos(Zero), Neg(Zero)) 35.39/13.70 new_primEqInt(Neg(Zero), Pos(Zero)) 35.39/13.70 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 35.39/13.70 new_primPlusNat1(Zero, x0) 35.39/13.70 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 35.39/13.70 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 35.39/13.70 new_ltEs19(x0, x1, ty_Char) 35.39/13.70 new_esEs12(x0, x1, ty_Integer) 35.39/13.70 new_esEs27(x0, x1, ty_Integer) 35.39/13.70 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 35.39/13.70 new_compare18(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_esEs28(x0, x1, app(ty_[], x2)) 35.39/13.70 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 35.39/13.70 new_ltEs4(GT, EQ) 35.39/13.70 new_ltEs4(EQ, GT) 35.39/13.70 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 35.39/13.70 new_ltEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) 35.39/13.70 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 35.39/13.70 new_compare0(:(x0, x1), [], x2) 35.39/13.70 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_lt20(x0, x1, ty_@0) 35.39/13.70 new_esEs10(x0, x1) 35.39/13.70 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 35.39/13.70 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 35.39/13.70 new_esEs29(x0, x1, ty_Ordering) 35.39/13.70 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 35.39/13.70 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 35.39/13.70 new_ltEs19(x0, x1, ty_Bool) 35.39/13.70 new_primPlusNat0(Zero, Succ(x0)) 35.39/13.70 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_primEqNat0(Succ(x0), Succ(x1)) 35.39/13.70 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 35.39/13.70 new_primMulInt(Neg(x0), Neg(x1)) 35.39/13.70 new_ltEs18(x0, x1, ty_@0) 35.39/13.70 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 35.39/13.70 new_esEs11(x0, x1, ty_Float) 35.39/13.70 new_ltEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 35.39/13.70 new_compare15(x0, x1, x2, x3) 35.39/13.70 new_esEs9(@0, @0) 35.39/13.70 new_esEs4(Just(x0), Just(x1), ty_Bool) 35.39/13.70 new_esEs31(x0, x1, ty_@0) 35.39/13.70 new_esEs15(Double(x0, x1), Double(x2, x3)) 35.39/13.70 new_primPlusNat1(Succ(x0), x1) 35.39/13.70 new_compare0(:(x0, x1), :(x2, x3), x4) 35.39/13.70 new_esEs27(x0, x1, ty_Bool) 35.39/13.70 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 35.39/13.70 new_compare29(Char(x0), Char(x1)) 35.39/13.70 new_lt20(x0, x1, ty_Integer) 35.39/13.70 new_lt21(x0, x1, ty_Int) 35.39/13.70 new_esEs27(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_compare24(x0, x1, True) 35.39/13.70 new_ltEs9(Just(x0), Just(x1), ty_Bool) 35.39/13.70 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 35.39/13.70 new_esEs32(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_ltEs4(EQ, LT) 35.39/13.70 new_ltEs4(LT, EQ) 35.39/13.70 new_compare11(Integer(x0), Integer(x1)) 35.39/13.70 new_esEs20(:(x0, x1), [], x2) 35.39/13.70 new_compare18(x0, x1, ty_@0) 35.39/13.70 new_esEs32(x0, x1, ty_Bool) 35.39/13.70 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 35.39/13.70 new_ltEs4(GT, GT) 35.39/13.70 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 35.39/13.70 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_compare27(x0, x1, True, x2, x3) 35.39/13.70 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_esEs31(x0, x1, ty_Bool) 35.39/13.70 new_lt20(x0, x1, ty_Bool) 35.39/13.70 new_esEs21(x0, x1, ty_Double) 35.39/13.70 new_esEs25(x0, x1, ty_@0) 35.39/13.70 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 35.39/13.70 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 35.39/13.70 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_esEs26(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_esEs11(x0, x1, ty_Int) 35.39/13.70 new_ltEs19(x0, x1, ty_@0) 35.39/13.70 new_compare26(x0, x1, True, x2, x3, x4) 35.39/13.70 new_lt19(x0, x1, ty_Int) 35.39/13.70 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_primMulNat0(Zero, Succ(x0)) 35.39/13.70 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 35.39/13.70 new_compare18(x0, x1, app(ty_[], x2)) 35.39/13.70 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 35.39/13.70 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_ltEs6(x0, x1) 35.39/13.70 new_ltEs13(x0, x1) 35.39/13.70 new_primMulNat0(Succ(x0), Succ(x1)) 35.39/13.70 new_ltEs19(x0, x1, ty_Integer) 35.39/13.70 new_esEs26(x0, x1, app(ty_[], x2)) 35.39/13.70 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 35.39/13.70 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_compare25(x0, x1, True, x2) 35.39/13.70 new_esEs8(GT, GT) 35.39/13.70 new_lt19(x0, x1, ty_Float) 35.39/13.70 new_esEs8(LT, EQ) 35.39/13.70 new_esEs8(EQ, LT) 35.39/13.70 new_esEs26(x0, x1, ty_Integer) 35.39/13.70 new_esEs13(x0, x1, ty_Integer) 35.39/13.70 new_primCmpInt(Neg(Zero), Neg(Zero)) 35.39/13.70 new_esEs22(x0, x1, ty_Integer) 35.39/13.70 new_esEs29(x0, x1, ty_Double) 35.39/13.70 new_primCompAux0(x0, x1, x2, x3) 35.39/13.70 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_esEs29(x0, x1, ty_@0) 35.39/13.70 new_esEs8(LT, LT) 35.39/13.70 new_primCmpInt(Pos(Zero), Neg(Zero)) 35.39/13.70 new_primCmpInt(Neg(Zero), Pos(Zero)) 35.39/13.70 new_ltEs9(Just(x0), Just(x1), ty_Char) 35.39/13.70 new_esEs26(x0, x1, ty_Ordering) 35.39/13.70 new_primMulInt(Pos(x0), Neg(x1)) 35.39/13.70 new_primMulInt(Neg(x0), Pos(x1)) 35.39/13.70 new_esEs4(Just(x0), Just(x1), ty_Char) 35.39/13.70 new_lt20(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 35.39/13.70 new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 35.39/13.70 new_compare17(x0, x1, False, x2, x3) 35.39/13.70 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_ltEs17(True, False) 35.39/13.70 new_ltEs17(False, True) 35.39/13.70 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 35.39/13.70 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 35.39/13.70 new_esEs22(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_lt21(x0, x1, ty_Float) 35.39/13.70 new_compare9(x0, x1) 35.39/13.70 new_esEs11(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_esEs4(Nothing, Just(x0), x1) 35.39/13.70 new_esEs12(x0, x1, ty_Double) 35.39/13.70 new_esEs12(x0, x1, app(ty_[], x2)) 35.39/13.70 new_lt21(x0, x1, ty_Bool) 35.39/13.70 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_esEs31(x0, x1, ty_Integer) 35.39/13.70 new_lt12(x0, x1, ty_Double) 35.39/13.70 new_lt13(x0, x1) 35.39/13.70 new_ltEs9(Just(x0), Just(x1), ty_Integer) 35.39/13.70 new_primMulInt(Pos(x0), Pos(x1)) 35.39/13.70 new_esEs28(x0, x1, ty_Ordering) 35.39/13.70 new_lt21(x0, x1, app(ty_[], x2)) 35.39/13.70 new_esEs22(x0, x1, ty_Ordering) 35.39/13.70 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 35.39/13.70 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 35.39/13.70 new_compare10(x0, x1, True) 35.39/13.70 new_asAs(True, x0) 35.39/13.70 new_esEs32(x0, x1, ty_Integer) 35.39/13.70 new_compare14(x0, x1, x2, x3, x4) 35.39/13.70 new_esEs31(x0, x1, ty_Ordering) 35.39/13.70 new_primCompAux00(x0, GT) 35.39/13.70 new_esEs25(x0, x1, ty_Double) 35.39/13.70 new_compare18(x0, x1, ty_Double) 35.39/13.70 new_esEs13(x0, x1, ty_Char) 35.39/13.70 new_esEs23(x0, x1, ty_Int) 35.39/13.70 new_ltEs19(x0, x1, app(ty_[], x2)) 35.39/13.70 new_esEs27(x0, x1, ty_Float) 35.39/13.70 new_lt21(x0, x1, ty_Char) 35.39/13.70 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_lt11(x0, x1, x2) 35.39/13.70 new_lt14(x0, x1, x2) 35.39/13.70 new_compare112(x0, x1, False) 35.39/13.70 new_esEs12(x0, x1, ty_@0) 35.39/13.70 new_lt21(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 35.39/13.70 new_esEs12(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_esEs13(x0, x1, ty_Bool) 35.39/13.70 new_lt20(x0, x1, ty_Ordering) 35.39/13.70 new_compare110(x0, x1, x2, x3, True, x4, x5) 35.39/13.70 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 35.39/13.70 new_esEs22(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_esEs27(x0, x1, ty_Ordering) 35.39/13.70 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 35.39/13.70 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 35.39/13.70 new_esEs4(Just(x0), Just(x1), ty_Float) 35.39/13.70 new_ltEs20(x0, x1, ty_Int) 35.39/13.70 new_esEs11(x0, x1, app(ty_[], x2)) 35.39/13.70 new_compare110(x0, x1, x2, x3, False, x4, x5) 35.39/13.70 new_esEs31(x0, x1, ty_Double) 35.39/13.70 new_ltEs9(Just(x0), Just(x1), ty_Double) 35.39/13.70 new_esEs28(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 35.39/13.70 new_lt19(x0, x1, ty_@0) 35.39/13.70 new_esEs26(x0, x1, ty_Char) 35.39/13.70 new_ltEs18(x0, x1, ty_Float) 35.39/13.70 new_esEs27(x0, x1, app(ty_[], x2)) 35.39/13.70 new_esEs17(Char(x0), Char(x1)) 35.39/13.70 new_esEs13(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_primMulNat0(Zero, Zero) 35.39/13.70 new_esEs22(x0, x1, ty_@0) 35.39/13.70 new_ltEs9(Just(x0), Just(x1), app(ty_[], x2)) 35.39/13.70 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 35.39/13.70 new_lt21(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_esEs32(x0, x1, ty_Ordering) 35.39/13.70 new_esEs25(x0, x1, ty_Int) 35.39/13.70 new_esEs27(x0, x1, ty_Int) 35.39/13.70 new_esEs26(x0, x1, ty_Int) 35.39/13.70 new_compare211(@2(x0, x1), @2(x2, x3), False, x4, x5) 35.39/13.70 new_primCmpNat1(Succ(x0), x1) 35.39/13.70 new_compare16(@0, @0) 35.39/13.70 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 35.39/13.70 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 35.39/13.70 new_ltEs20(x0, x1, ty_Ordering) 35.39/13.70 new_ltEs9(Nothing, Just(x0), x1) 35.39/13.70 new_compare18(x0, x1, ty_Ordering) 35.39/13.70 new_esEs23(x0, x1, ty_Integer) 35.39/13.70 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 35.39/13.70 new_ltEs19(x0, x1, ty_Float) 35.39/13.70 new_primCmpNat0(Zero, Succ(x0)) 35.39/13.70 new_esEs30(x0, x1, x2, x3, False, x4, x5) 35.39/13.70 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_lt20(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 35.39/13.70 new_esEs20(:(x0, x1), :(x2, x3), x4) 35.39/13.70 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 35.39/13.70 new_esEs21(x0, x1, ty_Bool) 35.39/13.70 new_lt19(x0, x1, ty_Integer) 35.39/13.70 new_compare24(x0, x1, False) 35.39/13.70 new_esEs27(x0, x1, ty_Double) 35.39/13.70 new_esEs32(x0, x1, ty_Int) 35.39/13.70 new_ltEs9(Just(x0), Just(x1), ty_Int) 35.39/13.70 new_esEs25(x0, x1, ty_Ordering) 35.39/13.70 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 35.39/13.70 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_esEs27(x0, x1, ty_Char) 35.39/13.70 new_primPlusNat0(Succ(x0), Succ(x1)) 35.39/13.70 new_compare210(x0, x1, False) 35.39/13.70 new_ltEs9(Just(x0), Just(x1), ty_Ordering) 35.39/13.70 new_sr0(Integer(x0), Integer(x1)) 35.39/13.70 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_esEs32(x0, x1, ty_Double) 35.39/13.70 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_esEs32(x0, x1, ty_Char) 35.39/13.70 new_esEs31(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_lt5(x0, x1) 35.39/13.70 new_compare13(x0, x1, True, x2) 35.39/13.70 new_lt19(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_esEs24(x0, x1, ty_Int) 35.39/13.70 new_primPlusNat0(Zero, Zero) 35.39/13.70 new_ltEs4(LT, GT) 35.39/13.70 new_ltEs4(GT, LT) 35.39/13.70 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_lt17(x0, x1) 35.39/13.70 new_esEs13(x0, x1, ty_Float) 35.39/13.70 new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 35.39/13.70 new_not(True) 35.39/13.70 new_esEs28(x0, x1, ty_Double) 35.39/13.70 new_esEs26(x0, x1, ty_Bool) 35.39/13.70 new_lt19(x0, x1, ty_Char) 35.39/13.70 new_esEs31(x0, x1, ty_Char) 35.39/13.70 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 35.39/13.70 new_esEs26(x0, x1, ty_@0) 35.39/13.70 new_esEs8(EQ, GT) 35.39/13.70 new_esEs8(GT, EQ) 35.39/13.70 new_pePe(False, x0) 35.39/13.70 new_esEs22(x0, x1, ty_Int) 35.39/13.70 new_lt15(x0, x1) 35.39/13.70 new_primCmpNat1(Zero, x0) 35.39/13.70 new_esEs26(x0, x1, ty_Double) 35.39/13.70 new_esEs22(x0, x1, app(ty_[], x2)) 35.39/13.70 new_ltEs12(x0, x1) 35.39/13.70 new_esEs29(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_esEs21(x0, x1, ty_@0) 35.39/13.70 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 35.39/13.70 new_ltEs20(x0, x1, ty_@0) 35.39/13.70 new_compare111(x0, x1, x2, x3, False, x4, x5, x6) 35.39/13.70 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_lt20(x0, x1, ty_Float) 35.39/13.70 new_compare10(x0, x1, False) 35.39/13.70 new_ltEs20(x0, x1, ty_Bool) 35.39/13.70 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 35.39/13.70 new_esEs22(x0, x1, ty_Bool) 35.39/13.70 new_esEs21(x0, x1, ty_Float) 35.39/13.70 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_lt21(x0, x1, ty_Ordering) 35.39/13.70 new_esEs28(x0, x1, ty_Int) 35.39/13.70 new_compare12(x0, x1) 35.39/13.70 new_primEqNat0(Succ(x0), Zero) 35.39/13.70 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_ltEs4(EQ, EQ) 35.39/13.70 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_lt9(x0, x1, x2, x3) 35.39/13.70 new_compare18(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_esEs22(x0, x1, ty_Char) 35.39/13.70 new_esEs31(x0, x1, ty_Int) 35.39/13.70 new_compare13(x0, x1, False, x2) 35.39/13.70 new_compare210(x0, x1, True) 35.39/13.70 new_ltEs20(x0, x1, ty_Char) 35.39/13.70 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 35.39/13.70 new_compare211(x0, x1, True, x2, x3) 35.39/13.70 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 35.39/13.70 new_esEs28(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 35.39/13.70 new_esEs28(x0, x1, ty_Char) 35.39/13.70 new_compare113(x0, x1, True, x2, x3, x4) 35.39/13.70 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 35.39/13.70 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_esEs4(Just(x0), Just(x1), ty_Integer) 35.39/13.70 new_esEs22(x0, x1, ty_Double) 35.39/13.70 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_ltEs20(x0, x1, ty_Double) 35.39/13.70 new_primCmpInt(Pos(Zero), Pos(Zero)) 35.39/13.70 new_lt19(x0, x1, ty_Bool) 35.39/13.70 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_esEs13(x0, x1, app(ty_[], x2)) 35.39/13.70 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 35.39/13.70 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 35.39/13.70 new_lt19(x0, x1, ty_Double) 35.39/13.70 new_esEs25(x0, x1, app(ty_[], x2)) 35.39/13.70 new_ltEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_esEs31(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_lt12(x0, x1, ty_Int) 35.39/13.70 new_ltEs9(Just(x0), Just(x1), ty_@0) 35.39/13.70 new_compare6(x0, x1, x2, x3) 35.39/13.70 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_esEs20([], [], x0) 35.39/13.70 new_sr(x0, x1) 35.39/13.70 new_esEs32(x0, x1, app(ty_[], x2)) 35.39/13.70 new_compare7(x0, x1) 35.39/13.70 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 35.39/13.70 new_esEs25(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_ltEs20(x0, x1, ty_Integer) 35.39/13.70 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_esEs12(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_esEs21(x0, x1, ty_Ordering) 35.39/13.70 new_lt12(x0, x1, ty_Char) 35.39/13.70 new_esEs4(Just(x0), Just(x1), ty_@0) 35.39/13.70 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 35.39/13.70 new_esEs21(x0, x1, ty_Int) 35.39/13.70 new_esEs27(x0, x1, ty_@0) 35.39/13.70 new_ltEs7(x0, x1, x2) 35.39/13.70 new_esEs8(LT, GT) 35.39/13.70 new_esEs8(GT, LT) 35.39/13.70 new_esEs21(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_esEs29(x0, x1, ty_Integer) 35.39/13.70 new_esEs11(x0, x1, ty_Double) 35.39/13.70 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 35.39/13.70 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 35.39/13.70 new_lt19(x0, x1, app(ty_[], x2)) 35.39/13.70 new_ltEs10(x0, x1) 35.39/13.70 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 35.39/13.70 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 35.39/13.70 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_fsEs(x0) 35.39/13.70 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 35.39/13.70 new_lt12(x0, x1, ty_Float) 35.39/13.70 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 35.39/13.70 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_esEs32(x0, x1, ty_@0) 35.39/13.70 new_esEs21(x0, x1, ty_Char) 35.39/13.70 new_esEs22(x0, x1, ty_Float) 35.39/13.70 new_esEs19(Float(x0, x1), Float(x2, x3)) 35.39/13.70 new_esEs13(x0, x1, ty_@0) 35.39/13.70 new_compare0([], [], x0) 35.39/13.70 new_compare19(x0, x1, x2) 35.39/13.70 new_lt19(x0, x1, ty_Ordering) 35.39/13.70 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_esEs25(x0, x1, ty_Integer) 35.39/13.70 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 35.39/13.70 new_esEs21(x0, x1, app(ty_[], x2)) 35.39/13.70 new_esEs29(x0, x1, app(ty_[], x2)) 35.39/13.70 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.70 new_compare112(x0, x1, True) 35.39/13.70 new_lt12(x0, x1, ty_Ordering) 35.39/13.70 new_esEs21(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_ltEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) 35.39/13.70 new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 35.39/13.70 new_esEs11(x0, x1, ty_Ordering) 35.39/13.70 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 35.39/13.70 new_primEqNat0(Zero, Zero) 35.39/13.70 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_esEs29(x0, x1, ty_Float) 35.39/13.70 new_esEs29(x0, x1, ty_Bool) 35.39/13.70 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 35.39/13.70 new_compare113(x0, x1, False, x2, x3, x4) 35.39/13.70 new_compare28(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 35.39/13.70 new_not(False) 35.39/13.70 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 35.39/13.70 new_esEs27(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_compare111(x0, x1, x2, x3, True, x4, x5, x6) 35.39/13.70 new_ltEs18(x0, x1, ty_Integer) 35.39/13.70 new_ltEs17(False, False) 35.39/13.70 new_compare18(x0, x1, ty_Char) 35.39/13.70 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 35.39/13.70 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 35.39/13.70 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 35.39/13.70 new_lt21(x0, x1, ty_@0) 35.39/13.70 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 35.39/13.70 new_lt16(x0, x1) 35.39/13.70 new_esEs14(False, False) 35.39/13.70 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 35.39/13.70 new_compare18(x0, x1, ty_Int) 35.39/13.70 new_ltEs18(x0, x1, app(ty_[], x2)) 35.39/13.70 new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 35.39/13.70 new_compare17(x0, x1, True, x2, x3) 35.39/13.70 new_ltEs8(x0, x1) 35.39/13.70 new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 35.39/13.70 new_esEs24(x0, x1, ty_Integer) 35.39/13.70 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 35.39/13.70 new_ltEs18(x0, x1, ty_Char) 35.39/13.70 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 35.39/13.70 new_ltEs15(x0, x1, x2) 35.39/13.70 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 35.39/13.70 new_esEs25(x0, x1, ty_Char) 35.39/13.70 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.70 new_esEs13(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_primCompAux00(x0, EQ) 35.39/13.70 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 35.39/13.70 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 35.39/13.70 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 35.39/13.70 new_compare18(x0, x1, ty_Bool) 35.39/13.70 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 35.39/13.70 new_esEs12(x0, x1, ty_Int) 35.39/13.70 new_ltEs11(x0, x1) 35.39/13.70 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 35.39/13.70 new_compare25(x0, x1, False, x2) 35.39/13.70 new_ltEs5(Left(x0), Right(x1), x2, x3) 35.39/13.70 new_ltEs5(Right(x0), Left(x1), x2, x3) 35.39/13.70 new_esEs13(x0, x1, ty_Double) 35.39/13.70 new_lt12(x0, x1, ty_Bool) 35.39/13.70 new_esEs21(x0, x1, ty_Integer) 35.39/13.70 new_primCmpNat2(x0, Zero) 35.39/13.70 new_lt12(x0, x1, app(ty_[], x2)) 35.39/13.70 new_esEs16(Integer(x0), Integer(x1)) 35.39/13.70 new_esEs12(x0, x1, ty_Float) 35.39/13.70 new_esEs30(x0, x1, x2, x3, True, x4, x5) 35.39/13.70 new_lt21(x0, x1, ty_Double) 35.39/13.70 new_ltEs18(x0, x1, ty_Bool) 35.39/13.70 new_primMulNat0(Succ(x0), Zero) 35.39/13.70 new_ltEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 35.39/13.70 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.70 new_lt19(x0, x1, app(ty_Maybe, x2)) 35.39/13.70 new_primPlusNat0(Succ(x0), Zero) 35.39/13.70 new_primCmpNat0(Zero, Zero) 35.39/13.70 new_ltEs9(Nothing, Nothing, x0) 35.39/13.70 new_esEs25(x0, x1, ty_Bool) 35.39/13.70 new_esEs29(x0, x1, ty_Int) 35.39/13.70 35.39/13.70 We have to consider all minimal (P,Q,R)-chains. 35.39/13.70 ---------------------------------------- 35.39/13.70 35.39/13.70 (21) TransformationProof (EQUIVALENT) 35.39/13.70 By rewriting [LPAR04] the rule new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, False, h, ba, bb) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_esEs8(new_compare211(@2(xuu25, xuu26), @2(xuu19, xuu20), new_esEs6(@2(xuu25, xuu26), @2(xuu19, xuu20), h, ba), h, ba), GT), h, ba, bb) at position [9,0,2] we obtained the following new rules [LPAR04]: 35.39/13.70 35.39/13.70 (new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, False, h, ba, bb) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_esEs8(new_compare211(@2(xuu25, xuu26), @2(xuu19, xuu20), new_asAs(new_esEs22(xuu25, xuu19, h), new_esEs21(xuu26, xuu20, ba)), h, ba), GT), h, ba, bb),new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, False, h, ba, bb) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_esEs8(new_compare211(@2(xuu25, xuu26), @2(xuu19, xuu20), new_asAs(new_esEs22(xuu25, xuu19, h), new_esEs21(xuu26, xuu20, ba)), h, ba), GT), h, ba, bb)) 35.39/13.70 35.39/13.70 35.39/13.70 ---------------------------------------- 35.39/13.70 35.39/13.70 (22) 35.39/13.70 Obligation: 35.39/13.70 Q DP problem: 35.39/13.70 The TRS P consists of the following rules: 35.39/13.70 35.39/13.70 new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, True, h, ba, bb) -> new_addToFM_C(xuu23, @2(xuu25, xuu26), xuu27, h, ba, bb) 35.39/13.70 new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, True, h, ba, bb) -> new_addToFM_C(xuu24, @2(xuu25, xuu26), xuu27, h, ba, bb) 35.39/13.70 new_addToFM_C(Branch(@2(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), @2(xuu311000, xuu311001), xuu31101, bc, bd, be) -> new_addToFM_C2(xuu600, xuu601, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, new_esEs30(xuu311000, xuu311001, xuu600, xuu601, new_esEs31(xuu311000, xuu600, bc), bc, bd), bc, bd, be) 35.39/13.70 new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, False, h, ba, bb) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_esEs8(new_compare211(@2(xuu25, xuu26), @2(xuu19, xuu20), new_asAs(new_esEs22(xuu25, xuu19, h), new_esEs21(xuu26, xuu20, ba)), h, ba), GT), h, ba, bb) 35.39/13.70 35.39/13.70 The TRS R consists of the following rules: 35.39/13.70 35.39/13.70 new_esEs28(xuu490, xuu510, app(ty_[], bga)) -> new_esEs20(xuu490, xuu510, bga) 35.39/13.70 new_esEs27(xuu4910, xuu5110, ty_Double) -> new_esEs15(xuu4910, xuu5110) 35.39/13.70 new_lt19(xuu4910, xuu5110, ty_Bool) -> new_lt5(xuu4910, xuu5110) 35.39/13.70 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 35.39/13.70 new_primCmpInt(Neg(Succ(xuu4900)), Pos(xuu510)) -> LT 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), app(app(ty_@2, cc), cd), bf) -> new_ltEs14(xuu4910, xuu5110, cc, cd) 35.39/13.70 new_primPlusNat0(Zero, Zero) -> Zero 35.39/13.70 new_esEs30(xuu36, xuu37, xuu38, xuu39, False, bee, bef) -> new_esEs8(new_compare211(@2(xuu36, xuu37), @2(xuu38, xuu39), False, bee, bef), LT) 35.39/13.70 new_pePe(True, xuu145) -> True 35.39/13.70 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Ordering, bhe) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.70 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, cdd), cde)) -> new_esEs6(xuu3110000, xuu6000, cdd, cde) 35.39/13.70 new_lt12(xuu4910, xuu5110, ty_Char) -> new_lt17(xuu4910, xuu5110) 35.39/13.70 new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bda)) -> new_esEs18(xuu3110001, xuu6001, bda) 35.39/13.70 new_lt4(xuu490, xuu510, ee, ef) -> new_esEs8(new_compare6(xuu490, xuu510, ee, ef), LT) 35.39/13.70 new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs7(xuu3110001, xuu6001, bcb, bcc, bcd) 35.39/13.70 new_ltEs18(xuu4911, xuu5111, ty_Float) -> new_ltEs12(xuu4911, xuu5111) 35.39/13.70 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 35.39/13.70 new_esEs27(xuu4910, xuu5110, app(app(ty_Either, chd), che)) -> new_esEs5(xuu4910, xuu5110, chd, che) 35.39/13.70 new_ltEs5(Right(xuu4910), Right(xuu5110), db, ty_Integer) -> new_ltEs8(xuu4910, xuu5110) 35.39/13.70 new_lt19(xuu4910, xuu5110, ty_Float) -> new_lt16(xuu4910, xuu5110) 35.39/13.70 new_lt20(xuu4911, xuu5111, app(ty_Ratio, dbb)) -> new_lt18(xuu4911, xuu5111, dbb) 35.39/13.70 new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT 35.39/13.70 new_esEs12(xuu3110001, xuu6001, ty_Double) -> new_esEs15(xuu3110001, xuu6001) 35.39/13.70 new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bcg), bch)) -> new_esEs6(xuu3110001, xuu6001, bcg, bch) 35.39/13.70 new_esEs27(xuu4910, xuu5110, ty_Integer) -> new_esEs16(xuu4910, xuu5110) 35.39/13.70 new_esEs13(xuu3110000, xuu6000, app(ty_[], bbf)) -> new_esEs20(xuu3110000, xuu6000, bbf) 35.39/13.70 new_esEs23(xuu3110001, xuu6001, ty_Integer) -> new_esEs16(xuu3110001, xuu6001) 35.39/13.70 new_esEs13(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.70 new_lt12(xuu4910, xuu5110, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_lt7(xuu4910, xuu5110, cfb, cfc, cfd) 35.39/13.70 new_ltEs19(xuu4912, xuu5112, app(ty_Maybe, dbg)) -> new_ltEs9(xuu4912, xuu5112, dbg) 35.39/13.70 new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat1(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Int, bf) -> new_ltEs6(xuu4910, xuu5110) 35.39/13.70 new_esEs11(xuu3110002, xuu6002, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs7(xuu3110002, xuu6002, gb, gc, gd) 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Double, bf) -> new_ltEs11(xuu4910, xuu5110) 35.39/13.70 new_ltEs18(xuu4911, xuu5111, ty_@0) -> new_ltEs10(xuu4911, xuu5111) 35.39/13.70 new_lt19(xuu4910, xuu5110, app(app(ty_@2, chf), chg)) -> new_lt4(xuu4910, xuu5110, chf, chg) 35.39/13.70 new_ltEs19(xuu4912, xuu5112, ty_Double) -> new_ltEs11(xuu4912, xuu5112) 35.39/13.70 new_ltEs5(Left(xuu4910), Right(xuu5110), db, bf) -> True 35.39/13.70 new_ltEs9(Just(xuu4910), Just(xuu5110), app(app(ty_@2, dde), ddf)) -> new_ltEs14(xuu4910, xuu5110, dde, ddf) 35.39/13.70 new_compare26(xuu490, xuu510, False, eh, fa, fb) -> new_compare113(xuu490, xuu510, new_ltEs16(xuu490, xuu510, eh, fa, fb), eh, fa, fb) 35.39/13.70 new_ltEs11(xuu491, xuu511) -> new_fsEs(new_compare28(xuu491, xuu511)) 35.39/13.70 new_ltEs20(xuu491, xuu511, app(ty_Maybe, dch)) -> new_ltEs9(xuu491, xuu511, dch) 35.39/13.70 new_esEs8(GT, GT) -> True 35.39/13.70 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 35.39/13.70 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 35.39/13.70 new_ltEs4(GT, EQ) -> False 35.39/13.70 new_fsEs(xuu133) -> new_not(new_esEs8(xuu133, GT)) 35.39/13.70 new_lt19(xuu4910, xuu5110, app(ty_Ratio, chh)) -> new_lt18(xuu4910, xuu5110, chh) 35.39/13.70 new_esEs31(xuu311000, xuu600, app(app(app(ty_@3, ff), fg), fh)) -> new_esEs7(xuu311000, xuu600, ff, fg, fh) 35.39/13.70 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cac), cad), bhe) -> new_esEs6(xuu3110000, xuu6000, cac, cad) 35.39/13.70 new_esEs8(EQ, EQ) -> True 35.39/13.70 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bdc)) -> new_esEs4(xuu3110000, xuu6000, bdc) 35.39/13.70 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Bool) -> new_ltEs17(xuu4910, xuu5110) 35.39/13.70 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cdf)) -> new_esEs18(xuu3110000, xuu6000, cdf) 35.39/13.70 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 35.39/13.70 new_compare18(xuu4900, xuu5100, ty_Int) -> new_compare9(xuu4900, xuu5100) 35.39/13.70 new_esEs31(xuu311000, xuu600, ty_Bool) -> new_esEs14(xuu311000, xuu600) 35.39/13.70 new_esEs12(xuu3110001, xuu6001, app(app(ty_Either, hg), hh)) -> new_esEs5(xuu3110001, xuu6001, hg, hh) 35.39/13.70 new_ltEs9(Just(xuu4910), Just(xuu5110), app(app(app(ty_@3, ddh), dea), deb)) -> new_ltEs16(xuu4910, xuu5110, ddh, dea, deb) 35.39/13.70 new_lt18(xuu490, xuu510, dec) -> new_esEs8(new_compare8(xuu490, xuu510, dec), LT) 35.39/13.70 new_not(True) -> False 35.39/13.70 new_esEs28(xuu490, xuu510, ty_Char) -> new_esEs17(xuu490, xuu510) 35.39/13.70 new_esEs25(xuu4910, xuu5110, ty_Bool) -> new_esEs14(xuu4910, xuu5110) 35.39/13.70 new_lt21(xuu490, xuu510, app(app(ty_Either, fc), fd)) -> new_lt9(xuu490, xuu510, fc, fd) 35.39/13.70 new_lt20(xuu4911, xuu5111, ty_Float) -> new_lt16(xuu4911, xuu5111) 35.39/13.70 new_esEs27(xuu4910, xuu5110, ty_Float) -> new_esEs19(xuu4910, xuu5110) 35.39/13.70 new_primCompAux00(xuu151, LT) -> LT 35.39/13.70 new_esEs13(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.70 new_primCmpNat0(Zero, Zero) -> EQ 35.39/13.70 new_compare17(xuu490, xuu510, False, fc, fd) -> GT 35.39/13.70 new_esEs12(xuu3110001, xuu6001, app(ty_Maybe, hc)) -> new_esEs4(xuu3110001, xuu6001, hc) 35.39/13.70 new_lt12(xuu4910, xuu5110, ty_Double) -> new_lt15(xuu4910, xuu5110) 35.39/13.70 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, app(ty_Maybe, cah)) -> new_esEs4(xuu3110000, xuu6000, cah) 35.39/13.70 new_compare28(Double(xuu4900, Pos(xuu49010)), Double(xuu5100, Pos(xuu51010))) -> new_compare9(new_sr(xuu4900, Pos(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) 35.39/13.70 new_lt21(xuu490, xuu510, ty_Bool) -> new_lt5(xuu490, xuu510) 35.39/13.70 new_esEs11(xuu3110002, xuu6002, app(ty_Maybe, ga)) -> new_esEs4(xuu3110002, xuu6002, ga) 35.39/13.70 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Bool, bhe) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.70 new_lt12(xuu4910, xuu5110, ty_@0) -> new_lt10(xuu4910, xuu5110) 35.39/13.70 new_esEs25(xuu4910, xuu5110, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs7(xuu4910, xuu5110, cfb, cfc, cfd) 35.39/13.70 new_esEs27(xuu4910, xuu5110, ty_Char) -> new_esEs17(xuu4910, xuu5110) 35.39/13.70 new_esEs28(xuu490, xuu510, ty_Float) -> new_esEs19(xuu490, xuu510) 35.39/13.70 new_esEs11(xuu3110002, xuu6002, app(ty_Ratio, ha)) -> new_esEs18(xuu3110002, xuu6002, ha) 35.39/13.70 new_esEs13(xuu3110000, xuu6000, app(app(ty_Either, bba), bbb)) -> new_esEs5(xuu3110000, xuu6000, bba, bbb) 35.39/13.70 new_ltEs10(xuu491, xuu511) -> new_fsEs(new_compare16(xuu491, xuu511)) 35.39/13.70 new_primEqNat0(Succ(xuu31100000), Zero) -> False 35.39/13.70 new_primEqNat0(Zero, Succ(xuu60000)) -> False 35.39/13.70 new_ltEs20(xuu491, xuu511, ty_Double) -> new_ltEs11(xuu491, xuu511) 35.39/13.70 new_compare112(xuu490, xuu510, False) -> GT 35.39/13.70 new_ltEs20(xuu491, xuu511, ty_Int) -> new_ltEs6(xuu491, xuu511) 35.39/13.70 new_ltEs19(xuu4912, xuu5112, ty_Int) -> new_ltEs6(xuu4912, xuu5112) 35.39/13.70 new_esEs27(xuu4910, xuu5110, ty_Int) -> new_esEs10(xuu4910, xuu5110) 35.39/13.70 new_esEs11(xuu3110002, xuu6002, app(app(ty_@2, gg), gh)) -> new_esEs6(xuu3110002, xuu6002, gg, gh) 35.39/13.70 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Char, bf) -> new_ltEs13(xuu4910, xuu5110) 35.39/13.70 new_lt21(xuu490, xuu510, ty_Float) -> new_lt16(xuu490, xuu510) 35.39/13.70 new_primCompAux00(xuu151, GT) -> GT 35.39/13.70 new_esEs14(False, True) -> False 35.39/13.70 new_esEs14(True, False) -> False 35.39/13.70 new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat2(xuu5100, Zero) 35.39/13.70 new_ltEs5(Left(xuu4910), Left(xuu5110), app(app(ty_Either, ca), cb), bf) -> new_ltEs5(xuu4910, xuu5110, ca, cb) 35.39/13.70 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs7(xuu3110000, xuu6000, ccg, cch, cda) 35.39/13.71 new_ltEs16(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), cgg, cgh, cha) -> new_pePe(new_lt19(xuu4910, xuu5110, cgg), new_asAs(new_esEs27(xuu4910, xuu5110, cgg), new_pePe(new_lt20(xuu4911, xuu5111, cgh), new_asAs(new_esEs26(xuu4911, xuu5111, cgh), new_ltEs19(xuu4912, xuu5112, cha))))) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Ordering) -> new_ltEs4(xuu4910, xuu5110) 35.39/13.71 new_compare13(xuu490, xuu510, False, eg) -> GT 35.39/13.71 new_esEs23(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_@0, bf) -> new_ltEs10(xuu4910, xuu5110) 35.39/13.71 new_lt20(xuu4911, xuu5111, ty_Integer) -> new_lt13(xuu4911, xuu5111) 35.39/13.71 new_compare25(xuu490, xuu510, False, eg) -> new_compare13(xuu490, xuu510, new_ltEs9(xuu490, xuu510, eg), eg) 35.39/13.71 new_esEs28(xuu490, xuu510, ty_Int) -> new_esEs10(xuu490, xuu510) 35.39/13.71 new_primCmpInt(Pos(Succ(xuu4900)), Neg(xuu510)) -> GT 35.39/13.71 new_ltEs20(xuu491, xuu511, ty_@0) -> new_ltEs10(xuu491, xuu511) 35.39/13.71 new_compare9(xuu49, xuu51) -> new_primCmpInt(xuu49, xuu51) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Integer) -> new_ltEs8(xuu4910, xuu5110) 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_[], caf), bhe) -> new_esEs20(xuu3110000, xuu6000, caf) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, app(ty_[], dga)) -> new_esEs20(xuu3110000, xuu6000, dga) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, bhd), bhe) -> new_esEs4(xuu3110000, xuu6000, bhd) 35.39/13.71 new_lt19(xuu4910, xuu5110, ty_Integer) -> new_lt13(xuu4910, xuu5110) 35.39/13.71 new_primCmpNat0(Zero, Succ(xuu51000)) -> LT 35.39/13.71 new_compare18(xuu4900, xuu5100, app(ty_[], bgb)) -> new_compare0(xuu4900, xuu5100, bgb) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bec)) -> new_esEs18(xuu3110000, xuu6000, bec) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, ty_@0) -> new_ltEs10(xuu4912, xuu5112) 35.39/13.71 new_esEs26(xuu4911, xuu5111, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs7(xuu4911, xuu5111, dbc, dbd, dbe) 35.39/13.71 new_esEs20([], [], deg) -> True 35.39/13.71 new_esEs29(xuu3110000, xuu6000, ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.71 new_compare210(xuu490, xuu510, True) -> EQ 35.39/13.71 new_esEs32(xuu37, xuu39, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs7(xuu37, xuu39, beh, bfa, bfb) 35.39/13.71 new_compare18(xuu4900, xuu5100, app(ty_Ratio, bgh)) -> new_compare8(xuu4900, xuu5100, bgh) 35.39/13.71 new_esEs32(xuu37, xuu39, ty_Integer) -> new_esEs16(xuu37, xuu39) 35.39/13.71 new_primCmpNat0(Succ(xuu49000), Zero) -> GT 35.39/13.71 new_pePe(False, xuu145) -> xuu145 35.39/13.71 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bea), beb)) -> new_esEs6(xuu3110000, xuu6000, bea, beb) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.71 new_lt13(xuu490, xuu510) -> new_esEs8(new_compare11(xuu490, xuu510), LT) 35.39/13.71 new_esEs26(xuu4911, xuu5111, ty_Bool) -> new_esEs14(xuu4911, xuu5111) 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Float, bhe) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.71 new_ltEs20(xuu491, xuu511, ty_Char) -> new_ltEs13(xuu491, xuu511) 35.39/13.71 new_esEs26(xuu4911, xuu5111, ty_@0) -> new_esEs9(xuu4911, xuu5111) 35.39/13.71 new_compare111(xuu121, xuu122, xuu123, xuu124, False, xuu126, ccb, ccc) -> new_compare110(xuu121, xuu122, xuu123, xuu124, xuu126, ccb, ccc) 35.39/13.71 new_esEs27(xuu4910, xuu5110, app(ty_[], chb)) -> new_esEs20(xuu4910, xuu5110, chb) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, ty_Bool) -> new_ltEs17(xuu4911, xuu5111) 35.39/13.71 new_lt20(xuu4911, xuu5111, app(ty_[], dad)) -> new_lt11(xuu4911, xuu5111, dad) 35.39/13.71 new_esEs8(LT, EQ) -> False 35.39/13.71 new_esEs8(EQ, LT) -> False 35.39/13.71 new_compare18(xuu4900, xuu5100, ty_Double) -> new_compare28(xuu4900, xuu5100) 35.39/13.71 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 35.39/13.71 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 35.39/13.71 new_compare28(Double(xuu4900, Pos(xuu49010)), Double(xuu5100, Neg(xuu51010))) -> new_compare9(new_sr(xuu4900, Pos(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) 35.39/13.71 new_compare28(Double(xuu4900, Neg(xuu49010)), Double(xuu5100, Pos(xuu51010))) -> new_compare9(new_sr(xuu4900, Neg(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), app(ty_Maybe, bh), bf) -> new_ltEs9(xuu4910, xuu5110, bh) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 35.39/13.71 new_lt8(xuu490, xuu510) -> new_esEs8(new_compare9(xuu490, xuu510), LT) 35.39/13.71 new_ltEs4(LT, GT) -> True 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Char) -> new_ltEs13(xuu4910, xuu5110) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, app(ty_Ratio, bac)) -> new_esEs18(xuu3110001, xuu6001, bac) 35.39/13.71 new_esEs13(xuu3110000, xuu6000, ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.71 new_compare5(Float(xuu4900, Pos(xuu49010)), Float(xuu5100, Neg(xuu51010))) -> new_compare9(new_sr(xuu4900, Pos(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) 35.39/13.71 new_compare5(Float(xuu4900, Neg(xuu49010)), Float(xuu5100, Pos(xuu51010))) -> new_compare9(new_sr(xuu4900, Neg(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, ty_Char) -> new_ltEs13(xuu4912, xuu5112) 35.39/13.71 new_esEs32(xuu37, xuu39, ty_Double) -> new_esEs15(xuu37, xuu39) 35.39/13.71 new_compare18(xuu4900, xuu5100, ty_Ordering) -> new_compare12(xuu4900, xuu5100) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Double) -> new_ltEs11(xuu4910, xuu5110) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, app(app(ty_@2, dcb), dcc)) -> new_ltEs14(xuu4912, xuu5112, dcb, dcc) 35.39/13.71 new_esEs6(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bbg, bbh) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bbg), new_esEs21(xuu3110001, xuu6001, bbh)) 35.39/13.71 new_esEs25(xuu4910, xuu5110, ty_Ordering) -> new_esEs8(xuu4910, xuu5110) 35.39/13.71 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, ty_Double) -> new_ltEs11(xuu4911, xuu5111) 35.39/13.71 new_esEs28(xuu490, xuu510, ty_Integer) -> new_esEs16(xuu490, xuu510) 35.39/13.71 new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT 35.39/13.71 new_esEs25(xuu4910, xuu5110, app(ty_[], cec)) -> new_esEs20(xuu4910, xuu5110, cec) 35.39/13.71 new_ltEs4(LT, LT) -> True 35.39/13.71 new_ltEs4(EQ, LT) -> False 35.39/13.71 new_ltEs18(xuu4911, xuu5111, app(app(app(ty_@3, cgd), cge), cgf)) -> new_ltEs16(xuu4911, xuu5111, cgd, cge, cgf) 35.39/13.71 new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 35.39/13.71 new_compare18(xuu4900, xuu5100, ty_Char) -> new_compare29(xuu4900, xuu5100) 35.39/13.71 new_esEs28(xuu490, xuu510, ty_Double) -> new_esEs15(xuu490, xuu510) 35.39/13.71 new_esEs28(xuu490, xuu510, ty_Bool) -> new_esEs14(xuu490, xuu510) 35.39/13.71 new_esEs26(xuu4911, xuu5111, app(app(ty_@2, dah), dba)) -> new_esEs6(xuu4911, xuu5111, dah, dba) 35.39/13.71 new_esEs28(xuu490, xuu510, ty_@0) -> new_esEs9(xuu490, xuu510) 35.39/13.71 new_esEs32(xuu37, xuu39, app(app(ty_Either, bfc), bfd)) -> new_esEs5(xuu37, xuu39, bfc, bfd) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs7(xuu3110000, xuu6000, bdd, bde, bdf) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.71 new_esEs20(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), deg) -> new_asAs(new_esEs29(xuu3110000, xuu6000, deg), new_esEs20(xuu3110001, xuu6001, deg)) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, app(app(ty_@2, baa), bab)) -> new_esEs6(xuu3110001, xuu6001, baa, bab) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, app(ty_Ratio, cbh)) -> new_esEs18(xuu3110000, xuu6000, cbh) 35.39/13.71 new_primMulNat0(Succ(xuu311000100), Zero) -> Zero 35.39/13.71 new_primMulNat0(Zero, Succ(xuu600000)) -> Zero 35.39/13.71 new_lt21(xuu490, xuu510, ty_Integer) -> new_lt13(xuu490, xuu510) 35.39/13.71 new_lt19(xuu4910, xuu5110, app(app(ty_Either, chd), che)) -> new_lt9(xuu4910, xuu5110, chd, che) 35.39/13.71 new_esEs31(xuu311000, xuu600, app(ty_Maybe, cce)) -> new_esEs4(xuu311000, xuu600, cce) 35.39/13.71 new_primPlusNat1(Succ(xuu1120), xuu600000) -> Succ(Succ(new_primPlusNat0(xuu1120, xuu600000))) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, ty_Float) -> new_ltEs12(xuu4912, xuu5112) 35.39/13.71 new_esEs13(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.71 new_lt20(xuu4911, xuu5111, ty_@0) -> new_lt10(xuu4911, xuu5111) 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, caa), cab), bhe) -> new_esEs5(xuu3110000, xuu6000, caa, cab) 35.39/13.71 new_primPlusNat0(Succ(xuu41200), Zero) -> Succ(xuu41200) 35.39/13.71 new_primPlusNat0(Zero, Succ(xuu10800)) -> Succ(xuu10800) 35.39/13.71 new_lt19(xuu4910, xuu5110, app(ty_[], chb)) -> new_lt11(xuu4910, xuu5110, chb) 35.39/13.71 new_esEs32(xuu37, xuu39, ty_Int) -> new_esEs10(xuu37, xuu39) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, app(app(app(ty_@3, cba), cbb), cbc)) -> new_esEs7(xuu3110000, xuu6000, cba, cbb, cbc) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), app(app(ty_Either, ddc), ddd)) -> new_ltEs5(xuu4910, xuu5110, ddc, ddd) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bce), bcf)) -> new_esEs5(xuu3110001, xuu6001, bce, bcf) 35.39/13.71 new_esEs26(xuu4911, xuu5111, app(ty_Ratio, dbb)) -> new_esEs18(xuu4911, xuu5111, dbb) 35.39/13.71 new_primPlusNat1(Zero, xuu600000) -> Succ(xuu600000) 35.39/13.71 new_ltEs15(xuu491, xuu511, cdh) -> new_fsEs(new_compare8(xuu491, xuu511, cdh)) 35.39/13.71 new_compare17(xuu490, xuu510, True, fc, fd) -> LT 35.39/13.71 new_compare6(xuu490, xuu510, ee, ef) -> new_compare211(xuu490, xuu510, new_esEs6(xuu490, xuu510, ee, ef), ee, ef) 35.39/13.71 new_lt12(xuu4910, xuu5110, ty_Int) -> new_lt8(xuu4910, xuu5110) 35.39/13.71 new_esEs8(LT, LT) -> True 35.39/13.71 new_compare15(xuu490, xuu510, fc, fd) -> new_compare27(xuu490, xuu510, new_esEs5(xuu490, xuu510, fc, fd), fc, fd) 35.39/13.71 new_ltEs20(xuu491, xuu511, ty_Float) -> new_ltEs12(xuu491, xuu511) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) 35.39/13.71 new_esEs30(xuu36, xuu37, xuu38, xuu39, True, bee, bef) -> new_esEs8(new_compare211(@2(xuu36, xuu37), @2(xuu38, xuu39), new_esEs32(xuu37, xuu39, bef), bee, bef), LT) 35.39/13.71 new_ltEs20(xuu491, xuu511, app(app(ty_@2, cea), ceb)) -> new_ltEs14(xuu491, xuu511, cea, ceb) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.71 new_esEs25(xuu4910, xuu5110, ty_Float) -> new_esEs19(xuu4910, xuu5110) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), db, ty_Float) -> new_ltEs12(xuu4910, xuu5110) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 35.39/13.71 new_esEs27(xuu4910, xuu5110, ty_@0) -> new_esEs9(xuu4910, xuu5110) 35.39/13.71 new_lt21(xuu490, xuu510, app(ty_Ratio, dec)) -> new_lt18(xuu490, xuu510, dec) 35.39/13.71 new_esEs13(xuu3110000, xuu6000, app(app(ty_@2, bbc), bbd)) -> new_esEs6(xuu3110000, xuu6000, bbc, bbd) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, app(ty_Maybe, cff)) -> new_ltEs9(xuu4911, xuu5111, cff) 35.39/13.71 new_ltEs4(LT, EQ) -> True 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.71 new_ltEs20(xuu491, xuu511, app(app(app(ty_@3, cgg), cgh), cha)) -> new_ltEs16(xuu491, xuu511, cgg, cgh, cha) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bca)) -> new_esEs4(xuu3110001, xuu6001, bca) 35.39/13.71 new_lt12(xuu4910, xuu5110, app(ty_Maybe, ced)) -> new_lt14(xuu4910, xuu5110, ced) 35.39/13.71 new_esEs26(xuu4911, xuu5111, app(ty_[], dad)) -> new_esEs20(xuu4911, xuu5111, dad) 35.39/13.71 new_esEs13(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Ordering, bf) -> new_ltEs4(xuu4910, xuu5110) 35.39/13.71 new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 35.39/13.71 new_compare25(xuu490, xuu510, True, eg) -> EQ 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), db, app(ty_Ratio, ea)) -> new_ltEs15(xuu4910, xuu5110, ea) 35.39/13.71 new_esEs14(True, True) -> True 35.39/13.71 new_ltEs20(xuu491, xuu511, ty_Bool) -> new_ltEs17(xuu491, xuu511) 35.39/13.71 new_esEs13(xuu3110000, xuu6000, app(ty_Ratio, bbe)) -> new_esEs18(xuu3110000, xuu6000, bbe) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, app(app(ty_@2, cbf), cbg)) -> new_esEs6(xuu3110000, xuu6000, cbf, cbg) 35.39/13.71 new_esEs25(xuu4910, xuu5110, app(app(ty_@2, ceg), ceh)) -> new_esEs6(xuu4910, xuu5110, ceg, ceh) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, app(app(ty_Either, ge), gf)) -> new_esEs5(xuu3110002, xuu6002, ge, gf) 35.39/13.71 new_esEs32(xuu37, xuu39, app(ty_Maybe, beg)) -> new_esEs4(xuu37, xuu39, beg) 35.39/13.71 new_ltEs4(EQ, EQ) -> True 35.39/13.71 new_esEs12(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.71 new_esEs31(xuu311000, xuu600, ty_Int) -> new_esEs10(xuu311000, xuu600) 35.39/13.71 new_lt21(xuu490, xuu510, ty_@0) -> new_lt10(xuu490, xuu510) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, ty_Integer) -> new_ltEs8(xuu4911, xuu5111) 35.39/13.71 new_esEs25(xuu4910, xuu5110, app(ty_Ratio, cfa)) -> new_esEs18(xuu4910, xuu5110, cfa) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, app(app(app(ty_@3, hd), he), hf)) -> new_esEs7(xuu3110001, xuu6001, hd, he, hf) 35.39/13.71 new_compare18(xuu4900, xuu5100, ty_Integer) -> new_compare11(xuu4900, xuu5100) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), app(ty_[], dda)) -> new_ltEs7(xuu4910, xuu5110, dda) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bdg), bdh)) -> new_esEs5(xuu3110000, xuu6000, bdg, bdh) 35.39/13.71 new_compare19(xuu490, xuu510, eg) -> new_compare25(xuu490, xuu510, new_esEs4(xuu490, xuu510, eg), eg) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), db, ty_Bool) -> new_ltEs17(xuu4910, xuu5110) 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, ccf)) -> new_esEs4(xuu3110000, xuu6000, ccf) 35.39/13.71 new_primCmpNat2(xuu4900, Zero) -> GT 35.39/13.71 new_esEs29(xuu3110000, xuu6000, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.71 new_compare210(xuu490, xuu510, False) -> new_compare112(xuu490, xuu510, new_ltEs17(xuu490, xuu510)) 35.39/13.71 new_compare24(xuu490, xuu510, False) -> new_compare10(xuu490, xuu510, new_ltEs4(xuu490, xuu510)) 35.39/13.71 new_compare26(xuu490, xuu510, True, eh, fa, fb) -> EQ 35.39/13.71 new_compare112(xuu490, xuu510, True) -> LT 35.39/13.71 new_compare18(xuu4900, xuu5100, app(app(app(ty_@3, bha), bhb), bhc)) -> new_compare14(xuu4900, xuu5100, bha, bhb, bhc) 35.39/13.71 new_esEs27(xuu4910, xuu5110, ty_Bool) -> new_esEs14(xuu4910, xuu5110) 35.39/13.71 new_esEs25(xuu4910, xuu5110, ty_Integer) -> new_esEs16(xuu4910, xuu5110) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, app(app(ty_Either, dbh), dca)) -> new_ltEs5(xuu4912, xuu5112, dbh, dca) 35.39/13.71 new_compare18(xuu4900, xuu5100, ty_Bool) -> new_compare7(xuu4900, xuu5100) 35.39/13.71 new_lt19(xuu4910, xuu5110, app(ty_Maybe, chc)) -> new_lt14(xuu4910, xuu5110, chc) 35.39/13.71 new_lt20(xuu4911, xuu5111, ty_Char) -> new_lt17(xuu4911, xuu5111) 35.39/13.71 new_compare7(xuu490, xuu510) -> new_compare210(xuu490, xuu510, new_esEs14(xuu490, xuu510)) 35.39/13.71 new_primMulInt(Pos(xuu31100010), Neg(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 35.39/13.71 new_primMulInt(Neg(xuu31100010), Pos(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 35.39/13.71 new_esEs13(xuu3110000, xuu6000, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs7(xuu3110000, xuu6000, baf, bag, bah) 35.39/13.71 new_lt12(xuu4910, xuu5110, app(ty_Ratio, cfa)) -> new_lt18(xuu4910, xuu5110, cfa) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.71 new_primCmpNat1(Succ(xuu5100), xuu4900) -> new_primCmpNat0(xuu5100, xuu4900) 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.71 new_lt10(xuu490, xuu510) -> new_esEs8(new_compare16(xuu490, xuu510), LT) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), app(ty_Ratio, ddg)) -> new_ltEs15(xuu4910, xuu5110, ddg) 35.39/13.71 new_lt12(xuu4910, xuu5110, ty_Integer) -> new_lt13(xuu4910, xuu5110) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, app(app(ty_@2, cga), cgb)) -> new_ltEs14(xuu4911, xuu5111, cga, cgb) 35.39/13.71 new_sr0(Integer(xuu51000), Integer(xuu49010)) -> Integer(new_primMulInt(xuu51000, xuu49010)) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, app(app(app(ty_@3, dce), dcf), dcg)) -> new_ltEs16(xuu4912, xuu5112, dce, dcf, dcg) 35.39/13.71 new_ltEs6(xuu491, xuu511) -> new_fsEs(new_compare9(xuu491, xuu511)) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, ty_Bool) -> new_ltEs17(xuu4912, xuu5112) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_@0) -> new_ltEs10(xuu4910, xuu5110) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, ty_Ordering) -> new_ltEs4(xuu4911, xuu5111) 35.39/13.71 new_esEs28(xuu490, xuu510, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs7(xuu490, xuu510, eh, fa, fb) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Bool, bf) -> new_ltEs17(xuu4910, xuu5110) 35.39/13.71 new_esEs31(xuu311000, xuu600, ty_Float) -> new_esEs19(xuu311000, xuu600) 35.39/13.71 new_primCompAux0(xuu4900, xuu5100, xuu146, bga) -> new_primCompAux00(xuu146, new_compare18(xuu4900, xuu5100, bga)) 35.39/13.71 new_compare111(xuu121, xuu122, xuu123, xuu124, True, xuu126, ccb, ccc) -> new_compare110(xuu121, xuu122, xuu123, xuu124, True, ccb, ccc) 35.39/13.71 new_esEs25(xuu4910, xuu5110, ty_Char) -> new_esEs17(xuu4910, xuu5110) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, ty_Integer) -> new_ltEs8(xuu4912, xuu5112) 35.39/13.71 new_ltEs9(Nothing, Just(xuu5110), dch) -> True 35.39/13.71 new_compare0([], :(xuu5100, xuu5101), bga) -> LT 35.39/13.71 new_asAs(True, xuu72) -> xuu72 35.39/13.71 new_lt12(xuu4910, xuu5110, ty_Bool) -> new_lt5(xuu4910, xuu5110) 35.39/13.71 new_ltEs5(Right(xuu4910), Left(xuu5110), db, bf) -> False 35.39/13.71 new_compare113(xuu490, xuu510, True, eh, fa, fb) -> LT 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, ty_Char) -> new_ltEs13(xuu4911, xuu5111) 35.39/13.71 new_esEs31(xuu311000, xuu600, ty_Double) -> new_esEs15(xuu311000, xuu600) 35.39/13.71 new_esEs25(xuu4910, xuu5110, ty_Double) -> new_esEs15(xuu4910, xuu5110) 35.39/13.71 new_lt16(xuu490, xuu510) -> new_esEs8(new_compare5(xuu490, xuu510), LT) 35.39/13.71 new_esEs31(xuu311000, xuu600, ty_Char) -> new_esEs17(xuu311000, xuu600) 35.39/13.71 new_compare14(xuu490, xuu510, eh, fa, fb) -> new_compare26(xuu490, xuu510, new_esEs7(xuu490, xuu510, eh, fa, fb), eh, fa, fb) 35.39/13.71 new_lt20(xuu4911, xuu5111, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_lt7(xuu4911, xuu5111, dbc, dbd, dbe) 35.39/13.71 new_esEs31(xuu311000, xuu600, ty_Integer) -> new_esEs16(xuu311000, xuu600) 35.39/13.71 new_primCmpNat2(xuu4900, Succ(xuu5100)) -> new_primCmpNat0(xuu4900, xuu5100) 35.39/13.71 new_lt19(xuu4910, xuu5110, ty_@0) -> new_lt10(xuu4910, xuu5110) 35.39/13.71 new_ltEs20(xuu491, xuu511, app(app(ty_Either, db), bf)) -> new_ltEs5(xuu491, xuu511, db, bf) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), app(app(app(ty_@3, cf), cg), da), bf) -> new_ltEs16(xuu4910, xuu5110, cf, cg, da) 35.39/13.71 new_ltEs20(xuu491, xuu511, ty_Integer) -> new_ltEs8(xuu491, xuu511) 35.39/13.71 new_compare13(xuu490, xuu510, True, eg) -> LT 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, cdb), cdc)) -> new_esEs5(xuu3110000, xuu6000, cdb, cdc) 35.39/13.71 new_lt21(xuu490, xuu510, app(ty_[], bga)) -> new_lt11(xuu490, xuu510, bga) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Integer, bf) -> new_ltEs8(xuu4910, xuu5110) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, app(ty_[], hb)) -> new_esEs20(xuu3110002, xuu6002, hb) 35.39/13.71 new_lt19(xuu4910, xuu5110, ty_Int) -> new_lt8(xuu4910, xuu5110) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), db, app(app(ty_Either, de), df)) -> new_ltEs5(xuu4910, xuu5110, de, df) 35.39/13.71 new_lt11(xuu490, xuu510, bga) -> new_esEs8(new_compare0(xuu490, xuu510, bga), LT) 35.39/13.71 new_esEs31(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, app(app(ty_Either, dfd), dfe)) -> new_esEs5(xuu3110000, xuu6000, dfd, dfe) 35.39/13.71 new_esEs25(xuu4910, xuu5110, ty_@0) -> new_esEs9(xuu4910, xuu5110) 35.39/13.71 new_esEs9(@0, @0) -> True 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.71 new_primCompAux00(xuu151, EQ) -> xuu151 35.39/13.71 new_compare0([], [], bga) -> EQ 35.39/13.71 new_sr(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) 35.39/13.71 new_compare211(@2(xuu490, xuu491), @2(xuu510, xuu511), False, dee, def) -> new_compare111(xuu490, xuu491, xuu510, xuu511, new_lt21(xuu490, xuu510, dee), new_asAs(new_esEs28(xuu490, xuu510, dee), new_ltEs20(xuu491, xuu511, def)), dee, def) 35.39/13.71 new_esEs27(xuu4910, xuu5110, app(app(ty_@2, chf), chg)) -> new_esEs6(xuu4910, xuu5110, chf, chg) 35.39/13.71 new_esEs17(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 35.39/13.71 new_primMulNat0(Zero, Zero) -> Zero 35.39/13.71 new_lt19(xuu4910, xuu5110, app(app(app(ty_@3, daa), dab), dac)) -> new_lt7(xuu4910, xuu5110, daa, dab, dac) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, ty_Char) -> new_esEs17(xuu3110002, xuu6002) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, ty_Float) -> new_esEs19(xuu3110002, xuu6002) 35.39/13.71 new_compare16(@0, @0) -> EQ 35.39/13.71 new_ltEs13(xuu491, xuu511) -> new_fsEs(new_compare29(xuu491, xuu511)) 35.39/13.71 new_compare10(xuu490, xuu510, False) -> GT 35.39/13.71 new_esEs27(xuu4910, xuu5110, ty_Ordering) -> new_esEs8(xuu4910, xuu5110) 35.39/13.71 new_esEs31(xuu311000, xuu600, app(ty_[], deg)) -> new_esEs20(xuu311000, xuu600, deg) 35.39/13.71 new_lt12(xuu4910, xuu5110, app(app(ty_@2, ceg), ceh)) -> new_lt4(xuu4910, xuu5110, ceg, ceh) 35.39/13.71 new_compare11(Integer(xuu4900), Integer(xuu5100)) -> new_primCmpInt(xuu4900, xuu5100) 35.39/13.71 new_lt12(xuu4910, xuu5110, ty_Ordering) -> new_lt6(xuu4910, xuu5110) 35.39/13.71 new_esEs28(xuu490, xuu510, app(ty_Maybe, eg)) -> new_esEs4(xuu490, xuu510, eg) 35.39/13.71 new_compare12(xuu490, xuu510) -> new_compare24(xuu490, xuu510, new_esEs8(xuu490, xuu510)) 35.39/13.71 new_primCmpNat1(Zero, xuu4900) -> LT 35.39/13.71 new_esEs13(xuu3110000, xuu6000, app(ty_Maybe, bae)) -> new_esEs4(xuu3110000, xuu6000, bae) 35.39/13.71 new_esEs4(Nothing, Nothing, cce) -> True 35.39/13.71 new_esEs26(xuu4911, xuu5111, ty_Float) -> new_esEs19(xuu4911, xuu5111) 35.39/13.71 new_esEs26(xuu4911, xuu5111, ty_Char) -> new_esEs17(xuu4911, xuu5111) 35.39/13.71 new_lt20(xuu4911, xuu5111, app(app(ty_Either, daf), dag)) -> new_lt9(xuu4911, xuu5111, daf, dag) 35.39/13.71 new_compare8(:%(xuu4900, xuu4901), :%(xuu5100, xuu5101), ty_Int) -> new_compare9(new_sr(xuu4900, xuu5101), new_sr(xuu5100, xuu4901)) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, app(app(ty_Either, cbd), cbe)) -> new_esEs5(xuu3110000, xuu6000, cbd, cbe) 35.39/13.71 new_esEs4(Nothing, Just(xuu6000), cce) -> False 35.39/13.71 new_esEs4(Just(xuu3110000), Nothing, cce) -> False 35.39/13.71 new_lt7(xuu490, xuu510, eh, fa, fb) -> new_esEs8(new_compare14(xuu490, xuu510, eh, fa, fb), LT) 35.39/13.71 new_esEs27(xuu4910, xuu5110, app(ty_Ratio, chh)) -> new_esEs18(xuu4910, xuu5110, chh) 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.71 new_esEs28(xuu490, xuu510, app(ty_Ratio, dec)) -> new_esEs18(xuu490, xuu510, dec) 35.39/13.71 new_lt21(xuu490, xuu510, app(ty_Maybe, eg)) -> new_lt14(xuu490, xuu510, eg) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), db, ty_@0) -> new_ltEs10(xuu4910, xuu5110) 35.39/13.71 new_esEs28(xuu490, xuu510, app(app(ty_@2, ee), ef)) -> new_esEs6(xuu490, xuu510, ee, ef) 35.39/13.71 new_esEs32(xuu37, xuu39, ty_Char) -> new_esEs17(xuu37, xuu39) 35.39/13.71 new_esEs32(xuu37, xuu39, ty_Ordering) -> new_esEs8(xuu37, xuu39) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, ty_Int) -> new_esEs10(xuu3110002, xuu6002) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), app(ty_[], bg), bf) -> new_ltEs7(xuu4910, xuu5110, bg) 35.39/13.71 new_lt21(xuu490, xuu510, ty_Int) -> new_lt8(xuu490, xuu510) 35.39/13.71 new_ltEs17(False, False) -> True 35.39/13.71 new_ltEs18(xuu4911, xuu5111, app(ty_[], cfe)) -> new_ltEs7(xuu4911, xuu5111, cfe) 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.71 new_lt20(xuu4911, xuu5111, app(ty_Maybe, dae)) -> new_lt14(xuu4911, xuu5111, dae) 35.39/13.71 new_lt5(xuu490, xuu510) -> new_esEs8(new_compare7(xuu490, xuu510), LT) 35.39/13.71 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 35.39/13.71 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_@0, bhe) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.71 new_esEs15(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 35.39/13.71 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs15(xuu3110001, xuu6001) 35.39/13.71 new_compare24(xuu490, xuu510, True) -> EQ 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), db, ty_Char) -> new_ltEs13(xuu4910, xuu5110) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, ty_Bool) -> new_esEs14(xuu3110001, xuu6001) 35.39/13.71 new_esEs25(xuu4910, xuu5110, app(app(ty_Either, cee), cef)) -> new_esEs5(xuu4910, xuu5110, cee, cef) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), db, ty_Double) -> new_ltEs11(xuu4910, xuu5110) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, app(app(ty_Either, cfg), cfh)) -> new_ltEs5(xuu4911, xuu5111, cfg, cfh) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), db, ty_Int) -> new_ltEs6(xuu4910, xuu5110) 35.39/13.71 new_esEs26(xuu4911, xuu5111, ty_Ordering) -> new_esEs8(xuu4911, xuu5111) 35.39/13.71 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 35.39/13.71 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 35.39/13.71 new_esEs14(False, False) -> True 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), app(ty_Maybe, ddb)) -> new_ltEs9(xuu4910, xuu5110, ddb) 35.39/13.71 new_ltEs4(EQ, GT) -> True 35.39/13.71 new_esEs31(xuu311000, xuu600, app(app(ty_Either, cag), bhe)) -> new_esEs5(xuu311000, xuu600, cag, bhe) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.71 new_compare211(xuu49, xuu51, True, dee, def) -> EQ 35.39/13.71 new_esEs20(:(xuu3110000, xuu3110001), [], deg) -> False 35.39/13.71 new_esEs20([], :(xuu6000, xuu6001), deg) -> False 35.39/13.71 new_compare27(xuu490, xuu510, False, fc, fd) -> new_compare17(xuu490, xuu510, new_ltEs5(xuu490, xuu510, fc, fd), fc, fd) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, app(ty_Maybe, deh)) -> new_esEs4(xuu3110000, xuu6000, deh) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), db, app(ty_[], dc)) -> new_ltEs7(xuu4910, xuu5110, dc) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs16(xuu3110001, xuu6001) 35.39/13.71 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 35.39/13.71 new_ltEs17(True, False) -> False 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.71 new_esEs19(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 35.39/13.71 new_compare18(xuu4900, xuu5100, app(app(ty_Either, bgd), bge)) -> new_compare15(xuu4900, xuu5100, bgd, bge) 35.39/13.71 new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ff, fg, fh) -> new_asAs(new_esEs13(xuu3110000, xuu6000, ff), new_asAs(new_esEs12(xuu3110001, xuu6001, fg), new_esEs11(xuu3110002, xuu6002, fh))) 35.39/13.71 new_esEs26(xuu4911, xuu5111, app(app(ty_Either, daf), dag)) -> new_esEs5(xuu4911, xuu5111, daf, dag) 35.39/13.71 new_lt15(xuu490, xuu510) -> new_esEs8(new_compare28(xuu490, xuu510), LT) 35.39/13.71 new_esEs32(xuu37, xuu39, ty_@0) -> new_esEs9(xuu37, xuu39) 35.39/13.71 new_ltEs17(False, True) -> True 35.39/13.71 new_ltEs7(xuu491, xuu511, ded) -> new_fsEs(new_compare0(xuu491, xuu511, ded)) 35.39/13.71 new_lt21(xuu490, xuu510, app(app(app(ty_@3, eh), fa), fb)) -> new_lt7(xuu490, xuu510, eh, fa, fb) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, ty_Bool) -> new_esEs14(xuu3110002, xuu6002) 35.39/13.71 new_esEs18(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ccd) -> new_asAs(new_esEs24(xuu3110000, xuu6000, ccd), new_esEs23(xuu3110001, xuu6001, ccd)) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, ty_Double) -> new_esEs15(xuu3110002, xuu6002) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, app(ty_[], bad)) -> new_esEs20(xuu3110001, xuu6001, bad) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), db, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs16(xuu4910, xuu5110, eb, ec, ed) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, app(app(app(ty_@3, dfa), dfb), dfc)) -> new_esEs7(xuu3110000, xuu6000, dfa, dfb, dfc) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, app(ty_[], dbf)) -> new_ltEs7(xuu4912, xuu5112, dbf) 35.39/13.71 new_esEs26(xuu4911, xuu5111, ty_Integer) -> new_esEs16(xuu4911, xuu5111) 35.39/13.71 new_not(False) -> True 35.39/13.71 new_compare18(xuu4900, xuu5100, app(ty_Maybe, bgc)) -> new_compare19(xuu4900, xuu5100, bgc) 35.39/13.71 new_ltEs12(xuu491, xuu511) -> new_fsEs(new_compare5(xuu491, xuu511)) 35.39/13.71 new_esEs31(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, app(ty_[], cca)) -> new_esEs20(xuu3110000, xuu6000, cca) 35.39/13.71 new_primCmpInt(Neg(Succ(xuu4900)), Neg(xuu510)) -> new_primCmpNat1(xuu510, xuu4900) 35.39/13.71 new_compare0(:(xuu4900, xuu4901), [], bga) -> GT 35.39/13.71 new_esEs8(LT, GT) -> False 35.39/13.71 new_esEs8(GT, LT) -> False 35.39/13.71 new_primPlusNat0(Succ(xuu41200), Succ(xuu10800)) -> Succ(Succ(new_primPlusNat0(xuu41200, xuu10800))) 35.39/13.71 new_esEs16(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 35.39/13.71 new_esEs26(xuu4911, xuu5111, ty_Double) -> new_esEs15(xuu4911, xuu5111) 35.39/13.71 new_compare18(xuu4900, xuu5100, ty_Float) -> new_compare5(xuu4900, xuu5100) 35.39/13.71 new_esEs5(Left(xuu3110000), Right(xuu6000), cag, bhe) -> False 35.39/13.71 new_esEs5(Right(xuu3110000), Left(xuu6000), cag, bhe) -> False 35.39/13.71 new_primCmpInt(Pos(Succ(xuu4900)), Pos(xuu510)) -> new_primCmpNat2(xuu4900, xuu510) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), db, app(app(ty_@2, dg), dh)) -> new_ltEs14(xuu4910, xuu5110, dg, dh) 35.39/13.71 new_lt14(xuu490, xuu510, eg) -> new_esEs8(new_compare19(xuu490, xuu510, eg), LT) 35.39/13.71 new_compare28(Double(xuu4900, Neg(xuu49010)), Double(xuu5100, Neg(xuu51010))) -> new_compare9(new_sr(xuu4900, Neg(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, ty_Integer) -> new_esEs16(xuu3110002, xuu6002) 35.39/13.71 new_compare27(xuu490, xuu510, True, fc, fd) -> EQ 35.39/13.71 new_ltEs20(xuu491, xuu511, app(ty_[], ded)) -> new_ltEs7(xuu491, xuu511, ded) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Int) -> new_ltEs6(xuu4910, xuu5110) 35.39/13.71 new_ltEs4(GT, LT) -> False 35.39/13.71 new_esEs11(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, ty_Int) -> new_ltEs6(xuu4911, xuu5111) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, app(ty_Ratio, dfh)) -> new_esEs18(xuu3110000, xuu6000, dfh) 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Int, bhe) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.71 new_lt12(xuu4910, xuu5110, app(ty_[], cec)) -> new_lt11(xuu4910, xuu5110, cec) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.71 new_esEs27(xuu4910, xuu5110, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs7(xuu4910, xuu5110, daa, dab, dac) 35.39/13.71 new_compare110(xuu121, xuu122, xuu123, xuu124, False, ccb, ccc) -> GT 35.39/13.71 new_lt20(xuu4911, xuu5111, ty_Int) -> new_lt8(xuu4911, xuu5111) 35.39/13.71 new_ltEs8(xuu491, xuu511) -> new_fsEs(new_compare11(xuu491, xuu511)) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, app(app(ty_@2, dff), dfg)) -> new_esEs6(xuu3110000, xuu6000, dff, dfg) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.71 new_lt17(xuu490, xuu510) -> new_esEs8(new_compare29(xuu490, xuu510), LT) 35.39/13.71 new_esEs32(xuu37, xuu39, ty_Float) -> new_esEs19(xuu37, xuu39) 35.39/13.71 new_esEs24(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.71 new_compare5(Float(xuu4900, Neg(xuu49010)), Float(xuu5100, Neg(xuu51010))) -> new_compare9(new_sr(xuu4900, Neg(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) 35.39/13.71 new_esEs10(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 35.39/13.71 new_lt21(xuu490, xuu510, ty_Char) -> new_lt17(xuu490, xuu510) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), db, ty_Ordering) -> new_ltEs4(xuu4910, xuu5110) 35.39/13.71 new_compare10(xuu490, xuu510, True) -> LT 35.39/13.71 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 35.39/13.71 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 35.39/13.71 new_lt21(xuu490, xuu510, ty_Double) -> new_lt15(xuu490, xuu510) 35.39/13.71 new_compare0(:(xuu4900, xuu4901), :(xuu5100, xuu5101), bga) -> new_primCompAux0(xuu4900, xuu5100, new_compare0(xuu4901, xuu5101, bga), bga) 35.39/13.71 new_esEs32(xuu37, xuu39, app(ty_Ratio, bfg)) -> new_esEs18(xuu37, xuu39, bfg) 35.39/13.71 new_lt20(xuu4911, xuu5111, app(app(ty_@2, dah), dba)) -> new_lt4(xuu4911, xuu5111, dah, dba) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Float, bf) -> new_ltEs12(xuu4910, xuu5110) 35.39/13.71 new_esEs25(xuu4910, xuu5110, app(ty_Maybe, ced)) -> new_esEs4(xuu4910, xuu5110, ced) 35.39/13.71 new_lt21(xuu490, xuu510, ty_Ordering) -> new_lt6(xuu490, xuu510) 35.39/13.71 new_esEs32(xuu37, xuu39, app(app(ty_@2, bfe), bff)) -> new_esEs6(xuu37, xuu39, bfe, bff) 35.39/13.71 new_esEs25(xuu4910, xuu5110, ty_Int) -> new_esEs10(xuu4910, xuu5110) 35.39/13.71 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 35.39/13.71 new_compare8(:%(xuu4900, xuu4901), :%(xuu5100, xuu5101), ty_Integer) -> new_compare11(new_sr0(xuu4900, xuu5101), new_sr0(xuu5100, xuu4901)) 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, cae), bhe) -> new_esEs18(xuu3110000, xuu6000, cae) 35.39/13.71 new_lt6(xuu490, xuu510) -> new_esEs8(new_compare12(xuu490, xuu510), LT) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_[], cdg)) -> new_esEs20(xuu3110000, xuu6000, cdg) 35.39/13.71 new_primCmpNat0(Succ(xuu49000), Succ(xuu51000)) -> new_primCmpNat0(xuu49000, xuu51000) 35.39/13.71 new_lt12(xuu4910, xuu5110, ty_Float) -> new_lt16(xuu4910, xuu5110) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, app(ty_Ratio, dcd)) -> new_ltEs15(xuu4912, xuu5112, dcd) 35.39/13.71 new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat1(Zero, xuu5100) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) 35.39/13.71 new_compare110(xuu121, xuu122, xuu123, xuu124, True, ccb, ccc) -> LT 35.39/13.71 new_esEs27(xuu4910, xuu5110, app(ty_Maybe, chc)) -> new_esEs4(xuu4910, xuu5110, chc) 35.39/13.71 new_ltEs20(xuu491, xuu511, ty_Ordering) -> new_ltEs4(xuu491, xuu511) 35.39/13.71 new_esEs26(xuu4911, xuu5111, ty_Int) -> new_esEs10(xuu4911, xuu5111) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, app(ty_[], bed)) -> new_esEs20(xuu3110000, xuu6000, bed) 35.39/13.71 new_esEs28(xuu490, xuu510, ty_Ordering) -> new_esEs8(xuu490, xuu510) 35.39/13.71 new_compare18(xuu4900, xuu5100, ty_@0) -> new_compare16(xuu4900, xuu5100) 35.39/13.71 new_lt20(xuu4911, xuu5111, ty_Bool) -> new_lt5(xuu4911, xuu5111) 35.39/13.71 new_compare5(Float(xuu4900, Pos(xuu49010)), Float(xuu5100, Pos(xuu51010))) -> new_compare9(new_sr(xuu4900, Pos(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) 35.39/13.71 new_esEs32(xuu37, xuu39, app(ty_[], bfh)) -> new_esEs20(xuu37, xuu39, bfh) 35.39/13.71 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 35.39/13.71 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 35.39/13.71 new_esEs13(xuu3110000, xuu6000, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, app(ty_Ratio, cgc)) -> new_ltEs15(xuu4911, xuu5111, cgc) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Float) -> new_ltEs12(xuu4910, xuu5110) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, app(ty_[], bdb)) -> new_esEs20(xuu3110001, xuu6001, bdb) 35.39/13.71 new_lt21(xuu490, xuu510, app(app(ty_@2, ee), ef)) -> new_lt4(xuu490, xuu510, ee, ef) 35.39/13.71 new_esEs31(xuu311000, xuu600, app(ty_Ratio, ccd)) -> new_esEs18(xuu311000, xuu600, ccd) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cag, ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.71 new_ltEs20(xuu491, xuu511, app(ty_Ratio, cdh)) -> new_ltEs15(xuu491, xuu511, cdh) 35.39/13.71 new_esEs13(xuu3110000, xuu6000, ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.71 new_compare29(Char(xuu4900), Char(xuu5100)) -> new_primCmpNat0(xuu4900, xuu5100) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, ty_Ordering) -> new_ltEs4(xuu4912, xuu5112) 35.39/13.71 new_esEs26(xuu4911, xuu5111, app(ty_Maybe, dae)) -> new_esEs4(xuu4911, xuu5111, dae) 35.39/13.71 new_primEqNat0(Zero, Zero) -> True 35.39/13.71 new_lt19(xuu4910, xuu5110, ty_Ordering) -> new_lt6(xuu4910, xuu5110) 35.39/13.71 new_esEs28(xuu490, xuu510, app(app(ty_Either, fc), fd)) -> new_esEs5(xuu490, xuu510, fc, fd) 35.39/13.71 new_ltEs9(Just(xuu4910), Nothing, dch) -> False 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Integer, bhe) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), db, app(ty_Maybe, dd)) -> new_ltEs9(xuu4910, xuu5110, dd) 35.39/13.71 new_lt19(xuu4910, xuu5110, ty_Double) -> new_lt15(xuu4910, xuu5110) 35.39/13.71 new_ltEs9(Nothing, Nothing, dch) -> True 35.39/13.71 new_esEs13(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.71 new_lt12(xuu4910, xuu5110, app(app(ty_Either, cee), cef)) -> new_lt9(xuu4910, xuu5110, cee, cef) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), app(ty_Ratio, ce), bf) -> new_ltEs15(xuu4910, xuu5110, ce) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.71 new_lt9(xuu490, xuu510, fc, fd) -> new_esEs8(new_compare15(xuu490, xuu510, fc, fd), LT) 35.39/13.71 new_ltEs4(GT, GT) -> True 35.39/13.71 new_ltEs17(True, True) -> True 35.39/13.71 new_esEs32(xuu37, xuu39, ty_Bool) -> new_esEs14(xuu37, xuu39) 35.39/13.71 new_compare113(xuu490, xuu510, False, eh, fa, fb) -> GT 35.39/13.71 new_esEs31(xuu311000, xuu600, app(app(ty_@2, bbg), bbh)) -> new_esEs6(xuu311000, xuu600, bbg, bbh) 35.39/13.71 new_asAs(False, xuu72) -> False 35.39/13.71 new_compare18(xuu4900, xuu5100, app(app(ty_@2, bgf), bgg)) -> new_compare6(xuu4900, xuu5100, bgf, bgg) 35.39/13.71 new_lt20(xuu4911, xuu5111, ty_Ordering) -> new_lt6(xuu4911, xuu5111) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs14(xuu3110001, xuu6001) 35.39/13.71 new_esEs24(xuu3110000, xuu6000, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, ty_Integer) -> new_esEs16(xuu3110001, xuu6001) 35.39/13.71 new_esEs8(EQ, GT) -> False 35.39/13.71 new_esEs8(GT, EQ) -> False 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.71 new_lt19(xuu4910, xuu5110, ty_Char) -> new_lt17(xuu4910, xuu5110) 35.39/13.71 new_lt20(xuu4911, xuu5111, ty_Double) -> new_lt15(xuu4911, xuu5111) 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Double, bhe) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.71 new_ltEs14(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), cea, ceb) -> new_pePe(new_lt12(xuu4910, xuu5110, cea), new_asAs(new_esEs25(xuu4910, xuu5110, cea), new_ltEs18(xuu4911, xuu5111, ceb))) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, bhf), bhg), bhh), bhe) -> new_esEs7(xuu3110000, xuu6000, bhf, bhg, bhh) 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Char, bhe) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.71 35.39/13.71 The set Q consists of the following terms: 35.39/13.71 35.39/13.71 new_primCmpNat0(Succ(x0), Zero) 35.39/13.71 new_lt21(x0, x1, ty_Integer) 35.39/13.71 new_lt7(x0, x1, x2, x3, x4) 35.39/13.71 new_esEs8(EQ, EQ) 35.39/13.71 new_lt12(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_primCompAux00(x0, LT) 35.39/13.71 new_primCmpNat2(x0, Succ(x1)) 35.39/13.71 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 35.39/13.71 new_lt12(x0, x1, ty_Integer) 35.39/13.71 new_esEs4(Just(x0), Just(x1), ty_Ordering) 35.39/13.71 new_lt4(x0, x1, x2, x3) 35.39/13.71 new_esEs29(x0, x1, ty_Char) 35.39/13.71 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 35.39/13.71 new_esEs4(Just(x0), Just(x1), ty_Double) 35.39/13.71 new_ltEs19(x0, x1, ty_Int) 35.39/13.71 new_esEs11(x0, x1, ty_Bool) 35.39/13.71 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 35.39/13.71 new_lt20(x0, x1, ty_Int) 35.39/13.71 new_esEs13(x0, x1, ty_Ordering) 35.39/13.71 new_compare18(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_ltEs4(LT, LT) 35.39/13.71 new_lt6(x0, x1) 35.39/13.71 new_ltEs9(Just(x0), Just(x1), ty_Float) 35.39/13.71 new_esEs31(x0, x1, ty_Float) 35.39/13.71 new_esEs32(x0, x1, ty_Float) 35.39/13.71 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_esEs31(x0, x1, app(ty_[], x2)) 35.39/13.71 new_compare27(x0, x1, False, x2, x3) 35.39/13.71 new_ltEs18(x0, x1, ty_Double) 35.39/13.71 new_esEs12(x0, x1, ty_Char) 35.39/13.71 new_esEs13(x0, x1, ty_Int) 35.39/13.71 new_esEs4(Nothing, Nothing, x0) 35.39/13.71 new_lt20(x0, x1, ty_Char) 35.39/13.71 new_esEs4(Just(x0), Just(x1), ty_Int) 35.39/13.71 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_compare18(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_lt8(x0, x1) 35.39/13.71 new_compare26(x0, x1, False, x2, x3, x4) 35.39/13.71 new_primEqInt(Pos(Zero), Pos(Zero)) 35.39/13.71 new_ltEs20(x0, x1, ty_Float) 35.39/13.71 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 35.39/13.71 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 35.39/13.71 new_lt10(x0, x1) 35.39/13.71 new_ltEs18(x0, x1, ty_Int) 35.39/13.71 new_esEs11(x0, x1, ty_Integer) 35.39/13.71 new_asAs(False, x0) 35.39/13.71 new_esEs32(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_lt12(x0, x1, ty_@0) 35.39/13.71 new_esEs14(True, True) 35.39/13.71 new_ltEs18(x0, x1, ty_Ordering) 35.39/13.71 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 35.39/13.71 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 35.39/13.71 new_esEs28(x0, x1, ty_Integer) 35.39/13.71 new_primEqNat0(Zero, Succ(x0)) 35.39/13.71 new_ltEs19(x0, x1, ty_Ordering) 35.39/13.71 new_compare0([], :(x0, x1), x2) 35.39/13.71 new_esEs25(x0, x1, ty_Float) 35.39/13.71 new_primEqInt(Neg(Zero), Neg(Zero)) 35.39/13.71 new_compare18(x0, x1, ty_Float) 35.39/13.71 new_esEs29(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 35.39/13.71 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 35.39/13.71 new_esEs11(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_esEs12(x0, x1, ty_Bool) 35.39/13.71 new_ltEs9(Just(x0), Nothing, x1) 35.39/13.71 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 35.39/13.71 new_compare18(x0, x1, ty_Integer) 35.39/13.71 new_esEs11(x0, x1, ty_@0) 35.39/13.71 new_esEs26(x0, x1, ty_Float) 35.39/13.71 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_esEs28(x0, x1, ty_Float) 35.39/13.71 new_pePe(True, x0) 35.39/13.71 new_esEs12(x0, x1, ty_Ordering) 35.39/13.71 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 35.39/13.71 new_compare28(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 35.39/13.71 new_compare28(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 35.39/13.71 new_compare28(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 35.39/13.71 new_esEs25(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_esEs28(x0, x1, ty_Bool) 35.39/13.71 new_ltEs20(x0, x1, app(ty_[], x2)) 35.39/13.71 new_esEs14(False, True) 35.39/13.71 new_esEs14(True, False) 35.39/13.71 new_lt20(x0, x1, app(ty_[], x2)) 35.39/13.71 new_esEs26(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 35.39/13.71 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_lt12(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 35.39/13.71 new_esEs20([], :(x0, x1), x2) 35.39/13.71 new_ltEs17(True, True) 35.39/13.71 new_lt18(x0, x1, x2) 35.39/13.71 new_esEs11(x0, x1, ty_Char) 35.39/13.71 new_lt20(x0, x1, ty_Double) 35.39/13.71 new_esEs28(x0, x1, ty_@0) 35.39/13.71 new_esEs5(Left(x0), Right(x1), x2, x3) 35.39/13.71 new_esEs5(Right(x0), Left(x1), x2, x3) 35.39/13.71 new_esEs4(Just(x0), Nothing, x1) 35.39/13.71 new_ltEs19(x0, x1, ty_Double) 35.39/13.71 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_primCmpNat0(Succ(x0), Succ(x1)) 35.39/13.71 new_primEqInt(Pos(Zero), Neg(Zero)) 35.39/13.71 new_primEqInt(Neg(Zero), Pos(Zero)) 35.39/13.71 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 35.39/13.71 new_primPlusNat1(Zero, x0) 35.39/13.71 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 35.39/13.71 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 35.39/13.71 new_ltEs19(x0, x1, ty_Char) 35.39/13.71 new_esEs12(x0, x1, ty_Integer) 35.39/13.71 new_esEs27(x0, x1, ty_Integer) 35.39/13.71 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 35.39/13.71 new_compare18(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_esEs28(x0, x1, app(ty_[], x2)) 35.39/13.71 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 35.39/13.71 new_ltEs4(GT, EQ) 35.39/13.71 new_ltEs4(EQ, GT) 35.39/13.71 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 35.39/13.71 new_ltEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) 35.39/13.71 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 35.39/13.71 new_compare0(:(x0, x1), [], x2) 35.39/13.71 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_lt20(x0, x1, ty_@0) 35.39/13.71 new_esEs10(x0, x1) 35.39/13.71 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 35.39/13.71 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 35.39/13.71 new_esEs29(x0, x1, ty_Ordering) 35.39/13.71 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 35.39/13.71 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 35.39/13.71 new_ltEs19(x0, x1, ty_Bool) 35.39/13.71 new_primPlusNat0(Zero, Succ(x0)) 35.39/13.71 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_primEqNat0(Succ(x0), Succ(x1)) 35.39/13.71 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 35.39/13.71 new_primMulInt(Neg(x0), Neg(x1)) 35.39/13.71 new_ltEs18(x0, x1, ty_@0) 35.39/13.71 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 35.39/13.71 new_esEs11(x0, x1, ty_Float) 35.39/13.71 new_ltEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 35.39/13.71 new_compare15(x0, x1, x2, x3) 35.39/13.71 new_esEs9(@0, @0) 35.39/13.71 new_esEs4(Just(x0), Just(x1), ty_Bool) 35.39/13.71 new_esEs31(x0, x1, ty_@0) 35.39/13.71 new_esEs15(Double(x0, x1), Double(x2, x3)) 35.39/13.71 new_primPlusNat1(Succ(x0), x1) 35.39/13.71 new_compare0(:(x0, x1), :(x2, x3), x4) 35.39/13.71 new_esEs27(x0, x1, ty_Bool) 35.39/13.71 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 35.39/13.71 new_compare29(Char(x0), Char(x1)) 35.39/13.71 new_lt20(x0, x1, ty_Integer) 35.39/13.71 new_lt21(x0, x1, ty_Int) 35.39/13.71 new_esEs27(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_compare24(x0, x1, True) 35.39/13.71 new_ltEs9(Just(x0), Just(x1), ty_Bool) 35.39/13.71 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 35.39/13.71 new_esEs32(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_ltEs4(EQ, LT) 35.39/13.71 new_ltEs4(LT, EQ) 35.39/13.71 new_compare11(Integer(x0), Integer(x1)) 35.39/13.71 new_esEs20(:(x0, x1), [], x2) 35.39/13.71 new_compare18(x0, x1, ty_@0) 35.39/13.71 new_esEs32(x0, x1, ty_Bool) 35.39/13.71 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 35.39/13.71 new_ltEs4(GT, GT) 35.39/13.71 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 35.39/13.71 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_compare27(x0, x1, True, x2, x3) 35.39/13.71 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_esEs31(x0, x1, ty_Bool) 35.39/13.71 new_lt20(x0, x1, ty_Bool) 35.39/13.71 new_esEs21(x0, x1, ty_Double) 35.39/13.71 new_esEs25(x0, x1, ty_@0) 35.39/13.71 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 35.39/13.71 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 35.39/13.71 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_esEs26(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_esEs11(x0, x1, ty_Int) 35.39/13.71 new_ltEs19(x0, x1, ty_@0) 35.39/13.71 new_compare26(x0, x1, True, x2, x3, x4) 35.39/13.71 new_lt19(x0, x1, ty_Int) 35.39/13.71 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_primMulNat0(Zero, Succ(x0)) 35.39/13.71 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 35.39/13.71 new_compare18(x0, x1, app(ty_[], x2)) 35.39/13.71 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 35.39/13.71 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_ltEs6(x0, x1) 35.39/13.71 new_ltEs13(x0, x1) 35.39/13.71 new_primMulNat0(Succ(x0), Succ(x1)) 35.39/13.71 new_ltEs19(x0, x1, ty_Integer) 35.39/13.71 new_esEs26(x0, x1, app(ty_[], x2)) 35.39/13.71 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 35.39/13.71 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_compare25(x0, x1, True, x2) 35.39/13.71 new_esEs8(GT, GT) 35.39/13.71 new_lt19(x0, x1, ty_Float) 35.39/13.71 new_esEs8(LT, EQ) 35.39/13.71 new_esEs8(EQ, LT) 35.39/13.71 new_esEs26(x0, x1, ty_Integer) 35.39/13.71 new_esEs13(x0, x1, ty_Integer) 35.39/13.71 new_primCmpInt(Neg(Zero), Neg(Zero)) 35.39/13.71 new_esEs22(x0, x1, ty_Integer) 35.39/13.71 new_esEs29(x0, x1, ty_Double) 35.39/13.71 new_primCompAux0(x0, x1, x2, x3) 35.39/13.71 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_esEs29(x0, x1, ty_@0) 35.39/13.71 new_esEs8(LT, LT) 35.39/13.71 new_primCmpInt(Pos(Zero), Neg(Zero)) 35.39/13.71 new_primCmpInt(Neg(Zero), Pos(Zero)) 35.39/13.71 new_ltEs9(Just(x0), Just(x1), ty_Char) 35.39/13.71 new_esEs26(x0, x1, ty_Ordering) 35.39/13.71 new_primMulInt(Pos(x0), Neg(x1)) 35.39/13.71 new_primMulInt(Neg(x0), Pos(x1)) 35.39/13.71 new_esEs4(Just(x0), Just(x1), ty_Char) 35.39/13.71 new_lt20(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 35.39/13.71 new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 35.39/13.71 new_compare17(x0, x1, False, x2, x3) 35.39/13.71 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_ltEs17(True, False) 35.39/13.71 new_ltEs17(False, True) 35.39/13.71 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 35.39/13.71 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 35.39/13.71 new_esEs22(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_lt21(x0, x1, ty_Float) 35.39/13.71 new_compare9(x0, x1) 35.39/13.71 new_esEs11(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_esEs4(Nothing, Just(x0), x1) 35.39/13.71 new_esEs12(x0, x1, ty_Double) 35.39/13.71 new_esEs12(x0, x1, app(ty_[], x2)) 35.39/13.71 new_lt21(x0, x1, ty_Bool) 35.39/13.71 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_esEs31(x0, x1, ty_Integer) 35.39/13.71 new_lt12(x0, x1, ty_Double) 35.39/13.71 new_lt13(x0, x1) 35.39/13.71 new_ltEs9(Just(x0), Just(x1), ty_Integer) 35.39/13.71 new_primMulInt(Pos(x0), Pos(x1)) 35.39/13.71 new_esEs28(x0, x1, ty_Ordering) 35.39/13.71 new_lt21(x0, x1, app(ty_[], x2)) 35.39/13.71 new_esEs22(x0, x1, ty_Ordering) 35.39/13.71 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 35.39/13.71 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 35.39/13.71 new_compare10(x0, x1, True) 35.39/13.71 new_asAs(True, x0) 35.39/13.71 new_esEs32(x0, x1, ty_Integer) 35.39/13.71 new_compare14(x0, x1, x2, x3, x4) 35.39/13.71 new_esEs31(x0, x1, ty_Ordering) 35.39/13.71 new_primCompAux00(x0, GT) 35.39/13.71 new_esEs25(x0, x1, ty_Double) 35.39/13.71 new_compare18(x0, x1, ty_Double) 35.39/13.71 new_esEs13(x0, x1, ty_Char) 35.39/13.71 new_esEs23(x0, x1, ty_Int) 35.39/13.71 new_ltEs19(x0, x1, app(ty_[], x2)) 35.39/13.71 new_esEs27(x0, x1, ty_Float) 35.39/13.71 new_lt21(x0, x1, ty_Char) 35.39/13.71 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_lt11(x0, x1, x2) 35.39/13.71 new_lt14(x0, x1, x2) 35.39/13.71 new_compare112(x0, x1, False) 35.39/13.71 new_esEs12(x0, x1, ty_@0) 35.39/13.71 new_lt21(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 35.39/13.71 new_esEs12(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_esEs13(x0, x1, ty_Bool) 35.39/13.71 new_lt20(x0, x1, ty_Ordering) 35.39/13.71 new_compare110(x0, x1, x2, x3, True, x4, x5) 35.39/13.71 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 35.39/13.71 new_esEs22(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_esEs27(x0, x1, ty_Ordering) 35.39/13.71 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 35.39/13.71 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 35.39/13.71 new_esEs4(Just(x0), Just(x1), ty_Float) 35.39/13.71 new_ltEs20(x0, x1, ty_Int) 35.39/13.71 new_esEs11(x0, x1, app(ty_[], x2)) 35.39/13.71 new_compare110(x0, x1, x2, x3, False, x4, x5) 35.39/13.71 new_esEs31(x0, x1, ty_Double) 35.39/13.71 new_ltEs9(Just(x0), Just(x1), ty_Double) 35.39/13.71 new_esEs28(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 35.39/13.71 new_lt19(x0, x1, ty_@0) 35.39/13.71 new_esEs26(x0, x1, ty_Char) 35.39/13.71 new_ltEs18(x0, x1, ty_Float) 35.39/13.71 new_esEs27(x0, x1, app(ty_[], x2)) 35.39/13.71 new_esEs17(Char(x0), Char(x1)) 35.39/13.71 new_esEs13(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_primMulNat0(Zero, Zero) 35.39/13.71 new_esEs22(x0, x1, ty_@0) 35.39/13.71 new_ltEs9(Just(x0), Just(x1), app(ty_[], x2)) 35.39/13.71 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 35.39/13.71 new_lt21(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_esEs32(x0, x1, ty_Ordering) 35.39/13.71 new_esEs25(x0, x1, ty_Int) 35.39/13.71 new_esEs27(x0, x1, ty_Int) 35.39/13.71 new_esEs26(x0, x1, ty_Int) 35.39/13.71 new_compare211(@2(x0, x1), @2(x2, x3), False, x4, x5) 35.39/13.71 new_primCmpNat1(Succ(x0), x1) 35.39/13.71 new_compare16(@0, @0) 35.39/13.71 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 35.39/13.71 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 35.39/13.71 new_ltEs20(x0, x1, ty_Ordering) 35.39/13.71 new_ltEs9(Nothing, Just(x0), x1) 35.39/13.71 new_compare18(x0, x1, ty_Ordering) 35.39/13.71 new_esEs23(x0, x1, ty_Integer) 35.39/13.71 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 35.39/13.71 new_ltEs19(x0, x1, ty_Float) 35.39/13.71 new_primCmpNat0(Zero, Succ(x0)) 35.39/13.71 new_esEs30(x0, x1, x2, x3, False, x4, x5) 35.39/13.71 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_lt20(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 35.39/13.71 new_esEs20(:(x0, x1), :(x2, x3), x4) 35.39/13.71 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 35.39/13.71 new_esEs21(x0, x1, ty_Bool) 35.39/13.71 new_lt19(x0, x1, ty_Integer) 35.39/13.71 new_compare24(x0, x1, False) 35.39/13.71 new_esEs27(x0, x1, ty_Double) 35.39/13.71 new_esEs32(x0, x1, ty_Int) 35.39/13.71 new_ltEs9(Just(x0), Just(x1), ty_Int) 35.39/13.71 new_esEs25(x0, x1, ty_Ordering) 35.39/13.71 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 35.39/13.71 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_esEs27(x0, x1, ty_Char) 35.39/13.71 new_primPlusNat0(Succ(x0), Succ(x1)) 35.39/13.71 new_compare210(x0, x1, False) 35.39/13.71 new_ltEs9(Just(x0), Just(x1), ty_Ordering) 35.39/13.71 new_sr0(Integer(x0), Integer(x1)) 35.39/13.71 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_esEs32(x0, x1, ty_Double) 35.39/13.71 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_esEs32(x0, x1, ty_Char) 35.39/13.71 new_esEs31(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_lt5(x0, x1) 35.39/13.71 new_compare13(x0, x1, True, x2) 35.39/13.71 new_lt19(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_esEs24(x0, x1, ty_Int) 35.39/13.71 new_primPlusNat0(Zero, Zero) 35.39/13.71 new_ltEs4(LT, GT) 35.39/13.71 new_ltEs4(GT, LT) 35.39/13.71 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_lt17(x0, x1) 35.39/13.71 new_esEs13(x0, x1, ty_Float) 35.39/13.71 new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 35.39/13.71 new_not(True) 35.39/13.71 new_esEs28(x0, x1, ty_Double) 35.39/13.71 new_esEs26(x0, x1, ty_Bool) 35.39/13.71 new_lt19(x0, x1, ty_Char) 35.39/13.71 new_esEs31(x0, x1, ty_Char) 35.39/13.71 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 35.39/13.71 new_esEs26(x0, x1, ty_@0) 35.39/13.71 new_esEs8(EQ, GT) 35.39/13.71 new_esEs8(GT, EQ) 35.39/13.71 new_pePe(False, x0) 35.39/13.71 new_esEs22(x0, x1, ty_Int) 35.39/13.71 new_lt15(x0, x1) 35.39/13.71 new_primCmpNat1(Zero, x0) 35.39/13.71 new_esEs26(x0, x1, ty_Double) 35.39/13.71 new_esEs22(x0, x1, app(ty_[], x2)) 35.39/13.71 new_ltEs12(x0, x1) 35.39/13.71 new_esEs29(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_esEs21(x0, x1, ty_@0) 35.39/13.71 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 35.39/13.71 new_ltEs20(x0, x1, ty_@0) 35.39/13.71 new_compare111(x0, x1, x2, x3, False, x4, x5, x6) 35.39/13.71 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_lt20(x0, x1, ty_Float) 35.39/13.71 new_compare10(x0, x1, False) 35.39/13.71 new_ltEs20(x0, x1, ty_Bool) 35.39/13.71 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 35.39/13.71 new_esEs22(x0, x1, ty_Bool) 35.39/13.71 new_esEs21(x0, x1, ty_Float) 35.39/13.71 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_lt21(x0, x1, ty_Ordering) 35.39/13.71 new_esEs28(x0, x1, ty_Int) 35.39/13.71 new_compare12(x0, x1) 35.39/13.71 new_primEqNat0(Succ(x0), Zero) 35.39/13.71 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_ltEs4(EQ, EQ) 35.39/13.71 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_lt9(x0, x1, x2, x3) 35.39/13.71 new_compare18(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_esEs22(x0, x1, ty_Char) 35.39/13.71 new_esEs31(x0, x1, ty_Int) 35.39/13.71 new_compare13(x0, x1, False, x2) 35.39/13.71 new_compare210(x0, x1, True) 35.39/13.71 new_ltEs20(x0, x1, ty_Char) 35.39/13.71 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 35.39/13.71 new_compare211(x0, x1, True, x2, x3) 35.39/13.71 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 35.39/13.71 new_esEs28(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 35.39/13.71 new_esEs28(x0, x1, ty_Char) 35.39/13.71 new_compare113(x0, x1, True, x2, x3, x4) 35.39/13.71 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 35.39/13.71 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_esEs4(Just(x0), Just(x1), ty_Integer) 35.39/13.71 new_esEs22(x0, x1, ty_Double) 35.39/13.71 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_ltEs20(x0, x1, ty_Double) 35.39/13.71 new_primCmpInt(Pos(Zero), Pos(Zero)) 35.39/13.71 new_lt19(x0, x1, ty_Bool) 35.39/13.71 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_esEs13(x0, x1, app(ty_[], x2)) 35.39/13.71 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 35.39/13.71 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 35.39/13.71 new_lt19(x0, x1, ty_Double) 35.39/13.71 new_esEs25(x0, x1, app(ty_[], x2)) 35.39/13.71 new_ltEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_esEs31(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_lt12(x0, x1, ty_Int) 35.39/13.71 new_ltEs9(Just(x0), Just(x1), ty_@0) 35.39/13.71 new_compare6(x0, x1, x2, x3) 35.39/13.71 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_esEs20([], [], x0) 35.39/13.71 new_sr(x0, x1) 35.39/13.71 new_esEs32(x0, x1, app(ty_[], x2)) 35.39/13.71 new_compare7(x0, x1) 35.39/13.71 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 35.39/13.71 new_esEs25(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_ltEs20(x0, x1, ty_Integer) 35.39/13.71 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_esEs12(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_esEs21(x0, x1, ty_Ordering) 35.39/13.71 new_lt12(x0, x1, ty_Char) 35.39/13.71 new_esEs4(Just(x0), Just(x1), ty_@0) 35.39/13.71 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 35.39/13.71 new_esEs21(x0, x1, ty_Int) 35.39/13.71 new_esEs27(x0, x1, ty_@0) 35.39/13.71 new_ltEs7(x0, x1, x2) 35.39/13.71 new_esEs8(LT, GT) 35.39/13.71 new_esEs8(GT, LT) 35.39/13.71 new_esEs21(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_esEs29(x0, x1, ty_Integer) 35.39/13.71 new_esEs11(x0, x1, ty_Double) 35.39/13.71 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 35.39/13.71 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 35.39/13.71 new_lt19(x0, x1, app(ty_[], x2)) 35.39/13.71 new_ltEs10(x0, x1) 35.39/13.71 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 35.39/13.71 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 35.39/13.71 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_fsEs(x0) 35.39/13.71 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 35.39/13.71 new_lt12(x0, x1, ty_Float) 35.39/13.71 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 35.39/13.71 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_esEs32(x0, x1, ty_@0) 35.39/13.71 new_esEs21(x0, x1, ty_Char) 35.39/13.71 new_esEs22(x0, x1, ty_Float) 35.39/13.71 new_esEs19(Float(x0, x1), Float(x2, x3)) 35.39/13.71 new_esEs13(x0, x1, ty_@0) 35.39/13.71 new_compare0([], [], x0) 35.39/13.71 new_compare19(x0, x1, x2) 35.39/13.71 new_lt19(x0, x1, ty_Ordering) 35.39/13.71 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_esEs25(x0, x1, ty_Integer) 35.39/13.71 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 35.39/13.71 new_esEs21(x0, x1, app(ty_[], x2)) 35.39/13.71 new_esEs29(x0, x1, app(ty_[], x2)) 35.39/13.71 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.71 new_compare112(x0, x1, True) 35.39/13.71 new_lt12(x0, x1, ty_Ordering) 35.39/13.71 new_esEs21(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_ltEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) 35.39/13.71 new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 35.39/13.71 new_esEs11(x0, x1, ty_Ordering) 35.39/13.71 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 35.39/13.71 new_primEqNat0(Zero, Zero) 35.39/13.71 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_esEs29(x0, x1, ty_Float) 35.39/13.71 new_esEs29(x0, x1, ty_Bool) 35.39/13.71 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 35.39/13.71 new_compare113(x0, x1, False, x2, x3, x4) 35.39/13.71 new_compare28(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 35.39/13.71 new_not(False) 35.39/13.71 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 35.39/13.71 new_esEs27(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_compare111(x0, x1, x2, x3, True, x4, x5, x6) 35.39/13.71 new_ltEs18(x0, x1, ty_Integer) 35.39/13.71 new_ltEs17(False, False) 35.39/13.71 new_compare18(x0, x1, ty_Char) 35.39/13.71 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 35.39/13.71 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 35.39/13.71 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 35.39/13.71 new_lt21(x0, x1, ty_@0) 35.39/13.71 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 35.39/13.71 new_lt16(x0, x1) 35.39/13.71 new_esEs14(False, False) 35.39/13.71 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 35.39/13.71 new_compare18(x0, x1, ty_Int) 35.39/13.71 new_ltEs18(x0, x1, app(ty_[], x2)) 35.39/13.71 new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 35.39/13.71 new_compare17(x0, x1, True, x2, x3) 35.39/13.71 new_ltEs8(x0, x1) 35.39/13.71 new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 35.39/13.71 new_esEs24(x0, x1, ty_Integer) 35.39/13.71 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 35.39/13.71 new_ltEs18(x0, x1, ty_Char) 35.39/13.71 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 35.39/13.71 new_ltEs15(x0, x1, x2) 35.39/13.71 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 35.39/13.71 new_esEs25(x0, x1, ty_Char) 35.39/13.71 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.71 new_esEs13(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_primCompAux00(x0, EQ) 35.39/13.71 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 35.39/13.71 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 35.39/13.71 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 35.39/13.71 new_compare18(x0, x1, ty_Bool) 35.39/13.71 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 35.39/13.71 new_esEs12(x0, x1, ty_Int) 35.39/13.71 new_ltEs11(x0, x1) 35.39/13.71 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 35.39/13.71 new_compare25(x0, x1, False, x2) 35.39/13.71 new_ltEs5(Left(x0), Right(x1), x2, x3) 35.39/13.71 new_ltEs5(Right(x0), Left(x1), x2, x3) 35.39/13.71 new_esEs13(x0, x1, ty_Double) 35.39/13.71 new_lt12(x0, x1, ty_Bool) 35.39/13.71 new_esEs21(x0, x1, ty_Integer) 35.39/13.71 new_primCmpNat2(x0, Zero) 35.39/13.71 new_lt12(x0, x1, app(ty_[], x2)) 35.39/13.71 new_esEs16(Integer(x0), Integer(x1)) 35.39/13.71 new_esEs12(x0, x1, ty_Float) 35.39/13.71 new_esEs30(x0, x1, x2, x3, True, x4, x5) 35.39/13.71 new_lt21(x0, x1, ty_Double) 35.39/13.71 new_ltEs18(x0, x1, ty_Bool) 35.39/13.71 new_primMulNat0(Succ(x0), Zero) 35.39/13.71 new_ltEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 35.39/13.71 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.71 new_lt19(x0, x1, app(ty_Maybe, x2)) 35.39/13.71 new_primPlusNat0(Succ(x0), Zero) 35.39/13.71 new_primCmpNat0(Zero, Zero) 35.39/13.71 new_ltEs9(Nothing, Nothing, x0) 35.39/13.71 new_esEs25(x0, x1, ty_Bool) 35.39/13.71 new_esEs29(x0, x1, ty_Int) 35.39/13.71 35.39/13.71 We have to consider all minimal (P,Q,R)-chains. 35.39/13.71 ---------------------------------------- 35.39/13.71 35.39/13.71 (23) QDPSizeChangeProof (EQUIVALENT) 35.39/13.71 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 35.39/13.71 35.39/13.71 From the DPs we obtained the following set of size-change graphs: 35.39/13.71 *new_addToFM_C(Branch(@2(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), @2(xuu311000, xuu311001), xuu31101, bc, bd, be) -> new_addToFM_C2(xuu600, xuu601, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, new_esEs30(xuu311000, xuu311001, xuu600, xuu601, new_esEs31(xuu311000, xuu600, bc), bc, bd), bc, bd, be) 35.39/13.71 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 1 > 6, 2 > 7, 2 > 8, 3 >= 9, 4 >= 11, 5 >= 12, 6 >= 13 35.39/13.71 35.39/13.71 35.39/13.71 *new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, False, h, ba, bb) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_esEs8(new_compare211(@2(xuu25, xuu26), @2(xuu19, xuu20), new_asAs(new_esEs22(xuu25, xuu19, h), new_esEs21(xuu26, xuu20, ba)), h, ba), GT), h, ba, bb) 35.39/13.71 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 11 >= 11, 12 >= 12, 13 >= 13 35.39/13.71 35.39/13.71 35.39/13.71 *new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, True, h, ba, bb) -> new_addToFM_C(xuu23, @2(xuu25, xuu26), xuu27, h, ba, bb) 35.39/13.71 The graph contains the following edges 5 >= 1, 9 >= 3, 11 >= 4, 12 >= 5, 13 >= 6 35.39/13.71 35.39/13.71 35.39/13.71 *new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, True, h, ba, bb) -> new_addToFM_C(xuu24, @2(xuu25, xuu26), xuu27, h, ba, bb) 35.39/13.71 The graph contains the following edges 6 >= 1, 9 >= 3, 11 >= 4, 12 >= 5, 13 >= 6 35.39/13.71 35.39/13.71 35.39/13.71 ---------------------------------------- 35.39/13.71 35.39/13.71 (24) 35.39/13.71 YES 35.39/13.71 35.39/13.71 ---------------------------------------- 35.39/13.71 35.39/13.71 (25) 35.39/13.71 Obligation: 35.39/13.71 Q DP problem: 35.39/13.71 The TRS P consists of the following rules: 35.39/13.71 35.39/13.71 new_esEs(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bf), bg)) -> new_esEs2(xuu3110000, xuu6000, bf, bg) 35.39/13.71 new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, gf), gg), gb) -> new_esEs1(xuu3110000, xuu6000, gf, gg) 35.39/13.71 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(ty_Maybe, cc)) -> new_esEs(xuu3110002, xuu6002, cc) 35.39/13.71 new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, bdf), bdg)) -> new_esEs1(xuu3110000, xuu6000, bdf, bdg) 35.39/13.71 new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_[], hb), gb) -> new_esEs3(xuu3110000, xuu6000, hb) 35.39/13.71 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) 35.39/13.71 new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, bdb)) -> new_esEs(xuu3110000, xuu6000, bdb) 35.39/13.71 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(ty_@2, bbd), bbe)) -> new_esEs2(xuu3110001, xuu6001, bbd, bbe) 35.39/13.71 new_esEs(Just(xuu3110000), Just(xuu6000), app(ty_[], bh)) -> new_esEs3(xuu3110000, xuu6000, bh) 35.39/13.71 new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_[], beb)) -> new_esEs3(xuu3110000, xuu6000, beb) 35.39/13.71 new_esEs(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, h)) -> new_esEs(xuu3110000, xuu6000, h) 35.39/13.71 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_Either, fc), fd), cb, df) -> new_esEs1(xuu3110000, xuu6000, fc, fd) 35.39/13.71 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(app(ty_@2, db), dc)) -> new_esEs2(xuu3110002, xuu6002, db, dc) 35.39/13.71 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(app(ty_@2, ed), ee), df) -> new_esEs2(xuu3110001, xuu6001, ed, ee) 35.39/13.71 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(ty_Maybe, baf)) -> new_esEs(xuu3110001, xuu6001, baf) 35.39/13.71 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(ty_[], dd)) -> new_esEs3(xuu3110002, xuu6002, dd) 35.39/13.71 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_@2, bcf), bcg), bbh) -> new_esEs2(xuu3110000, xuu6000, bcf, bcg) 35.39/13.71 new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(app(ty_@2, bab), bac)) -> new_esEs2(xuu3110000, xuu6000, bab, bac) 35.39/13.71 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, bbg), bbh) -> new_esEs(xuu3110000, xuu6000, bbg) 35.39/13.71 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) 35.39/13.71 new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, gc), gd), ge), gb) -> new_esEs0(xuu3110000, xuu6000, gc, gd, ge) 35.39/13.71 new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(ty_Maybe, hd)) -> new_esEs(xuu3110000, xuu6000, hd) 35.39/13.71 new_esEs(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, bd), be)) -> new_esEs1(xuu3110000, xuu6000, bd, be) 35.39/13.71 new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, ga), gb) -> new_esEs(xuu3110000, xuu6000, ga) 35.39/13.71 new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bda) -> new_esEs3(xuu3110001, xuu6001, bda) 35.39/13.71 new_esEs(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, ba), bb), bc)) -> new_esEs0(xuu3110000, xuu6000, ba, bb, bc) 35.39/13.71 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(ty_[], ef), df) -> new_esEs3(xuu3110001, xuu6001, ef) 35.39/13.71 new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(xuu3110000, xuu6000, bdc, bdd, bde) 35.39/13.71 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(app(ty_Either, eb), ec), df) -> new_esEs1(xuu3110001, xuu6001, eb, ec) 35.39/13.71 new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, bdh), bea)) -> new_esEs2(xuu3110000, xuu6000, bdh, bea) 35.39/13.71 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], fh), cb, df) -> new_esEs3(xuu3110000, xuu6000, fh) 35.39/13.71 new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, gh), ha), gb) -> new_esEs2(xuu3110000, xuu6000, gh, ha) 35.39/13.71 new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(app(app(ty_@3, he), hf), hg)) -> new_esEs0(xuu3110000, xuu6000, he, hf, hg) 35.39/13.71 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_@2, ff), fg), cb, df) -> new_esEs2(xuu3110000, xuu6000, ff, fg) 35.39/13.71 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(ty_[], bbf)) -> new_esEs3(xuu3110001, xuu6001, bbf) 35.39/13.71 new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(ty_[], bad)) -> new_esEs3(xuu3110000, xuu6000, bad) 35.39/13.71 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(app(ty_@3, bca), bcb), bcc), bbh) -> new_esEs0(xuu3110000, xuu6000, bca, bcb, bcc) 35.39/13.71 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], bch), bbh) -> new_esEs3(xuu3110000, xuu6000, bch) 35.39/13.71 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, bcd), bce), bbh) -> new_esEs1(xuu3110000, xuu6000, bcd, bce) 35.39/13.71 new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(app(ty_Either, hh), baa)) -> new_esEs1(xuu3110000, xuu6000, hh, baa) 35.39/13.71 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(ty_Either, bbb), bbc)) -> new_esEs1(xuu3110001, xuu6001, bbb, bbc) 35.39/13.71 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_Maybe, eg), cb, df) -> new_esEs(xuu3110000, xuu6000, eg) 35.39/13.71 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) 35.39/13.71 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(app(ty_Either, cg), da)) -> new_esEs1(xuu3110002, xuu6002, cg, da) 35.39/13.71 new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(ty_Maybe, de), df) -> new_esEs(xuu3110001, xuu6001, de) 35.39/13.71 new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs0(xuu3110001, xuu6001, bag, bah, bba) 35.39/13.71 35.39/13.71 R is empty. 35.39/13.71 Q is empty. 35.39/13.71 We have to consider all minimal (P,Q,R)-chains. 35.39/13.71 ---------------------------------------- 35.39/13.71 35.39/13.71 (26) QDPSizeChangeProof (EQUIVALENT) 35.39/13.71 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 35.39/13.71 35.39/13.71 From the DPs we obtained the following set of size-change graphs: 35.39/13.71 *new_esEs(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, h)) -> new_esEs(xuu3110000, xuu6000, h) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, bd), be)) -> new_esEs1(xuu3110000, xuu6000, bd, be) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, ba), bb), bc)) -> new_esEs0(xuu3110000, xuu6000, ba, bb, bc) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs(Just(xuu3110000), Just(xuu6000), app(ty_[], bh)) -> new_esEs3(xuu3110000, xuu6000, bh) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bf), bg)) -> new_esEs2(xuu3110000, xuu6000, bf, bg) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, bdb)) -> new_esEs(xuu3110000, xuu6000, bdb) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, bdf), bdg)) -> new_esEs1(xuu3110000, xuu6000, bdf, bdg) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(xuu3110000, xuu6000, bdc, bdd, bde) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, bdh), bea)) -> new_esEs2(xuu3110000, xuu6000, bdh, bea) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(ty_Maybe, baf)) -> new_esEs(xuu3110001, xuu6001, baf) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, bbg), bbh) -> new_esEs(xuu3110000, xuu6000, bbg) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, bcd), bce), bbh) -> new_esEs1(xuu3110000, xuu6000, bcd, bce) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(ty_Either, bbb), bbc)) -> new_esEs1(xuu3110001, xuu6001, bbb, bbc) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(app(ty_@3, bca), bcb), bcc), bbh) -> new_esEs0(xuu3110000, xuu6000, bca, bcb, bcc) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs0(xuu3110001, xuu6001, bag, bah, bba) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(ty_[], bbf)) -> new_esEs3(xuu3110001, xuu6001, bbf) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], bch), bbh) -> new_esEs3(xuu3110000, xuu6000, bch) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bae, app(app(ty_@2, bbd), bbe)) -> new_esEs2(xuu3110001, xuu6001, bbd, bbe) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs2(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_@2, bcf), bcg), bbh) -> new_esEs2(xuu3110000, xuu6000, bcf, bcg) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(ty_Maybe, hd)) -> new_esEs(xuu3110000, xuu6000, hd) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, ga), gb) -> new_esEs(xuu3110000, xuu6000, ga) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(ty_Maybe, cc)) -> new_esEs(xuu3110002, xuu6002, cc) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_Maybe, eg), cb, df) -> new_esEs(xuu3110000, xuu6000, eg) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(ty_Maybe, de), df) -> new_esEs(xuu3110001, xuu6001, de) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, gf), gg), gb) -> new_esEs1(xuu3110000, xuu6000, gf, gg) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(app(ty_Either, hh), baa)) -> new_esEs1(xuu3110000, xuu6000, hh, baa) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, gc), gd), ge), gb) -> new_esEs0(xuu3110000, xuu6000, gc, gd, ge) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(app(app(ty_@3, he), hf), hg)) -> new_esEs0(xuu3110000, xuu6000, he, hf, hg) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_[], hb), gb) -> new_esEs3(xuu3110000, xuu6000, hb) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(ty_[], bad)) -> new_esEs3(xuu3110000, xuu6000, bad) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs1(Right(xuu3110000), Right(xuu6000), hc, app(app(ty_@2, bab), bac)) -> new_esEs2(xuu3110000, xuu6000, bab, bac) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, gh), ha), gb) -> new_esEs2(xuu3110000, xuu6000, gh, ha) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_Either, fc), fd), cb, df) -> new_esEs1(xuu3110000, xuu6000, fc, fd) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(app(ty_Either, eb), ec), df) -> new_esEs1(xuu3110001, xuu6001, eb, ec) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(app(ty_Either, cg), da)) -> new_esEs1(xuu3110002, xuu6002, cg, da) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.39/13.71 35.39/13.71 35.39/13.71 *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) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.39/13.71 35.39/13.71 35.39/13.71 *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) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 35.39/13.71 35.39/13.71 35.39/13.71 *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) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_[], beb)) -> new_esEs3(xuu3110000, xuu6000, beb) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs3(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bda) -> new_esEs3(xuu3110001, xuu6001, bda) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(ty_[], dd)) -> new_esEs3(xuu3110002, xuu6002, dd) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(ty_[], ef), df) -> new_esEs3(xuu3110001, xuu6001, ef) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], fh), cb, df) -> new_esEs3(xuu3110000, xuu6000, fh) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, cb, app(app(ty_@2, db), dc)) -> new_esEs2(xuu3110002, xuu6002, db, dc) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ca, app(app(ty_@2, ed), ee), df) -> new_esEs2(xuu3110001, xuu6001, ed, ee) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.39/13.71 35.39/13.71 35.39/13.71 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_@2, ff), fg), cb, df) -> new_esEs2(xuu3110000, xuu6000, ff, fg) 35.39/13.71 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.39/13.71 35.39/13.71 35.39/13.71 ---------------------------------------- 35.39/13.71 35.39/13.71 (27) 35.39/13.71 YES 35.39/13.71 35.39/13.71 ---------------------------------------- 35.39/13.71 35.39/13.71 (28) 35.39/13.71 Obligation: 35.39/13.71 Q DP problem: 35.39/13.71 The TRS P consists of the following rules: 35.39/13.71 35.39/13.71 new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, bbe, app(ty_Maybe, beb)) -> new_ltEs0(xuu4912, xuu5112, beb) 35.39/13.71 new_ltEs0(Just(xuu4910), Just(xuu5110), app(app(app(ty_@3, dc), dd), de)) -> new_ltEs3(xuu4910, xuu5110, dc, dd, de) 35.39/13.71 new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, he), app(ty_Maybe, hg))) -> new_ltEs0(xuu4911, xuu5111, hg) 35.39/13.71 new_ltEs(xuu491, xuu511, h) -> new_compare(xuu491, xuu511, h) 35.39/13.71 new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), bbe), app(ty_[], bea))) -> new_ltEs(xuu4912, xuu5112, bea) 35.39/13.71 new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(app(ty_@2, bcb), bcc), bbe, bbf) -> new_lt2(xuu4910, xuu5110, bcb, bcc) 35.39/13.71 new_compare22(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, bbc, app(app(ty_Either, eh), app(app(app(ty_@3, fh), ga), gb))) -> new_ltEs3(xuu4910, xuu5110, fh, ga, gb) 35.39/13.71 new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, app(ty_[], bch), bbf) -> new_lt(xuu4911, xuu5111, bch) 35.39/13.71 new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, he), app(ty_[], hf))) -> new_ltEs(xuu4911, xuu5111, hf) 35.39/13.71 new_ltEs1(Right(xuu4910), Right(xuu5110), eh, app(ty_[], fa)) -> new_ltEs(xuu4910, xuu5110, fa) 35.39/13.71 new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(app(ty_Either, gf), gg), gd) -> new_lt1(xuu4910, xuu5110, gf, gg) 35.39/13.71 new_ltEs1(Left(xuu4910), Left(xuu5110), app(ty_[], df), dg) -> new_ltEs(xuu4910, xuu5110, df) 35.39/13.71 new_compare22(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, bbc, app(ty_Maybe, app(app(app(ty_@3, dc), dd), de))) -> new_ltEs3(xuu4910, xuu5110, dc, dd, de) 35.39/13.71 new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), he, app(app(ty_Either, hh), baa)) -> new_ltEs1(xuu4911, xuu5111, hh, baa) 35.39/13.71 new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, bbe, app(app(ty_@2, bee), bef)) -> new_ltEs2(xuu4912, xuu5112, bee, bef) 35.39/13.71 new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), he, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs3(xuu4911, xuu5111, bad, bae, baf) 35.39/13.71 new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), bbe), app(ty_Maybe, beb))) -> new_ltEs0(xuu4912, xuu5112, beb) 35.39/13.71 new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), bbe), app(app(ty_@2, bee), bef))) -> new_ltEs2(xuu4912, xuu5112, bee, bef) 35.39/13.71 new_ltEs1(Right(xuu4910), Right(xuu5110), eh, app(ty_Maybe, fb)) -> new_ltEs0(xuu4910, xuu5110, fb) 35.39/13.71 new_ltEs1(Right(xuu4910), Right(xuu5110), eh, app(app(ty_Either, fc), fd)) -> new_ltEs1(xuu4910, xuu5110, fc, fd) 35.39/13.71 new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, app(ty_Maybe, bda), bbf) -> new_lt0(xuu4911, xuu5111, bda) 35.39/13.71 new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), app(ty_[], bch)), bbf)) -> new_lt(xuu4911, xuu5111, bch) 35.39/13.71 new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), app(app(app(ty_@3, bdf), bdg), bdh)), bbf)) -> new_lt3(xuu4911, xuu5111, bdf, bdg, bdh) 35.39/13.71 new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, bbe, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs3(xuu4912, xuu5112, beg, beh, bfa) 35.39/13.71 new_primCompAux(xuu4900, xuu5100, xuu146, app(app(ty_@2, bf), bg)) -> new_compare3(xuu4900, xuu5100, bf, bg) 35.39/13.71 new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, bbe, app(app(ty_Either, bec), bed)) -> new_ltEs1(xuu4912, xuu5112, bec, bed) 35.39/13.71 new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), bbe), app(app(app(ty_@3, beg), beh), bfa))) -> new_ltEs3(xuu4912, xuu5112, beg, beh, bfa) 35.39/13.71 new_lt2(xuu490, xuu510, bba, bbb) -> new_compare22(xuu490, xuu510, new_esEs6(xuu490, xuu510, bba, bbb), bba, bbb) 35.39/13.71 new_compare2(xuu490, xuu510, bag, bah) -> new_compare21(xuu490, xuu510, new_esEs5(xuu490, xuu510, bag, bah), bag, bah) 35.39/13.71 new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, app(app(app(ty_@3, bcd), bce), bcf)), bbe), bbf)) -> new_lt3(xuu4910, xuu5110, bcd, bce, bcf) 35.39/13.71 new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, he), app(app(ty_Either, hh), baa))) -> new_ltEs1(xuu4911, xuu5111, hh, baa) 35.39/13.71 new_ltEs0(Just(xuu4910), Just(xuu5110), app(ty_Maybe, ce)) -> new_ltEs0(xuu4910, xuu5110, ce) 35.39/13.71 new_compare22(@2(xuu490, xuu491), @2(xuu510, xuu511), False, app(app(app(ty_@3, bfc), bfd), bfe), bfb) -> new_compare23(xuu490, xuu510, new_esEs7(xuu490, xuu510, bfc, bfd, bfe), bfc, bfd, bfe) 35.39/13.71 new_ltEs1(Left(xuu4910), Left(xuu5110), app(app(app(ty_@3, ee), ef), eg), dg) -> new_ltEs3(xuu4910, xuu5110, ee, ef, eg) 35.39/13.71 new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(app(app(ty_@3, hb), hc), hd), gd) -> new_lt3(xuu4910, xuu5110, hb, hc, hd) 35.39/13.71 new_compare22(@2(xuu490, xuu491), @2(xuu510, xuu511), False, app(app(ty_@2, bba), bbb), bfb) -> new_compare22(xuu490, xuu510, new_esEs6(xuu490, xuu510, bba, bbb), bba, bbb) 35.39/13.71 new_compare22(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, bbc, app(ty_Maybe, app(app(ty_@2, da), db))) -> new_ltEs2(xuu4910, xuu5110, da, db) 35.39/13.71 new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(app(app(ty_@3, bcd), bce), bcf), bbe, bbf) -> new_lt3(xuu4910, xuu5110, bcd, bce, bcf) 35.39/13.71 new_ltEs1(Left(xuu4910), Left(xuu5110), app(ty_Maybe, dh), dg) -> new_ltEs0(xuu4910, xuu5110, dh) 35.39/13.71 new_lt(:(xuu4900, xuu4901), :(xuu5100, xuu5101), ba) -> new_compare(xuu4901, xuu5101, ba) 35.39/13.71 new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(ty_Maybe, ge), gd) -> new_lt0(xuu4910, xuu5110, ge) 35.39/13.71 new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, app(app(ty_Either, gf), gg)), gd)) -> new_lt1(xuu4910, xuu5110, gf, gg) 35.39/13.71 new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), app(app(ty_Either, bdb), bdc)), bbf)) -> new_lt1(xuu4911, xuu5111, bdb, bdc) 35.39/13.71 new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), he, app(ty_Maybe, hg)) -> new_ltEs0(xuu4911, xuu5111, hg) 35.39/13.71 new_compare22(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, bbc, app(app(ty_Either, app(app(app(ty_@3, ee), ef), eg)), dg)) -> new_ltEs3(xuu4910, xuu5110, ee, ef, eg) 35.39/13.71 new_compare22(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, bbc, app(app(ty_Either, eh), app(ty_Maybe, fb))) -> new_ltEs0(xuu4910, xuu5110, fb) 35.39/13.71 new_compare22(@2(xuu490, xuu491), @2(xuu510, xuu511), False, app(ty_Maybe, cc), bfb) -> new_compare20(xuu490, xuu510, new_esEs4(xuu490, xuu510, cc), cc) 35.39/13.71 new_compare21(xuu490, xuu510, False, bag, bah) -> new_ltEs1(xuu490, xuu510, bag, bah) 35.39/13.71 new_ltEs0(Just(xuu4910), Just(xuu5110), app(ty_[], cd)) -> new_ltEs(xuu4910, xuu5110, cd) 35.39/13.71 new_compare22(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, bbc, app(app(ty_Either, app(app(ty_Either, ea), eb)), dg)) -> new_ltEs1(xuu4910, xuu5110, ea, eb) 35.39/13.71 new_compare3(xuu490, xuu510, bba, bbb) -> new_compare22(xuu490, xuu510, new_esEs6(xuu490, xuu510, bba, bbb), bba, bbb) 35.39/13.71 new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), he, app(ty_[], hf)) -> new_ltEs(xuu4911, xuu5111, hf) 35.39/13.71 new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(ty_[], bbd), bbe, bbf) -> new_lt(xuu4910, xuu5110, bbd) 35.39/13.71 new_primCompAux(xuu4900, xuu5100, xuu146, app(ty_Maybe, bc)) -> new_compare1(xuu4900, xuu5100, bc) 35.39/13.71 new_ltEs0(Just(xuu4910), Just(xuu5110), app(app(ty_Either, cf), cg)) -> new_ltEs1(xuu4910, xuu5110, cf, cg) 35.39/13.71 new_compare22(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, bbc, app(app(ty_Either, app(ty_Maybe, dh)), dg)) -> new_ltEs0(xuu4910, xuu5110, dh) 35.39/13.71 new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, app(app(ty_Either, bbh), bca)), bbe), bbf)) -> new_lt1(xuu4910, xuu5110, bbh, bca) 35.39/13.71 new_compare22(@2(:(xuu4900, xuu4901), xuu491), @2(:(xuu5100, xuu5101), xuu511), False, app(ty_[], ba), bfb) -> new_compare(xuu4901, xuu5101, ba) 35.39/13.71 new_primCompAux(xuu4900, xuu5100, xuu146, app(app(app(ty_@3, bh), ca), cb)) -> new_compare4(xuu4900, xuu5100, bh, ca, cb) 35.39/13.71 new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, app(app(ty_@2, gh), ha)), gd)) -> new_lt2(xuu4910, xuu5110, gh, ha) 35.39/13.71 new_compare22(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, bbc, app(ty_Maybe, app(ty_Maybe, ce))) -> new_ltEs0(xuu4910, xuu5110, ce) 35.39/13.71 new_compare22(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, bbc, app(app(ty_Either, app(ty_[], df)), dg)) -> new_ltEs(xuu4910, xuu5110, df) 35.39/13.71 new_compare22(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, bbc, app(ty_Maybe, app(app(ty_Either, cf), cg))) -> new_ltEs1(xuu4910, xuu5110, cf, cg) 35.39/13.71 new_primCompAux(xuu4900, xuu5100, xuu146, app(app(ty_Either, bd), be)) -> new_compare2(xuu4900, xuu5100, bd, be) 35.39/13.71 new_compare22(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, bbc, app(app(ty_Either, eh), app(ty_[], fa))) -> new_ltEs(xuu4910, xuu5110, fa) 35.39/13.71 new_lt0(xuu490, xuu510, cc) -> new_compare20(xuu490, xuu510, new_esEs4(xuu490, xuu510, cc), cc) 35.39/13.71 new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(app(ty_Either, bbh), bca), bbe, bbf) -> new_lt1(xuu4910, xuu5110, bbh, bca) 35.39/13.71 new_compare1(xuu490, xuu510, cc) -> new_compare20(xuu490, xuu510, new_esEs4(xuu490, xuu510, cc), cc) 35.39/13.71 new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(ty_[], gc), gd) -> new_lt(xuu4910, xuu5110, gc) 35.39/13.71 new_compare(:(xuu4900, xuu4901), :(xuu5100, xuu5101), ba) -> new_primCompAux(xuu4900, xuu5100, new_compare0(xuu4901, xuu5101, ba), ba) 35.39/13.71 new_ltEs1(Right(xuu4910), Right(xuu5110), eh, app(app(ty_@2, ff), fg)) -> new_ltEs2(xuu4910, xuu5110, ff, fg) 35.39/13.71 new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(app(ty_@2, gh), ha), gd) -> new_lt2(xuu4910, xuu5110, gh, ha) 35.39/13.71 new_compare4(xuu490, xuu510, bfc, bfd, bfe) -> new_compare23(xuu490, xuu510, new_esEs7(xuu490, xuu510, bfc, bfd, bfe), bfc, bfd, bfe) 35.39/13.71 new_compare20(xuu490, xuu510, False, cc) -> new_ltEs0(xuu490, xuu510, cc) 35.39/13.71 new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), he, app(app(ty_@2, bab), bac)) -> new_ltEs2(xuu4911, xuu5111, bab, bac) 35.39/13.71 new_lt3(xuu490, xuu510, bfc, bfd, bfe) -> new_compare23(xuu490, xuu510, new_esEs7(xuu490, xuu510, bfc, bfd, bfe), bfc, bfd, bfe) 35.39/13.71 new_ltEs1(Left(xuu4910), Left(xuu5110), app(app(ty_Either, ea), eb), dg) -> new_ltEs1(xuu4910, xuu5110, ea, eb) 35.39/13.71 new_primCompAux(xuu4900, xuu5100, xuu146, app(ty_[], bb)) -> new_compare(xuu4900, xuu5100, bb) 35.39/13.71 new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, he), app(app(ty_@2, bab), bac))) -> new_ltEs2(xuu4911, xuu5111, bab, bac) 35.39/13.71 new_compare22(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, bbc, app(app(ty_Either, app(app(ty_@2, ec), ed)), dg)) -> new_ltEs2(xuu4910, xuu5110, ec, ed) 35.39/13.71 new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, he), app(app(app(ty_@3, bad), bae), baf))) -> new_ltEs3(xuu4911, xuu5111, bad, bae, baf) 35.39/13.71 new_compare22(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, bbc, app(app(ty_Either, eh), app(app(ty_Either, fc), fd))) -> new_ltEs1(xuu4910, xuu5110, fc, fd) 35.39/13.71 new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, bbe, app(ty_[], bea)) -> new_ltEs(xuu4912, xuu5112, bea) 35.39/13.71 new_compare22(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, bbc, app(app(ty_Either, eh), app(app(ty_@2, ff), fg))) -> new_ltEs2(xuu4910, xuu5110, ff, fg) 35.39/13.71 new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), app(app(ty_@2, bdd), bde)), bbf)) -> new_lt2(xuu4911, xuu5111, bdd, bde) 35.39/13.71 new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, app(ty_[], gc)), gd)) -> new_lt(xuu4910, xuu5110, gc) 35.39/13.71 new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), bbe), app(app(ty_Either, bec), bed))) -> new_ltEs1(xuu4912, xuu5112, bec, bed) 35.39/13.71 new_compare22(@2(xuu490, xuu491), @2(xuu510, xuu511), False, bbc, app(ty_[], h)) -> new_compare(xuu491, xuu511, h) 35.39/13.71 new_compare22(@2(xuu490, xuu491), @2(xuu510, xuu511), False, app(app(ty_Either, bag), bah), bfb) -> new_compare21(xuu490, xuu510, new_esEs5(xuu490, xuu510, bag, bah), bag, bah) 35.39/13.71 new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, app(app(ty_@2, bdd), bde), bbf) -> new_lt2(xuu4911, xuu5111, bdd, bde) 35.39/13.71 new_compare(:(xuu4900, xuu4901), :(xuu5100, xuu5101), ba) -> new_compare(xuu4901, xuu5101, ba) 35.39/13.71 new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, app(app(ty_@2, bcb), bcc)), bbe), bbf)) -> new_lt2(xuu4910, xuu5110, bcb, bcc) 35.39/13.71 new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), app(ty_Maybe, bda)), bbf)) -> new_lt0(xuu4911, xuu5111, bda) 35.39/13.71 new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, app(app(ty_Either, bdb), bdc), bbf) -> new_lt1(xuu4911, xuu5111, bdb, bdc) 35.39/13.71 new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, app(app(app(ty_@3, hb), hc), hd)), gd)) -> new_lt3(xuu4910, xuu5110, hb, hc, hd) 35.39/13.71 new_lt(:(xuu4900, xuu4901), :(xuu5100, xuu5101), ba) -> new_primCompAux(xuu4900, xuu5100, new_compare0(xuu4901, xuu5101, ba), ba) 35.39/13.71 new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, app(ty_[], bbd)), bbe), bbf)) -> new_lt(xuu4910, xuu5110, bbd) 35.39/13.71 new_lt1(xuu490, xuu510, bag, bah) -> new_compare21(xuu490, xuu510, new_esEs5(xuu490, xuu510, bag, bah), bag, bah) 35.39/13.71 new_compare22(@2(:(xuu4900, xuu4901), xuu491), @2(:(xuu5100, xuu5101), xuu511), False, app(ty_[], ba), bfb) -> new_primCompAux(xuu4900, xuu5100, new_compare0(xuu4901, xuu5101, ba), ba) 35.39/13.71 new_compare22(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, bbc, app(ty_Maybe, app(ty_[], cd))) -> new_ltEs(xuu4910, xuu5110, cd) 35.39/13.71 new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(ty_Maybe, bbg), bbe, bbf) -> new_lt0(xuu4910, xuu5110, bbg) 35.39/13.71 new_ltEs0(Just(xuu4910), Just(xuu5110), app(app(ty_@2, da), db)) -> new_ltEs2(xuu4910, xuu5110, da, db) 35.39/13.71 new_ltEs1(Right(xuu4910), Right(xuu5110), eh, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs3(xuu4910, xuu5110, fh, ga, gb) 35.39/13.71 new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, app(ty_Maybe, ge)), gd)) -> new_lt0(xuu4910, xuu5110, ge) 35.39/13.71 new_compare23(xuu490, xuu510, False, bfc, bfd, bfe) -> new_ltEs3(xuu490, xuu510, bfc, bfd, bfe) 35.39/13.71 new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, app(ty_Maybe, bbg)), bbe), bbf)) -> new_lt0(xuu4910, xuu5110, bbg) 35.39/13.71 new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, app(app(app(ty_@3, bdf), bdg), bdh), bbf) -> new_lt3(xuu4911, xuu5111, bdf, bdg, bdh) 35.39/13.71 new_ltEs1(Left(xuu4910), Left(xuu5110), app(app(ty_@2, ec), ed), dg) -> new_ltEs2(xuu4910, xuu5110, ec, ed) 35.39/13.71 35.39/13.71 The TRS R consists of the following rules: 35.39/13.71 35.39/13.71 new_esEs28(xuu490, xuu510, app(ty_[], ba)) -> new_esEs20(xuu490, xuu510, ba) 35.39/13.71 new_esEs27(xuu4910, xuu5110, ty_Double) -> new_esEs15(xuu4910, xuu5110) 35.39/13.71 new_lt19(xuu4910, xuu5110, ty_Bool) -> new_lt5(xuu4910, xuu5110) 35.39/13.71 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 35.39/13.71 new_primCmpInt(Neg(Succ(xuu4900)), Pos(xuu510)) -> LT 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), app(app(ty_@2, ec), ed), dg) -> new_ltEs14(xuu4910, xuu5110, ec, ed) 35.39/13.71 new_primPlusNat0(Zero, Zero) -> Zero 35.39/13.71 new_pePe(True, xuu145) -> True 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Ordering, cfa) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, dah), dba)) -> new_esEs6(xuu3110000, xuu6000, dah, dba) 35.39/13.71 new_lt12(xuu4910, xuu5110, ty_Char) -> new_lt17(xuu4910, xuu5110) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, cdc)) -> new_esEs18(xuu3110001, xuu6001, cdc) 35.39/13.71 new_lt4(xuu490, xuu510, bba, bbb) -> new_esEs8(new_compare6(xuu490, xuu510, bba, bbb), LT) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, ccd), cce), ccf)) -> new_esEs7(xuu3110001, xuu6001, ccd, cce, ccf) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, ty_Float) -> new_ltEs12(xuu4911, xuu5111) 35.39/13.71 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 35.39/13.71 new_esEs27(xuu4910, xuu5110, app(app(ty_Either, bbh), bca)) -> new_esEs5(xuu4910, xuu5110, bbh, bca) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), eh, ty_Integer) -> new_ltEs8(xuu4910, xuu5110) 35.39/13.71 new_lt19(xuu4910, xuu5110, ty_Float) -> new_lt16(xuu4910, xuu5110) 35.39/13.71 new_lt20(xuu4911, xuu5111, app(ty_Ratio, dbh)) -> new_lt18(xuu4911, xuu5111, dbh) 35.39/13.71 new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT 35.39/13.71 new_esEs12(xuu3110001, xuu6001, ty_Double) -> new_esEs15(xuu3110001, xuu6001) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, cda), cdb)) -> new_esEs6(xuu3110001, xuu6001, cda, cdb) 35.39/13.71 new_esEs27(xuu4910, xuu5110, ty_Integer) -> new_esEs16(xuu4910, xuu5110) 35.39/13.71 new_esEs13(xuu3110000, xuu6000, app(ty_[], cbh)) -> new_esEs20(xuu3110000, xuu6000, cbh) 35.39/13.71 new_esEs23(xuu3110001, xuu6001, ty_Integer) -> new_esEs16(xuu3110001, xuu6001) 35.39/13.71 new_esEs13(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.71 new_lt12(xuu4910, xuu5110, app(app(app(ty_@3, hb), hc), hd)) -> new_lt7(xuu4910, xuu5110, hb, hc, hd) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, app(ty_Maybe, beb)) -> new_ltEs9(xuu4912, xuu5112, beb) 35.39/13.71 new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat1(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Int, dg) -> new_ltEs6(xuu4910, xuu5110) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs7(xuu3110002, xuu6002, bgd, bge, bgf) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Double, dg) -> new_ltEs11(xuu4910, xuu5110) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, ty_@0) -> new_ltEs10(xuu4911, xuu5111) 35.39/13.71 new_lt19(xuu4910, xuu5110, app(app(ty_@2, bcb), bcc)) -> new_lt4(xuu4910, xuu5110, bcb, bcc) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, ty_Double) -> new_ltEs11(xuu4912, xuu5112) 35.39/13.71 new_ltEs5(Left(xuu4910), Right(xuu5110), eh, dg) -> True 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), app(app(ty_@2, da), db)) -> new_ltEs14(xuu4910, xuu5110, da, db) 35.39/13.71 new_compare26(xuu490, xuu510, False, bfc, bfd, bfe) -> new_compare113(xuu490, xuu510, new_ltEs16(xuu490, xuu510, bfc, bfd, bfe), bfc, bfd, bfe) 35.39/13.71 new_ltEs11(xuu491, xuu511) -> new_fsEs(new_compare28(xuu491, xuu511)) 35.39/13.71 new_ltEs20(xuu491, xuu511, app(ty_Maybe, dcb)) -> new_ltEs9(xuu491, xuu511, dcb) 35.39/13.71 new_esEs8(GT, GT) -> True 35.39/13.71 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 35.39/13.71 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 35.39/13.71 new_ltEs4(GT, EQ) -> False 35.39/13.71 new_fsEs(xuu133) -> new_not(new_esEs8(xuu133, GT)) 35.39/13.71 new_lt19(xuu4910, xuu5110, app(ty_Ratio, dbg)) -> new_lt18(xuu4910, xuu5110, dbg) 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cfg), cfh), cfa) -> new_esEs6(xuu3110000, xuu6000, cfg, cfh) 35.39/13.71 new_esEs8(EQ, EQ) -> True 35.39/13.71 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, cde)) -> new_esEs4(xuu3110000, xuu6000, cde) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Bool) -> new_ltEs17(xuu4910, xuu5110) 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, dbb)) -> new_esEs18(xuu3110000, xuu6000, dbb) 35.39/13.71 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 35.39/13.71 new_compare18(xuu4900, xuu5100, ty_Int) -> new_compare9(xuu4900, xuu5100) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, app(app(ty_Either, caa), cab)) -> new_esEs5(xuu3110001, xuu6001, caa, cab) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), app(app(app(ty_@3, dc), dd), de)) -> new_ltEs16(xuu4910, xuu5110, dc, dd, de) 35.39/13.71 new_lt18(xuu490, xuu510, dcd) -> new_esEs8(new_compare8(xuu490, xuu510, dcd), LT) 35.39/13.71 new_not(True) -> False 35.39/13.71 new_esEs28(xuu490, xuu510, ty_Char) -> new_esEs17(xuu490, xuu510) 35.39/13.71 new_esEs25(xuu4910, xuu5110, ty_Bool) -> new_esEs14(xuu4910, xuu5110) 35.39/13.71 new_lt21(xuu490, xuu510, app(app(ty_Either, bag), bah)) -> new_lt9(xuu490, xuu510, bag, bah) 35.39/13.71 new_lt20(xuu4911, xuu5111, ty_Float) -> new_lt16(xuu4911, xuu5111) 35.39/13.71 new_esEs27(xuu4910, xuu5110, ty_Float) -> new_esEs19(xuu4910, xuu5110) 35.39/13.71 new_primCompAux00(xuu151, LT) -> LT 35.39/13.71 new_esEs13(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.71 new_primCmpNat0(Zero, Zero) -> EQ 35.39/13.71 new_compare17(xuu490, xuu510, False, bag, bah) -> GT 35.39/13.71 new_esEs12(xuu3110001, xuu6001, app(ty_Maybe, bhe)) -> new_esEs4(xuu3110001, xuu6001, bhe) 35.39/13.71 new_lt12(xuu4910, xuu5110, ty_Double) -> new_lt15(xuu4910, xuu5110) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cgc, app(ty_Maybe, cgd)) -> new_esEs4(xuu3110000, xuu6000, cgd) 35.39/13.71 new_compare28(Double(xuu4900, Pos(xuu49010)), Double(xuu5100, Pos(xuu51010))) -> new_compare9(new_sr(xuu4900, Pos(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) 35.39/13.71 new_lt21(xuu490, xuu510, ty_Bool) -> new_lt5(xuu490, xuu510) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, app(ty_Maybe, bgc)) -> new_esEs4(xuu3110002, xuu6002, bgc) 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Bool, cfa) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.71 new_lt12(xuu4910, xuu5110, ty_@0) -> new_lt10(xuu4910, xuu5110) 35.39/13.71 new_esEs25(xuu4910, xuu5110, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs7(xuu4910, xuu5110, hb, hc, hd) 35.39/13.71 new_esEs27(xuu4910, xuu5110, ty_Char) -> new_esEs17(xuu4910, xuu5110) 35.39/13.71 new_esEs28(xuu490, xuu510, ty_Float) -> new_esEs19(xuu490, xuu510) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, app(ty_Ratio, bhc)) -> new_esEs18(xuu3110002, xuu6002, bhc) 35.39/13.71 new_esEs13(xuu3110000, xuu6000, app(app(ty_Either, cbc), cbd)) -> new_esEs5(xuu3110000, xuu6000, cbc, cbd) 35.39/13.71 new_ltEs10(xuu491, xuu511) -> new_fsEs(new_compare16(xuu491, xuu511)) 35.39/13.71 new_primEqNat0(Succ(xuu31100000), Zero) -> False 35.39/13.71 new_primEqNat0(Zero, Succ(xuu60000)) -> False 35.39/13.71 new_ltEs20(xuu491, xuu511, ty_Double) -> new_ltEs11(xuu491, xuu511) 35.39/13.71 new_compare112(xuu490, xuu510, False) -> GT 35.39/13.71 new_ltEs20(xuu491, xuu511, ty_Int) -> new_ltEs6(xuu491, xuu511) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, ty_Int) -> new_ltEs6(xuu4912, xuu5112) 35.39/13.71 new_esEs27(xuu4910, xuu5110, ty_Int) -> new_esEs10(xuu4910, xuu5110) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, app(app(ty_@2, bha), bhb)) -> new_esEs6(xuu3110002, xuu6002, bha, bhb) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Char, dg) -> new_ltEs13(xuu4910, xuu5110) 35.39/13.71 new_lt21(xuu490, xuu510, ty_Float) -> new_lt16(xuu490, xuu510) 35.39/13.71 new_primCompAux00(xuu151, GT) -> GT 35.39/13.71 new_esEs14(False, True) -> False 35.39/13.71 new_esEs14(True, False) -> False 35.39/13.71 new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat2(xuu5100, Zero) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), app(app(ty_Either, ea), eb), dg) -> new_ltEs5(xuu4910, xuu5110, ea, eb) 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, dac), dad), dae)) -> new_esEs7(xuu3110000, xuu6000, dac, dad, dae) 35.39/13.71 new_ltEs16(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, bbe, bbf) -> new_pePe(new_lt19(xuu4910, xuu5110, bcg), new_asAs(new_esEs27(xuu4910, xuu5110, bcg), new_pePe(new_lt20(xuu4911, xuu5111, bbe), new_asAs(new_esEs26(xuu4911, xuu5111, bbe), new_ltEs19(xuu4912, xuu5112, bbf))))) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Ordering) -> new_ltEs4(xuu4910, xuu5110) 35.39/13.71 new_compare13(xuu490, xuu510, False, cc) -> GT 35.39/13.71 new_esEs23(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_@0, dg) -> new_ltEs10(xuu4910, xuu5110) 35.39/13.71 new_lt20(xuu4911, xuu5111, ty_Integer) -> new_lt13(xuu4911, xuu5111) 35.39/13.71 new_compare25(xuu490, xuu510, False, cc) -> new_compare13(xuu490, xuu510, new_ltEs9(xuu490, xuu510, cc), cc) 35.39/13.71 new_esEs28(xuu490, xuu510, ty_Int) -> new_esEs10(xuu490, xuu510) 35.39/13.71 new_primCmpInt(Pos(Succ(xuu4900)), Neg(xuu510)) -> GT 35.39/13.71 new_ltEs20(xuu491, xuu511, ty_@0) -> new_ltEs10(xuu491, xuu511) 35.39/13.71 new_compare9(xuu49, xuu51) -> new_primCmpInt(xuu49, xuu51) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Integer) -> new_ltEs8(xuu4910, xuu5110) 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_[], cgb), cfa) -> new_esEs20(xuu3110000, xuu6000, cgb) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, app(ty_[], ddg)) -> new_esEs20(xuu3110000, xuu6000, ddg) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, ceh), cfa) -> new_esEs4(xuu3110000, xuu6000, ceh) 35.39/13.71 new_lt19(xuu4910, xuu5110, ty_Integer) -> new_lt13(xuu4910, xuu5110) 35.39/13.71 new_primCmpNat0(Zero, Succ(xuu51000)) -> LT 35.39/13.71 new_compare18(xuu4900, xuu5100, app(ty_[], bb)) -> new_compare0(xuu4900, xuu5100, bb) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, cee)) -> new_esEs18(xuu3110000, xuu6000, cee) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, ty_@0) -> new_ltEs10(xuu4912, xuu5112) 35.39/13.71 new_esEs26(xuu4911, xuu5111, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs7(xuu4911, xuu5111, bdf, bdg, bdh) 35.39/13.71 new_esEs20([], [], dce) -> True 35.39/13.71 new_esEs29(xuu3110000, xuu6000, ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.71 new_compare210(xuu490, xuu510, True) -> EQ 35.39/13.71 new_compare18(xuu4900, xuu5100, app(ty_Ratio, ceg)) -> new_compare8(xuu4900, xuu5100, ceg) 35.39/13.71 new_primCmpNat0(Succ(xuu49000), Zero) -> GT 35.39/13.71 new_pePe(False, xuu145) -> xuu145 35.39/13.71 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, cec), ced)) -> new_esEs6(xuu3110000, xuu6000, cec, ced) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cgc, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.71 new_lt13(xuu490, xuu510) -> new_esEs8(new_compare11(xuu490, xuu510), LT) 35.39/13.71 new_esEs26(xuu4911, xuu5111, ty_Bool) -> new_esEs14(xuu4911, xuu5111) 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Float, cfa) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.71 new_ltEs20(xuu491, xuu511, ty_Char) -> new_ltEs13(xuu491, xuu511) 35.39/13.71 new_esEs26(xuu4911, xuu5111, ty_@0) -> new_esEs9(xuu4911, xuu5111) 35.39/13.71 new_compare111(xuu121, xuu122, xuu123, xuu124, False, xuu126, chf, chg) -> new_compare110(xuu121, xuu122, xuu123, xuu124, xuu126, chf, chg) 35.39/13.71 new_esEs27(xuu4910, xuu5110, app(ty_[], bbd)) -> new_esEs20(xuu4910, xuu5110, bbd) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, ty_Bool) -> new_ltEs17(xuu4911, xuu5111) 35.39/13.71 new_lt20(xuu4911, xuu5111, app(ty_[], bch)) -> new_lt11(xuu4911, xuu5111, bch) 35.39/13.71 new_esEs8(LT, EQ) -> False 35.39/13.71 new_esEs8(EQ, LT) -> False 35.39/13.71 new_compare18(xuu4900, xuu5100, ty_Double) -> new_compare28(xuu4900, xuu5100) 35.39/13.71 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 35.39/13.71 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 35.39/13.71 new_compare28(Double(xuu4900, Pos(xuu49010)), Double(xuu5100, Neg(xuu51010))) -> new_compare9(new_sr(xuu4900, Pos(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) 35.39/13.71 new_compare28(Double(xuu4900, Neg(xuu49010)), Double(xuu5100, Pos(xuu51010))) -> new_compare9(new_sr(xuu4900, Neg(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), app(ty_Maybe, dh), dg) -> new_ltEs9(xuu4910, xuu5110, dh) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 35.39/13.71 new_lt8(xuu490, xuu510) -> new_esEs8(new_compare9(xuu490, xuu510), LT) 35.39/13.71 new_ltEs4(LT, GT) -> True 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Char) -> new_ltEs13(xuu4910, xuu5110) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, app(ty_Ratio, cae)) -> new_esEs18(xuu3110001, xuu6001, cae) 35.39/13.71 new_esEs13(xuu3110000, xuu6000, ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.71 new_compare5(Float(xuu4900, Pos(xuu49010)), Float(xuu5100, Neg(xuu51010))) -> new_compare9(new_sr(xuu4900, Pos(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) 35.39/13.71 new_compare5(Float(xuu4900, Neg(xuu49010)), Float(xuu5100, Pos(xuu51010))) -> new_compare9(new_sr(xuu4900, Neg(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, ty_Char) -> new_ltEs13(xuu4912, xuu5112) 35.39/13.71 new_compare18(xuu4900, xuu5100, ty_Ordering) -> new_compare12(xuu4900, xuu5100) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Double) -> new_ltEs11(xuu4910, xuu5110) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, app(app(ty_@2, bee), bef)) -> new_ltEs14(xuu4912, xuu5112, bee, bef) 35.39/13.71 new_esEs6(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cca, ccb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, cca), new_esEs21(xuu3110001, xuu6001, ccb)) 35.39/13.71 new_esEs25(xuu4910, xuu5110, ty_Ordering) -> new_esEs8(xuu4910, xuu5110) 35.39/13.71 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, ty_Double) -> new_ltEs11(xuu4911, xuu5111) 35.39/13.71 new_esEs28(xuu490, xuu510, ty_Integer) -> new_esEs16(xuu490, xuu510) 35.39/13.71 new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT 35.39/13.71 new_esEs25(xuu4910, xuu5110, app(ty_[], gc)) -> new_esEs20(xuu4910, xuu5110, gc) 35.39/13.71 new_ltEs4(LT, LT) -> True 35.39/13.71 new_ltEs4(EQ, LT) -> False 35.39/13.71 new_ltEs18(xuu4911, xuu5111, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs16(xuu4911, xuu5111, bad, bae, baf) 35.39/13.71 new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 35.39/13.71 new_compare18(xuu4900, xuu5100, ty_Char) -> new_compare29(xuu4900, xuu5100) 35.39/13.71 new_esEs28(xuu490, xuu510, ty_Double) -> new_esEs15(xuu490, xuu510) 35.39/13.71 new_esEs28(xuu490, xuu510, ty_Bool) -> new_esEs14(xuu490, xuu510) 35.39/13.71 new_esEs26(xuu4911, xuu5111, app(app(ty_@2, bdd), bde)) -> new_esEs6(xuu4911, xuu5111, bdd, bde) 35.39/13.71 new_esEs28(xuu490, xuu510, ty_@0) -> new_esEs9(xuu490, xuu510) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_esEs7(xuu3110000, xuu6000, cdf, cdg, cdh) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.71 new_esEs20(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), dce) -> new_asAs(new_esEs29(xuu3110000, xuu6000, dce), new_esEs20(xuu3110001, xuu6001, dce)) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, app(app(ty_@2, cac), cad)) -> new_esEs6(xuu3110001, xuu6001, cac, cad) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cgc, app(ty_Ratio, chd)) -> new_esEs18(xuu3110000, xuu6000, chd) 35.39/13.71 new_primMulNat0(Succ(xuu311000100), Zero) -> Zero 35.39/13.71 new_primMulNat0(Zero, Succ(xuu600000)) -> Zero 35.39/13.71 new_lt21(xuu490, xuu510, ty_Integer) -> new_lt13(xuu490, xuu510) 35.39/13.71 new_lt19(xuu4910, xuu5110, app(app(ty_Either, bbh), bca)) -> new_lt9(xuu4910, xuu5110, bbh, bca) 35.39/13.71 new_primPlusNat1(Succ(xuu1120), xuu600000) -> Succ(Succ(new_primPlusNat0(xuu1120, xuu600000))) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, ty_Float) -> new_ltEs12(xuu4912, xuu5112) 35.39/13.71 new_esEs13(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.71 new_lt20(xuu4911, xuu5111, ty_@0) -> new_lt10(xuu4911, xuu5111) 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cfe), cff), cfa) -> new_esEs5(xuu3110000, xuu6000, cfe, cff) 35.39/13.71 new_primPlusNat0(Succ(xuu41200), Zero) -> Succ(xuu41200) 35.39/13.71 new_primPlusNat0(Zero, Succ(xuu10800)) -> Succ(xuu10800) 35.39/13.71 new_lt19(xuu4910, xuu5110, app(ty_[], bbd)) -> new_lt11(xuu4910, xuu5110, bbd) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cgc, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs7(xuu3110000, xuu6000, cge, cgf, cgg) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), app(app(ty_Either, cf), cg)) -> new_ltEs5(xuu4910, xuu5110, cf, cg) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, ccg), cch)) -> new_esEs5(xuu3110001, xuu6001, ccg, cch) 35.39/13.71 new_esEs26(xuu4911, xuu5111, app(ty_Ratio, dbh)) -> new_esEs18(xuu4911, xuu5111, dbh) 35.39/13.71 new_primPlusNat1(Zero, xuu600000) -> Succ(xuu600000) 35.39/13.71 new_ltEs15(xuu491, xuu511, dbd) -> new_fsEs(new_compare8(xuu491, xuu511, dbd)) 35.39/13.71 new_compare17(xuu490, xuu510, True, bag, bah) -> LT 35.39/13.71 new_compare6(xuu490, xuu510, bba, bbb) -> new_compare211(xuu490, xuu510, new_esEs6(xuu490, xuu510, bba, bbb), bba, bbb) 35.39/13.71 new_lt12(xuu4910, xuu5110, ty_Int) -> new_lt8(xuu4910, xuu5110) 35.39/13.71 new_esEs8(LT, LT) -> True 35.39/13.71 new_compare15(xuu490, xuu510, bag, bah) -> new_compare27(xuu490, xuu510, new_esEs5(xuu490, xuu510, bag, bah), bag, bah) 35.39/13.71 new_ltEs20(xuu491, xuu511, ty_Float) -> new_ltEs12(xuu491, xuu511) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) 35.39/13.71 new_ltEs20(xuu491, xuu511, app(app(ty_@2, he), gd)) -> new_ltEs14(xuu491, xuu511, he, gd) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cgc, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.71 new_esEs25(xuu4910, xuu5110, ty_Float) -> new_esEs19(xuu4910, xuu5110) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), eh, ty_Float) -> new_ltEs12(xuu4910, xuu5110) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 35.39/13.71 new_esEs27(xuu4910, xuu5110, ty_@0) -> new_esEs9(xuu4910, xuu5110) 35.39/13.71 new_lt21(xuu490, xuu510, app(ty_Ratio, dcd)) -> new_lt18(xuu490, xuu510, dcd) 35.39/13.71 new_esEs13(xuu3110000, xuu6000, app(app(ty_@2, cbe), cbf)) -> new_esEs6(xuu3110000, xuu6000, cbe, cbf) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cgc, ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, app(ty_Maybe, hg)) -> new_ltEs9(xuu4911, xuu5111, hg) 35.39/13.71 new_ltEs4(LT, EQ) -> True 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cgc, ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.71 new_ltEs20(xuu491, xuu511, app(app(app(ty_@3, bcg), bbe), bbf)) -> new_ltEs16(xuu491, xuu511, bcg, bbe, bbf) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, ccc)) -> new_esEs4(xuu3110001, xuu6001, ccc) 35.39/13.71 new_lt12(xuu4910, xuu5110, app(ty_Maybe, ge)) -> new_lt14(xuu4910, xuu5110, ge) 35.39/13.71 new_esEs26(xuu4911, xuu5111, app(ty_[], bch)) -> new_esEs20(xuu4911, xuu5111, bch) 35.39/13.71 new_esEs13(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Ordering, dg) -> new_ltEs4(xuu4910, xuu5110) 35.39/13.71 new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 35.39/13.71 new_compare25(xuu490, xuu510, True, cc) -> EQ 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), eh, app(ty_Ratio, bfg)) -> new_ltEs15(xuu4910, xuu5110, bfg) 35.39/13.71 new_esEs14(True, True) -> True 35.39/13.71 new_ltEs20(xuu491, xuu511, ty_Bool) -> new_ltEs17(xuu491, xuu511) 35.39/13.71 new_esEs13(xuu3110000, xuu6000, app(ty_Ratio, cbg)) -> new_esEs18(xuu3110000, xuu6000, cbg) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cgc, app(app(ty_@2, chb), chc)) -> new_esEs6(xuu3110000, xuu6000, chb, chc) 35.39/13.71 new_esEs25(xuu4910, xuu5110, app(app(ty_@2, gh), ha)) -> new_esEs6(xuu4910, xuu5110, gh, ha) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, app(app(ty_Either, bgg), bgh)) -> new_esEs5(xuu3110002, xuu6002, bgg, bgh) 35.39/13.71 new_ltEs4(EQ, EQ) -> True 35.39/13.71 new_esEs12(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.71 new_lt21(xuu490, xuu510, ty_@0) -> new_lt10(xuu490, xuu510) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, ty_Integer) -> new_ltEs8(xuu4911, xuu5111) 35.39/13.71 new_esEs25(xuu4910, xuu5110, app(ty_Ratio, dbe)) -> new_esEs18(xuu4910, xuu5110, dbe) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs7(xuu3110001, xuu6001, bhf, bhg, bhh) 35.39/13.71 new_compare18(xuu4900, xuu5100, ty_Integer) -> new_compare11(xuu4900, xuu5100) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), app(ty_[], cd)) -> new_ltEs7(xuu4910, xuu5110, cd) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, cea), ceb)) -> new_esEs5(xuu3110000, xuu6000, cea, ceb) 35.39/13.71 new_compare19(xuu490, xuu510, cc) -> new_compare25(xuu490, xuu510, new_esEs4(xuu490, xuu510, cc), cc) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), eh, ty_Bool) -> new_ltEs17(xuu4910, xuu5110) 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, dab)) -> new_esEs4(xuu3110000, xuu6000, dab) 35.39/13.71 new_primCmpNat2(xuu4900, Zero) -> GT 35.39/13.71 new_esEs29(xuu3110000, xuu6000, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.71 new_compare210(xuu490, xuu510, False) -> new_compare112(xuu490, xuu510, new_ltEs17(xuu490, xuu510)) 35.39/13.71 new_compare24(xuu490, xuu510, False) -> new_compare10(xuu490, xuu510, new_ltEs4(xuu490, xuu510)) 35.39/13.71 new_compare26(xuu490, xuu510, True, bfc, bfd, bfe) -> EQ 35.39/13.71 new_compare112(xuu490, xuu510, True) -> LT 35.39/13.71 new_compare18(xuu4900, xuu5100, app(app(app(ty_@3, bh), ca), cb)) -> new_compare14(xuu4900, xuu5100, bh, ca, cb) 35.39/13.71 new_esEs27(xuu4910, xuu5110, ty_Bool) -> new_esEs14(xuu4910, xuu5110) 35.39/13.71 new_esEs25(xuu4910, xuu5110, ty_Integer) -> new_esEs16(xuu4910, xuu5110) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, app(app(ty_Either, bec), bed)) -> new_ltEs5(xuu4912, xuu5112, bec, bed) 35.39/13.71 new_compare18(xuu4900, xuu5100, ty_Bool) -> new_compare7(xuu4900, xuu5100) 35.39/13.71 new_lt19(xuu4910, xuu5110, app(ty_Maybe, bbg)) -> new_lt14(xuu4910, xuu5110, bbg) 35.39/13.71 new_lt20(xuu4911, xuu5111, ty_Char) -> new_lt17(xuu4911, xuu5111) 35.39/13.71 new_compare7(xuu490, xuu510) -> new_compare210(xuu490, xuu510, new_esEs14(xuu490, xuu510)) 35.39/13.71 new_primMulInt(Pos(xuu31100010), Neg(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 35.39/13.71 new_primMulInt(Neg(xuu31100010), Pos(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 35.39/13.71 new_esEs13(xuu3110000, xuu6000, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs7(xuu3110000, xuu6000, cah, cba, cbb) 35.39/13.71 new_lt12(xuu4910, xuu5110, app(ty_Ratio, dbe)) -> new_lt18(xuu4910, xuu5110, dbe) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.71 new_primCmpNat1(Succ(xuu5100), xuu4900) -> new_primCmpNat0(xuu5100, xuu4900) 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.71 new_lt10(xuu490, xuu510) -> new_esEs8(new_compare16(xuu490, xuu510), LT) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), app(ty_Ratio, dcc)) -> new_ltEs15(xuu4910, xuu5110, dcc) 35.39/13.71 new_lt12(xuu4910, xuu5110, ty_Integer) -> new_lt13(xuu4910, xuu5110) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, app(app(ty_@2, bab), bac)) -> new_ltEs14(xuu4911, xuu5111, bab, bac) 35.39/13.71 new_sr0(Integer(xuu51000), Integer(xuu49010)) -> Integer(new_primMulInt(xuu51000, xuu49010)) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs16(xuu4912, xuu5112, beg, beh, bfa) 35.39/13.71 new_ltEs6(xuu491, xuu511) -> new_fsEs(new_compare9(xuu491, xuu511)) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, ty_Bool) -> new_ltEs17(xuu4912, xuu5112) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_@0) -> new_ltEs10(xuu4910, xuu5110) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, ty_Ordering) -> new_ltEs4(xuu4911, xuu5111) 35.39/13.71 new_esEs28(xuu490, xuu510, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs7(xuu490, xuu510, bfc, bfd, bfe) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Bool, dg) -> new_ltEs17(xuu4910, xuu5110) 35.39/13.71 new_primCompAux0(xuu4900, xuu5100, xuu146, ba) -> new_primCompAux00(xuu146, new_compare18(xuu4900, xuu5100, ba)) 35.39/13.71 new_compare111(xuu121, xuu122, xuu123, xuu124, True, xuu126, chf, chg) -> new_compare110(xuu121, xuu122, xuu123, xuu124, True, chf, chg) 35.39/13.71 new_esEs25(xuu4910, xuu5110, ty_Char) -> new_esEs17(xuu4910, xuu5110) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, ty_Integer) -> new_ltEs8(xuu4912, xuu5112) 35.39/13.71 new_ltEs9(Nothing, Just(xuu5110), dcb) -> True 35.39/13.71 new_compare0([], :(xuu5100, xuu5101), ba) -> LT 35.39/13.71 new_asAs(True, xuu72) -> xuu72 35.39/13.71 new_lt12(xuu4910, xuu5110, ty_Bool) -> new_lt5(xuu4910, xuu5110) 35.39/13.71 new_ltEs5(Right(xuu4910), Left(xuu5110), eh, dg) -> False 35.39/13.71 new_compare113(xuu490, xuu510, True, bfc, bfd, bfe) -> LT 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, ty_Char) -> new_ltEs13(xuu4911, xuu5111) 35.39/13.71 new_esEs25(xuu4910, xuu5110, ty_Double) -> new_esEs15(xuu4910, xuu5110) 35.39/13.71 new_lt16(xuu490, xuu510) -> new_esEs8(new_compare5(xuu490, xuu510), LT) 35.39/13.71 new_compare14(xuu490, xuu510, bfc, bfd, bfe) -> new_compare26(xuu490, xuu510, new_esEs7(xuu490, xuu510, bfc, bfd, bfe), bfc, bfd, bfe) 35.39/13.71 new_lt20(xuu4911, xuu5111, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_lt7(xuu4911, xuu5111, bdf, bdg, bdh) 35.39/13.71 new_primCmpNat2(xuu4900, Succ(xuu5100)) -> new_primCmpNat0(xuu4900, xuu5100) 35.39/13.71 new_lt19(xuu4910, xuu5110, ty_@0) -> new_lt10(xuu4910, xuu5110) 35.39/13.71 new_ltEs20(xuu491, xuu511, app(app(ty_Either, eh), dg)) -> new_ltEs5(xuu491, xuu511, eh, dg) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), app(app(app(ty_@3, ee), ef), eg), dg) -> new_ltEs16(xuu4910, xuu5110, ee, ef, eg) 35.39/13.71 new_ltEs20(xuu491, xuu511, ty_Integer) -> new_ltEs8(xuu491, xuu511) 35.39/13.71 new_compare13(xuu490, xuu510, True, cc) -> LT 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, daf), dag)) -> new_esEs5(xuu3110000, xuu6000, daf, dag) 35.39/13.71 new_lt21(xuu490, xuu510, app(ty_[], ba)) -> new_lt11(xuu490, xuu510, ba) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Integer, dg) -> new_ltEs8(xuu4910, xuu5110) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, app(ty_[], bhd)) -> new_esEs20(xuu3110002, xuu6002, bhd) 35.39/13.71 new_lt19(xuu4910, xuu5110, ty_Int) -> new_lt8(xuu4910, xuu5110) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), eh, app(app(ty_Either, fc), fd)) -> new_ltEs5(xuu4910, xuu5110, fc, fd) 35.39/13.71 new_lt11(xuu490, xuu510, ba) -> new_esEs8(new_compare0(xuu490, xuu510, ba), LT) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, app(app(ty_Either, ddb), ddc)) -> new_esEs5(xuu3110000, xuu6000, ddb, ddc) 35.39/13.71 new_esEs25(xuu4910, xuu5110, ty_@0) -> new_esEs9(xuu4910, xuu5110) 35.39/13.71 new_esEs9(@0, @0) -> True 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cgc, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.71 new_primCompAux00(xuu151, EQ) -> xuu151 35.39/13.71 new_compare0([], [], ba) -> EQ 35.39/13.71 new_sr(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) 35.39/13.71 new_compare211(@2(xuu490, xuu491), @2(xuu510, xuu511), False, bbc, bfb) -> new_compare111(xuu490, xuu491, xuu510, xuu511, new_lt21(xuu490, xuu510, bbc), new_asAs(new_esEs28(xuu490, xuu510, bbc), new_ltEs20(xuu491, xuu511, bfb)), bbc, bfb) 35.39/13.71 new_esEs27(xuu4910, xuu5110, app(app(ty_@2, bcb), bcc)) -> new_esEs6(xuu4910, xuu5110, bcb, bcc) 35.39/13.71 new_esEs17(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 35.39/13.71 new_primMulNat0(Zero, Zero) -> Zero 35.39/13.71 new_lt19(xuu4910, xuu5110, app(app(app(ty_@3, bcd), bce), bcf)) -> new_lt7(xuu4910, xuu5110, bcd, bce, bcf) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, ty_Char) -> new_esEs17(xuu3110002, xuu6002) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, ty_Float) -> new_esEs19(xuu3110002, xuu6002) 35.39/13.71 new_compare16(@0, @0) -> EQ 35.39/13.71 new_ltEs13(xuu491, xuu511) -> new_fsEs(new_compare29(xuu491, xuu511)) 35.39/13.71 new_compare10(xuu490, xuu510, False) -> GT 35.39/13.71 new_esEs27(xuu4910, xuu5110, ty_Ordering) -> new_esEs8(xuu4910, xuu5110) 35.39/13.71 new_lt12(xuu4910, xuu5110, app(app(ty_@2, gh), ha)) -> new_lt4(xuu4910, xuu5110, gh, ha) 35.39/13.71 new_compare11(Integer(xuu4900), Integer(xuu5100)) -> new_primCmpInt(xuu4900, xuu5100) 35.39/13.71 new_lt12(xuu4910, xuu5110, ty_Ordering) -> new_lt6(xuu4910, xuu5110) 35.39/13.71 new_esEs28(xuu490, xuu510, app(ty_Maybe, cc)) -> new_esEs4(xuu490, xuu510, cc) 35.39/13.71 new_compare12(xuu490, xuu510) -> new_compare24(xuu490, xuu510, new_esEs8(xuu490, xuu510)) 35.39/13.71 new_primCmpNat1(Zero, xuu4900) -> LT 35.39/13.71 new_esEs13(xuu3110000, xuu6000, app(ty_Maybe, cag)) -> new_esEs4(xuu3110000, xuu6000, cag) 35.39/13.71 new_esEs4(Nothing, Nothing, daa) -> True 35.39/13.71 new_esEs26(xuu4911, xuu5111, ty_Float) -> new_esEs19(xuu4911, xuu5111) 35.39/13.71 new_esEs26(xuu4911, xuu5111, ty_Char) -> new_esEs17(xuu4911, xuu5111) 35.39/13.71 new_lt20(xuu4911, xuu5111, app(app(ty_Either, bdb), bdc)) -> new_lt9(xuu4911, xuu5111, bdb, bdc) 35.39/13.71 new_compare8(:%(xuu4900, xuu4901), :%(xuu5100, xuu5101), ty_Int) -> new_compare9(new_sr(xuu4900, xuu5101), new_sr(xuu5100, xuu4901)) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cgc, app(app(ty_Either, cgh), cha)) -> new_esEs5(xuu3110000, xuu6000, cgh, cha) 35.39/13.71 new_esEs4(Nothing, Just(xuu6000), daa) -> False 35.39/13.71 new_esEs4(Just(xuu3110000), Nothing, daa) -> False 35.39/13.71 new_lt7(xuu490, xuu510, bfc, bfd, bfe) -> new_esEs8(new_compare14(xuu490, xuu510, bfc, bfd, bfe), LT) 35.39/13.71 new_esEs27(xuu4910, xuu5110, app(ty_Ratio, dbg)) -> new_esEs18(xuu4910, xuu5110, dbg) 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.71 new_esEs28(xuu490, xuu510, app(ty_Ratio, dcd)) -> new_esEs18(xuu490, xuu510, dcd) 35.39/13.71 new_lt21(xuu490, xuu510, app(ty_Maybe, cc)) -> new_lt14(xuu490, xuu510, cc) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), eh, ty_@0) -> new_ltEs10(xuu4910, xuu5110) 35.39/13.71 new_esEs28(xuu490, xuu510, app(app(ty_@2, bba), bbb)) -> new_esEs6(xuu490, xuu510, bba, bbb) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, ty_Int) -> new_esEs10(xuu3110002, xuu6002) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), app(ty_[], df), dg) -> new_ltEs7(xuu4910, xuu5110, df) 35.39/13.71 new_lt21(xuu490, xuu510, ty_Int) -> new_lt8(xuu490, xuu510) 35.39/13.71 new_ltEs17(False, False) -> True 35.39/13.71 new_ltEs18(xuu4911, xuu5111, app(ty_[], hf)) -> new_ltEs7(xuu4911, xuu5111, hf) 35.39/13.71 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.71 new_lt20(xuu4911, xuu5111, app(ty_Maybe, bda)) -> new_lt14(xuu4911, xuu5111, bda) 35.39/13.71 new_lt5(xuu490, xuu510) -> new_esEs8(new_compare7(xuu490, xuu510), LT) 35.39/13.71 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 35.39/13.71 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_@0, cfa) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.71 new_esEs15(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 35.39/13.71 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs15(xuu3110001, xuu6001) 35.39/13.71 new_compare24(xuu490, xuu510, True) -> EQ 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), eh, ty_Char) -> new_ltEs13(xuu4910, xuu5110) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, ty_Bool) -> new_esEs14(xuu3110001, xuu6001) 35.39/13.71 new_esEs25(xuu4910, xuu5110, app(app(ty_Either, gf), gg)) -> new_esEs5(xuu4910, xuu5110, gf, gg) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), eh, ty_Double) -> new_ltEs11(xuu4910, xuu5110) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, app(app(ty_Either, hh), baa)) -> new_ltEs5(xuu4911, xuu5111, hh, baa) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), eh, ty_Int) -> new_ltEs6(xuu4910, xuu5110) 35.39/13.71 new_esEs26(xuu4911, xuu5111, ty_Ordering) -> new_esEs8(xuu4911, xuu5111) 35.39/13.71 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 35.39/13.71 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 35.39/13.71 new_esEs14(False, False) -> True 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), app(ty_Maybe, ce)) -> new_ltEs9(xuu4910, xuu5110, ce) 35.39/13.71 new_ltEs4(EQ, GT) -> True 35.39/13.71 new_esEs29(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.71 new_compare211(xuu49, xuu51, True, bbc, bfb) -> EQ 35.39/13.71 new_esEs20(:(xuu3110000, xuu3110001), [], dce) -> False 35.39/13.71 new_esEs20([], :(xuu6000, xuu6001), dce) -> False 35.39/13.71 new_compare27(xuu490, xuu510, False, bag, bah) -> new_compare17(xuu490, xuu510, new_ltEs5(xuu490, xuu510, bag, bah), bag, bah) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, app(ty_Maybe, dcf)) -> new_esEs4(xuu3110000, xuu6000, dcf) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), eh, app(ty_[], fa)) -> new_ltEs7(xuu4910, xuu5110, fa) 35.39/13.71 new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs16(xuu3110001, xuu6001) 35.39/13.71 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 35.39/13.71 new_ltEs17(True, False) -> False 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cgc, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.71 new_esEs19(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 35.39/13.71 new_compare18(xuu4900, xuu5100, app(app(ty_Either, bd), be)) -> new_compare15(xuu4900, xuu5100, bd, be) 35.39/13.71 new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bfh, bga, bgb) -> new_asAs(new_esEs13(xuu3110000, xuu6000, bfh), new_asAs(new_esEs12(xuu3110001, xuu6001, bga), new_esEs11(xuu3110002, xuu6002, bgb))) 35.39/13.71 new_esEs26(xuu4911, xuu5111, app(app(ty_Either, bdb), bdc)) -> new_esEs5(xuu4911, xuu5111, bdb, bdc) 35.39/13.71 new_lt15(xuu490, xuu510) -> new_esEs8(new_compare28(xuu490, xuu510), LT) 35.39/13.71 new_ltEs17(False, True) -> True 35.39/13.71 new_ltEs7(xuu491, xuu511, h) -> new_fsEs(new_compare0(xuu491, xuu511, h)) 35.39/13.71 new_lt21(xuu490, xuu510, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_lt7(xuu490, xuu510, bfc, bfd, bfe) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, ty_Bool) -> new_esEs14(xuu3110002, xuu6002) 35.39/13.71 new_esEs18(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), chh) -> new_asAs(new_esEs24(xuu3110000, xuu6000, chh), new_esEs23(xuu3110001, xuu6001, chh)) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, ty_Double) -> new_esEs15(xuu3110002, xuu6002) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, app(ty_[], caf)) -> new_esEs20(xuu3110001, xuu6001, caf) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), eh, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs16(xuu4910, xuu5110, fh, ga, gb) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, app(app(app(ty_@3, dcg), dch), dda)) -> new_esEs7(xuu3110000, xuu6000, dcg, dch, dda) 35.39/13.71 new_ltEs19(xuu4912, xuu5112, app(ty_[], bea)) -> new_ltEs7(xuu4912, xuu5112, bea) 35.39/13.71 new_esEs26(xuu4911, xuu5111, ty_Integer) -> new_esEs16(xuu4911, xuu5111) 35.39/13.71 new_not(False) -> True 35.39/13.71 new_compare18(xuu4900, xuu5100, app(ty_Maybe, bc)) -> new_compare19(xuu4900, xuu5100, bc) 35.39/13.71 new_ltEs12(xuu491, xuu511) -> new_fsEs(new_compare5(xuu491, xuu511)) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cgc, app(ty_[], che)) -> new_esEs20(xuu3110000, xuu6000, che) 35.39/13.71 new_primCmpInt(Neg(Succ(xuu4900)), Neg(xuu510)) -> new_primCmpNat1(xuu510, xuu4900) 35.39/13.71 new_compare0(:(xuu4900, xuu4901), [], ba) -> GT 35.39/13.71 new_esEs8(LT, GT) -> False 35.39/13.71 new_esEs8(GT, LT) -> False 35.39/13.71 new_primPlusNat0(Succ(xuu41200), Succ(xuu10800)) -> Succ(Succ(new_primPlusNat0(xuu41200, xuu10800))) 35.39/13.71 new_esEs16(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 35.39/13.71 new_esEs26(xuu4911, xuu5111, ty_Double) -> new_esEs15(xuu4911, xuu5111) 35.39/13.71 new_compare18(xuu4900, xuu5100, ty_Float) -> new_compare5(xuu4900, xuu5100) 35.39/13.71 new_esEs5(Left(xuu3110000), Right(xuu6000), cgc, cfa) -> False 35.39/13.71 new_esEs5(Right(xuu3110000), Left(xuu6000), cgc, cfa) -> False 35.39/13.71 new_primCmpInt(Pos(Succ(xuu4900)), Pos(xuu510)) -> new_primCmpNat2(xuu4900, xuu510) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), eh, app(app(ty_@2, ff), fg)) -> new_ltEs14(xuu4910, xuu5110, ff, fg) 35.39/13.71 new_lt14(xuu490, xuu510, cc) -> new_esEs8(new_compare19(xuu490, xuu510, cc), LT) 35.39/13.71 new_compare28(Double(xuu4900, Neg(xuu49010)), Double(xuu5100, Neg(xuu51010))) -> new_compare9(new_sr(xuu4900, Neg(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) 35.39/13.71 new_esEs11(xuu3110002, xuu6002, ty_Integer) -> new_esEs16(xuu3110002, xuu6002) 35.39/13.71 new_compare27(xuu490, xuu510, True, bag, bah) -> EQ 35.39/13.71 new_ltEs20(xuu491, xuu511, app(ty_[], h)) -> new_ltEs7(xuu491, xuu511, h) 35.39/13.71 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Int) -> new_ltEs6(xuu4910, xuu5110) 35.39/13.71 new_ltEs4(GT, LT) -> False 35.39/13.71 new_esEs11(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) 35.39/13.71 new_ltEs18(xuu4911, xuu5111, ty_Int) -> new_ltEs6(xuu4911, xuu5111) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, app(ty_Ratio, ddf)) -> new_esEs18(xuu3110000, xuu6000, ddf) 35.39/13.71 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Int, cfa) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.71 new_lt12(xuu4910, xuu5110, app(ty_[], gc)) -> new_lt11(xuu4910, xuu5110, gc) 35.39/13.71 new_esEs5(Right(xuu3110000), Right(xuu6000), cgc, ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.71 new_esEs27(xuu4910, xuu5110, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs7(xuu4910, xuu5110, bcd, bce, bcf) 35.39/13.71 new_compare110(xuu121, xuu122, xuu123, xuu124, False, chf, chg) -> GT 35.39/13.71 new_lt20(xuu4911, xuu5111, ty_Int) -> new_lt8(xuu4911, xuu5111) 35.39/13.71 new_ltEs8(xuu491, xuu511) -> new_fsEs(new_compare11(xuu491, xuu511)) 35.39/13.71 new_esEs12(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.71 new_esEs29(xuu3110000, xuu6000, app(app(ty_@2, ddd), dde)) -> new_esEs6(xuu3110000, xuu6000, ddd, dde) 35.39/13.71 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.71 new_lt17(xuu490, xuu510) -> new_esEs8(new_compare29(xuu490, xuu510), LT) 35.39/13.71 new_esEs24(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.39/13.71 new_compare5(Float(xuu4900, Neg(xuu49010)), Float(xuu5100, Neg(xuu51010))) -> new_compare9(new_sr(xuu4900, Neg(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) 35.39/13.71 new_esEs10(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 35.39/13.71 new_lt21(xuu490, xuu510, ty_Char) -> new_lt17(xuu490, xuu510) 35.39/13.71 new_ltEs5(Right(xuu4910), Right(xuu5110), eh, ty_Ordering) -> new_ltEs4(xuu4910, xuu5110) 35.39/13.71 new_compare10(xuu490, xuu510, True) -> LT 35.39/13.71 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 35.39/13.71 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 35.39/13.71 new_lt21(xuu490, xuu510, ty_Double) -> new_lt15(xuu490, xuu510) 35.39/13.71 new_compare0(:(xuu4900, xuu4901), :(xuu5100, xuu5101), ba) -> new_primCompAux0(xuu4900, xuu5100, new_compare0(xuu4901, xuu5101, ba), ba) 35.39/13.71 new_lt20(xuu4911, xuu5111, app(app(ty_@2, bdd), bde)) -> new_lt4(xuu4911, xuu5111, bdd, bde) 35.39/13.71 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Float, dg) -> new_ltEs12(xuu4910, xuu5110) 35.39/13.72 new_esEs25(xuu4910, xuu5110, app(ty_Maybe, ge)) -> new_esEs4(xuu4910, xuu5110, ge) 35.39/13.72 new_lt21(xuu490, xuu510, ty_Ordering) -> new_lt6(xuu490, xuu510) 35.39/13.72 new_esEs25(xuu4910, xuu5110, ty_Int) -> new_esEs10(xuu4910, xuu5110) 35.39/13.72 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 35.39/13.72 new_compare8(:%(xuu4900, xuu4901), :%(xuu5100, xuu5101), ty_Integer) -> new_compare11(new_sr0(xuu4900, xuu5101), new_sr0(xuu5100, xuu4901)) 35.39/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, cga), cfa) -> new_esEs18(xuu3110000, xuu6000, cga) 35.39/13.72 new_lt6(xuu490, xuu510) -> new_esEs8(new_compare12(xuu490, xuu510), LT) 35.39/13.72 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.72 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_[], dbc)) -> new_esEs20(xuu3110000, xuu6000, dbc) 35.39/13.72 new_primCmpNat0(Succ(xuu49000), Succ(xuu51000)) -> new_primCmpNat0(xuu49000, xuu51000) 35.39/13.72 new_lt12(xuu4910, xuu5110, ty_Float) -> new_lt16(xuu4910, xuu5110) 35.39/13.72 new_ltEs19(xuu4912, xuu5112, app(ty_Ratio, dca)) -> new_ltEs15(xuu4912, xuu5112, dca) 35.39/13.72 new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat1(Zero, xuu5100) 35.39/13.72 new_esEs12(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) 35.39/13.72 new_compare110(xuu121, xuu122, xuu123, xuu124, True, chf, chg) -> LT 35.39/13.72 new_esEs27(xuu4910, xuu5110, app(ty_Maybe, bbg)) -> new_esEs4(xuu4910, xuu5110, bbg) 35.39/13.72 new_ltEs20(xuu491, xuu511, ty_Ordering) -> new_ltEs4(xuu491, xuu511) 35.39/13.72 new_esEs26(xuu4911, xuu5111, ty_Int) -> new_esEs10(xuu4911, xuu5111) 35.39/13.72 new_esEs22(xuu3110000, xuu6000, app(ty_[], cef)) -> new_esEs20(xuu3110000, xuu6000, cef) 35.39/13.72 new_esEs28(xuu490, xuu510, ty_Ordering) -> new_esEs8(xuu490, xuu510) 35.39/13.72 new_compare18(xuu4900, xuu5100, ty_@0) -> new_compare16(xuu4900, xuu5100) 35.39/13.72 new_lt20(xuu4911, xuu5111, ty_Bool) -> new_lt5(xuu4911, xuu5111) 35.39/13.72 new_compare5(Float(xuu4900, Pos(xuu49010)), Float(xuu5100, Pos(xuu51010))) -> new_compare9(new_sr(xuu4900, Pos(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) 35.39/13.72 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 35.39/13.72 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 35.39/13.72 new_esEs13(xuu3110000, xuu6000, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.72 new_ltEs18(xuu4911, xuu5111, app(ty_Ratio, dbf)) -> new_ltEs15(xuu4911, xuu5111, dbf) 35.39/13.72 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Float) -> new_ltEs12(xuu4910, xuu5110) 35.39/13.72 new_esEs29(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.72 new_esEs21(xuu3110001, xuu6001, app(ty_[], cdd)) -> new_esEs20(xuu3110001, xuu6001, cdd) 35.39/13.72 new_lt21(xuu490, xuu510, app(app(ty_@2, bba), bbb)) -> new_lt4(xuu490, xuu510, bba, bbb) 35.39/13.72 new_esEs5(Right(xuu3110000), Right(xuu6000), cgc, ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.39/13.72 new_ltEs20(xuu491, xuu511, app(ty_Ratio, dbd)) -> new_ltEs15(xuu491, xuu511, dbd) 35.39/13.72 new_esEs13(xuu3110000, xuu6000, ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.72 new_compare29(Char(xuu4900), Char(xuu5100)) -> new_primCmpNat0(xuu4900, xuu5100) 35.39/13.72 new_ltEs19(xuu4912, xuu5112, ty_Ordering) -> new_ltEs4(xuu4912, xuu5112) 35.39/13.72 new_esEs26(xuu4911, xuu5111, app(ty_Maybe, bda)) -> new_esEs4(xuu4911, xuu5111, bda) 35.39/13.72 new_primEqNat0(Zero, Zero) -> True 35.39/13.72 new_lt19(xuu4910, xuu5110, ty_Ordering) -> new_lt6(xuu4910, xuu5110) 35.39/13.72 new_esEs28(xuu490, xuu510, app(app(ty_Either, bag), bah)) -> new_esEs5(xuu490, xuu510, bag, bah) 35.39/13.72 new_ltEs9(Just(xuu4910), Nothing, dcb) -> False 35.39/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Integer, cfa) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.72 new_ltEs5(Right(xuu4910), Right(xuu5110), eh, app(ty_Maybe, fb)) -> new_ltEs9(xuu4910, xuu5110, fb) 35.39/13.72 new_lt19(xuu4910, xuu5110, ty_Double) -> new_lt15(xuu4910, xuu5110) 35.39/13.72 new_ltEs9(Nothing, Nothing, dcb) -> True 35.39/13.72 new_esEs13(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.72 new_lt12(xuu4910, xuu5110, app(app(ty_Either, gf), gg)) -> new_lt9(xuu4910, xuu5110, gf, gg) 35.39/13.72 new_ltEs5(Left(xuu4910), Left(xuu5110), app(ty_Ratio, bff), dg) -> new_ltEs15(xuu4910, xuu5110, bff) 35.39/13.72 new_esEs29(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.39/13.72 new_lt9(xuu490, xuu510, bag, bah) -> new_esEs8(new_compare15(xuu490, xuu510, bag, bah), LT) 35.39/13.72 new_ltEs4(GT, GT) -> True 35.39/13.72 new_ltEs17(True, True) -> True 35.39/13.72 new_compare113(xuu490, xuu510, False, bfc, bfd, bfe) -> GT 35.39/13.72 new_asAs(False, xuu72) -> False 35.39/13.72 new_compare18(xuu4900, xuu5100, app(app(ty_@2, bf), bg)) -> new_compare6(xuu4900, xuu5100, bf, bg) 35.39/13.72 new_lt20(xuu4911, xuu5111, ty_Ordering) -> new_lt6(xuu4911, xuu5111) 35.39/13.72 new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs14(xuu3110001, xuu6001) 35.39/13.72 new_esEs24(xuu3110000, xuu6000, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.39/13.72 new_esEs12(xuu3110001, xuu6001, ty_Integer) -> new_esEs16(xuu3110001, xuu6001) 35.39/13.72 new_esEs8(EQ, GT) -> False 35.39/13.72 new_esEs8(GT, EQ) -> False 35.39/13.72 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.39/13.72 new_lt19(xuu4910, xuu5110, ty_Char) -> new_lt17(xuu4910, xuu5110) 35.39/13.72 new_lt20(xuu4911, xuu5111, ty_Double) -> new_lt15(xuu4911, xuu5111) 35.39/13.72 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.39/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Double, cfa) -> new_esEs15(xuu3110000, xuu6000) 35.39/13.72 new_ltEs14(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), he, gd) -> new_pePe(new_lt12(xuu4910, xuu5110, he), new_asAs(new_esEs25(xuu4910, xuu5110, he), new_ltEs18(xuu4911, xuu5111, gd))) 35.39/13.72 new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 35.39/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, cfb), cfc), cfd), cfa) -> new_esEs7(xuu3110000, xuu6000, cfb, cfc, cfd) 35.39/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Char, cfa) -> new_esEs17(xuu3110000, xuu6000) 35.39/13.72 35.39/13.72 The set Q consists of the following terms: 35.39/13.72 35.39/13.72 new_primCmpNat0(Succ(x0), Zero) 35.39/13.72 new_lt21(x0, x1, ty_Integer) 35.39/13.72 new_esEs8(EQ, EQ) 35.39/13.72 new_primCompAux00(x0, LT) 35.39/13.72 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.72 new_primCmpNat2(x0, Succ(x1)) 35.39/13.72 new_lt12(x0, x1, ty_Integer) 35.39/13.72 new_esEs4(Just(x0), Just(x1), ty_Ordering) 35.39/13.72 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 35.39/13.72 new_esEs29(x0, x1, ty_Char) 35.39/13.72 new_esEs4(Just(x0), Just(x1), ty_Double) 35.39/13.72 new_ltEs19(x0, x1, ty_Int) 35.39/13.72 new_esEs11(x0, x1, ty_Bool) 35.39/13.72 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 35.39/13.72 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 35.39/13.72 new_compare13(x0, x1, False, x2) 35.39/13.72 new_lt20(x0, x1, ty_Int) 35.39/13.72 new_esEs13(x0, x1, ty_Ordering) 35.39/13.72 new_ltEs4(LT, LT) 35.39/13.72 new_lt6(x0, x1) 35.39/13.72 new_ltEs9(Just(x0), Just(x1), ty_Float) 35.39/13.72 new_compare6(x0, x1, x2, x3) 35.39/13.72 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.72 new_ltEs18(x0, x1, ty_Double) 35.39/13.72 new_esEs12(x0, x1, ty_Char) 35.39/13.72 new_esEs13(x0, x1, ty_Int) 35.39/13.72 new_esEs22(x0, x1, app(ty_Ratio, x2)) 35.39/13.72 new_lt20(x0, x1, ty_Char) 35.39/13.72 new_esEs4(Just(x0), Just(x1), ty_Int) 35.39/13.72 new_lt14(x0, x1, x2) 35.39/13.72 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.72 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 35.39/13.72 new_lt8(x0, x1) 35.39/13.72 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 35.39/13.72 new_primEqInt(Pos(Zero), Pos(Zero)) 35.39/13.72 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 35.39/13.72 new_ltEs20(x0, x1, ty_Float) 35.39/13.72 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.72 new_lt10(x0, x1) 35.39/13.72 new_ltEs18(x0, x1, ty_Int) 35.39/13.72 new_lt12(x0, x1, app(ty_[], x2)) 35.39/13.72 new_esEs11(x0, x1, ty_Integer) 35.39/13.72 new_asAs(False, x0) 35.39/13.72 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 35.39/13.72 new_lt12(x0, x1, ty_@0) 35.39/13.72 new_esEs14(True, True) 35.39/13.72 new_ltEs18(x0, x1, ty_Ordering) 35.39/13.72 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 35.39/13.72 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 35.39/13.72 new_esEs28(x0, x1, ty_Integer) 35.39/13.72 new_primEqNat0(Zero, Succ(x0)) 35.39/13.72 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 35.39/13.72 new_ltEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 35.39/13.72 new_ltEs19(x0, x1, ty_Ordering) 35.39/13.72 new_esEs20([], [], x0) 35.39/13.72 new_esEs13(x0, x1, app(ty_Ratio, x2)) 35.39/13.72 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 35.39/13.72 new_esEs25(x0, x1, ty_Float) 35.39/13.72 new_primEqInt(Neg(Zero), Neg(Zero)) 35.39/13.72 new_compare18(x0, x1, ty_Float) 35.39/13.72 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 35.39/13.72 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 35.39/13.72 new_esEs12(x0, x1, ty_Bool) 35.39/13.72 new_compare18(x0, x1, ty_Integer) 35.39/13.72 new_esEs11(x0, x1, ty_@0) 35.39/13.72 new_esEs26(x0, x1, ty_Float) 35.39/13.72 new_esEs29(x0, x1, app(ty_Maybe, x2)) 35.39/13.72 new_compare25(x0, x1, False, x2) 35.39/13.72 new_esEs28(x0, x1, ty_Float) 35.39/13.72 new_compare113(x0, x1, True, x2, x3, x4) 35.39/13.72 new_esEs28(x0, x1, app(ty_[], x2)) 35.39/13.72 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 35.39/13.72 new_pePe(True, x0) 35.39/13.72 new_esEs12(x0, x1, ty_Ordering) 35.39/13.72 new_compare27(x0, x1, True, x2, x3) 35.39/13.72 new_compare28(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 35.39/13.72 new_compare28(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 35.39/13.72 new_compare28(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 35.39/13.72 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.72 new_compare0([], [], x0) 35.39/13.72 new_esEs4(Nothing, Nothing, x0) 35.39/13.72 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.72 new_esEs28(x0, x1, ty_Bool) 35.39/13.72 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 35.39/13.72 new_esEs14(False, True) 35.39/13.72 new_esEs14(True, False) 35.39/13.72 new_ltEs18(x0, x1, app(ty_[], x2)) 35.39/13.72 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.72 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 35.39/13.72 new_esEs20([], :(x0, x1), x2) 35.39/13.72 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 35.39/13.72 new_ltEs17(True, True) 35.39/13.72 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.72 new_lt12(x0, x1, app(ty_Ratio, x2)) 35.39/13.72 new_esEs11(x0, x1, ty_Char) 35.39/13.72 new_lt20(x0, x1, ty_Double) 35.39/13.72 new_esEs28(x0, x1, ty_@0) 35.39/13.72 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 35.39/13.72 new_esEs11(x0, x1, app(ty_Maybe, x2)) 35.39/13.72 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.72 new_ltEs19(x0, x1, ty_Double) 35.39/13.72 new_esEs27(x0, x1, app(ty_Ratio, x2)) 35.39/13.72 new_primCmpNat0(Succ(x0), Succ(x1)) 35.39/13.72 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.72 new_primEqInt(Pos(Zero), Neg(Zero)) 35.39/13.72 new_primEqInt(Neg(Zero), Pos(Zero)) 35.39/13.72 new_primPlusNat1(Zero, x0) 35.39/13.72 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 35.39/13.72 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 35.39/13.72 new_ltEs19(x0, x1, ty_Char) 35.39/13.72 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 35.39/13.72 new_esEs12(x0, x1, ty_Integer) 35.39/13.72 new_esEs27(x0, x1, ty_Integer) 35.39/13.72 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 35.39/13.72 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 35.39/13.72 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.72 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 35.39/13.72 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.72 new_ltEs4(GT, EQ) 35.39/13.72 new_ltEs4(EQ, GT) 35.39/13.72 new_esEs21(x0, x1, app(ty_Ratio, x2)) 35.39/13.72 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 35.39/13.72 new_lt20(x0, x1, ty_@0) 35.39/13.72 new_esEs10(x0, x1) 35.39/13.72 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 35.39/13.72 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.72 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 35.39/13.72 new_esEs29(x0, x1, ty_Ordering) 35.39/13.72 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.72 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 35.39/13.72 new_ltEs19(x0, x1, ty_Bool) 35.39/13.72 new_primPlusNat0(Zero, Succ(x0)) 35.39/13.72 new_primEqNat0(Succ(x0), Succ(x1)) 35.39/13.72 new_primMulInt(Neg(x0), Neg(x1)) 35.39/13.72 new_ltEs18(x0, x1, ty_@0) 35.39/13.72 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.72 new_esEs11(x0, x1, ty_Float) 35.39/13.72 new_esEs9(@0, @0) 35.39/13.72 new_esEs4(Just(x0), Just(x1), ty_Bool) 35.39/13.72 new_esEs15(Double(x0, x1), Double(x2, x3)) 35.39/13.72 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.72 new_primPlusNat1(Succ(x0), x1) 35.39/13.72 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 35.39/13.72 new_lt4(x0, x1, x2, x3) 35.39/13.72 new_esEs27(x0, x1, ty_Bool) 35.39/13.72 new_esEs4(Just(x0), Nothing, x1) 35.39/13.72 new_compare29(Char(x0), Char(x1)) 35.39/13.72 new_lt20(x0, x1, ty_Integer) 35.39/13.72 new_lt21(x0, x1, ty_Int) 35.39/13.72 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 35.39/13.72 new_compare24(x0, x1, True) 35.39/13.72 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.72 new_ltEs9(Just(x0), Just(x1), ty_Bool) 35.39/13.72 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 35.39/13.72 new_ltEs4(EQ, LT) 35.39/13.72 new_ltEs4(LT, EQ) 35.39/13.72 new_compare11(Integer(x0), Integer(x1)) 35.39/13.72 new_compare18(x0, x1, ty_@0) 35.39/13.72 new_ltEs5(Left(x0), Right(x1), x2, x3) 35.39/13.72 new_ltEs5(Right(x0), Left(x1), x2, x3) 35.39/13.72 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 35.39/13.72 new_ltEs4(GT, GT) 35.39/13.72 new_lt12(x0, x1, app(ty_Maybe, x2)) 35.39/13.72 new_esEs13(x0, x1, app(ty_Maybe, x2)) 35.39/13.72 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 35.39/13.72 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 35.39/13.72 new_lt20(x0, x1, ty_Bool) 35.39/13.72 new_esEs21(x0, x1, ty_Double) 35.39/13.72 new_esEs25(x0, x1, ty_@0) 35.39/13.72 new_lt21(x0, x1, app(ty_Maybe, x2)) 35.39/13.72 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 35.39/13.72 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 35.39/13.72 new_esEs11(x0, x1, ty_Int) 35.39/13.72 new_ltEs19(x0, x1, ty_@0) 35.39/13.72 new_compare26(x0, x1, True, x2, x3, x4) 35.39/13.72 new_lt19(x0, x1, ty_Int) 35.39/13.72 new_primMulNat0(Zero, Succ(x0)) 35.39/13.72 new_lt21(x0, x1, app(ty_Ratio, x2)) 35.39/13.72 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 35.39/13.72 new_ltEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) 35.39/13.72 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 35.39/13.72 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 35.39/13.72 new_ltEs6(x0, x1) 35.39/13.72 new_ltEs13(x0, x1) 35.39/13.72 new_primMulNat0(Succ(x0), Succ(x1)) 35.39/13.72 new_esEs12(x0, x1, app(ty_Maybe, x2)) 35.39/13.72 new_esEs26(x0, x1, app(ty_Maybe, x2)) 35.39/13.72 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 35.39/13.72 new_ltEs19(x0, x1, ty_Integer) 35.39/13.72 new_ltEs20(x0, x1, app(ty_[], x2)) 35.39/13.72 new_esEs8(GT, GT) 35.39/13.72 new_lt19(x0, x1, ty_Float) 35.39/13.72 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.39/13.72 new_esEs8(LT, EQ) 35.39/13.72 new_esEs8(EQ, LT) 35.39/13.72 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 35.39/13.72 new_esEs28(x0, x1, app(ty_Ratio, x2)) 35.62/13.72 new_esEs28(x0, x1, app(ty_Maybe, x2)) 35.62/13.72 new_esEs26(x0, x1, ty_Integer) 35.62/13.72 new_esEs13(x0, x1, ty_Integer) 35.62/13.72 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 35.62/13.72 new_primCmpInt(Neg(Zero), Neg(Zero)) 35.62/13.72 new_compare27(x0, x1, False, x2, x3) 35.62/13.72 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 35.62/13.72 new_esEs22(x0, x1, ty_Integer) 35.62/13.72 new_esEs29(x0, x1, ty_Double) 35.62/13.72 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 35.62/13.72 new_compare110(x0, x1, x2, x3, True, x4, x5) 35.62/13.72 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 35.62/13.72 new_compare211(@2(x0, x1), @2(x2, x3), False, x4, x5) 35.62/13.72 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 35.62/13.72 new_esEs29(x0, x1, ty_@0) 35.62/13.72 new_esEs8(LT, LT) 35.62/13.72 new_primCmpInt(Pos(Zero), Neg(Zero)) 35.62/13.72 new_primCmpInt(Neg(Zero), Pos(Zero)) 35.62/13.72 new_ltEs9(Just(x0), Just(x1), ty_Char) 35.62/13.72 new_esEs26(x0, x1, ty_Ordering) 35.62/13.72 new_primMulInt(Pos(x0), Neg(x1)) 35.62/13.72 new_primMulInt(Neg(x0), Pos(x1)) 35.62/13.72 new_esEs4(Just(x0), Just(x1), ty_Char) 35.62/13.72 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_lt20(x0, x1, app(ty_[], x2)) 35.62/13.72 new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 35.62/13.72 new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 35.62/13.72 new_compare14(x0, x1, x2, x3, x4) 35.62/13.72 new_esEs26(x0, x1, app(ty_[], x2)) 35.62/13.72 new_ltEs17(True, False) 35.62/13.72 new_ltEs17(False, True) 35.62/13.72 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 35.62/13.72 new_lt21(x0, x1, ty_Float) 35.62/13.72 new_compare9(x0, x1) 35.62/13.72 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 35.62/13.72 new_esEs12(x0, x1, ty_Double) 35.62/13.72 new_lt21(x0, x1, ty_Bool) 35.62/13.72 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 35.62/13.72 new_lt12(x0, x1, ty_Double) 35.62/13.72 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 35.62/13.72 new_lt13(x0, x1) 35.62/13.72 new_ltEs9(Just(x0), Just(x1), ty_Integer) 35.62/13.72 new_primMulInt(Pos(x0), Pos(x1)) 35.62/13.72 new_esEs28(x0, x1, ty_Ordering) 35.62/13.72 new_compare15(x0, x1, x2, x3) 35.62/13.72 new_esEs21(x0, x1, app(ty_Maybe, x2)) 35.62/13.72 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 35.62/13.72 new_esEs22(x0, x1, ty_Ordering) 35.62/13.72 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 35.62/13.72 new_compare10(x0, x1, True) 35.62/13.72 new_asAs(True, x0) 35.62/13.72 new_primCompAux00(x0, GT) 35.62/13.72 new_esEs25(x0, x1, ty_Double) 35.62/13.72 new_esEs25(x0, x1, app(ty_Maybe, x2)) 35.62/13.72 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 35.62/13.72 new_compare18(x0, x1, ty_Double) 35.62/13.72 new_esEs13(x0, x1, ty_Char) 35.62/13.72 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.72 new_esEs23(x0, x1, ty_Int) 35.62/13.72 new_esEs27(x0, x1, ty_Float) 35.62/13.72 new_lt21(x0, x1, ty_Char) 35.62/13.72 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 35.62/13.72 new_compare112(x0, x1, False) 35.62/13.72 new_esEs12(x0, x1, ty_@0) 35.62/13.72 new_esEs13(x0, x1, ty_Bool) 35.62/13.72 new_lt20(x0, x1, ty_Ordering) 35.62/13.72 new_esEs22(x0, x1, app(ty_[], x2)) 35.62/13.72 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.72 new_esEs27(x0, x1, ty_Ordering) 35.62/13.72 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 35.62/13.72 new_esEs4(Just(x0), Just(x1), ty_Float) 35.62/13.72 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 35.62/13.72 new_ltEs20(x0, x1, ty_Int) 35.62/13.72 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 35.62/13.72 new_ltEs9(Just(x0), Just(x1), ty_Double) 35.62/13.72 new_ltEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) 35.62/13.72 new_lt19(x0, x1, ty_@0) 35.62/13.72 new_esEs26(x0, x1, ty_Char) 35.62/13.72 new_ltEs18(x0, x1, ty_Float) 35.62/13.72 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_esEs17(Char(x0), Char(x1)) 35.62/13.72 new_lt19(x0, x1, app(ty_[], x2)) 35.62/13.72 new_primMulNat0(Zero, Zero) 35.62/13.72 new_esEs22(x0, x1, ty_@0) 35.62/13.72 new_ltEs15(x0, x1, x2) 35.62/13.72 new_esEs4(Nothing, Just(x0), x1) 35.62/13.72 new_esEs25(x0, x1, ty_Int) 35.62/13.72 new_esEs27(x0, x1, ty_Int) 35.62/13.72 new_esEs26(x0, x1, ty_Int) 35.62/13.72 new_compare17(x0, x1, False, x2, x3) 35.62/13.72 new_primCmpNat1(Succ(x0), x1) 35.62/13.72 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 35.62/13.72 new_esEs20(:(x0, x1), [], x2) 35.62/13.72 new_compare16(@0, @0) 35.62/13.72 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.72 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 35.62/13.72 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 35.62/13.72 new_ltEs20(x0, x1, ty_Ordering) 35.62/13.72 new_compare18(x0, x1, ty_Ordering) 35.62/13.72 new_esEs23(x0, x1, ty_Integer) 35.62/13.72 new_ltEs19(x0, x1, ty_Float) 35.62/13.72 new_compare18(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_primCmpNat0(Zero, Succ(x0)) 35.62/13.72 new_esEs27(x0, x1, app(ty_Maybe, x2)) 35.62/13.72 new_esEs21(x0, x1, ty_Bool) 35.62/13.72 new_lt19(x0, x1, app(ty_Ratio, x2)) 35.62/13.72 new_lt19(x0, x1, ty_Integer) 35.62/13.72 new_compare111(x0, x1, x2, x3, False, x4, x5, x6) 35.62/13.72 new_compare24(x0, x1, False) 35.62/13.72 new_esEs27(x0, x1, ty_Double) 35.62/13.72 new_ltEs9(Just(x0), Just(x1), ty_Int) 35.62/13.72 new_esEs25(x0, x1, ty_Ordering) 35.62/13.72 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 35.62/13.72 new_esEs27(x0, x1, ty_Char) 35.62/13.72 new_esEs29(x0, x1, app(ty_Ratio, x2)) 35.62/13.72 new_compare18(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.72 new_primPlusNat0(Succ(x0), Succ(x1)) 35.62/13.72 new_compare210(x0, x1, False) 35.62/13.72 new_ltEs9(Just(x0), Just(x1), ty_Ordering) 35.62/13.72 new_sr0(Integer(x0), Integer(x1)) 35.62/13.72 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 35.62/13.72 new_lt5(x0, x1) 35.62/13.72 new_esEs24(x0, x1, ty_Int) 35.62/13.72 new_primPlusNat0(Zero, Zero) 35.62/13.72 new_ltEs4(LT, GT) 35.62/13.72 new_ltEs4(GT, LT) 35.62/13.72 new_lt17(x0, x1) 35.62/13.72 new_esEs13(x0, x1, ty_Float) 35.62/13.72 new_compare18(x0, x1, app(ty_[], x2)) 35.62/13.72 new_not(True) 35.62/13.72 new_esEs28(x0, x1, ty_Double) 35.62/13.72 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 35.62/13.72 new_compare113(x0, x1, False, x2, x3, x4) 35.62/13.72 new_esEs26(x0, x1, ty_Bool) 35.62/13.72 new_lt19(x0, x1, ty_Char) 35.62/13.72 new_esEs21(x0, x1, app(ty_[], x2)) 35.62/13.72 new_esEs26(x0, x1, ty_@0) 35.62/13.72 new_esEs8(EQ, GT) 35.62/13.72 new_esEs8(GT, EQ) 35.62/13.72 new_pePe(False, x0) 35.62/13.72 new_esEs25(x0, x1, app(ty_Ratio, x2)) 35.62/13.72 new_esEs22(x0, x1, ty_Int) 35.62/13.72 new_lt15(x0, x1) 35.62/13.72 new_primCmpNat1(Zero, x0) 35.62/13.72 new_esEs26(x0, x1, ty_Double) 35.62/13.72 new_ltEs12(x0, x1) 35.62/13.72 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.72 new_compare0(:(x0, x1), [], x2) 35.62/13.72 new_esEs21(x0, x1, ty_@0) 35.62/13.72 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 35.62/13.72 new_ltEs9(Nothing, Nothing, x0) 35.62/13.72 new_ltEs20(x0, x1, ty_@0) 35.62/13.72 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 35.62/13.72 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 35.62/13.72 new_lt20(x0, x1, ty_Float) 35.62/13.72 new_compare10(x0, x1, False) 35.62/13.72 new_ltEs20(x0, x1, ty_Bool) 35.62/13.72 new_esEs22(x0, x1, ty_Bool) 35.62/13.72 new_esEs21(x0, x1, ty_Float) 35.62/13.72 new_lt21(x0, x1, ty_Ordering) 35.62/13.72 new_esEs28(x0, x1, ty_Int) 35.62/13.72 new_compare12(x0, x1) 35.62/13.72 new_primEqNat0(Succ(x0), Zero) 35.62/13.72 new_lt20(x0, x1, app(ty_Maybe, x2)) 35.62/13.72 new_ltEs4(EQ, EQ) 35.62/13.72 new_esEs26(x0, x1, app(ty_Ratio, x2)) 35.62/13.72 new_compare0([], :(x0, x1), x2) 35.62/13.72 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.72 new_esEs12(x0, x1, app(ty_[], x2)) 35.62/13.72 new_esEs22(x0, x1, ty_Char) 35.62/13.72 new_esEs5(Left(x0), Right(x1), x2, x3) 35.62/13.72 new_esEs5(Right(x0), Left(x1), x2, x3) 35.62/13.72 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 35.62/13.72 new_compare210(x0, x1, True) 35.62/13.72 new_ltEs20(x0, x1, ty_Char) 35.62/13.72 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 35.62/13.72 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 35.62/13.72 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.72 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 35.62/13.72 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 35.62/13.72 new_esEs28(x0, x1, ty_Char) 35.62/13.72 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 35.62/13.72 new_compare26(x0, x1, False, x2, x3, x4) 35.62/13.72 new_esEs4(Just(x0), Just(x1), ty_Integer) 35.62/13.72 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.72 new_esEs22(x0, x1, ty_Double) 35.62/13.72 new_esEs22(x0, x1, app(ty_Maybe, x2)) 35.62/13.72 new_ltEs20(x0, x1, ty_Double) 35.62/13.72 new_primCmpInt(Pos(Zero), Pos(Zero)) 35.62/13.72 new_lt19(x0, x1, ty_Bool) 35.62/13.72 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 35.62/13.72 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 35.62/13.72 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_esEs12(x0, x1, app(ty_Ratio, x2)) 35.62/13.72 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 35.62/13.72 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 35.62/13.72 new_lt19(x0, x1, ty_Double) 35.62/13.72 new_ltEs19(x0, x1, app(ty_[], x2)) 35.62/13.72 new_lt12(x0, x1, ty_Int) 35.62/13.72 new_ltEs9(Just(x0), Just(x1), ty_@0) 35.62/13.72 new_sr(x0, x1) 35.62/13.72 new_compare7(x0, x1) 35.62/13.72 new_ltEs20(x0, x1, ty_Integer) 35.62/13.72 new_compare18(x0, x1, app(ty_Maybe, x2)) 35.62/13.72 new_lt18(x0, x1, x2) 35.62/13.72 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.72 new_compare17(x0, x1, True, x2, x3) 35.62/13.72 new_compare111(x0, x1, x2, x3, True, x4, x5, x6) 35.62/13.72 new_esEs21(x0, x1, ty_Ordering) 35.62/13.72 new_lt12(x0, x1, ty_Char) 35.62/13.72 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.72 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 35.62/13.72 new_esEs4(Just(x0), Just(x1), ty_@0) 35.62/13.72 new_esEs21(x0, x1, ty_Int) 35.62/13.72 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.72 new_esEs27(x0, x1, ty_@0) 35.62/13.72 new_esEs13(x0, x1, app(ty_[], x2)) 35.62/13.72 new_esEs8(LT, GT) 35.62/13.72 new_esEs8(GT, LT) 35.62/13.72 new_esEs29(x0, x1, ty_Integer) 35.62/13.72 new_lt19(x0, x1, app(ty_Maybe, x2)) 35.62/13.72 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.72 new_compare13(x0, x1, True, x2) 35.62/13.72 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_esEs11(x0, x1, ty_Double) 35.62/13.72 new_ltEs10(x0, x1) 35.62/13.72 new_fsEs(x0) 35.62/13.72 new_ltEs9(Just(x0), Nothing, x1) 35.62/13.72 new_lt12(x0, x1, ty_Float) 35.62/13.72 new_esEs27(x0, x1, app(ty_[], x2)) 35.62/13.72 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 35.62/13.72 new_esEs21(x0, x1, ty_Char) 35.62/13.72 new_esEs22(x0, x1, ty_Float) 35.62/13.72 new_compare19(x0, x1, x2) 35.62/13.72 new_esEs19(Float(x0, x1), Float(x2, x3)) 35.62/13.72 new_ltEs9(Just(x0), Just(x1), app(ty_[], x2)) 35.62/13.72 new_esEs13(x0, x1, ty_@0) 35.62/13.72 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 35.62/13.72 new_lt20(x0, x1, app(ty_Ratio, x2)) 35.62/13.72 new_lt19(x0, x1, ty_Ordering) 35.62/13.72 new_esEs25(x0, x1, app(ty_[], x2)) 35.62/13.72 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 35.62/13.72 new_esEs25(x0, x1, ty_Integer) 35.62/13.72 new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 35.62/13.72 new_esEs11(x0, x1, app(ty_Ratio, x2)) 35.62/13.72 new_ltEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 35.62/13.72 new_compare112(x0, x1, True) 35.62/13.72 new_lt12(x0, x1, ty_Ordering) 35.62/13.72 new_compare211(x0, x1, True, x2, x3) 35.62/13.72 new_compare0(:(x0, x1), :(x2, x3), x4) 35.62/13.72 new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 35.62/13.72 new_esEs11(x0, x1, ty_Ordering) 35.62/13.72 new_primEqNat0(Zero, Zero) 35.62/13.72 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.72 new_compare25(x0, x1, True, x2) 35.62/13.72 new_esEs29(x0, x1, ty_Float) 35.62/13.72 new_esEs29(x0, x1, ty_Bool) 35.62/13.72 new_compare110(x0, x1, x2, x3, False, x4, x5) 35.62/13.72 new_esEs29(x0, x1, app(ty_[], x2)) 35.62/13.72 new_compare28(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 35.62/13.72 new_not(False) 35.62/13.72 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 35.62/13.72 new_ltEs18(x0, x1, ty_Integer) 35.62/13.72 new_ltEs17(False, False) 35.62/13.72 new_compare18(x0, x1, ty_Char) 35.62/13.72 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 35.62/13.72 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 35.62/13.72 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.72 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 35.62/13.72 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 35.62/13.72 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.72 new_lt21(x0, x1, app(ty_[], x2)) 35.62/13.72 new_lt21(x0, x1, ty_@0) 35.62/13.72 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 35.62/13.72 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 35.62/13.72 new_lt16(x0, x1) 35.62/13.72 new_esEs14(False, False) 35.62/13.72 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 35.62/13.72 new_lt11(x0, x1, x2) 35.62/13.72 new_compare18(x0, x1, ty_Int) 35.62/13.72 new_compare18(x0, x1, app(ty_Ratio, x2)) 35.62/13.72 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_esEs11(x0, x1, app(ty_[], x2)) 35.62/13.72 new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.72 new_ltEs8(x0, x1) 35.62/13.72 new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 35.62/13.72 new_esEs24(x0, x1, ty_Integer) 35.62/13.72 new_ltEs18(x0, x1, ty_Char) 35.62/13.72 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 35.62/13.72 new_esEs25(x0, x1, ty_Char) 35.62/13.72 new_primCompAux0(x0, x1, x2, x3) 35.62/13.72 new_ltEs9(Nothing, Just(x0), x1) 35.62/13.72 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.72 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_ltEs7(x0, x1, x2) 35.62/13.72 new_primCompAux00(x0, EQ) 35.62/13.72 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 35.62/13.72 new_compare18(x0, x1, ty_Bool) 35.62/13.72 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.72 new_esEs12(x0, x1, ty_Int) 35.62/13.72 new_ltEs11(x0, x1) 35.62/13.72 new_esEs20(:(x0, x1), :(x2, x3), x4) 35.62/13.72 new_esEs13(x0, x1, ty_Double) 35.62/13.72 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 35.62/13.72 new_lt12(x0, x1, ty_Bool) 35.62/13.72 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 35.62/13.72 new_esEs21(x0, x1, ty_Integer) 35.62/13.72 new_primCmpNat2(x0, Zero) 35.62/13.72 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.72 new_esEs16(Integer(x0), Integer(x1)) 35.62/13.72 new_ltEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 35.62/13.72 new_esEs12(x0, x1, ty_Float) 35.62/13.72 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 35.62/13.72 new_lt21(x0, x1, ty_Double) 35.62/13.72 new_ltEs18(x0, x1, ty_Bool) 35.62/13.72 new_primMulNat0(Succ(x0), Zero) 35.62/13.72 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 35.62/13.72 new_lt7(x0, x1, x2, x3, x4) 35.62/13.72 new_primPlusNat0(Succ(x0), Zero) 35.62/13.72 new_primCmpNat0(Zero, Zero) 35.62/13.72 new_esEs25(x0, x1, ty_Bool) 35.62/13.72 new_esEs29(x0, x1, ty_Int) 35.62/13.72 new_lt9(x0, x1, x2, x3) 35.62/13.72 35.62/13.72 We have to consider all minimal (P,Q,R)-chains. 35.62/13.72 ---------------------------------------- 35.62/13.72 35.62/13.72 (29) QDPSizeChangeProof (EQUIVALENT) 35.62/13.72 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 35.62/13.72 35.62/13.72 From the DPs we obtained the following set of size-change graphs: 35.62/13.72 *new_ltEs0(Just(xuu4910), Just(xuu5110), app(app(app(ty_@3, dc), dd), de)) -> new_ltEs3(xuu4910, xuu5110, dc, dd, de) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs0(Just(xuu4910), Just(xuu5110), app(ty_Maybe, ce)) -> new_ltEs0(xuu4910, xuu5110, ce) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, bbe, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs3(xuu4912, xuu5112, beg, beh, bfa) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, bbe, app(ty_Maybe, beb)) -> new_ltEs0(xuu4912, xuu5112, beb) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs0(Just(xuu4910), Just(xuu5110), app(ty_[], cd)) -> new_ltEs(xuu4910, xuu5110, cd) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, bbe, app(ty_[], bea)) -> new_ltEs(xuu4912, xuu5112, bea) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs(xuu491, xuu511, h) -> new_compare(xuu491, xuu511, h) 35.62/13.72 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_lt2(xuu490, xuu510, bba, bbb) -> new_compare22(xuu490, xuu510, new_esEs6(xuu490, xuu510, bba, bbb), bba, bbb) 35.62/13.72 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs0(Just(xuu4910), Just(xuu5110), app(app(ty_Either, cf), cg)) -> new_ltEs1(xuu4910, xuu5110, cf, cg) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs0(Just(xuu4910), Just(xuu5110), app(app(ty_@2, da), db)) -> new_ltEs2(xuu4910, xuu5110, da, db) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, bbe, app(app(ty_Either, bec), bed)) -> new_ltEs1(xuu4912, xuu5112, bec, bed) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, bbe, app(app(ty_@2, bee), bef)) -> new_ltEs2(xuu4912, xuu5112, bee, bef) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_lt1(xuu490, xuu510, bag, bah) -> new_compare21(xuu490, xuu510, new_esEs5(xuu490, xuu510, bag, bah), bag, bah) 35.62/13.72 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), he, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs3(xuu4911, xuu5111, bad, bae, baf) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), he, app(ty_Maybe, hg)) -> new_ltEs0(xuu4911, xuu5111, hg) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), he, app(ty_[], hf)) -> new_ltEs(xuu4911, xuu5111, hf) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), he, app(app(ty_Either, hh), baa)) -> new_ltEs1(xuu4911, xuu5111, hh, baa) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), he, app(app(ty_@2, bab), bac)) -> new_ltEs2(xuu4911, xuu5111, bab, bac) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_lt0(xuu490, xuu510, cc) -> new_compare20(xuu490, xuu510, new_esEs4(xuu490, xuu510, cc), cc) 35.62/13.72 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_lt3(xuu490, xuu510, bfc, bfd, bfe) -> new_compare23(xuu490, xuu510, new_esEs7(xuu490, xuu510, bfc, bfd, bfe), bfc, bfd, bfe) 35.62/13.72 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare3(xuu490, xuu510, bba, bbb) -> new_compare22(xuu490, xuu510, new_esEs6(xuu490, xuu510, bba, bbb), bba, bbb) 35.62/13.72 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, xuu491), @2(xuu510, xuu511), False, app(app(ty_@2, bba), bbb), bfb) -> new_compare22(xuu490, xuu510, new_esEs6(xuu490, xuu510, bba, bbb), bba, bbb) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare(:(xuu4900, xuu4901), :(xuu5100, xuu5101), ba) -> new_primCompAux(xuu4900, xuu5100, new_compare0(xuu4901, xuu5101, ba), ba) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare(:(xuu4900, xuu4901), :(xuu5100, xuu5101), ba) -> new_compare(xuu4901, xuu5101, ba) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_lt(:(xuu4900, xuu4901), :(xuu5100, xuu5101), ba) -> new_primCompAux(xuu4900, xuu5100, new_compare0(xuu4901, xuu5101, ba), ba) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_lt(:(xuu4900, xuu4901), :(xuu5100, xuu5101), ba) -> new_compare(xuu4901, xuu5101, ba) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(:(xuu4900, xuu4901), xuu491), @2(:(xuu5100, xuu5101), xuu511), False, app(ty_[], ba), bfb) -> new_primCompAux(xuu4900, xuu5100, new_compare0(xuu4901, xuu5101, ba), ba) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare23(xuu490, xuu510, False, bfc, bfd, bfe) -> new_ltEs3(xuu490, xuu510, bfc, bfd, bfe) 35.62/13.72 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare20(xuu490, xuu510, False, cc) -> new_ltEs0(xuu490, xuu510, cc) 35.62/13.72 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare21(xuu490, xuu510, False, bag, bah) -> new_ltEs1(xuu490, xuu510, bag, bah) 35.62/13.72 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(app(ty_@2, gh), ha), gd) -> new_lt2(xuu4910, xuu5110, gh, ha) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_primCompAux(xuu4900, xuu5100, xuu146, app(app(ty_Either, bd), be)) -> new_compare2(xuu4900, xuu5100, bd, be) 35.62/13.72 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(ty_[], gc), gd) -> new_lt(xuu4910, xuu5110, gc) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, xuu491), @2(xuu510, xuu511), False, app(app(ty_Either, bag), bah), bfb) -> new_compare21(xuu490, xuu510, new_esEs5(xuu490, xuu510, bag, bah), bag, bah) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare2(xuu490, xuu510, bag, bah) -> new_compare21(xuu490, xuu510, new_esEs5(xuu490, xuu510, bag, bah), bag, bah) 35.62/13.72 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_primCompAux(xuu4900, xuu5100, xuu146, app(app(ty_@2, bf), bg)) -> new_compare3(xuu4900, xuu5100, bf, bg) 35.62/13.72 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare1(xuu490, xuu510, cc) -> new_compare20(xuu490, xuu510, new_esEs4(xuu490, xuu510, cc), cc) 35.62/13.72 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare4(xuu490, xuu510, bfc, bfd, bfe) -> new_compare23(xuu490, xuu510, new_esEs7(xuu490, xuu510, bfc, bfd, bfe), bfc, bfd, bfe) 35.62/13.72 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(ty_Maybe, ge), gd) -> new_lt0(xuu4910, xuu5110, ge) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_primCompAux(xuu4900, xuu5100, xuu146, app(ty_Maybe, bc)) -> new_compare1(xuu4900, xuu5100, bc) 35.62/13.72 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_primCompAux(xuu4900, xuu5100, xuu146, app(ty_[], bb)) -> new_compare(xuu4900, xuu5100, bb) 35.62/13.72 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_primCompAux(xuu4900, xuu5100, xuu146, app(app(app(ty_@3, bh), ca), cb)) -> new_compare4(xuu4900, xuu5100, bh, ca, cb) 35.62/13.72 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, xuu491), @2(xuu510, xuu511), False, app(ty_Maybe, cc), bfb) -> new_compare20(xuu490, xuu510, new_esEs4(xuu490, xuu510, cc), cc) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(app(app(ty_@3, hb), hc), hd), gd) -> new_lt3(xuu4910, xuu5110, hb, hc, hd) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs2(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), app(app(ty_Either, gf), gg), gd) -> new_lt1(xuu4910, xuu5110, gf, gg) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, xuu491), @2(xuu510, xuu511), False, app(app(app(ty_@3, bfc), bfd), bfe), bfb) -> new_compare23(xuu490, xuu510, new_esEs7(xuu490, xuu510, bfc, bfd, bfe), bfc, bfd, bfe) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs1(Left(xuu4910), Left(xuu5110), app(app(app(ty_@3, ee), ef), eg), dg) -> new_ltEs3(xuu4910, xuu5110, ee, ef, eg) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs1(Right(xuu4910), Right(xuu5110), eh, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs3(xuu4910, xuu5110, fh, ga, gb) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, bbc, app(app(ty_Either, eh), app(app(app(ty_@3, fh), ga), gb))) -> new_ltEs3(xuu4910, xuu5110, fh, ga, gb) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, bbc, app(ty_Maybe, app(app(app(ty_@3, dc), dd), de))) -> new_ltEs3(xuu4910, xuu5110, dc, dd, de) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), bbe), app(app(app(ty_@3, beg), beh), bfa))) -> new_ltEs3(xuu4912, xuu5112, beg, beh, bfa) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, bbc, app(app(ty_Either, app(app(app(ty_@3, ee), ef), eg)), dg)) -> new_ltEs3(xuu4910, xuu5110, ee, ef, eg) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, he), app(app(app(ty_@3, bad), bae), baf))) -> new_ltEs3(xuu4911, xuu5111, bad, bae, baf) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(app(ty_@2, bcb), bcc), bbe, bbf) -> new_lt2(xuu4910, xuu5110, bcb, bcc) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, app(app(ty_@2, bdd), bde), bbf) -> new_lt2(xuu4911, xuu5111, bdd, bde) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, app(ty_[], bch), bbf) -> new_lt(xuu4911, xuu5111, bch) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(ty_[], bbd), bbe, bbf) -> new_lt(xuu4910, xuu5110, bbd) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, app(ty_Maybe, bda), bbf) -> new_lt0(xuu4911, xuu5111, bda) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(ty_Maybe, bbg), bbe, bbf) -> new_lt0(xuu4910, xuu5110, bbg) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(app(app(ty_@3, bcd), bce), bcf), bbe, bbf) -> new_lt3(xuu4910, xuu5110, bcd, bce, bcf) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, app(app(app(ty_@3, bdf), bdg), bdh), bbf) -> new_lt3(xuu4911, xuu5111, bdf, bdg, bdh) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), app(app(ty_Either, bbh), bca), bbe, bbf) -> new_lt1(xuu4910, xuu5110, bbh, bca) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs3(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), bcg, app(app(ty_Either, bdb), bdc), bbf) -> new_lt1(xuu4911, xuu5111, bdb, bdc) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs1(Right(xuu4910), Right(xuu5110), eh, app(ty_Maybe, fb)) -> new_ltEs0(xuu4910, xuu5110, fb) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs1(Left(xuu4910), Left(xuu5110), app(ty_Maybe, dh), dg) -> new_ltEs0(xuu4910, xuu5110, dh) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, he), app(ty_Maybe, hg))) -> new_ltEs0(xuu4911, xuu5111, hg) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), bbe), app(ty_Maybe, beb))) -> new_ltEs0(xuu4912, xuu5112, beb) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, bbc, app(app(ty_Either, eh), app(ty_Maybe, fb))) -> new_ltEs0(xuu4910, xuu5110, fb) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, bbc, app(app(ty_Either, app(ty_Maybe, dh)), dg)) -> new_ltEs0(xuu4910, xuu5110, dh) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, bbc, app(ty_Maybe, app(ty_Maybe, ce))) -> new_ltEs0(xuu4910, xuu5110, ce) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs1(Right(xuu4910), Right(xuu5110), eh, app(ty_[], fa)) -> new_ltEs(xuu4910, xuu5110, fa) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs1(Left(xuu4910), Left(xuu5110), app(ty_[], df), dg) -> new_ltEs(xuu4910, xuu5110, df) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), bbe), app(ty_[], bea))) -> new_ltEs(xuu4912, xuu5112, bea) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, he), app(ty_[], hf))) -> new_ltEs(xuu4911, xuu5111, hf) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, bbc, app(app(ty_Either, app(ty_[], df)), dg)) -> new_ltEs(xuu4910, xuu5110, df) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, bbc, app(app(ty_Either, eh), app(ty_[], fa))) -> new_ltEs(xuu4910, xuu5110, fa) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, bbc, app(ty_Maybe, app(ty_[], cd))) -> new_ltEs(xuu4910, xuu5110, cd) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs1(Right(xuu4910), Right(xuu5110), eh, app(app(ty_Either, fc), fd)) -> new_ltEs1(xuu4910, xuu5110, fc, fd) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs1(Left(xuu4910), Left(xuu5110), app(app(ty_Either, ea), eb), dg) -> new_ltEs1(xuu4910, xuu5110, ea, eb) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, he), app(app(ty_Either, hh), baa))) -> new_ltEs1(xuu4911, xuu5111, hh, baa) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, bbc, app(app(ty_Either, app(app(ty_Either, ea), eb)), dg)) -> new_ltEs1(xuu4910, xuu5110, ea, eb) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, bbc, app(ty_Maybe, app(app(ty_Either, cf), cg))) -> new_ltEs1(xuu4910, xuu5110, cf, cg) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, bbc, app(app(ty_Either, eh), app(app(ty_Either, fc), fd))) -> new_ltEs1(xuu4910, xuu5110, fc, fd) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), bbe), app(app(ty_Either, bec), bed))) -> new_ltEs1(xuu4912, xuu5112, bec, bed) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs1(Right(xuu4910), Right(xuu5110), eh, app(app(ty_@2, ff), fg)) -> new_ltEs2(xuu4910, xuu5110, ff, fg) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_ltEs1(Left(xuu4910), Left(xuu5110), app(app(ty_@2, ec), ed), dg) -> new_ltEs2(xuu4910, xuu5110, ec, ed) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), bbe), app(app(ty_@2, bee), bef))) -> new_ltEs2(xuu4912, xuu5112, bee, bef) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, Just(xuu4910)), @2(xuu510, Just(xuu5110)), False, bbc, app(ty_Maybe, app(app(ty_@2, da), db))) -> new_ltEs2(xuu4910, xuu5110, da, db) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, he), app(app(ty_@2, bab), bac))) -> new_ltEs2(xuu4911, xuu5111, bab, bac) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, Left(xuu4910)), @2(xuu510, Left(xuu5110)), False, bbc, app(app(ty_Either, app(app(ty_@2, ec), ed)), dg)) -> new_ltEs2(xuu4910, xuu5110, ec, ed) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, Right(xuu4910)), @2(xuu510, Right(xuu5110)), False, bbc, app(app(ty_Either, eh), app(app(ty_@2, ff), fg))) -> new_ltEs2(xuu4910, xuu5110, ff, fg) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, app(app(ty_@2, gh), ha)), gd)) -> new_lt2(xuu4910, xuu5110, gh, ha) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), app(app(ty_@2, bdd), bde)), bbf)) -> new_lt2(xuu4911, xuu5111, bdd, bde) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, app(app(ty_@2, bcb), bcc)), bbe), bbf)) -> new_lt2(xuu4910, xuu5110, bcb, bcc) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), app(ty_[], bch)), bbf)) -> new_lt(xuu4911, xuu5111, bch) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, app(ty_[], gc)), gd)) -> new_lt(xuu4910, xuu5110, gc) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, app(ty_[], bbd)), bbe), bbf)) -> new_lt(xuu4910, xuu5110, bbd) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), app(ty_Maybe, bda)), bbf)) -> new_lt0(xuu4911, xuu5111, bda) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, app(ty_Maybe, ge)), gd)) -> new_lt0(xuu4910, xuu5110, ge) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, app(ty_Maybe, bbg)), bbe), bbf)) -> new_lt0(xuu4910, xuu5110, bbg) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(:(xuu4900, xuu4901), xuu491), @2(:(xuu5100, xuu5101), xuu511), False, app(ty_[], ba), bfb) -> new_compare(xuu4901, xuu5101, ba) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, xuu491), @2(xuu510, xuu511), False, bbc, app(ty_[], h)) -> new_compare(xuu491, xuu511, h) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), app(app(app(ty_@3, bdf), bdg), bdh)), bbf)) -> new_lt3(xuu4911, xuu5111, bdf, bdg, bdh) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, app(app(app(ty_@3, bcd), bce), bcf)), bbe), bbf)) -> new_lt3(xuu4910, xuu5110, bcd, bce, bcf) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, app(app(app(ty_@3, hb), hc), hd)), gd)) -> new_lt3(xuu4910, xuu5110, hb, hc, hd) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @2(xuu4910, xuu4911)), @2(xuu510, @2(xuu5110, xuu5111)), False, bbc, app(app(ty_@2, app(app(ty_Either, gf), gg)), gd)) -> new_lt1(xuu4910, xuu5110, gf, gg) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, bcg), app(app(ty_Either, bdb), bdc)), bbf)) -> new_lt1(xuu4911, xuu5111, bdb, bdc) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 *new_compare22(@2(xuu490, @3(xuu4910, xuu4911, xuu4912)), @2(xuu510, @3(xuu5110, xuu5111, xuu5112)), False, bbc, app(app(app(ty_@3, app(app(ty_Either, bbh), bca)), bbe), bbf)) -> new_lt1(xuu4910, xuu5110, bbh, bca) 35.62/13.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 35.62/13.72 35.62/13.72 35.62/13.72 ---------------------------------------- 35.62/13.72 35.62/13.72 (30) 35.62/13.72 YES 35.62/13.72 35.62/13.72 ---------------------------------------- 35.62/13.72 35.62/13.72 (31) 35.62/13.72 Obligation: 35.62/13.72 Q DP problem: 35.62/13.72 The TRS P consists of the following rules: 35.62/13.72 35.62/13.72 new_foldl(xuu6, :(xuu3110, xuu3111), h, ba, bb) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba, bb), xuu3111, h, ba, bb) 35.62/13.72 35.62/13.72 The TRS R consists of the following rules: 35.62/13.72 35.62/13.72 new_esEs28(xuu490, xuu510, app(ty_[], bcf)) -> new_esEs20(xuu490, xuu510, bcf) 35.62/13.72 new_esEs27(xuu4910, xuu5110, ty_Double) -> new_esEs15(xuu4910, xuu5110) 35.62/13.72 new_lt19(xuu4910, xuu5110, ty_Bool) -> new_lt5(xuu4910, xuu5110) 35.62/13.72 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 35.62/13.72 new_primCmpInt(Neg(Succ(xuu4900)), Pos(xuu510)) -> LT 35.62/13.72 new_ltEs5(Left(xuu4910), Left(xuu5110), app(app(ty_@2, bh), ca), bc) -> new_ltEs14(xuu4910, xuu5110, bh, ca) 35.62/13.72 new_primPlusNat0(Zero, Zero) -> Zero 35.62/13.72 new_mkBalBranch6MkBalBranch01(xuu19, xuu20, xuu21, xuu240, xuu241, xuu242, xuu243, xuu244, xuu41, True, bfa, bfb, bfc) -> Branch(xuu240, xuu241, new_mkBranchUnbox(xuu244, xuu240, new_mkBranch3(Succ(Succ(Succ(Zero))), xuu19, xuu20, xuu21, xuu41, xuu243, bfa, bfb, bfc), new_ps(xuu244, xuu240, new_mkBranch3(Succ(Succ(Succ(Zero))), xuu19, xuu20, xuu21, xuu41, xuu243, bfa, bfb, bfc), new_mkBranch3(Succ(Succ(Succ(Zero))), xuu19, xuu20, xuu21, xuu41, xuu243, bfa, bfb, bfc), bfa, bfb, bfc), bfa, bfb, bfc), new_mkBranch5(xuu19, xuu20, xuu21, xuu41, xuu243, bfa, bfb, bfc), xuu244) 35.62/13.72 new_esEs30(xuu36, xuu37, xuu38, xuu39, False, bbb, bbc) -> new_esEs8(new_compare211(@2(xuu36, xuu37), @2(xuu38, xuu39), False, bbb, bbc), LT) 35.62/13.72 new_pePe(True, xuu145) -> True 35.62/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Ordering, chc) -> new_esEs8(xuu3110000, xuu6000) 35.62/13.72 new_lt12(xuu4910, xuu5110, ty_Char) -> new_lt17(xuu4910, xuu5110) 35.62/13.72 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, dfe), dff)) -> new_esEs6(xuu3110000, xuu6000, dfe, dff) 35.62/13.72 new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, dag)) -> new_esEs18(xuu3110001, xuu6001, dag) 35.62/13.72 new_lt4(xuu490, xuu510, cfa, cfb) -> new_esEs8(new_compare6(xuu490, xuu510, cfa, cfb), LT) 35.62/13.72 new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs7(xuu3110001, xuu6001, chh, daa, dab) 35.62/13.72 new_mkBranch1(xuu210, xuu211, xuu212, xuu213, xuu214, xuu215, xuu216, xuu217, xuu218, xuu219, xuu220, xuu221, xuu222, xuu223, cfc, cfd, cfe) -> new_mkBranchResult(xuu211, xuu212, xuu218, xuu219, xuu220, xuu221, xuu222, xuu223, new_mkBranch2(xuu213, xuu214, xuu215, xuu216, xuu217, cfc, cfd, cfe), cfc, cfd, cfe) 35.62/13.72 new_ltEs18(xuu4911, xuu5111, ty_Float) -> new_ltEs12(xuu4911, xuu5111) 35.62/13.72 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 35.62/13.72 new_esEs27(xuu4910, xuu5110, app(app(ty_Either, cag), cah)) -> new_esEs5(xuu4910, xuu5110, cag, cah) 35.62/13.72 new_ltEs5(Right(xuu4910), Right(xuu5110), cf, ty_Integer) -> new_ltEs8(xuu4910, xuu5110) 35.62/13.72 new_lt19(xuu4910, xuu5110, ty_Float) -> new_lt16(xuu4910, xuu5110) 35.62/13.72 new_lt20(xuu4911, xuu5111, app(ty_Ratio, cce)) -> new_lt18(xuu4911, xuu5111, cce) 35.62/13.72 new_primCmpInt(Pos(Zero), Neg(Succ(xuu5100))) -> GT 35.62/13.72 new_addToFM_C20(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, False, bfa, bfb, bfc) -> new_addToFM_C10(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_esEs8(new_compare211(@2(xuu25, xuu26), @2(xuu19, xuu20), new_esEs6(@2(xuu25, xuu26), @2(xuu19, xuu20), bfa, bfb), bfa, bfb), GT), bfa, bfb, bfc) 35.62/13.72 new_esEs12(xuu3110001, xuu6001, ty_Double) -> new_esEs15(xuu3110001, xuu6001) 35.62/13.72 new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, dae), daf)) -> new_esEs6(xuu3110001, xuu6001, dae, daf) 35.62/13.72 new_mkBalBranch6MkBalBranch01(xuu19, xuu20, xuu21, xuu240, xuu241, xuu242, Branch(xuu2430, xuu2431, xuu2432, xuu2433, xuu2434), xuu244, xuu41, False, bfa, bfb, bfc) -> new_mkBranch4(Succ(Succ(Succ(Succ(Zero)))), xuu2430, xuu2431, xuu19, xuu20, xuu21, xuu41, xuu2433, xuu240, xuu241, xuu2434, xuu244, bfa, bfb, bfc) 35.62/13.72 new_esEs27(xuu4910, xuu5110, ty_Integer) -> new_esEs16(xuu4910, xuu5110) 35.62/13.72 new_esEs13(xuu3110000, xuu6000, app(ty_[], bag)) -> new_esEs20(xuu3110000, xuu6000, bag) 35.62/13.72 new_esEs23(xuu3110001, xuu6001, ty_Integer) -> new_esEs16(xuu3110001, xuu6001) 35.62/13.72 new_esEs13(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.62/13.72 new_lt12(xuu4910, xuu5110, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt7(xuu4910, xuu5110, bge, bgf, bgg) 35.62/13.72 new_ltEs19(xuu4912, xuu5112, app(ty_Maybe, cdb)) -> new_ltEs9(xuu4912, xuu5112, cdb) 35.62/13.72 new_primMulNat0(Succ(xuu311000100), Succ(xuu600000)) -> new_primPlusNat1(new_primMulNat0(xuu311000100, Succ(xuu600000)), xuu600000) 35.62/13.72 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Int, bc) -> new_ltEs6(xuu4910, xuu5110) 35.62/13.72 new_esEs11(xuu3110002, xuu6002, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs7(xuu3110002, xuu6002, fb, fc, fd) 35.62/13.72 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Double, bc) -> new_ltEs11(xuu4910, xuu5110) 35.62/13.72 new_ltEs18(xuu4911, xuu5111, ty_@0) -> new_ltEs10(xuu4911, xuu5111) 35.62/13.72 new_lt19(xuu4910, xuu5110, app(app(ty_@2, cba), cbb)) -> new_lt4(xuu4910, xuu5110, cba, cbb) 35.62/13.72 new_mkBranch2(xuu213, xuu214, xuu215, xuu216, xuu217, cfc, cfd, cfe) -> new_mkBranchResult0(xuu214, xuu215, xuu217, xuu216, cfc, cfd, cfe) 35.62/13.72 new_ltEs19(xuu4912, xuu5112, ty_Double) -> new_ltEs11(xuu4912, xuu5112) 35.62/13.72 new_ltEs5(Left(xuu4910), Right(xuu5110), cf, bc) -> True 35.62/13.72 new_ltEs9(Just(xuu4910), Just(xuu5110), app(app(ty_@2, dge), dgf)) -> new_ltEs14(xuu4910, xuu5110, dge, dgf) 35.62/13.72 new_compare26(xuu490, xuu510, False, ec, ed, ee) -> new_compare113(xuu490, xuu510, new_ltEs16(xuu490, xuu510, ec, ed, ee), ec, ed, ee) 35.62/13.72 new_addToFM_C10(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, True, bfa, bfb, bfc) -> new_mkBalBranch(xuu19, xuu20, xuu21, xuu23, new_addToFM_C0(xuu24, @2(xuu25, xuu26), xuu27, bfa, bfb, bfc), bfa, bfb, bfc) 35.62/13.72 new_ltEs11(xuu491, xuu511) -> new_fsEs(new_compare28(xuu491, xuu511)) 35.62/13.72 new_ltEs20(xuu491, xuu511, app(ty_Maybe, ceg)) -> new_ltEs9(xuu491, xuu511, ceg) 35.62/13.72 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False 35.62/13.72 new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False 35.62/13.72 new_esEs8(GT, GT) -> True 35.62/13.72 new_lt19(xuu4910, xuu5110, app(ty_Ratio, cbc)) -> new_lt18(xuu4910, xuu5110, cbc) 35.62/13.72 new_ltEs4(GT, EQ) -> False 35.62/13.72 new_fsEs(xuu133) -> new_not(new_esEs8(xuu133, GT)) 35.62/13.72 new_esEs31(xuu311000, xuu600, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs7(xuu311000, xuu600, ef, eg, eh) 35.62/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, dda), ddb), chc) -> new_esEs6(xuu3110000, xuu6000, dda, ddb) 35.62/13.72 new_mkBalBranch6MkBalBranch11(xuu19, xuu20, xuu21, xuu24, xuu410, xuu411, xuu412, xuu413, xuu414, True, bfa, bfb, bfc) -> new_mkBranch(xuu410, xuu411, xuu413, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), xuu19, xuu20, xuu21, xuu414, xuu24, bfa, bfb, bfc) 35.62/13.72 new_esEs8(EQ, EQ) -> True 35.62/13.72 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, dba)) -> new_esEs4(xuu3110000, xuu6000, dba) 35.62/13.72 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Bool) -> new_ltEs17(xuu4910, xuu5110) 35.62/13.72 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, dfg)) -> new_esEs18(xuu3110000, xuu6000, dfg) 35.62/13.72 new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 35.62/13.72 new_compare18(xuu4900, xuu5100, ty_Int) -> new_compare9(xuu4900, xuu5100) 35.62/13.72 new_esEs31(xuu311000, xuu600, ty_Bool) -> new_esEs14(xuu311000, xuu600) 35.62/13.72 new_esEs12(xuu3110001, xuu6001, app(app(ty_Either, gh), ha)) -> new_esEs5(xuu3110001, xuu6001, gh, ha) 35.62/13.72 new_lt18(xuu490, xuu510, cec) -> new_esEs8(new_compare8(xuu490, xuu510, cec), LT) 35.62/13.72 new_ltEs9(Just(xuu4910), Just(xuu5110), app(app(app(ty_@3, dgh), dha), dhb)) -> new_ltEs16(xuu4910, xuu5110, dgh, dha, dhb) 35.62/13.72 new_not(True) -> False 35.62/13.72 new_esEs28(xuu490, xuu510, ty_Char) -> new_esEs17(xuu490, xuu510) 35.62/13.72 new_esEs25(xuu4910, xuu5110, ty_Bool) -> new_esEs14(xuu4910, xuu5110) 35.62/13.72 new_lt21(xuu490, xuu510, app(app(ty_Either, bah), bba)) -> new_lt9(xuu490, xuu510, bah, bba) 35.62/13.72 new_lt20(xuu4911, xuu5111, ty_Float) -> new_lt16(xuu4911, xuu5111) 35.62/13.72 new_esEs27(xuu4910, xuu5110, ty_Float) -> new_esEs19(xuu4910, xuu5110) 35.62/13.72 new_primCompAux00(xuu151, LT) -> LT 35.62/13.72 new_esEs13(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.62/13.72 new_primCmpNat0(Zero, Zero) -> EQ 35.62/13.72 new_compare17(xuu490, xuu510, False, bah, bba) -> GT 35.62/13.72 new_esEs12(xuu3110001, xuu6001, app(ty_Maybe, gd)) -> new_esEs4(xuu3110001, xuu6001, gd) 35.62/13.72 new_lt12(xuu4910, xuu5110, ty_Double) -> new_lt15(xuu4910, xuu5110) 35.62/13.72 new_esEs5(Right(xuu3110000), Right(xuu6000), chb, app(ty_Maybe, dde)) -> new_esEs4(xuu3110000, xuu6000, dde) 35.62/13.72 new_lt21(xuu490, xuu510, ty_Bool) -> new_lt5(xuu490, xuu510) 35.62/13.72 new_compare28(Double(xuu4900, Pos(xuu49010)), Double(xuu5100, Pos(xuu51010))) -> new_compare9(new_sr(xuu4900, Pos(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) 35.62/13.72 new_mkBranch0(xuu176, xuu177, xuu178, xuu179, bef, beg, beh) -> new_mkBranchResult0(xuu176, xuu177, xuu179, xuu178, bef, beg, beh) 35.62/13.72 new_esEs11(xuu3110002, xuu6002, app(ty_Maybe, fa)) -> new_esEs4(xuu3110002, xuu6002, fa) 35.62/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Bool, chc) -> new_esEs14(xuu3110000, xuu6000) 35.62/13.72 new_lt12(xuu4910, xuu5110, ty_@0) -> new_lt10(xuu4910, xuu5110) 35.62/13.72 new_esEs25(xuu4910, xuu5110, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs7(xuu4910, xuu5110, bge, bgf, bgg) 35.62/13.72 new_esEs27(xuu4910, xuu5110, ty_Char) -> new_esEs17(xuu4910, xuu5110) 35.62/13.72 new_esEs28(xuu490, xuu510, ty_Float) -> new_esEs19(xuu490, xuu510) 35.62/13.72 new_esEs11(xuu3110002, xuu6002, app(ty_Ratio, gb)) -> new_esEs18(xuu3110002, xuu6002, gb) 35.62/13.72 new_esEs13(xuu3110000, xuu6000, app(app(ty_Either, bab), bac)) -> new_esEs5(xuu3110000, xuu6000, bab, bac) 35.62/13.72 new_ltEs10(xuu491, xuu511) -> new_fsEs(new_compare16(xuu491, xuu511)) 35.62/13.72 new_primEqNat0(Succ(xuu31100000), Zero) -> False 35.62/13.72 new_primEqNat0(Zero, Succ(xuu60000)) -> False 35.62/13.72 new_ltEs20(xuu491, xuu511, ty_Double) -> new_ltEs11(xuu491, xuu511) 35.62/13.72 new_compare112(xuu490, xuu510, False) -> GT 35.62/13.72 new_ltEs20(xuu491, xuu511, ty_Int) -> new_ltEs6(xuu491, xuu511) 35.62/13.72 new_addToFM_C0(Branch(@2(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), @2(xuu311000, xuu311001), xuu31101, h, ba, bb) -> new_addToFM_C20(xuu600, xuu601, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, new_esEs30(xuu311000, xuu311001, xuu600, xuu601, new_esEs31(xuu311000, xuu600, h), h, ba), h, ba, bb) 35.62/13.72 new_ltEs19(xuu4912, xuu5112, ty_Int) -> new_ltEs6(xuu4912, xuu5112) 35.62/13.72 new_esEs27(xuu4910, xuu5110, ty_Int) -> new_esEs10(xuu4910, xuu5110) 35.62/13.72 new_esEs11(xuu3110002, xuu6002, app(app(ty_@2, fh), ga)) -> new_esEs6(xuu3110002, xuu6002, fh, ga) 35.62/13.72 new_primCmpInt0(Branch(xuu410, xuu411, xuu412, xuu413, xuu414), xuu19, xuu20, xuu21, xuu24, bfa, bfb, bfc) -> new_primCmpInt(new_primPlusInt(xuu412, new_mkBalBranch6Size_r(xuu19, xuu20, xuu21, xuu24, Branch(xuu410, xuu411, xuu412, xuu413, xuu414), bfa, bfb, bfc)), Pos(Succ(Succ(Zero)))) 35.62/13.72 new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.62/13.72 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Char, bc) -> new_ltEs13(xuu4910, xuu5110) 35.62/13.72 new_lt21(xuu490, xuu510, ty_Float) -> new_lt16(xuu490, xuu510) 35.62/13.72 new_primCompAux00(xuu151, GT) -> GT 35.62/13.72 new_esEs14(False, True) -> False 35.62/13.72 new_esEs14(True, False) -> False 35.62/13.72 new_addToFM_C10(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, False, bfa, bfb, bfc) -> Branch(@2(xuu25, xuu26), xuu27, xuu22, xuu23, xuu24) 35.62/13.72 new_primCmpInt(Neg(Zero), Neg(Succ(xuu5100))) -> new_primCmpNat2(xuu5100, Zero) 35.62/13.72 new_primMinusNat0(Succ(xuu41200), Zero) -> Pos(Succ(xuu41200)) 35.62/13.72 new_ltEs5(Left(xuu4910), Left(xuu5110), app(app(ty_Either, bf), bg), bc) -> new_ltEs5(xuu4910, xuu5110, bf, bg) 35.62/13.72 new_ltEs16(@3(xuu4910, xuu4911, xuu4912), @3(xuu5110, xuu5111, xuu5112), cab, cac, cad) -> new_pePe(new_lt19(xuu4910, xuu5110, cab), new_asAs(new_esEs27(xuu4910, xuu5110, cab), new_pePe(new_lt20(xuu4911, xuu5111, cac), new_asAs(new_esEs26(xuu4911, xuu5111, cac), new_ltEs19(xuu4912, xuu5112, cad))))) 35.62/13.72 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, deh), dfa), dfb)) -> new_esEs7(xuu3110000, xuu6000, deh, dfa, dfb) 35.62/13.72 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Ordering) -> new_ltEs4(xuu4910, xuu5110) 35.62/13.72 new_compare13(xuu490, xuu510, False, eb) -> GT 35.62/13.72 new_esEs23(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 35.62/13.72 new_primPlusInt(Pos(xuu4120), Pos(xuu1080)) -> Pos(new_primPlusNat0(xuu4120, xuu1080)) 35.62/13.72 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_@0, bc) -> new_ltEs10(xuu4910, xuu5110) 35.62/13.72 new_lt20(xuu4911, xuu5111, ty_Integer) -> new_lt13(xuu4911, xuu5111) 35.62/13.72 new_compare25(xuu490, xuu510, False, eb) -> new_compare13(xuu490, xuu510, new_ltEs9(xuu490, xuu510, eb), eb) 35.62/13.72 new_mkBalBranch6MkBalBranch11(xuu19, xuu20, xuu21, xuu24, xuu410, xuu411, xuu412, xuu413, EmptyFM, False, bfa, bfb, bfc) -> error([]) 35.62/13.72 new_esEs28(xuu490, xuu510, ty_Int) -> new_esEs10(xuu490, xuu510) 35.62/13.72 new_primCmpInt(Pos(Succ(xuu4900)), Neg(xuu510)) -> GT 35.62/13.72 new_ltEs20(xuu491, xuu511, ty_@0) -> new_ltEs10(xuu491, xuu511) 35.62/13.72 new_compare9(xuu49, xuu51) -> new_primCmpInt(xuu49, xuu51) 35.62/13.72 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Integer) -> new_ltEs8(xuu4910, xuu5110) 35.62/13.72 new_mkBranch3(xuu161, xuu162, xuu163, xuu164, xuu165, xuu166, bea, beb, bec) -> new_mkBranchResult1(xuu162, xuu163, xuu164, xuu166, xuu165, bea, beb, bec) 35.62/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_[], ddd), chc) -> new_esEs20(xuu3110000, xuu6000, ddd) 35.62/13.72 new_esEs29(xuu3110000, xuu6000, app(ty_[], cgh)) -> new_esEs20(xuu3110000, xuu6000, cgh) 35.62/13.72 new_esEs12(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 35.62/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, dcc), chc) -> new_esEs4(xuu3110000, xuu6000, dcc) 35.62/13.72 new_lt19(xuu4910, xuu5110, ty_Integer) -> new_lt13(xuu4910, xuu5110) 35.62/13.72 new_primCmpNat0(Zero, Succ(xuu51000)) -> LT 35.62/13.72 new_compare18(xuu4900, xuu5100, app(ty_[], bcg)) -> new_compare0(xuu4900, xuu5100, bcg) 35.62/13.72 new_ltEs19(xuu4912, xuu5112, ty_@0) -> new_ltEs10(xuu4912, xuu5112) 35.62/13.72 new_esEs26(xuu4911, xuu5111, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs7(xuu4911, xuu5111, ccf, ccg, cch) 35.62/13.72 new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, dca)) -> new_esEs18(xuu3110000, xuu6000, dca) 35.62/13.72 new_esEs20([], [], cff) -> True 35.62/13.72 new_esEs29(xuu3110000, xuu6000, ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.62/13.72 new_compare210(xuu490, xuu510, True) -> EQ 35.62/13.72 new_esEs32(xuu37, xuu39, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs7(xuu37, xuu39, bbe, bbf, bbg) 35.62/13.72 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 35.62/13.72 new_compare18(xuu4900, xuu5100, app(ty_Ratio, bde)) -> new_compare8(xuu4900, xuu5100, bde) 35.62/13.72 new_esEs32(xuu37, xuu39, ty_Integer) -> new_esEs16(xuu37, xuu39) 35.62/13.72 new_primCmpNat0(Succ(xuu49000), Zero) -> GT 35.62/13.72 new_pePe(False, xuu145) -> xuu145 35.62/13.72 new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, dbg), dbh)) -> new_esEs6(xuu3110000, xuu6000, dbg, dbh) 35.62/13.72 new_esEs5(Right(xuu3110000), Right(xuu6000), chb, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.62/13.72 new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.62/13.72 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.62/13.72 new_lt13(xuu490, xuu510) -> new_esEs8(new_compare11(xuu490, xuu510), LT) 35.62/13.72 new_esEs26(xuu4911, xuu5111, ty_Bool) -> new_esEs14(xuu4911, xuu5111) 35.62/13.72 new_primMinusNat0(Succ(xuu41200), Succ(xuu10800)) -> new_primMinusNat0(xuu41200, xuu10800) 35.62/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Float, chc) -> new_esEs19(xuu3110000, xuu6000) 35.62/13.72 new_ltEs20(xuu491, xuu511, ty_Char) -> new_ltEs13(xuu491, xuu511) 35.62/13.72 new_esEs26(xuu4911, xuu5111, ty_@0) -> new_esEs9(xuu4911, xuu5111) 35.62/13.72 new_compare111(xuu121, xuu122, xuu123, xuu124, False, xuu126, bed, bee) -> new_compare110(xuu121, xuu122, xuu123, xuu124, xuu126, bed, bee) 35.62/13.72 new_esEs27(xuu4910, xuu5110, app(ty_[], cae)) -> new_esEs20(xuu4910, xuu5110, cae) 35.62/13.72 new_mkBalBranch6MkBalBranch3(xuu19, xuu20, xuu21, xuu24, Branch(xuu410, xuu411, xuu412, xuu413, xuu414), True, bfa, bfb, bfc) -> new_mkBalBranch6MkBalBranch11(xuu19, xuu20, xuu21, xuu24, xuu410, xuu411, xuu412, xuu413, xuu414, new_lt8(new_sizeFM(xuu414, bfa, bfb, bfc), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu413, bfa, bfb, bfc))), bfa, bfb, bfc) 35.62/13.72 new_ltEs18(xuu4911, xuu5111, ty_Bool) -> new_ltEs17(xuu4911, xuu5111) 35.62/13.72 new_lt20(xuu4911, xuu5111, app(ty_[], cbg)) -> new_lt11(xuu4911, xuu5111, cbg) 35.62/13.72 new_esEs8(LT, EQ) -> False 35.62/13.72 new_esEs8(EQ, LT) -> False 35.62/13.72 new_compare18(xuu4900, xuu5100, ty_Double) -> new_compare28(xuu4900, xuu5100) 35.62/13.72 new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False 35.62/13.72 new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False 35.62/13.72 new_compare28(Double(xuu4900, Pos(xuu49010)), Double(xuu5100, Neg(xuu51010))) -> new_compare9(new_sr(xuu4900, Pos(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) 35.62/13.72 new_compare28(Double(xuu4900, Neg(xuu49010)), Double(xuu5100, Pos(xuu51010))) -> new_compare9(new_sr(xuu4900, Neg(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) 35.62/13.72 new_ltEs5(Left(xuu4910), Left(xuu5110), app(ty_Maybe, be), bc) -> new_ltEs9(xuu4910, xuu5110, be) 35.62/13.72 new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 35.62/13.72 new_lt8(xuu490, xuu510) -> new_esEs8(new_compare9(xuu490, xuu510), LT) 35.62/13.72 new_mkBranchResult(xuu158, xuu159, xuu161, xuu162, xuu163, xuu164, xuu165, xuu166, xuu160, bea, beb, bec) -> Branch(xuu158, xuu159, new_mkBranchUnbox(new_mkBranch3(xuu161, xuu162, xuu163, xuu164, xuu165, xuu166, bea, beb, bec), xuu158, xuu160, new_ps(new_mkBranch2(xuu161, @2(xuu162, xuu163), xuu164, xuu165, xuu166, bea, beb, bec), xuu158, xuu160, xuu160, bea, beb, bec), bea, beb, bec), xuu160, new_mkBranch3(xuu161, xuu162, xuu163, xuu164, xuu165, xuu166, bea, beb, bec)) 35.62/13.72 new_ltEs4(LT, GT) -> True 35.62/13.72 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Char) -> new_ltEs13(xuu4910, xuu5110) 35.62/13.72 new_esEs12(xuu3110001, xuu6001, app(ty_Ratio, hd)) -> new_esEs18(xuu3110001, xuu6001, hd) 35.62/13.72 new_esEs13(xuu3110000, xuu6000, ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.62/13.72 new_compare5(Float(xuu4900, Pos(xuu49010)), Float(xuu5100, Neg(xuu51010))) -> new_compare9(new_sr(xuu4900, Pos(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) 35.62/13.72 new_compare5(Float(xuu4900, Neg(xuu49010)), Float(xuu5100, Pos(xuu51010))) -> new_compare9(new_sr(xuu4900, Neg(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) 35.62/13.72 new_ltEs19(xuu4912, xuu5112, ty_Char) -> new_ltEs13(xuu4912, xuu5112) 35.62/13.72 new_mkBalBranch6MkBalBranch4(xuu19, xuu20, xuu21, Branch(xuu240, xuu241, xuu242, xuu243, xuu244), xuu41, True, bfa, bfb, bfc) -> new_mkBalBranch6MkBalBranch01(xuu19, xuu20, xuu21, xuu240, xuu241, xuu242, xuu243, xuu244, xuu41, new_lt8(new_sizeFM(xuu243, bfa, bfb, bfc), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu244, bfa, bfb, bfc))), bfa, bfb, bfc) 35.62/13.72 new_esEs32(xuu37, xuu39, ty_Double) -> new_esEs15(xuu37, xuu39) 35.62/13.72 new_compare18(xuu4900, xuu5100, ty_Ordering) -> new_compare12(xuu4900, xuu5100) 35.62/13.72 new_primCmpInt0(EmptyFM, xuu19, xuu20, xuu21, xuu24, bfa, bfb, bfc) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r(xuu19, xuu20, xuu21, xuu24, EmptyFM, bfa, bfb, bfc)), Pos(Succ(Succ(Zero)))) 35.62/13.72 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Double) -> new_ltEs11(xuu4910, xuu5110) 35.62/13.72 new_ltEs19(xuu4912, xuu5112, app(app(ty_@2, cde), cdf)) -> new_ltEs14(xuu4912, xuu5112, cde, cdf) 35.62/13.72 new_esEs6(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), chd, che) -> new_asAs(new_esEs22(xuu3110000, xuu6000, chd), new_esEs21(xuu3110001, xuu6001, che)) 35.62/13.72 new_esEs25(xuu4910, xuu5110, ty_Ordering) -> new_esEs8(xuu4910, xuu5110) 35.62/13.72 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 35.62/13.72 new_ltEs18(xuu4911, xuu5111, ty_Double) -> new_ltEs11(xuu4911, xuu5111) 35.62/13.72 new_esEs28(xuu490, xuu510, ty_Integer) -> new_esEs16(xuu490, xuu510) 35.62/13.72 new_primCmpInt(Neg(Zero), Pos(Succ(xuu5100))) -> LT 35.62/13.72 new_esEs25(xuu4910, xuu5110, app(ty_[], bff)) -> new_esEs20(xuu4910, xuu5110, bff) 35.62/13.72 new_emptyFM(h, ba, bb) -> EmptyFM 35.62/13.72 new_ltEs4(LT, LT) -> True 35.62/13.72 new_ltEs18(xuu4911, xuu5111, app(app(app(ty_@3, bhg), bhh), caa)) -> new_ltEs16(xuu4911, xuu5111, bhg, bhh, caa) 35.62/13.72 new_ltEs4(EQ, LT) -> False 35.62/13.72 new_primMulInt(Pos(xuu31100010), Pos(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 35.62/13.72 new_mkBalBranch6MkBalBranch11(xuu19, xuu20, xuu21, xuu24, xuu410, xuu411, xuu412, xuu413, Branch(xuu4140, xuu4141, xuu4142, xuu4143, xuu4144), False, bfa, bfb, bfc) -> new_mkBranch1(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu4140, xuu4141, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu410, xuu411, xuu413, xuu4143, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), xuu19, xuu20, xuu21, xuu4144, xuu24, bfa, bfb, bfc) 35.62/13.72 new_compare18(xuu4900, xuu5100, ty_Char) -> new_compare29(xuu4900, xuu5100) 35.62/13.72 new_esEs28(xuu490, xuu510, ty_Double) -> new_esEs15(xuu490, xuu510) 35.62/13.72 new_esEs28(xuu490, xuu510, ty_Bool) -> new_esEs14(xuu490, xuu510) 35.62/13.72 new_esEs26(xuu4911, xuu5111, app(app(ty_@2, ccc), ccd)) -> new_esEs6(xuu4911, xuu5111, ccc, ccd) 35.62/13.72 new_esEs28(xuu490, xuu510, ty_@0) -> new_esEs9(xuu490, xuu510) 35.62/13.72 new_esEs32(xuu37, xuu39, app(app(ty_Either, bbh), bca)) -> new_esEs5(xuu37, xuu39, bbh, bca) 35.62/13.72 new_esEs29(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.62/13.72 new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs7(xuu3110000, xuu6000, dbb, dbc, dbd) 35.62/13.72 new_esEs20(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), cff) -> new_asAs(new_esEs29(xuu3110000, xuu6000, cff), new_esEs20(xuu3110001, xuu6001, cff)) 35.62/13.72 new_esEs12(xuu3110001, xuu6001, app(app(ty_@2, hb), hc)) -> new_esEs6(xuu3110001, xuu6001, hb, hc) 35.62/13.72 new_primMulNat0(Succ(xuu311000100), Zero) -> Zero 35.62/13.72 new_primMulNat0(Zero, Succ(xuu600000)) -> Zero 35.62/13.72 new_esEs5(Right(xuu3110000), Right(xuu6000), chb, app(ty_Ratio, dee)) -> new_esEs18(xuu3110000, xuu6000, dee) 35.62/13.72 new_lt21(xuu490, xuu510, ty_Integer) -> new_lt13(xuu490, xuu510) 35.62/13.72 new_lt19(xuu4910, xuu5110, app(app(ty_Either, cag), cah)) -> new_lt9(xuu4910, xuu5110, cag, cah) 35.62/13.72 new_esEs31(xuu311000, xuu600, app(ty_Maybe, cha)) -> new_esEs4(xuu311000, xuu600, cha) 35.62/13.72 new_primPlusNat1(Succ(xuu1120), xuu600000) -> Succ(Succ(new_primPlusNat0(xuu1120, xuu600000))) 35.62/13.72 new_ltEs19(xuu4912, xuu5112, ty_Float) -> new_ltEs12(xuu4912, xuu5112) 35.62/13.72 new_esEs13(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.62/13.72 new_lt20(xuu4911, xuu5111, ty_@0) -> new_lt10(xuu4911, xuu5111) 35.62/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, dcg), dch), chc) -> new_esEs5(xuu3110000, xuu6000, dcg, dch) 35.62/13.72 new_primPlusNat0(Succ(xuu41200), Zero) -> Succ(xuu41200) 35.62/13.72 new_primPlusNat0(Zero, Succ(xuu10800)) -> Succ(xuu10800) 35.62/13.72 new_lt19(xuu4910, xuu5110, app(ty_[], cae)) -> new_lt11(xuu4910, xuu5110, cae) 35.62/13.72 new_esEs32(xuu37, xuu39, ty_Int) -> new_esEs10(xuu37, xuu39) 35.62/13.72 new_esEs5(Right(xuu3110000), Right(xuu6000), chb, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs7(xuu3110000, xuu6000, ddf, ddg, ddh) 35.62/13.72 new_ltEs9(Just(xuu4910), Just(xuu5110), app(app(ty_Either, dgc), dgd)) -> new_ltEs5(xuu4910, xuu5110, dgc, dgd) 35.62/13.72 new_esEs26(xuu4911, xuu5111, app(ty_Ratio, cce)) -> new_esEs18(xuu4911, xuu5111, cce) 35.62/13.72 new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, dac), dad)) -> new_esEs5(xuu3110001, xuu6001, dac, dad) 35.62/13.72 new_primPlusNat1(Zero, xuu600000) -> Succ(xuu600000) 35.62/13.72 new_ltEs15(xuu491, xuu511, ceh) -> new_fsEs(new_compare8(xuu491, xuu511, ceh)) 35.62/13.72 new_compare17(xuu490, xuu510, True, bah, bba) -> LT 35.62/13.72 new_compare6(xuu490, xuu510, cfa, cfb) -> new_compare211(xuu490, xuu510, new_esEs6(xuu490, xuu510, cfa, cfb), cfa, cfb) 35.62/13.72 new_lt12(xuu4910, xuu5110, ty_Int) -> new_lt8(xuu4910, xuu5110) 35.62/13.72 new_esEs8(LT, LT) -> True 35.62/13.72 new_compare15(xuu490, xuu510, bah, bba) -> new_compare27(xuu490, xuu510, new_esEs5(xuu490, xuu510, bah, bba), bah, bba) 35.62/13.72 new_mkBalBranch6MkBalBranch5(xuu19, xuu20, xuu21, xuu24, xuu41, False, bfa, bfb, bfc) -> new_mkBalBranch6MkBalBranch4(xuu19, xuu20, xuu21, xuu24, xuu41, new_gt(new_mkBalBranch6Size_r(xuu19, xuu20, xuu21, xuu24, xuu41, bfa, bfb, bfc), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu19, xuu20, xuu21, xuu24, xuu41, bfa, bfb, bfc))), bfa, bfb, bfc) 35.62/13.72 new_ltEs20(xuu491, xuu511, ty_Float) -> new_ltEs12(xuu491, xuu511) 35.62/13.72 new_mkBalBranch6MkBalBranch01(xuu19, xuu20, xuu21, xuu240, xuu241, xuu242, EmptyFM, xuu244, xuu41, False, bfa, bfb, bfc) -> error([]) 35.62/13.72 new_esEs12(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) 35.62/13.72 new_esEs30(xuu36, xuu37, xuu38, xuu39, True, bbb, bbc) -> new_esEs8(new_compare211(@2(xuu36, xuu37), @2(xuu38, xuu39), new_esEs32(xuu37, xuu39, bbc), bbb, bbc), LT) 35.62/13.72 new_ltEs20(xuu491, xuu511, app(app(ty_@2, bfd), bfe)) -> new_ltEs14(xuu491, xuu511, bfd, bfe) 35.62/13.72 new_esEs5(Right(xuu3110000), Right(xuu6000), chb, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.62/13.72 new_esEs25(xuu4910, xuu5110, ty_Float) -> new_esEs19(xuu4910, xuu5110) 35.62/13.72 new_mkBalBranch6MkBalBranch3(xuu19, xuu20, xuu21, xuu24, EmptyFM, True, bfa, bfb, bfc) -> error([]) 35.62/13.72 new_ltEs5(Right(xuu4910), Right(xuu5110), cf, ty_Float) -> new_ltEs12(xuu4910, xuu5110) 35.62/13.72 new_esEs11(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) 35.62/13.72 new_esEs27(xuu4910, xuu5110, ty_@0) -> new_esEs9(xuu4910, xuu5110) 35.62/13.72 new_lt21(xuu490, xuu510, app(ty_Ratio, cec)) -> new_lt18(xuu490, xuu510, cec) 35.62/13.72 new_esEs13(xuu3110000, xuu6000, app(app(ty_@2, bad), bae)) -> new_esEs6(xuu3110000, xuu6000, bad, bae) 35.62/13.72 new_ltEs18(xuu4911, xuu5111, app(ty_Maybe, bha)) -> new_ltEs9(xuu4911, xuu5111, bha) 35.62/13.72 new_esEs5(Right(xuu3110000), Right(xuu6000), chb, ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.62/13.72 new_ltEs4(LT, EQ) -> True 35.62/13.72 new_esEs5(Right(xuu3110000), Right(xuu6000), chb, ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.62/13.72 new_ltEs20(xuu491, xuu511, app(app(app(ty_@3, cab), cac), cad)) -> new_ltEs16(xuu491, xuu511, cab, cac, cad) 35.62/13.72 new_esEs29(xuu3110000, xuu6000, ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.62/13.72 new_lt12(xuu4910, xuu5110, app(ty_Maybe, bfg)) -> new_lt14(xuu4910, xuu5110, bfg) 35.62/13.72 new_esEs26(xuu4911, xuu5111, app(ty_[], cbg)) -> new_esEs20(xuu4911, xuu5111, cbg) 35.62/13.72 new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, chg)) -> new_esEs4(xuu3110001, xuu6001, chg) 35.62/13.72 new_esEs13(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.62/13.72 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Ordering, bc) -> new_ltEs4(xuu4910, xuu5110) 35.62/13.72 new_primMulInt(Neg(xuu31100010), Neg(xuu60000)) -> Pos(new_primMulNat0(xuu31100010, xuu60000)) 35.62/13.72 new_compare25(xuu490, xuu510, True, eb) -> EQ 35.62/13.72 new_ltEs5(Right(xuu4910), Right(xuu5110), cf, app(ty_Ratio, df)) -> new_ltEs15(xuu4910, xuu5110, df) 35.62/13.72 new_esEs14(True, True) -> True 35.62/13.72 new_ltEs20(xuu491, xuu511, ty_Bool) -> new_ltEs17(xuu491, xuu511) 35.62/13.72 new_esEs13(xuu3110000, xuu6000, app(ty_Ratio, baf)) -> new_esEs18(xuu3110000, xuu6000, baf) 35.62/13.72 new_esEs25(xuu4910, xuu5110, app(app(ty_@2, bgb), bgc)) -> new_esEs6(xuu4910, xuu5110, bgb, bgc) 35.62/13.72 new_esEs5(Right(xuu3110000), Right(xuu6000), chb, app(app(ty_@2, dec), ded)) -> new_esEs6(xuu3110000, xuu6000, dec, ded) 35.62/13.72 new_esEs11(xuu3110002, xuu6002, app(app(ty_Either, ff), fg)) -> new_esEs5(xuu3110002, xuu6002, ff, fg) 35.62/13.72 new_esEs32(xuu37, xuu39, app(ty_Maybe, bbd)) -> new_esEs4(xuu37, xuu39, bbd) 35.62/13.72 new_esEs12(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) 35.62/13.72 new_esEs29(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.62/13.72 new_ltEs4(EQ, EQ) -> True 35.62/13.72 new_esEs31(xuu311000, xuu600, ty_Int) -> new_esEs10(xuu311000, xuu600) 35.62/13.72 new_lt21(xuu490, xuu510, ty_@0) -> new_lt10(xuu490, xuu510) 35.62/13.72 new_ltEs18(xuu4911, xuu5111, ty_Integer) -> new_ltEs8(xuu4911, xuu5111) 35.62/13.72 new_esEs25(xuu4910, xuu5110, app(ty_Ratio, bgd)) -> new_esEs18(xuu4910, xuu5110, bgd) 35.62/13.72 new_esEs12(xuu3110001, xuu6001, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs7(xuu3110001, xuu6001, ge, gf, gg) 35.62/13.72 new_compare18(xuu4900, xuu5100, ty_Integer) -> new_compare11(xuu4900, xuu5100) 35.62/13.72 new_ltEs9(Just(xuu4910), Just(xuu5110), app(ty_[], dga)) -> new_ltEs7(xuu4910, xuu5110, dga) 35.62/13.72 new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, dbe), dbf)) -> new_esEs5(xuu3110000, xuu6000, dbe, dbf) 35.62/13.72 new_compare19(xuu490, xuu510, eb) -> new_compare25(xuu490, xuu510, new_esEs4(xuu490, xuu510, eb), eb) 35.62/13.72 new_ltEs5(Right(xuu4910), Right(xuu5110), cf, ty_Bool) -> new_ltEs17(xuu4910, xuu5110) 35.62/13.72 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, deg)) -> new_esEs4(xuu3110000, xuu6000, deg) 35.62/13.72 new_primCmpNat2(xuu4900, Zero) -> GT 35.62/13.72 new_esEs29(xuu3110000, xuu6000, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.62/13.72 new_compare210(xuu490, xuu510, False) -> new_compare112(xuu490, xuu510, new_ltEs17(xuu490, xuu510)) 35.62/13.72 new_compare24(xuu490, xuu510, False) -> new_compare10(xuu490, xuu510, new_ltEs4(xuu490, xuu510)) 35.62/13.72 new_compare26(xuu490, xuu510, True, ec, ed, ee) -> EQ 35.62/13.72 new_compare112(xuu490, xuu510, True) -> LT 35.62/13.72 new_compare18(xuu4900, xuu5100, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_compare14(xuu4900, xuu5100, bdf, bdg, bdh) 35.62/13.72 new_esEs27(xuu4910, xuu5110, ty_Bool) -> new_esEs14(xuu4910, xuu5110) 35.62/13.72 new_esEs25(xuu4910, xuu5110, ty_Integer) -> new_esEs16(xuu4910, xuu5110) 35.62/13.72 new_ltEs19(xuu4912, xuu5112, app(app(ty_Either, cdc), cdd)) -> new_ltEs5(xuu4912, xuu5112, cdc, cdd) 35.62/13.72 new_compare18(xuu4900, xuu5100, ty_Bool) -> new_compare7(xuu4900, xuu5100) 35.62/13.72 new_lt19(xuu4910, xuu5110, app(ty_Maybe, caf)) -> new_lt14(xuu4910, xuu5110, caf) 35.62/13.72 new_lt20(xuu4911, xuu5111, ty_Char) -> new_lt17(xuu4911, xuu5111) 35.62/13.72 new_compare7(xuu490, xuu510) -> new_compare210(xuu490, xuu510, new_esEs14(xuu490, xuu510)) 35.62/13.72 new_primMulInt(Pos(xuu31100010), Neg(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 35.62/13.72 new_primMulInt(Neg(xuu31100010), Pos(xuu60000)) -> Neg(new_primMulNat0(xuu31100010, xuu60000)) 35.62/13.72 new_esEs13(xuu3110000, xuu6000, app(app(app(ty_@3, hg), hh), baa)) -> new_esEs7(xuu3110000, xuu6000, hg, hh, baa) 35.62/13.72 new_lt12(xuu4910, xuu5110, app(ty_Ratio, bgd)) -> new_lt18(xuu4910, xuu5110, bgd) 35.62/13.72 new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.62/13.72 new_primCmpNat1(Succ(xuu5100), xuu4900) -> new_primCmpNat0(xuu5100, xuu4900) 35.62/13.72 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.62/13.72 new_lt10(xuu490, xuu510) -> new_esEs8(new_compare16(xuu490, xuu510), LT) 35.62/13.72 new_ltEs9(Just(xuu4910), Just(xuu5110), app(ty_Ratio, dgg)) -> new_ltEs15(xuu4910, xuu5110, dgg) 35.62/13.72 new_lt12(xuu4910, xuu5110, ty_Integer) -> new_lt13(xuu4910, xuu5110) 35.62/13.72 new_ltEs18(xuu4911, xuu5111, app(app(ty_@2, bhd), bhe)) -> new_ltEs14(xuu4911, xuu5111, bhd, bhe) 35.62/13.72 new_sr0(Integer(xuu51000), Integer(xuu49010)) -> Integer(new_primMulInt(xuu51000, xuu49010)) 35.62/13.72 new_primPlusInt(Neg(xuu4120), Neg(xuu1080)) -> Neg(new_primPlusNat0(xuu4120, xuu1080)) 35.62/13.72 new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs19(xuu3110001, xuu6001) 35.62/13.72 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.62/13.72 new_ltEs19(xuu4912, xuu5112, app(app(app(ty_@3, cdh), cea), ceb)) -> new_ltEs16(xuu4912, xuu5112, cdh, cea, ceb) 35.62/13.72 new_ltEs6(xuu491, xuu511) -> new_fsEs(new_compare9(xuu491, xuu511)) 35.62/13.72 new_ltEs19(xuu4912, xuu5112, ty_Bool) -> new_ltEs17(xuu4912, xuu5112) 35.62/13.72 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_@0) -> new_ltEs10(xuu4910, xuu5110) 35.62/13.72 new_ltEs18(xuu4911, xuu5111, ty_Ordering) -> new_ltEs4(xuu4911, xuu5111) 35.62/13.72 new_esEs28(xuu490, xuu510, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs7(xuu490, xuu510, ec, ed, ee) 35.62/13.72 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Bool, bc) -> new_ltEs17(xuu4910, xuu5110) 35.62/13.72 new_esEs31(xuu311000, xuu600, ty_Float) -> new_esEs19(xuu311000, xuu600) 35.62/13.72 new_primCompAux0(xuu4900, xuu5100, xuu146, bcf) -> new_primCompAux00(xuu146, new_compare18(xuu4900, xuu5100, bcf)) 35.62/13.72 new_compare111(xuu121, xuu122, xuu123, xuu124, True, xuu126, bed, bee) -> new_compare110(xuu121, xuu122, xuu123, xuu124, True, bed, bee) 35.62/13.72 new_esEs25(xuu4910, xuu5110, ty_Char) -> new_esEs17(xuu4910, xuu5110) 35.62/13.72 new_ltEs19(xuu4912, xuu5112, ty_Integer) -> new_ltEs8(xuu4912, xuu5112) 35.62/13.72 new_ltEs9(Nothing, Just(xuu5110), ceg) -> True 35.62/13.72 new_compare0([], :(xuu5100, xuu5101), bcf) -> LT 35.62/13.72 new_asAs(True, xuu72) -> xuu72 35.62/13.72 new_lt12(xuu4910, xuu5110, ty_Bool) -> new_lt5(xuu4910, xuu5110) 35.62/13.72 new_ltEs5(Right(xuu4910), Left(xuu5110), cf, bc) -> False 35.62/13.72 new_compare113(xuu490, xuu510, True, ec, ed, ee) -> LT 35.62/13.72 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.62/13.72 new_ltEs18(xuu4911, xuu5111, ty_Char) -> new_ltEs13(xuu4911, xuu5111) 35.62/13.72 new_esEs31(xuu311000, xuu600, ty_Double) -> new_esEs15(xuu311000, xuu600) 35.62/13.72 new_esEs25(xuu4910, xuu5110, ty_Double) -> new_esEs15(xuu4910, xuu5110) 35.62/13.72 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)) 35.62/13.72 new_lt16(xuu490, xuu510) -> new_esEs8(new_compare5(xuu490, xuu510), LT) 35.62/13.72 new_esEs31(xuu311000, xuu600, ty_Char) -> new_esEs17(xuu311000, xuu600) 35.62/13.72 new_compare14(xuu490, xuu510, ec, ed, ee) -> new_compare26(xuu490, xuu510, new_esEs7(xuu490, xuu510, ec, ed, ee), ec, ed, ee) 35.62/13.72 new_lt20(xuu4911, xuu5111, app(app(app(ty_@3, ccf), ccg), cch)) -> new_lt7(xuu4911, xuu5111, ccf, ccg, cch) 35.62/13.72 new_esEs31(xuu311000, xuu600, ty_Integer) -> new_esEs16(xuu311000, xuu600) 35.62/13.72 new_primCmpNat2(xuu4900, Succ(xuu5100)) -> new_primCmpNat0(xuu4900, xuu5100) 35.62/13.72 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 35.62/13.72 new_lt19(xuu4910, xuu5110, ty_@0) -> new_lt10(xuu4910, xuu5110) 35.62/13.72 new_ltEs20(xuu491, xuu511, app(app(ty_Either, cf), bc)) -> new_ltEs5(xuu491, xuu511, cf, bc) 35.62/13.72 new_ltEs5(Left(xuu4910), Left(xuu5110), app(app(app(ty_@3, cc), cd), ce), bc) -> new_ltEs16(xuu4910, xuu5110, cc, cd, ce) 35.62/13.72 new_ltEs20(xuu491, xuu511, ty_Integer) -> new_ltEs8(xuu491, xuu511) 35.62/13.72 new_primPlusInt(Pos(xuu4120), Neg(xuu1080)) -> new_primMinusNat0(xuu4120, xuu1080) 35.62/13.72 new_primPlusInt(Neg(xuu4120), Pos(xuu1080)) -> new_primMinusNat0(xuu1080, xuu4120) 35.62/13.72 new_compare13(xuu490, xuu510, True, eb) -> LT 35.62/13.72 new_esEs4(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, dfc), dfd)) -> new_esEs5(xuu3110000, xuu6000, dfc, dfd) 35.62/13.72 new_lt21(xuu490, xuu510, app(ty_[], bcf)) -> new_lt11(xuu490, xuu510, bcf) 35.62/13.72 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Integer, bc) -> new_ltEs8(xuu4910, xuu5110) 35.62/13.72 new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 35.62/13.72 new_esEs11(xuu3110002, xuu6002, app(ty_[], gc)) -> new_esEs20(xuu3110002, xuu6002, gc) 35.62/13.72 new_lt19(xuu4910, xuu5110, ty_Int) -> new_lt8(xuu4910, xuu5110) 35.62/13.72 new_ltEs5(Right(xuu4910), Right(xuu5110), cf, app(app(ty_Either, db), dc)) -> new_ltEs5(xuu4910, xuu5110, db, dc) 35.62/13.72 new_lt11(xuu490, xuu510, bcf) -> new_esEs8(new_compare0(xuu490, xuu510, bcf), LT) 35.62/13.72 new_esEs31(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) 35.62/13.72 new_esEs29(xuu3110000, xuu6000, app(app(ty_Either, cgc), cgd)) -> new_esEs5(xuu3110000, xuu6000, cgc, cgd) 35.62/13.72 new_esEs25(xuu4910, xuu5110, ty_@0) -> new_esEs9(xuu4910, xuu5110) 35.62/13.72 new_esEs9(@0, @0) -> True 35.62/13.72 new_esEs5(Right(xuu3110000), Right(xuu6000), chb, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.62/13.72 new_primCompAux00(xuu151, EQ) -> xuu151 35.62/13.72 new_compare0([], [], bcf) -> EQ 35.62/13.72 new_sr(xuu3110001, xuu6000) -> new_primMulInt(xuu3110001, xuu6000) 35.62/13.72 new_compare211(@2(xuu490, xuu491), @2(xuu510, xuu511), False, cee, cef) -> new_compare111(xuu490, xuu491, xuu510, xuu511, new_lt21(xuu490, xuu510, cee), new_asAs(new_esEs28(xuu490, xuu510, cee), new_ltEs20(xuu491, xuu511, cef)), cee, cef) 35.62/13.72 new_esEs27(xuu4910, xuu5110, app(app(ty_@2, cba), cbb)) -> new_esEs6(xuu4910, xuu5110, cba, cbb) 35.62/13.72 new_esEs17(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) 35.62/13.72 new_primMulNat0(Zero, Zero) -> Zero 35.62/13.72 new_lt19(xuu4910, xuu5110, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_lt7(xuu4910, xuu5110, cbd, cbe, cbf) 35.62/13.72 new_esEs11(xuu3110002, xuu6002, ty_Char) -> new_esEs17(xuu3110002, xuu6002) 35.62/13.72 new_esEs11(xuu3110002, xuu6002, ty_Float) -> new_esEs19(xuu3110002, xuu6002) 35.62/13.72 new_compare16(@0, @0) -> EQ 35.62/13.72 new_ltEs13(xuu491, xuu511) -> new_fsEs(new_compare29(xuu491, xuu511)) 35.62/13.72 new_compare10(xuu490, xuu510, False) -> GT 35.62/13.72 new_esEs27(xuu4910, xuu5110, ty_Ordering) -> new_esEs8(xuu4910, xuu5110) 35.62/13.72 new_esEs31(xuu311000, xuu600, app(ty_[], cff)) -> new_esEs20(xuu311000, xuu600, cff) 35.62/13.72 new_mkBalBranch6MkBalBranch4(xuu19, xuu20, xuu21, EmptyFM, xuu41, True, bfa, bfb, bfc) -> error([]) 35.62/13.72 new_sizeFM(Branch(xuu240, xuu241, xuu242, xuu243, xuu244), bfa, bfb, bfc) -> xuu242 35.62/13.72 new_lt12(xuu4910, xuu5110, app(app(ty_@2, bgb), bgc)) -> new_lt4(xuu4910, xuu5110, bgb, bgc) 35.62/13.72 new_compare11(Integer(xuu4900), Integer(xuu5100)) -> new_primCmpInt(xuu4900, xuu5100) 35.62/13.72 new_lt12(xuu4910, xuu5110, ty_Ordering) -> new_lt6(xuu4910, xuu5110) 35.62/13.72 new_esEs28(xuu490, xuu510, app(ty_Maybe, eb)) -> new_esEs4(xuu490, xuu510, eb) 35.62/13.72 new_compare12(xuu490, xuu510) -> new_compare24(xuu490, xuu510, new_esEs8(xuu490, xuu510)) 35.62/13.72 new_primCmpNat1(Zero, xuu4900) -> LT 35.62/13.72 new_mkBranch4(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, xuu179, bef, beg, beh) -> Branch(xuu169, xuu170, new_mkBranchUnbox(new_mkBranch0(xuu176, xuu177, xuu178, xuu179, bef, beg, beh), xuu169, new_mkBranch3(Succ(Succ(Succ(Succ(Succ(Zero))))), xuu171, xuu172, xuu173, xuu174, xuu175, bef, beg, beh), new_ps(new_mkBranch2(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu176, xuu177, xuu178, xuu179, bef, beg, beh), xuu169, new_mkBranch2(Succ(Succ(Succ(Succ(Succ(Zero))))), @2(xuu171, xuu172), xuu173, xuu174, xuu175, bef, beg, beh), new_mkBranch2(Succ(Succ(Succ(Succ(Succ(Zero))))), @2(xuu171, xuu172), xuu173, xuu174, xuu175, bef, beg, beh), bef, beg, beh), bef, beg, beh), new_mkBranch3(Succ(Succ(Succ(Succ(Succ(Zero))))), xuu171, xuu172, xuu173, xuu174, xuu175, bef, beg, beh), new_mkBranch0(xuu176, xuu177, xuu178, xuu179, bef, beg, beh)) 35.62/13.72 new_esEs13(xuu3110000, xuu6000, app(ty_Maybe, hf)) -> new_esEs4(xuu3110000, xuu6000, hf) 35.62/13.72 new_esEs4(Nothing, Nothing, cha) -> True 35.62/13.72 new_esEs26(xuu4911, xuu5111, ty_Float) -> new_esEs19(xuu4911, xuu5111) 35.62/13.72 new_esEs26(xuu4911, xuu5111, ty_Char) -> new_esEs17(xuu4911, xuu5111) 35.62/13.72 new_lt20(xuu4911, xuu5111, app(app(ty_Either, cca), ccb)) -> new_lt9(xuu4911, xuu5111, cca, ccb) 35.62/13.72 new_compare8(:%(xuu4900, xuu4901), :%(xuu5100, xuu5101), ty_Int) -> new_compare9(new_sr(xuu4900, xuu5101), new_sr(xuu5100, xuu4901)) 35.62/13.72 new_esEs5(Right(xuu3110000), Right(xuu6000), chb, app(app(ty_Either, dea), deb)) -> new_esEs5(xuu3110000, xuu6000, dea, deb) 35.62/13.72 new_esEs4(Nothing, Just(xuu6000), cha) -> False 35.62/13.72 new_esEs4(Just(xuu3110000), Nothing, cha) -> False 35.62/13.72 new_lt7(xuu490, xuu510, ec, ed, ee) -> new_esEs8(new_compare14(xuu490, xuu510, ec, ed, ee), LT) 35.62/13.72 new_esEs27(xuu4910, xuu5110, app(ty_Ratio, cbc)) -> new_esEs18(xuu4910, xuu5110, cbc) 35.62/13.72 new_mkBranchResult1(xuu19, xuu20, xuu21, xuu24, xuu41, bfa, bfb, bfc) -> Branch(@2(xuu19, xuu20), xuu21, new_mkBranchUnbox(xuu24, @2(xuu19, xuu20), xuu41, new_ps(xuu24, @2(xuu19, xuu20), xuu41, xuu41, bfa, bfb, bfc), bfa, bfb, bfc), xuu41, xuu24) 35.62/13.72 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.62/13.72 new_esEs28(xuu490, xuu510, app(ty_Ratio, cec)) -> new_esEs18(xuu490, xuu510, cec) 35.62/13.72 new_addListToFM_CAdd(xuu6, @2(xuu31100, xuu31101), h, ba, bb) -> new_addToFM_C0(xuu6, xuu31100, xuu31101, h, ba, bb) 35.62/13.72 new_lt21(xuu490, xuu510, app(ty_Maybe, eb)) -> new_lt14(xuu490, xuu510, eb) 35.62/13.72 new_ltEs5(Right(xuu4910), Right(xuu5110), cf, ty_@0) -> new_ltEs10(xuu4910, xuu5110) 35.62/13.72 new_esEs28(xuu490, xuu510, app(app(ty_@2, cfa), cfb)) -> new_esEs6(xuu490, xuu510, cfa, cfb) 35.62/13.72 new_esEs32(xuu37, xuu39, ty_Char) -> new_esEs17(xuu37, xuu39) 35.62/13.72 new_esEs32(xuu37, xuu39, ty_Ordering) -> new_esEs8(xuu37, xuu39) 35.62/13.72 new_esEs11(xuu3110002, xuu6002, ty_Int) -> new_esEs10(xuu3110002, xuu6002) 35.62/13.72 new_ltEs5(Left(xuu4910), Left(xuu5110), app(ty_[], bd), bc) -> new_ltEs7(xuu4910, xuu5110, bd) 35.62/13.72 new_lt21(xuu490, xuu510, ty_Int) -> new_lt8(xuu490, xuu510) 35.62/13.72 new_ltEs17(False, False) -> True 35.62/13.72 new_ltEs18(xuu4911, xuu5111, app(ty_[], bgh)) -> new_ltEs7(xuu4911, xuu5111, bgh) 35.62/13.72 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.62/13.72 new_lt20(xuu4911, xuu5111, app(ty_Maybe, cbh)) -> new_lt14(xuu4911, xuu5111, cbh) 35.62/13.72 new_lt5(xuu490, xuu510) -> new_esEs8(new_compare7(xuu490, xuu510), LT) 35.62/13.72 new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False 35.62/13.72 new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False 35.62/13.72 new_mkBranch5(xuu19, xuu20, xuu21, xuu41, xuu243, bfa, bfb, bfc) -> new_mkBranchResult1(xuu19, xuu20, xuu21, xuu243, xuu41, bfa, bfb, bfc) 35.62/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_@0, chc) -> new_esEs9(xuu3110000, xuu6000) 35.62/13.72 new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) 35.62/13.72 new_esEs15(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 35.62/13.72 new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.62/13.72 new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs15(xuu3110001, xuu6001) 35.62/13.72 new_mkBalBranch6Size_r(xuu19, xuu20, xuu21, xuu24, xuu41, bfa, bfb, bfc) -> new_sizeFM(xuu24, bfa, bfb, bfc) 35.62/13.72 new_compare24(xuu490, xuu510, True) -> EQ 35.62/13.72 new_ltEs5(Right(xuu4910), Right(xuu5110), cf, ty_Char) -> new_ltEs13(xuu4910, xuu5110) 35.62/13.72 new_gt(xuu99, xuu98) -> new_esEs8(new_compare9(xuu99, xuu98), GT) 35.62/13.72 new_esEs12(xuu3110001, xuu6001, ty_Bool) -> new_esEs14(xuu3110001, xuu6001) 35.62/13.72 new_esEs25(xuu4910, xuu5110, app(app(ty_Either, bfh), bga)) -> new_esEs5(xuu4910, xuu5110, bfh, bga) 35.62/13.72 new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) 35.62/13.72 new_ltEs5(Right(xuu4910), Right(xuu5110), cf, ty_Double) -> new_ltEs11(xuu4910, xuu5110) 35.62/13.72 new_ltEs18(xuu4911, xuu5111, app(app(ty_Either, bhb), bhc)) -> new_ltEs5(xuu4911, xuu5111, bhb, bhc) 35.62/13.72 new_ltEs5(Right(xuu4910), Right(xuu5110), cf, ty_Int) -> new_ltEs6(xuu4910, xuu5110) 35.62/13.72 new_esEs26(xuu4911, xuu5111, ty_Ordering) -> new_esEs8(xuu4911, xuu5111) 35.62/13.72 new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False 35.62/13.72 new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False 35.62/13.72 new_esEs14(False, False) -> True 35.62/13.72 new_mkBalBranch(xuu19, xuu20, xuu21, xuu41, xuu24, bfa, bfb, bfc) -> new_mkBalBranch6MkBalBranch5(xuu19, xuu20, xuu21, xuu24, xuu41, new_esEs8(new_primCmpInt0(xuu41, xuu19, xuu20, xuu21, xuu24, bfa, bfb, bfc), LT), bfa, bfb, bfc) 35.62/13.72 new_ltEs9(Just(xuu4910), Just(xuu5110), app(ty_Maybe, dgb)) -> new_ltEs9(xuu4910, xuu5110, dgb) 35.62/13.72 new_ltEs4(EQ, GT) -> True 35.62/13.72 new_esEs31(xuu311000, xuu600, app(app(ty_Either, chb), chc)) -> new_esEs5(xuu311000, xuu600, chb, chc) 35.62/13.72 new_esEs29(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.62/13.72 new_compare211(xuu49, xuu51, True, cee, cef) -> EQ 35.62/13.72 new_esEs20(:(xuu3110000, xuu3110001), [], cff) -> False 35.62/13.72 new_esEs20([], :(xuu6000, xuu6001), cff) -> False 35.62/13.72 new_compare27(xuu490, xuu510, False, bah, bba) -> new_compare17(xuu490, xuu510, new_ltEs5(xuu490, xuu510, bah, bba), bah, bba) 35.62/13.72 new_esEs29(xuu3110000, xuu6000, app(ty_Maybe, cfg)) -> new_esEs4(xuu3110000, xuu6000, cfg) 35.62/13.72 new_ltEs5(Right(xuu4910), Right(xuu5110), cf, app(ty_[], cg)) -> new_ltEs7(xuu4910, xuu5110, cg) 35.62/13.72 new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs16(xuu3110001, xuu6001) 35.62/13.72 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 35.62/13.72 new_ltEs17(True, False) -> False 35.62/13.72 new_esEs19(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs10(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) 35.62/13.72 new_esEs5(Right(xuu3110000), Right(xuu6000), chb, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.62/13.72 new_compare18(xuu4900, xuu5100, app(app(ty_Either, bda), bdb)) -> new_compare15(xuu4900, xuu5100, bda, bdb) 35.62/13.72 new_esEs7(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ef, eg, eh) -> new_asAs(new_esEs13(xuu3110000, xuu6000, ef), new_asAs(new_esEs12(xuu3110001, xuu6001, eg), new_esEs11(xuu3110002, xuu6002, eh))) 35.62/13.72 new_esEs26(xuu4911, xuu5111, app(app(ty_Either, cca), ccb)) -> new_esEs5(xuu4911, xuu5111, cca, ccb) 35.62/13.72 new_lt15(xuu490, xuu510) -> new_esEs8(new_compare28(xuu490, xuu510), LT) 35.62/13.72 new_esEs32(xuu37, xuu39, ty_@0) -> new_esEs9(xuu37, xuu39) 35.62/13.72 new_ltEs17(False, True) -> True 35.62/13.72 new_ltEs7(xuu491, xuu511, ced) -> new_fsEs(new_compare0(xuu491, xuu511, ced)) 35.62/13.72 new_lt21(xuu490, xuu510, app(app(app(ty_@3, ec), ed), ee)) -> new_lt7(xuu490, xuu510, ec, ed, ee) 35.62/13.72 new_esEs11(xuu3110002, xuu6002, ty_Bool) -> new_esEs14(xuu3110002, xuu6002) 35.62/13.72 new_esEs18(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), chf) -> new_asAs(new_esEs24(xuu3110000, xuu6000, chf), new_esEs23(xuu3110001, xuu6001, chf)) 35.62/13.72 new_esEs11(xuu3110002, xuu6002, ty_Double) -> new_esEs15(xuu3110002, xuu6002) 35.62/13.72 new_esEs12(xuu3110001, xuu6001, app(ty_[], he)) -> new_esEs20(xuu3110001, xuu6001, he) 35.62/13.72 new_ltEs5(Right(xuu4910), Right(xuu5110), cf, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs16(xuu4910, xuu5110, dg, dh, ea) 35.62/13.72 new_esEs29(xuu3110000, xuu6000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs7(xuu3110000, xuu6000, cfh, cga, cgb) 35.62/13.72 new_ltEs19(xuu4912, xuu5112, app(ty_[], cda)) -> new_ltEs7(xuu4912, xuu5112, cda) 35.62/13.72 new_esEs26(xuu4911, xuu5111, ty_Integer) -> new_esEs16(xuu4911, xuu5111) 35.62/13.72 new_not(False) -> True 35.62/13.72 new_compare18(xuu4900, xuu5100, app(ty_Maybe, bch)) -> new_compare19(xuu4900, xuu5100, bch) 35.62/13.72 new_ltEs12(xuu491, xuu511) -> new_fsEs(new_compare5(xuu491, xuu511)) 35.62/13.72 new_esEs31(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) 35.62/13.72 new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.62/13.72 new_esEs5(Right(xuu3110000), Right(xuu6000), chb, app(ty_[], def)) -> new_esEs20(xuu3110000, xuu6000, def) 35.62/13.72 new_primCmpInt(Neg(Succ(xuu4900)), Neg(xuu510)) -> new_primCmpNat1(xuu510, xuu4900) 35.62/13.72 new_compare0(:(xuu4900, xuu4901), [], bcf) -> GT 35.62/13.72 new_esEs8(LT, GT) -> False 35.62/13.72 new_esEs8(GT, LT) -> False 35.62/13.72 new_esEs16(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) 35.62/13.72 new_primPlusNat0(Succ(xuu41200), Succ(xuu10800)) -> Succ(Succ(new_primPlusNat0(xuu41200, xuu10800))) 35.62/13.72 new_esEs26(xuu4911, xuu5111, ty_Double) -> new_esEs15(xuu4911, xuu5111) 35.62/13.72 new_compare18(xuu4900, xuu5100, ty_Float) -> new_compare5(xuu4900, xuu5100) 35.62/13.72 new_esEs5(Left(xuu3110000), Right(xuu6000), chb, chc) -> False 35.62/13.72 new_esEs5(Right(xuu3110000), Left(xuu6000), chb, chc) -> False 35.62/13.72 new_primCmpInt(Pos(Succ(xuu4900)), Pos(xuu510)) -> new_primCmpNat2(xuu4900, xuu510) 35.62/13.72 new_ltEs5(Right(xuu4910), Right(xuu5110), cf, app(app(ty_@2, dd), de)) -> new_ltEs14(xuu4910, xuu5110, dd, de) 35.62/13.72 new_lt14(xuu490, xuu510, eb) -> new_esEs8(new_compare19(xuu490, xuu510, eb), LT) 35.62/13.72 new_compare28(Double(xuu4900, Neg(xuu49010)), Double(xuu5100, Neg(xuu51010))) -> new_compare9(new_sr(xuu4900, Neg(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) 35.62/13.72 new_esEs11(xuu3110002, xuu6002, ty_Integer) -> new_esEs16(xuu3110002, xuu6002) 35.62/13.72 new_compare27(xuu490, xuu510, True, bah, bba) -> EQ 35.62/13.72 new_ltEs20(xuu491, xuu511, app(ty_[], ced)) -> new_ltEs7(xuu491, xuu511, ced) 35.62/13.72 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Int) -> new_ltEs6(xuu4910, xuu5110) 35.62/13.72 new_ltEs4(GT, LT) -> False 35.62/13.72 new_esEs11(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) 35.62/13.72 new_ltEs18(xuu4911, xuu5111, ty_Int) -> new_ltEs6(xuu4911, xuu5111) 35.62/13.72 new_esEs29(xuu3110000, xuu6000, app(ty_Ratio, cgg)) -> new_esEs18(xuu3110000, xuu6000, cgg) 35.62/13.72 new_lt12(xuu4910, xuu5110, app(ty_[], bff)) -> new_lt11(xuu4910, xuu5110, bff) 35.62/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Int, chc) -> new_esEs10(xuu3110000, xuu6000) 35.62/13.72 new_esEs5(Right(xuu3110000), Right(xuu6000), chb, ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.62/13.72 new_esEs27(xuu4910, xuu5110, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs7(xuu4910, xuu5110, cbd, cbe, cbf) 35.62/13.72 new_compare110(xuu121, xuu122, xuu123, xuu124, False, bed, bee) -> GT 35.62/13.72 new_lt20(xuu4911, xuu5111, ty_Int) -> new_lt8(xuu4911, xuu5111) 35.62/13.72 new_ltEs8(xuu491, xuu511) -> new_fsEs(new_compare11(xuu491, xuu511)) 35.62/13.72 new_esEs12(xuu3110001, xuu6001, ty_Int) -> new_esEs10(xuu3110001, xuu6001) 35.62/13.72 new_ps(xuu244, xuu240, xuu236, xuu235, bfa, bfb, bfc) -> new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM(xuu236, bfa, bfb, bfc)), new_sizeFM(xuu244, bfa, bfb, bfc)) 35.62/13.72 new_esEs29(xuu3110000, xuu6000, app(app(ty_@2, cge), cgf)) -> new_esEs6(xuu3110000, xuu6000, cge, cgf) 35.62/13.72 new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.62/13.72 new_lt17(xuu490, xuu510) -> new_esEs8(new_compare29(xuu490, xuu510), LT) 35.62/13.72 new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.62/13.72 new_esEs32(xuu37, xuu39, ty_Float) -> new_esEs19(xuu37, xuu39) 35.62/13.72 new_esEs24(xuu3110000, xuu6000, ty_Int) -> new_esEs10(xuu3110000, xuu6000) 35.62/13.72 new_compare5(Float(xuu4900, Neg(xuu49010)), Float(xuu5100, Neg(xuu51010))) -> new_compare9(new_sr(xuu4900, Neg(xuu51010)), new_sr(Neg(xuu49010), xuu5100)) 35.62/13.72 new_esEs10(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) 35.62/13.72 new_lt21(xuu490, xuu510, ty_Char) -> new_lt17(xuu490, xuu510) 35.62/13.72 new_ltEs5(Right(xuu4910), Right(xuu5110), cf, ty_Ordering) -> new_ltEs4(xuu4910, xuu5110) 35.62/13.72 new_compare10(xuu490, xuu510, True) -> LT 35.62/13.72 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 35.62/13.72 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 35.62/13.72 new_lt21(xuu490, xuu510, ty_Double) -> new_lt15(xuu490, xuu510) 35.62/13.72 new_compare0(:(xuu4900, xuu4901), :(xuu5100, xuu5101), bcf) -> new_primCompAux0(xuu4900, xuu5100, new_compare0(xuu4901, xuu5101, bcf), bcf) 35.62/13.72 new_esEs32(xuu37, xuu39, app(ty_Ratio, bcd)) -> new_esEs18(xuu37, xuu39, bcd) 35.62/13.72 new_lt20(xuu4911, xuu5111, app(app(ty_@2, ccc), ccd)) -> new_lt4(xuu4911, xuu5111, ccc, ccd) 35.62/13.72 new_ltEs5(Left(xuu4910), Left(xuu5110), ty_Float, bc) -> new_ltEs12(xuu4910, xuu5110) 35.62/13.72 new_esEs25(xuu4910, xuu5110, app(ty_Maybe, bfg)) -> new_esEs4(xuu4910, xuu5110, bfg) 35.62/13.72 new_lt21(xuu490, xuu510, ty_Ordering) -> new_lt6(xuu490, xuu510) 35.62/13.72 new_esEs32(xuu37, xuu39, app(app(ty_@2, bcb), bcc)) -> new_esEs6(xuu37, xuu39, bcb, bcc) 35.62/13.72 new_esEs25(xuu4910, xuu5110, ty_Int) -> new_esEs10(xuu4910, xuu5110) 35.62/13.72 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 35.62/13.72 new_compare8(:%(xuu4900, xuu4901), :%(xuu5100, xuu5101), ty_Integer) -> new_compare11(new_sr0(xuu4900, xuu5101), new_sr0(xuu5100, xuu4901)) 35.62/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, ddc), chc) -> new_esEs18(xuu3110000, xuu6000, ddc) 35.62/13.72 new_lt6(xuu490, xuu510) -> new_esEs8(new_compare12(xuu490, xuu510), LT) 35.62/13.72 new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.62/13.72 new_esEs4(Just(xuu3110000), Just(xuu6000), app(ty_[], dfh)) -> new_esEs20(xuu3110000, xuu6000, dfh) 35.62/13.72 new_lt12(xuu4910, xuu5110, ty_Float) -> new_lt16(xuu4910, xuu5110) 35.62/13.72 new_ltEs19(xuu4912, xuu5112, app(ty_Ratio, cdg)) -> new_ltEs15(xuu4912, xuu5112, cdg) 35.62/13.72 new_primCmpNat0(Succ(xuu49000), Succ(xuu51000)) -> new_primCmpNat0(xuu49000, xuu51000) 35.62/13.72 new_mkBranchUnbox(xuu234, xuu158, xuu160, xuu224, bea, beb, bec) -> xuu224 35.62/13.72 new_sizeFM(EmptyFM, bfa, bfb, bfc) -> Pos(Zero) 35.62/13.72 new_primCmpInt(Pos(Zero), Pos(Succ(xuu5100))) -> new_primCmpNat1(Zero, xuu5100) 35.62/13.72 new_esEs12(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) 35.62/13.72 new_compare110(xuu121, xuu122, xuu123, xuu124, True, bed, bee) -> LT 35.62/13.72 new_esEs27(xuu4910, xuu5110, app(ty_Maybe, caf)) -> new_esEs4(xuu4910, xuu5110, caf) 35.62/13.72 new_ltEs20(xuu491, xuu511, ty_Ordering) -> new_ltEs4(xuu491, xuu511) 35.62/13.72 new_esEs26(xuu4911, xuu5111, ty_Int) -> new_esEs10(xuu4911, xuu5111) 35.62/13.72 new_primMinusNat0(Zero, Succ(xuu10800)) -> Neg(Succ(xuu10800)) 35.62/13.72 new_esEs22(xuu3110000, xuu6000, app(ty_[], dcb)) -> new_esEs20(xuu3110000, xuu6000, dcb) 35.62/13.72 new_esEs28(xuu490, xuu510, ty_Ordering) -> new_esEs8(xuu490, xuu510) 35.62/13.72 new_compare18(xuu4900, xuu5100, ty_@0) -> new_compare16(xuu4900, xuu5100) 35.62/13.72 new_lt20(xuu4911, xuu5111, ty_Bool) -> new_lt5(xuu4911, xuu5111) 35.62/13.72 new_compare5(Float(xuu4900, Pos(xuu49010)), Float(xuu5100, Pos(xuu51010))) -> new_compare9(new_sr(xuu4900, Pos(xuu51010)), new_sr(Pos(xuu49010), xuu5100)) 35.62/13.72 new_mkBalBranch6MkBalBranch3(xuu19, xuu20, xuu21, xuu24, xuu41, False, bfa, bfb, bfc) -> new_mkBranchResult1(xuu19, xuu20, xuu21, xuu24, xuu41, bfa, bfb, bfc) 35.62/13.72 new_esEs32(xuu37, xuu39, app(ty_[], bce)) -> new_esEs20(xuu37, xuu39, bce) 35.62/13.72 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 35.62/13.72 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 35.62/13.72 new_esEs13(xuu3110000, xuu6000, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.62/13.72 new_mkBranch(xuu158, xuu159, xuu160, xuu161, xuu162, xuu163, xuu164, xuu165, xuu166, bea, beb, bec) -> new_mkBranchResult(xuu158, xuu159, xuu161, xuu162, xuu163, xuu164, xuu165, xuu166, xuu160, bea, beb, bec) 35.62/13.72 new_ltEs18(xuu4911, xuu5111, app(ty_Ratio, bhf)) -> new_ltEs15(xuu4911, xuu5111, bhf) 35.62/13.72 new_ltEs9(Just(xuu4910), Just(xuu5110), ty_Float) -> new_ltEs12(xuu4910, xuu5110) 35.62/13.72 new_esEs29(xuu3110000, xuu6000, ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.62/13.72 new_lt21(xuu490, xuu510, app(app(ty_@2, cfa), cfb)) -> new_lt4(xuu490, xuu510, cfa, cfb) 35.62/13.72 new_esEs31(xuu311000, xuu600, app(ty_Ratio, chf)) -> new_esEs18(xuu311000, xuu600, chf) 35.62/13.72 new_esEs21(xuu3110001, xuu6001, app(ty_[], dah)) -> new_esEs20(xuu3110001, xuu6001, dah) 35.62/13.72 new_ltEs20(xuu491, xuu511, app(ty_Ratio, ceh)) -> new_ltEs15(xuu491, xuu511, ceh) 35.62/13.72 new_esEs5(Right(xuu3110000), Right(xuu6000), chb, ty_Float) -> new_esEs19(xuu3110000, xuu6000) 35.62/13.72 new_esEs13(xuu3110000, xuu6000, ty_Double) -> new_esEs15(xuu3110000, xuu6000) 35.62/13.72 new_compare29(Char(xuu4900), Char(xuu5100)) -> new_primCmpNat0(xuu4900, xuu5100) 35.62/13.72 new_ltEs19(xuu4912, xuu5112, ty_Ordering) -> new_ltEs4(xuu4912, xuu5112) 35.62/13.72 new_esEs26(xuu4911, xuu5111, app(ty_Maybe, cbh)) -> new_esEs4(xuu4911, xuu5111, cbh) 35.62/13.72 new_primEqNat0(Zero, Zero) -> True 35.62/13.72 new_lt19(xuu4910, xuu5110, ty_Ordering) -> new_lt6(xuu4910, xuu5110) 35.62/13.72 new_esEs28(xuu490, xuu510, app(app(ty_Either, bah), bba)) -> new_esEs5(xuu490, xuu510, bah, bba) 35.62/13.72 new_ltEs9(Just(xuu4910), Nothing, ceg) -> False 35.62/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Integer, chc) -> new_esEs16(xuu3110000, xuu6000) 35.62/13.72 new_ltEs5(Right(xuu4910), Right(xuu5110), cf, app(ty_Maybe, da)) -> new_ltEs9(xuu4910, xuu5110, da) 35.62/13.72 new_lt19(xuu4910, xuu5110, ty_Double) -> new_lt15(xuu4910, xuu5110) 35.62/13.72 new_ltEs9(Nothing, Nothing, ceg) -> True 35.62/13.72 new_esEs13(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) 35.62/13.72 new_lt12(xuu4910, xuu5110, app(app(ty_Either, bfh), bga)) -> new_lt9(xuu4910, xuu5110, bfh, bga) 35.62/13.72 new_ltEs5(Left(xuu4910), Left(xuu5110), app(ty_Ratio, cb), bc) -> new_ltEs15(xuu4910, xuu5110, cb) 35.62/13.72 new_esEs29(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) 35.62/13.72 new_lt9(xuu490, xuu510, bah, bba) -> new_esEs8(new_compare15(xuu490, xuu510, bah, bba), LT) 35.62/13.72 new_ltEs4(GT, GT) -> True 35.62/13.72 new_ltEs17(True, True) -> True 35.62/13.72 new_esEs32(xuu37, xuu39, ty_Bool) -> new_esEs14(xuu37, xuu39) 35.62/13.72 new_compare113(xuu490, xuu510, False, ec, ed, ee) -> GT 35.62/13.72 new_esEs31(xuu311000, xuu600, app(app(ty_@2, chd), che)) -> new_esEs6(xuu311000, xuu600, chd, che) 35.62/13.72 new_asAs(False, xuu72) -> False 35.62/13.72 new_addToFM_C20(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, True, bfa, bfb, bfc) -> new_mkBalBranch(xuu19, xuu20, xuu21, new_addToFM_C0(xuu23, @2(xuu25, xuu26), xuu27, bfa, bfb, bfc), xuu24, bfa, bfb, bfc) 35.62/13.72 new_mkBalBranch6Size_l(xuu19, xuu20, xuu21, xuu24, xuu41, bfa, bfb, bfc) -> new_sizeFM(xuu41, bfa, bfb, bfc) 35.62/13.72 new_compare18(xuu4900, xuu5100, app(app(ty_@2, bdc), bdd)) -> new_compare6(xuu4900, xuu5100, bdc, bdd) 35.62/13.72 new_lt20(xuu4911, xuu5111, ty_Ordering) -> new_lt6(xuu4911, xuu5111) 35.62/13.72 new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs14(xuu3110001, xuu6001) 35.62/13.72 new_esEs24(xuu3110000, xuu6000, ty_Integer) -> new_esEs16(xuu3110000, xuu6000) 35.62/13.72 new_esEs12(xuu3110001, xuu6001, ty_Integer) -> new_esEs16(xuu3110001, xuu6001) 35.62/13.72 new_mkBranchResult0(xuu176, xuu177, xuu179, xuu178, bef, beg, beh) -> Branch(xuu176, xuu177, new_mkBranchUnbox(xuu179, xuu176, xuu178, new_ps(xuu179, xuu176, xuu178, xuu178, bef, beg, beh), bef, beg, beh), xuu178, xuu179) 35.62/13.72 new_esEs8(EQ, GT) -> False 35.62/13.72 new_esEs8(GT, EQ) -> False 35.62/13.72 new_lt19(xuu4910, xuu5110, ty_Char) -> new_lt17(xuu4910, xuu5110) 35.62/13.72 new_lt20(xuu4911, xuu5111, ty_Double) -> new_lt15(xuu4911, xuu5111) 35.62/13.72 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) 35.62/13.72 new_esEs4(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs14(xuu3110000, xuu6000) 35.62/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Double, chc) -> new_esEs15(xuu3110000, xuu6000) 35.62/13.72 new_ltEs14(@2(xuu4910, xuu4911), @2(xuu5110, xuu5111), bfd, bfe) -> new_pePe(new_lt12(xuu4910, xuu5110, bfd), new_asAs(new_esEs25(xuu4910, xuu5110, bfd), new_ltEs18(xuu4911, xuu5111, bfe))) 35.62/13.72 new_mkBalBranch6MkBalBranch4(xuu19, xuu20, xuu21, xuu24, xuu41, False, bfa, bfb, bfc) -> new_mkBalBranch6MkBalBranch3(xuu19, xuu20, xuu21, xuu24, xuu41, new_gt(new_mkBalBranch6Size_l(xuu19, xuu20, xuu21, xuu24, xuu41, bfa, bfb, bfc), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu19, xuu20, xuu21, xuu24, xuu41, bfa, bfb, bfc))), bfa, bfb, bfc) 35.62/13.72 new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) 35.62/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, dcd), dce), dcf), chc) -> new_esEs7(xuu3110000, xuu6000, dcd, dce, dcf) 35.62/13.72 new_mkBalBranch6MkBalBranch5(xuu19, xuu20, xuu21, xuu24, xuu41, True, bfa, bfb, bfc) -> new_mkBranchResult1(xuu19, xuu20, xuu21, xuu24, xuu41, bfa, bfb, bfc) 35.62/13.72 new_esEs5(Left(xuu3110000), Left(xuu6000), ty_Char, chc) -> new_esEs17(xuu3110000, xuu6000) 35.62/13.72 35.62/13.72 The set Q consists of the following terms: 35.62/13.72 35.62/13.72 new_primCmpNat0(Succ(x0), Zero) 35.62/13.72 new_esEs31(x0, x1, app(ty_[], x2)) 35.62/13.72 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 35.62/13.72 new_lt21(x0, x1, ty_Integer) 35.62/13.72 new_esEs8(EQ, EQ) 35.62/13.72 new_primCompAux00(x0, LT) 35.62/13.72 new_primCmpNat2(x0, Succ(x1)) 35.62/13.72 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6, x7) 35.62/13.72 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_lt12(x0, x1, ty_Integer) 35.62/13.72 new_compare25(x0, x1, False, x2) 35.62/13.72 new_esEs4(Just(x0), Just(x1), ty_Ordering) 35.62/13.72 new_compare110(x0, x1, x2, x3, False, x4, x5) 35.62/13.72 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 35.62/13.72 new_esEs29(x0, x1, ty_Char) 35.62/13.72 new_esEs4(Just(x0), Just(x1), ty_Double) 35.62/13.72 new_ltEs19(x0, x1, ty_Int) 35.62/13.72 new_esEs11(x0, x1, ty_Bool) 35.62/13.72 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.72 new_lt20(x0, x1, ty_Int) 35.62/13.72 new_esEs31(x0, x1, app(ty_Maybe, x2)) 35.62/13.72 new_esEs13(x0, x1, ty_Ordering) 35.62/13.72 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 35.62/13.72 new_ltEs4(LT, LT) 35.62/13.72 new_lt6(x0, x1) 35.62/13.72 new_ltEs9(Just(x0), Just(x1), ty_Float) 35.62/13.72 new_esEs31(x0, x1, ty_Float) 35.62/13.72 new_esEs32(x0, x1, ty_Float) 35.62/13.72 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_ltEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 35.62/13.72 new_ltEs18(x0, x1, ty_Double) 35.62/13.72 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 35.62/13.72 new_ltEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) 35.62/13.72 new_esEs12(x0, x1, ty_Char) 35.62/13.72 new_esEs13(x0, x1, ty_Int) 35.62/13.72 new_lt20(x0, x1, ty_Char) 35.62/13.72 new_esEs4(Just(x0), Just(x1), ty_Int) 35.62/13.72 new_lt21(x0, x1, app(ty_[], x2)) 35.62/13.72 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.72 new_mkBranch0(x0, x1, x2, x3, x4, x5, x6) 35.62/13.72 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, Branch(x8, x9, x10, x11, x12), False, x13, x14, x15) 35.62/13.72 new_esEs28(x0, x1, app(ty_[], x2)) 35.62/13.72 new_lt8(x0, x1) 35.62/13.72 new_primCmpInt0(EmptyFM, x0, x1, x2, x3, x4, x5, x6) 35.62/13.72 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.72 new_primEqInt(Pos(Zero), Pos(Zero)) 35.62/13.72 new_compare17(x0, x1, True, x2, x3) 35.62/13.72 new_primMinusNat0(Zero, Zero) 35.62/13.72 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.72 new_ltEs20(x0, x1, ty_Float) 35.62/13.72 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.72 new_addToFM_C0(Branch(@2(x0, x1), x2, x3, x4, x5), @2(x6, x7), x8, x9, x10, x11) 35.62/13.72 new_compare27(x0, x1, False, x2, x3) 35.62/13.72 new_lt10(x0, x1) 35.62/13.72 new_ltEs18(x0, x1, ty_Int) 35.62/13.72 new_lt19(x0, x1, app(ty_Maybe, x2)) 35.62/13.72 new_esEs11(x0, x1, ty_Integer) 35.62/13.72 new_asAs(False, x0) 35.62/13.72 new_esEs22(x0, x1, app(ty_[], x2)) 35.62/13.72 new_mkBranchUnbox(x0, x1, x2, x3, x4, x5, x6) 35.62/13.72 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 35.62/13.72 new_esEs29(x0, x1, app(ty_Maybe, x2)) 35.62/13.72 new_lt12(x0, x1, ty_@0) 35.62/13.72 new_esEs14(True, True) 35.62/13.72 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 35.62/13.72 new_ltEs18(x0, x1, ty_Ordering) 35.62/13.72 new_mkBranch3(x0, x1, x2, x3, x4, x5, x6, x7, x8) 35.62/13.72 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 35.62/13.72 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 35.62/13.72 new_compare18(x0, x1, app(ty_Ratio, x2)) 35.62/13.72 new_esEs28(x0, x1, ty_Integer) 35.62/13.72 new_primEqNat0(Zero, Succ(x0)) 35.62/13.72 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.72 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.72 new_ltEs19(x0, x1, ty_Ordering) 35.62/13.72 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 35.62/13.72 new_esEs25(x0, x1, ty_Float) 35.62/13.72 new_primEqInt(Neg(Zero), Neg(Zero)) 35.62/13.72 new_compare18(x0, x1, ty_Float) 35.62/13.72 new_compare111(x0, x1, x2, x3, False, x4, x5, x6) 35.62/13.72 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, x4, True, x5, x6, x7) 35.62/13.72 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 35.62/13.72 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 35.62/13.72 new_esEs12(x0, x1, ty_Bool) 35.62/13.72 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 35.62/13.72 new_compare18(x0, x1, ty_Integer) 35.62/13.72 new_esEs11(x0, x1, ty_@0) 35.62/13.72 new_primMinusNat0(Succ(x0), Succ(x1)) 35.62/13.72 new_esEs26(x0, x1, ty_Float) 35.62/13.72 new_esEs28(x0, x1, ty_Float) 35.62/13.72 new_pePe(True, x0) 35.62/13.73 new_sIZE_RATIO 35.62/13.73 new_esEs12(x0, x1, ty_Ordering) 35.62/13.73 new_lt7(x0, x1, x2, x3, x4) 35.62/13.73 new_esEs25(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_compare28(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 35.62/13.73 new_compare28(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 35.62/13.73 new_compare28(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 35.62/13.73 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 35.62/13.73 new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, x7, x8, False, x9, x10, x11) 35.62/13.73 new_esEs22(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_esEs28(x0, x1, ty_Bool) 35.62/13.73 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_esEs14(False, True) 35.62/13.73 new_esEs14(True, False) 35.62/13.73 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 35.62/13.73 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 35.62/13.73 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 35.62/13.73 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 35.62/13.73 new_ltEs17(True, True) 35.62/13.73 new_esEs11(x0, x1, ty_Char) 35.62/13.73 new_lt20(x0, x1, ty_Double) 35.62/13.73 new_esEs28(x0, x1, ty_@0) 35.62/13.73 new_compare13(x0, x1, False, x2) 35.62/13.73 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 35.62/13.73 new_esEs27(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 35.62/13.73 new_esEs12(x0, x1, app(ty_Maybe, x2)) 35.62/13.73 new_ltEs19(x0, x1, ty_Double) 35.62/13.73 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 35.62/13.73 new_primCmpNat0(Succ(x0), Succ(x1)) 35.62/13.73 new_primEqInt(Pos(Zero), Neg(Zero)) 35.62/13.73 new_primEqInt(Neg(Zero), Pos(Zero)) 35.62/13.73 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_primPlusNat1(Zero, x0) 35.62/13.73 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, x4, False, x5, x6, x7) 35.62/13.73 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 35.62/13.73 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 35.62/13.73 new_ltEs19(x0, x1, ty_Char) 35.62/13.73 new_esEs21(x0, x1, app(ty_Maybe, x2)) 35.62/13.73 new_esEs12(x0, x1, ty_Integer) 35.62/13.73 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 35.62/13.73 new_esEs20([], [], x0) 35.62/13.73 new_esEs27(x0, x1, ty_Integer) 35.62/13.73 new_lt20(x0, x1, app(ty_Maybe, x2)) 35.62/13.73 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 35.62/13.73 new_lt19(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_lt12(x0, x1, app(ty_[], x2)) 35.62/13.73 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 35.62/13.73 new_esEs26(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 35.62/13.73 new_compare17(x0, x1, False, x2, x3) 35.62/13.73 new_compare111(x0, x1, x2, x3, True, x4, x5, x6) 35.62/13.73 new_ltEs4(GT, EQ) 35.62/13.73 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_ltEs4(EQ, GT) 35.62/13.73 new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, x7, x8, False, x9, x10, x11) 35.62/13.73 new_esEs28(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 35.62/13.73 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 35.62/13.73 new_lt20(x0, x1, ty_@0) 35.62/13.73 new_esEs10(x0, x1) 35.62/13.73 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 35.62/13.73 new_esEs29(x0, x1, ty_Ordering) 35.62/13.73 new_ltEs19(x0, x1, ty_Bool) 35.62/13.73 new_ltEs9(Nothing, Just(x0), x1) 35.62/13.73 new_primPlusNat0(Zero, Succ(x0)) 35.62/13.73 new_primEqNat0(Succ(x0), Succ(x1)) 35.62/13.73 new_compare14(x0, x1, x2, x3, x4) 35.62/13.73 new_primMulInt(Neg(x0), Neg(x1)) 35.62/13.73 new_ltEs18(x0, x1, ty_@0) 35.62/13.73 new_esEs11(x0, x1, ty_Float) 35.62/13.73 new_esEs9(@0, @0) 35.62/13.73 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.73 new_esEs4(Just(x0), Just(x1), ty_Bool) 35.62/13.73 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 35.62/13.73 new_esEs31(x0, x1, ty_@0) 35.62/13.73 new_esEs15(Double(x0, x1), Double(x2, x3)) 35.62/13.73 new_mkBranch5(x0, x1, x2, x3, x4, x5, x6, x7) 35.62/13.73 new_primPlusNat1(Succ(x0), x1) 35.62/13.73 new_mkBranchResult(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 35.62/13.73 new_esEs27(x0, x1, ty_Bool) 35.62/13.73 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 35.62/13.73 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 35.62/13.73 new_compare29(Char(x0), Char(x1)) 35.62/13.73 new_lt20(x0, x1, ty_Integer) 35.62/13.73 new_lt21(x0, x1, ty_Int) 35.62/13.73 new_ltEs7(x0, x1, x2) 35.62/13.73 new_esEs26(x0, x1, app(ty_Maybe, x2)) 35.62/13.73 new_compare24(x0, x1, True) 35.62/13.73 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.73 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.73 new_ltEs9(Just(x0), Just(x1), ty_Bool) 35.62/13.73 new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5, x6, x7) 35.62/13.73 new_ltEs4(EQ, LT) 35.62/13.73 new_ltEs4(LT, EQ) 35.62/13.73 new_compare11(Integer(x0), Integer(x1)) 35.62/13.73 new_compare18(x0, x1, ty_@0) 35.62/13.73 new_esEs32(x0, x1, ty_Bool) 35.62/13.73 new_lt20(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 35.62/13.73 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 35.62/13.73 new_ltEs4(GT, GT) 35.62/13.73 new_primCmpInt0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9, x10, x11) 35.62/13.73 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), x8, True, x9, x10, x11) 35.62/13.73 new_esEs32(x0, x1, app(ty_Maybe, x2)) 35.62/13.73 new_compare110(x0, x1, x2, x3, True, x4, x5) 35.62/13.73 new_compare27(x0, x1, True, x2, x3) 35.62/13.73 new_esEs31(x0, x1, ty_Bool) 35.62/13.73 new_compare19(x0, x1, x2) 35.62/13.73 new_compare26(x0, x1, False, x2, x3, x4) 35.62/13.73 new_lt20(x0, x1, ty_Bool) 35.62/13.73 new_esEs21(x0, x1, ty_Double) 35.62/13.73 new_esEs25(x0, x1, ty_@0) 35.62/13.73 new_esEs4(Just(x0), Nothing, x1) 35.62/13.73 new_esEs11(x0, x1, ty_Int) 35.62/13.73 new_ltEs19(x0, x1, ty_@0) 35.62/13.73 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_esEs32(x0, x1, app(ty_[], x2)) 35.62/13.73 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 35.62/13.73 new_lt19(x0, x1, ty_Int) 35.62/13.73 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 35.62/13.73 new_esEs11(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_primMulNat0(Zero, Succ(x0)) 35.62/13.73 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 35.62/13.73 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 35.62/13.73 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, x7, False, x8, x9, x10) 35.62/13.73 new_ltEs6(x0, x1) 35.62/13.73 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 35.62/13.73 new_ltEs13(x0, x1) 35.62/13.73 new_primMulNat0(Succ(x0), Succ(x1)) 35.62/13.73 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.73 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 35.62/13.73 new_lt12(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_ltEs19(x0, x1, ty_Integer) 35.62/13.73 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 35.62/13.73 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.73 new_esEs20(:(x0, x1), :(x2, x3), x4) 35.62/13.73 new_esEs8(GT, GT) 35.62/13.73 new_lt19(x0, x1, ty_Float) 35.62/13.73 new_esEs8(LT, EQ) 35.62/13.73 new_esEs8(EQ, LT) 35.62/13.73 new_esEs26(x0, x1, ty_Integer) 35.62/13.73 new_esEs13(x0, x1, ty_Integer) 35.62/13.73 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.73 new_ltEs9(Just(x0), Just(x1), app(ty_[], x2)) 35.62/13.73 new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.73 new_esEs5(Left(x0), Right(x1), x2, x3) 35.62/13.73 new_esEs5(Right(x0), Left(x1), x2, x3) 35.62/13.73 new_primCmpInt(Neg(Zero), Neg(Zero)) 35.62/13.73 new_esEs22(x0, x1, ty_Integer) 35.62/13.73 new_esEs31(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_esEs29(x0, x1, ty_Double) 35.62/13.73 new_compare13(x0, x1, True, x2) 35.62/13.73 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_lt21(x0, x1, app(ty_Maybe, x2)) 35.62/13.73 new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), True, x9, x10, x11) 35.62/13.73 new_esEs11(x0, x1, app(ty_[], x2)) 35.62/13.73 new_esEs29(x0, x1, ty_@0) 35.62/13.73 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 35.62/13.73 new_esEs8(LT, LT) 35.62/13.73 new_primPlusInt(Neg(x0), Neg(x1)) 35.62/13.73 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 35.62/13.73 new_primCmpInt(Pos(Zero), Neg(Zero)) 35.62/13.73 new_primCmpInt(Neg(Zero), Pos(Zero)) 35.62/13.73 new_esEs29(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_ltEs5(Left(x0), Right(x1), x2, x3) 35.62/13.73 new_ltEs9(Just(x0), Just(x1), ty_Char) 35.62/13.73 new_esEs26(x0, x1, app(ty_[], x2)) 35.62/13.73 new_ltEs5(Right(x0), Left(x1), x2, x3) 35.62/13.73 new_esEs26(x0, x1, ty_Ordering) 35.62/13.73 new_primMulInt(Pos(x0), Neg(x1)) 35.62/13.73 new_primMulInt(Neg(x0), Pos(x1)) 35.62/13.73 new_esEs4(Just(x0), Just(x1), ty_Char) 35.62/13.73 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.73 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 35.62/13.73 new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 35.62/13.73 new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 35.62/13.73 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.73 new_ltEs17(True, False) 35.62/13.73 new_ltEs17(False, True) 35.62/13.73 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 35.62/13.73 new_lt21(x0, x1, ty_Float) 35.62/13.73 new_compare9(x0, x1) 35.62/13.73 new_esEs12(x0, x1, ty_Double) 35.62/13.73 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.73 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10, x11) 35.62/13.73 new_lt21(x0, x1, ty_Bool) 35.62/13.73 new_esEs31(x0, x1, ty_Integer) 35.62/13.73 new_lt12(x0, x1, ty_Double) 35.62/13.73 new_lt13(x0, x1) 35.62/13.73 new_ltEs9(Just(x0), Just(x1), ty_Integer) 35.62/13.73 new_primMulInt(Pos(x0), Pos(x1)) 35.62/13.73 new_esEs28(x0, x1, ty_Ordering) 35.62/13.73 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.73 new_compare18(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.73 new_esEs22(x0, x1, ty_Ordering) 35.62/13.73 new_esEs13(x0, x1, app(ty_Maybe, x2)) 35.62/13.73 new_lt20(x0, x1, app(ty_[], x2)) 35.62/13.73 new_compare10(x0, x1, True) 35.62/13.73 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 35.62/13.73 new_asAs(True, x0) 35.62/13.73 new_esEs32(x0, x1, ty_Integer) 35.62/13.73 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.73 new_esEs11(x0, x1, app(ty_Maybe, x2)) 35.62/13.73 new_esEs31(x0, x1, ty_Ordering) 35.62/13.73 new_primCompAux00(x0, GT) 35.62/13.73 new_esEs25(x0, x1, ty_Double) 35.62/13.73 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 35.62/13.73 new_compare18(x0, x1, ty_Double) 35.62/13.73 new_esEs13(x0, x1, ty_Char) 35.62/13.73 new_compare15(x0, x1, x2, x3) 35.62/13.73 new_esEs23(x0, x1, ty_Int) 35.62/13.73 new_esEs27(x0, x1, ty_Float) 35.62/13.73 new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5, x6, x7) 35.62/13.73 new_lt21(x0, x1, ty_Char) 35.62/13.73 new_esEs32(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_compare112(x0, x1, False) 35.62/13.73 new_esEs12(x0, x1, ty_@0) 35.62/13.73 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 35.62/13.73 new_esEs13(x0, x1, ty_Bool) 35.62/13.73 new_lt20(x0, x1, ty_Ordering) 35.62/13.73 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.73 new_gt(x0, x1) 35.62/13.73 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.73 new_esEs12(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_esEs27(x0, x1, ty_Ordering) 35.62/13.73 new_esEs4(Just(x0), Just(x1), ty_Float) 35.62/13.73 new_ltEs20(x0, x1, ty_Int) 35.62/13.73 new_mkBranch(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 35.62/13.73 new_esEs31(x0, x1, ty_Double) 35.62/13.73 new_ltEs9(Just(x0), Just(x1), ty_Double) 35.62/13.73 new_compare113(x0, x1, True, x2, x3, x4) 35.62/13.73 new_lt19(x0, x1, ty_@0) 35.62/13.73 new_esEs26(x0, x1, ty_Char) 35.62/13.73 new_ltEs18(x0, x1, ty_Float) 35.62/13.73 new_esEs17(Char(x0), Char(x1)) 35.62/13.73 new_primCompAux0(x0, x1, x2, x3) 35.62/13.73 new_primMulNat0(Zero, Zero) 35.62/13.73 new_esEs22(x0, x1, ty_@0) 35.62/13.73 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 35.62/13.73 new_esEs32(x0, x1, ty_Ordering) 35.62/13.73 new_esEs25(x0, x1, ty_Int) 35.62/13.73 new_compare0([], [], x0) 35.62/13.73 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.73 new_lt11(x0, x1, x2) 35.62/13.73 new_esEs27(x0, x1, ty_Int) 35.62/13.73 new_esEs26(x0, x1, ty_Int) 35.62/13.73 new_primCmpNat1(Succ(x0), x1) 35.62/13.73 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 35.62/13.73 new_compare16(@0, @0) 35.62/13.73 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 35.62/13.73 new_ltEs20(x0, x1, ty_Ordering) 35.62/13.73 new_ltEs9(Just(x0), Nothing, x1) 35.62/13.73 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.73 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 35.62/13.73 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10, x11) 35.62/13.73 new_compare18(x0, x1, ty_Ordering) 35.62/13.73 new_esEs23(x0, x1, ty_Integer) 35.62/13.73 new_ltEs19(x0, x1, ty_Float) 35.62/13.73 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 35.62/13.73 new_primCmpNat0(Zero, Succ(x0)) 35.62/13.73 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 35.62/13.73 new_esEs22(x0, x1, app(ty_Maybe, x2)) 35.62/13.73 new_esEs29(x0, x1, app(ty_[], x2)) 35.62/13.73 new_esEs30(x0, x1, x2, x3, True, x4, x5) 35.62/13.73 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 35.62/13.73 new_esEs21(x0, x1, ty_Bool) 35.62/13.73 new_lt19(x0, x1, ty_Integer) 35.62/13.73 new_esEs20(:(x0, x1), [], x2) 35.62/13.73 new_compare24(x0, x1, False) 35.62/13.73 new_esEs27(x0, x1, ty_Double) 35.62/13.73 new_esEs32(x0, x1, ty_Int) 35.62/13.73 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 35.62/13.73 new_ltEs9(Just(x0), Just(x1), ty_Int) 35.62/13.73 new_esEs25(x0, x1, ty_Ordering) 35.62/13.73 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 35.62/13.73 new_esEs27(x0, x1, ty_Char) 35.62/13.73 new_primPlusNat0(Succ(x0), Succ(x1)) 35.62/13.73 new_compare210(x0, x1, False) 35.62/13.73 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, x12, False, x13, x14, x15) 35.62/13.73 new_ltEs9(Just(x0), Just(x1), ty_Ordering) 35.62/13.73 new_sr0(Integer(x0), Integer(x1)) 35.62/13.73 new_mkBranch2(x0, x1, x2, x3, x4, x5, x6, x7) 35.62/13.73 new_esEs32(x0, x1, ty_Double) 35.62/13.73 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 35.62/13.73 new_esEs32(x0, x1, ty_Char) 35.62/13.73 new_esEs21(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_compare211(@2(x0, x1), @2(x2, x3), False, x4, x5) 35.62/13.73 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_lt5(x0, x1) 35.62/13.73 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 35.62/13.73 new_esEs24(x0, x1, ty_Int) 35.62/13.73 new_primPlusNat0(Zero, Zero) 35.62/13.73 new_ltEs4(LT, GT) 35.62/13.73 new_ltEs4(GT, LT) 35.62/13.73 new_lt17(x0, x1) 35.62/13.73 new_esEs13(x0, x1, ty_Float) 35.62/13.73 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 35.62/13.73 new_addToFM_C0(EmptyFM, x0, x1, x2, x3, x4) 35.62/13.73 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 35.62/13.73 new_primMinusNat0(Zero, Succ(x0)) 35.62/13.73 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.73 new_primPlusInt(Pos(x0), Neg(x1)) 35.62/13.73 new_primPlusInt(Neg(x0), Pos(x1)) 35.62/13.73 new_esEs4(Nothing, Just(x0), x1) 35.62/13.73 new_not(True) 35.62/13.73 new_ltEs19(x0, x1, app(ty_[], x2)) 35.62/13.73 new_esEs28(x0, x1, ty_Double) 35.62/13.73 new_esEs26(x0, x1, ty_Bool) 35.62/13.73 new_lt19(x0, x1, ty_Char) 35.62/13.73 new_esEs31(x0, x1, ty_Char) 35.62/13.73 new_esEs26(x0, x1, ty_@0) 35.62/13.73 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 35.62/13.73 new_esEs8(EQ, GT) 35.62/13.73 new_esEs8(GT, EQ) 35.62/13.73 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_pePe(False, x0) 35.62/13.73 new_esEs22(x0, x1, ty_Int) 35.62/13.73 new_lt15(x0, x1) 35.62/13.73 new_ps(x0, x1, x2, x3, x4, x5, x6) 35.62/13.73 new_primCmpNat1(Zero, x0) 35.62/13.73 new_mkBalBranch(x0, x1, x2, x3, x4, x5, x6, x7) 35.62/13.73 new_esEs26(x0, x1, ty_Double) 35.62/13.73 new_esEs25(x0, x1, app(ty_[], x2)) 35.62/13.73 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 35.62/13.73 new_ltEs12(x0, x1) 35.62/13.73 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.73 new_ltEs15(x0, x1, x2) 35.62/13.73 new_mkBranch4(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14) 35.62/13.73 new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10, x11) 35.62/13.73 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 35.62/13.73 new_esEs21(x0, x1, app(ty_[], x2)) 35.62/13.73 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.73 new_compare211(x0, x1, True, x2, x3) 35.62/13.73 new_esEs21(x0, x1, ty_@0) 35.62/13.73 new_ltEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) 35.62/13.73 new_ltEs20(x0, x1, ty_@0) 35.62/13.73 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.73 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 35.62/13.73 new_compare18(x0, x1, app(ty_[], x2)) 35.62/13.73 new_lt20(x0, x1, ty_Float) 35.62/13.73 new_compare10(x0, x1, False) 35.62/13.73 new_ltEs20(x0, x1, ty_Bool) 35.62/13.73 new_esEs22(x0, x1, ty_Bool) 35.62/13.73 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 35.62/13.73 new_esEs21(x0, x1, ty_Float) 35.62/13.73 new_lt21(x0, x1, ty_Ordering) 35.62/13.73 new_esEs28(x0, x1, ty_Int) 35.62/13.73 new_compare12(x0, x1) 35.62/13.73 new_primEqNat0(Succ(x0), Zero) 35.62/13.73 new_mkBranch1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16) 35.62/13.73 new_ltEs4(EQ, EQ) 35.62/13.73 new_esEs28(x0, x1, app(ty_Maybe, x2)) 35.62/13.73 new_esEs22(x0, x1, ty_Char) 35.62/13.73 new_esEs31(x0, x1, ty_Int) 35.62/13.73 new_compare210(x0, x1, True) 35.62/13.73 new_ltEs20(x0, x1, ty_Char) 35.62/13.73 new_ltEs18(x0, x1, app(ty_[], x2)) 35.62/13.73 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.73 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 35.62/13.73 new_esEs28(x0, x1, ty_Char) 35.62/13.73 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 35.62/13.73 new_esEs4(Just(x0), Just(x1), ty_Integer) 35.62/13.73 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.73 new_esEs22(x0, x1, ty_Double) 35.62/13.73 new_ltEs20(x0, x1, ty_Double) 35.62/13.73 new_primCmpInt(Pos(Zero), Pos(Zero)) 35.62/13.73 new_lt19(x0, x1, ty_Bool) 35.62/13.73 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 35.62/13.73 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 35.62/13.73 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 35.62/13.73 new_lt19(x0, x1, ty_Double) 35.62/13.73 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.73 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 35.62/13.73 new_lt12(x0, x1, ty_Int) 35.62/13.73 new_ltEs9(Just(x0), Just(x1), ty_@0) 35.62/13.73 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_compare113(x0, x1, False, x2, x3, x4) 35.62/13.73 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.73 new_sr(x0, x1) 35.62/13.73 new_compare7(x0, x1) 35.62/13.73 new_ltEs20(x0, x1, ty_Integer) 35.62/13.73 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.73 new_esEs4(Nothing, Nothing, x0) 35.62/13.73 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.73 new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10, x11) 35.62/13.73 new_esEs20([], :(x0, x1), x2) 35.62/13.73 new_esEs21(x0, x1, ty_Ordering) 35.62/13.73 new_lt12(x0, x1, ty_Char) 35.62/13.73 new_ltEs20(x0, x1, app(ty_[], x2)) 35.62/13.73 new_esEs4(Just(x0), Just(x1), ty_@0) 35.62/13.73 new_esEs21(x0, x1, ty_Int) 35.62/13.73 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 35.62/13.73 new_esEs27(x0, x1, ty_@0) 35.62/13.73 new_compare18(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_esEs8(LT, GT) 35.62/13.73 new_esEs8(GT, LT) 35.62/13.73 new_compare25(x0, x1, True, x2) 35.62/13.73 new_esEs29(x0, x1, ty_Integer) 35.62/13.73 new_esEs27(x0, x1, app(ty_Maybe, x2)) 35.62/13.73 new_ltEs9(Nothing, Nothing, x0) 35.62/13.73 new_esEs11(x0, x1, ty_Double) 35.62/13.73 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 35.62/13.73 new_ltEs10(x0, x1) 35.62/13.73 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.73 new_fsEs(x0) 35.62/13.73 new_lt12(x0, x1, ty_Float) 35.62/13.73 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 35.62/13.73 new_esEs32(x0, x1, ty_@0) 35.62/13.73 new_esEs21(x0, x1, ty_Char) 35.62/13.73 new_esEs22(x0, x1, ty_Float) 35.62/13.73 new_esEs19(Float(x0, x1), Float(x2, x3)) 35.62/13.73 new_compare0([], :(x0, x1), x2) 35.62/13.73 new_esEs13(x0, x1, ty_@0) 35.62/13.73 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 35.62/13.73 new_lt19(x0, x1, ty_Ordering) 35.62/13.73 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.73 new_esEs25(x0, x1, ty_Integer) 35.62/13.73 new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, x4, False, x5, x6, x7) 35.62/13.73 new_ltEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 35.62/13.73 new_compare112(x0, x1, True) 35.62/13.73 new_lt12(x0, x1, ty_Ordering) 35.62/13.73 new_ltEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 35.62/13.73 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 35.62/13.73 new_esEs27(x0, x1, app(ty_[], x2)) 35.62/13.73 new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 35.62/13.73 new_esEs11(x0, x1, ty_Ordering) 35.62/13.73 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, EmptyFM, False, x8, x9, x10) 35.62/13.73 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_primEqNat0(Zero, Zero) 35.62/13.73 new_compare6(x0, x1, x2, x3) 35.62/13.73 new_lt9(x0, x1, x2, x3) 35.62/13.73 new_esEs29(x0, x1, ty_Float) 35.62/13.73 new_esEs29(x0, x1, ty_Bool) 35.62/13.73 new_compare28(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 35.62/13.73 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_not(False) 35.62/13.73 new_mkBranchResult1(x0, x1, x2, x3, x4, x5, x6, x7) 35.62/13.73 new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, EmptyFM, True, x4, x5, x6) 35.62/13.73 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 35.62/13.73 new_primPlusInt(Pos(x0), Pos(x1)) 35.62/13.73 new_ltEs18(x0, x1, ty_Integer) 35.62/13.73 new_ltEs17(False, False) 35.62/13.73 new_lt14(x0, x1, x2) 35.62/13.73 new_compare18(x0, x1, ty_Char) 35.62/13.73 new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4, x5) 35.62/13.73 new_esEs12(x0, x1, app(ty_[], x2)) 35.62/13.73 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 35.62/13.73 new_lt18(x0, x1, x2) 35.62/13.73 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 35.62/13.73 new_lt21(x0, x1, ty_@0) 35.62/13.73 new_emptyFM(x0, x1, x2) 35.62/13.73 new_compare0(:(x0, x1), [], x2) 35.62/13.73 new_lt16(x0, x1) 35.62/13.73 new_esEs14(False, False) 35.62/13.73 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 35.62/13.73 new_compare18(x0, x1, ty_Int) 35.62/13.73 new_esEs13(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_ltEs8(x0, x1) 35.62/13.73 new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 35.62/13.73 new_esEs24(x0, x1, ty_Integer) 35.62/13.73 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 35.62/13.73 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 35.62/13.73 new_ltEs18(x0, x1, ty_Char) 35.62/13.73 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 35.62/13.73 new_esEs25(x0, x1, ty_Char) 35.62/13.73 new_esEs30(x0, x1, x2, x3, False, x4, x5) 35.62/13.73 new_lt12(x0, x1, app(ty_Maybe, x2)) 35.62/13.73 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_mkBranchResult0(x0, x1, x2, x3, x4, x5, x6) 35.62/13.73 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, x4, False, x5, x6, x7) 35.62/13.73 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 35.62/13.73 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_primCompAux00(x0, EQ) 35.62/13.73 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 35.62/13.73 new_compare18(x0, x1, ty_Bool) 35.62/13.73 new_compare26(x0, x1, True, x2, x3, x4) 35.62/13.73 new_compare18(x0, x1, app(ty_Maybe, x2)) 35.62/13.73 new_lt19(x0, x1, app(ty_[], x2)) 35.62/13.73 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 35.62/13.73 new_esEs12(x0, x1, ty_Int) 35.62/13.73 new_ltEs11(x0, x1) 35.62/13.73 new_lt21(x0, x1, app(ty_Ratio, x2)) 35.62/13.73 new_sizeFM(EmptyFM, x0, x1, x2) 35.62/13.73 new_esEs13(x0, x1, ty_Double) 35.62/13.73 new_lt12(x0, x1, ty_Bool) 35.62/13.73 new_esEs21(x0, x1, ty_Integer) 35.62/13.73 new_primCmpNat2(x0, Zero) 35.62/13.73 new_esEs16(Integer(x0), Integer(x1)) 35.62/13.73 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.73 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 35.62/13.73 new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, x3, True, x4, x5, x6) 35.62/13.73 new_esEs12(x0, x1, ty_Float) 35.62/13.73 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 35.62/13.73 new_esEs25(x0, x1, app(ty_Maybe, x2)) 35.62/13.73 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.73 new_lt21(x0, x1, ty_Double) 35.62/13.73 new_ltEs18(x0, x1, ty_Bool) 35.62/13.73 new_primMulNat0(Succ(x0), Zero) 35.62/13.73 new_lt4(x0, x1, x2, x3) 35.62/13.73 new_primPlusNat0(Succ(x0), Zero) 35.62/13.73 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 35.62/13.73 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 35.62/13.73 new_primCmpNat0(Zero, Zero) 35.62/13.73 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 35.62/13.73 new_esEs25(x0, x1, ty_Bool) 35.62/13.73 new_compare0(:(x0, x1), :(x2, x3), x4) 35.62/13.73 new_primMinusNat0(Succ(x0), Zero) 35.62/13.73 new_esEs29(x0, x1, ty_Int) 35.62/13.73 new_esEs13(x0, x1, app(ty_[], x2)) 35.62/13.73 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 35.62/13.73 35.62/13.73 We have to consider all minimal (P,Q,R)-chains. 35.62/13.73 ---------------------------------------- 35.62/13.73 35.62/13.73 (32) QDPSizeChangeProof (EQUIVALENT) 35.62/13.73 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 35.62/13.73 35.62/13.73 From the DPs we obtained the following set of size-change graphs: 35.62/13.73 *new_foldl(xuu6, :(xuu3110, xuu3111), h, ba, bb) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba, bb), xuu3111, h, ba, bb) 35.62/13.73 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4, 5 >= 5 35.62/13.73 35.62/13.73 35.62/13.73 ---------------------------------------- 35.62/13.73 35.62/13.73 (33) 35.62/13.73 YES 35.62/13.73 35.62/13.73 ---------------------------------------- 35.62/13.73 35.62/13.73 (34) 35.62/13.73 Obligation: 35.62/13.73 Q DP problem: 35.62/13.73 The TRS P consists of the following rules: 35.62/13.73 35.62/13.73 new_primMulNat(Succ(xuu311000100), Succ(xuu600000)) -> new_primMulNat(xuu311000100, Succ(xuu600000)) 35.62/13.73 35.62/13.73 R is empty. 35.62/13.73 Q is empty. 35.62/13.73 We have to consider all minimal (P,Q,R)-chains. 35.62/13.73 ---------------------------------------- 35.62/13.73 35.62/13.73 (35) QDPSizeChangeProof (EQUIVALENT) 35.62/13.73 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 35.62/13.73 35.62/13.73 From the DPs we obtained the following set of size-change graphs: 35.62/13.73 *new_primMulNat(Succ(xuu311000100), Succ(xuu600000)) -> new_primMulNat(xuu311000100, Succ(xuu600000)) 35.62/13.73 The graph contains the following edges 1 > 1, 2 >= 2 35.62/13.73 35.62/13.73 35.62/13.73 ---------------------------------------- 35.62/13.73 35.62/13.73 (36) 35.62/13.73 YES 35.62/13.73 35.62/13.73 ---------------------------------------- 35.62/13.73 35.62/13.73 (37) 35.62/13.73 Obligation: 35.62/13.73 Q DP problem: 35.62/13.73 The TRS P consists of the following rules: 35.62/13.73 35.62/13.73 new_primEqNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat(xuu31100000, xuu60000) 35.62/13.73 35.62/13.73 R is empty. 35.62/13.73 Q is empty. 35.62/13.73 We have to consider all minimal (P,Q,R)-chains. 35.62/13.73 ---------------------------------------- 35.62/13.73 35.62/13.73 (38) QDPSizeChangeProof (EQUIVALENT) 35.62/13.73 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 35.62/13.73 35.62/13.73 From the DPs we obtained the following set of size-change graphs: 35.62/13.73 *new_primEqNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat(xuu31100000, xuu60000) 35.62/13.73 The graph contains the following edges 1 > 1, 2 > 2 35.62/13.73 35.62/13.73 35.62/13.73 ---------------------------------------- 35.62/13.73 35.62/13.73 (39) 35.62/13.73 YES 35.62/13.73 35.62/13.73 ---------------------------------------- 35.62/13.73 35.62/13.73 (40) 35.62/13.73 Obligation: 35.62/13.73 Q DP problem: 35.62/13.73 The TRS P consists of the following rules: 35.62/13.73 35.62/13.73 new_primMinusNat(Succ(xuu41200), Succ(xuu10800)) -> new_primMinusNat(xuu41200, xuu10800) 35.62/13.73 35.62/13.73 R is empty. 35.62/13.73 Q is empty. 35.62/13.73 We have to consider all minimal (P,Q,R)-chains. 35.62/13.73 ---------------------------------------- 35.62/13.73 35.62/13.73 (41) QDPSizeChangeProof (EQUIVALENT) 35.62/13.73 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 35.62/13.73 35.62/13.73 From the DPs we obtained the following set of size-change graphs: 35.62/13.73 *new_primMinusNat(Succ(xuu41200), Succ(xuu10800)) -> new_primMinusNat(xuu41200, xuu10800) 35.62/13.73 The graph contains the following edges 1 > 1, 2 > 2 35.62/13.73 35.62/13.73 35.62/13.73 ---------------------------------------- 35.62/13.73 35.62/13.73 (42) 35.62/13.73 YES 35.62/13.73 35.62/13.73 ---------------------------------------- 35.62/13.73 35.62/13.73 (43) 35.62/13.73 Obligation: 35.62/13.73 Q DP problem: 35.62/13.73 The TRS P consists of the following rules: 35.62/13.73 35.62/13.73 new_primPlusNat(Succ(xuu41200), Succ(xuu10800)) -> new_primPlusNat(xuu41200, xuu10800) 35.62/13.73 35.62/13.73 R is empty. 35.62/13.73 Q is empty. 35.62/13.73 We have to consider all minimal (P,Q,R)-chains. 35.62/13.73 ---------------------------------------- 35.62/13.73 35.62/13.73 (44) QDPSizeChangeProof (EQUIVALENT) 35.62/13.73 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 35.62/13.73 35.62/13.73 From the DPs we obtained the following set of size-change graphs: 35.62/13.73 *new_primPlusNat(Succ(xuu41200), Succ(xuu10800)) -> new_primPlusNat(xuu41200, xuu10800) 35.62/13.73 The graph contains the following edges 1 > 1, 2 > 2 35.62/13.73 35.62/13.73 35.62/13.73 ---------------------------------------- 35.62/13.73 35.62/13.73 (45) 35.62/13.73 YES 35.68/13.79 EOF