20.11/8.84 YES 22.90/9.60 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 22.90/9.60 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 22.90/9.60 22.90/9.60 22.90/9.60 H-Termination with start terms of the given HASKELL could be proven: 22.90/9.60 22.90/9.60 (0) HASKELL 22.90/9.60 (1) LR [EQUIVALENT, 0 ms] 22.90/9.60 (2) HASKELL 22.90/9.60 (3) CR [EQUIVALENT, 0 ms] 22.90/9.60 (4) HASKELL 22.90/9.60 (5) IFR [EQUIVALENT, 0 ms] 22.90/9.60 (6) HASKELL 22.90/9.60 (7) BR [EQUIVALENT, 0 ms] 22.90/9.60 (8) HASKELL 22.90/9.60 (9) COR [EQUIVALENT, 0 ms] 22.90/9.60 (10) HASKELL 22.90/9.60 (11) LetRed [EQUIVALENT, 0 ms] 22.90/9.60 (12) HASKELL 22.90/9.60 (13) NumRed [SOUND, 0 ms] 22.90/9.60 (14) HASKELL 22.90/9.60 (15) Narrow [SOUND, 0 ms] 22.90/9.60 (16) AND 22.90/9.60 (17) QDP 22.90/9.60 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.90/9.60 (19) YES 22.90/9.60 (20) QDP 22.90/9.60 (21) DependencyGraphProof [EQUIVALENT, 1 ms] 22.90/9.60 (22) AND 22.90/9.60 (23) QDP 22.90/9.60 (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.90/9.60 (25) YES 22.90/9.60 (26) QDP 22.90/9.60 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.90/9.60 (28) YES 22.90/9.60 (29) QDP 22.90/9.60 (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.90/9.60 (31) YES 22.90/9.60 (32) QDP 22.90/9.60 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.90/9.60 (34) YES 22.90/9.60 (35) QDP 22.90/9.60 (36) QDPSizeChangeProof [EQUIVALENT, 68 ms] 22.90/9.60 (37) YES 22.90/9.60 (38) QDP 22.90/9.60 (39) QDPSizeChangeProof [EQUIVALENT, 25 ms] 22.90/9.60 (40) YES 22.90/9.60 (41) QDP 22.90/9.60 (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.90/9.60 (43) YES 22.90/9.60 (44) QDP 22.90/9.60 (45) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.90/9.60 (46) YES 22.90/9.60 (47) QDP 22.90/9.60 (48) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.90/9.60 (49) YES 22.90/9.60 22.90/9.60 22.90/9.60 ---------------------------------------- 22.90/9.60 22.90/9.60 (0) 22.90/9.60 Obligation: 22.90/9.60 mainModule Main 22.90/9.60 module FiniteMap where { 22.90/9.60 import qualified Main; 22.90/9.60 import qualified Maybe; 22.90/9.60 import qualified Prelude; 22.90/9.60 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 22.90/9.60 22.90/9.60 instance (Eq a, Eq b) => Eq FiniteMap b a where { 22.90/9.60 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 22.90/9.60 } 22.90/9.60 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 22.90/9.60 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 22.90/9.60 add fmap (key,elt) = addToFM_C combiner fmap key elt; 22.90/9.60 }; 22.90/9.60 22.90/9.60 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 22.90/9.60 addToFM_C combiner EmptyFM key elt = unitFM key elt; 22.90/9.60 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 22.90/9.60 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 22.90/9.60 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 22.90/9.60 22.90/9.60 emptyFM :: FiniteMap b a; 22.90/9.60 emptyFM = EmptyFM; 22.90/9.60 22.90/9.60 findMax :: FiniteMap a b -> (a,b); 22.90/9.60 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 22.90/9.60 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 22.90/9.60 22.90/9.60 findMin :: FiniteMap a b -> (a,b); 22.90/9.60 findMin (Branch key elt _ EmptyFM _) = (key,elt); 22.90/9.60 findMin (Branch key elt _ fm_l _) = findMin fm_l; 22.90/9.60 22.90/9.60 fmToList :: FiniteMap b a -> [(b,a)]; 22.90/9.60 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 22.90/9.60 22.90/9.60 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 22.90/9.60 foldFM k z EmptyFM = z; 22.90/9.60 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 22.90/9.60 22.90/9.60 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 22.90/9.60 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 22.90/9.60 | size_r > sIZE_RATIO * size_l = case fm_R of { 22.90/9.60 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 22.90/9.60 | otherwise -> double_L fm_L fm_R; 22.90/9.60 } 22.90/9.60 | size_l > sIZE_RATIO * size_r = case fm_L of { 22.90/9.60 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 22.90/9.60 | otherwise -> double_R fm_L fm_R; 22.90/9.60 } 22.90/9.60 | otherwise = mkBranch 2 key elt fm_L fm_R where { 22.90/9.60 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); 22.90/9.60 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); 22.90/9.60 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; 22.90/9.60 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); 22.90/9.60 size_l = sizeFM fm_L; 22.90/9.60 size_r = sizeFM fm_R; 22.90/9.60 }; 22.90/9.60 22.90/9.60 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 22.90/9.60 mkBranch which key elt fm_l fm_r = let { 22.90/9.60 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 22.90/9.60 } in result where { 22.90/9.60 balance_ok = True; 22.90/9.60 left_ok = case fm_l of { 22.90/9.60 EmptyFM-> True; 22.90/9.60 Branch left_key _ _ _ _-> let { 22.90/9.60 biggest_left_key = fst (findMax fm_l); 22.90/9.60 } in biggest_left_key < key; 22.90/9.60 } ; 22.90/9.60 left_size = sizeFM fm_l; 22.90/9.60 right_ok = case fm_r of { 22.90/9.60 EmptyFM-> True; 22.90/9.60 Branch right_key _ _ _ _-> let { 22.90/9.60 smallest_right_key = fst (findMin fm_r); 22.90/9.60 } in key < smallest_right_key; 22.90/9.60 } ; 22.90/9.60 right_size = sizeFM fm_r; 22.90/9.60 unbox :: Int -> Int; 22.90/9.60 unbox x = x; 22.90/9.60 }; 22.90/9.60 22.90/9.60 sIZE_RATIO :: Int; 22.90/9.60 sIZE_RATIO = 5; 22.90/9.60 22.90/9.60 sizeFM :: FiniteMap b a -> Int; 22.90/9.60 sizeFM EmptyFM = 0; 22.90/9.60 sizeFM (Branch _ _ size _ _) = size; 22.90/9.60 22.90/9.60 unitFM :: b -> a -> FiniteMap b a; 22.90/9.60 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 22.90/9.60 22.90/9.60 } 22.90/9.60 module Maybe where { 22.90/9.60 import qualified FiniteMap; 22.90/9.60 import qualified Main; 22.90/9.60 import qualified Prelude; 22.90/9.60 } 22.90/9.60 module Main where { 22.90/9.60 import qualified FiniteMap; 22.90/9.60 import qualified Maybe; 22.90/9.60 import qualified Prelude; 22.90/9.60 } 22.90/9.60 22.90/9.60 ---------------------------------------- 22.90/9.60 22.90/9.60 (1) LR (EQUIVALENT) 22.90/9.60 Lambda Reductions: 22.90/9.60 The following Lambda expression 22.90/9.60 "\keyeltrest->(key,elt) : rest" 22.90/9.60 is transformed to 22.90/9.60 "fmToList0 key elt rest = (key,elt) : rest; 22.90/9.60 " 22.90/9.60 22.90/9.60 ---------------------------------------- 22.90/9.60 22.90/9.60 (2) 22.90/9.60 Obligation: 22.90/9.60 mainModule Main 22.90/9.60 module FiniteMap where { 22.90/9.60 import qualified Main; 22.90/9.60 import qualified Maybe; 22.90/9.60 import qualified Prelude; 22.90/9.60 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 22.90/9.60 22.90/9.60 instance (Eq a, Eq b) => Eq FiniteMap b a where { 22.90/9.60 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 22.90/9.60 } 22.90/9.60 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 22.90/9.60 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 22.90/9.60 add fmap (key,elt) = addToFM_C combiner fmap key elt; 22.90/9.60 }; 22.90/9.60 22.90/9.60 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 22.90/9.60 addToFM_C combiner EmptyFM key elt = unitFM key elt; 22.90/9.60 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 22.90/9.60 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 22.90/9.60 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 22.90/9.60 22.90/9.60 emptyFM :: FiniteMap b a; 22.90/9.60 emptyFM = EmptyFM; 22.90/9.60 22.90/9.60 findMax :: FiniteMap b a -> (b,a); 22.90/9.60 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 22.90/9.60 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 22.90/9.60 22.90/9.60 findMin :: FiniteMap a b -> (a,b); 22.90/9.60 findMin (Branch key elt _ EmptyFM _) = (key,elt); 22.90/9.60 findMin (Branch key elt _ fm_l _) = findMin fm_l; 22.90/9.60 22.90/9.60 fmToList :: FiniteMap b a -> [(b,a)]; 22.90/9.60 fmToList fm = foldFM fmToList0 [] fm; 22.90/9.60 22.90/9.60 fmToList0 key elt rest = (key,elt) : rest; 22.90/9.60 22.90/9.60 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 22.90/9.60 foldFM k z EmptyFM = z; 22.90/9.60 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 22.90/9.60 22.90/9.60 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 22.90/9.60 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 22.90/9.60 | size_r > sIZE_RATIO * size_l = case fm_R of { 22.90/9.60 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 22.90/9.60 | otherwise -> double_L fm_L fm_R; 22.90/9.60 } 22.90/9.60 | size_l > sIZE_RATIO * size_r = case fm_L of { 22.90/9.60 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 22.90/9.60 | otherwise -> double_R fm_L fm_R; 22.90/9.60 } 22.90/9.60 | otherwise = mkBranch 2 key elt fm_L fm_R where { 22.90/9.60 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); 22.90/9.60 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); 23.71/9.80 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; 23.71/9.80 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); 23.71/9.80 size_l = sizeFM fm_L; 23.71/9.80 size_r = sizeFM fm_R; 23.71/9.80 }; 23.71/9.80 23.71/9.80 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 23.71/9.80 mkBranch which key elt fm_l fm_r = let { 23.71/9.80 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 23.71/9.80 } in result where { 23.71/9.80 balance_ok = True; 23.71/9.80 left_ok = case fm_l of { 23.71/9.80 EmptyFM-> True; 23.71/9.80 Branch left_key _ _ _ _-> let { 23.71/9.80 biggest_left_key = fst (findMax fm_l); 23.71/9.80 } in biggest_left_key < key; 23.71/9.80 } ; 23.71/9.80 left_size = sizeFM fm_l; 23.71/9.80 right_ok = case fm_r of { 23.71/9.80 EmptyFM-> True; 23.71/9.80 Branch right_key _ _ _ _-> let { 23.71/9.80 smallest_right_key = fst (findMin fm_r); 23.71/9.80 } in key < smallest_right_key; 23.71/9.80 } ; 23.71/9.80 right_size = sizeFM fm_r; 23.71/9.80 unbox :: Int -> Int; 23.71/9.80 unbox x = x; 23.71/9.80 }; 23.71/9.80 23.71/9.80 sIZE_RATIO :: Int; 23.71/9.80 sIZE_RATIO = 5; 23.71/9.80 23.71/9.80 sizeFM :: FiniteMap b a -> Int; 23.71/9.80 sizeFM EmptyFM = 0; 23.71/9.80 sizeFM (Branch _ _ size _ _) = size; 23.71/9.80 23.71/9.80 unitFM :: b -> a -> FiniteMap b a; 23.71/9.80 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 23.71/9.80 23.71/9.80 } 23.71/9.80 module Maybe where { 23.71/9.80 import qualified FiniteMap; 23.71/9.80 import qualified Main; 23.71/9.80 import qualified Prelude; 23.71/9.80 } 23.71/9.80 module Main where { 23.71/9.80 import qualified FiniteMap; 23.71/9.80 import qualified Maybe; 23.71/9.80 import qualified Prelude; 23.71/9.80 } 23.71/9.80 23.71/9.80 ---------------------------------------- 23.71/9.80 23.71/9.80 (3) CR (EQUIVALENT) 23.71/9.80 Case Reductions: 23.71/9.80 The following Case expression 23.71/9.80 "case compare x y of { 23.71/9.80 EQ -> o; 23.71/9.80 LT -> LT; 23.71/9.80 GT -> GT} 23.71/9.80 " 23.71/9.80 is transformed to 23.71/9.80 "primCompAux0 o EQ = o; 23.71/9.80 primCompAux0 o LT = LT; 23.71/9.80 primCompAux0 o GT = GT; 23.71/9.80 " 23.71/9.80 The following Case expression 23.71/9.80 "case fm_r of { 23.71/9.80 EmptyFM -> True; 23.71/9.80 Branch right_key _ _ _ _ -> let { 23.71/9.80 smallest_right_key = fst (findMin fm_r); 23.71/9.80 } in key < smallest_right_key} 23.71/9.80 " 23.71/9.80 is transformed to 23.71/9.80 "right_ok0 fm_r key EmptyFM = True; 23.71/9.80 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 23.71/9.80 smallest_right_key = fst (findMin fm_r); 23.71/9.80 } in key < smallest_right_key; 23.71/9.80 " 23.71/9.80 The following Case expression 23.71/9.80 "case fm_l of { 23.71/9.80 EmptyFM -> True; 23.71/9.80 Branch left_key _ _ _ _ -> let { 23.71/9.80 biggest_left_key = fst (findMax fm_l); 23.71/9.80 } in biggest_left_key < key} 23.71/9.80 " 23.71/9.80 is transformed to 23.71/9.80 "left_ok0 fm_l key EmptyFM = True; 23.71/9.80 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 23.71/9.80 biggest_left_key = fst (findMax fm_l); 23.71/9.80 } in biggest_left_key < key; 23.71/9.80 " 23.71/9.80 The following Case expression 23.71/9.80 "case fm_R of { 23.71/9.80 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 23.71/9.80 " 23.71/9.80 is transformed to 23.71/9.80 "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; 23.71/9.80 " 23.71/9.80 The following Case expression 23.71/9.80 "case fm_L of { 23.71/9.80 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 23.71/9.80 " 23.71/9.80 is transformed to 23.71/9.80 "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; 23.71/9.80 " 23.71/9.80 23.71/9.80 ---------------------------------------- 23.71/9.80 23.71/9.80 (4) 23.71/9.80 Obligation: 23.71/9.80 mainModule Main 23.71/9.80 module FiniteMap where { 23.71/9.80 import qualified Main; 23.71/9.80 import qualified Maybe; 23.71/9.80 import qualified Prelude; 23.71/9.80 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 23.71/9.80 23.71/9.80 instance (Eq a, Eq b) => Eq FiniteMap a b where { 23.71/9.80 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 23.71/9.80 } 23.71/9.80 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 23.71/9.80 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 23.71/9.80 add fmap (key,elt) = addToFM_C combiner fmap key elt; 23.71/9.80 }; 23.71/9.80 23.71/9.80 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 23.71/9.80 addToFM_C combiner EmptyFM key elt = unitFM key elt; 23.71/9.80 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 23.71/9.80 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 23.71/9.80 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 23.71/9.80 23.71/9.80 emptyFM :: FiniteMap b a; 23.71/9.80 emptyFM = EmptyFM; 23.71/9.80 23.71/9.80 findMax :: FiniteMap a b -> (a,b); 23.71/9.80 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 23.71/9.80 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 23.71/9.80 23.71/9.80 findMin :: FiniteMap b a -> (b,a); 23.71/9.80 findMin (Branch key elt _ EmptyFM _) = (key,elt); 23.71/9.80 findMin (Branch key elt _ fm_l _) = findMin fm_l; 23.71/9.80 23.71/9.80 fmToList :: FiniteMap a b -> [(a,b)]; 23.71/9.80 fmToList fm = foldFM fmToList0 [] fm; 23.71/9.80 23.71/9.80 fmToList0 key elt rest = (key,elt) : rest; 23.71/9.80 23.71/9.80 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 23.71/9.80 foldFM k z EmptyFM = z; 23.71/9.80 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 23.71/9.80 23.71/9.80 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 23.71/9.80 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 23.71/9.80 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 23.71/9.80 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 23.71/9.80 | otherwise = mkBranch 2 key elt fm_L fm_R where { 23.71/9.80 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); 23.71/9.80 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); 23.71/9.80 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 23.71/9.80 | otherwise = double_L fm_L fm_R; 23.71/9.80 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 23.71/9.80 | otherwise = double_R fm_L fm_R; 23.71/9.80 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; 23.71/9.80 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); 23.71/9.80 size_l = sizeFM fm_L; 23.71/9.80 size_r = sizeFM fm_R; 23.71/9.80 }; 23.71/9.80 23.71/9.80 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 23.71/9.80 mkBranch which key elt fm_l fm_r = let { 23.71/9.80 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 23.71/9.80 } in result where { 23.71/9.80 balance_ok = True; 23.71/9.80 left_ok = left_ok0 fm_l key fm_l; 23.71/9.80 left_ok0 fm_l key EmptyFM = True; 23.71/9.80 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 23.71/9.80 biggest_left_key = fst (findMax fm_l); 23.71/9.80 } in biggest_left_key < key; 23.71/9.80 left_size = sizeFM fm_l; 23.71/9.80 right_ok = right_ok0 fm_r key fm_r; 23.71/9.80 right_ok0 fm_r key EmptyFM = True; 23.71/9.80 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 23.71/9.80 smallest_right_key = fst (findMin fm_r); 23.71/9.80 } in key < smallest_right_key; 23.71/9.80 right_size = sizeFM fm_r; 23.71/9.80 unbox :: Int -> Int; 23.71/9.80 unbox x = x; 23.71/9.80 }; 23.71/9.80 23.71/9.80 sIZE_RATIO :: Int; 23.71/9.80 sIZE_RATIO = 5; 23.71/9.80 23.71/9.80 sizeFM :: FiniteMap a b -> Int; 23.71/9.80 sizeFM EmptyFM = 0; 23.71/9.80 sizeFM (Branch _ _ size _ _) = size; 23.71/9.80 23.71/9.80 unitFM :: a -> b -> FiniteMap a b; 23.71/9.80 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 23.71/9.80 23.71/9.80 } 23.71/9.80 module Maybe where { 23.71/9.80 import qualified FiniteMap; 23.71/9.80 import qualified Main; 23.71/9.80 import qualified Prelude; 23.71/9.80 } 23.71/9.80 module Main where { 23.71/9.80 import qualified FiniteMap; 23.71/9.80 import qualified Maybe; 23.71/9.80 import qualified Prelude; 23.71/9.80 } 23.71/9.80 23.71/9.80 ---------------------------------------- 23.71/9.80 23.71/9.80 (5) IFR (EQUIVALENT) 23.71/9.80 If Reductions: 23.71/9.80 The following If expression 23.71/9.80 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 23.71/9.80 is transformed to 23.71/9.80 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 23.71/9.80 primDivNatS0 x y False = Zero; 23.71/9.80 " 23.71/9.80 The following If expression 23.71/9.80 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 23.71/9.80 is transformed to 23.71/9.80 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 23.71/9.80 primModNatS0 x y False = Succ x; 23.71/9.80 " 23.71/9.80 23.71/9.80 ---------------------------------------- 23.71/9.80 23.71/9.80 (6) 23.71/9.80 Obligation: 23.71/9.80 mainModule Main 23.71/9.80 module FiniteMap where { 23.71/9.80 import qualified Main; 23.71/9.80 import qualified Maybe; 23.71/9.80 import qualified Prelude; 23.71/9.80 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 23.71/9.80 23.71/9.80 instance (Eq a, Eq b) => Eq FiniteMap a b where { 23.71/9.80 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 23.71/9.80 } 23.71/9.80 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 23.71/9.80 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 23.71/9.80 add fmap (key,elt) = addToFM_C combiner fmap key elt; 23.71/9.80 }; 23.71/9.80 23.71/9.80 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 23.71/9.80 addToFM_C combiner EmptyFM key elt = unitFM key elt; 23.71/9.80 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 23.71/9.80 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 23.71/9.80 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 23.71/9.80 23.71/9.80 emptyFM :: FiniteMap b a; 23.71/9.80 emptyFM = EmptyFM; 23.71/9.80 23.71/9.80 findMax :: FiniteMap a b -> (a,b); 23.71/9.80 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 23.71/9.80 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 23.71/9.80 23.71/9.80 findMin :: FiniteMap a b -> (a,b); 23.71/9.80 findMin (Branch key elt _ EmptyFM _) = (key,elt); 23.71/9.80 findMin (Branch key elt _ fm_l _) = findMin fm_l; 23.71/9.80 23.71/9.80 fmToList :: FiniteMap a b -> [(a,b)]; 23.71/9.80 fmToList fm = foldFM fmToList0 [] fm; 23.71/9.80 23.71/9.80 fmToList0 key elt rest = (key,elt) : rest; 23.71/9.80 23.71/9.80 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 23.71/9.80 foldFM k z EmptyFM = z; 23.71/9.80 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 23.71/9.80 23.71/9.80 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 23.71/9.80 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 23.71/9.80 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 23.71/9.80 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 23.71/9.80 | otherwise = mkBranch 2 key elt fm_L fm_R where { 23.71/9.80 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); 23.71/9.80 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); 23.71/9.80 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 23.71/9.80 | otherwise = double_L fm_L fm_R; 23.71/9.80 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 23.71/9.80 | otherwise = double_R fm_L fm_R; 23.71/9.80 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; 23.71/9.80 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); 23.71/9.80 size_l = sizeFM fm_L; 23.71/9.80 size_r = sizeFM fm_R; 23.71/9.80 }; 23.71/9.80 23.71/9.80 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 23.71/9.80 mkBranch which key elt fm_l fm_r = let { 23.71/9.80 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 23.71/9.80 } in result where { 23.71/9.80 balance_ok = True; 23.71/9.80 left_ok = left_ok0 fm_l key fm_l; 23.71/9.80 left_ok0 fm_l key EmptyFM = True; 23.71/9.80 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 23.71/9.80 biggest_left_key = fst (findMax fm_l); 23.71/9.80 } in biggest_left_key < key; 23.71/9.80 left_size = sizeFM fm_l; 23.71/9.80 right_ok = right_ok0 fm_r key fm_r; 23.71/9.80 right_ok0 fm_r key EmptyFM = True; 23.71/9.80 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 23.71/9.80 smallest_right_key = fst (findMin fm_r); 23.71/9.80 } in key < smallest_right_key; 23.71/9.80 right_size = sizeFM fm_r; 23.71/9.80 unbox :: Int -> Int; 23.71/9.80 unbox x = x; 23.71/9.80 }; 23.71/9.80 23.71/9.80 sIZE_RATIO :: Int; 23.71/9.80 sIZE_RATIO = 5; 23.71/9.80 23.71/9.80 sizeFM :: FiniteMap a b -> Int; 23.71/9.80 sizeFM EmptyFM = 0; 23.71/9.80 sizeFM (Branch _ _ size _ _) = size; 23.71/9.80 23.71/9.80 unitFM :: b -> a -> FiniteMap b a; 23.71/9.80 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 23.71/9.80 23.71/9.80 } 23.71/9.80 module Maybe where { 23.71/9.80 import qualified FiniteMap; 23.71/9.80 import qualified Main; 23.71/9.80 import qualified Prelude; 23.71/9.80 } 23.71/9.80 module Main where { 23.71/9.80 import qualified FiniteMap; 23.71/9.80 import qualified Maybe; 23.71/9.80 import qualified Prelude; 23.71/9.80 } 23.71/9.80 23.71/9.80 ---------------------------------------- 23.71/9.80 23.71/9.80 (7) BR (EQUIVALENT) 23.71/9.80 Replaced joker patterns by fresh variables and removed binding patterns. 23.71/9.80 ---------------------------------------- 23.71/9.80 23.71/9.80 (8) 23.71/9.80 Obligation: 23.71/9.80 mainModule Main 23.71/9.80 module FiniteMap where { 23.71/9.80 import qualified Main; 23.71/9.80 import qualified Maybe; 23.71/9.80 import qualified Prelude; 23.71/9.80 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 23.71/9.80 23.71/9.80 instance (Eq a, Eq b) => Eq FiniteMap b a where { 23.71/9.80 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 23.71/9.80 } 23.71/9.80 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 23.71/9.80 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 23.71/9.80 add fmap (key,elt) = addToFM_C combiner fmap key elt; 23.71/9.80 }; 23.71/9.80 23.71/9.80 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 23.71/9.80 addToFM_C combiner EmptyFM key elt = unitFM key elt; 23.71/9.80 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 23.71/9.80 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 23.71/9.80 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 23.71/9.80 23.71/9.80 emptyFM :: FiniteMap b a; 23.71/9.80 emptyFM = EmptyFM; 23.71/9.80 23.71/9.80 findMax :: FiniteMap b a -> (b,a); 23.71/9.80 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 23.71/9.80 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 23.71/9.80 23.71/9.80 findMin :: FiniteMap a b -> (a,b); 23.71/9.80 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 23.71/9.80 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 23.71/9.80 23.71/9.80 fmToList :: FiniteMap a b -> [(a,b)]; 23.71/9.80 fmToList fm = foldFM fmToList0 [] fm; 23.71/9.80 23.71/9.80 fmToList0 key elt rest = (key,elt) : rest; 23.71/9.80 23.71/9.80 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 23.71/9.80 foldFM k z EmptyFM = z; 23.71/9.80 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 23.71/9.80 23.71/9.80 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 23.71/9.80 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 23.71/9.80 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 23.71/9.80 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 23.71/9.80 | otherwise = mkBranch 2 key elt fm_L fm_R where { 23.71/9.80 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); 23.71/9.80 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); 23.71/9.80 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 23.71/9.80 | otherwise = double_L fm_L fm_R; 23.71/9.80 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 23.71/9.80 | otherwise = double_R fm_L fm_R; 23.71/9.80 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; 23.71/9.80 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); 23.71/9.80 size_l = sizeFM fm_L; 23.71/9.80 size_r = sizeFM fm_R; 23.71/9.80 }; 23.71/9.80 23.71/9.80 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 23.71/9.80 mkBranch which key elt fm_l fm_r = let { 23.71/9.80 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 23.71/9.80 } in result where { 23.71/9.80 balance_ok = True; 23.71/9.80 left_ok = left_ok0 fm_l key fm_l; 23.71/9.80 left_ok0 fm_l key EmptyFM = True; 23.71/9.80 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 23.71/9.80 biggest_left_key = fst (findMax fm_l); 23.71/9.80 } in biggest_left_key < key; 23.71/9.80 left_size = sizeFM fm_l; 23.71/9.80 right_ok = right_ok0 fm_r key fm_r; 23.71/9.80 right_ok0 fm_r key EmptyFM = True; 23.71/9.80 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 23.71/9.80 smallest_right_key = fst (findMin fm_r); 23.71/9.80 } in key < smallest_right_key; 23.71/9.80 right_size = sizeFM fm_r; 23.71/9.80 unbox :: Int -> Int; 23.71/9.80 unbox x = x; 23.71/9.80 }; 23.71/9.80 23.71/9.80 sIZE_RATIO :: Int; 23.71/9.80 sIZE_RATIO = 5; 23.71/9.80 23.71/9.80 sizeFM :: FiniteMap b a -> Int; 23.71/9.80 sizeFM EmptyFM = 0; 23.71/9.80 sizeFM (Branch vyu vyv size vyw vyx) = size; 23.71/9.80 23.71/9.80 unitFM :: b -> a -> FiniteMap b a; 23.71/9.80 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 23.71/9.80 23.71/9.80 } 23.71/9.80 module Maybe where { 23.71/9.80 import qualified FiniteMap; 23.71/9.80 import qualified Main; 23.71/9.80 import qualified Prelude; 23.71/9.80 } 23.71/9.80 module Main where { 23.71/9.80 import qualified FiniteMap; 23.71/9.80 import qualified Maybe; 23.71/9.80 import qualified Prelude; 23.71/9.80 } 23.71/9.80 23.71/9.80 ---------------------------------------- 23.71/9.80 23.71/9.80 (9) COR (EQUIVALENT) 23.71/9.80 Cond Reductions: 23.71/9.80 The following Function with conditions 23.71/9.80 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 23.71/9.80 " 23.71/9.80 is transformed to 23.71/9.80 "compare x y = compare3 x y; 23.71/9.80 " 23.71/9.80 "compare0 x y True = GT; 23.71/9.80 " 23.71/9.80 "compare1 x y True = LT; 23.71/9.80 compare1 x y False = compare0 x y otherwise; 23.71/9.80 " 23.71/9.80 "compare2 x y True = EQ; 23.71/9.80 compare2 x y False = compare1 x y (x <= y); 23.71/9.80 " 23.71/9.80 "compare3 x y = compare2 x y (x == y); 23.71/9.80 " 23.71/9.80 The following Function with conditions 23.71/9.80 "absReal x|x >= 0x|otherwise`negate` x; 23.71/9.80 " 23.71/9.80 is transformed to 23.71/9.80 "absReal x = absReal2 x; 23.71/9.80 " 23.71/9.80 "absReal0 x True = `negate` x; 23.71/9.80 " 23.71/9.80 "absReal1 x True = x; 23.71/9.80 absReal1 x False = absReal0 x otherwise; 23.71/9.80 " 23.71/9.80 "absReal2 x = absReal1 x (x >= 0); 23.71/9.80 " 23.71/9.80 The following Function with conditions 23.71/9.80 "gcd' x 0 = x; 23.71/9.80 gcd' x y = gcd' y (x `rem` y); 23.71/9.80 " 23.71/9.80 is transformed to 23.71/9.80 "gcd' x vzw = gcd'2 x vzw; 23.71/9.80 gcd' x y = gcd'0 x y; 23.71/9.80 " 23.71/9.80 "gcd'0 x y = gcd' y (x `rem` y); 23.71/9.80 " 23.71/9.80 "gcd'1 True x vzw = x; 23.71/9.80 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 23.71/9.80 " 23.71/9.80 "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 23.71/9.80 gcd'2 wuu wuv = gcd'0 wuu wuv; 23.71/9.80 " 23.71/9.80 The following Function with conditions 23.71/9.80 "gcd 0 0 = error []; 23.71/9.80 gcd x y = gcd' (abs x) (abs y) where { 23.71/9.80 gcd' x 0 = x; 23.71/9.80 gcd' x y = gcd' y (x `rem` y); 23.71/9.80 } 23.71/9.80 ; 23.71/9.80 " 23.71/9.80 is transformed to 23.71/9.80 "gcd wuw wux = gcd3 wuw wux; 23.71/9.80 gcd x y = gcd0 x y; 23.71/9.80 " 23.71/9.80 "gcd0 x y = gcd' (abs x) (abs y) where { 23.71/9.80 gcd' x vzw = gcd'2 x vzw; 23.71/9.80 gcd' x y = gcd'0 x y; 23.71/9.80 ; 23.71/9.80 gcd'0 x y = gcd' y (x `rem` y); 23.71/9.80 ; 23.71/9.80 gcd'1 True x vzw = x; 23.71/9.80 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 23.71/9.80 ; 23.71/9.80 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 23.71/9.80 gcd'2 wuu wuv = gcd'0 wuu wuv; 23.71/9.80 } 23.71/9.80 ; 23.71/9.80 " 23.71/9.80 "gcd1 True wuw wux = error []; 23.71/9.80 gcd1 wuy wuz wvu = gcd0 wuz wvu; 23.71/9.80 " 23.71/9.80 "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; 23.71/9.80 gcd2 wvv wvw wvx = gcd0 wvw wvx; 23.71/9.80 " 23.71/9.80 "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; 23.71/9.80 gcd3 wvy wvz = gcd0 wvy wvz; 23.71/9.80 " 23.71/9.80 The following Function with conditions 23.71/9.80 "undefined |Falseundefined; 23.71/9.80 " 23.71/9.80 is transformed to 23.71/9.80 "undefined = undefined1; 23.71/9.80 " 23.71/9.80 "undefined0 True = undefined; 23.71/9.80 " 23.71/9.80 "undefined1 = undefined0 False; 23.71/9.80 " 23.71/9.80 The following Function with conditions 23.71/9.80 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 23.71/9.80 d = gcd x y; 23.71/9.80 } 23.71/9.80 ; 23.71/9.80 " 23.71/9.80 is transformed to 23.71/9.80 "reduce x y = reduce2 x y; 23.71/9.80 " 23.71/9.80 "reduce2 x y = reduce1 x y (y == 0) where { 23.71/9.80 d = gcd x y; 23.71/9.80 ; 23.71/9.80 reduce0 x y True = x `quot` d :% (y `quot` d); 23.71/9.80 ; 23.71/9.80 reduce1 x y True = error []; 23.71/9.80 reduce1 x y False = reduce0 x y otherwise; 23.71/9.80 } 23.71/9.80 ; 23.71/9.80 " 23.71/9.80 The following Function with conditions 23.71/9.80 "addToFM_C combiner EmptyFM key elt = unitFM key elt; 23.71/9.80 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; 23.71/9.80 " 23.71/9.80 is transformed to 23.71/9.80 "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 23.71/9.80 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; 23.71/9.80 " 23.71/9.80 "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); 23.71/9.80 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; 23.71/9.80 " 23.71/9.80 "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; 23.71/9.80 " 23.71/9.80 "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; 23.71/9.80 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); 23.71/9.80 " 23.71/9.80 "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); 23.71/9.80 " 23.71/9.80 "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 23.71/9.80 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 23.71/9.80 " 23.71/9.80 The following Function with conditions 23.71/9.80 "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; 23.71/9.80 " 23.71/9.80 is transformed to 23.71/9.80 "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); 23.71/9.80 " 23.71/9.80 "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 23.71/9.80 " 23.71/9.80 "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 23.71/9.80 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; 23.71/9.80 " 23.71/9.80 "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); 23.71/9.80 " 23.71/9.80 The following Function with conditions 23.71/9.80 "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; 23.71/9.80 " 23.71/9.80 is transformed to 23.71/9.80 "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); 23.71/9.80 " 23.71/9.80 "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 23.71/9.80 " 23.71/9.80 "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 23.71/9.80 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; 23.71/9.80 " 23.71/9.80 "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); 23.71/9.80 " 23.71/9.80 The following Function with conditions 23.71/9.80 "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 { 23.71/9.80 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); 23.71/9.80 ; 23.71/9.80 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); 23.71/9.80 ; 23.71/9.80 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; 23.71/9.80 ; 23.71/9.80 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; 23.71/9.80 ; 23.71/9.80 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; 23.71/9.80 ; 23.71/9.80 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); 23.71/9.80 ; 23.71/9.80 size_l = sizeFM fm_L; 23.71/9.80 ; 23.71/9.80 size_r = sizeFM fm_R; 23.71/9.80 } 23.71/9.80 ; 23.71/9.80 " 23.71/9.80 is transformed to 23.71/9.80 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 23.71/9.80 " 23.71/9.80 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 23.71/9.80 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); 23.71/9.80 ; 23.71/9.80 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); 23.71/9.80 ; 23.71/9.80 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); 23.71/9.80 ; 23.71/9.80 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 23.71/9.80 ; 23.71/9.80 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 23.71/9.80 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; 23.71/9.80 ; 23.71/9.80 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); 23.71/9.80 ; 23.71/9.80 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); 23.71/9.80 ; 23.71/9.80 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 23.71/9.80 ; 23.71/9.80 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 23.71/9.80 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; 23.71/9.80 ; 23.71/9.80 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); 23.71/9.80 ; 23.71/9.80 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 23.71/9.80 ; 23.71/9.80 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 23.71/9.80 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 23.71/9.80 ; 23.71/9.80 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 23.71/9.80 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 23.71/9.80 ; 23.71/9.80 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 23.71/9.80 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 23.71/9.80 ; 23.71/9.80 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; 23.71/9.80 ; 23.71/9.80 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); 23.71/9.80 ; 23.71/9.80 size_l = sizeFM fm_L; 23.71/9.80 ; 23.71/9.80 size_r = sizeFM fm_R; 23.71/9.80 } 23.71/9.80 ; 23.71/9.80 " 23.71/9.80 23.71/9.80 ---------------------------------------- 23.71/9.80 23.71/9.80 (10) 23.71/9.80 Obligation: 23.71/9.80 mainModule Main 23.71/9.80 module FiniteMap where { 23.71/9.80 import qualified Main; 23.71/9.80 import qualified Maybe; 23.71/9.80 import qualified Prelude; 23.71/9.80 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 23.71/9.80 23.71/9.80 instance (Eq a, Eq b) => Eq FiniteMap b a where { 23.71/9.80 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 23.71/9.80 } 23.71/9.80 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 23.71/9.80 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 23.71/9.80 add fmap (key,elt) = addToFM_C combiner fmap key elt; 23.71/9.80 }; 23.71/9.80 23.71/9.80 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 23.71/9.80 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 23.71/9.80 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; 23.71/9.80 23.71/9.80 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; 23.71/9.80 23.71/9.80 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); 23.71/9.80 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; 23.71/9.80 23.71/9.80 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; 23.71/9.80 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); 23.71/9.80 23.71/9.80 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); 23.71/9.80 23.71/9.80 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 23.71/9.80 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 23.71/9.80 23.71/9.80 emptyFM :: FiniteMap a b; 23.71/9.80 emptyFM = EmptyFM; 23.71/9.80 23.71/9.80 findMax :: FiniteMap b a -> (b,a); 23.71/9.80 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 23.71/9.80 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 23.71/9.80 23.71/9.80 findMin :: FiniteMap b a -> (b,a); 23.71/9.80 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 23.71/9.80 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 23.71/9.80 23.71/9.80 fmToList :: FiniteMap a b -> [(a,b)]; 23.71/9.80 fmToList fm = foldFM fmToList0 [] fm; 23.71/9.80 23.71/9.80 fmToList0 key elt rest = (key,elt) : rest; 23.71/9.80 23.71/9.80 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 23.71/9.80 foldFM k z EmptyFM = z; 23.71/9.80 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 23.71/9.80 23.71/9.80 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 23.71/9.80 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 23.71/9.80 23.71/9.80 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 23.71/9.80 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); 23.71/9.80 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); 23.71/9.80 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); 23.71/9.80 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 23.71/9.80 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 23.71/9.80 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; 23.71/9.80 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); 23.71/9.80 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); 23.71/9.80 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 23.71/9.80 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 23.71/9.80 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; 23.71/9.80 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); 23.71/9.80 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 23.71/9.80 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 23.71/9.80 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 23.71/9.80 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 23.71/9.80 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 23.71/9.80 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 23.71/9.80 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 23.71/9.80 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; 23.71/9.80 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); 23.71/9.80 size_l = sizeFM fm_L; 23.71/9.80 size_r = sizeFM fm_R; 23.71/9.80 }; 23.71/9.80 23.71/9.80 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 23.71/9.80 mkBranch which key elt fm_l fm_r = let { 23.71/9.80 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 23.71/9.80 } in result where { 23.71/9.80 balance_ok = True; 23.71/9.80 left_ok = left_ok0 fm_l key fm_l; 23.71/9.80 left_ok0 fm_l key EmptyFM = True; 23.71/9.80 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 23.71/9.80 biggest_left_key = fst (findMax fm_l); 23.71/9.80 } in biggest_left_key < key; 23.71/9.80 left_size = sizeFM fm_l; 23.71/9.80 right_ok = right_ok0 fm_r key fm_r; 23.71/9.80 right_ok0 fm_r key EmptyFM = True; 23.71/9.80 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 23.71/9.80 smallest_right_key = fst (findMin fm_r); 23.71/9.80 } in key < smallest_right_key; 23.71/9.80 right_size = sizeFM fm_r; 23.71/9.80 unbox :: Int -> Int; 23.71/9.80 unbox x = x; 23.71/9.80 }; 23.71/9.80 23.71/9.80 sIZE_RATIO :: Int; 23.71/9.80 sIZE_RATIO = 5; 23.71/9.80 23.71/9.80 sizeFM :: FiniteMap b a -> Int; 23.71/9.80 sizeFM EmptyFM = 0; 23.71/9.80 sizeFM (Branch vyu vyv size vyw vyx) = size; 23.71/9.80 23.71/9.80 unitFM :: b -> a -> FiniteMap b a; 23.71/9.80 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 23.71/9.80 23.71/9.80 } 23.71/9.80 module Maybe where { 23.71/9.80 import qualified FiniteMap; 23.71/9.80 import qualified Main; 23.71/9.80 import qualified Prelude; 23.71/9.80 } 23.71/9.80 module Main where { 23.71/9.80 import qualified FiniteMap; 23.71/9.80 import qualified Maybe; 23.71/9.80 import qualified Prelude; 23.71/9.80 } 23.71/9.80 23.71/9.80 ---------------------------------------- 23.71/9.80 23.71/9.80 (11) LetRed (EQUIVALENT) 23.71/9.80 Let/Where Reductions: 23.71/9.80 The bindings of the following Let/Where expression 23.71/9.80 "gcd' (abs x) (abs y) where { 23.71/9.80 gcd' x vzw = gcd'2 x vzw; 23.71/9.80 gcd' x y = gcd'0 x y; 23.71/9.80 ; 23.71/9.80 gcd'0 x y = gcd' y (x `rem` y); 23.71/9.80 ; 23.71/9.80 gcd'1 True x vzw = x; 23.71/9.80 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 23.71/9.80 ; 23.71/9.80 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 23.71/9.80 gcd'2 wuu wuv = gcd'0 wuu wuv; 23.71/9.80 } 23.71/9.80 " 23.71/9.80 are unpacked to the following functions on top level 23.71/9.80 "gcd0Gcd'1 True x vzw = x; 23.71/9.80 gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; 23.71/9.80 " 23.71/9.80 "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; 23.71/9.80 gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; 23.71/9.80 " 23.71/9.80 "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; 23.71/9.80 gcd0Gcd' x y = gcd0Gcd'0 x y; 23.71/9.80 " 23.71/9.80 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 23.71/9.80 " 23.71/9.80 The bindings of the following Let/Where expression 23.71/9.80 "reduce1 x y (y == 0) where { 23.71/9.80 d = gcd x y; 23.71/9.80 ; 23.71/9.80 reduce0 x y True = x `quot` d :% (y `quot` d); 23.71/9.80 ; 23.71/9.80 reduce1 x y True = error []; 23.71/9.80 reduce1 x y False = reduce0 x y otherwise; 23.71/9.80 } 23.71/9.80 " 23.71/9.80 are unpacked to the following functions on top level 23.71/9.80 "reduce2Reduce1 wxw wxx x y True = error []; 23.71/9.80 reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; 23.71/9.80 " 23.71/9.80 "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); 23.71/9.80 " 23.71/9.80 "reduce2D wxw wxx = gcd wxw wxx; 23.71/9.80 " 23.71/9.80 The bindings of the following Let/Where expression 23.71/9.80 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 23.71/9.80 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); 24.03/9.90 ; 24.03/9.90 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); 24.03/9.90 ; 24.03/9.90 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); 24.03/9.90 ; 24.03/9.90 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 24.03/9.90 ; 24.03/9.90 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 24.03/9.90 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; 24.03/9.90 ; 24.03/9.90 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); 24.03/9.90 ; 24.03/9.90 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); 24.03/9.90 ; 24.03/9.90 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 24.03/9.90 ; 24.03/9.90 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 24.03/9.90 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; 24.03/9.90 ; 24.03/9.90 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); 24.03/9.90 ; 24.03/9.90 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 24.03/9.90 ; 24.03/9.90 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 24.03/9.90 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 24.03/9.90 ; 24.03/9.90 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 24.03/9.90 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 24.03/9.90 ; 24.03/9.90 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 24.03/9.90 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 24.03/9.90 ; 24.03/9.90 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; 24.03/9.90 ; 24.03/9.90 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); 24.03/9.90 ; 24.03/9.90 size_l = sizeFM fm_L; 24.03/9.90 ; 24.03/9.90 size_r = sizeFM fm_R; 24.03/9.90 } 24.03/9.90 " 24.03/9.90 are unpacked to the following functions on top level 24.03/9.90 "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); 24.03/9.90 " 24.03/9.90 "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; 24.03/9.90 " 24.03/9.90 "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); 24.03/9.90 " 24.03/9.90 "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; 24.03/9.90 " 24.03/9.90 "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); 24.03/9.90 " 24.03/9.90 "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); 24.03/9.90 " 24.03/9.90 "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; 24.03/9.90 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; 24.03/9.90 " 24.03/9.90 "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); 24.03/9.90 " 24.03/9.90 "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); 24.03/9.90 " 24.03/9.90 "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; 24.03/9.90 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; 24.03/9.90 " 24.03/9.90 "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 24.03/9.90 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); 24.03/9.90 " 24.03/9.90 "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 24.03/9.90 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); 24.03/9.90 " 24.03/9.90 "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; 24.03/9.90 " 24.03/9.90 "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 24.03/9.90 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 24.03/9.90 " 24.03/9.90 "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 24.03/9.90 " 24.03/9.90 "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); 24.03/9.90 " 24.03/9.90 "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 24.03/9.90 " 24.03/9.90 "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 24.03/9.90 " 24.03/9.90 The bindings of the following Let/Where expression 24.03/9.90 "foldl add fm key_elt_pairs where { 24.03/9.90 add fmap (key,elt) = addToFM_C combiner fmap key elt; 24.03/9.90 } 24.03/9.90 " 24.03/9.90 are unpacked to the following functions on top level 24.03/9.90 "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 24.03/9.90 " 24.03/9.90 The bindings of the following Let/Where expression 24.03/9.90 "let { 24.03/9.90 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 24.03/9.90 } in result where { 24.03/9.90 balance_ok = True; 24.03/9.90 ; 24.03/9.90 left_ok = left_ok0 fm_l key fm_l; 24.03/9.90 ; 24.03/9.90 left_ok0 fm_l key EmptyFM = True; 24.03/9.90 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 24.03/9.90 biggest_left_key = fst (findMax fm_l); 24.03/9.90 } in biggest_left_key < key; 24.03/9.90 ; 24.03/9.90 left_size = sizeFM fm_l; 24.03/9.90 ; 24.03/9.90 right_ok = right_ok0 fm_r key fm_r; 24.03/9.90 ; 24.03/9.90 right_ok0 fm_r key EmptyFM = True; 24.03/9.90 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 24.03/9.90 smallest_right_key = fst (findMin fm_r); 24.03/9.90 } in key < smallest_right_key; 24.03/9.90 ; 24.03/9.90 right_size = sizeFM fm_r; 24.03/9.90 ; 24.03/9.90 unbox x = x; 24.03/9.90 } 24.03/9.90 " 24.03/9.90 are unpacked to the following functions on top level 24.03/9.90 "mkBranchUnbox wyx wyy wyz x = x; 24.03/9.90 " 24.03/9.90 "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 24.03/9.90 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 24.03/9.90 " 24.03/9.90 "mkBranchRight_size wyx wyy wyz = sizeFM wyx; 24.03/9.90 " 24.03/9.90 "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 24.03/9.90 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 24.03/9.90 " 24.03/9.90 "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 24.03/9.90 " 24.03/9.90 "mkBranchBalance_ok wyx wyy wyz = True; 24.03/9.90 " 24.03/9.90 "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 24.03/9.90 " 24.03/9.90 "mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 24.03/9.90 " 24.03/9.90 The bindings of the following Let/Where expression 24.03/9.90 "let { 24.03/9.90 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 24.03/9.90 } in result" 24.03/9.90 are unpacked to the following functions on top level 24.03/9.90 "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; 24.03/9.90 " 24.03/9.90 The bindings of the following Let/Where expression 24.03/9.90 "let { 24.03/9.90 smallest_right_key = fst (findMin fm_r); 24.03/9.90 } in key < smallest_right_key" 24.03/9.90 are unpacked to the following functions on top level 24.03/9.90 "mkBranchRight_ok0Smallest_right_key wzy = fst (findMin wzy); 24.03/9.90 " 24.03/9.90 The bindings of the following Let/Where expression 24.03/9.90 "let { 24.03/9.90 biggest_left_key = fst (findMax fm_l); 24.03/9.90 } in biggest_left_key < key" 24.03/9.90 are unpacked to the following functions on top level 24.03/9.90 "mkBranchLeft_ok0Biggest_left_key wzz = fst (findMax wzz); 24.03/9.90 " 24.03/9.90 24.03/9.90 ---------------------------------------- 24.03/9.90 24.03/9.90 (12) 24.03/9.90 Obligation: 24.03/9.90 mainModule Main 24.03/9.90 module FiniteMap where { 24.03/9.90 import qualified Main; 24.03/9.90 import qualified Maybe; 24.03/9.90 import qualified Prelude; 24.03/9.90 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 24.03/9.90 24.03/9.90 instance (Eq a, Eq b) => Eq FiniteMap b a where { 24.03/9.90 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.03/9.90 } 24.03/9.90 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 24.03/9.90 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 24.03/9.90 24.03/9.90 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 24.03/9.90 24.03/9.90 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 24.03/9.90 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 24.03/9.90 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; 24.03/9.90 24.03/9.90 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; 24.03/9.90 24.03/9.90 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); 24.03/9.90 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; 24.03/9.90 24.03/9.90 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; 24.03/9.90 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); 24.03/9.90 24.03/9.90 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); 24.03/9.90 24.03/9.90 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 24.03/9.90 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 24.03/9.90 24.03/9.90 emptyFM :: FiniteMap b a; 24.03/9.90 emptyFM = EmptyFM; 24.03/9.90 24.03/9.90 findMax :: FiniteMap b a -> (b,a); 24.03/9.90 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 24.03/9.90 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 24.03/9.90 24.03/9.90 findMin :: FiniteMap a b -> (a,b); 24.03/9.90 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 24.03/9.90 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 24.03/9.90 24.03/9.90 fmToList :: FiniteMap a b -> [(a,b)]; 24.03/9.90 fmToList fm = foldFM fmToList0 [] fm; 24.03/9.90 24.03/9.90 fmToList0 key elt rest = (key,elt) : rest; 24.03/9.90 24.03/9.90 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 24.03/9.90 foldFM k z EmptyFM = z; 24.03/9.90 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.03/9.90 24.03/9.90 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 24.03/9.90 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 24.03/9.90 24.03/9.90 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < 2); 24.03/9.90 24.03/9.90 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); 24.03/9.90 24.03/9.90 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); 24.03/9.90 24.03/9.90 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); 24.03/9.90 24.03/9.90 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; 24.03/9.90 24.03/9.90 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; 24.03/9.90 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; 24.03/9.90 24.03/9.90 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); 24.03/9.90 24.03/9.90 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); 24.03/9.90 24.03/9.90 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; 24.03/9.90 24.03/9.90 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; 24.03/9.90 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; 24.03/9.90 24.03/9.90 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); 24.03/9.90 24.03/9.90 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 24.03/9.90 24.03/9.90 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 24.03/9.90 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 24.03/9.90 24.03/9.90 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 24.03/9.90 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); 24.03/9.90 24.03/9.90 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 24.03/9.90 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); 24.03/9.90 24.03/9.90 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; 24.03/9.90 24.03/9.90 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); 24.03/9.90 24.03/9.90 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 24.03/9.90 24.03/9.90 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 24.03/9.90 24.03/9.90 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 24.03/9.90 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 24.03/9.90 24.03/9.90 mkBranchBalance_ok wyx wyy wyz = True; 24.03/9.90 24.03/9.90 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 24.03/9.90 24.03/9.90 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 24.03/9.90 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 24.03/9.90 24.03/9.90 mkBranchLeft_ok0Biggest_left_key wzz = fst (findMax wzz); 24.03/9.90 24.03/9.90 mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 24.03/9.90 24.03/9.90 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; 24.03/9.90 24.03/9.90 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 24.03/9.90 24.03/9.90 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 24.03/9.90 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 24.03/9.90 24.03/9.90 mkBranchRight_ok0Smallest_right_key wzy = fst (findMin wzy); 24.03/9.90 24.03/9.90 mkBranchRight_size wyx wyy wyz = sizeFM wyx; 24.03/9.90 24.03/9.90 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 24.03/9.90 mkBranchUnbox wyx wyy wyz x = x; 24.03/9.90 24.03/9.90 sIZE_RATIO :: Int; 24.03/9.90 sIZE_RATIO = 5; 24.03/9.90 24.03/9.90 sizeFM :: FiniteMap b a -> Int; 24.03/9.90 sizeFM EmptyFM = 0; 24.03/9.90 sizeFM (Branch vyu vyv size vyw vyx) = size; 24.03/9.90 24.03/9.90 unitFM :: b -> a -> FiniteMap b a; 24.03/9.90 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 24.03/9.90 24.03/9.90 } 24.03/9.90 module Maybe where { 24.03/9.90 import qualified FiniteMap; 24.03/9.90 import qualified Main; 24.03/9.90 import qualified Prelude; 24.03/9.90 } 24.03/9.90 module Main where { 24.03/9.90 import qualified FiniteMap; 24.03/9.90 import qualified Maybe; 24.03/9.90 import qualified Prelude; 24.03/9.90 } 24.03/9.90 24.03/9.90 ---------------------------------------- 24.03/9.90 24.03/9.90 (13) NumRed (SOUND) 24.03/9.90 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 24.03/9.90 ---------------------------------------- 24.03/9.90 24.03/9.90 (14) 24.03/9.90 Obligation: 24.03/9.90 mainModule Main 24.03/9.90 module FiniteMap where { 24.03/9.90 import qualified Main; 24.03/9.90 import qualified Maybe; 24.03/9.90 import qualified Prelude; 24.03/9.90 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 24.03/9.90 24.03/9.90 instance (Eq a, Eq b) => Eq FiniteMap a b where { 24.03/9.90 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.03/9.90 } 24.03/9.90 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 24.03/9.90 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 24.03/9.90 24.03/9.90 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 24.03/9.90 24.03/9.90 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 24.03/9.90 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 24.03/9.90 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; 24.03/9.90 24.03/9.90 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; 24.03/9.90 24.03/9.90 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); 24.03/9.90 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; 24.03/9.90 24.03/9.90 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; 24.03/9.90 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); 24.03/9.90 24.03/9.90 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); 24.03/9.90 24.03/9.90 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 24.03/9.90 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 24.03/9.90 24.03/9.90 emptyFM :: FiniteMap b a; 24.03/9.90 emptyFM = EmptyFM; 24.03/9.90 24.03/9.90 findMax :: FiniteMap a b -> (a,b); 24.03/9.90 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 24.03/9.90 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 24.03/9.90 24.03/9.90 findMin :: FiniteMap b a -> (b,a); 24.03/9.90 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 24.03/9.90 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 24.03/9.90 24.03/9.90 fmToList :: FiniteMap a b -> [(a,b)]; 24.03/9.90 fmToList fm = foldFM fmToList0 [] fm; 24.03/9.90 24.03/9.90 fmToList0 key elt rest = (key,elt) : rest; 24.03/9.90 24.03/9.90 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 24.03/9.90 foldFM k z EmptyFM = z; 24.03/9.90 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.03/9.90 24.03/9.90 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 24.03/9.90 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 24.03/9.90 24.03/9.90 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < Pos (Succ (Succ Zero))); 24.03/9.90 24.03/9.90 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); 24.03/9.90 24.03/9.90 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); 24.03/9.90 24.03/9.90 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); 24.03/9.90 24.03/9.90 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; 24.03/9.90 24.03/9.90 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; 24.03/9.90 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; 24.03/9.90 24.03/9.90 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); 24.03/9.90 24.03/9.90 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); 24.03/9.90 24.03/9.90 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; 24.03/9.90 24.03/9.90 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; 24.03/9.90 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; 24.03/9.90 24.03/9.90 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); 24.03/9.90 24.03/9.90 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 24.03/9.90 24.03/9.90 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 24.03/9.90 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 24.03/9.90 24.03/9.90 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 24.03/9.90 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); 24.03/9.90 24.03/9.90 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 24.03/9.90 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); 24.03/9.90 24.03/9.90 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; 24.03/9.90 24.03/9.90 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); 24.03/9.90 24.03/9.90 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 24.03/9.90 24.03/9.90 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 24.03/9.90 24.03/9.90 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 24.03/9.90 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 24.03/9.90 24.03/9.90 mkBranchBalance_ok wyx wyy wyz = True; 24.03/9.90 24.03/9.90 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 24.03/9.90 24.03/9.90 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 24.03/9.90 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 24.03/9.90 24.03/9.90 mkBranchLeft_ok0Biggest_left_key wzz = fst (findMax wzz); 24.03/9.90 24.03/9.90 mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 24.03/9.90 24.03/9.90 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; 24.03/9.90 24.03/9.90 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 24.03/9.90 24.03/9.90 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 24.03/9.90 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 24.03/9.90 24.03/9.90 mkBranchRight_ok0Smallest_right_key wzy = fst (findMin wzy); 24.03/9.90 24.03/9.90 mkBranchRight_size wyx wyy wyz = sizeFM wyx; 24.03/9.90 24.03/9.90 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 24.03/9.90 mkBranchUnbox wyx wyy wyz x = x; 24.03/9.90 24.03/9.90 sIZE_RATIO :: Int; 24.03/9.90 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 24.03/9.90 24.03/9.90 sizeFM :: FiniteMap b a -> Int; 24.03/9.90 sizeFM EmptyFM = Pos Zero; 24.03/9.90 sizeFM (Branch vyu vyv size vyw vyx) = size; 24.03/9.90 24.03/9.90 unitFM :: b -> a -> FiniteMap b a; 24.03/9.90 unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; 24.03/9.90 24.03/9.90 } 24.03/9.90 module Maybe where { 24.03/9.90 import qualified FiniteMap; 24.03/9.90 import qualified Main; 24.03/9.90 import qualified Prelude; 24.03/9.90 } 24.03/9.90 module Main where { 24.03/9.90 import qualified FiniteMap; 24.03/9.90 import qualified Maybe; 24.03/9.90 import qualified Prelude; 24.03/9.90 } 24.03/9.90 24.03/9.90 ---------------------------------------- 24.03/9.90 24.03/9.90 (15) Narrow (SOUND) 24.03/9.90 Haskell To QDPs 24.03/9.90 24.03/9.90 digraph dp_graph { 24.03/9.90 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.addListToFM_C",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 24.03/9.90 3[label="FiniteMap.addListToFM_C xuu3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 24.03/9.90 4[label="FiniteMap.addListToFM_C xuu3 xuu4",fontsize=16,color="grey",shape="box"];4 -> 5[label="",style="dashed", color="grey", weight=3]; 24.03/9.90 5[label="FiniteMap.addListToFM_C xuu3 xuu4 xuu5",fontsize=16,color="black",shape="triangle"];5 -> 6[label="",style="solid", color="black", weight=3]; 24.03/9.90 6[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 xuu5",fontsize=16,color="burlywood",shape="triangle"];4379[label="xuu5/xuu50 : xuu51",fontsize=10,color="white",style="solid",shape="box"];6 -> 4379[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4379 -> 7[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4380[label="xuu5/[]",fontsize=10,color="white",style="solid",shape="box"];6 -> 4380[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4380 -> 8[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 7[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 (xuu50 : xuu51)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 24.03/9.90 8[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 []",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 24.03/9.90 9 -> 6[label="",style="dashed", color="red", weight=0]; 24.03/9.90 9[label="foldl (FiniteMap.addListToFM_CAdd xuu3) (FiniteMap.addListToFM_CAdd xuu3 xuu4 xuu50) xuu51",fontsize=16,color="magenta"];9 -> 11[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 9 -> 12[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 10[label="xuu4",fontsize=16,color="green",shape="box"];11[label="FiniteMap.addListToFM_CAdd xuu3 xuu4 xuu50",fontsize=16,color="burlywood",shape="box"];4381[label="xuu50/(xuu500,xuu501)",fontsize=10,color="white",style="solid",shape="box"];11 -> 4381[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4381 -> 13[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 12[label="xuu51",fontsize=16,color="green",shape="box"];13[label="FiniteMap.addListToFM_CAdd xuu3 xuu4 (xuu500,xuu501)",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 24.03/9.90 14[label="FiniteMap.addToFM_C xuu3 xuu4 xuu500 xuu501",fontsize=16,color="burlywood",shape="triangle"];4382[label="xuu4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];14 -> 4382[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4382 -> 15[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4383[label="xuu4/FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44",fontsize=10,color="white",style="solid",shape="box"];14 -> 4383[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4383 -> 16[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 15[label="FiniteMap.addToFM_C xuu3 FiniteMap.EmptyFM xuu500 xuu501",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 24.03/9.90 16[label="FiniteMap.addToFM_C xuu3 (FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44) xuu500 xuu501",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 24.03/9.90 17[label="FiniteMap.addToFM_C4 xuu3 FiniteMap.EmptyFM xuu500 xuu501",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 24.03/9.90 18[label="FiniteMap.addToFM_C3 xuu3 (FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44) xuu500 xuu501",fontsize=16,color="black",shape="box"];18 -> 20[label="",style="solid", color="black", weight=3]; 24.03/9.90 19[label="FiniteMap.unitFM xuu500 xuu501",fontsize=16,color="black",shape="box"];19 -> 21[label="",style="solid", color="black", weight=3]; 24.03/9.90 20[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 xuu500 xuu501 (xuu500 < xuu40)",fontsize=16,color="black",shape="box"];20 -> 22[label="",style="solid", color="black", weight=3]; 24.03/9.90 21[label="FiniteMap.Branch xuu500 xuu501 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];21 -> 23[label="",style="dashed", color="green", weight=3]; 24.03/9.90 21 -> 24[label="",style="dashed", color="green", weight=3]; 24.03/9.90 22[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 xuu500 xuu501 (compare xuu500 xuu40 == LT)",fontsize=16,color="black",shape="box"];22 -> 25[label="",style="solid", color="black", weight=3]; 24.03/9.90 23[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];23 -> 26[label="",style="solid", color="black", weight=3]; 24.03/9.90 24 -> 23[label="",style="dashed", color="red", weight=0]; 24.03/9.90 24[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];25[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 xuu500 xuu501 (compare3 xuu500 xuu40 == LT)",fontsize=16,color="black",shape="box"];25 -> 27[label="",style="solid", color="black", weight=3]; 24.03/9.90 26[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];27[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 xuu500 xuu501 (compare2 xuu500 xuu40 (xuu500 == xuu40) == LT)",fontsize=16,color="burlywood",shape="box"];4384[label="xuu500/Left xuu5000",fontsize=10,color="white",style="solid",shape="box"];27 -> 4384[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4384 -> 28[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4385[label="xuu500/Right xuu5000",fontsize=10,color="white",style="solid",shape="box"];27 -> 4385[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4385 -> 29[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 28[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 (Left xuu5000) xuu501 (compare2 (Left xuu5000) xuu40 (Left xuu5000 == xuu40) == LT)",fontsize=16,color="burlywood",shape="box"];4386[label="xuu40/Left xuu400",fontsize=10,color="white",style="solid",shape="box"];28 -> 4386[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4386 -> 30[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4387[label="xuu40/Right xuu400",fontsize=10,color="white",style="solid",shape="box"];28 -> 4387[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4387 -> 31[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 29[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 (Right xuu5000) xuu501 (compare2 (Right xuu5000) xuu40 (Right xuu5000 == xuu40) == LT)",fontsize=16,color="burlywood",shape="box"];4388[label="xuu40/Left xuu400",fontsize=10,color="white",style="solid",shape="box"];29 -> 4388[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4388 -> 32[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4389[label="xuu40/Right xuu400",fontsize=10,color="white",style="solid",shape="box"];29 -> 4389[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4389 -> 33[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 30[label="FiniteMap.addToFM_C2 xuu3 (Left xuu400) xuu41 xuu42 xuu43 xuu44 (Left xuu5000) xuu501 (compare2 (Left xuu5000) (Left xuu400) (Left xuu5000 == Left xuu400) == LT)",fontsize=16,color="black",shape="box"];30 -> 34[label="",style="solid", color="black", weight=3]; 24.03/9.90 31[label="FiniteMap.addToFM_C2 xuu3 (Right xuu400) xuu41 xuu42 xuu43 xuu44 (Left xuu5000) xuu501 (compare2 (Left xuu5000) (Right xuu400) (Left xuu5000 == Right xuu400) == LT)",fontsize=16,color="black",shape="box"];31 -> 35[label="",style="solid", color="black", weight=3]; 24.03/9.90 32[label="FiniteMap.addToFM_C2 xuu3 (Left xuu400) xuu41 xuu42 xuu43 xuu44 (Right xuu5000) xuu501 (compare2 (Right xuu5000) (Left xuu400) (Right xuu5000 == Left xuu400) == LT)",fontsize=16,color="black",shape="box"];32 -> 36[label="",style="solid", color="black", weight=3]; 24.03/9.90 33[label="FiniteMap.addToFM_C2 xuu3 (Right xuu400) xuu41 xuu42 xuu43 xuu44 (Right xuu5000) xuu501 (compare2 (Right xuu5000) (Right xuu400) (Right xuu5000 == Right xuu400) == LT)",fontsize=16,color="black",shape="box"];33 -> 37[label="",style="solid", color="black", weight=3]; 24.03/9.90 34 -> 200[label="",style="dashed", color="red", weight=0]; 24.03/9.90 34[label="FiniteMap.addToFM_C2 xuu3 (Left xuu400) xuu41 xuu42 xuu43 xuu44 (Left xuu5000) xuu501 (compare2 (Left xuu5000) (Left xuu400) (xuu5000 == xuu400) == LT)",fontsize=16,color="magenta"];34 -> 201[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 34 -> 202[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 34 -> 203[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 34 -> 204[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 34 -> 205[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 34 -> 206[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 34 -> 207[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 34 -> 208[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 34 -> 209[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 35 -> 116[label="",style="dashed", color="red", weight=0]; 24.03/9.90 35[label="FiniteMap.addToFM_C2 xuu3 (Right xuu400) xuu41 xuu42 xuu43 xuu44 (Left xuu5000) xuu501 (compare2 (Left xuu5000) (Right xuu400) False == LT)",fontsize=16,color="magenta"];35 -> 117[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 36 -> 124[label="",style="dashed", color="red", weight=0]; 24.03/9.90 36[label="FiniteMap.addToFM_C2 xuu3 (Left xuu400) xuu41 xuu42 xuu43 xuu44 (Right xuu5000) xuu501 (compare2 (Right xuu5000) (Left xuu400) False == LT)",fontsize=16,color="magenta"];36 -> 125[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 37 -> 255[label="",style="dashed", color="red", weight=0]; 24.03/9.90 37[label="FiniteMap.addToFM_C2 xuu3 (Right xuu400) xuu41 xuu42 xuu43 xuu44 (Right xuu5000) xuu501 (compare2 (Right xuu5000) (Right xuu400) (xuu5000 == xuu400) == LT)",fontsize=16,color="magenta"];37 -> 256[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 37 -> 257[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 37 -> 258[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 37 -> 259[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 37 -> 260[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 37 -> 261[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 37 -> 262[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 37 -> 263[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 37 -> 264[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 201[label="xuu43",fontsize=16,color="green",shape="box"];202 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.90 202[label="compare2 (Left xuu5000) (Left xuu400) (xuu5000 == xuu400) == LT",fontsize=16,color="magenta"];202 -> 213[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 202 -> 214[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 203[label="xuu501",fontsize=16,color="green",shape="box"];204[label="xuu42",fontsize=16,color="green",shape="box"];205[label="xuu41",fontsize=16,color="green",shape="box"];206[label="xuu44",fontsize=16,color="green",shape="box"];207[label="xuu3",fontsize=16,color="green",shape="box"];208[label="xuu400",fontsize=16,color="green",shape="box"];209[label="xuu5000",fontsize=16,color="green",shape="box"];200[label="FiniteMap.addToFM_C2 xuu16 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 xuu46",fontsize=16,color="burlywood",shape="triangle"];4390[label="xuu46/False",fontsize=10,color="white",style="solid",shape="box"];200 -> 4390[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4390 -> 215[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4391[label="xuu46/True",fontsize=10,color="white",style="solid",shape="box"];200 -> 4391[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4391 -> 216[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 117 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.90 117[label="compare2 (Left xuu5000) (Right xuu400) False == LT",fontsize=16,color="magenta"];117 -> 120[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 117 -> 121[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 116[label="FiniteMap.addToFM_C2 xuu3 (Right xuu400) xuu41 xuu42 xuu43 xuu44 (Left xuu5000) xuu501 xuu44",fontsize=16,color="burlywood",shape="triangle"];4392[label="xuu44/False",fontsize=10,color="white",style="solid",shape="box"];116 -> 4392[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4392 -> 122[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4393[label="xuu44/True",fontsize=10,color="white",style="solid",shape="box"];116 -> 4393[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4393 -> 123[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 125 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.90 125[label="compare2 (Right xuu5000) (Left xuu400) False == LT",fontsize=16,color="magenta"];125 -> 128[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 125 -> 129[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 124[label="FiniteMap.addToFM_C2 xuu3 (Left xuu400) xuu41 xuu42 xuu43 xuu44 (Right xuu5000) xuu501 xuu45",fontsize=16,color="burlywood",shape="triangle"];4394[label="xuu45/False",fontsize=10,color="white",style="solid",shape="box"];124 -> 4394[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4394 -> 130[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4395[label="xuu45/True",fontsize=10,color="white",style="solid",shape="box"];124 -> 4395[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4395 -> 131[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 256[label="xuu3",fontsize=16,color="green",shape="box"];257[label="xuu42",fontsize=16,color="green",shape="box"];258[label="xuu5000",fontsize=16,color="green",shape="box"];259 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.90 259[label="compare2 (Right xuu5000) (Right xuu400) (xuu5000 == xuu400) == LT",fontsize=16,color="magenta"];259 -> 268[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 259 -> 269[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 260[label="xuu44",fontsize=16,color="green",shape="box"];261[label="xuu501",fontsize=16,color="green",shape="box"];262[label="xuu43",fontsize=16,color="green",shape="box"];263[label="xuu400",fontsize=16,color="green",shape="box"];264[label="xuu41",fontsize=16,color="green",shape="box"];255[label="FiniteMap.addToFM_C2 xuu35 (Right xuu36) xuu37 xuu38 xuu39 xuu40 (Right xuu41) xuu42 xuu56",fontsize=16,color="burlywood",shape="triangle"];4396[label="xuu56/False",fontsize=10,color="white",style="solid",shape="box"];255 -> 4396[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4396 -> 270[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4397[label="xuu56/True",fontsize=10,color="white",style="solid",shape="box"];255 -> 4397[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4397 -> 271[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 213 -> 2183[label="",style="dashed", color="red", weight=0]; 24.03/9.90 213[label="compare2 (Left xuu5000) (Left xuu400) (xuu5000 == xuu400)",fontsize=16,color="magenta"];213 -> 2184[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 213 -> 2185[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 213 -> 2186[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 214[label="LT",fontsize=16,color="green",shape="box"];73[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4398[label="xuu5000/LT",fontsize=10,color="white",style="solid",shape="box"];73 -> 4398[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4398 -> 111[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4399[label="xuu5000/EQ",fontsize=10,color="white",style="solid",shape="box"];73 -> 4399[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4399 -> 112[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4400[label="xuu5000/GT",fontsize=10,color="white",style="solid",shape="box"];73 -> 4400[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4400 -> 113[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 215[label="FiniteMap.addToFM_C2 xuu16 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 False",fontsize=16,color="black",shape="box"];215 -> 228[label="",style="solid", color="black", weight=3]; 24.03/9.90 216[label="FiniteMap.addToFM_C2 xuu16 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 True",fontsize=16,color="black",shape="box"];216 -> 229[label="",style="solid", color="black", weight=3]; 24.03/9.90 120 -> 2183[label="",style="dashed", color="red", weight=0]; 24.03/9.90 120[label="compare2 (Left xuu5000) (Right xuu400) False",fontsize=16,color="magenta"];120 -> 2187[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 120 -> 2188[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 120 -> 2189[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 121[label="LT",fontsize=16,color="green",shape="box"];122[label="FiniteMap.addToFM_C2 xuu3 (Right xuu400) xuu41 xuu42 xuu43 xuu44 (Left xuu5000) xuu501 False",fontsize=16,color="black",shape="box"];122 -> 133[label="",style="solid", color="black", weight=3]; 24.03/9.90 123[label="FiniteMap.addToFM_C2 xuu3 (Right xuu400) xuu41 xuu42 xuu43 xuu44 (Left xuu5000) xuu501 True",fontsize=16,color="black",shape="box"];123 -> 134[label="",style="solid", color="black", weight=3]; 24.03/9.90 128 -> 2183[label="",style="dashed", color="red", weight=0]; 24.03/9.90 128[label="compare2 (Right xuu5000) (Left xuu400) False",fontsize=16,color="magenta"];128 -> 2190[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 128 -> 2191[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 128 -> 2192[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 129[label="LT",fontsize=16,color="green",shape="box"];130[label="FiniteMap.addToFM_C2 xuu3 (Left xuu400) xuu41 xuu42 xuu43 xuu44 (Right xuu5000) xuu501 False",fontsize=16,color="black",shape="box"];130 -> 218[label="",style="solid", color="black", weight=3]; 24.03/9.90 131[label="FiniteMap.addToFM_C2 xuu3 (Left xuu400) xuu41 xuu42 xuu43 xuu44 (Right xuu5000) xuu501 True",fontsize=16,color="black",shape="box"];131 -> 219[label="",style="solid", color="black", weight=3]; 24.03/9.90 268 -> 2183[label="",style="dashed", color="red", weight=0]; 24.03/9.90 268[label="compare2 (Right xuu5000) (Right xuu400) (xuu5000 == xuu400)",fontsize=16,color="magenta"];268 -> 2193[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 268 -> 2194[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 268 -> 2195[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 269[label="LT",fontsize=16,color="green",shape="box"];270[label="FiniteMap.addToFM_C2 xuu35 (Right xuu36) xuu37 xuu38 xuu39 xuu40 (Right xuu41) xuu42 False",fontsize=16,color="black",shape="box"];270 -> 307[label="",style="solid", color="black", weight=3]; 24.03/9.90 271[label="FiniteMap.addToFM_C2 xuu35 (Right xuu36) xuu37 xuu38 xuu39 xuu40 (Right xuu41) xuu42 True",fontsize=16,color="black",shape="box"];271 -> 308[label="",style="solid", color="black", weight=3]; 24.03/9.90 2184[label="xuu5000 == xuu400",fontsize=16,color="blue",shape="box"];4401[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4401[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4401 -> 2221[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4402[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4402[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4402 -> 2222[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4403[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4403[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4403 -> 2223[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4404[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4404[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4404 -> 2224[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4405[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4405[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4405 -> 2225[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4406[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4406[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4406 -> 2226[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4407[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4407[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4407 -> 2227[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4408[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4408[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4408 -> 2228[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4409[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4409[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4409 -> 2229[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4410[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4410[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4410 -> 2230[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4411[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4411[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4411 -> 2231[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4412[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4412[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4412 -> 2232[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4413[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4413[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4413 -> 2233[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4414[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4414[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4414 -> 2234[label="",style="solid", color="blue", weight=3]; 24.03/9.90 2185[label="Left xuu5000",fontsize=16,color="green",shape="box"];2186[label="Left xuu400",fontsize=16,color="green",shape="box"];2183[label="compare2 xuu520 xuu530 xuu152",fontsize=16,color="burlywood",shape="triangle"];4415[label="xuu152/False",fontsize=10,color="white",style="solid",shape="box"];2183 -> 4415[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4415 -> 2235[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4416[label="xuu152/True",fontsize=10,color="white",style="solid",shape="box"];2183 -> 4416[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4416 -> 2236[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 111[label="LT == xuu400",fontsize=16,color="burlywood",shape="box"];4417[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];111 -> 4417[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4417 -> 191[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4418[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];111 -> 4418[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4418 -> 192[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4419[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];111 -> 4419[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4419 -> 193[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 112[label="EQ == xuu400",fontsize=16,color="burlywood",shape="box"];4420[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];112 -> 4420[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4420 -> 194[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4421[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];112 -> 4421[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4421 -> 195[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4422[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];112 -> 4422[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4422 -> 196[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 113[label="GT == xuu400",fontsize=16,color="burlywood",shape="box"];4423[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];113 -> 4423[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4423 -> 197[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4424[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];113 -> 4424[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4424 -> 198[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4425[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];113 -> 4425[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4425 -> 199[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 228 -> 300[label="",style="dashed", color="red", weight=0]; 24.03/9.90 228[label="FiniteMap.addToFM_C1 xuu16 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 (Left xuu22 > Left xuu17)",fontsize=16,color="magenta"];228 -> 301[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 229 -> 248[label="",style="dashed", color="red", weight=0]; 24.03/9.90 229[label="FiniteMap.mkBalBranch (Left xuu17) xuu18 (FiniteMap.addToFM_C xuu16 xuu20 (Left xuu22) xuu23) xuu21",fontsize=16,color="magenta"];229 -> 249[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 229 -> 250[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 229 -> 251[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 229 -> 252[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2187[label="False",fontsize=16,color="green",shape="box"];2188[label="Left xuu5000",fontsize=16,color="green",shape="box"];2189[label="Right xuu400",fontsize=16,color="green",shape="box"];133 -> 334[label="",style="dashed", color="red", weight=0]; 24.03/9.90 133[label="FiniteMap.addToFM_C1 xuu3 (Right xuu400) xuu41 xuu42 xuu43 xuu44 (Left xuu5000) xuu501 (Left xuu5000 > Right xuu400)",fontsize=16,color="magenta"];133 -> 335[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 134 -> 222[label="",style="dashed", color="red", weight=0]; 24.03/9.90 134[label="FiniteMap.mkBalBranch (Right xuu400) xuu41 (FiniteMap.addToFM_C xuu3 xuu43 (Left xuu5000) xuu501) xuu44",fontsize=16,color="magenta"];134 -> 223[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2190[label="False",fontsize=16,color="green",shape="box"];2191[label="Right xuu5000",fontsize=16,color="green",shape="box"];2192[label="Left xuu400",fontsize=16,color="green",shape="box"];218 -> 349[label="",style="dashed", color="red", weight=0]; 24.03/9.90 218[label="FiniteMap.addToFM_C1 xuu3 (Left xuu400) xuu41 xuu42 xuu43 xuu44 (Right xuu5000) xuu501 (Right xuu5000 > Left xuu400)",fontsize=16,color="magenta"];218 -> 350[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 219 -> 248[label="",style="dashed", color="red", weight=0]; 24.03/9.90 219[label="FiniteMap.mkBalBranch (Left xuu400) xuu41 (FiniteMap.addToFM_C xuu3 xuu43 (Right xuu5000) xuu501) xuu44",fontsize=16,color="magenta"];219 -> 253[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2193[label="xuu5000 == xuu400",fontsize=16,color="blue",shape="box"];4426[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 4426[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4426 -> 2237[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4427[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 4427[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4427 -> 2238[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4428[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 4428[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4428 -> 2239[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4429[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 4429[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4429 -> 2240[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4430[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 4430[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4430 -> 2241[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4431[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 4431[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4431 -> 2242[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4432[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 4432[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4432 -> 2243[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4433[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 4433[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4433 -> 2244[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4434[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 4434[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4434 -> 2245[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4435[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 4435[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4435 -> 2246[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4436[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 4436[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4436 -> 2247[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4437[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 4437[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4437 -> 2248[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4438[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 4438[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4438 -> 2249[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4439[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 4439[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4439 -> 2250[label="",style="solid", color="blue", weight=3]; 24.03/9.90 2194[label="Right xuu5000",fontsize=16,color="green",shape="box"];2195[label="Right xuu400",fontsize=16,color="green",shape="box"];307 -> 387[label="",style="dashed", color="red", weight=0]; 24.03/9.90 307[label="FiniteMap.addToFM_C1 xuu35 (Right xuu36) xuu37 xuu38 xuu39 xuu40 (Right xuu41) xuu42 (Right xuu41 > Right xuu36)",fontsize=16,color="magenta"];307 -> 388[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 308 -> 222[label="",style="dashed", color="red", weight=0]; 24.03/9.90 308[label="FiniteMap.mkBalBranch (Right xuu36) xuu37 (FiniteMap.addToFM_C xuu35 xuu39 (Right xuu41) xuu42) xuu40",fontsize=16,color="magenta"];308 -> 338[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 308 -> 339[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 308 -> 340[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 308 -> 341[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2221[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4440[label="xuu5000/()",fontsize=10,color="white",style="solid",shape="box"];2221 -> 4440[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4440 -> 2287[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2222[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4441[label="xuu5000/(xuu50000,xuu50001,xuu50002)",fontsize=10,color="white",style="solid",shape="box"];2222 -> 4441[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4441 -> 2288[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2223[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4442[label="xuu5000/xuu50000 :% xuu50001",fontsize=10,color="white",style="solid",shape="box"];2223 -> 4442[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4442 -> 2289[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2224[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4443[label="xuu5000/False",fontsize=10,color="white",style="solid",shape="box"];2224 -> 4443[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4443 -> 2290[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4444[label="xuu5000/True",fontsize=10,color="white",style="solid",shape="box"];2224 -> 4444[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4444 -> 2291[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2225[label="xuu5000 == xuu400",fontsize=16,color="black",shape="triangle"];2225 -> 2292[label="",style="solid", color="black", weight=3]; 24.03/9.90 2226[label="xuu5000 == xuu400",fontsize=16,color="black",shape="triangle"];2226 -> 2293[label="",style="solid", color="black", weight=3]; 24.03/9.90 2227[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4445[label="xuu5000/xuu50000 : xuu50001",fontsize=10,color="white",style="solid",shape="box"];2227 -> 4445[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4445 -> 2294[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4446[label="xuu5000/[]",fontsize=10,color="white",style="solid",shape="box"];2227 -> 4446[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4446 -> 2295[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2228[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4447[label="xuu5000/Nothing",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4447[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4447 -> 2296[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4448[label="xuu5000/Just xuu50000",fontsize=10,color="white",style="solid",shape="box"];2228 -> 4448[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4448 -> 2297[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2229[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4449[label="xuu5000/Integer xuu50000",fontsize=10,color="white",style="solid",shape="box"];2229 -> 4449[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4449 -> 2298[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2230[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4450[label="xuu5000/(xuu50000,xuu50001)",fontsize=10,color="white",style="solid",shape="box"];2230 -> 4450[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4450 -> 2299[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2231[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];4451[label="xuu5000/Left xuu50000",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4451[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4451 -> 2300[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4452[label="xuu5000/Right xuu50000",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4452[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4452 -> 2301[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2232[label="xuu5000 == xuu400",fontsize=16,color="black",shape="triangle"];2232 -> 2302[label="",style="solid", color="black", weight=3]; 24.03/9.90 2233[label="xuu5000 == xuu400",fontsize=16,color="black",shape="triangle"];2233 -> 2303[label="",style="solid", color="black", weight=3]; 24.03/9.90 2234 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2234[label="xuu5000 == xuu400",fontsize=16,color="magenta"];2235[label="compare2 xuu520 xuu530 False",fontsize=16,color="black",shape="box"];2235 -> 2304[label="",style="solid", color="black", weight=3]; 24.03/9.90 2236[label="compare2 xuu520 xuu530 True",fontsize=16,color="black",shape="box"];2236 -> 2305[label="",style="solid", color="black", weight=3]; 24.03/9.90 191[label="LT == LT",fontsize=16,color="black",shape="box"];191 -> 291[label="",style="solid", color="black", weight=3]; 24.03/9.90 192[label="LT == EQ",fontsize=16,color="black",shape="box"];192 -> 292[label="",style="solid", color="black", weight=3]; 24.03/9.90 193[label="LT == GT",fontsize=16,color="black",shape="box"];193 -> 293[label="",style="solid", color="black", weight=3]; 24.03/9.90 194[label="EQ == LT",fontsize=16,color="black",shape="box"];194 -> 294[label="",style="solid", color="black", weight=3]; 24.03/9.90 195[label="EQ == EQ",fontsize=16,color="black",shape="box"];195 -> 295[label="",style="solid", color="black", weight=3]; 24.03/9.90 196[label="EQ == GT",fontsize=16,color="black",shape="box"];196 -> 296[label="",style="solid", color="black", weight=3]; 24.03/9.90 197[label="GT == LT",fontsize=16,color="black",shape="box"];197 -> 297[label="",style="solid", color="black", weight=3]; 24.03/9.90 198[label="GT == EQ",fontsize=16,color="black",shape="box"];198 -> 298[label="",style="solid", color="black", weight=3]; 24.03/9.90 199[label="GT == GT",fontsize=16,color="black",shape="box"];199 -> 299[label="",style="solid", color="black", weight=3]; 24.03/9.90 301[label="Left xuu22 > Left xuu17",fontsize=16,color="black",shape="box"];301 -> 325[label="",style="solid", color="black", weight=3]; 24.03/9.90 300[label="FiniteMap.addToFM_C1 xuu16 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 xuu57",fontsize=16,color="burlywood",shape="triangle"];4453[label="xuu57/False",fontsize=10,color="white",style="solid",shape="box"];300 -> 4453[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4453 -> 326[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4454[label="xuu57/True",fontsize=10,color="white",style="solid",shape="box"];300 -> 4454[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4454 -> 327[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 249[label="xuu18",fontsize=16,color="green",shape="box"];250[label="xuu21",fontsize=16,color="green",shape="box"];251[label="xuu17",fontsize=16,color="green",shape="box"];252 -> 14[label="",style="dashed", color="red", weight=0]; 24.03/9.90 252[label="FiniteMap.addToFM_C xuu16 xuu20 (Left xuu22) xuu23",fontsize=16,color="magenta"];252 -> 328[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 252 -> 329[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 252 -> 330[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 252 -> 331[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 248[label="FiniteMap.mkBalBranch (Left xuu400) xuu41 xuu55 xuu44",fontsize=16,color="black",shape="triangle"];248 -> 332[label="",style="solid", color="black", weight=3]; 24.03/9.90 335[label="Left xuu5000 > Right xuu400",fontsize=16,color="black",shape="box"];335 -> 342[label="",style="solid", color="black", weight=3]; 24.03/9.90 334[label="FiniteMap.addToFM_C1 xuu3 (Right xuu400) xuu41 xuu42 xuu43 xuu44 (Left xuu5000) xuu501 xuu65",fontsize=16,color="burlywood",shape="triangle"];4455[label="xuu65/False",fontsize=10,color="white",style="solid",shape="box"];334 -> 4455[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4455 -> 343[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4456[label="xuu65/True",fontsize=10,color="white",style="solid",shape="box"];334 -> 4456[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4456 -> 344[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 223 -> 14[label="",style="dashed", color="red", weight=0]; 24.03/9.90 223[label="FiniteMap.addToFM_C xuu3 xuu43 (Left xuu5000) xuu501",fontsize=16,color="magenta"];223 -> 345[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 223 -> 346[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 222[label="FiniteMap.mkBalBranch (Right xuu400) xuu41 xuu47 xuu44",fontsize=16,color="black",shape="triangle"];222 -> 347[label="",style="solid", color="black", weight=3]; 24.03/9.90 350[label="Right xuu5000 > Left xuu400",fontsize=16,color="black",shape="box"];350 -> 352[label="",style="solid", color="black", weight=3]; 24.03/9.90 349[label="FiniteMap.addToFM_C1 xuu3 (Left xuu400) xuu41 xuu42 xuu43 xuu44 (Right xuu5000) xuu501 xuu66",fontsize=16,color="burlywood",shape="triangle"];4457[label="xuu66/False",fontsize=10,color="white",style="solid",shape="box"];349 -> 4457[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4457 -> 353[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4458[label="xuu66/True",fontsize=10,color="white",style="solid",shape="box"];349 -> 4458[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4458 -> 354[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 253 -> 14[label="",style="dashed", color="red", weight=0]; 24.03/9.90 253[label="FiniteMap.addToFM_C xuu3 xuu43 (Right xuu5000) xuu501",fontsize=16,color="magenta"];253 -> 355[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 253 -> 356[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2237 -> 2221[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2237[label="xuu5000 == xuu400",fontsize=16,color="magenta"];2237 -> 2306[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2237 -> 2307[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2238 -> 2222[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2238[label="xuu5000 == xuu400",fontsize=16,color="magenta"];2238 -> 2308[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2238 -> 2309[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2239 -> 2223[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2239[label="xuu5000 == xuu400",fontsize=16,color="magenta"];2239 -> 2310[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2239 -> 2311[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2240 -> 2224[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2240[label="xuu5000 == xuu400",fontsize=16,color="magenta"];2240 -> 2312[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2240 -> 2313[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2241 -> 2225[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2241[label="xuu5000 == xuu400",fontsize=16,color="magenta"];2241 -> 2314[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2241 -> 2315[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2242 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2242[label="xuu5000 == xuu400",fontsize=16,color="magenta"];2242 -> 2316[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2242 -> 2317[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2243 -> 2227[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2243[label="xuu5000 == xuu400",fontsize=16,color="magenta"];2243 -> 2318[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2243 -> 2319[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2244 -> 2228[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2244[label="xuu5000 == xuu400",fontsize=16,color="magenta"];2244 -> 2320[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2244 -> 2321[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2245 -> 2229[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2245[label="xuu5000 == xuu400",fontsize=16,color="magenta"];2245 -> 2322[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2245 -> 2323[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2246 -> 2230[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2246[label="xuu5000 == xuu400",fontsize=16,color="magenta"];2246 -> 2324[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2246 -> 2325[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2247 -> 2231[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2247[label="xuu5000 == xuu400",fontsize=16,color="magenta"];2247 -> 2326[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2247 -> 2327[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2248 -> 2232[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2248[label="xuu5000 == xuu400",fontsize=16,color="magenta"];2248 -> 2328[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2248 -> 2329[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2249 -> 2233[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2249[label="xuu5000 == xuu400",fontsize=16,color="magenta"];2249 -> 2330[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2249 -> 2331[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2250 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2250[label="xuu5000 == xuu400",fontsize=16,color="magenta"];2250 -> 2332[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2250 -> 2333[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 388[label="Right xuu41 > Right xuu36",fontsize=16,color="black",shape="box"];388 -> 390[label="",style="solid", color="black", weight=3]; 24.03/9.90 387[label="FiniteMap.addToFM_C1 xuu35 (Right xuu36) xuu37 xuu38 xuu39 xuu40 (Right xuu41) xuu42 xuu67",fontsize=16,color="burlywood",shape="triangle"];4459[label="xuu67/False",fontsize=10,color="white",style="solid",shape="box"];387 -> 4459[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4459 -> 391[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4460[label="xuu67/True",fontsize=10,color="white",style="solid",shape="box"];387 -> 4460[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4460 -> 392[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 338[label="xuu37",fontsize=16,color="green",shape="box"];339[label="xuu36",fontsize=16,color="green",shape="box"];340 -> 14[label="",style="dashed", color="red", weight=0]; 24.03/9.90 340[label="FiniteMap.addToFM_C xuu35 xuu39 (Right xuu41) xuu42",fontsize=16,color="magenta"];340 -> 393[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 340 -> 394[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 340 -> 395[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 340 -> 396[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 341[label="xuu40",fontsize=16,color="green",shape="box"];2287[label="() == xuu400",fontsize=16,color="burlywood",shape="box"];4461[label="xuu400/()",fontsize=10,color="white",style="solid",shape="box"];2287 -> 4461[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4461 -> 2364[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2288[label="(xuu50000,xuu50001,xuu50002) == xuu400",fontsize=16,color="burlywood",shape="box"];4462[label="xuu400/(xuu4000,xuu4001,xuu4002)",fontsize=10,color="white",style="solid",shape="box"];2288 -> 4462[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4462 -> 2365[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2289[label="xuu50000 :% xuu50001 == xuu400",fontsize=16,color="burlywood",shape="box"];4463[label="xuu400/xuu4000 :% xuu4001",fontsize=10,color="white",style="solid",shape="box"];2289 -> 4463[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4463 -> 2366[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2290[label="False == xuu400",fontsize=16,color="burlywood",shape="box"];4464[label="xuu400/False",fontsize=10,color="white",style="solid",shape="box"];2290 -> 4464[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4464 -> 2367[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4465[label="xuu400/True",fontsize=10,color="white",style="solid",shape="box"];2290 -> 4465[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4465 -> 2368[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2291[label="True == xuu400",fontsize=16,color="burlywood",shape="box"];4466[label="xuu400/False",fontsize=10,color="white",style="solid",shape="box"];2291 -> 4466[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4466 -> 2369[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4467[label="xuu400/True",fontsize=10,color="white",style="solid",shape="box"];2291 -> 4467[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4467 -> 2370[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2292[label="primEqDouble xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];4468[label="xuu5000/Double xuu50000 xuu50001",fontsize=10,color="white",style="solid",shape="box"];2292 -> 4468[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4468 -> 2371[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2293[label="primEqInt xuu5000 xuu400",fontsize=16,color="burlywood",shape="triangle"];4469[label="xuu5000/Pos xuu50000",fontsize=10,color="white",style="solid",shape="box"];2293 -> 4469[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4469 -> 2372[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4470[label="xuu5000/Neg xuu50000",fontsize=10,color="white",style="solid",shape="box"];2293 -> 4470[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4470 -> 2373[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2294[label="xuu50000 : xuu50001 == xuu400",fontsize=16,color="burlywood",shape="box"];4471[label="xuu400/xuu4000 : xuu4001",fontsize=10,color="white",style="solid",shape="box"];2294 -> 4471[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4471 -> 2374[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4472[label="xuu400/[]",fontsize=10,color="white",style="solid",shape="box"];2294 -> 4472[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4472 -> 2375[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2295[label="[] == xuu400",fontsize=16,color="burlywood",shape="box"];4473[label="xuu400/xuu4000 : xuu4001",fontsize=10,color="white",style="solid",shape="box"];2295 -> 4473[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4473 -> 2376[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4474[label="xuu400/[]",fontsize=10,color="white",style="solid",shape="box"];2295 -> 4474[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4474 -> 2377[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2296[label="Nothing == xuu400",fontsize=16,color="burlywood",shape="box"];4475[label="xuu400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2296 -> 4475[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4475 -> 2378[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4476[label="xuu400/Just xuu4000",fontsize=10,color="white",style="solid",shape="box"];2296 -> 4476[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4476 -> 2379[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2297[label="Just xuu50000 == xuu400",fontsize=16,color="burlywood",shape="box"];4477[label="xuu400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4477[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4477 -> 2380[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4478[label="xuu400/Just xuu4000",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4478[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4478 -> 2381[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2298[label="Integer xuu50000 == xuu400",fontsize=16,color="burlywood",shape="box"];4479[label="xuu400/Integer xuu4000",fontsize=10,color="white",style="solid",shape="box"];2298 -> 4479[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4479 -> 2382[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2299[label="(xuu50000,xuu50001) == xuu400",fontsize=16,color="burlywood",shape="box"];4480[label="xuu400/(xuu4000,xuu4001)",fontsize=10,color="white",style="solid",shape="box"];2299 -> 4480[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4480 -> 2383[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2300[label="Left xuu50000 == xuu400",fontsize=16,color="burlywood",shape="box"];4481[label="xuu400/Left xuu4000",fontsize=10,color="white",style="solid",shape="box"];2300 -> 4481[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4481 -> 2384[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4482[label="xuu400/Right xuu4000",fontsize=10,color="white",style="solid",shape="box"];2300 -> 4482[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4482 -> 2385[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2301[label="Right xuu50000 == xuu400",fontsize=16,color="burlywood",shape="box"];4483[label="xuu400/Left xuu4000",fontsize=10,color="white",style="solid",shape="box"];2301 -> 4483[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4483 -> 2386[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4484[label="xuu400/Right xuu4000",fontsize=10,color="white",style="solid",shape="box"];2301 -> 4484[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4484 -> 2387[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2302[label="primEqFloat xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];4485[label="xuu5000/Float xuu50000 xuu50001",fontsize=10,color="white",style="solid",shape="box"];2302 -> 4485[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4485 -> 2388[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2303[label="primEqChar xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];4486[label="xuu5000/Char xuu50000",fontsize=10,color="white",style="solid",shape="box"];2303 -> 4486[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4486 -> 2389[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2304[label="compare1 xuu520 xuu530 (xuu520 <= xuu530)",fontsize=16,color="burlywood",shape="box"];4487[label="xuu520/Left xuu5200",fontsize=10,color="white",style="solid",shape="box"];2304 -> 4487[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4487 -> 2390[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4488[label="xuu520/Right xuu5200",fontsize=10,color="white",style="solid",shape="box"];2304 -> 4488[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4488 -> 2391[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2305[label="EQ",fontsize=16,color="green",shape="box"];291[label="True",fontsize=16,color="green",shape="box"];292[label="False",fontsize=16,color="green",shape="box"];293[label="False",fontsize=16,color="green",shape="box"];294[label="False",fontsize=16,color="green",shape="box"];295[label="True",fontsize=16,color="green",shape="box"];296[label="False",fontsize=16,color="green",shape="box"];297[label="False",fontsize=16,color="green",shape="box"];298[label="False",fontsize=16,color="green",shape="box"];299[label="True",fontsize=16,color="green",shape="box"];325 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.90 325[label="compare (Left xuu22) (Left xuu17) == GT",fontsize=16,color="magenta"];325 -> 424[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 325 -> 425[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 326[label="FiniteMap.addToFM_C1 xuu16 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 False",fontsize=16,color="black",shape="box"];326 -> 426[label="",style="solid", color="black", weight=3]; 24.03/9.90 327[label="FiniteMap.addToFM_C1 xuu16 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 True",fontsize=16,color="black",shape="box"];327 -> 427[label="",style="solid", color="black", weight=3]; 24.03/9.90 328[label="Left xuu22",fontsize=16,color="green",shape="box"];329[label="xuu16",fontsize=16,color="green",shape="box"];330[label="xuu23",fontsize=16,color="green",shape="box"];331[label="xuu20",fontsize=16,color="green",shape="box"];332[label="FiniteMap.mkBalBranch6 (Left xuu400) xuu41 xuu55 xuu44",fontsize=16,color="black",shape="box"];332 -> 428[label="",style="solid", color="black", weight=3]; 24.03/9.90 342 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.90 342[label="compare (Left xuu5000) (Right xuu400) == GT",fontsize=16,color="magenta"];342 -> 429[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 342 -> 430[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 343[label="FiniteMap.addToFM_C1 xuu3 (Right xuu400) xuu41 xuu42 xuu43 xuu44 (Left xuu5000) xuu501 False",fontsize=16,color="black",shape="box"];343 -> 431[label="",style="solid", color="black", weight=3]; 24.03/9.90 344[label="FiniteMap.addToFM_C1 xuu3 (Right xuu400) xuu41 xuu42 xuu43 xuu44 (Left xuu5000) xuu501 True",fontsize=16,color="black",shape="box"];344 -> 432[label="",style="solid", color="black", weight=3]; 24.03/9.90 345[label="Left xuu5000",fontsize=16,color="green",shape="box"];346[label="xuu43",fontsize=16,color="green",shape="box"];347[label="FiniteMap.mkBalBranch6 (Right xuu400) xuu41 xuu47 xuu44",fontsize=16,color="black",shape="box"];347 -> 433[label="",style="solid", color="black", weight=3]; 24.03/9.90 352 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.90 352[label="compare (Right xuu5000) (Left xuu400) == GT",fontsize=16,color="magenta"];352 -> 435[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 352 -> 436[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 353[label="FiniteMap.addToFM_C1 xuu3 (Left xuu400) xuu41 xuu42 xuu43 xuu44 (Right xuu5000) xuu501 False",fontsize=16,color="black",shape="box"];353 -> 437[label="",style="solid", color="black", weight=3]; 24.03/9.90 354[label="FiniteMap.addToFM_C1 xuu3 (Left xuu400) xuu41 xuu42 xuu43 xuu44 (Right xuu5000) xuu501 True",fontsize=16,color="black",shape="box"];354 -> 438[label="",style="solid", color="black", weight=3]; 24.03/9.90 355[label="Right xuu5000",fontsize=16,color="green",shape="box"];356[label="xuu43",fontsize=16,color="green",shape="box"];2306[label="xuu5000",fontsize=16,color="green",shape="box"];2307[label="xuu400",fontsize=16,color="green",shape="box"];2308[label="xuu5000",fontsize=16,color="green",shape="box"];2309[label="xuu400",fontsize=16,color="green",shape="box"];2310[label="xuu5000",fontsize=16,color="green",shape="box"];2311[label="xuu400",fontsize=16,color="green",shape="box"];2312[label="xuu5000",fontsize=16,color="green",shape="box"];2313[label="xuu400",fontsize=16,color="green",shape="box"];2314[label="xuu5000",fontsize=16,color="green",shape="box"];2315[label="xuu400",fontsize=16,color="green",shape="box"];2316[label="xuu5000",fontsize=16,color="green",shape="box"];2317[label="xuu400",fontsize=16,color="green",shape="box"];2318[label="xuu5000",fontsize=16,color="green",shape="box"];2319[label="xuu400",fontsize=16,color="green",shape="box"];2320[label="xuu5000",fontsize=16,color="green",shape="box"];2321[label="xuu400",fontsize=16,color="green",shape="box"];2322[label="xuu5000",fontsize=16,color="green",shape="box"];2323[label="xuu400",fontsize=16,color="green",shape="box"];2324[label="xuu5000",fontsize=16,color="green",shape="box"];2325[label="xuu400",fontsize=16,color="green",shape="box"];2326[label="xuu5000",fontsize=16,color="green",shape="box"];2327[label="xuu400",fontsize=16,color="green",shape="box"];2328[label="xuu5000",fontsize=16,color="green",shape="box"];2329[label="xuu400",fontsize=16,color="green",shape="box"];2330[label="xuu5000",fontsize=16,color="green",shape="box"];2331[label="xuu400",fontsize=16,color="green",shape="box"];2332[label="xuu5000",fontsize=16,color="green",shape="box"];2333[label="xuu400",fontsize=16,color="green",shape="box"];390 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.90 390[label="compare (Right xuu41) (Right xuu36) == GT",fontsize=16,color="magenta"];390 -> 440[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 390 -> 441[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 391[label="FiniteMap.addToFM_C1 xuu35 (Right xuu36) xuu37 xuu38 xuu39 xuu40 (Right xuu41) xuu42 False",fontsize=16,color="black",shape="box"];391 -> 442[label="",style="solid", color="black", weight=3]; 24.03/9.90 392[label="FiniteMap.addToFM_C1 xuu35 (Right xuu36) xuu37 xuu38 xuu39 xuu40 (Right xuu41) xuu42 True",fontsize=16,color="black",shape="box"];392 -> 443[label="",style="solid", color="black", weight=3]; 24.03/9.90 393[label="Right xuu41",fontsize=16,color="green",shape="box"];394[label="xuu35",fontsize=16,color="green",shape="box"];395[label="xuu42",fontsize=16,color="green",shape="box"];396[label="xuu39",fontsize=16,color="green",shape="box"];2364[label="() == ()",fontsize=16,color="black",shape="box"];2364 -> 2460[label="",style="solid", color="black", weight=3]; 24.03/9.90 2365[label="(xuu50000,xuu50001,xuu50002) == (xuu4000,xuu4001,xuu4002)",fontsize=16,color="black",shape="box"];2365 -> 2461[label="",style="solid", color="black", weight=3]; 24.03/9.90 2366[label="xuu50000 :% xuu50001 == xuu4000 :% xuu4001",fontsize=16,color="black",shape="box"];2366 -> 2462[label="",style="solid", color="black", weight=3]; 24.03/9.90 2367[label="False == False",fontsize=16,color="black",shape="box"];2367 -> 2463[label="",style="solid", color="black", weight=3]; 24.03/9.90 2368[label="False == True",fontsize=16,color="black",shape="box"];2368 -> 2464[label="",style="solid", color="black", weight=3]; 24.03/9.90 2369[label="True == False",fontsize=16,color="black",shape="box"];2369 -> 2465[label="",style="solid", color="black", weight=3]; 24.03/9.90 2370[label="True == True",fontsize=16,color="black",shape="box"];2370 -> 2466[label="",style="solid", color="black", weight=3]; 24.03/9.90 2371[label="primEqDouble (Double xuu50000 xuu50001) xuu400",fontsize=16,color="burlywood",shape="box"];4489[label="xuu400/Double xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];2371 -> 4489[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4489 -> 2467[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2372[label="primEqInt (Pos xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];4490[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];2372 -> 4490[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4490 -> 2468[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4491[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];2372 -> 4491[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4491 -> 2469[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2373[label="primEqInt (Neg xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];4492[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];2373 -> 4492[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4492 -> 2470[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4493[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];2373 -> 4493[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4493 -> 2471[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2374[label="xuu50000 : xuu50001 == xuu4000 : xuu4001",fontsize=16,color="black",shape="box"];2374 -> 2472[label="",style="solid", color="black", weight=3]; 24.03/9.90 2375[label="xuu50000 : xuu50001 == []",fontsize=16,color="black",shape="box"];2375 -> 2473[label="",style="solid", color="black", weight=3]; 24.03/9.90 2376[label="[] == xuu4000 : xuu4001",fontsize=16,color="black",shape="box"];2376 -> 2474[label="",style="solid", color="black", weight=3]; 24.03/9.90 2377[label="[] == []",fontsize=16,color="black",shape="box"];2377 -> 2475[label="",style="solid", color="black", weight=3]; 24.03/9.90 2378[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2378 -> 2476[label="",style="solid", color="black", weight=3]; 24.03/9.90 2379[label="Nothing == Just xuu4000",fontsize=16,color="black",shape="box"];2379 -> 2477[label="",style="solid", color="black", weight=3]; 24.03/9.90 2380[label="Just xuu50000 == Nothing",fontsize=16,color="black",shape="box"];2380 -> 2478[label="",style="solid", color="black", weight=3]; 24.03/9.90 2381[label="Just xuu50000 == Just xuu4000",fontsize=16,color="black",shape="box"];2381 -> 2479[label="",style="solid", color="black", weight=3]; 24.03/9.90 2382[label="Integer xuu50000 == Integer xuu4000",fontsize=16,color="black",shape="box"];2382 -> 2480[label="",style="solid", color="black", weight=3]; 24.03/9.90 2383[label="(xuu50000,xuu50001) == (xuu4000,xuu4001)",fontsize=16,color="black",shape="box"];2383 -> 2481[label="",style="solid", color="black", weight=3]; 24.03/9.90 2384[label="Left xuu50000 == Left xuu4000",fontsize=16,color="black",shape="box"];2384 -> 2482[label="",style="solid", color="black", weight=3]; 24.03/9.90 2385[label="Left xuu50000 == Right xuu4000",fontsize=16,color="black",shape="box"];2385 -> 2483[label="",style="solid", color="black", weight=3]; 24.03/9.90 2386[label="Right xuu50000 == Left xuu4000",fontsize=16,color="black",shape="box"];2386 -> 2484[label="",style="solid", color="black", weight=3]; 24.03/9.90 2387[label="Right xuu50000 == Right xuu4000",fontsize=16,color="black",shape="box"];2387 -> 2485[label="",style="solid", color="black", weight=3]; 24.03/9.90 2388[label="primEqFloat (Float xuu50000 xuu50001) xuu400",fontsize=16,color="burlywood",shape="box"];4494[label="xuu400/Float xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];2388 -> 4494[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4494 -> 2486[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2389[label="primEqChar (Char xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];4495[label="xuu400/Char xuu4000",fontsize=10,color="white",style="solid",shape="box"];2389 -> 4495[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4495 -> 2487[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2390[label="compare1 (Left xuu5200) xuu530 (Left xuu5200 <= xuu530)",fontsize=16,color="burlywood",shape="box"];4496[label="xuu530/Left xuu5300",fontsize=10,color="white",style="solid",shape="box"];2390 -> 4496[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4496 -> 2488[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4497[label="xuu530/Right xuu5300",fontsize=10,color="white",style="solid",shape="box"];2390 -> 4497[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4497 -> 2489[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2391[label="compare1 (Right xuu5200) xuu530 (Right xuu5200 <= xuu530)",fontsize=16,color="burlywood",shape="box"];4498[label="xuu530/Left xuu5300",fontsize=10,color="white",style="solid",shape="box"];2391 -> 4498[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4498 -> 2490[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4499[label="xuu530/Right xuu5300",fontsize=10,color="white",style="solid",shape="box"];2391 -> 4499[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4499 -> 2491[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 424[label="compare (Left xuu22) (Left xuu17)",fontsize=16,color="black",shape="box"];424 -> 482[label="",style="solid", color="black", weight=3]; 24.03/9.90 425[label="GT",fontsize=16,color="green",shape="box"];426[label="FiniteMap.addToFM_C0 xuu16 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 otherwise",fontsize=16,color="black",shape="box"];426 -> 483[label="",style="solid", color="black", weight=3]; 24.03/9.90 427 -> 248[label="",style="dashed", color="red", weight=0]; 24.03/9.90 427[label="FiniteMap.mkBalBranch (Left xuu17) xuu18 xuu20 (FiniteMap.addToFM_C xuu16 xuu21 (Left xuu22) xuu23)",fontsize=16,color="magenta"];427 -> 484[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 427 -> 485[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 427 -> 486[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 427 -> 487[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 428 -> 608[label="",style="dashed", color="red", weight=0]; 24.03/9.90 428[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu400) xuu41 xuu55 xuu44 (Left xuu400) xuu41 xuu55 xuu44 (FiniteMap.mkBalBranch6Size_l (Left xuu400) xuu41 xuu55 xuu44 + FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 xuu55 xuu44 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];428 -> 609[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 429[label="compare (Left xuu5000) (Right xuu400)",fontsize=16,color="black",shape="box"];429 -> 489[label="",style="solid", color="black", weight=3]; 24.03/9.90 430[label="GT",fontsize=16,color="green",shape="box"];431[label="FiniteMap.addToFM_C0 xuu3 (Right xuu400) xuu41 xuu42 xuu43 xuu44 (Left xuu5000) xuu501 otherwise",fontsize=16,color="black",shape="box"];431 -> 490[label="",style="solid", color="black", weight=3]; 24.03/9.90 432 -> 222[label="",style="dashed", color="red", weight=0]; 24.03/9.90 432[label="FiniteMap.mkBalBranch (Right xuu400) xuu41 xuu43 (FiniteMap.addToFM_C xuu3 xuu44 (Left xuu5000) xuu501)",fontsize=16,color="magenta"];432 -> 491[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 432 -> 492[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 433 -> 618[label="",style="dashed", color="red", weight=0]; 24.03/9.90 433[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu400) xuu41 xuu47 xuu44 (Right xuu400) xuu41 xuu47 xuu44 (FiniteMap.mkBalBranch6Size_l (Right xuu400) xuu41 xuu47 xuu44 + FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 xuu47 xuu44 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];433 -> 619[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 435[label="compare (Right xuu5000) (Left xuu400)",fontsize=16,color="black",shape="box"];435 -> 495[label="",style="solid", color="black", weight=3]; 24.03/9.90 436[label="GT",fontsize=16,color="green",shape="box"];437[label="FiniteMap.addToFM_C0 xuu3 (Left xuu400) xuu41 xuu42 xuu43 xuu44 (Right xuu5000) xuu501 otherwise",fontsize=16,color="black",shape="box"];437 -> 496[label="",style="solid", color="black", weight=3]; 24.03/9.90 438 -> 248[label="",style="dashed", color="red", weight=0]; 24.03/9.90 438[label="FiniteMap.mkBalBranch (Left xuu400) xuu41 xuu43 (FiniteMap.addToFM_C xuu3 xuu44 (Right xuu5000) xuu501)",fontsize=16,color="magenta"];438 -> 497[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 438 -> 498[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 440[label="compare (Right xuu41) (Right xuu36)",fontsize=16,color="black",shape="box"];440 -> 509[label="",style="solid", color="black", weight=3]; 24.03/9.90 441[label="GT",fontsize=16,color="green",shape="box"];442[label="FiniteMap.addToFM_C0 xuu35 (Right xuu36) xuu37 xuu38 xuu39 xuu40 (Right xuu41) xuu42 otherwise",fontsize=16,color="black",shape="box"];442 -> 510[label="",style="solid", color="black", weight=3]; 24.03/9.90 443 -> 222[label="",style="dashed", color="red", weight=0]; 24.03/9.90 443[label="FiniteMap.mkBalBranch (Right xuu36) xuu37 xuu39 (FiniteMap.addToFM_C xuu35 xuu40 (Right xuu41) xuu42)",fontsize=16,color="magenta"];443 -> 511[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 443 -> 512[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 443 -> 513[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 443 -> 514[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2460[label="True",fontsize=16,color="green",shape="box"];2461 -> 2609[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2461[label="xuu50000 == xuu4000 && xuu50001 == xuu4001 && xuu50002 == xuu4002",fontsize=16,color="magenta"];2461 -> 2610[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2461 -> 2611[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2462 -> 2609[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2462[label="xuu50000 == xuu4000 && xuu50001 == xuu4001",fontsize=16,color="magenta"];2462 -> 2612[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2462 -> 2613[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2463[label="True",fontsize=16,color="green",shape="box"];2464[label="False",fontsize=16,color="green",shape="box"];2465[label="False",fontsize=16,color="green",shape="box"];2466[label="True",fontsize=16,color="green",shape="box"];2467[label="primEqDouble (Double xuu50000 xuu50001) (Double xuu4000 xuu4001)",fontsize=16,color="black",shape="box"];2467 -> 2536[label="",style="solid", color="black", weight=3]; 24.03/9.90 2468[label="primEqInt (Pos (Succ xuu500000)) xuu400",fontsize=16,color="burlywood",shape="box"];4500[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];2468 -> 4500[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4500 -> 2537[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4501[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];2468 -> 4501[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4501 -> 2538[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2469[label="primEqInt (Pos Zero) xuu400",fontsize=16,color="burlywood",shape="box"];4502[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];2469 -> 4502[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4502 -> 2539[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4503[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];2469 -> 4503[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4503 -> 2540[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2470[label="primEqInt (Neg (Succ xuu500000)) xuu400",fontsize=16,color="burlywood",shape="box"];4504[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];2470 -> 4504[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4504 -> 2541[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4505[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];2470 -> 4505[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4505 -> 2542[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2471[label="primEqInt (Neg Zero) xuu400",fontsize=16,color="burlywood",shape="box"];4506[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];2471 -> 4506[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4506 -> 2543[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4507[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];2471 -> 4507[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4507 -> 2544[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2472 -> 2609[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2472[label="xuu50000 == xuu4000 && xuu50001 == xuu4001",fontsize=16,color="magenta"];2472 -> 2614[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2472 -> 2615[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2473[label="False",fontsize=16,color="green",shape="box"];2474[label="False",fontsize=16,color="green",shape="box"];2475[label="True",fontsize=16,color="green",shape="box"];2476[label="True",fontsize=16,color="green",shape="box"];2477[label="False",fontsize=16,color="green",shape="box"];2478[label="False",fontsize=16,color="green",shape="box"];2479[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];4508[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2479 -> 4508[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4508 -> 2545[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4509[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2479 -> 4509[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4509 -> 2546[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4510[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2479 -> 4510[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4510 -> 2547[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4511[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2479 -> 4511[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4511 -> 2548[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4512[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2479 -> 4512[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4512 -> 2549[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4513[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2479 -> 4513[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4513 -> 2550[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4514[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2479 -> 4514[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4514 -> 2551[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4515[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2479 -> 4515[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4515 -> 2552[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4516[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2479 -> 4516[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4516 -> 2553[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4517[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2479 -> 4517[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4517 -> 2554[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4518[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2479 -> 4518[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4518 -> 2555[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4519[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2479 -> 4519[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4519 -> 2556[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4520[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2479 -> 4520[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4520 -> 2557[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4521[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2479 -> 4521[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4521 -> 2558[label="",style="solid", color="blue", weight=3]; 24.03/9.90 2480 -> 2293[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2480[label="primEqInt xuu50000 xuu4000",fontsize=16,color="magenta"];2480 -> 2559[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2480 -> 2560[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2481 -> 2609[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2481[label="xuu50000 == xuu4000 && xuu50001 == xuu4001",fontsize=16,color="magenta"];2481 -> 2616[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2481 -> 2617[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2482[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];4522[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 4522[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4522 -> 2561[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4523[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 4523[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4523 -> 2562[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4524[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 4524[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4524 -> 2563[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4525[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 4525[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4525 -> 2564[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4526[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 4526[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4526 -> 2565[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4527[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 4527[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4527 -> 2566[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4528[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 4528[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4528 -> 2567[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4529[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 4529[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4529 -> 2568[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4530[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 4530[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4530 -> 2569[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4531[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 4531[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4531 -> 2570[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4532[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 4532[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4532 -> 2571[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4533[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 4533[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4533 -> 2572[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4534[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 4534[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4534 -> 2573[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4535[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 4535[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4535 -> 2574[label="",style="solid", color="blue", weight=3]; 24.03/9.90 2483[label="False",fontsize=16,color="green",shape="box"];2484[label="False",fontsize=16,color="green",shape="box"];2485[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];4536[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 4536[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4536 -> 2575[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4537[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 4537[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4537 -> 2576[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4538[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 4538[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4538 -> 2577[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4539[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 4539[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4539 -> 2578[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4540[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 4540[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4540 -> 2579[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4541[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 4541[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4541 -> 2580[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4542[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 4542[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4542 -> 2581[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4543[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 4543[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4543 -> 2582[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4544[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 4544[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4544 -> 2583[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4545[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 4545[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4545 -> 2584[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4546[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 4546[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4546 -> 2585[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4547[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 4547[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4547 -> 2586[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4548[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 4548[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4548 -> 2587[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4549[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2485 -> 4549[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4549 -> 2588[label="",style="solid", color="blue", weight=3]; 24.03/9.90 2486[label="primEqFloat (Float xuu50000 xuu50001) (Float xuu4000 xuu4001)",fontsize=16,color="black",shape="box"];2486 -> 2589[label="",style="solid", color="black", weight=3]; 24.03/9.90 2487[label="primEqChar (Char xuu50000) (Char xuu4000)",fontsize=16,color="black",shape="box"];2487 -> 2590[label="",style="solid", color="black", weight=3]; 24.03/9.90 2488[label="compare1 (Left xuu5200) (Left xuu5300) (Left xuu5200 <= Left xuu5300)",fontsize=16,color="black",shape="box"];2488 -> 2591[label="",style="solid", color="black", weight=3]; 24.03/9.90 2489[label="compare1 (Left xuu5200) (Right xuu5300) (Left xuu5200 <= Right xuu5300)",fontsize=16,color="black",shape="box"];2489 -> 2592[label="",style="solid", color="black", weight=3]; 24.03/9.90 2490[label="compare1 (Right xuu5200) (Left xuu5300) (Right xuu5200 <= Left xuu5300)",fontsize=16,color="black",shape="box"];2490 -> 2593[label="",style="solid", color="black", weight=3]; 24.03/9.90 2491[label="compare1 (Right xuu5200) (Right xuu5300) (Right xuu5200 <= Right xuu5300)",fontsize=16,color="black",shape="box"];2491 -> 2594[label="",style="solid", color="black", weight=3]; 24.03/9.90 482[label="compare3 (Left xuu22) (Left xuu17)",fontsize=16,color="black",shape="box"];482 -> 602[label="",style="solid", color="black", weight=3]; 24.03/9.90 483[label="FiniteMap.addToFM_C0 xuu16 (Left xuu17) xuu18 xuu19 xuu20 xuu21 (Left xuu22) xuu23 True",fontsize=16,color="black",shape="box"];483 -> 603[label="",style="solid", color="black", weight=3]; 24.03/9.90 484[label="xuu18",fontsize=16,color="green",shape="box"];485 -> 14[label="",style="dashed", color="red", weight=0]; 24.03/9.90 485[label="FiniteMap.addToFM_C xuu16 xuu21 (Left xuu22) xuu23",fontsize=16,color="magenta"];485 -> 604[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 485 -> 605[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 485 -> 606[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 485 -> 607[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 486[label="xuu17",fontsize=16,color="green",shape="box"];487[label="xuu20",fontsize=16,color="green",shape="box"];609[label="FiniteMap.mkBalBranch6Size_l (Left xuu400) xuu41 xuu55 xuu44 + FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 xuu55 xuu44 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];609 -> 611[label="",style="solid", color="black", weight=3]; 24.03/9.90 608[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu400) xuu41 xuu55 xuu44 (Left xuu400) xuu41 xuu55 xuu44 xuu100",fontsize=16,color="burlywood",shape="triangle"];4550[label="xuu100/False",fontsize=10,color="white",style="solid",shape="box"];608 -> 4550[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4550 -> 612[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4551[label="xuu100/True",fontsize=10,color="white",style="solid",shape="box"];608 -> 4551[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4551 -> 613[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 489[label="compare3 (Left xuu5000) (Right xuu400)",fontsize=16,color="black",shape="box"];489 -> 614[label="",style="solid", color="black", weight=3]; 24.03/9.90 490[label="FiniteMap.addToFM_C0 xuu3 (Right xuu400) xuu41 xuu42 xuu43 xuu44 (Left xuu5000) xuu501 True",fontsize=16,color="black",shape="box"];490 -> 615[label="",style="solid", color="black", weight=3]; 24.03/9.90 491[label="xuu43",fontsize=16,color="green",shape="box"];492 -> 14[label="",style="dashed", color="red", weight=0]; 24.03/9.90 492[label="FiniteMap.addToFM_C xuu3 xuu44 (Left xuu5000) xuu501",fontsize=16,color="magenta"];492 -> 616[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 492 -> 617[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 619[label="FiniteMap.mkBalBranch6Size_l (Right xuu400) xuu41 xuu47 xuu44 + FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 xuu47 xuu44 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];619 -> 621[label="",style="solid", color="black", weight=3]; 24.03/9.90 618[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu400) xuu41 xuu47 xuu44 (Right xuu400) xuu41 xuu47 xuu44 xuu101",fontsize=16,color="burlywood",shape="triangle"];4552[label="xuu101/False",fontsize=10,color="white",style="solid",shape="box"];618 -> 4552[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4552 -> 622[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4553[label="xuu101/True",fontsize=10,color="white",style="solid",shape="box"];618 -> 4553[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4553 -> 623[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 495[label="compare3 (Right xuu5000) (Left xuu400)",fontsize=16,color="black",shape="box"];495 -> 624[label="",style="solid", color="black", weight=3]; 24.03/9.90 496[label="FiniteMap.addToFM_C0 xuu3 (Left xuu400) xuu41 xuu42 xuu43 xuu44 (Right xuu5000) xuu501 True",fontsize=16,color="black",shape="box"];496 -> 625[label="",style="solid", color="black", weight=3]; 24.03/9.90 497 -> 14[label="",style="dashed", color="red", weight=0]; 24.03/9.90 497[label="FiniteMap.addToFM_C xuu3 xuu44 (Right xuu5000) xuu501",fontsize=16,color="magenta"];497 -> 626[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 497 -> 627[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 498[label="xuu43",fontsize=16,color="green",shape="box"];509[label="compare3 (Right xuu41) (Right xuu36)",fontsize=16,color="black",shape="box"];509 -> 644[label="",style="solid", color="black", weight=3]; 24.03/9.90 510[label="FiniteMap.addToFM_C0 xuu35 (Right xuu36) xuu37 xuu38 xuu39 xuu40 (Right xuu41) xuu42 True",fontsize=16,color="black",shape="box"];510 -> 645[label="",style="solid", color="black", weight=3]; 24.03/9.90 511[label="xuu37",fontsize=16,color="green",shape="box"];512[label="xuu36",fontsize=16,color="green",shape="box"];513[label="xuu39",fontsize=16,color="green",shape="box"];514 -> 14[label="",style="dashed", color="red", weight=0]; 24.03/9.90 514[label="FiniteMap.addToFM_C xuu35 xuu40 (Right xuu41) xuu42",fontsize=16,color="magenta"];514 -> 646[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 514 -> 647[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 514 -> 648[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 514 -> 649[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2610[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];4554[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4554[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4554 -> 2621[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4555[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4555[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4555 -> 2622[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4556[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4556[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4556 -> 2623[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4557[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4557[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4557 -> 2624[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4558[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4558[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4558 -> 2625[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4559[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4559[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4559 -> 2626[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4560[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4560[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4560 -> 2627[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4561[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4561[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4561 -> 2628[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4562[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4562[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4562 -> 2629[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4563[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4563[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4563 -> 2630[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4564[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4564[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4564 -> 2631[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4565[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4565[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4565 -> 2632[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4566[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4566[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4566 -> 2633[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4567[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4567[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4567 -> 2634[label="",style="solid", color="blue", weight=3]; 24.03/9.90 2611 -> 2609[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2611[label="xuu50001 == xuu4001 && xuu50002 == xuu4002",fontsize=16,color="magenta"];2611 -> 2635[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2611 -> 2636[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2609[label="xuu167 && xuu179",fontsize=16,color="burlywood",shape="triangle"];4568[label="xuu167/False",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4568[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4568 -> 2637[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4569[label="xuu167/True",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4569[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4569 -> 2638[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2612[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];4570[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4570[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4570 -> 2639[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4571[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4571[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4571 -> 2640[label="",style="solid", color="blue", weight=3]; 24.03/9.90 2613[label="xuu50001 == xuu4001",fontsize=16,color="blue",shape="box"];4572[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2613 -> 4572[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4572 -> 2641[label="",style="solid", color="blue", weight=3]; 24.03/9.90 4573[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2613 -> 4573[label="",style="solid", color="blue", weight=9]; 24.03/9.90 4573 -> 2642[label="",style="solid", color="blue", weight=3]; 24.03/9.90 2536 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.90 2536[label="xuu50000 * xuu4001 == xuu50001 * xuu4000",fontsize=16,color="magenta"];2536 -> 2643[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2536 -> 2644[label="",style="dashed", color="magenta", weight=3]; 24.03/9.90 2537[label="primEqInt (Pos (Succ xuu500000)) (Pos xuu4000)",fontsize=16,color="burlywood",shape="box"];4574[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2537 -> 4574[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4574 -> 2645[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 4575[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2537 -> 4575[label="",style="solid", color="burlywood", weight=9]; 24.03/9.90 4575 -> 2646[label="",style="solid", color="burlywood", weight=3]; 24.03/9.90 2538[label="primEqInt (Pos (Succ xuu500000)) (Neg xuu4000)",fontsize=16,color="black",shape="box"];2538 -> 2647[label="",style="solid", color="black", weight=3]; 24.03/9.90 2539[label="primEqInt (Pos Zero) (Pos xuu4000)",fontsize=16,color="burlywood",shape="box"];4576[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2539 -> 4576[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4576 -> 2648[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4577[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2539 -> 4577[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4577 -> 2649[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 2540[label="primEqInt (Pos Zero) (Neg xuu4000)",fontsize=16,color="burlywood",shape="box"];4578[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4578[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4578 -> 2650[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4579[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2540 -> 4579[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4579 -> 2651[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 2541[label="primEqInt (Neg (Succ xuu500000)) (Pos xuu4000)",fontsize=16,color="black",shape="box"];2541 -> 2652[label="",style="solid", color="black", weight=3]; 24.03/9.91 2542[label="primEqInt (Neg (Succ xuu500000)) (Neg xuu4000)",fontsize=16,color="burlywood",shape="box"];4580[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2542 -> 4580[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4580 -> 2653[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4581[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2542 -> 4581[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4581 -> 2654[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 2543[label="primEqInt (Neg Zero) (Pos xuu4000)",fontsize=16,color="burlywood",shape="box"];4582[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2543 -> 4582[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4582 -> 2655[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4583[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2543 -> 4583[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4583 -> 2656[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 2544[label="primEqInt (Neg Zero) (Neg xuu4000)",fontsize=16,color="burlywood",shape="box"];4584[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2544 -> 4584[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4584 -> 2657[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4585[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2544 -> 4585[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4585 -> 2658[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 2614[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];4586[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4586[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4586 -> 2659[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4587[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4587[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4587 -> 2660[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4588[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4588[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4588 -> 2661[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4589[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4589[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4589 -> 2662[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4590[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4590[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4590 -> 2663[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4591[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4591[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4591 -> 2664[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4592[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4592[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4592 -> 2665[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4593[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4593[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4593 -> 2666[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4594[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4594[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4594 -> 2667[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4595[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4595[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4595 -> 2668[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4596[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4596[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4596 -> 2669[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4597[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4597[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4597 -> 2670[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4598[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4598[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4598 -> 2671[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4599[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4599[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4599 -> 2672[label="",style="solid", color="blue", weight=3]; 24.03/9.91 2615 -> 2227[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2615[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2615 -> 2673[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2615 -> 2674[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2545 -> 2221[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2545[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2545 -> 2675[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2545 -> 2676[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2546 -> 2222[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2546[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2546 -> 2677[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2546 -> 2678[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2547 -> 2223[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2547[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2547 -> 2679[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2547 -> 2680[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2548 -> 2224[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2548[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2548 -> 2681[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2548 -> 2682[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2549 -> 2225[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2549[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2549 -> 2683[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2549 -> 2684[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2550 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2550[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2550 -> 2685[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2550 -> 2686[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2551 -> 2227[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2551[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2551 -> 2687[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2551 -> 2688[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2552 -> 2228[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2552[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2552 -> 2689[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2552 -> 2690[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2553 -> 2229[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2553[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2553 -> 2691[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2553 -> 2692[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2554 -> 2230[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2554[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2554 -> 2693[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2554 -> 2694[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2555 -> 2231[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2555[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2555 -> 2695[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2555 -> 2696[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2556 -> 2232[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2556[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2556 -> 2697[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2556 -> 2698[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2557 -> 2233[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2557[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2557 -> 2699[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2557 -> 2700[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2558 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2558[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2558 -> 2701[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2558 -> 2702[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2559[label="xuu50000",fontsize=16,color="green",shape="box"];2560[label="xuu4000",fontsize=16,color="green",shape="box"];2616[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];4600[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4600[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4600 -> 2703[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4601[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4601[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4601 -> 2704[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4602[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4602[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4602 -> 2705[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4603[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4603[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4603 -> 2706[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4604[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4604[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4604 -> 2707[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4605[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4605[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4605 -> 2708[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4606[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4606[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4606 -> 2709[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4607[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4607[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4607 -> 2710[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4608[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4608[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4608 -> 2711[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4609[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4609[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4609 -> 2712[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4610[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4610[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4610 -> 2713[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4611[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4611[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4611 -> 2714[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4612[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4612[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4612 -> 2715[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4613[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4613[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4613 -> 2716[label="",style="solid", color="blue", weight=3]; 24.03/9.91 2617[label="xuu50001 == xuu4001",fontsize=16,color="blue",shape="box"];4614[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4614[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4614 -> 2717[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4615[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4615[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4615 -> 2718[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4616[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4616[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4616 -> 2719[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4617[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4617[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4617 -> 2720[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4618[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4618[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4618 -> 2721[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4619[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4619[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4619 -> 2722[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4620[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4620[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4620 -> 2723[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4621[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4621[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4621 -> 2724[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4622[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4622[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4622 -> 2725[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4623[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4623[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4623 -> 2726[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4624[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4624[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4624 -> 2727[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4625[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4625[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4625 -> 2728[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4626[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4626[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4626 -> 2729[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4627[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2617 -> 4627[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4627 -> 2730[label="",style="solid", color="blue", weight=3]; 24.03/9.91 2561 -> 2221[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2561[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2561 -> 2731[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2561 -> 2732[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2562 -> 2222[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2562[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2562 -> 2733[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2562 -> 2734[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2563 -> 2223[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2563[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2563 -> 2735[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2563 -> 2736[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2564 -> 2224[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2564[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2564 -> 2737[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2564 -> 2738[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2565 -> 2225[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2565[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2565 -> 2739[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2565 -> 2740[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2566 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2566[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2566 -> 2741[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2566 -> 2742[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2567 -> 2227[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2567[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2567 -> 2743[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2567 -> 2744[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2568 -> 2228[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2568[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2568 -> 2745[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2568 -> 2746[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2569 -> 2229[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2569[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2569 -> 2747[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2569 -> 2748[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2570 -> 2230[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2570[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2570 -> 2749[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2570 -> 2750[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2571 -> 2231[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2571[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2571 -> 2751[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2571 -> 2752[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2572 -> 2232[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2572[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2572 -> 2753[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2572 -> 2754[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2573 -> 2233[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2573[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2573 -> 2755[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2573 -> 2756[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2574 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2574[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2574 -> 2757[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2574 -> 2758[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2575 -> 2221[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2575[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2575 -> 2759[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2575 -> 2760[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2576 -> 2222[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2576[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2576 -> 2761[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2576 -> 2762[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2577 -> 2223[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2577[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2577 -> 2763[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2577 -> 2764[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2578 -> 2224[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2578[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2578 -> 2765[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2578 -> 2766[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2579 -> 2225[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2579[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2579 -> 2767[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2579 -> 2768[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2580 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2580[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2580 -> 2769[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2580 -> 2770[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2581 -> 2227[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2581[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2581 -> 2771[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2581 -> 2772[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2582 -> 2228[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2582[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2582 -> 2773[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2582 -> 2774[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2583 -> 2229[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2583[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2583 -> 2775[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2583 -> 2776[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2584 -> 2230[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2584[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2584 -> 2777[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2584 -> 2778[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2585 -> 2231[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2585[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2585 -> 2779[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2585 -> 2780[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2586 -> 2232[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2586[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2586 -> 2781[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2586 -> 2782[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2587 -> 2233[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2587[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2587 -> 2783[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2587 -> 2784[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2588 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2588[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2588 -> 2785[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2588 -> 2786[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2589 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2589[label="xuu50000 * xuu4001 == xuu50001 * xuu4000",fontsize=16,color="magenta"];2589 -> 2787[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2589 -> 2788[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2590[label="primEqNat xuu50000 xuu4000",fontsize=16,color="burlywood",shape="triangle"];4628[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];2590 -> 4628[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4628 -> 2789[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4629[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];2590 -> 4629[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4629 -> 2790[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 2591 -> 2791[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2591[label="compare1 (Left xuu5200) (Left xuu5300) (xuu5200 <= xuu5300)",fontsize=16,color="magenta"];2591 -> 2792[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2591 -> 2793[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2591 -> 2794[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2592[label="compare1 (Left xuu5200) (Right xuu5300) True",fontsize=16,color="black",shape="box"];2592 -> 2795[label="",style="solid", color="black", weight=3]; 24.03/9.91 2593[label="compare1 (Right xuu5200) (Left xuu5300) False",fontsize=16,color="black",shape="box"];2593 -> 2796[label="",style="solid", color="black", weight=3]; 24.03/9.91 2594 -> 2797[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2594[label="compare1 (Right xuu5200) (Right xuu5300) (xuu5200 <= xuu5300)",fontsize=16,color="magenta"];2594 -> 2798[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2594 -> 2799[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2594 -> 2800[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 602 -> 2183[label="",style="dashed", color="red", weight=0]; 24.03/9.91 602[label="compare2 (Left xuu22) (Left xuu17) (Left xuu22 == Left xuu17)",fontsize=16,color="magenta"];602 -> 2208[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 602 -> 2209[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 602 -> 2210[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 603[label="FiniteMap.Branch (Left xuu22) (xuu16 xuu18 xuu23) xuu19 xuu20 xuu21",fontsize=16,color="green",shape="box"];603 -> 869[label="",style="dashed", color="green", weight=3]; 24.03/9.91 604[label="Left xuu22",fontsize=16,color="green",shape="box"];605[label="xuu16",fontsize=16,color="green",shape="box"];606[label="xuu23",fontsize=16,color="green",shape="box"];607[label="xuu21",fontsize=16,color="green",shape="box"];611 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.91 611[label="compare (FiniteMap.mkBalBranch6Size_l (Left xuu400) xuu41 xuu55 xuu44 + FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 xuu55 xuu44) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];611 -> 870[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 611 -> 871[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 612[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu400) xuu41 xuu55 xuu44 (Left xuu400) xuu41 xuu55 xuu44 False",fontsize=16,color="black",shape="box"];612 -> 872[label="",style="solid", color="black", weight=3]; 24.03/9.91 613[label="FiniteMap.mkBalBranch6MkBalBranch5 (Left xuu400) xuu41 xuu55 xuu44 (Left xuu400) xuu41 xuu55 xuu44 True",fontsize=16,color="black",shape="box"];613 -> 873[label="",style="solid", color="black", weight=3]; 24.03/9.91 614 -> 2183[label="",style="dashed", color="red", weight=0]; 24.03/9.91 614[label="compare2 (Left xuu5000) (Right xuu400) (Left xuu5000 == Right xuu400)",fontsize=16,color="magenta"];614 -> 2211[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 614 -> 2212[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 614 -> 2213[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 615[label="FiniteMap.Branch (Left xuu5000) (xuu3 xuu41 xuu501) xuu42 xuu43 xuu44",fontsize=16,color="green",shape="box"];615 -> 879[label="",style="dashed", color="green", weight=3]; 24.03/9.91 616[label="Left xuu5000",fontsize=16,color="green",shape="box"];617[label="xuu44",fontsize=16,color="green",shape="box"];621 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.91 621[label="compare (FiniteMap.mkBalBranch6Size_l (Right xuu400) xuu41 xuu47 xuu44 + FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 xuu47 xuu44) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];621 -> 880[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 621 -> 881[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 622[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu400) xuu41 xuu47 xuu44 (Right xuu400) xuu41 xuu47 xuu44 False",fontsize=16,color="black",shape="box"];622 -> 882[label="",style="solid", color="black", weight=3]; 24.03/9.91 623[label="FiniteMap.mkBalBranch6MkBalBranch5 (Right xuu400) xuu41 xuu47 xuu44 (Right xuu400) xuu41 xuu47 xuu44 True",fontsize=16,color="black",shape="box"];623 -> 883[label="",style="solid", color="black", weight=3]; 24.03/9.91 624 -> 2183[label="",style="dashed", color="red", weight=0]; 24.03/9.91 624[label="compare2 (Right xuu5000) (Left xuu400) (Right xuu5000 == Left xuu400)",fontsize=16,color="magenta"];624 -> 2214[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 624 -> 2215[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 624 -> 2216[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 625[label="FiniteMap.Branch (Right xuu5000) (xuu3 xuu41 xuu501) xuu42 xuu43 xuu44",fontsize=16,color="green",shape="box"];625 -> 891[label="",style="dashed", color="green", weight=3]; 24.03/9.91 626[label="Right xuu5000",fontsize=16,color="green",shape="box"];627[label="xuu44",fontsize=16,color="green",shape="box"];644 -> 2183[label="",style="dashed", color="red", weight=0]; 24.03/9.91 644[label="compare2 (Right xuu41) (Right xuu36) (Right xuu41 == Right xuu36)",fontsize=16,color="magenta"];644 -> 2217[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 644 -> 2218[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 644 -> 2219[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 645[label="FiniteMap.Branch (Right xuu41) (xuu35 xuu37 xuu42) xuu38 xuu39 xuu40",fontsize=16,color="green",shape="box"];645 -> 924[label="",style="dashed", color="green", weight=3]; 24.03/9.91 646[label="Right xuu41",fontsize=16,color="green",shape="box"];647[label="xuu35",fontsize=16,color="green",shape="box"];648[label="xuu42",fontsize=16,color="green",shape="box"];649[label="xuu40",fontsize=16,color="green",shape="box"];2621 -> 2221[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2621[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2621 -> 2801[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2621 -> 2802[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2622 -> 2222[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2622[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2622 -> 2803[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2622 -> 2804[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2623 -> 2223[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2623[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2623 -> 2805[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2623 -> 2806[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2624 -> 2224[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2624[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2624 -> 2807[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2624 -> 2808[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2625 -> 2225[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2625[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2625 -> 2809[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2625 -> 2810[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2626 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2626[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2626 -> 2811[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2626 -> 2812[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2627 -> 2227[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2627[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2627 -> 2813[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2627 -> 2814[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2628 -> 2228[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2628[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2628 -> 2815[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2628 -> 2816[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2629 -> 2229[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2629[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2629 -> 2817[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2629 -> 2818[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2630 -> 2230[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2630[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2630 -> 2819[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2630 -> 2820[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2631 -> 2231[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2631[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2631 -> 2821[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2631 -> 2822[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2632 -> 2232[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2632[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2632 -> 2823[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2632 -> 2824[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2633 -> 2233[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2633[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2633 -> 2825[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2633 -> 2826[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2634 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2634[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2634 -> 2827[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2634 -> 2828[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2635[label="xuu50001 == xuu4001",fontsize=16,color="blue",shape="box"];4630[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2635 -> 4630[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4630 -> 2829[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4631[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2635 -> 4631[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4631 -> 2830[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4632[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2635 -> 4632[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4632 -> 2831[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4633[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2635 -> 4633[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4633 -> 2832[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4634[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2635 -> 4634[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4634 -> 2833[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4635[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2635 -> 4635[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4635 -> 2834[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4636[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2635 -> 4636[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4636 -> 2835[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4637[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2635 -> 4637[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4637 -> 2836[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4638[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2635 -> 4638[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4638 -> 2837[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4639[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2635 -> 4639[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4639 -> 2838[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4640[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2635 -> 4640[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4640 -> 2839[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4641[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2635 -> 4641[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4641 -> 2840[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4642[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2635 -> 4642[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4642 -> 2841[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4643[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2635 -> 4643[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4643 -> 2842[label="",style="solid", color="blue", weight=3]; 24.03/9.91 2636[label="xuu50002 == xuu4002",fontsize=16,color="blue",shape="box"];4644[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 4644[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4644 -> 2843[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4645[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 4645[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4645 -> 2844[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4646[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 4646[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4646 -> 2845[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4647[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 4647[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4647 -> 2846[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4648[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 4648[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4648 -> 2847[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4649[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 4649[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4649 -> 2848[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4650[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 4650[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4650 -> 2849[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4651[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 4651[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4651 -> 2850[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4652[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 4652[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4652 -> 2851[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4653[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 4653[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4653 -> 2852[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4654[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 4654[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4654 -> 2853[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4655[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 4655[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4655 -> 2854[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4656[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 4656[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4656 -> 2855[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4657[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2636 -> 4657[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4657 -> 2856[label="",style="solid", color="blue", weight=3]; 24.03/9.91 2637[label="False && xuu179",fontsize=16,color="black",shape="box"];2637 -> 2857[label="",style="solid", color="black", weight=3]; 24.03/9.91 2638[label="True && xuu179",fontsize=16,color="black",shape="box"];2638 -> 2858[label="",style="solid", color="black", weight=3]; 24.03/9.91 2639 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2639[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2639 -> 2859[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2639 -> 2860[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2640 -> 2229[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2640[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2640 -> 2861[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2640 -> 2862[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2641 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2641[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2641 -> 2863[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2641 -> 2864[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2642 -> 2229[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2642[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2642 -> 2865[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2642 -> 2866[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2643 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2643[label="xuu50000 * xuu4001",fontsize=16,color="magenta"];2644 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2644[label="xuu50001 * xuu4000",fontsize=16,color="magenta"];2644 -> 2867[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2644 -> 2868[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2645[label="primEqInt (Pos (Succ xuu500000)) (Pos (Succ xuu40000))",fontsize=16,color="black",shape="box"];2645 -> 2869[label="",style="solid", color="black", weight=3]; 24.03/9.91 2646[label="primEqInt (Pos (Succ xuu500000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2646 -> 2870[label="",style="solid", color="black", weight=3]; 24.03/9.91 2647[label="False",fontsize=16,color="green",shape="box"];2648[label="primEqInt (Pos Zero) (Pos (Succ xuu40000))",fontsize=16,color="black",shape="box"];2648 -> 2871[label="",style="solid", color="black", weight=3]; 24.03/9.91 2649[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2649 -> 2872[label="",style="solid", color="black", weight=3]; 24.03/9.91 2650[label="primEqInt (Pos Zero) (Neg (Succ xuu40000))",fontsize=16,color="black",shape="box"];2650 -> 2873[label="",style="solid", color="black", weight=3]; 24.03/9.91 2651[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2651 -> 2874[label="",style="solid", color="black", weight=3]; 24.03/9.91 2652[label="False",fontsize=16,color="green",shape="box"];2653[label="primEqInt (Neg (Succ xuu500000)) (Neg (Succ xuu40000))",fontsize=16,color="black",shape="box"];2653 -> 2875[label="",style="solid", color="black", weight=3]; 24.03/9.91 2654[label="primEqInt (Neg (Succ xuu500000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2654 -> 2876[label="",style="solid", color="black", weight=3]; 24.03/9.91 2655[label="primEqInt (Neg Zero) (Pos (Succ xuu40000))",fontsize=16,color="black",shape="box"];2655 -> 2877[label="",style="solid", color="black", weight=3]; 24.03/9.91 2656[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2656 -> 2878[label="",style="solid", color="black", weight=3]; 24.03/9.91 2657[label="primEqInt (Neg Zero) (Neg (Succ xuu40000))",fontsize=16,color="black",shape="box"];2657 -> 2879[label="",style="solid", color="black", weight=3]; 24.03/9.91 2658[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2658 -> 2880[label="",style="solid", color="black", weight=3]; 24.03/9.91 2659 -> 2221[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2659[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2659 -> 2881[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2659 -> 2882[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2660 -> 2222[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2660[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2660 -> 2883[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2660 -> 2884[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2661 -> 2223[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2661[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2661 -> 2885[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2661 -> 2886[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2662 -> 2224[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2662[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2662 -> 2887[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2662 -> 2888[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2663 -> 2225[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2663[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2663 -> 2889[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2663 -> 2890[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2664 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2664[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2664 -> 2891[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2664 -> 2892[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2665 -> 2227[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2665[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2665 -> 2893[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2665 -> 2894[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2666 -> 2228[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2666[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2666 -> 2895[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2666 -> 2896[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2667 -> 2229[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2667[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2667 -> 2897[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2667 -> 2898[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2668 -> 2230[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2668[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2668 -> 2899[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2668 -> 2900[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2669 -> 2231[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2669[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2669 -> 2901[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2669 -> 2902[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2670 -> 2232[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2670[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2670 -> 2903[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2670 -> 2904[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2671 -> 2233[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2671[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2671 -> 2905[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2671 -> 2906[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2672 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2672[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2672 -> 2907[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2672 -> 2908[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2673[label="xuu50001",fontsize=16,color="green",shape="box"];2674[label="xuu4001",fontsize=16,color="green",shape="box"];2675[label="xuu50000",fontsize=16,color="green",shape="box"];2676[label="xuu4000",fontsize=16,color="green",shape="box"];2677[label="xuu50000",fontsize=16,color="green",shape="box"];2678[label="xuu4000",fontsize=16,color="green",shape="box"];2679[label="xuu50000",fontsize=16,color="green",shape="box"];2680[label="xuu4000",fontsize=16,color="green",shape="box"];2681[label="xuu50000",fontsize=16,color="green",shape="box"];2682[label="xuu4000",fontsize=16,color="green",shape="box"];2683[label="xuu50000",fontsize=16,color="green",shape="box"];2684[label="xuu4000",fontsize=16,color="green",shape="box"];2685[label="xuu50000",fontsize=16,color="green",shape="box"];2686[label="xuu4000",fontsize=16,color="green",shape="box"];2687[label="xuu50000",fontsize=16,color="green",shape="box"];2688[label="xuu4000",fontsize=16,color="green",shape="box"];2689[label="xuu50000",fontsize=16,color="green",shape="box"];2690[label="xuu4000",fontsize=16,color="green",shape="box"];2691[label="xuu50000",fontsize=16,color="green",shape="box"];2692[label="xuu4000",fontsize=16,color="green",shape="box"];2693[label="xuu50000",fontsize=16,color="green",shape="box"];2694[label="xuu4000",fontsize=16,color="green",shape="box"];2695[label="xuu50000",fontsize=16,color="green",shape="box"];2696[label="xuu4000",fontsize=16,color="green",shape="box"];2697[label="xuu50000",fontsize=16,color="green",shape="box"];2698[label="xuu4000",fontsize=16,color="green",shape="box"];2699[label="xuu50000",fontsize=16,color="green",shape="box"];2700[label="xuu4000",fontsize=16,color="green",shape="box"];2701[label="xuu50000",fontsize=16,color="green",shape="box"];2702[label="xuu4000",fontsize=16,color="green",shape="box"];2703 -> 2221[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2703[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2703 -> 2909[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2703 -> 2910[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2704 -> 2222[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2704[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2704 -> 2911[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2704 -> 2912[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2705 -> 2223[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2705[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2705 -> 2913[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2705 -> 2914[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2706 -> 2224[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2706[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2706 -> 2915[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2706 -> 2916[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2707 -> 2225[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2707[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2707 -> 2917[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2707 -> 2918[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2708 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2708[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2708 -> 2919[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2708 -> 2920[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2709 -> 2227[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2709[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2709 -> 2921[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2709 -> 2922[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2710 -> 2228[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2710[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2710 -> 2923[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2710 -> 2924[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2711 -> 2229[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2711[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2711 -> 2925[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2711 -> 2926[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2712 -> 2230[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2712[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2712 -> 2927[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2712 -> 2928[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2713 -> 2231[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2713[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2713 -> 2929[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2713 -> 2930[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2714 -> 2232[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2714[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2714 -> 2931[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2714 -> 2932[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2715 -> 2233[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2715[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2715 -> 2933[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2715 -> 2934[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2716 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2716[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2716 -> 2935[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2716 -> 2936[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2717 -> 2221[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2717[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2717 -> 2937[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2717 -> 2938[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2718 -> 2222[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2718[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2718 -> 2939[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2718 -> 2940[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2719 -> 2223[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2719[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2719 -> 2941[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2719 -> 2942[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2720 -> 2224[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2720[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2720 -> 2943[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2720 -> 2944[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2721 -> 2225[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2721[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2721 -> 2945[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2721 -> 2946[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2722 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2722[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2722 -> 2947[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2722 -> 2948[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2723 -> 2227[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2723[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2723 -> 2949[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2723 -> 2950[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2724 -> 2228[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2724[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2724 -> 2951[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2724 -> 2952[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2725 -> 2229[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2725[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2725 -> 2953[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2725 -> 2954[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2726 -> 2230[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2726[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2726 -> 2955[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2726 -> 2956[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2727 -> 2231[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2727[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2727 -> 2957[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2727 -> 2958[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2728 -> 2232[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2728[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2728 -> 2959[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2728 -> 2960[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2729 -> 2233[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2729[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2729 -> 2961[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2729 -> 2962[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2730 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2730[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2730 -> 2963[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2730 -> 2964[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2731[label="xuu50000",fontsize=16,color="green",shape="box"];2732[label="xuu4000",fontsize=16,color="green",shape="box"];2733[label="xuu50000",fontsize=16,color="green",shape="box"];2734[label="xuu4000",fontsize=16,color="green",shape="box"];2735[label="xuu50000",fontsize=16,color="green",shape="box"];2736[label="xuu4000",fontsize=16,color="green",shape="box"];2737[label="xuu50000",fontsize=16,color="green",shape="box"];2738[label="xuu4000",fontsize=16,color="green",shape="box"];2739[label="xuu50000",fontsize=16,color="green",shape="box"];2740[label="xuu4000",fontsize=16,color="green",shape="box"];2741[label="xuu50000",fontsize=16,color="green",shape="box"];2742[label="xuu4000",fontsize=16,color="green",shape="box"];2743[label="xuu50000",fontsize=16,color="green",shape="box"];2744[label="xuu4000",fontsize=16,color="green",shape="box"];2745[label="xuu50000",fontsize=16,color="green",shape="box"];2746[label="xuu4000",fontsize=16,color="green",shape="box"];2747[label="xuu50000",fontsize=16,color="green",shape="box"];2748[label="xuu4000",fontsize=16,color="green",shape="box"];2749[label="xuu50000",fontsize=16,color="green",shape="box"];2750[label="xuu4000",fontsize=16,color="green",shape="box"];2751[label="xuu50000",fontsize=16,color="green",shape="box"];2752[label="xuu4000",fontsize=16,color="green",shape="box"];2753[label="xuu50000",fontsize=16,color="green",shape="box"];2754[label="xuu4000",fontsize=16,color="green",shape="box"];2755[label="xuu50000",fontsize=16,color="green",shape="box"];2756[label="xuu4000",fontsize=16,color="green",shape="box"];2757[label="xuu50000",fontsize=16,color="green",shape="box"];2758[label="xuu4000",fontsize=16,color="green",shape="box"];2759[label="xuu50000",fontsize=16,color="green",shape="box"];2760[label="xuu4000",fontsize=16,color="green",shape="box"];2761[label="xuu50000",fontsize=16,color="green",shape="box"];2762[label="xuu4000",fontsize=16,color="green",shape="box"];2763[label="xuu50000",fontsize=16,color="green",shape="box"];2764[label="xuu4000",fontsize=16,color="green",shape="box"];2765[label="xuu50000",fontsize=16,color="green",shape="box"];2766[label="xuu4000",fontsize=16,color="green",shape="box"];2767[label="xuu50000",fontsize=16,color="green",shape="box"];2768[label="xuu4000",fontsize=16,color="green",shape="box"];2769[label="xuu50000",fontsize=16,color="green",shape="box"];2770[label="xuu4000",fontsize=16,color="green",shape="box"];2771[label="xuu50000",fontsize=16,color="green",shape="box"];2772[label="xuu4000",fontsize=16,color="green",shape="box"];2773[label="xuu50000",fontsize=16,color="green",shape="box"];2774[label="xuu4000",fontsize=16,color="green",shape="box"];2775[label="xuu50000",fontsize=16,color="green",shape="box"];2776[label="xuu4000",fontsize=16,color="green",shape="box"];2777[label="xuu50000",fontsize=16,color="green",shape="box"];2778[label="xuu4000",fontsize=16,color="green",shape="box"];2779[label="xuu50000",fontsize=16,color="green",shape="box"];2780[label="xuu4000",fontsize=16,color="green",shape="box"];2781[label="xuu50000",fontsize=16,color="green",shape="box"];2782[label="xuu4000",fontsize=16,color="green",shape="box"];2783[label="xuu50000",fontsize=16,color="green",shape="box"];2784[label="xuu4000",fontsize=16,color="green",shape="box"];2785[label="xuu50000",fontsize=16,color="green",shape="box"];2786[label="xuu4000",fontsize=16,color="green",shape="box"];2787 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2787[label="xuu50000 * xuu4001",fontsize=16,color="magenta"];2787 -> 2965[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2787 -> 2966[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2788 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2788[label="xuu50001 * xuu4000",fontsize=16,color="magenta"];2788 -> 2967[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2788 -> 2968[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2789[label="primEqNat (Succ xuu500000) xuu4000",fontsize=16,color="burlywood",shape="box"];4658[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2789 -> 4658[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4658 -> 2969[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4659[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2789 -> 4659[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4659 -> 2970[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 2790[label="primEqNat Zero xuu4000",fontsize=16,color="burlywood",shape="box"];4660[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2790 -> 4660[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4660 -> 2971[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4661[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2790 -> 4661[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4661 -> 2972[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 2792[label="xuu5300",fontsize=16,color="green",shape="box"];2793[label="xuu5200 <= xuu5300",fontsize=16,color="blue",shape="box"];4662[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4662[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4662 -> 2973[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4663[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4663[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4663 -> 2974[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4664[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4664[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4664 -> 2975[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4665[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4665[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4665 -> 2976[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4666[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4666[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4666 -> 2977[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4667[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4667[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4667 -> 2978[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4668[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4668[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4668 -> 2979[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4669[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4669[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4669 -> 2980[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4670[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4670[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4670 -> 2981[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4671[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4671[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4671 -> 2982[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4672[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4672[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4672 -> 2983[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4673[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4673[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4673 -> 2984[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4674[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4674[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4674 -> 2985[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4675[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4675[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4675 -> 2986[label="",style="solid", color="blue", weight=3]; 24.03/9.91 2794[label="xuu5200",fontsize=16,color="green",shape="box"];2791[label="compare1 (Left xuu184) (Left xuu185) xuu186",fontsize=16,color="burlywood",shape="triangle"];4676[label="xuu186/False",fontsize=10,color="white",style="solid",shape="box"];2791 -> 4676[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4676 -> 2987[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4677[label="xuu186/True",fontsize=10,color="white",style="solid",shape="box"];2791 -> 4677[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4677 -> 2988[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 2795[label="LT",fontsize=16,color="green",shape="box"];2796[label="compare0 (Right xuu5200) (Left xuu5300) otherwise",fontsize=16,color="black",shape="box"];2796 -> 2989[label="",style="solid", color="black", weight=3]; 24.03/9.91 2798[label="xuu5300",fontsize=16,color="green",shape="box"];2799[label="xuu5200",fontsize=16,color="green",shape="box"];2800[label="xuu5200 <= xuu5300",fontsize=16,color="blue",shape="box"];4678[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2800 -> 4678[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4678 -> 2990[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4679[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2800 -> 4679[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4679 -> 2991[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4680[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2800 -> 4680[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4680 -> 2992[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4681[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2800 -> 4681[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4681 -> 2993[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4682[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2800 -> 4682[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4682 -> 2994[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4683[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2800 -> 4683[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4683 -> 2995[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4684[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2800 -> 4684[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4684 -> 2996[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4685[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2800 -> 4685[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4685 -> 2997[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4686[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2800 -> 4686[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4686 -> 2998[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4687[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2800 -> 4687[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4687 -> 2999[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4688[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2800 -> 4688[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4688 -> 3000[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4689[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2800 -> 4689[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4689 -> 3001[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4690[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2800 -> 4690[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4690 -> 3002[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4691[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2800 -> 4691[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4691 -> 3003[label="",style="solid", color="blue", weight=3]; 24.03/9.91 2797[label="compare1 (Right xuu191) (Right xuu192) xuu193",fontsize=16,color="burlywood",shape="triangle"];4692[label="xuu193/False",fontsize=10,color="white",style="solid",shape="box"];2797 -> 4692[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4692 -> 3004[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4693[label="xuu193/True",fontsize=10,color="white",style="solid",shape="box"];2797 -> 4693[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4693 -> 3005[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 2208[label="Left xuu22 == Left xuu17",fontsize=16,color="black",shape="box"];2208 -> 2251[label="",style="solid", color="black", weight=3]; 24.03/9.91 2209[label="Left xuu22",fontsize=16,color="green",shape="box"];2210[label="Left xuu17",fontsize=16,color="green",shape="box"];869[label="xuu16 xuu18 xuu23",fontsize=16,color="green",shape="box"];869 -> 1132[label="",style="dashed", color="green", weight=3]; 24.03/9.91 869 -> 1133[label="",style="dashed", color="green", weight=3]; 24.03/9.91 870[label="compare (FiniteMap.mkBalBranch6Size_l (Left xuu400) xuu41 xuu55 xuu44 + FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 xuu55 xuu44) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];870 -> 1134[label="",style="solid", color="black", weight=3]; 24.03/9.91 871[label="LT",fontsize=16,color="green",shape="box"];872 -> 1359[label="",style="dashed", color="red", weight=0]; 24.03/9.91 872[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu400) xuu41 xuu55 xuu44 (Left xuu400) xuu41 xuu55 xuu44 (FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 xuu55 xuu44 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Left xuu400) xuu41 xuu55 xuu44)",fontsize=16,color="magenta"];872 -> 1360[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 873 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.91 873[label="FiniteMap.mkBranch (Pos (Succ Zero)) (Left xuu400) xuu41 xuu55 xuu44",fontsize=16,color="magenta"];873 -> 4162[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 873 -> 4163[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 873 -> 4164[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 873 -> 4165[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 873 -> 4166[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2211[label="Left xuu5000 == Right xuu400",fontsize=16,color="black",shape="box"];2211 -> 2252[label="",style="solid", color="black", weight=3]; 24.03/9.91 2212[label="Left xuu5000",fontsize=16,color="green",shape="box"];2213[label="Right xuu400",fontsize=16,color="green",shape="box"];879[label="xuu3 xuu41 xuu501",fontsize=16,color="green",shape="box"];879 -> 1154[label="",style="dashed", color="green", weight=3]; 24.03/9.91 879 -> 1155[label="",style="dashed", color="green", weight=3]; 24.03/9.91 880[label="compare (FiniteMap.mkBalBranch6Size_l (Right xuu400) xuu41 xuu47 xuu44 + FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 xuu47 xuu44) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];880 -> 1156[label="",style="solid", color="black", weight=3]; 24.03/9.91 881[label="LT",fontsize=16,color="green",shape="box"];882 -> 1430[label="",style="dashed", color="red", weight=0]; 24.03/9.91 882[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu400) xuu41 xuu47 xuu44 (Right xuu400) xuu41 xuu47 xuu44 (FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 xuu47 xuu44 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Right xuu400) xuu41 xuu47 xuu44)",fontsize=16,color="magenta"];882 -> 1431[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 883 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.91 883[label="FiniteMap.mkBranch (Pos (Succ Zero)) (Right xuu400) xuu41 xuu47 xuu44",fontsize=16,color="magenta"];883 -> 4167[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 883 -> 4168[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 883 -> 4169[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 883 -> 4170[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 883 -> 4171[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2214[label="Right xuu5000 == Left xuu400",fontsize=16,color="black",shape="box"];2214 -> 2253[label="",style="solid", color="black", weight=3]; 24.03/9.91 2215[label="Right xuu5000",fontsize=16,color="green",shape="box"];2216[label="Left xuu400",fontsize=16,color="green",shape="box"];891[label="xuu3 xuu41 xuu501",fontsize=16,color="green",shape="box"];891 -> 1170[label="",style="dashed", color="green", weight=3]; 24.03/9.91 891 -> 1171[label="",style="dashed", color="green", weight=3]; 24.03/9.91 2217[label="Right xuu41 == Right xuu36",fontsize=16,color="black",shape="box"];2217 -> 2254[label="",style="solid", color="black", weight=3]; 24.03/9.91 2218[label="Right xuu41",fontsize=16,color="green",shape="box"];2219[label="Right xuu36",fontsize=16,color="green",shape="box"];924[label="xuu35 xuu37 xuu42",fontsize=16,color="green",shape="box"];924 -> 1175[label="",style="dashed", color="green", weight=3]; 24.03/9.91 924 -> 1176[label="",style="dashed", color="green", weight=3]; 24.03/9.91 2801[label="xuu50000",fontsize=16,color="green",shape="box"];2802[label="xuu4000",fontsize=16,color="green",shape="box"];2803[label="xuu50000",fontsize=16,color="green",shape="box"];2804[label="xuu4000",fontsize=16,color="green",shape="box"];2805[label="xuu50000",fontsize=16,color="green",shape="box"];2806[label="xuu4000",fontsize=16,color="green",shape="box"];2807[label="xuu50000",fontsize=16,color="green",shape="box"];2808[label="xuu4000",fontsize=16,color="green",shape="box"];2809[label="xuu50000",fontsize=16,color="green",shape="box"];2810[label="xuu4000",fontsize=16,color="green",shape="box"];2811[label="xuu50000",fontsize=16,color="green",shape="box"];2812[label="xuu4000",fontsize=16,color="green",shape="box"];2813[label="xuu50000",fontsize=16,color="green",shape="box"];2814[label="xuu4000",fontsize=16,color="green",shape="box"];2815[label="xuu50000",fontsize=16,color="green",shape="box"];2816[label="xuu4000",fontsize=16,color="green",shape="box"];2817[label="xuu50000",fontsize=16,color="green",shape="box"];2818[label="xuu4000",fontsize=16,color="green",shape="box"];2819[label="xuu50000",fontsize=16,color="green",shape="box"];2820[label="xuu4000",fontsize=16,color="green",shape="box"];2821[label="xuu50000",fontsize=16,color="green",shape="box"];2822[label="xuu4000",fontsize=16,color="green",shape="box"];2823[label="xuu50000",fontsize=16,color="green",shape="box"];2824[label="xuu4000",fontsize=16,color="green",shape="box"];2825[label="xuu50000",fontsize=16,color="green",shape="box"];2826[label="xuu4000",fontsize=16,color="green",shape="box"];2827[label="xuu50000",fontsize=16,color="green",shape="box"];2828[label="xuu4000",fontsize=16,color="green",shape="box"];2829 -> 2221[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2829[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2829 -> 3032[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2829 -> 3033[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2830 -> 2222[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2830[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2830 -> 3034[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2830 -> 3035[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2831 -> 2223[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2831[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2831 -> 3036[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2831 -> 3037[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2832 -> 2224[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2832[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2832 -> 3038[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2832 -> 3039[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2833 -> 2225[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2833[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2833 -> 3040[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2833 -> 3041[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2834 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2834[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2834 -> 3042[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2834 -> 3043[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2835 -> 2227[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2835[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2835 -> 3044[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2835 -> 3045[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2836 -> 2228[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2836[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2836 -> 3046[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2836 -> 3047[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2837 -> 2229[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2837[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2837 -> 3048[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2837 -> 3049[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2838 -> 2230[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2838[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2838 -> 3050[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2838 -> 3051[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2839 -> 2231[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2839[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2839 -> 3052[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2839 -> 3053[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2840 -> 2232[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2840[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2840 -> 3054[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2840 -> 3055[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2841 -> 2233[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2841[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2841 -> 3056[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2841 -> 3057[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2842 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2842[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2842 -> 3058[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2842 -> 3059[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2843 -> 2221[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2843[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2843 -> 3060[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2843 -> 3061[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2844 -> 2222[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2844[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2844 -> 3062[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2844 -> 3063[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2845 -> 2223[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2845[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2845 -> 3064[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2845 -> 3065[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2846 -> 2224[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2846[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2846 -> 3066[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2846 -> 3067[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2847 -> 2225[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2847[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2847 -> 3068[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2847 -> 3069[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2848 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2848[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2848 -> 3070[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2848 -> 3071[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2849 -> 2227[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2849[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2849 -> 3072[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2849 -> 3073[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2850 -> 2228[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2850[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2850 -> 3074[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2850 -> 3075[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2851 -> 2229[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2851[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2851 -> 3076[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2851 -> 3077[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2852 -> 2230[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2852[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2852 -> 3078[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2852 -> 3079[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2853 -> 2231[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2853[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2853 -> 3080[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2853 -> 3081[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2854 -> 2232[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2854[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2854 -> 3082[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2854 -> 3083[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2855 -> 2233[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2855[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2855 -> 3084[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2855 -> 3085[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2856 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2856[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2856 -> 3086[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2856 -> 3087[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2857[label="False",fontsize=16,color="green",shape="box"];2858[label="xuu179",fontsize=16,color="green",shape="box"];2859[label="xuu50000",fontsize=16,color="green",shape="box"];2860[label="xuu4000",fontsize=16,color="green",shape="box"];2861[label="xuu50000",fontsize=16,color="green",shape="box"];2862[label="xuu4000",fontsize=16,color="green",shape="box"];2863[label="xuu50001",fontsize=16,color="green",shape="box"];2864[label="xuu4001",fontsize=16,color="green",shape="box"];2865[label="xuu50001",fontsize=16,color="green",shape="box"];2866[label="xuu4001",fontsize=16,color="green",shape="box"];698[label="xuu50000 * xuu4001",fontsize=16,color="black",shape="triangle"];698 -> 991[label="",style="solid", color="black", weight=3]; 24.03/9.91 2867[label="xuu50001",fontsize=16,color="green",shape="box"];2868[label="xuu4000",fontsize=16,color="green",shape="box"];2869 -> 2590[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2869[label="primEqNat xuu500000 xuu40000",fontsize=16,color="magenta"];2869 -> 3088[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2869 -> 3089[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2870[label="False",fontsize=16,color="green",shape="box"];2871[label="False",fontsize=16,color="green",shape="box"];2872[label="True",fontsize=16,color="green",shape="box"];2873[label="False",fontsize=16,color="green",shape="box"];2874[label="True",fontsize=16,color="green",shape="box"];2875 -> 2590[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2875[label="primEqNat xuu500000 xuu40000",fontsize=16,color="magenta"];2875 -> 3090[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2875 -> 3091[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2876[label="False",fontsize=16,color="green",shape="box"];2877[label="False",fontsize=16,color="green",shape="box"];2878[label="True",fontsize=16,color="green",shape="box"];2879[label="False",fontsize=16,color="green",shape="box"];2880[label="True",fontsize=16,color="green",shape="box"];2881[label="xuu50000",fontsize=16,color="green",shape="box"];2882[label="xuu4000",fontsize=16,color="green",shape="box"];2883[label="xuu50000",fontsize=16,color="green",shape="box"];2884[label="xuu4000",fontsize=16,color="green",shape="box"];2885[label="xuu50000",fontsize=16,color="green",shape="box"];2886[label="xuu4000",fontsize=16,color="green",shape="box"];2887[label="xuu50000",fontsize=16,color="green",shape="box"];2888[label="xuu4000",fontsize=16,color="green",shape="box"];2889[label="xuu50000",fontsize=16,color="green",shape="box"];2890[label="xuu4000",fontsize=16,color="green",shape="box"];2891[label="xuu50000",fontsize=16,color="green",shape="box"];2892[label="xuu4000",fontsize=16,color="green",shape="box"];2893[label="xuu50000",fontsize=16,color="green",shape="box"];2894[label="xuu4000",fontsize=16,color="green",shape="box"];2895[label="xuu50000",fontsize=16,color="green",shape="box"];2896[label="xuu4000",fontsize=16,color="green",shape="box"];2897[label="xuu50000",fontsize=16,color="green",shape="box"];2898[label="xuu4000",fontsize=16,color="green",shape="box"];2899[label="xuu50000",fontsize=16,color="green",shape="box"];2900[label="xuu4000",fontsize=16,color="green",shape="box"];2901[label="xuu50000",fontsize=16,color="green",shape="box"];2902[label="xuu4000",fontsize=16,color="green",shape="box"];2903[label="xuu50000",fontsize=16,color="green",shape="box"];2904[label="xuu4000",fontsize=16,color="green",shape="box"];2905[label="xuu50000",fontsize=16,color="green",shape="box"];2906[label="xuu4000",fontsize=16,color="green",shape="box"];2907[label="xuu50000",fontsize=16,color="green",shape="box"];2908[label="xuu4000",fontsize=16,color="green",shape="box"];2909[label="xuu50000",fontsize=16,color="green",shape="box"];2910[label="xuu4000",fontsize=16,color="green",shape="box"];2911[label="xuu50000",fontsize=16,color="green",shape="box"];2912[label="xuu4000",fontsize=16,color="green",shape="box"];2913[label="xuu50000",fontsize=16,color="green",shape="box"];2914[label="xuu4000",fontsize=16,color="green",shape="box"];2915[label="xuu50000",fontsize=16,color="green",shape="box"];2916[label="xuu4000",fontsize=16,color="green",shape="box"];2917[label="xuu50000",fontsize=16,color="green",shape="box"];2918[label="xuu4000",fontsize=16,color="green",shape="box"];2919[label="xuu50000",fontsize=16,color="green",shape="box"];2920[label="xuu4000",fontsize=16,color="green",shape="box"];2921[label="xuu50000",fontsize=16,color="green",shape="box"];2922[label="xuu4000",fontsize=16,color="green",shape="box"];2923[label="xuu50000",fontsize=16,color="green",shape="box"];2924[label="xuu4000",fontsize=16,color="green",shape="box"];2925[label="xuu50000",fontsize=16,color="green",shape="box"];2926[label="xuu4000",fontsize=16,color="green",shape="box"];2927[label="xuu50000",fontsize=16,color="green",shape="box"];2928[label="xuu4000",fontsize=16,color="green",shape="box"];2929[label="xuu50000",fontsize=16,color="green",shape="box"];2930[label="xuu4000",fontsize=16,color="green",shape="box"];2931[label="xuu50000",fontsize=16,color="green",shape="box"];2932[label="xuu4000",fontsize=16,color="green",shape="box"];2933[label="xuu50000",fontsize=16,color="green",shape="box"];2934[label="xuu4000",fontsize=16,color="green",shape="box"];2935[label="xuu50000",fontsize=16,color="green",shape="box"];2936[label="xuu4000",fontsize=16,color="green",shape="box"];2937[label="xuu50001",fontsize=16,color="green",shape="box"];2938[label="xuu4001",fontsize=16,color="green",shape="box"];2939[label="xuu50001",fontsize=16,color="green",shape="box"];2940[label="xuu4001",fontsize=16,color="green",shape="box"];2941[label="xuu50001",fontsize=16,color="green",shape="box"];2942[label="xuu4001",fontsize=16,color="green",shape="box"];2943[label="xuu50001",fontsize=16,color="green",shape="box"];2944[label="xuu4001",fontsize=16,color="green",shape="box"];2945[label="xuu50001",fontsize=16,color="green",shape="box"];2946[label="xuu4001",fontsize=16,color="green",shape="box"];2947[label="xuu50001",fontsize=16,color="green",shape="box"];2948[label="xuu4001",fontsize=16,color="green",shape="box"];2949[label="xuu50001",fontsize=16,color="green",shape="box"];2950[label="xuu4001",fontsize=16,color="green",shape="box"];2951[label="xuu50001",fontsize=16,color="green",shape="box"];2952[label="xuu4001",fontsize=16,color="green",shape="box"];2953[label="xuu50001",fontsize=16,color="green",shape="box"];2954[label="xuu4001",fontsize=16,color="green",shape="box"];2955[label="xuu50001",fontsize=16,color="green",shape="box"];2956[label="xuu4001",fontsize=16,color="green",shape="box"];2957[label="xuu50001",fontsize=16,color="green",shape="box"];2958[label="xuu4001",fontsize=16,color="green",shape="box"];2959[label="xuu50001",fontsize=16,color="green",shape="box"];2960[label="xuu4001",fontsize=16,color="green",shape="box"];2961[label="xuu50001",fontsize=16,color="green",shape="box"];2962[label="xuu4001",fontsize=16,color="green",shape="box"];2963[label="xuu50001",fontsize=16,color="green",shape="box"];2964[label="xuu4001",fontsize=16,color="green",shape="box"];2965[label="xuu50000",fontsize=16,color="green",shape="box"];2966[label="xuu4001",fontsize=16,color="green",shape="box"];2967[label="xuu50001",fontsize=16,color="green",shape="box"];2968[label="xuu4000",fontsize=16,color="green",shape="box"];2969[label="primEqNat (Succ xuu500000) (Succ xuu40000)",fontsize=16,color="black",shape="box"];2969 -> 3092[label="",style="solid", color="black", weight=3]; 24.03/9.91 2970[label="primEqNat (Succ xuu500000) Zero",fontsize=16,color="black",shape="box"];2970 -> 3093[label="",style="solid", color="black", weight=3]; 24.03/9.91 2971[label="primEqNat Zero (Succ xuu40000)",fontsize=16,color="black",shape="box"];2971 -> 3094[label="",style="solid", color="black", weight=3]; 24.03/9.91 2972[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2972 -> 3095[label="",style="solid", color="black", weight=3]; 24.03/9.91 2973[label="xuu5200 <= xuu5300",fontsize=16,color="burlywood",shape="triangle"];4694[label="xuu5200/LT",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4694[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4694 -> 3096[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4695[label="xuu5200/EQ",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4695[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4695 -> 3097[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4696[label="xuu5200/GT",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4696[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4696 -> 3098[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 2974[label="xuu5200 <= xuu5300",fontsize=16,color="black",shape="triangle"];2974 -> 3099[label="",style="solid", color="black", weight=3]; 24.03/9.91 2975[label="xuu5200 <= xuu5300",fontsize=16,color="black",shape="triangle"];2975 -> 3100[label="",style="solid", color="black", weight=3]; 24.03/9.91 2976[label="xuu5200 <= xuu5300",fontsize=16,color="black",shape="triangle"];2976 -> 3101[label="",style="solid", color="black", weight=3]; 24.03/9.91 2977[label="xuu5200 <= xuu5300",fontsize=16,color="burlywood",shape="triangle"];4697[label="xuu5200/Left xuu52000",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4697[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4697 -> 3102[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4698[label="xuu5200/Right xuu52000",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4698[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4698 -> 3103[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 2978[label="xuu5200 <= xuu5300",fontsize=16,color="burlywood",shape="triangle"];4699[label="xuu5200/Nothing",fontsize=10,color="white",style="solid",shape="box"];2978 -> 4699[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4699 -> 3104[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4700[label="xuu5200/Just xuu52000",fontsize=10,color="white",style="solid",shape="box"];2978 -> 4700[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4700 -> 3105[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 2979[label="xuu5200 <= xuu5300",fontsize=16,color="black",shape="triangle"];2979 -> 3106[label="",style="solid", color="black", weight=3]; 24.03/9.91 2980[label="xuu5200 <= xuu5300",fontsize=16,color="burlywood",shape="triangle"];4701[label="xuu5200/False",fontsize=10,color="white",style="solid",shape="box"];2980 -> 4701[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4701 -> 3107[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4702[label="xuu5200/True",fontsize=10,color="white",style="solid",shape="box"];2980 -> 4702[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4702 -> 3108[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 2981[label="xuu5200 <= xuu5300",fontsize=16,color="burlywood",shape="triangle"];4703[label="xuu5200/(xuu52000,xuu52001)",fontsize=10,color="white",style="solid",shape="box"];2981 -> 4703[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4703 -> 3109[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 2982[label="xuu5200 <= xuu5300",fontsize=16,color="black",shape="triangle"];2982 -> 3110[label="",style="solid", color="black", weight=3]; 24.03/9.91 2983[label="xuu5200 <= xuu5300",fontsize=16,color="black",shape="triangle"];2983 -> 3111[label="",style="solid", color="black", weight=3]; 24.03/9.91 2984[label="xuu5200 <= xuu5300",fontsize=16,color="black",shape="triangle"];2984 -> 3112[label="",style="solid", color="black", weight=3]; 24.03/9.91 2985[label="xuu5200 <= xuu5300",fontsize=16,color="burlywood",shape="triangle"];4704[label="xuu5200/(xuu52000,xuu52001,xuu52002)",fontsize=10,color="white",style="solid",shape="box"];2985 -> 4704[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4704 -> 3113[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 2986[label="xuu5200 <= xuu5300",fontsize=16,color="black",shape="triangle"];2986 -> 3114[label="",style="solid", color="black", weight=3]; 24.03/9.91 2987[label="compare1 (Left xuu184) (Left xuu185) False",fontsize=16,color="black",shape="box"];2987 -> 3115[label="",style="solid", color="black", weight=3]; 24.03/9.91 2988[label="compare1 (Left xuu184) (Left xuu185) True",fontsize=16,color="black",shape="box"];2988 -> 3116[label="",style="solid", color="black", weight=3]; 24.03/9.91 2989[label="compare0 (Right xuu5200) (Left xuu5300) True",fontsize=16,color="black",shape="box"];2989 -> 3117[label="",style="solid", color="black", weight=3]; 24.03/9.91 2990 -> 2973[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2990[label="xuu5200 <= xuu5300",fontsize=16,color="magenta"];2990 -> 3118[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2990 -> 3119[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2991 -> 2974[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2991[label="xuu5200 <= xuu5300",fontsize=16,color="magenta"];2991 -> 3120[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2991 -> 3121[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2992 -> 2975[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2992[label="xuu5200 <= xuu5300",fontsize=16,color="magenta"];2992 -> 3122[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2992 -> 3123[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2993 -> 2976[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2993[label="xuu5200 <= xuu5300",fontsize=16,color="magenta"];2993 -> 3124[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2993 -> 3125[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2994 -> 2977[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2994[label="xuu5200 <= xuu5300",fontsize=16,color="magenta"];2994 -> 3126[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2994 -> 3127[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2995 -> 2978[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2995[label="xuu5200 <= xuu5300",fontsize=16,color="magenta"];2995 -> 3128[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2995 -> 3129[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2996 -> 2979[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2996[label="xuu5200 <= xuu5300",fontsize=16,color="magenta"];2996 -> 3130[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2996 -> 3131[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2997 -> 2980[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2997[label="xuu5200 <= xuu5300",fontsize=16,color="magenta"];2997 -> 3132[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2997 -> 3133[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2998 -> 2981[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2998[label="xuu5200 <= xuu5300",fontsize=16,color="magenta"];2998 -> 3134[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2998 -> 3135[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2999 -> 2982[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2999[label="xuu5200 <= xuu5300",fontsize=16,color="magenta"];2999 -> 3136[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2999 -> 3137[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3000 -> 2983[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3000[label="xuu5200 <= xuu5300",fontsize=16,color="magenta"];3000 -> 3138[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3000 -> 3139[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3001 -> 2984[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3001[label="xuu5200 <= xuu5300",fontsize=16,color="magenta"];3001 -> 3140[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3001 -> 3141[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3002 -> 2985[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3002[label="xuu5200 <= xuu5300",fontsize=16,color="magenta"];3002 -> 3142[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3002 -> 3143[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3003 -> 2986[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3003[label="xuu5200 <= xuu5300",fontsize=16,color="magenta"];3003 -> 3144[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3003 -> 3145[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3004[label="compare1 (Right xuu191) (Right xuu192) False",fontsize=16,color="black",shape="box"];3004 -> 3146[label="",style="solid", color="black", weight=3]; 24.03/9.91 3005[label="compare1 (Right xuu191) (Right xuu192) True",fontsize=16,color="black",shape="box"];3005 -> 3147[label="",style="solid", color="black", weight=3]; 24.03/9.91 2251[label="xuu22 == xuu17",fontsize=16,color="blue",shape="box"];4705[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4705[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4705 -> 2334[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4706[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4706[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4706 -> 2335[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4707[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4707[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4707 -> 2336[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4708[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4708[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4708 -> 2337[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4709[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4709[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4709 -> 2338[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4710[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4710[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4710 -> 2339[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4711[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4711[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4711 -> 2340[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4712[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4712[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4712 -> 2341[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4713[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4713[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4713 -> 2342[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4714[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4714[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4714 -> 2343[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4715[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4715[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4715 -> 2344[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4716[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4716[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4716 -> 2345[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4717[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4717[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4717 -> 2346[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4718[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4718[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4718 -> 2347[label="",style="solid", color="blue", weight=3]; 24.03/9.91 1132[label="xuu18",fontsize=16,color="green",shape="box"];1133[label="xuu23",fontsize=16,color="green",shape="box"];1134[label="primCmpInt (FiniteMap.mkBalBranch6Size_l (Left xuu400) xuu41 xuu55 xuu44 + FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 xuu55 xuu44) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1134 -> 1273[label="",style="solid", color="black", weight=3]; 24.03/9.91 1360 -> 1843[label="",style="dashed", color="red", weight=0]; 24.03/9.91 1360[label="FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 xuu55 xuu44 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Left xuu400) xuu41 xuu55 xuu44",fontsize=16,color="magenta"];1360 -> 1844[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1360 -> 1845[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1359[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu400) xuu41 xuu55 xuu44 (Left xuu400) xuu41 xuu55 xuu44 xuu111",fontsize=16,color="burlywood",shape="triangle"];4719[label="xuu111/False",fontsize=10,color="white",style="solid",shape="box"];1359 -> 4719[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4719 -> 1365[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4720[label="xuu111/True",fontsize=10,color="white",style="solid",shape="box"];1359 -> 4720[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4720 -> 1366[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4162[label="Left xuu400",fontsize=16,color="green",shape="box"];4163[label="xuu44",fontsize=16,color="green",shape="box"];4164[label="Zero",fontsize=16,color="green",shape="box"];4165[label="xuu55",fontsize=16,color="green",shape="box"];4166[label="xuu41",fontsize=16,color="green",shape="box"];4161[label="FiniteMap.mkBranch (Pos (Succ xuu263)) xuu264 xuu265 xuu266 xuu267",fontsize=16,color="black",shape="triangle"];4161 -> 4292[label="",style="solid", color="black", weight=3]; 24.03/9.91 2252[label="False",fontsize=16,color="green",shape="box"];1154[label="xuu41",fontsize=16,color="green",shape="box"];1155[label="xuu501",fontsize=16,color="green",shape="box"];1156[label="primCmpInt (FiniteMap.mkBalBranch6Size_l (Right xuu400) xuu41 xuu47 xuu44 + FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 xuu47 xuu44) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1156 -> 1306[label="",style="solid", color="black", weight=3]; 24.03/9.91 1431 -> 1843[label="",style="dashed", color="red", weight=0]; 24.03/9.91 1431[label="FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 xuu47 xuu44 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Right xuu400) xuu41 xuu47 xuu44",fontsize=16,color="magenta"];1431 -> 1846[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1431 -> 1847[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1430[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu400) xuu41 xuu47 xuu44 (Right xuu400) xuu41 xuu47 xuu44 xuu113",fontsize=16,color="burlywood",shape="triangle"];4721[label="xuu113/False",fontsize=10,color="white",style="solid",shape="box"];1430 -> 4721[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4721 -> 1436[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4722[label="xuu113/True",fontsize=10,color="white",style="solid",shape="box"];1430 -> 4722[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4722 -> 1437[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4167[label="Right xuu400",fontsize=16,color="green",shape="box"];4168[label="xuu44",fontsize=16,color="green",shape="box"];4169[label="Zero",fontsize=16,color="green",shape="box"];4170[label="xuu47",fontsize=16,color="green",shape="box"];4171[label="xuu41",fontsize=16,color="green",shape="box"];2253[label="False",fontsize=16,color="green",shape="box"];1170[label="xuu41",fontsize=16,color="green",shape="box"];1171[label="xuu501",fontsize=16,color="green",shape="box"];2254[label="xuu41 == xuu36",fontsize=16,color="blue",shape="box"];4723[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2254 -> 4723[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4723 -> 2348[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4724[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2254 -> 4724[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4724 -> 2349[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4725[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2254 -> 4725[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4725 -> 2350[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4726[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2254 -> 4726[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4726 -> 2351[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4727[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2254 -> 4727[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4727 -> 2352[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4728[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2254 -> 4728[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4728 -> 2353[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4729[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2254 -> 4729[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4729 -> 2354[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4730[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2254 -> 4730[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4730 -> 2355[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4731[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2254 -> 4731[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4731 -> 2356[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4732[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2254 -> 4732[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4732 -> 2357[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4733[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2254 -> 4733[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4733 -> 2358[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4734[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2254 -> 4734[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4734 -> 2359[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4735[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2254 -> 4735[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4735 -> 2360[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4736[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2254 -> 4736[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4736 -> 2361[label="",style="solid", color="blue", weight=3]; 24.03/9.91 1175[label="xuu37",fontsize=16,color="green",shape="box"];1176[label="xuu42",fontsize=16,color="green",shape="box"];3032[label="xuu50001",fontsize=16,color="green",shape="box"];3033[label="xuu4001",fontsize=16,color="green",shape="box"];3034[label="xuu50001",fontsize=16,color="green",shape="box"];3035[label="xuu4001",fontsize=16,color="green",shape="box"];3036[label="xuu50001",fontsize=16,color="green",shape="box"];3037[label="xuu4001",fontsize=16,color="green",shape="box"];3038[label="xuu50001",fontsize=16,color="green",shape="box"];3039[label="xuu4001",fontsize=16,color="green",shape="box"];3040[label="xuu50001",fontsize=16,color="green",shape="box"];3041[label="xuu4001",fontsize=16,color="green",shape="box"];3042[label="xuu50001",fontsize=16,color="green",shape="box"];3043[label="xuu4001",fontsize=16,color="green",shape="box"];3044[label="xuu50001",fontsize=16,color="green",shape="box"];3045[label="xuu4001",fontsize=16,color="green",shape="box"];3046[label="xuu50001",fontsize=16,color="green",shape="box"];3047[label="xuu4001",fontsize=16,color="green",shape="box"];3048[label="xuu50001",fontsize=16,color="green",shape="box"];3049[label="xuu4001",fontsize=16,color="green",shape="box"];3050[label="xuu50001",fontsize=16,color="green",shape="box"];3051[label="xuu4001",fontsize=16,color="green",shape="box"];3052[label="xuu50001",fontsize=16,color="green",shape="box"];3053[label="xuu4001",fontsize=16,color="green",shape="box"];3054[label="xuu50001",fontsize=16,color="green",shape="box"];3055[label="xuu4001",fontsize=16,color="green",shape="box"];3056[label="xuu50001",fontsize=16,color="green",shape="box"];3057[label="xuu4001",fontsize=16,color="green",shape="box"];3058[label="xuu50001",fontsize=16,color="green",shape="box"];3059[label="xuu4001",fontsize=16,color="green",shape="box"];3060[label="xuu50002",fontsize=16,color="green",shape="box"];3061[label="xuu4002",fontsize=16,color="green",shape="box"];3062[label="xuu50002",fontsize=16,color="green",shape="box"];3063[label="xuu4002",fontsize=16,color="green",shape="box"];3064[label="xuu50002",fontsize=16,color="green",shape="box"];3065[label="xuu4002",fontsize=16,color="green",shape="box"];3066[label="xuu50002",fontsize=16,color="green",shape="box"];3067[label="xuu4002",fontsize=16,color="green",shape="box"];3068[label="xuu50002",fontsize=16,color="green",shape="box"];3069[label="xuu4002",fontsize=16,color="green",shape="box"];3070[label="xuu50002",fontsize=16,color="green",shape="box"];3071[label="xuu4002",fontsize=16,color="green",shape="box"];3072[label="xuu50002",fontsize=16,color="green",shape="box"];3073[label="xuu4002",fontsize=16,color="green",shape="box"];3074[label="xuu50002",fontsize=16,color="green",shape="box"];3075[label="xuu4002",fontsize=16,color="green",shape="box"];3076[label="xuu50002",fontsize=16,color="green",shape="box"];3077[label="xuu4002",fontsize=16,color="green",shape="box"];3078[label="xuu50002",fontsize=16,color="green",shape="box"];3079[label="xuu4002",fontsize=16,color="green",shape="box"];3080[label="xuu50002",fontsize=16,color="green",shape="box"];3081[label="xuu4002",fontsize=16,color="green",shape="box"];3082[label="xuu50002",fontsize=16,color="green",shape="box"];3083[label="xuu4002",fontsize=16,color="green",shape="box"];3084[label="xuu50002",fontsize=16,color="green",shape="box"];3085[label="xuu4002",fontsize=16,color="green",shape="box"];3086[label="xuu50002",fontsize=16,color="green",shape="box"];3087[label="xuu4002",fontsize=16,color="green",shape="box"];991[label="primMulInt xuu50000 xuu4001",fontsize=16,color="burlywood",shape="triangle"];4737[label="xuu50000/Pos xuu500000",fontsize=10,color="white",style="solid",shape="box"];991 -> 4737[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4737 -> 1233[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4738[label="xuu50000/Neg xuu500000",fontsize=10,color="white",style="solid",shape="box"];991 -> 4738[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4738 -> 1234[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3088[label="xuu40000",fontsize=16,color="green",shape="box"];3089[label="xuu500000",fontsize=16,color="green",shape="box"];3090[label="xuu40000",fontsize=16,color="green",shape="box"];3091[label="xuu500000",fontsize=16,color="green",shape="box"];3092 -> 2590[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3092[label="primEqNat xuu500000 xuu40000",fontsize=16,color="magenta"];3092 -> 3169[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3092 -> 3170[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3093[label="False",fontsize=16,color="green",shape="box"];3094[label="False",fontsize=16,color="green",shape="box"];3095[label="True",fontsize=16,color="green",shape="box"];3096[label="LT <= xuu5300",fontsize=16,color="burlywood",shape="box"];4739[label="xuu5300/LT",fontsize=10,color="white",style="solid",shape="box"];3096 -> 4739[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4739 -> 3171[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4740[label="xuu5300/EQ",fontsize=10,color="white",style="solid",shape="box"];3096 -> 4740[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4740 -> 3172[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4741[label="xuu5300/GT",fontsize=10,color="white",style="solid",shape="box"];3096 -> 4741[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4741 -> 3173[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3097[label="EQ <= xuu5300",fontsize=16,color="burlywood",shape="box"];4742[label="xuu5300/LT",fontsize=10,color="white",style="solid",shape="box"];3097 -> 4742[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4742 -> 3174[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4743[label="xuu5300/EQ",fontsize=10,color="white",style="solid",shape="box"];3097 -> 4743[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4743 -> 3175[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4744[label="xuu5300/GT",fontsize=10,color="white",style="solid",shape="box"];3097 -> 4744[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4744 -> 3176[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3098[label="GT <= xuu5300",fontsize=16,color="burlywood",shape="box"];4745[label="xuu5300/LT",fontsize=10,color="white",style="solid",shape="box"];3098 -> 4745[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4745 -> 3177[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4746[label="xuu5300/EQ",fontsize=10,color="white",style="solid",shape="box"];3098 -> 4746[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4746 -> 3178[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4747[label="xuu5300/GT",fontsize=10,color="white",style="solid",shape="box"];3098 -> 4747[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4747 -> 3179[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3099 -> 3181[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3099[label="compare xuu5200 xuu5300 /= GT",fontsize=16,color="magenta"];3099 -> 3182[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3100 -> 3181[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3100[label="compare xuu5200 xuu5300 /= GT",fontsize=16,color="magenta"];3100 -> 3183[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3101 -> 3181[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3101[label="compare xuu5200 xuu5300 /= GT",fontsize=16,color="magenta"];3101 -> 3184[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3102[label="Left xuu52000 <= xuu5300",fontsize=16,color="burlywood",shape="box"];4748[label="xuu5300/Left xuu53000",fontsize=10,color="white",style="solid",shape="box"];3102 -> 4748[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4748 -> 3190[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4749[label="xuu5300/Right xuu53000",fontsize=10,color="white",style="solid",shape="box"];3102 -> 4749[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4749 -> 3191[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3103[label="Right xuu52000 <= xuu5300",fontsize=16,color="burlywood",shape="box"];4750[label="xuu5300/Left xuu53000",fontsize=10,color="white",style="solid",shape="box"];3103 -> 4750[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4750 -> 3192[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4751[label="xuu5300/Right xuu53000",fontsize=10,color="white",style="solid",shape="box"];3103 -> 4751[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4751 -> 3193[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3104[label="Nothing <= xuu5300",fontsize=16,color="burlywood",shape="box"];4752[label="xuu5300/Nothing",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4752[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4752 -> 3194[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4753[label="xuu5300/Just xuu53000",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4753[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4753 -> 3195[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3105[label="Just xuu52000 <= xuu5300",fontsize=16,color="burlywood",shape="box"];4754[label="xuu5300/Nothing",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4754[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4754 -> 3196[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4755[label="xuu5300/Just xuu53000",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4755[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4755 -> 3197[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3106 -> 3181[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3106[label="compare xuu5200 xuu5300 /= GT",fontsize=16,color="magenta"];3106 -> 3185[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3107[label="False <= xuu5300",fontsize=16,color="burlywood",shape="box"];4756[label="xuu5300/False",fontsize=10,color="white",style="solid",shape="box"];3107 -> 4756[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4756 -> 3198[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4757[label="xuu5300/True",fontsize=10,color="white",style="solid",shape="box"];3107 -> 4757[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4757 -> 3199[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3108[label="True <= xuu5300",fontsize=16,color="burlywood",shape="box"];4758[label="xuu5300/False",fontsize=10,color="white",style="solid",shape="box"];3108 -> 4758[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4758 -> 3200[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4759[label="xuu5300/True",fontsize=10,color="white",style="solid",shape="box"];3108 -> 4759[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4759 -> 3201[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3109[label="(xuu52000,xuu52001) <= xuu5300",fontsize=16,color="burlywood",shape="box"];4760[label="xuu5300/(xuu53000,xuu53001)",fontsize=10,color="white",style="solid",shape="box"];3109 -> 4760[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4760 -> 3202[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3110 -> 3181[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3110[label="compare xuu5200 xuu5300 /= GT",fontsize=16,color="magenta"];3110 -> 3186[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3111 -> 3181[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3111[label="compare xuu5200 xuu5300 /= GT",fontsize=16,color="magenta"];3111 -> 3187[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3112 -> 3181[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3112[label="compare xuu5200 xuu5300 /= GT",fontsize=16,color="magenta"];3112 -> 3188[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3113[label="(xuu52000,xuu52001,xuu52002) <= xuu5300",fontsize=16,color="burlywood",shape="box"];4761[label="xuu5300/(xuu53000,xuu53001,xuu53002)",fontsize=10,color="white",style="solid",shape="box"];3113 -> 4761[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4761 -> 3203[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3114 -> 3181[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3114[label="compare xuu5200 xuu5300 /= GT",fontsize=16,color="magenta"];3114 -> 3189[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3115[label="compare0 (Left xuu184) (Left xuu185) otherwise",fontsize=16,color="black",shape="box"];3115 -> 3204[label="",style="solid", color="black", weight=3]; 24.03/9.91 3116[label="LT",fontsize=16,color="green",shape="box"];3117[label="GT",fontsize=16,color="green",shape="box"];3118[label="xuu5300",fontsize=16,color="green",shape="box"];3119[label="xuu5200",fontsize=16,color="green",shape="box"];3120[label="xuu5300",fontsize=16,color="green",shape="box"];3121[label="xuu5200",fontsize=16,color="green",shape="box"];3122[label="xuu5300",fontsize=16,color="green",shape="box"];3123[label="xuu5200",fontsize=16,color="green",shape="box"];3124[label="xuu5300",fontsize=16,color="green",shape="box"];3125[label="xuu5200",fontsize=16,color="green",shape="box"];3126[label="xuu5300",fontsize=16,color="green",shape="box"];3127[label="xuu5200",fontsize=16,color="green",shape="box"];3128[label="xuu5300",fontsize=16,color="green",shape="box"];3129[label="xuu5200",fontsize=16,color="green",shape="box"];3130[label="xuu5300",fontsize=16,color="green",shape="box"];3131[label="xuu5200",fontsize=16,color="green",shape="box"];3132[label="xuu5300",fontsize=16,color="green",shape="box"];3133[label="xuu5200",fontsize=16,color="green",shape="box"];3134[label="xuu5300",fontsize=16,color="green",shape="box"];3135[label="xuu5200",fontsize=16,color="green",shape="box"];3136[label="xuu5300",fontsize=16,color="green",shape="box"];3137[label="xuu5200",fontsize=16,color="green",shape="box"];3138[label="xuu5300",fontsize=16,color="green",shape="box"];3139[label="xuu5200",fontsize=16,color="green",shape="box"];3140[label="xuu5300",fontsize=16,color="green",shape="box"];3141[label="xuu5200",fontsize=16,color="green",shape="box"];3142[label="xuu5300",fontsize=16,color="green",shape="box"];3143[label="xuu5200",fontsize=16,color="green",shape="box"];3144[label="xuu5300",fontsize=16,color="green",shape="box"];3145[label="xuu5200",fontsize=16,color="green",shape="box"];3146[label="compare0 (Right xuu191) (Right xuu192) otherwise",fontsize=16,color="black",shape="box"];3146 -> 3205[label="",style="solid", color="black", weight=3]; 24.03/9.91 3147[label="LT",fontsize=16,color="green",shape="box"];2334 -> 2221[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2334[label="xuu22 == xuu17",fontsize=16,color="magenta"];2334 -> 2392[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2334 -> 2393[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2335 -> 2222[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2335[label="xuu22 == xuu17",fontsize=16,color="magenta"];2335 -> 2394[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2335 -> 2395[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2336 -> 2223[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2336[label="xuu22 == xuu17",fontsize=16,color="magenta"];2336 -> 2396[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2336 -> 2397[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2337 -> 2224[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2337[label="xuu22 == xuu17",fontsize=16,color="magenta"];2337 -> 2398[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2337 -> 2399[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2338 -> 2225[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2338[label="xuu22 == xuu17",fontsize=16,color="magenta"];2338 -> 2400[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2338 -> 2401[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2339 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2339[label="xuu22 == xuu17",fontsize=16,color="magenta"];2339 -> 2402[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2339 -> 2403[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2340 -> 2227[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2340[label="xuu22 == xuu17",fontsize=16,color="magenta"];2340 -> 2404[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2340 -> 2405[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2341 -> 2228[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2341[label="xuu22 == xuu17",fontsize=16,color="magenta"];2341 -> 2406[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2341 -> 2407[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2342 -> 2229[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2342[label="xuu22 == xuu17",fontsize=16,color="magenta"];2342 -> 2408[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2342 -> 2409[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2343 -> 2230[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2343[label="xuu22 == xuu17",fontsize=16,color="magenta"];2343 -> 2410[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2343 -> 2411[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2344 -> 2231[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2344[label="xuu22 == xuu17",fontsize=16,color="magenta"];2344 -> 2412[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2344 -> 2413[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2345 -> 2232[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2345[label="xuu22 == xuu17",fontsize=16,color="magenta"];2345 -> 2414[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2345 -> 2415[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2346 -> 2233[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2346[label="xuu22 == xuu17",fontsize=16,color="magenta"];2346 -> 2416[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2346 -> 2417[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2347 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2347[label="xuu22 == xuu17",fontsize=16,color="magenta"];2347 -> 2418[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2347 -> 2419[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1273[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l (Left xuu400) xuu41 xuu55 xuu44) (FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 xuu55 xuu44)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1273 -> 1356[label="",style="solid", color="black", weight=3]; 24.03/9.91 1844[label="FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 xuu55 xuu44",fontsize=16,color="black",shape="triangle"];1844 -> 1854[label="",style="solid", color="black", weight=3]; 24.03/9.91 1845 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.91 1845[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Left xuu400) xuu41 xuu55 xuu44",fontsize=16,color="magenta"];1845 -> 1855[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1845 -> 1856[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1843[label="xuu129 > xuu128",fontsize=16,color="black",shape="triangle"];1843 -> 1857[label="",style="solid", color="black", weight=3]; 24.03/9.91 1365[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu400) xuu41 xuu55 xuu44 (Left xuu400) xuu41 xuu55 xuu44 False",fontsize=16,color="black",shape="box"];1365 -> 1438[label="",style="solid", color="black", weight=3]; 24.03/9.91 1366[label="FiniteMap.mkBalBranch6MkBalBranch4 (Left xuu400) xuu41 xuu55 xuu44 (Left xuu400) xuu41 xuu55 xuu44 True",fontsize=16,color="black",shape="box"];1366 -> 1439[label="",style="solid", color="black", weight=3]; 24.03/9.91 4292[label="FiniteMap.mkBranchResult xuu264 xuu265 xuu267 xuu266",fontsize=16,color="black",shape="box"];4292 -> 4358[label="",style="solid", color="black", weight=3]; 24.03/9.91 1306[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l (Right xuu400) xuu41 xuu47 xuu44) (FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 xuu47 xuu44)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1306 -> 1427[label="",style="solid", color="black", weight=3]; 24.03/9.91 1846[label="FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 xuu47 xuu44",fontsize=16,color="black",shape="triangle"];1846 -> 1858[label="",style="solid", color="black", weight=3]; 24.03/9.91 1847 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.91 1847[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Right xuu400) xuu41 xuu47 xuu44",fontsize=16,color="magenta"];1847 -> 1859[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1847 -> 1860[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1436[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu400) xuu41 xuu47 xuu44 (Right xuu400) xuu41 xuu47 xuu44 False",fontsize=16,color="black",shape="box"];1436 -> 1492[label="",style="solid", color="black", weight=3]; 24.03/9.91 1437[label="FiniteMap.mkBalBranch6MkBalBranch4 (Right xuu400) xuu41 xuu47 xuu44 (Right xuu400) xuu41 xuu47 xuu44 True",fontsize=16,color="black",shape="box"];1437 -> 1493[label="",style="solid", color="black", weight=3]; 24.03/9.91 2348 -> 2221[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2348[label="xuu41 == xuu36",fontsize=16,color="magenta"];2348 -> 2420[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2348 -> 2421[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2349 -> 2222[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2349[label="xuu41 == xuu36",fontsize=16,color="magenta"];2349 -> 2422[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2349 -> 2423[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2350 -> 2223[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2350[label="xuu41 == xuu36",fontsize=16,color="magenta"];2350 -> 2424[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2350 -> 2425[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2351 -> 2224[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2351[label="xuu41 == xuu36",fontsize=16,color="magenta"];2351 -> 2426[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2351 -> 2427[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2352 -> 2225[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2352[label="xuu41 == xuu36",fontsize=16,color="magenta"];2352 -> 2428[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2352 -> 2429[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2353 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2353[label="xuu41 == xuu36",fontsize=16,color="magenta"];2353 -> 2430[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2353 -> 2431[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2354 -> 2227[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2354[label="xuu41 == xuu36",fontsize=16,color="magenta"];2354 -> 2432[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2354 -> 2433[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2355 -> 2228[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2355[label="xuu41 == xuu36",fontsize=16,color="magenta"];2355 -> 2434[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2355 -> 2435[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2356 -> 2229[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2356[label="xuu41 == xuu36",fontsize=16,color="magenta"];2356 -> 2436[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2356 -> 2437[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2357 -> 2230[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2357[label="xuu41 == xuu36",fontsize=16,color="magenta"];2357 -> 2438[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2357 -> 2439[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2358 -> 2231[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2358[label="xuu41 == xuu36",fontsize=16,color="magenta"];2358 -> 2440[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2358 -> 2441[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2359 -> 2232[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2359[label="xuu41 == xuu36",fontsize=16,color="magenta"];2359 -> 2442[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2359 -> 2443[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2360 -> 2233[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2360[label="xuu41 == xuu36",fontsize=16,color="magenta"];2360 -> 2444[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2360 -> 2445[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2361 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.91 2361[label="xuu41 == xuu36",fontsize=16,color="magenta"];2361 -> 2446[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 2361 -> 2447[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1233[label="primMulInt (Pos xuu500000) xuu4001",fontsize=16,color="burlywood",shape="box"];4762[label="xuu4001/Pos xuu40010",fontsize=10,color="white",style="solid",shape="box"];1233 -> 4762[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4762 -> 1311[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4763[label="xuu4001/Neg xuu40010",fontsize=10,color="white",style="solid",shape="box"];1233 -> 4763[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4763 -> 1312[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 1234[label="primMulInt (Neg xuu500000) xuu4001",fontsize=16,color="burlywood",shape="box"];4764[label="xuu4001/Pos xuu40010",fontsize=10,color="white",style="solid",shape="box"];1234 -> 4764[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4764 -> 1313[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4765[label="xuu4001/Neg xuu40010",fontsize=10,color="white",style="solid",shape="box"];1234 -> 4765[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4765 -> 1314[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3169[label="xuu40000",fontsize=16,color="green",shape="box"];3170[label="xuu500000",fontsize=16,color="green",shape="box"];3171[label="LT <= LT",fontsize=16,color="black",shape="box"];3171 -> 3206[label="",style="solid", color="black", weight=3]; 24.03/9.91 3172[label="LT <= EQ",fontsize=16,color="black",shape="box"];3172 -> 3207[label="",style="solid", color="black", weight=3]; 24.03/9.91 3173[label="LT <= GT",fontsize=16,color="black",shape="box"];3173 -> 3208[label="",style="solid", color="black", weight=3]; 24.03/9.91 3174[label="EQ <= LT",fontsize=16,color="black",shape="box"];3174 -> 3209[label="",style="solid", color="black", weight=3]; 24.03/9.91 3175[label="EQ <= EQ",fontsize=16,color="black",shape="box"];3175 -> 3210[label="",style="solid", color="black", weight=3]; 24.03/9.91 3176[label="EQ <= GT",fontsize=16,color="black",shape="box"];3176 -> 3211[label="",style="solid", color="black", weight=3]; 24.03/9.91 3177[label="GT <= LT",fontsize=16,color="black",shape="box"];3177 -> 3212[label="",style="solid", color="black", weight=3]; 24.03/9.91 3178[label="GT <= EQ",fontsize=16,color="black",shape="box"];3178 -> 3213[label="",style="solid", color="black", weight=3]; 24.03/9.91 3179[label="GT <= GT",fontsize=16,color="black",shape="box"];3179 -> 3214[label="",style="solid", color="black", weight=3]; 24.03/9.91 3182[label="compare xuu5200 xuu5300",fontsize=16,color="burlywood",shape="triangle"];4766[label="xuu5200/Integer xuu52000",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4766[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4766 -> 3215[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3181[label="xuu194 /= GT",fontsize=16,color="black",shape="triangle"];3181 -> 3216[label="",style="solid", color="black", weight=3]; 24.03/9.91 3183 -> 1321[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3183[label="compare xuu5200 xuu5300",fontsize=16,color="magenta"];3183 -> 3217[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3183 -> 3218[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3184[label="compare xuu5200 xuu5300",fontsize=16,color="burlywood",shape="triangle"];4767[label="xuu5200/xuu52000 : xuu52001",fontsize=10,color="white",style="solid",shape="box"];3184 -> 4767[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4767 -> 3219[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4768[label="xuu5200/[]",fontsize=10,color="white",style="solid",shape="box"];3184 -> 4768[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4768 -> 3220[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3190[label="Left xuu52000 <= Left xuu53000",fontsize=16,color="black",shape="box"];3190 -> 3240[label="",style="solid", color="black", weight=3]; 24.03/9.91 3191[label="Left xuu52000 <= Right xuu53000",fontsize=16,color="black",shape="box"];3191 -> 3241[label="",style="solid", color="black", weight=3]; 24.03/9.91 3192[label="Right xuu52000 <= Left xuu53000",fontsize=16,color="black",shape="box"];3192 -> 3242[label="",style="solid", color="black", weight=3]; 24.03/9.91 3193[label="Right xuu52000 <= Right xuu53000",fontsize=16,color="black",shape="box"];3193 -> 3243[label="",style="solid", color="black", weight=3]; 24.03/9.91 3194[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];3194 -> 3244[label="",style="solid", color="black", weight=3]; 24.03/9.91 3195[label="Nothing <= Just xuu53000",fontsize=16,color="black",shape="box"];3195 -> 3245[label="",style="solid", color="black", weight=3]; 24.03/9.91 3196[label="Just xuu52000 <= Nothing",fontsize=16,color="black",shape="box"];3196 -> 3246[label="",style="solid", color="black", weight=3]; 24.03/9.91 3197[label="Just xuu52000 <= Just xuu53000",fontsize=16,color="black",shape="box"];3197 -> 3247[label="",style="solid", color="black", weight=3]; 24.03/9.91 3185[label="compare xuu5200 xuu5300",fontsize=16,color="black",shape="triangle"];3185 -> 3221[label="",style="solid", color="black", weight=3]; 24.03/9.91 3198[label="False <= False",fontsize=16,color="black",shape="box"];3198 -> 3248[label="",style="solid", color="black", weight=3]; 24.03/9.91 3199[label="False <= True",fontsize=16,color="black",shape="box"];3199 -> 3249[label="",style="solid", color="black", weight=3]; 24.03/9.91 3200[label="True <= False",fontsize=16,color="black",shape="box"];3200 -> 3250[label="",style="solid", color="black", weight=3]; 24.03/9.91 3201[label="True <= True",fontsize=16,color="black",shape="box"];3201 -> 3251[label="",style="solid", color="black", weight=3]; 24.03/9.91 3202[label="(xuu52000,xuu52001) <= (xuu53000,xuu53001)",fontsize=16,color="black",shape="box"];3202 -> 3252[label="",style="solid", color="black", weight=3]; 24.03/9.91 3186[label="compare xuu5200 xuu5300",fontsize=16,color="burlywood",shape="triangle"];4769[label="xuu5200/xuu52000 :% xuu52001",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4769[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4769 -> 3222[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3187[label="compare xuu5200 xuu5300",fontsize=16,color="burlywood",shape="triangle"];4770[label="xuu5200/()",fontsize=10,color="white",style="solid",shape="box"];3187 -> 4770[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4770 -> 3223[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3188[label="compare xuu5200 xuu5300",fontsize=16,color="black",shape="triangle"];3188 -> 3224[label="",style="solid", color="black", weight=3]; 24.03/9.91 3203[label="(xuu52000,xuu52001,xuu52002) <= (xuu53000,xuu53001,xuu53002)",fontsize=16,color="black",shape="box"];3203 -> 3253[label="",style="solid", color="black", weight=3]; 24.03/9.91 3189[label="compare xuu5200 xuu5300",fontsize=16,color="black",shape="triangle"];3189 -> 3225[label="",style="solid", color="black", weight=3]; 24.03/9.91 3204[label="compare0 (Left xuu184) (Left xuu185) True",fontsize=16,color="black",shape="box"];3204 -> 3254[label="",style="solid", color="black", weight=3]; 24.03/9.91 3205[label="compare0 (Right xuu191) (Right xuu192) True",fontsize=16,color="black",shape="box"];3205 -> 3255[label="",style="solid", color="black", weight=3]; 24.03/9.91 2392[label="xuu22",fontsize=16,color="green",shape="box"];2393[label="xuu17",fontsize=16,color="green",shape="box"];2394[label="xuu22",fontsize=16,color="green",shape="box"];2395[label="xuu17",fontsize=16,color="green",shape="box"];2396[label="xuu22",fontsize=16,color="green",shape="box"];2397[label="xuu17",fontsize=16,color="green",shape="box"];2398[label="xuu22",fontsize=16,color="green",shape="box"];2399[label="xuu17",fontsize=16,color="green",shape="box"];2400[label="xuu22",fontsize=16,color="green",shape="box"];2401[label="xuu17",fontsize=16,color="green",shape="box"];2402[label="xuu22",fontsize=16,color="green",shape="box"];2403[label="xuu17",fontsize=16,color="green",shape="box"];2404[label="xuu22",fontsize=16,color="green",shape="box"];2405[label="xuu17",fontsize=16,color="green",shape="box"];2406[label="xuu22",fontsize=16,color="green",shape="box"];2407[label="xuu17",fontsize=16,color="green",shape="box"];2408[label="xuu22",fontsize=16,color="green",shape="box"];2409[label="xuu17",fontsize=16,color="green",shape="box"];2410[label="xuu22",fontsize=16,color="green",shape="box"];2411[label="xuu17",fontsize=16,color="green",shape="box"];2412[label="xuu22",fontsize=16,color="green",shape="box"];2413[label="xuu17",fontsize=16,color="green",shape="box"];2414[label="xuu22",fontsize=16,color="green",shape="box"];2415[label="xuu17",fontsize=16,color="green",shape="box"];2416[label="xuu22",fontsize=16,color="green",shape="box"];2417[label="xuu17",fontsize=16,color="green",shape="box"];2418[label="xuu22",fontsize=16,color="green",shape="box"];2419[label="xuu17",fontsize=16,color="green",shape="box"];1356[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu55) (FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 xuu55 xuu44)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4771[label="xuu55/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4771[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4771 -> 1532[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4772[label="xuu55/FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4772[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4772 -> 1533[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 1854[label="FiniteMap.sizeFM xuu44",fontsize=16,color="burlywood",shape="triangle"];4773[label="xuu44/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1854 -> 4773[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4773 -> 1877[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4774[label="xuu44/FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444",fontsize=10,color="white",style="solid",shape="box"];1854 -> 4774[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4774 -> 1878[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 1855[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1855 -> 1879[label="",style="solid", color="black", weight=3]; 24.03/9.91 1856 -> 1852[label="",style="dashed", color="red", weight=0]; 24.03/9.91 1856[label="FiniteMap.mkBalBranch6Size_l (Left xuu400) xuu41 xuu55 xuu44",fontsize=16,color="magenta"];1857 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.91 1857[label="compare xuu129 xuu128 == GT",fontsize=16,color="magenta"];1857 -> 1880[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1857 -> 1881[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1438 -> 1839[label="",style="dashed", color="red", weight=0]; 24.03/9.91 1438[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu400) xuu41 xuu55 xuu44 (Left xuu400) xuu41 xuu55 xuu44 (FiniteMap.mkBalBranch6Size_l (Left xuu400) xuu41 xuu55 xuu44 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 xuu55 xuu44)",fontsize=16,color="magenta"];1438 -> 1840[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1439[label="FiniteMap.mkBalBranch6MkBalBranch0 (Left xuu400) xuu41 xuu55 xuu44 xuu55 xuu44 xuu44",fontsize=16,color="burlywood",shape="box"];4775[label="xuu44/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1439 -> 4775[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4775 -> 1541[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4776[label="xuu44/FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444",fontsize=10,color="white",style="solid",shape="box"];1439 -> 4776[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4776 -> 1542[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4358[label="FiniteMap.Branch xuu264 xuu265 (FiniteMap.mkBranchUnbox xuu267 xuu264 xuu266 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu267 xuu264 xuu266 + FiniteMap.mkBranchRight_size xuu267 xuu264 xuu266)) xuu266 xuu267",fontsize=16,color="green",shape="box"];4358 -> 4364[label="",style="dashed", color="green", weight=3]; 24.03/9.91 1427[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu47) (FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 xuu47 xuu44)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4777[label="xuu47/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1427 -> 4777[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4777 -> 1544[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4778[label="xuu47/FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474",fontsize=10,color="white",style="solid",shape="box"];1427 -> 4778[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4778 -> 1545[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 1858 -> 1854[label="",style="dashed", color="red", weight=0]; 24.03/9.91 1858[label="FiniteMap.sizeFM xuu44",fontsize=16,color="magenta"];1859 -> 1855[label="",style="dashed", color="red", weight=0]; 24.03/9.91 1859[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1860[label="FiniteMap.mkBalBranch6Size_l (Right xuu400) xuu41 xuu47 xuu44",fontsize=16,color="black",shape="triangle"];1860 -> 1882[label="",style="solid", color="black", weight=3]; 24.03/9.91 1492 -> 1873[label="",style="dashed", color="red", weight=0]; 24.03/9.91 1492[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu400) xuu41 xuu47 xuu44 (Right xuu400) xuu41 xuu47 xuu44 (FiniteMap.mkBalBranch6Size_l (Right xuu400) xuu41 xuu47 xuu44 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 xuu47 xuu44)",fontsize=16,color="magenta"];1492 -> 1874[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1493[label="FiniteMap.mkBalBranch6MkBalBranch0 (Right xuu400) xuu41 xuu47 xuu44 xuu47 xuu44 xuu44",fontsize=16,color="burlywood",shape="box"];4779[label="xuu44/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1493 -> 4779[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4779 -> 1552[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4780[label="xuu44/FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444",fontsize=10,color="white",style="solid",shape="box"];1493 -> 4780[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4780 -> 1553[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 2420[label="xuu41",fontsize=16,color="green",shape="box"];2421[label="xuu36",fontsize=16,color="green",shape="box"];2422[label="xuu41",fontsize=16,color="green",shape="box"];2423[label="xuu36",fontsize=16,color="green",shape="box"];2424[label="xuu41",fontsize=16,color="green",shape="box"];2425[label="xuu36",fontsize=16,color="green",shape="box"];2426[label="xuu41",fontsize=16,color="green",shape="box"];2427[label="xuu36",fontsize=16,color="green",shape="box"];2428[label="xuu41",fontsize=16,color="green",shape="box"];2429[label="xuu36",fontsize=16,color="green",shape="box"];2430[label="xuu41",fontsize=16,color="green",shape="box"];2431[label="xuu36",fontsize=16,color="green",shape="box"];2432[label="xuu41",fontsize=16,color="green",shape="box"];2433[label="xuu36",fontsize=16,color="green",shape="box"];2434[label="xuu41",fontsize=16,color="green",shape="box"];2435[label="xuu36",fontsize=16,color="green",shape="box"];2436[label="xuu41",fontsize=16,color="green",shape="box"];2437[label="xuu36",fontsize=16,color="green",shape="box"];2438[label="xuu41",fontsize=16,color="green",shape="box"];2439[label="xuu36",fontsize=16,color="green",shape="box"];2440[label="xuu41",fontsize=16,color="green",shape="box"];2441[label="xuu36",fontsize=16,color="green",shape="box"];2442[label="xuu41",fontsize=16,color="green",shape="box"];2443[label="xuu36",fontsize=16,color="green",shape="box"];2444[label="xuu41",fontsize=16,color="green",shape="box"];2445[label="xuu36",fontsize=16,color="green",shape="box"];2446[label="xuu41",fontsize=16,color="green",shape="box"];2447[label="xuu36",fontsize=16,color="green",shape="box"];1311[label="primMulInt (Pos xuu500000) (Pos xuu40010)",fontsize=16,color="black",shape="box"];1311 -> 1444[label="",style="solid", color="black", weight=3]; 24.03/9.91 1312[label="primMulInt (Pos xuu500000) (Neg xuu40010)",fontsize=16,color="black",shape="box"];1312 -> 1445[label="",style="solid", color="black", weight=3]; 24.03/9.91 1313[label="primMulInt (Neg xuu500000) (Pos xuu40010)",fontsize=16,color="black",shape="box"];1313 -> 1446[label="",style="solid", color="black", weight=3]; 24.03/9.91 1314[label="primMulInt (Neg xuu500000) (Neg xuu40010)",fontsize=16,color="black",shape="box"];1314 -> 1447[label="",style="solid", color="black", weight=3]; 24.03/9.91 3206[label="True",fontsize=16,color="green",shape="box"];3207[label="True",fontsize=16,color="green",shape="box"];3208[label="True",fontsize=16,color="green",shape="box"];3209[label="False",fontsize=16,color="green",shape="box"];3210[label="True",fontsize=16,color="green",shape="box"];3211[label="True",fontsize=16,color="green",shape="box"];3212[label="False",fontsize=16,color="green",shape="box"];3213[label="False",fontsize=16,color="green",shape="box"];3214[label="True",fontsize=16,color="green",shape="box"];3215[label="compare (Integer xuu52000) xuu5300",fontsize=16,color="burlywood",shape="box"];4781[label="xuu5300/Integer xuu53000",fontsize=10,color="white",style="solid",shape="box"];3215 -> 4781[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4781 -> 3256[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3216 -> 3257[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3216[label="not (xuu194 == GT)",fontsize=16,color="magenta"];3216 -> 3258[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3217[label="xuu5300",fontsize=16,color="green",shape="box"];3218[label="xuu5200",fontsize=16,color="green",shape="box"];1321[label="compare xuu52 xuu53",fontsize=16,color="black",shape="triangle"];1321 -> 1451[label="",style="solid", color="black", weight=3]; 24.03/9.91 3219[label="compare (xuu52000 : xuu52001) xuu5300",fontsize=16,color="burlywood",shape="box"];4782[label="xuu5300/xuu53000 : xuu53001",fontsize=10,color="white",style="solid",shape="box"];3219 -> 4782[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4782 -> 3259[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4783[label="xuu5300/[]",fontsize=10,color="white",style="solid",shape="box"];3219 -> 4783[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4783 -> 3260[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3220[label="compare [] xuu5300",fontsize=16,color="burlywood",shape="box"];4784[label="xuu5300/xuu53000 : xuu53001",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4784[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4784 -> 3261[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4785[label="xuu5300/[]",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4785[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4785 -> 3262[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3240[label="xuu52000 <= xuu53000",fontsize=16,color="blue",shape="box"];4786[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4786[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4786 -> 3263[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4787[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4787[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4787 -> 3264[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4788[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4788[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4788 -> 3265[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4789[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4789[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4789 -> 3266[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4790[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4790[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4790 -> 3267[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4791[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4791[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4791 -> 3268[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4792[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4792[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4792 -> 3269[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4793[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4793[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4793 -> 3270[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4794[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4794[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4794 -> 3271[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4795[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4795[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4795 -> 3272[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4796[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4796[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4796 -> 3273[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4797[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4797[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4797 -> 3274[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4798[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4798[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4798 -> 3275[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4799[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4799[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4799 -> 3276[label="",style="solid", color="blue", weight=3]; 24.03/9.91 3241[label="True",fontsize=16,color="green",shape="box"];3242[label="False",fontsize=16,color="green",shape="box"];3243[label="xuu52000 <= xuu53000",fontsize=16,color="blue",shape="box"];4800[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3243 -> 4800[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4800 -> 3277[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4801[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3243 -> 4801[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4801 -> 3278[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4802[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3243 -> 4802[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4802 -> 3279[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4803[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3243 -> 4803[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4803 -> 3280[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4804[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3243 -> 4804[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4804 -> 3281[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4805[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3243 -> 4805[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4805 -> 3282[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4806[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3243 -> 4806[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4806 -> 3283[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4807[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3243 -> 4807[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4807 -> 3284[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4808[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3243 -> 4808[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4808 -> 3285[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4809[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3243 -> 4809[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4809 -> 3286[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4810[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3243 -> 4810[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4810 -> 3287[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4811[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3243 -> 4811[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4811 -> 3288[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4812[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3243 -> 4812[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4812 -> 3289[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4813[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3243 -> 4813[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4813 -> 3290[label="",style="solid", color="blue", weight=3]; 24.03/9.91 3244[label="True",fontsize=16,color="green",shape="box"];3245[label="True",fontsize=16,color="green",shape="box"];3246[label="False",fontsize=16,color="green",shape="box"];3247[label="xuu52000 <= xuu53000",fontsize=16,color="blue",shape="box"];4814[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 4814[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4814 -> 3291[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4815[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 4815[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4815 -> 3292[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4816[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 4816[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4816 -> 3293[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4817[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 4817[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4817 -> 3294[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4818[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 4818[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4818 -> 3295[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4819[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 4819[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4819 -> 3296[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4820[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 4820[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4820 -> 3297[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4821[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 4821[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4821 -> 3298[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4822[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 4822[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4822 -> 3299[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4823[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 4823[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4823 -> 3300[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4824[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 4824[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4824 -> 3301[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4825[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 4825[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4825 -> 3302[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4826[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 4826[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4826 -> 3303[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4827[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3247 -> 4827[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4827 -> 3304[label="",style="solid", color="blue", weight=3]; 24.03/9.91 3221[label="primCmpDouble xuu5200 xuu5300",fontsize=16,color="burlywood",shape="box"];4828[label="xuu5200/Double xuu52000 xuu52001",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4828[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4828 -> 3305[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3248[label="True",fontsize=16,color="green",shape="box"];3249[label="True",fontsize=16,color="green",shape="box"];3250[label="False",fontsize=16,color="green",shape="box"];3251[label="True",fontsize=16,color="green",shape="box"];3252 -> 3412[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3252[label="xuu52000 < xuu53000 || xuu52000 == xuu53000 && xuu52001 <= xuu53001",fontsize=16,color="magenta"];3252 -> 3413[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3252 -> 3414[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3222[label="compare (xuu52000 :% xuu52001) xuu5300",fontsize=16,color="burlywood",shape="box"];4829[label="xuu5300/xuu53000 :% xuu53001",fontsize=10,color="white",style="solid",shape="box"];3222 -> 4829[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4829 -> 3311[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3223[label="compare () xuu5300",fontsize=16,color="burlywood",shape="box"];4830[label="xuu5300/()",fontsize=10,color="white",style="solid",shape="box"];3223 -> 4830[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4830 -> 3312[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3224[label="primCmpFloat xuu5200 xuu5300",fontsize=16,color="burlywood",shape="box"];4831[label="xuu5200/Float xuu52000 xuu52001",fontsize=10,color="white",style="solid",shape="box"];3224 -> 4831[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4831 -> 3313[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3253 -> 3412[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3253[label="xuu52000 < xuu53000 || xuu52000 == xuu53000 && (xuu52001 < xuu53001 || xuu52001 == xuu53001 && xuu52002 <= xuu53002)",fontsize=16,color="magenta"];3253 -> 3415[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3253 -> 3416[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3225[label="primCmpChar xuu5200 xuu5300",fontsize=16,color="burlywood",shape="box"];4832[label="xuu5200/Char xuu52000",fontsize=10,color="white",style="solid",shape="box"];3225 -> 4832[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4832 -> 3314[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3254[label="GT",fontsize=16,color="green",shape="box"];3255[label="GT",fontsize=16,color="green",shape="box"];1532[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 FiniteMap.EmptyFM xuu44)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1532 -> 1659[label="",style="solid", color="black", weight=3]; 24.03/9.91 1533[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554)) (FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1533 -> 1660[label="",style="solid", color="black", weight=3]; 24.03/9.91 1877[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1877 -> 1907[label="",style="solid", color="black", weight=3]; 24.03/9.91 1878[label="FiniteMap.sizeFM (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1878 -> 1908[label="",style="solid", color="black", weight=3]; 24.03/9.91 1879[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1852[label="FiniteMap.mkBalBranch6Size_l (Left xuu400) xuu41 xuu55 xuu44",fontsize=16,color="black",shape="triangle"];1852 -> 1863[label="",style="solid", color="black", weight=3]; 24.03/9.91 1880 -> 1321[label="",style="dashed", color="red", weight=0]; 24.03/9.91 1880[label="compare xuu129 xuu128",fontsize=16,color="magenta"];1880 -> 1909[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1880 -> 1910[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1881[label="GT",fontsize=16,color="green",shape="box"];1840 -> 1843[label="",style="dashed", color="red", weight=0]; 24.03/9.91 1840[label="FiniteMap.mkBalBranch6Size_l (Left xuu400) xuu41 xuu55 xuu44 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 xuu55 xuu44",fontsize=16,color="magenta"];1840 -> 1852[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1840 -> 1853[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1839[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu400) xuu41 xuu55 xuu44 (Left xuu400) xuu41 xuu55 xuu44 xuu126",fontsize=16,color="burlywood",shape="triangle"];4833[label="xuu126/False",fontsize=10,color="white",style="solid",shape="box"];1839 -> 4833[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4833 -> 1861[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4834[label="xuu126/True",fontsize=10,color="white",style="solid",shape="box"];1839 -> 4834[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4834 -> 1862[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 1541[label="FiniteMap.mkBalBranch6MkBalBranch0 (Left xuu400) xuu41 xuu55 FiniteMap.EmptyFM xuu55 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1541 -> 1668[label="",style="solid", color="black", weight=3]; 24.03/9.91 1542[label="FiniteMap.mkBalBranch6MkBalBranch0 (Left xuu400) xuu41 xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1542 -> 1669[label="",style="solid", color="black", weight=3]; 24.03/9.91 4364[label="FiniteMap.mkBranchUnbox xuu267 xuu264 xuu266 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu267 xuu264 xuu266 + FiniteMap.mkBranchRight_size xuu267 xuu264 xuu266)",fontsize=16,color="black",shape="box"];4364 -> 4365[label="",style="solid", color="black", weight=3]; 24.03/9.91 1544[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 FiniteMap.EmptyFM xuu44)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1544 -> 1671[label="",style="solid", color="black", weight=3]; 24.03/9.91 1545[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474)) (FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1545 -> 1672[label="",style="solid", color="black", weight=3]; 24.03/9.91 1882 -> 1854[label="",style="dashed", color="red", weight=0]; 24.03/9.91 1882[label="FiniteMap.sizeFM xuu47",fontsize=16,color="magenta"];1882 -> 1911[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1874 -> 1843[label="",style="dashed", color="red", weight=0]; 24.03/9.91 1874[label="FiniteMap.mkBalBranch6Size_l (Right xuu400) xuu41 xuu47 xuu44 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 xuu47 xuu44",fontsize=16,color="magenta"];1874 -> 1883[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1874 -> 1884[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 1873[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu400) xuu41 xuu47 xuu44 (Right xuu400) xuu41 xuu47 xuu44 xuu132",fontsize=16,color="burlywood",shape="triangle"];4835[label="xuu132/False",fontsize=10,color="white",style="solid",shape="box"];1873 -> 4835[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4835 -> 1885[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4836[label="xuu132/True",fontsize=10,color="white",style="solid",shape="box"];1873 -> 4836[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4836 -> 1886[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 1552[label="FiniteMap.mkBalBranch6MkBalBranch0 (Right xuu400) xuu41 xuu47 FiniteMap.EmptyFM xuu47 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1552 -> 1679[label="",style="solid", color="black", weight=3]; 24.03/9.91 1553[label="FiniteMap.mkBalBranch6MkBalBranch0 (Right xuu400) xuu41 xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1553 -> 1680[label="",style="solid", color="black", weight=3]; 24.03/9.91 1444[label="Pos (primMulNat xuu500000 xuu40010)",fontsize=16,color="green",shape="box"];1444 -> 1555[label="",style="dashed", color="green", weight=3]; 24.03/9.91 1445[label="Neg (primMulNat xuu500000 xuu40010)",fontsize=16,color="green",shape="box"];1445 -> 1556[label="",style="dashed", color="green", weight=3]; 24.03/9.91 1446[label="Neg (primMulNat xuu500000 xuu40010)",fontsize=16,color="green",shape="box"];1446 -> 1557[label="",style="dashed", color="green", weight=3]; 24.03/9.91 1447[label="Pos (primMulNat xuu500000 xuu40010)",fontsize=16,color="green",shape="box"];1447 -> 1558[label="",style="dashed", color="green", weight=3]; 24.03/9.91 3256[label="compare (Integer xuu52000) (Integer xuu53000)",fontsize=16,color="black",shape="box"];3256 -> 3315[label="",style="solid", color="black", weight=3]; 24.03/9.91 3258 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3258[label="xuu194 == GT",fontsize=16,color="magenta"];3258 -> 3316[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3258 -> 3317[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3257[label="not xuu204",fontsize=16,color="burlywood",shape="triangle"];4837[label="xuu204/False",fontsize=10,color="white",style="solid",shape="box"];3257 -> 4837[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4837 -> 3318[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4838[label="xuu204/True",fontsize=10,color="white",style="solid",shape="box"];3257 -> 4838[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4838 -> 3319[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 1451[label="primCmpInt xuu52 xuu53",fontsize=16,color="burlywood",shape="triangle"];4839[label="xuu52/Pos xuu520",fontsize=10,color="white",style="solid",shape="box"];1451 -> 4839[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4839 -> 1560[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4840[label="xuu52/Neg xuu520",fontsize=10,color="white",style="solid",shape="box"];1451 -> 4840[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4840 -> 1561[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3259[label="compare (xuu52000 : xuu52001) (xuu53000 : xuu53001)",fontsize=16,color="black",shape="box"];3259 -> 3320[label="",style="solid", color="black", weight=3]; 24.03/9.91 3260[label="compare (xuu52000 : xuu52001) []",fontsize=16,color="black",shape="box"];3260 -> 3321[label="",style="solid", color="black", weight=3]; 24.03/9.91 3261[label="compare [] (xuu53000 : xuu53001)",fontsize=16,color="black",shape="box"];3261 -> 3322[label="",style="solid", color="black", weight=3]; 24.03/9.91 3262[label="compare [] []",fontsize=16,color="black",shape="box"];3262 -> 3323[label="",style="solid", color="black", weight=3]; 24.03/9.91 3263 -> 2973[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3263[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3263 -> 3324[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3263 -> 3325[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3264 -> 2974[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3264[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3264 -> 3326[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3264 -> 3327[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3265 -> 2975[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3265[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3265 -> 3328[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3265 -> 3329[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3266 -> 2976[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3266[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3266 -> 3330[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3266 -> 3331[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3267 -> 2977[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3267[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3267 -> 3332[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3267 -> 3333[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3268 -> 2978[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3268[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3268 -> 3334[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3268 -> 3335[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3269 -> 2979[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3269[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3269 -> 3336[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3269 -> 3337[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3270 -> 2980[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3270[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3270 -> 3338[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3270 -> 3339[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3271 -> 2981[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3271[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3271 -> 3340[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3271 -> 3341[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3272 -> 2982[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3272[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3272 -> 3342[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3272 -> 3343[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3273 -> 2983[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3273[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3273 -> 3344[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3273 -> 3345[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3274 -> 2984[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3274[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3274 -> 3346[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3274 -> 3347[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3275 -> 2985[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3275[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3275 -> 3348[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3275 -> 3349[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3276 -> 2986[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3276[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3276 -> 3350[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3276 -> 3351[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3277 -> 2973[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3277[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3277 -> 3352[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3277 -> 3353[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3278 -> 2974[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3278[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3278 -> 3354[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3278 -> 3355[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3279 -> 2975[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3279[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3279 -> 3356[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3279 -> 3357[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3280 -> 2976[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3280[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3280 -> 3358[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3280 -> 3359[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3281 -> 2977[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3281[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3281 -> 3360[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3281 -> 3361[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3282 -> 2978[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3282[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3282 -> 3362[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3282 -> 3363[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3283 -> 2979[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3283[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3283 -> 3364[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3283 -> 3365[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3284 -> 2980[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3284[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3284 -> 3366[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3284 -> 3367[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3285 -> 2981[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3285[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3285 -> 3368[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3285 -> 3369[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3286 -> 2982[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3286[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3286 -> 3370[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3286 -> 3371[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3287 -> 2983[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3287[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3287 -> 3372[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3287 -> 3373[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3288 -> 2984[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3288[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3288 -> 3374[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3288 -> 3375[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3289 -> 2985[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3289[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3289 -> 3376[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3289 -> 3377[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3290 -> 2986[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3290[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3290 -> 3378[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3290 -> 3379[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3291 -> 2973[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3291[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3291 -> 3380[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3291 -> 3381[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3292 -> 2974[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3292[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3292 -> 3382[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3292 -> 3383[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3293 -> 2975[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3293[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3293 -> 3384[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3293 -> 3385[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3294 -> 2976[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3294[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3294 -> 3386[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3294 -> 3387[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3295 -> 2977[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3295[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3295 -> 3388[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3295 -> 3389[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3296 -> 2978[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3296[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3296 -> 3390[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3296 -> 3391[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3297 -> 2979[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3297[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3297 -> 3392[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3297 -> 3393[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3298 -> 2980[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3298[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3298 -> 3394[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3298 -> 3395[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3299 -> 2981[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3299[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3299 -> 3396[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3299 -> 3397[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3300 -> 2982[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3300[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3300 -> 3398[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3300 -> 3399[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3301 -> 2983[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3301[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3301 -> 3400[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3301 -> 3401[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3302 -> 2984[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3302[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3302 -> 3402[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3302 -> 3403[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3303 -> 2985[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3303[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3303 -> 3404[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3303 -> 3405[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3304 -> 2986[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3304[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];3304 -> 3406[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3304 -> 3407[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3305[label="primCmpDouble (Double xuu52000 xuu52001) xuu5300",fontsize=16,color="burlywood",shape="box"];4841[label="xuu52001/Pos xuu520010",fontsize=10,color="white",style="solid",shape="box"];3305 -> 4841[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4841 -> 3408[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 4842[label="xuu52001/Neg xuu520010",fontsize=10,color="white",style="solid",shape="box"];3305 -> 4842[label="",style="solid", color="burlywood", weight=9]; 24.03/9.91 4842 -> 3409[label="",style="solid", color="burlywood", weight=3]; 24.03/9.91 3413 -> 2609[label="",style="dashed", color="red", weight=0]; 24.03/9.91 3413[label="xuu52000 == xuu53000 && xuu52001 <= xuu53001",fontsize=16,color="magenta"];3413 -> 3419[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3413 -> 3420[label="",style="dashed", color="magenta", weight=3]; 24.03/9.91 3414[label="xuu52000 < xuu53000",fontsize=16,color="blue",shape="box"];4843[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4843[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4843 -> 3421[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4844[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4844[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4844 -> 3422[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4845[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4845[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4845 -> 3423[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4846[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4846[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4846 -> 3424[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4847[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4847[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4847 -> 3425[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4848[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4848[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4848 -> 3426[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4849[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4849[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4849 -> 3427[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4850[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4850[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4850 -> 3428[label="",style="solid", color="blue", weight=3]; 24.03/9.91 4851[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4851[label="",style="solid", color="blue", weight=9]; 24.03/9.91 4851 -> 3429[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4852[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4852[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4852 -> 3430[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4853[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4853[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4853 -> 3431[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4854[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4854[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4854 -> 3432[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4855[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4855[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4855 -> 3433[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4856[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3414 -> 4856[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4856 -> 3434[label="",style="solid", color="blue", weight=3]; 24.03/9.92 3412[label="xuu209 || xuu210",fontsize=16,color="burlywood",shape="triangle"];4857[label="xuu209/False",fontsize=10,color="white",style="solid",shape="box"];3412 -> 4857[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4857 -> 3435[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4858[label="xuu209/True",fontsize=10,color="white",style="solid",shape="box"];3412 -> 4858[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4858 -> 3436[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3311[label="compare (xuu52000 :% xuu52001) (xuu53000 :% xuu53001)",fontsize=16,color="black",shape="box"];3311 -> 3437[label="",style="solid", color="black", weight=3]; 24.03/9.92 3312[label="compare () ()",fontsize=16,color="black",shape="box"];3312 -> 3438[label="",style="solid", color="black", weight=3]; 24.03/9.92 3313[label="primCmpFloat (Float xuu52000 xuu52001) xuu5300",fontsize=16,color="burlywood",shape="box"];4859[label="xuu52001/Pos xuu520010",fontsize=10,color="white",style="solid",shape="box"];3313 -> 4859[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4859 -> 3439[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4860[label="xuu52001/Neg xuu520010",fontsize=10,color="white",style="solid",shape="box"];3313 -> 4860[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4860 -> 3440[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3415 -> 2609[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3415[label="xuu52000 == xuu53000 && (xuu52001 < xuu53001 || xuu52001 == xuu53001 && xuu52002 <= xuu53002)",fontsize=16,color="magenta"];3415 -> 3441[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3415 -> 3442[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3416[label="xuu52000 < xuu53000",fontsize=16,color="blue",shape="box"];4861[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4861[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4861 -> 3443[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4862[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4862[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4862 -> 3444[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4863[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4863[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4863 -> 3445[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4864[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4864[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4864 -> 3446[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4865[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4865[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4865 -> 3447[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4866[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4866[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4866 -> 3448[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4867[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4867[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4867 -> 3449[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4868[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4868[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4868 -> 3450[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4869[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4869[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4869 -> 3451[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4870[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4870[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4870 -> 3452[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4871[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4871[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4871 -> 3453[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4872[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4872[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4872 -> 3454[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4873[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4873[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4873 -> 3455[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4874[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3416 -> 4874[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4874 -> 3456[label="",style="solid", color="blue", weight=3]; 24.03/9.92 3314[label="primCmpChar (Char xuu52000) xuu5300",fontsize=16,color="burlywood",shape="box"];4875[label="xuu5300/Char xuu53000",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4875[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4875 -> 3457[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 1659 -> 1451[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1659[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 FiniteMap.EmptyFM xuu44)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1659 -> 1832[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1659 -> 1833[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1660 -> 1451[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1660[label="primCmpInt (primPlusInt xuu552 (FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1660 -> 1834[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1660 -> 1835[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1907[label="Pos Zero",fontsize=16,color="green",shape="box"];1908[label="xuu442",fontsize=16,color="green",shape="box"];1863 -> 1854[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1863[label="FiniteMap.sizeFM xuu55",fontsize=16,color="magenta"];1863 -> 1912[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1909[label="xuu128",fontsize=16,color="green",shape="box"];1910[label="xuu129",fontsize=16,color="green",shape="box"];1853 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1853[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 xuu55 xuu44",fontsize=16,color="magenta"];1853 -> 1864[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1853 -> 1865[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1861[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu400) xuu41 xuu55 xuu44 (Left xuu400) xuu41 xuu55 xuu44 False",fontsize=16,color="black",shape="box"];1861 -> 1887[label="",style="solid", color="black", weight=3]; 24.03/9.92 1862[label="FiniteMap.mkBalBranch6MkBalBranch3 (Left xuu400) xuu41 xuu55 xuu44 (Left xuu400) xuu41 xuu55 xuu44 True",fontsize=16,color="black",shape="box"];1862 -> 1888[label="",style="solid", color="black", weight=3]; 24.03/9.92 1668[label="error []",fontsize=16,color="red",shape="box"];1669[label="FiniteMap.mkBalBranch6MkBalBranch02 (Left xuu400) xuu41 xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1669 -> 1866[label="",style="solid", color="black", weight=3]; 24.03/9.92 4365[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu267 xuu264 xuu266 + FiniteMap.mkBranchRight_size xuu267 xuu264 xuu266",fontsize=16,color="black",shape="box"];4365 -> 4366[label="",style="solid", color="black", weight=3]; 24.03/9.92 1671 -> 1451[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1671[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 FiniteMap.EmptyFM xuu44)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1671 -> 1868[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1671 -> 1869[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1672 -> 1451[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1672[label="primCmpInt (primPlusInt xuu472 (FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1672 -> 1870[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1672 -> 1871[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1911[label="xuu47",fontsize=16,color="green",shape="box"];1883 -> 1860[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1883[label="FiniteMap.mkBalBranch6Size_l (Right xuu400) xuu41 xuu47 xuu44",fontsize=16,color="magenta"];1884 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1884[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 xuu47 xuu44",fontsize=16,color="magenta"];1884 -> 1913[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1884 -> 1914[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1885[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu400) xuu41 xuu47 xuu44 (Right xuu400) xuu41 xuu47 xuu44 False",fontsize=16,color="black",shape="box"];1885 -> 1915[label="",style="solid", color="black", weight=3]; 24.03/9.92 1886[label="FiniteMap.mkBalBranch6MkBalBranch3 (Right xuu400) xuu41 xuu47 xuu44 (Right xuu400) xuu41 xuu47 xuu44 True",fontsize=16,color="black",shape="box"];1886 -> 1916[label="",style="solid", color="black", weight=3]; 24.03/9.92 1679[label="error []",fontsize=16,color="red",shape="box"];1680[label="FiniteMap.mkBalBranch6MkBalBranch02 (Right xuu400) xuu41 xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1680 -> 1889[label="",style="solid", color="black", weight=3]; 24.03/9.92 1555[label="primMulNat xuu500000 xuu40010",fontsize=16,color="burlywood",shape="triangle"];4876[label="xuu500000/Succ xuu5000000",fontsize=10,color="white",style="solid",shape="box"];1555 -> 4876[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4876 -> 1682[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4877[label="xuu500000/Zero",fontsize=10,color="white",style="solid",shape="box"];1555 -> 4877[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4877 -> 1683[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 1556 -> 1555[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1556[label="primMulNat xuu500000 xuu40010",fontsize=16,color="magenta"];1556 -> 1684[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1557 -> 1555[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1557[label="primMulNat xuu500000 xuu40010",fontsize=16,color="magenta"];1557 -> 1685[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1558 -> 1555[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1558[label="primMulNat xuu500000 xuu40010",fontsize=16,color="magenta"];1558 -> 1686[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1558 -> 1687[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3315 -> 1451[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3315[label="primCmpInt xuu52000 xuu53000",fontsize=16,color="magenta"];3315 -> 3458[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3315 -> 3459[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3316[label="xuu194",fontsize=16,color="green",shape="box"];3317[label="GT",fontsize=16,color="green",shape="box"];3318[label="not False",fontsize=16,color="black",shape="box"];3318 -> 3460[label="",style="solid", color="black", weight=3]; 24.03/9.92 3319[label="not True",fontsize=16,color="black",shape="box"];3319 -> 3461[label="",style="solid", color="black", weight=3]; 24.03/9.92 1560[label="primCmpInt (Pos xuu520) xuu53",fontsize=16,color="burlywood",shape="box"];4878[label="xuu520/Succ xuu5200",fontsize=10,color="white",style="solid",shape="box"];1560 -> 4878[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4878 -> 1689[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4879[label="xuu520/Zero",fontsize=10,color="white",style="solid",shape="box"];1560 -> 4879[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4879 -> 1690[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 1561[label="primCmpInt (Neg xuu520) xuu53",fontsize=16,color="burlywood",shape="box"];4880[label="xuu520/Succ xuu5200",fontsize=10,color="white",style="solid",shape="box"];1561 -> 4880[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4880 -> 1691[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4881[label="xuu520/Zero",fontsize=10,color="white",style="solid",shape="box"];1561 -> 4881[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4881 -> 1692[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3320 -> 3462[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3320[label="primCompAux xuu52000 xuu53000 (compare xuu52001 xuu53001)",fontsize=16,color="magenta"];3320 -> 3463[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3321[label="GT",fontsize=16,color="green",shape="box"];3322[label="LT",fontsize=16,color="green",shape="box"];3323[label="EQ",fontsize=16,color="green",shape="box"];3324[label="xuu53000",fontsize=16,color="green",shape="box"];3325[label="xuu52000",fontsize=16,color="green",shape="box"];3326[label="xuu53000",fontsize=16,color="green",shape="box"];3327[label="xuu52000",fontsize=16,color="green",shape="box"];3328[label="xuu53000",fontsize=16,color="green",shape="box"];3329[label="xuu52000",fontsize=16,color="green",shape="box"];3330[label="xuu53000",fontsize=16,color="green",shape="box"];3331[label="xuu52000",fontsize=16,color="green",shape="box"];3332[label="xuu53000",fontsize=16,color="green",shape="box"];3333[label="xuu52000",fontsize=16,color="green",shape="box"];3334[label="xuu53000",fontsize=16,color="green",shape="box"];3335[label="xuu52000",fontsize=16,color="green",shape="box"];3336[label="xuu53000",fontsize=16,color="green",shape="box"];3337[label="xuu52000",fontsize=16,color="green",shape="box"];3338[label="xuu53000",fontsize=16,color="green",shape="box"];3339[label="xuu52000",fontsize=16,color="green",shape="box"];3340[label="xuu53000",fontsize=16,color="green",shape="box"];3341[label="xuu52000",fontsize=16,color="green",shape="box"];3342[label="xuu53000",fontsize=16,color="green",shape="box"];3343[label="xuu52000",fontsize=16,color="green",shape="box"];3344[label="xuu53000",fontsize=16,color="green",shape="box"];3345[label="xuu52000",fontsize=16,color="green",shape="box"];3346[label="xuu53000",fontsize=16,color="green",shape="box"];3347[label="xuu52000",fontsize=16,color="green",shape="box"];3348[label="xuu53000",fontsize=16,color="green",shape="box"];3349[label="xuu52000",fontsize=16,color="green",shape="box"];3350[label="xuu53000",fontsize=16,color="green",shape="box"];3351[label="xuu52000",fontsize=16,color="green",shape="box"];3352[label="xuu53000",fontsize=16,color="green",shape="box"];3353[label="xuu52000",fontsize=16,color="green",shape="box"];3354[label="xuu53000",fontsize=16,color="green",shape="box"];3355[label="xuu52000",fontsize=16,color="green",shape="box"];3356[label="xuu53000",fontsize=16,color="green",shape="box"];3357[label="xuu52000",fontsize=16,color="green",shape="box"];3358[label="xuu53000",fontsize=16,color="green",shape="box"];3359[label="xuu52000",fontsize=16,color="green",shape="box"];3360[label="xuu53000",fontsize=16,color="green",shape="box"];3361[label="xuu52000",fontsize=16,color="green",shape="box"];3362[label="xuu53000",fontsize=16,color="green",shape="box"];3363[label="xuu52000",fontsize=16,color="green",shape="box"];3364[label="xuu53000",fontsize=16,color="green",shape="box"];3365[label="xuu52000",fontsize=16,color="green",shape="box"];3366[label="xuu53000",fontsize=16,color="green",shape="box"];3367[label="xuu52000",fontsize=16,color="green",shape="box"];3368[label="xuu53000",fontsize=16,color="green",shape="box"];3369[label="xuu52000",fontsize=16,color="green",shape="box"];3370[label="xuu53000",fontsize=16,color="green",shape="box"];3371[label="xuu52000",fontsize=16,color="green",shape="box"];3372[label="xuu53000",fontsize=16,color="green",shape="box"];3373[label="xuu52000",fontsize=16,color="green",shape="box"];3374[label="xuu53000",fontsize=16,color="green",shape="box"];3375[label="xuu52000",fontsize=16,color="green",shape="box"];3376[label="xuu53000",fontsize=16,color="green",shape="box"];3377[label="xuu52000",fontsize=16,color="green",shape="box"];3378[label="xuu53000",fontsize=16,color="green",shape="box"];3379[label="xuu52000",fontsize=16,color="green",shape="box"];3380[label="xuu53000",fontsize=16,color="green",shape="box"];3381[label="xuu52000",fontsize=16,color="green",shape="box"];3382[label="xuu53000",fontsize=16,color="green",shape="box"];3383[label="xuu52000",fontsize=16,color="green",shape="box"];3384[label="xuu53000",fontsize=16,color="green",shape="box"];3385[label="xuu52000",fontsize=16,color="green",shape="box"];3386[label="xuu53000",fontsize=16,color="green",shape="box"];3387[label="xuu52000",fontsize=16,color="green",shape="box"];3388[label="xuu53000",fontsize=16,color="green",shape="box"];3389[label="xuu52000",fontsize=16,color="green",shape="box"];3390[label="xuu53000",fontsize=16,color="green",shape="box"];3391[label="xuu52000",fontsize=16,color="green",shape="box"];3392[label="xuu53000",fontsize=16,color="green",shape="box"];3393[label="xuu52000",fontsize=16,color="green",shape="box"];3394[label="xuu53000",fontsize=16,color="green",shape="box"];3395[label="xuu52000",fontsize=16,color="green",shape="box"];3396[label="xuu53000",fontsize=16,color="green",shape="box"];3397[label="xuu52000",fontsize=16,color="green",shape="box"];3398[label="xuu53000",fontsize=16,color="green",shape="box"];3399[label="xuu52000",fontsize=16,color="green",shape="box"];3400[label="xuu53000",fontsize=16,color="green",shape="box"];3401[label="xuu52000",fontsize=16,color="green",shape="box"];3402[label="xuu53000",fontsize=16,color="green",shape="box"];3403[label="xuu52000",fontsize=16,color="green",shape="box"];3404[label="xuu53000",fontsize=16,color="green",shape="box"];3405[label="xuu52000",fontsize=16,color="green",shape="box"];3406[label="xuu53000",fontsize=16,color="green",shape="box"];3407[label="xuu52000",fontsize=16,color="green",shape="box"];3408[label="primCmpDouble (Double xuu52000 (Pos xuu520010)) xuu5300",fontsize=16,color="burlywood",shape="box"];4882[label="xuu5300/Double xuu53000 xuu53001",fontsize=10,color="white",style="solid",shape="box"];3408 -> 4882[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4882 -> 3464[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3409[label="primCmpDouble (Double xuu52000 (Neg xuu520010)) xuu5300",fontsize=16,color="burlywood",shape="box"];4883[label="xuu5300/Double xuu53000 xuu53001",fontsize=10,color="white",style="solid",shape="box"];3409 -> 4883[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4883 -> 3465[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3419[label="xuu52000 == xuu53000",fontsize=16,color="blue",shape="box"];4884[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3419 -> 4884[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4884 -> 3466[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4885[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3419 -> 4885[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4885 -> 3467[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4886[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3419 -> 4886[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4886 -> 3468[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4887[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3419 -> 4887[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4887 -> 3469[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4888[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3419 -> 4888[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4888 -> 3470[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4889[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3419 -> 4889[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4889 -> 3471[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4890[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3419 -> 4890[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4890 -> 3472[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4891[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3419 -> 4891[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4891 -> 3473[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4892[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3419 -> 4892[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4892 -> 3474[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4893[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3419 -> 4893[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4893 -> 3475[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4894[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3419 -> 4894[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4894 -> 3476[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4895[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3419 -> 4895[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4895 -> 3477[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4896[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3419 -> 4896[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4896 -> 3478[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4897[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3419 -> 4897[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4897 -> 3479[label="",style="solid", color="blue", weight=3]; 24.03/9.92 3420[label="xuu52001 <= xuu53001",fontsize=16,color="blue",shape="box"];4898[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3420 -> 4898[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4898 -> 3480[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4899[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3420 -> 4899[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4899 -> 3481[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4900[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3420 -> 4900[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4900 -> 3482[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4901[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3420 -> 4901[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4901 -> 3483[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4902[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3420 -> 4902[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4902 -> 3484[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4903[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3420 -> 4903[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4903 -> 3485[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4904[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3420 -> 4904[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4904 -> 3486[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4905[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3420 -> 4905[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4905 -> 3487[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4906[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3420 -> 4906[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4906 -> 3488[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4907[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3420 -> 4907[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4907 -> 3489[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4908[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3420 -> 4908[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4908 -> 3490[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4909[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3420 -> 4909[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4909 -> 3491[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4910[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3420 -> 4910[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4910 -> 3492[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4911[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3420 -> 4911[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4911 -> 3493[label="",style="solid", color="blue", weight=3]; 24.03/9.92 3421[label="xuu52000 < xuu53000",fontsize=16,color="black",shape="triangle"];3421 -> 3494[label="",style="solid", color="black", weight=3]; 24.03/9.92 3422[label="xuu52000 < xuu53000",fontsize=16,color="black",shape="triangle"];3422 -> 3495[label="",style="solid", color="black", weight=3]; 24.03/9.92 3423 -> 1496[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3423[label="xuu52000 < xuu53000",fontsize=16,color="magenta"];3423 -> 3496[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3423 -> 3497[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3424[label="xuu52000 < xuu53000",fontsize=16,color="black",shape="triangle"];3424 -> 3498[label="",style="solid", color="black", weight=3]; 24.03/9.92 3425[label="xuu52000 < xuu53000",fontsize=16,color="black",shape="triangle"];3425 -> 3499[label="",style="solid", color="black", weight=3]; 24.03/9.92 3426[label="xuu52000 < xuu53000",fontsize=16,color="black",shape="triangle"];3426 -> 3500[label="",style="solid", color="black", weight=3]; 24.03/9.92 3427[label="xuu52000 < xuu53000",fontsize=16,color="black",shape="triangle"];3427 -> 3501[label="",style="solid", color="black", weight=3]; 24.03/9.92 3428[label="xuu52000 < xuu53000",fontsize=16,color="black",shape="triangle"];3428 -> 3502[label="",style="solid", color="black", weight=3]; 24.03/9.92 3429[label="xuu52000 < xuu53000",fontsize=16,color="black",shape="triangle"];3429 -> 3503[label="",style="solid", color="black", weight=3]; 24.03/9.92 3430[label="xuu52000 < xuu53000",fontsize=16,color="black",shape="triangle"];3430 -> 3504[label="",style="solid", color="black", weight=3]; 24.03/9.92 3431[label="xuu52000 < xuu53000",fontsize=16,color="black",shape="triangle"];3431 -> 3505[label="",style="solid", color="black", weight=3]; 24.03/9.92 3432[label="xuu52000 < xuu53000",fontsize=16,color="black",shape="triangle"];3432 -> 3506[label="",style="solid", color="black", weight=3]; 24.03/9.92 3433[label="xuu52000 < xuu53000",fontsize=16,color="black",shape="triangle"];3433 -> 3507[label="",style="solid", color="black", weight=3]; 24.03/9.92 3434[label="xuu52000 < xuu53000",fontsize=16,color="black",shape="triangle"];3434 -> 3508[label="",style="solid", color="black", weight=3]; 24.03/9.92 3435[label="False || xuu210",fontsize=16,color="black",shape="box"];3435 -> 3509[label="",style="solid", color="black", weight=3]; 24.03/9.92 3436[label="True || xuu210",fontsize=16,color="black",shape="box"];3436 -> 3510[label="",style="solid", color="black", weight=3]; 24.03/9.92 3437[label="compare (xuu52000 * xuu53001) (xuu53000 * xuu52001)",fontsize=16,color="blue",shape="box"];4912[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3437 -> 4912[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4912 -> 3511[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4913[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3437 -> 4913[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4913 -> 3512[label="",style="solid", color="blue", weight=3]; 24.03/9.92 3438[label="EQ",fontsize=16,color="green",shape="box"];3439[label="primCmpFloat (Float xuu52000 (Pos xuu520010)) xuu5300",fontsize=16,color="burlywood",shape="box"];4914[label="xuu5300/Float xuu53000 xuu53001",fontsize=10,color="white",style="solid",shape="box"];3439 -> 4914[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4914 -> 3513[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3440[label="primCmpFloat (Float xuu52000 (Neg xuu520010)) xuu5300",fontsize=16,color="burlywood",shape="box"];4915[label="xuu5300/Float xuu53000 xuu53001",fontsize=10,color="white",style="solid",shape="box"];3440 -> 4915[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4915 -> 3514[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3441[label="xuu52000 == xuu53000",fontsize=16,color="blue",shape="box"];4916[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4916[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4916 -> 3515[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4917[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4917[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4917 -> 3516[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4918[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4918[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4918 -> 3517[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4919[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4919[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4919 -> 3518[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4920[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4920[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4920 -> 3519[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4921[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4921[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4921 -> 3520[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4922[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4922[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4922 -> 3521[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4923[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4923[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4923 -> 3522[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4924[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4924[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4924 -> 3523[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4925[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4925[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4925 -> 3524[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4926[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4926[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4926 -> 3525[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4927[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4927[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4927 -> 3526[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4928[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4928[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4928 -> 3527[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4929[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 4929[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4929 -> 3528[label="",style="solid", color="blue", weight=3]; 24.03/9.92 3442 -> 3412[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3442[label="xuu52001 < xuu53001 || xuu52001 == xuu53001 && xuu52002 <= xuu53002",fontsize=16,color="magenta"];3442 -> 3529[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3442 -> 3530[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3443 -> 3421[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3443[label="xuu52000 < xuu53000",fontsize=16,color="magenta"];3443 -> 3531[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3443 -> 3532[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3444 -> 3422[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3444[label="xuu52000 < xuu53000",fontsize=16,color="magenta"];3444 -> 3533[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3444 -> 3534[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3445 -> 1496[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3445[label="xuu52000 < xuu53000",fontsize=16,color="magenta"];3445 -> 3535[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3445 -> 3536[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3446 -> 3424[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3446[label="xuu52000 < xuu53000",fontsize=16,color="magenta"];3446 -> 3537[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3446 -> 3538[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3447 -> 3425[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3447[label="xuu52000 < xuu53000",fontsize=16,color="magenta"];3447 -> 3539[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3447 -> 3540[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3448 -> 3426[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3448[label="xuu52000 < xuu53000",fontsize=16,color="magenta"];3448 -> 3541[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3448 -> 3542[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3449 -> 3427[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3449[label="xuu52000 < xuu53000",fontsize=16,color="magenta"];3449 -> 3543[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3449 -> 3544[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3450 -> 3428[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3450[label="xuu52000 < xuu53000",fontsize=16,color="magenta"];3450 -> 3545[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3450 -> 3546[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3451 -> 3429[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3451[label="xuu52000 < xuu53000",fontsize=16,color="magenta"];3451 -> 3547[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3451 -> 3548[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3452 -> 3430[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3452[label="xuu52000 < xuu53000",fontsize=16,color="magenta"];3452 -> 3549[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3452 -> 3550[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3453 -> 3431[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3453[label="xuu52000 < xuu53000",fontsize=16,color="magenta"];3453 -> 3551[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3453 -> 3552[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3454 -> 3432[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3454[label="xuu52000 < xuu53000",fontsize=16,color="magenta"];3454 -> 3553[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3454 -> 3554[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3455 -> 3433[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3455[label="xuu52000 < xuu53000",fontsize=16,color="magenta"];3455 -> 3555[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3455 -> 3556[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3456 -> 3434[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3456[label="xuu52000 < xuu53000",fontsize=16,color="magenta"];3456 -> 3557[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3456 -> 3558[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3457[label="primCmpChar (Char xuu52000) (Char xuu53000)",fontsize=16,color="black",shape="box"];3457 -> 3559[label="",style="solid", color="black", weight=3]; 24.03/9.92 1832[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1833 -> 2005[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1833[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 FiniteMap.EmptyFM xuu44)",fontsize=16,color="magenta"];1833 -> 2010[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1833 -> 2011[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1834[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1835 -> 2005[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1835[label="primPlusInt xuu552 (FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44)",fontsize=16,color="magenta"];1835 -> 2012[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1912[label="xuu55",fontsize=16,color="green",shape="box"];1864 -> 1855[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1864[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1865 -> 1844[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1865[label="FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 xuu55 xuu44",fontsize=16,color="magenta"];1887[label="FiniteMap.mkBalBranch6MkBalBranch2 (Left xuu400) xuu41 xuu55 xuu44 (Left xuu400) xuu41 xuu55 xuu44 otherwise",fontsize=16,color="black",shape="box"];1887 -> 2023[label="",style="solid", color="black", weight=3]; 24.03/9.92 1888[label="FiniteMap.mkBalBranch6MkBalBranch1 (Left xuu400) xuu41 xuu55 xuu44 xuu55 xuu44 xuu55",fontsize=16,color="burlywood",shape="box"];4930[label="xuu55/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4930[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4930 -> 2024[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4931[label="xuu55/FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4931[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4931 -> 2025[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 1866 -> 2026[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1866[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu400) xuu41 xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 (FiniteMap.sizeFM xuu443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444)",fontsize=16,color="magenta"];1866 -> 2027[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4366 -> 2005[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4366[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu267 xuu264 xuu266) (FiniteMap.mkBranchRight_size xuu267 xuu264 xuu266)",fontsize=16,color="magenta"];4366 -> 4367[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4366 -> 4368[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1868[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1869 -> 2005[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1869[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 FiniteMap.EmptyFM xuu44)",fontsize=16,color="magenta"];1869 -> 2015[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1869 -> 2016[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1870[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1871 -> 2005[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1871[label="primPlusInt xuu472 (FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44)",fontsize=16,color="magenta"];1871 -> 2017[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1871 -> 2018[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1913 -> 1855[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1913[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1914 -> 1846[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1914[label="FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 xuu47 xuu44",fontsize=16,color="magenta"];1915[label="FiniteMap.mkBalBranch6MkBalBranch2 (Right xuu400) xuu41 xuu47 xuu44 (Right xuu400) xuu41 xuu47 xuu44 otherwise",fontsize=16,color="black",shape="box"];1915 -> 2032[label="",style="solid", color="black", weight=3]; 24.03/9.92 1916[label="FiniteMap.mkBalBranch6MkBalBranch1 (Right xuu400) xuu41 xuu47 xuu44 xuu47 xuu44 xuu47",fontsize=16,color="burlywood",shape="box"];4932[label="xuu47/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1916 -> 4932[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4932 -> 2033[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4933[label="xuu47/FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474",fontsize=10,color="white",style="solid",shape="box"];1916 -> 4933[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4933 -> 2034[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 1889 -> 2035[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1889[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu400) xuu41 xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 (FiniteMap.sizeFM xuu443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444)",fontsize=16,color="magenta"];1889 -> 2036[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1682[label="primMulNat (Succ xuu5000000) xuu40010",fontsize=16,color="burlywood",shape="box"];4934[label="xuu40010/Succ xuu400100",fontsize=10,color="white",style="solid",shape="box"];1682 -> 4934[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4934 -> 1891[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4935[label="xuu40010/Zero",fontsize=10,color="white",style="solid",shape="box"];1682 -> 4935[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4935 -> 1892[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 1683[label="primMulNat Zero xuu40010",fontsize=16,color="burlywood",shape="box"];4936[label="xuu40010/Succ xuu400100",fontsize=10,color="white",style="solid",shape="box"];1683 -> 4936[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4936 -> 1893[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4937[label="xuu40010/Zero",fontsize=10,color="white",style="solid",shape="box"];1683 -> 4937[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4937 -> 1894[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 1684[label="xuu40010",fontsize=16,color="green",shape="box"];1685[label="xuu500000",fontsize=16,color="green",shape="box"];1686[label="xuu500000",fontsize=16,color="green",shape="box"];1687[label="xuu40010",fontsize=16,color="green",shape="box"];3458[label="xuu53000",fontsize=16,color="green",shape="box"];3459[label="xuu52000",fontsize=16,color="green",shape="box"];3460[label="True",fontsize=16,color="green",shape="box"];3461[label="False",fontsize=16,color="green",shape="box"];1689[label="primCmpInt (Pos (Succ xuu5200)) xuu53",fontsize=16,color="burlywood",shape="box"];4938[label="xuu53/Pos xuu530",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4938[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4938 -> 1897[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4939[label="xuu53/Neg xuu530",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4939[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4939 -> 1898[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 1690[label="primCmpInt (Pos Zero) xuu53",fontsize=16,color="burlywood",shape="box"];4940[label="xuu53/Pos xuu530",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4940[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4940 -> 1899[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4941[label="xuu53/Neg xuu530",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4941[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4941 -> 1900[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 1691[label="primCmpInt (Neg (Succ xuu5200)) xuu53",fontsize=16,color="burlywood",shape="box"];4942[label="xuu53/Pos xuu530",fontsize=10,color="white",style="solid",shape="box"];1691 -> 4942[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4942 -> 1901[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4943[label="xuu53/Neg xuu530",fontsize=10,color="white",style="solid",shape="box"];1691 -> 4943[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4943 -> 1902[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 1692[label="primCmpInt (Neg Zero) xuu53",fontsize=16,color="burlywood",shape="box"];4944[label="xuu53/Pos xuu530",fontsize=10,color="white",style="solid",shape="box"];1692 -> 4944[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4944 -> 1903[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4945[label="xuu53/Neg xuu530",fontsize=10,color="white",style="solid",shape="box"];1692 -> 4945[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4945 -> 1904[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3463 -> 3184[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3463[label="compare xuu52001 xuu53001",fontsize=16,color="magenta"];3463 -> 3560[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3463 -> 3561[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3462[label="primCompAux xuu52000 xuu53000 xuu211",fontsize=16,color="black",shape="triangle"];3462 -> 3562[label="",style="solid", color="black", weight=3]; 24.03/9.92 3464[label="primCmpDouble (Double xuu52000 (Pos xuu520010)) (Double xuu53000 xuu53001)",fontsize=16,color="burlywood",shape="box"];4946[label="xuu53001/Pos xuu530010",fontsize=10,color="white",style="solid",shape="box"];3464 -> 4946[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4946 -> 3577[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4947[label="xuu53001/Neg xuu530010",fontsize=10,color="white",style="solid",shape="box"];3464 -> 4947[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4947 -> 3578[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3465[label="primCmpDouble (Double xuu52000 (Neg xuu520010)) (Double xuu53000 xuu53001)",fontsize=16,color="burlywood",shape="box"];4948[label="xuu53001/Pos xuu530010",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4948[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4948 -> 3579[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4949[label="xuu53001/Neg xuu530010",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4949[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4949 -> 3580[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3466 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3466[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3466 -> 3581[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3466 -> 3582[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3467 -> 2229[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3467[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3467 -> 3583[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3467 -> 3584[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3468 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3468[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3468 -> 3585[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3468 -> 3586[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3469 -> 2227[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3469[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3469 -> 3587[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3469 -> 3588[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3470 -> 2231[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3470[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3470 -> 3589[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3470 -> 3590[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3471 -> 2228[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3471[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3471 -> 3591[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3471 -> 3592[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3472 -> 2225[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3472[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3472 -> 3593[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3472 -> 3594[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3473 -> 2224[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3473[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3473 -> 3595[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3473 -> 3596[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3474 -> 2230[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3474[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3474 -> 3597[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3474 -> 3598[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3475 -> 2223[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3475[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3475 -> 3599[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3475 -> 3600[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3476 -> 2221[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3476[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3476 -> 3601[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3476 -> 3602[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3477 -> 2232[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3477[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3477 -> 3603[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3477 -> 3604[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3478 -> 2222[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3478[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3478 -> 3605[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3478 -> 3606[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3479 -> 2233[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3479[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3479 -> 3607[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3479 -> 3608[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3480 -> 2973[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3480[label="xuu52001 <= xuu53001",fontsize=16,color="magenta"];3480 -> 3609[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3480 -> 3610[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3481 -> 2974[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3481[label="xuu52001 <= xuu53001",fontsize=16,color="magenta"];3481 -> 3611[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3481 -> 3612[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3482 -> 2975[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3482[label="xuu52001 <= xuu53001",fontsize=16,color="magenta"];3482 -> 3613[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3482 -> 3614[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3483 -> 2976[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3483[label="xuu52001 <= xuu53001",fontsize=16,color="magenta"];3483 -> 3615[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3483 -> 3616[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3484 -> 2977[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3484[label="xuu52001 <= xuu53001",fontsize=16,color="magenta"];3484 -> 3617[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3484 -> 3618[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3485 -> 2978[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3485[label="xuu52001 <= xuu53001",fontsize=16,color="magenta"];3485 -> 3619[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3485 -> 3620[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3486 -> 2979[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3486[label="xuu52001 <= xuu53001",fontsize=16,color="magenta"];3486 -> 3621[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3486 -> 3622[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3487 -> 2980[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3487[label="xuu52001 <= xuu53001",fontsize=16,color="magenta"];3487 -> 3623[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3487 -> 3624[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3488 -> 2981[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3488[label="xuu52001 <= xuu53001",fontsize=16,color="magenta"];3488 -> 3625[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3488 -> 3626[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3489 -> 2982[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3489[label="xuu52001 <= xuu53001",fontsize=16,color="magenta"];3489 -> 3627[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3489 -> 3628[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3490 -> 2983[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3490[label="xuu52001 <= xuu53001",fontsize=16,color="magenta"];3490 -> 3629[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3490 -> 3630[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3491 -> 2984[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3491[label="xuu52001 <= xuu53001",fontsize=16,color="magenta"];3491 -> 3631[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3491 -> 3632[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3492 -> 2985[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3492[label="xuu52001 <= xuu53001",fontsize=16,color="magenta"];3492 -> 3633[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3492 -> 3634[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3493 -> 2986[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3493[label="xuu52001 <= xuu53001",fontsize=16,color="magenta"];3493 -> 3635[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3493 -> 3636[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3494 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3494[label="compare xuu52000 xuu53000 == LT",fontsize=16,color="magenta"];3494 -> 3637[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3494 -> 3638[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3495 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3495[label="compare xuu52000 xuu53000 == LT",fontsize=16,color="magenta"];3495 -> 3639[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3495 -> 3640[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3496[label="xuu52000",fontsize=16,color="green",shape="box"];3497[label="xuu53000",fontsize=16,color="green",shape="box"];1496[label="xuu520 < xuu530",fontsize=16,color="black",shape="triangle"];1496 -> 1569[label="",style="solid", color="black", weight=3]; 24.03/9.92 3498 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3498[label="compare xuu52000 xuu53000 == LT",fontsize=16,color="magenta"];3498 -> 3641[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3498 -> 3642[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3499 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3499[label="compare xuu52000 xuu53000 == LT",fontsize=16,color="magenta"];3499 -> 3643[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3499 -> 3644[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3500 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3500[label="compare xuu52000 xuu53000 == LT",fontsize=16,color="magenta"];3500 -> 3645[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3500 -> 3646[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3501 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3501[label="compare xuu52000 xuu53000 == LT",fontsize=16,color="magenta"];3501 -> 3647[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3501 -> 3648[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3502 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3502[label="compare xuu52000 xuu53000 == LT",fontsize=16,color="magenta"];3502 -> 3649[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3502 -> 3650[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3503 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3503[label="compare xuu52000 xuu53000 == LT",fontsize=16,color="magenta"];3503 -> 3651[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3503 -> 3652[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3504 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3504[label="compare xuu52000 xuu53000 == LT",fontsize=16,color="magenta"];3504 -> 3653[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3504 -> 3654[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3505 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3505[label="compare xuu52000 xuu53000 == LT",fontsize=16,color="magenta"];3505 -> 3655[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3505 -> 3656[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3506 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3506[label="compare xuu52000 xuu53000 == LT",fontsize=16,color="magenta"];3506 -> 3657[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3506 -> 3658[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3507 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3507[label="compare xuu52000 xuu53000 == LT",fontsize=16,color="magenta"];3507 -> 3659[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3507 -> 3660[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3508 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3508[label="compare xuu52000 xuu53000 == LT",fontsize=16,color="magenta"];3508 -> 3661[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3508 -> 3662[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3509[label="xuu210",fontsize=16,color="green",shape="box"];3510[label="True",fontsize=16,color="green",shape="box"];3511 -> 3182[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3511[label="compare (xuu52000 * xuu53001) (xuu53000 * xuu52001)",fontsize=16,color="magenta"];3511 -> 3663[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3511 -> 3664[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3512 -> 1321[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3512[label="compare (xuu52000 * xuu53001) (xuu53000 * xuu52001)",fontsize=16,color="magenta"];3512 -> 3665[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3512 -> 3666[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3513[label="primCmpFloat (Float xuu52000 (Pos xuu520010)) (Float xuu53000 xuu53001)",fontsize=16,color="burlywood",shape="box"];4950[label="xuu53001/Pos xuu530010",fontsize=10,color="white",style="solid",shape="box"];3513 -> 4950[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4950 -> 3667[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4951[label="xuu53001/Neg xuu530010",fontsize=10,color="white",style="solid",shape="box"];3513 -> 4951[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4951 -> 3668[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3514[label="primCmpFloat (Float xuu52000 (Neg xuu520010)) (Float xuu53000 xuu53001)",fontsize=16,color="burlywood",shape="box"];4952[label="xuu53001/Pos xuu530010",fontsize=10,color="white",style="solid",shape="box"];3514 -> 4952[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4952 -> 3669[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4953[label="xuu53001/Neg xuu530010",fontsize=10,color="white",style="solid",shape="box"];3514 -> 4953[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4953 -> 3670[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3515 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3515[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3515 -> 3671[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3515 -> 3672[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3516 -> 2229[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3516[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3516 -> 3673[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3516 -> 3674[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3517 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3517[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3517 -> 3675[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3517 -> 3676[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3518 -> 2227[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3518[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3518 -> 3677[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3518 -> 3678[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3519 -> 2231[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3519[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3519 -> 3679[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3519 -> 3680[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3520 -> 2228[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3520[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3520 -> 3681[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3520 -> 3682[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3521 -> 2225[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3521[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3521 -> 3683[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3521 -> 3684[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3522 -> 2224[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3522[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3522 -> 3685[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3522 -> 3686[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3523 -> 2230[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3523[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3523 -> 3687[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3523 -> 3688[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3524 -> 2223[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3524[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3524 -> 3689[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3524 -> 3690[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3525 -> 2221[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3525[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3525 -> 3691[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3525 -> 3692[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3526 -> 2232[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3526[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3526 -> 3693[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3526 -> 3694[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3527 -> 2222[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3527[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3527 -> 3695[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3527 -> 3696[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3528 -> 2233[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3528[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3528 -> 3697[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3528 -> 3698[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3529 -> 2609[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3529[label="xuu52001 == xuu53001 && xuu52002 <= xuu53002",fontsize=16,color="magenta"];3529 -> 3699[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3529 -> 3700[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3530[label="xuu52001 < xuu53001",fontsize=16,color="blue",shape="box"];4954[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3530 -> 4954[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4954 -> 3701[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4955[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3530 -> 4955[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4955 -> 3702[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4956[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3530 -> 4956[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4956 -> 3703[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4957[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3530 -> 4957[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4957 -> 3704[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4958[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3530 -> 4958[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4958 -> 3705[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4959[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3530 -> 4959[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4959 -> 3706[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4960[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3530 -> 4960[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4960 -> 3707[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4961[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3530 -> 4961[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4961 -> 3708[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4962[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3530 -> 4962[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4962 -> 3709[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4963[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3530 -> 4963[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4963 -> 3710[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4964[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3530 -> 4964[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4964 -> 3711[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4965[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3530 -> 4965[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4965 -> 3712[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4966[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3530 -> 4966[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4966 -> 3713[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4967[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3530 -> 4967[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4967 -> 3714[label="",style="solid", color="blue", weight=3]; 24.03/9.92 3531[label="xuu52000",fontsize=16,color="green",shape="box"];3532[label="xuu53000",fontsize=16,color="green",shape="box"];3533[label="xuu52000",fontsize=16,color="green",shape="box"];3534[label="xuu53000",fontsize=16,color="green",shape="box"];3535[label="xuu52000",fontsize=16,color="green",shape="box"];3536[label="xuu53000",fontsize=16,color="green",shape="box"];3537[label="xuu52000",fontsize=16,color="green",shape="box"];3538[label="xuu53000",fontsize=16,color="green",shape="box"];3539[label="xuu52000",fontsize=16,color="green",shape="box"];3540[label="xuu53000",fontsize=16,color="green",shape="box"];3541[label="xuu52000",fontsize=16,color="green",shape="box"];3542[label="xuu53000",fontsize=16,color="green",shape="box"];3543[label="xuu52000",fontsize=16,color="green",shape="box"];3544[label="xuu53000",fontsize=16,color="green",shape="box"];3545[label="xuu52000",fontsize=16,color="green",shape="box"];3546[label="xuu53000",fontsize=16,color="green",shape="box"];3547[label="xuu52000",fontsize=16,color="green",shape="box"];3548[label="xuu53000",fontsize=16,color="green",shape="box"];3549[label="xuu52000",fontsize=16,color="green",shape="box"];3550[label="xuu53000",fontsize=16,color="green",shape="box"];3551[label="xuu52000",fontsize=16,color="green",shape="box"];3552[label="xuu53000",fontsize=16,color="green",shape="box"];3553[label="xuu52000",fontsize=16,color="green",shape="box"];3554[label="xuu53000",fontsize=16,color="green",shape="box"];3555[label="xuu52000",fontsize=16,color="green",shape="box"];3556[label="xuu53000",fontsize=16,color="green",shape="box"];3557[label="xuu52000",fontsize=16,color="green",shape="box"];3558[label="xuu53000",fontsize=16,color="green",shape="box"];3559 -> 2001[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3559[label="primCmpNat xuu52000 xuu53000",fontsize=16,color="magenta"];3559 -> 3715[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3559 -> 3716[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2010 -> 1844[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2010[label="FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 FiniteMap.EmptyFM xuu44",fontsize=16,color="magenta"];2010 -> 2134[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2011[label="Pos Zero",fontsize=16,color="green",shape="box"];2005[label="primPlusInt xuu552 xuu136",fontsize=16,color="burlywood",shape="triangle"];4968[label="xuu552/Pos xuu5520",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4968[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4968 -> 2030[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4969[label="xuu552/Neg xuu5520",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4969[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4969 -> 2031[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 2012 -> 1844[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2012[label="FiniteMap.mkBalBranch6Size_r (Left xuu400) xuu41 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44",fontsize=16,color="magenta"];2012 -> 2135[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2023[label="FiniteMap.mkBalBranch6MkBalBranch2 (Left xuu400) xuu41 xuu55 xuu44 (Left xuu400) xuu41 xuu55 xuu44 True",fontsize=16,color="black",shape="box"];2023 -> 2136[label="",style="solid", color="black", weight=3]; 24.03/9.92 2024[label="FiniteMap.mkBalBranch6MkBalBranch1 (Left xuu400) xuu41 FiniteMap.EmptyFM xuu44 FiniteMap.EmptyFM xuu44 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2024 -> 2137[label="",style="solid", color="black", weight=3]; 24.03/9.92 2025[label="FiniteMap.mkBalBranch6MkBalBranch1 (Left xuu400) xuu41 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554)",fontsize=16,color="black",shape="box"];2025 -> 2138[label="",style="solid", color="black", weight=3]; 24.03/9.92 2027 -> 1496[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2027[label="FiniteMap.sizeFM xuu443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];2027 -> 2139[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2027 -> 2140[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2026[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu400) xuu41 xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 xuu137",fontsize=16,color="burlywood",shape="triangle"];4970[label="xuu137/False",fontsize=10,color="white",style="solid",shape="box"];2026 -> 4970[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4970 -> 2141[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4971[label="xuu137/True",fontsize=10,color="white",style="solid",shape="box"];2026 -> 4971[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4971 -> 2142[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4367[label="FiniteMap.mkBranchRight_size xuu267 xuu264 xuu266",fontsize=16,color="black",shape="box"];4367 -> 4369[label="",style="solid", color="black", weight=3]; 24.03/9.92 4368[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu267 xuu264 xuu266",fontsize=16,color="black",shape="box"];4368 -> 4370[label="",style="solid", color="black", weight=3]; 24.03/9.92 2015 -> 1846[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2015[label="FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 FiniteMap.EmptyFM xuu44",fontsize=16,color="magenta"];2015 -> 2149[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2016[label="Pos Zero",fontsize=16,color="green",shape="box"];2017 -> 1846[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2017[label="FiniteMap.mkBalBranch6Size_r (Right xuu400) xuu41 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44",fontsize=16,color="magenta"];2017 -> 2150[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2018[label="xuu472",fontsize=16,color="green",shape="box"];2032[label="FiniteMap.mkBalBranch6MkBalBranch2 (Right xuu400) xuu41 xuu47 xuu44 (Right xuu400) xuu41 xuu47 xuu44 True",fontsize=16,color="black",shape="box"];2032 -> 2151[label="",style="solid", color="black", weight=3]; 24.03/9.92 2033[label="FiniteMap.mkBalBranch6MkBalBranch1 (Right xuu400) xuu41 FiniteMap.EmptyFM xuu44 FiniteMap.EmptyFM xuu44 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2033 -> 2152[label="",style="solid", color="black", weight=3]; 24.03/9.92 2034[label="FiniteMap.mkBalBranch6MkBalBranch1 (Right xuu400) xuu41 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474)",fontsize=16,color="black",shape="box"];2034 -> 2153[label="",style="solid", color="black", weight=3]; 24.03/9.92 2036 -> 1496[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2036[label="FiniteMap.sizeFM xuu443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];2036 -> 2154[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2036 -> 2155[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2035[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu400) xuu41 xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 xuu141",fontsize=16,color="burlywood",shape="triangle"];4972[label="xuu141/False",fontsize=10,color="white",style="solid",shape="box"];2035 -> 4972[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4972 -> 2156[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4973[label="xuu141/True",fontsize=10,color="white",style="solid",shape="box"];2035 -> 4973[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4973 -> 2157[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 1891[label="primMulNat (Succ xuu5000000) (Succ xuu400100)",fontsize=16,color="black",shape="box"];1891 -> 2039[label="",style="solid", color="black", weight=3]; 24.03/9.92 1892[label="primMulNat (Succ xuu5000000) Zero",fontsize=16,color="black",shape="box"];1892 -> 2040[label="",style="solid", color="black", weight=3]; 24.03/9.92 1893[label="primMulNat Zero (Succ xuu400100)",fontsize=16,color="black",shape="box"];1893 -> 2041[label="",style="solid", color="black", weight=3]; 24.03/9.92 1894[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1894 -> 2042[label="",style="solid", color="black", weight=3]; 24.03/9.92 1897[label="primCmpInt (Pos (Succ xuu5200)) (Pos xuu530)",fontsize=16,color="black",shape="box"];1897 -> 2043[label="",style="solid", color="black", weight=3]; 24.03/9.92 1898[label="primCmpInt (Pos (Succ xuu5200)) (Neg xuu530)",fontsize=16,color="black",shape="box"];1898 -> 2044[label="",style="solid", color="black", weight=3]; 24.03/9.92 1899[label="primCmpInt (Pos Zero) (Pos xuu530)",fontsize=16,color="burlywood",shape="box"];4974[label="xuu530/Succ xuu5300",fontsize=10,color="white",style="solid",shape="box"];1899 -> 4974[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4974 -> 2045[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4975[label="xuu530/Zero",fontsize=10,color="white",style="solid",shape="box"];1899 -> 4975[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4975 -> 2046[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 1900[label="primCmpInt (Pos Zero) (Neg xuu530)",fontsize=16,color="burlywood",shape="box"];4976[label="xuu530/Succ xuu5300",fontsize=10,color="white",style="solid",shape="box"];1900 -> 4976[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4976 -> 2047[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4977[label="xuu530/Zero",fontsize=10,color="white",style="solid",shape="box"];1900 -> 4977[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4977 -> 2048[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 1901[label="primCmpInt (Neg (Succ xuu5200)) (Pos xuu530)",fontsize=16,color="black",shape="box"];1901 -> 2049[label="",style="solid", color="black", weight=3]; 24.03/9.92 1902[label="primCmpInt (Neg (Succ xuu5200)) (Neg xuu530)",fontsize=16,color="black",shape="box"];1902 -> 2050[label="",style="solid", color="black", weight=3]; 24.03/9.92 1903[label="primCmpInt (Neg Zero) (Pos xuu530)",fontsize=16,color="burlywood",shape="box"];4978[label="xuu530/Succ xuu5300",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4978[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4978 -> 2051[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4979[label="xuu530/Zero",fontsize=10,color="white",style="solid",shape="box"];1903 -> 4979[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4979 -> 2052[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 1904[label="primCmpInt (Neg Zero) (Neg xuu530)",fontsize=16,color="burlywood",shape="box"];4980[label="xuu530/Succ xuu5300",fontsize=10,color="white",style="solid",shape="box"];1904 -> 4980[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4980 -> 2053[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4981[label="xuu530/Zero",fontsize=10,color="white",style="solid",shape="box"];1904 -> 4981[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4981 -> 2054[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3560[label="xuu53001",fontsize=16,color="green",shape="box"];3561[label="xuu52001",fontsize=16,color="green",shape="box"];3562 -> 3717[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3562[label="primCompAux0 xuu211 (compare xuu52000 xuu53000)",fontsize=16,color="magenta"];3562 -> 3718[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3562 -> 3719[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3577[label="primCmpDouble (Double xuu52000 (Pos xuu520010)) (Double xuu53000 (Pos xuu530010))",fontsize=16,color="black",shape="box"];3577 -> 3720[label="",style="solid", color="black", weight=3]; 24.03/9.92 3578[label="primCmpDouble (Double xuu52000 (Pos xuu520010)) (Double xuu53000 (Neg xuu530010))",fontsize=16,color="black",shape="box"];3578 -> 3721[label="",style="solid", color="black", weight=3]; 24.03/9.92 3579[label="primCmpDouble (Double xuu52000 (Neg xuu520010)) (Double xuu53000 (Pos xuu530010))",fontsize=16,color="black",shape="box"];3579 -> 3722[label="",style="solid", color="black", weight=3]; 24.03/9.92 3580[label="primCmpDouble (Double xuu52000 (Neg xuu520010)) (Double xuu53000 (Neg xuu530010))",fontsize=16,color="black",shape="box"];3580 -> 3723[label="",style="solid", color="black", weight=3]; 24.03/9.92 3581[label="xuu52000",fontsize=16,color="green",shape="box"];3582[label="xuu53000",fontsize=16,color="green",shape="box"];3583[label="xuu52000",fontsize=16,color="green",shape="box"];3584[label="xuu53000",fontsize=16,color="green",shape="box"];3585[label="xuu52000",fontsize=16,color="green",shape="box"];3586[label="xuu53000",fontsize=16,color="green",shape="box"];3587[label="xuu52000",fontsize=16,color="green",shape="box"];3588[label="xuu53000",fontsize=16,color="green",shape="box"];3589[label="xuu52000",fontsize=16,color="green",shape="box"];3590[label="xuu53000",fontsize=16,color="green",shape="box"];3591[label="xuu52000",fontsize=16,color="green",shape="box"];3592[label="xuu53000",fontsize=16,color="green",shape="box"];3593[label="xuu52000",fontsize=16,color="green",shape="box"];3594[label="xuu53000",fontsize=16,color="green",shape="box"];3595[label="xuu52000",fontsize=16,color="green",shape="box"];3596[label="xuu53000",fontsize=16,color="green",shape="box"];3597[label="xuu52000",fontsize=16,color="green",shape="box"];3598[label="xuu53000",fontsize=16,color="green",shape="box"];3599[label="xuu52000",fontsize=16,color="green",shape="box"];3600[label="xuu53000",fontsize=16,color="green",shape="box"];3601[label="xuu52000",fontsize=16,color="green",shape="box"];3602[label="xuu53000",fontsize=16,color="green",shape="box"];3603[label="xuu52000",fontsize=16,color="green",shape="box"];3604[label="xuu53000",fontsize=16,color="green",shape="box"];3605[label="xuu52000",fontsize=16,color="green",shape="box"];3606[label="xuu53000",fontsize=16,color="green",shape="box"];3607[label="xuu52000",fontsize=16,color="green",shape="box"];3608[label="xuu53000",fontsize=16,color="green",shape="box"];3609[label="xuu53001",fontsize=16,color="green",shape="box"];3610[label="xuu52001",fontsize=16,color="green",shape="box"];3611[label="xuu53001",fontsize=16,color="green",shape="box"];3612[label="xuu52001",fontsize=16,color="green",shape="box"];3613[label="xuu53001",fontsize=16,color="green",shape="box"];3614[label="xuu52001",fontsize=16,color="green",shape="box"];3615[label="xuu53001",fontsize=16,color="green",shape="box"];3616[label="xuu52001",fontsize=16,color="green",shape="box"];3617[label="xuu53001",fontsize=16,color="green",shape="box"];3618[label="xuu52001",fontsize=16,color="green",shape="box"];3619[label="xuu53001",fontsize=16,color="green",shape="box"];3620[label="xuu52001",fontsize=16,color="green",shape="box"];3621[label="xuu53001",fontsize=16,color="green",shape="box"];3622[label="xuu52001",fontsize=16,color="green",shape="box"];3623[label="xuu53001",fontsize=16,color="green",shape="box"];3624[label="xuu52001",fontsize=16,color="green",shape="box"];3625[label="xuu53001",fontsize=16,color="green",shape="box"];3626[label="xuu52001",fontsize=16,color="green",shape="box"];3627[label="xuu53001",fontsize=16,color="green",shape="box"];3628[label="xuu52001",fontsize=16,color="green",shape="box"];3629[label="xuu53001",fontsize=16,color="green",shape="box"];3630[label="xuu52001",fontsize=16,color="green",shape="box"];3631[label="xuu53001",fontsize=16,color="green",shape="box"];3632[label="xuu52001",fontsize=16,color="green",shape="box"];3633[label="xuu53001",fontsize=16,color="green",shape="box"];3634[label="xuu52001",fontsize=16,color="green",shape="box"];3635[label="xuu53001",fontsize=16,color="green",shape="box"];3636[label="xuu52001",fontsize=16,color="green",shape="box"];3637[label="compare xuu52000 xuu53000",fontsize=16,color="black",shape="triangle"];3637 -> 3724[label="",style="solid", color="black", weight=3]; 24.03/9.92 3638[label="LT",fontsize=16,color="green",shape="box"];3639 -> 3182[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3639[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3639 -> 3725[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3639 -> 3726[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3640[label="LT",fontsize=16,color="green",shape="box"];1569 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1569[label="compare xuu520 xuu530 == LT",fontsize=16,color="magenta"];1569 -> 1703[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1569 -> 1704[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3641 -> 3184[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3641[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3641 -> 3727[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3641 -> 3728[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3642[label="LT",fontsize=16,color="green",shape="box"];3643[label="compare xuu52000 xuu53000",fontsize=16,color="black",shape="triangle"];3643 -> 3729[label="",style="solid", color="black", weight=3]; 24.03/9.92 3644[label="LT",fontsize=16,color="green",shape="box"];3645[label="compare xuu52000 xuu53000",fontsize=16,color="black",shape="triangle"];3645 -> 3730[label="",style="solid", color="black", weight=3]; 24.03/9.92 3646[label="LT",fontsize=16,color="green",shape="box"];3647 -> 3185[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3647[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3647 -> 3731[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3647 -> 3732[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3648[label="LT",fontsize=16,color="green",shape="box"];3649[label="compare xuu52000 xuu53000",fontsize=16,color="black",shape="triangle"];3649 -> 3733[label="",style="solid", color="black", weight=3]; 24.03/9.92 3650[label="LT",fontsize=16,color="green",shape="box"];3651[label="compare xuu52000 xuu53000",fontsize=16,color="black",shape="triangle"];3651 -> 3734[label="",style="solid", color="black", weight=3]; 24.03/9.92 3652[label="LT",fontsize=16,color="green",shape="box"];3653 -> 3186[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3653[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3653 -> 3735[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3653 -> 3736[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3654[label="LT",fontsize=16,color="green",shape="box"];3655 -> 3187[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3655[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3655 -> 3737[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3655 -> 3738[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3656[label="LT",fontsize=16,color="green",shape="box"];3657 -> 3188[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3657[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3657 -> 3739[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3657 -> 3740[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3658[label="LT",fontsize=16,color="green",shape="box"];3659[label="compare xuu52000 xuu53000",fontsize=16,color="black",shape="triangle"];3659 -> 3741[label="",style="solid", color="black", weight=3]; 24.03/9.92 3660[label="LT",fontsize=16,color="green",shape="box"];3661 -> 3189[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3661[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3661 -> 3742[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3661 -> 3743[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3662[label="LT",fontsize=16,color="green",shape="box"];3663[label="xuu53000 * xuu52001",fontsize=16,color="burlywood",shape="triangle"];4982[label="xuu53000/Integer xuu530000",fontsize=10,color="white",style="solid",shape="box"];3663 -> 4982[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 4982 -> 3744[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3664 -> 3663[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3664[label="xuu52000 * xuu53001",fontsize=16,color="magenta"];3664 -> 3745[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3664 -> 3746[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3665 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3665[label="xuu53000 * xuu52001",fontsize=16,color="magenta"];3665 -> 3747[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3665 -> 3748[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3666 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3666[label="xuu52000 * xuu53001",fontsize=16,color="magenta"];3666 -> 3749[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3666 -> 3750[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3667[label="primCmpFloat (Float xuu52000 (Pos xuu520010)) (Float xuu53000 (Pos xuu530010))",fontsize=16,color="black",shape="box"];3667 -> 3751[label="",style="solid", color="black", weight=3]; 24.03/9.92 3668[label="primCmpFloat (Float xuu52000 (Pos xuu520010)) (Float xuu53000 (Neg xuu530010))",fontsize=16,color="black",shape="box"];3668 -> 3752[label="",style="solid", color="black", weight=3]; 24.03/9.92 3669[label="primCmpFloat (Float xuu52000 (Neg xuu520010)) (Float xuu53000 (Pos xuu530010))",fontsize=16,color="black",shape="box"];3669 -> 3753[label="",style="solid", color="black", weight=3]; 24.03/9.92 3670[label="primCmpFloat (Float xuu52000 (Neg xuu520010)) (Float xuu53000 (Neg xuu530010))",fontsize=16,color="black",shape="box"];3670 -> 3754[label="",style="solid", color="black", weight=3]; 24.03/9.92 3671[label="xuu52000",fontsize=16,color="green",shape="box"];3672[label="xuu53000",fontsize=16,color="green",shape="box"];3673[label="xuu52000",fontsize=16,color="green",shape="box"];3674[label="xuu53000",fontsize=16,color="green",shape="box"];3675[label="xuu52000",fontsize=16,color="green",shape="box"];3676[label="xuu53000",fontsize=16,color="green",shape="box"];3677[label="xuu52000",fontsize=16,color="green",shape="box"];3678[label="xuu53000",fontsize=16,color="green",shape="box"];3679[label="xuu52000",fontsize=16,color="green",shape="box"];3680[label="xuu53000",fontsize=16,color="green",shape="box"];3681[label="xuu52000",fontsize=16,color="green",shape="box"];3682[label="xuu53000",fontsize=16,color="green",shape="box"];3683[label="xuu52000",fontsize=16,color="green",shape="box"];3684[label="xuu53000",fontsize=16,color="green",shape="box"];3685[label="xuu52000",fontsize=16,color="green",shape="box"];3686[label="xuu53000",fontsize=16,color="green",shape="box"];3687[label="xuu52000",fontsize=16,color="green",shape="box"];3688[label="xuu53000",fontsize=16,color="green",shape="box"];3689[label="xuu52000",fontsize=16,color="green",shape="box"];3690[label="xuu53000",fontsize=16,color="green",shape="box"];3691[label="xuu52000",fontsize=16,color="green",shape="box"];3692[label="xuu53000",fontsize=16,color="green",shape="box"];3693[label="xuu52000",fontsize=16,color="green",shape="box"];3694[label="xuu53000",fontsize=16,color="green",shape="box"];3695[label="xuu52000",fontsize=16,color="green",shape="box"];3696[label="xuu53000",fontsize=16,color="green",shape="box"];3697[label="xuu52000",fontsize=16,color="green",shape="box"];3698[label="xuu53000",fontsize=16,color="green",shape="box"];3699[label="xuu52001 == xuu53001",fontsize=16,color="blue",shape="box"];4983[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3699 -> 4983[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4983 -> 3755[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4984[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3699 -> 4984[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4984 -> 3756[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4985[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3699 -> 4985[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4985 -> 3757[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4986[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3699 -> 4986[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4986 -> 3758[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4987[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3699 -> 4987[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4987 -> 3759[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4988[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3699 -> 4988[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4988 -> 3760[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4989[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3699 -> 4989[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4989 -> 3761[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4990[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3699 -> 4990[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4990 -> 3762[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4991[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3699 -> 4991[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4991 -> 3763[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4992[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3699 -> 4992[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4992 -> 3764[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4993[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3699 -> 4993[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4993 -> 3765[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4994[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3699 -> 4994[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4994 -> 3766[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4995[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3699 -> 4995[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4995 -> 3767[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4996[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3699 -> 4996[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4996 -> 3768[label="",style="solid", color="blue", weight=3]; 24.03/9.92 3700[label="xuu52002 <= xuu53002",fontsize=16,color="blue",shape="box"];4997[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3700 -> 4997[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4997 -> 3769[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4998[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3700 -> 4998[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4998 -> 3770[label="",style="solid", color="blue", weight=3]; 24.03/9.92 4999[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3700 -> 4999[label="",style="solid", color="blue", weight=9]; 24.03/9.92 4999 -> 3771[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5000[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3700 -> 5000[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5000 -> 3772[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5001[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3700 -> 5001[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5001 -> 3773[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5002[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3700 -> 5002[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5002 -> 3774[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5003[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3700 -> 5003[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5003 -> 3775[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5004[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3700 -> 5004[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5004 -> 3776[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5005[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3700 -> 5005[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5005 -> 3777[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5006[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3700 -> 5006[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5006 -> 3778[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5007[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3700 -> 5007[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5007 -> 3779[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5008[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3700 -> 5008[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5008 -> 3780[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5009[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3700 -> 5009[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5009 -> 3781[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5010[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3700 -> 5010[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5010 -> 3782[label="",style="solid", color="blue", weight=3]; 24.03/9.92 3701 -> 3421[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3701[label="xuu52001 < xuu53001",fontsize=16,color="magenta"];3701 -> 3783[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3701 -> 3784[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3702 -> 3422[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3702[label="xuu52001 < xuu53001",fontsize=16,color="magenta"];3702 -> 3785[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3702 -> 3786[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3703 -> 1496[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3703[label="xuu52001 < xuu53001",fontsize=16,color="magenta"];3703 -> 3787[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3703 -> 3788[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3704 -> 3424[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3704[label="xuu52001 < xuu53001",fontsize=16,color="magenta"];3704 -> 3789[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3704 -> 3790[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3705 -> 3425[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3705[label="xuu52001 < xuu53001",fontsize=16,color="magenta"];3705 -> 3791[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3705 -> 3792[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3706 -> 3426[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3706[label="xuu52001 < xuu53001",fontsize=16,color="magenta"];3706 -> 3793[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3706 -> 3794[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3707 -> 3427[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3707[label="xuu52001 < xuu53001",fontsize=16,color="magenta"];3707 -> 3795[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3707 -> 3796[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3708 -> 3428[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3708[label="xuu52001 < xuu53001",fontsize=16,color="magenta"];3708 -> 3797[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3708 -> 3798[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3709 -> 3429[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3709[label="xuu52001 < xuu53001",fontsize=16,color="magenta"];3709 -> 3799[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3709 -> 3800[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3710 -> 3430[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3710[label="xuu52001 < xuu53001",fontsize=16,color="magenta"];3710 -> 3801[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3710 -> 3802[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3711 -> 3431[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3711[label="xuu52001 < xuu53001",fontsize=16,color="magenta"];3711 -> 3803[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3711 -> 3804[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3712 -> 3432[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3712[label="xuu52001 < xuu53001",fontsize=16,color="magenta"];3712 -> 3805[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3712 -> 3806[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3713 -> 3433[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3713[label="xuu52001 < xuu53001",fontsize=16,color="magenta"];3713 -> 3807[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3713 -> 3808[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3714 -> 3434[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3714[label="xuu52001 < xuu53001",fontsize=16,color="magenta"];3714 -> 3809[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3714 -> 3810[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3715[label="xuu53000",fontsize=16,color="green",shape="box"];3716[label="xuu52000",fontsize=16,color="green",shape="box"];2001[label="primCmpNat xuu520 xuu530",fontsize=16,color="burlywood",shape="triangle"];5011[label="xuu520/Succ xuu5200",fontsize=10,color="white",style="solid",shape="box"];2001 -> 5011[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5011 -> 2132[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5012[label="xuu520/Zero",fontsize=10,color="white",style="solid",shape="box"];2001 -> 5012[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5012 -> 2133[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 2134[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];2030[label="primPlusInt (Pos xuu5520) xuu136",fontsize=16,color="burlywood",shape="box"];5013[label="xuu136/Pos xuu1360",fontsize=10,color="white",style="solid",shape="box"];2030 -> 5013[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5013 -> 2145[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5014[label="xuu136/Neg xuu1360",fontsize=10,color="white",style="solid",shape="box"];2030 -> 5014[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5014 -> 2146[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 2031[label="primPlusInt (Neg xuu5520) xuu136",fontsize=16,color="burlywood",shape="box"];5015[label="xuu136/Pos xuu1360",fontsize=10,color="white",style="solid",shape="box"];2031 -> 5015[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5015 -> 2147[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5016[label="xuu136/Neg xuu1360",fontsize=10,color="white",style="solid",shape="box"];2031 -> 5016[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5016 -> 2148[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 2135[label="FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554",fontsize=16,color="green",shape="box"];2136 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2136[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (Left xuu400) xuu41 xuu55 xuu44",fontsize=16,color="magenta"];2136 -> 4172[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2136 -> 4173[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2136 -> 4174[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2136 -> 4175[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2136 -> 4176[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2137[label="error []",fontsize=16,color="red",shape="box"];2138[label="FiniteMap.mkBalBranch6MkBalBranch12 (Left xuu400) xuu41 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554)",fontsize=16,color="black",shape="box"];2138 -> 2256[label="",style="solid", color="black", weight=3]; 24.03/9.92 2139 -> 1854[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2139[label="FiniteMap.sizeFM xuu443",fontsize=16,color="magenta"];2139 -> 2257[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2140 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2140[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];2140 -> 2258[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2140 -> 2259[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2141[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu400) xuu41 xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 False",fontsize=16,color="black",shape="box"];2141 -> 2260[label="",style="solid", color="black", weight=3]; 24.03/9.92 2142[label="FiniteMap.mkBalBranch6MkBalBranch01 (Left xuu400) xuu41 xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 True",fontsize=16,color="black",shape="box"];2142 -> 2261[label="",style="solid", color="black", weight=3]; 24.03/9.92 4369[label="FiniteMap.sizeFM xuu267",fontsize=16,color="burlywood",shape="triangle"];5017[label="xuu267/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4369 -> 5017[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5017 -> 4371[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5018[label="xuu267/FiniteMap.Branch xuu2670 xuu2671 xuu2672 xuu2673 xuu2674",fontsize=10,color="white",style="solid",shape="box"];4369 -> 5018[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5018 -> 4372[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4370 -> 2005[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4370[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu267 xuu264 xuu266)",fontsize=16,color="magenta"];4370 -> 4373[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4370 -> 4374[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2149[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];2150[label="FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474",fontsize=16,color="green",shape="box"];2151 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2151[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (Right xuu400) xuu41 xuu47 xuu44",fontsize=16,color="magenta"];2151 -> 4177[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2151 -> 4178[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2151 -> 4179[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2151 -> 4180[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2151 -> 4181[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2152[label="error []",fontsize=16,color="red",shape="box"];2153[label="FiniteMap.mkBalBranch6MkBalBranch12 (Right xuu400) xuu41 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474)",fontsize=16,color="black",shape="box"];2153 -> 2268[label="",style="solid", color="black", weight=3]; 24.03/9.92 2154 -> 1854[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2154[label="FiniteMap.sizeFM xuu443",fontsize=16,color="magenta"];2154 -> 2269[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2155 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2155[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];2155 -> 2270[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2155 -> 2271[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2156[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu400) xuu41 xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 False",fontsize=16,color="black",shape="box"];2156 -> 2272[label="",style="solid", color="black", weight=3]; 24.03/9.92 2157[label="FiniteMap.mkBalBranch6MkBalBranch01 (Right xuu400) xuu41 xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 True",fontsize=16,color="black",shape="box"];2157 -> 2273[label="",style="solid", color="black", weight=3]; 24.03/9.92 2039 -> 2160[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2039[label="primPlusNat (primMulNat xuu5000000 (Succ xuu400100)) (Succ xuu400100)",fontsize=16,color="magenta"];2039 -> 2161[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2040[label="Zero",fontsize=16,color="green",shape="box"];2041[label="Zero",fontsize=16,color="green",shape="box"];2042[label="Zero",fontsize=16,color="green",shape="box"];2043 -> 2001[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2043[label="primCmpNat (Succ xuu5200) xuu530",fontsize=16,color="magenta"];2043 -> 2162[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2043 -> 2163[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2044[label="GT",fontsize=16,color="green",shape="box"];2045[label="primCmpInt (Pos Zero) (Pos (Succ xuu5300))",fontsize=16,color="black",shape="box"];2045 -> 2164[label="",style="solid", color="black", weight=3]; 24.03/9.92 2046[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2046 -> 2165[label="",style="solid", color="black", weight=3]; 24.03/9.92 2047[label="primCmpInt (Pos Zero) (Neg (Succ xuu5300))",fontsize=16,color="black",shape="box"];2047 -> 2166[label="",style="solid", color="black", weight=3]; 24.03/9.92 2048[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2048 -> 2167[label="",style="solid", color="black", weight=3]; 24.03/9.92 2049[label="LT",fontsize=16,color="green",shape="box"];2050 -> 2001[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2050[label="primCmpNat xuu530 (Succ xuu5200)",fontsize=16,color="magenta"];2050 -> 2168[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2050 -> 2169[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2051[label="primCmpInt (Neg Zero) (Pos (Succ xuu5300))",fontsize=16,color="black",shape="box"];2051 -> 2170[label="",style="solid", color="black", weight=3]; 24.03/9.92 2052[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2052 -> 2171[label="",style="solid", color="black", weight=3]; 24.03/9.92 2053[label="primCmpInt (Neg Zero) (Neg (Succ xuu5300))",fontsize=16,color="black",shape="box"];2053 -> 2172[label="",style="solid", color="black", weight=3]; 24.03/9.92 2054[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2054 -> 2173[label="",style="solid", color="black", weight=3]; 24.03/9.92 3718[label="xuu211",fontsize=16,color="green",shape="box"];3719[label="compare xuu52000 xuu53000",fontsize=16,color="blue",shape="box"];5019[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3719 -> 5019[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5019 -> 3811[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5020[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3719 -> 5020[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5020 -> 3812[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5021[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3719 -> 5021[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5021 -> 3813[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5022[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3719 -> 5022[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5022 -> 3814[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5023[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3719 -> 5023[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5023 -> 3815[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5024[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3719 -> 5024[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5024 -> 3816[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5025[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3719 -> 5025[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5025 -> 3817[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5026[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3719 -> 5026[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5026 -> 3818[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5027[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3719 -> 5027[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5027 -> 3819[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5028[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3719 -> 5028[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5028 -> 3820[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5029[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3719 -> 5029[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5029 -> 3821[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5030[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3719 -> 5030[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5030 -> 3822[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5031[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3719 -> 5031[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5031 -> 3823[label="",style="solid", color="blue", weight=3]; 24.03/9.92 5032[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3719 -> 5032[label="",style="solid", color="blue", weight=9]; 24.03/9.92 5032 -> 3824[label="",style="solid", color="blue", weight=3]; 24.03/9.92 3717[label="primCompAux0 xuu224 xuu225",fontsize=16,color="burlywood",shape="triangle"];5033[label="xuu225/LT",fontsize=10,color="white",style="solid",shape="box"];3717 -> 5033[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5033 -> 3825[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5034[label="xuu225/EQ",fontsize=10,color="white",style="solid",shape="box"];3717 -> 5034[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5034 -> 3826[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5035[label="xuu225/GT",fontsize=10,color="white",style="solid",shape="box"];3717 -> 5035[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5035 -> 3827[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3720 -> 1321[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3720[label="compare (xuu52000 * Pos xuu530010) (Pos xuu520010 * xuu53000)",fontsize=16,color="magenta"];3720 -> 3852[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3720 -> 3853[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3721 -> 1321[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3721[label="compare (xuu52000 * Pos xuu530010) (Neg xuu520010 * xuu53000)",fontsize=16,color="magenta"];3721 -> 3854[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3721 -> 3855[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3722 -> 1321[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3722[label="compare (xuu52000 * Neg xuu530010) (Pos xuu520010 * xuu53000)",fontsize=16,color="magenta"];3722 -> 3856[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3722 -> 3857[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3723 -> 1321[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3723[label="compare (xuu52000 * Neg xuu530010) (Neg xuu520010 * xuu53000)",fontsize=16,color="magenta"];3723 -> 3858[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3723 -> 3859[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3724[label="compare3 xuu52000 xuu53000",fontsize=16,color="black",shape="box"];3724 -> 3860[label="",style="solid", color="black", weight=3]; 24.03/9.92 3725[label="xuu53000",fontsize=16,color="green",shape="box"];3726[label="xuu52000",fontsize=16,color="green",shape="box"];1703 -> 1321[label="",style="dashed", color="red", weight=0]; 24.03/9.92 1703[label="compare xuu520 xuu530",fontsize=16,color="magenta"];1703 -> 1922[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1703 -> 1923[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1704[label="LT",fontsize=16,color="green",shape="box"];3727[label="xuu53000",fontsize=16,color="green",shape="box"];3728[label="xuu52000",fontsize=16,color="green",shape="box"];3729[label="compare3 xuu52000 xuu53000",fontsize=16,color="black",shape="box"];3729 -> 3861[label="",style="solid", color="black", weight=3]; 24.03/9.92 3730[label="compare3 xuu52000 xuu53000",fontsize=16,color="black",shape="box"];3730 -> 3862[label="",style="solid", color="black", weight=3]; 24.03/9.92 3731[label="xuu53000",fontsize=16,color="green",shape="box"];3732[label="xuu52000",fontsize=16,color="green",shape="box"];3733[label="compare3 xuu52000 xuu53000",fontsize=16,color="black",shape="box"];3733 -> 3863[label="",style="solid", color="black", weight=3]; 24.03/9.92 3734[label="compare3 xuu52000 xuu53000",fontsize=16,color="black",shape="box"];3734 -> 3864[label="",style="solid", color="black", weight=3]; 24.03/9.92 3735[label="xuu53000",fontsize=16,color="green",shape="box"];3736[label="xuu52000",fontsize=16,color="green",shape="box"];3737[label="xuu53000",fontsize=16,color="green",shape="box"];3738[label="xuu52000",fontsize=16,color="green",shape="box"];3739[label="xuu53000",fontsize=16,color="green",shape="box"];3740[label="xuu52000",fontsize=16,color="green",shape="box"];3741[label="compare3 xuu52000 xuu53000",fontsize=16,color="black",shape="box"];3741 -> 3865[label="",style="solid", color="black", weight=3]; 24.03/9.92 3742[label="xuu53000",fontsize=16,color="green",shape="box"];3743[label="xuu52000",fontsize=16,color="green",shape="box"];3744[label="Integer xuu530000 * xuu52001",fontsize=16,color="burlywood",shape="box"];5036[label="xuu52001/Integer xuu520010",fontsize=10,color="white",style="solid",shape="box"];3744 -> 5036[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5036 -> 3866[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3745[label="xuu52000",fontsize=16,color="green",shape="box"];3746[label="xuu53001",fontsize=16,color="green",shape="box"];3747[label="xuu53000",fontsize=16,color="green",shape="box"];3748[label="xuu52001",fontsize=16,color="green",shape="box"];3749[label="xuu52000",fontsize=16,color="green",shape="box"];3750[label="xuu53001",fontsize=16,color="green",shape="box"];3751 -> 1321[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3751[label="compare (xuu52000 * Pos xuu530010) (Pos xuu520010 * xuu53000)",fontsize=16,color="magenta"];3751 -> 3867[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3751 -> 3868[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3752 -> 1321[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3752[label="compare (xuu52000 * Pos xuu530010) (Neg xuu520010 * xuu53000)",fontsize=16,color="magenta"];3752 -> 3869[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3752 -> 3870[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3753 -> 1321[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3753[label="compare (xuu52000 * Neg xuu530010) (Pos xuu520010 * xuu53000)",fontsize=16,color="magenta"];3753 -> 3871[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3753 -> 3872[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3754 -> 1321[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3754[label="compare (xuu52000 * Neg xuu530010) (Neg xuu520010 * xuu53000)",fontsize=16,color="magenta"];3754 -> 3873[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3754 -> 3874[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3755 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3755[label="xuu52001 == xuu53001",fontsize=16,color="magenta"];3755 -> 3875[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3755 -> 3876[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3756 -> 2229[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3756[label="xuu52001 == xuu53001",fontsize=16,color="magenta"];3756 -> 3877[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3756 -> 3878[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3757 -> 2226[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3757[label="xuu52001 == xuu53001",fontsize=16,color="magenta"];3757 -> 3879[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3757 -> 3880[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3758 -> 2227[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3758[label="xuu52001 == xuu53001",fontsize=16,color="magenta"];3758 -> 3881[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3758 -> 3882[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3759 -> 2231[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3759[label="xuu52001 == xuu53001",fontsize=16,color="magenta"];3759 -> 3883[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3759 -> 3884[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3760 -> 2228[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3760[label="xuu52001 == xuu53001",fontsize=16,color="magenta"];3760 -> 3885[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3760 -> 3886[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3761 -> 2225[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3761[label="xuu52001 == xuu53001",fontsize=16,color="magenta"];3761 -> 3887[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3761 -> 3888[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3762 -> 2224[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3762[label="xuu52001 == xuu53001",fontsize=16,color="magenta"];3762 -> 3889[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3762 -> 3890[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3763 -> 2230[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3763[label="xuu52001 == xuu53001",fontsize=16,color="magenta"];3763 -> 3891[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3763 -> 3892[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3764 -> 2223[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3764[label="xuu52001 == xuu53001",fontsize=16,color="magenta"];3764 -> 3893[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3764 -> 3894[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3765 -> 2221[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3765[label="xuu52001 == xuu53001",fontsize=16,color="magenta"];3765 -> 3895[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3765 -> 3896[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3766 -> 2232[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3766[label="xuu52001 == xuu53001",fontsize=16,color="magenta"];3766 -> 3897[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3766 -> 3898[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3767 -> 2222[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3767[label="xuu52001 == xuu53001",fontsize=16,color="magenta"];3767 -> 3899[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3767 -> 3900[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3768 -> 2233[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3768[label="xuu52001 == xuu53001",fontsize=16,color="magenta"];3768 -> 3901[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3768 -> 3902[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3769 -> 2973[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3769[label="xuu52002 <= xuu53002",fontsize=16,color="magenta"];3769 -> 3903[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3769 -> 3904[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3770 -> 2974[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3770[label="xuu52002 <= xuu53002",fontsize=16,color="magenta"];3770 -> 3905[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3770 -> 3906[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3771 -> 2975[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3771[label="xuu52002 <= xuu53002",fontsize=16,color="magenta"];3771 -> 3907[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3771 -> 3908[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3772 -> 2976[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3772[label="xuu52002 <= xuu53002",fontsize=16,color="magenta"];3772 -> 3909[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3772 -> 3910[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3773 -> 2977[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3773[label="xuu52002 <= xuu53002",fontsize=16,color="magenta"];3773 -> 3911[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3773 -> 3912[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3774 -> 2978[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3774[label="xuu52002 <= xuu53002",fontsize=16,color="magenta"];3774 -> 3913[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3774 -> 3914[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3775 -> 2979[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3775[label="xuu52002 <= xuu53002",fontsize=16,color="magenta"];3775 -> 3915[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3775 -> 3916[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3776 -> 2980[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3776[label="xuu52002 <= xuu53002",fontsize=16,color="magenta"];3776 -> 3917[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3776 -> 3918[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3777 -> 2981[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3777[label="xuu52002 <= xuu53002",fontsize=16,color="magenta"];3777 -> 3919[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3777 -> 3920[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3778 -> 2982[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3778[label="xuu52002 <= xuu53002",fontsize=16,color="magenta"];3778 -> 3921[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3778 -> 3922[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3779 -> 2983[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3779[label="xuu52002 <= xuu53002",fontsize=16,color="magenta"];3779 -> 3923[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3779 -> 3924[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3780 -> 2984[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3780[label="xuu52002 <= xuu53002",fontsize=16,color="magenta"];3780 -> 3925[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3780 -> 3926[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3781 -> 2985[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3781[label="xuu52002 <= xuu53002",fontsize=16,color="magenta"];3781 -> 3927[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3781 -> 3928[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3782 -> 2986[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3782[label="xuu52002 <= xuu53002",fontsize=16,color="magenta"];3782 -> 3929[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3782 -> 3930[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3783[label="xuu52001",fontsize=16,color="green",shape="box"];3784[label="xuu53001",fontsize=16,color="green",shape="box"];3785[label="xuu52001",fontsize=16,color="green",shape="box"];3786[label="xuu53001",fontsize=16,color="green",shape="box"];3787[label="xuu52001",fontsize=16,color="green",shape="box"];3788[label="xuu53001",fontsize=16,color="green",shape="box"];3789[label="xuu52001",fontsize=16,color="green",shape="box"];3790[label="xuu53001",fontsize=16,color="green",shape="box"];3791[label="xuu52001",fontsize=16,color="green",shape="box"];3792[label="xuu53001",fontsize=16,color="green",shape="box"];3793[label="xuu52001",fontsize=16,color="green",shape="box"];3794[label="xuu53001",fontsize=16,color="green",shape="box"];3795[label="xuu52001",fontsize=16,color="green",shape="box"];3796[label="xuu53001",fontsize=16,color="green",shape="box"];3797[label="xuu52001",fontsize=16,color="green",shape="box"];3798[label="xuu53001",fontsize=16,color="green",shape="box"];3799[label="xuu52001",fontsize=16,color="green",shape="box"];3800[label="xuu53001",fontsize=16,color="green",shape="box"];3801[label="xuu52001",fontsize=16,color="green",shape="box"];3802[label="xuu53001",fontsize=16,color="green",shape="box"];3803[label="xuu52001",fontsize=16,color="green",shape="box"];3804[label="xuu53001",fontsize=16,color="green",shape="box"];3805[label="xuu52001",fontsize=16,color="green",shape="box"];3806[label="xuu53001",fontsize=16,color="green",shape="box"];3807[label="xuu52001",fontsize=16,color="green",shape="box"];3808[label="xuu53001",fontsize=16,color="green",shape="box"];3809[label="xuu52001",fontsize=16,color="green",shape="box"];3810[label="xuu53001",fontsize=16,color="green",shape="box"];2132[label="primCmpNat (Succ xuu5200) xuu530",fontsize=16,color="burlywood",shape="box"];5037[label="xuu530/Succ xuu5300",fontsize=10,color="white",style="solid",shape="box"];2132 -> 5037[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5037 -> 2279[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5038[label="xuu530/Zero",fontsize=10,color="white",style="solid",shape="box"];2132 -> 5038[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5038 -> 2280[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 2133[label="primCmpNat Zero xuu530",fontsize=16,color="burlywood",shape="box"];5039[label="xuu530/Succ xuu5300",fontsize=10,color="white",style="solid",shape="box"];2133 -> 5039[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5039 -> 2281[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5040[label="xuu530/Zero",fontsize=10,color="white",style="solid",shape="box"];2133 -> 5040[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5040 -> 2282[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 2145[label="primPlusInt (Pos xuu5520) (Pos xuu1360)",fontsize=16,color="black",shape="box"];2145 -> 2263[label="",style="solid", color="black", weight=3]; 24.03/9.92 2146[label="primPlusInt (Pos xuu5520) (Neg xuu1360)",fontsize=16,color="black",shape="box"];2146 -> 2264[label="",style="solid", color="black", weight=3]; 24.03/9.92 2147[label="primPlusInt (Neg xuu5520) (Pos xuu1360)",fontsize=16,color="black",shape="box"];2147 -> 2265[label="",style="solid", color="black", weight=3]; 24.03/9.92 2148[label="primPlusInt (Neg xuu5520) (Neg xuu1360)",fontsize=16,color="black",shape="box"];2148 -> 2266[label="",style="solid", color="black", weight=3]; 24.03/9.92 4172[label="Left xuu400",fontsize=16,color="green",shape="box"];4173[label="xuu44",fontsize=16,color="green",shape="box"];4174[label="Succ Zero",fontsize=16,color="green",shape="box"];4175[label="xuu55",fontsize=16,color="green",shape="box"];4176[label="xuu41",fontsize=16,color="green",shape="box"];2256 -> 2362[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2256[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu400) xuu41 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 xuu550 xuu551 xuu552 xuu553 xuu554 (FiniteMap.sizeFM xuu554 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu553)",fontsize=16,color="magenta"];2256 -> 2363[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2257[label="xuu443",fontsize=16,color="green",shape="box"];2258[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2259 -> 1854[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2259[label="FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];2259 -> 2448[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2260[label="FiniteMap.mkBalBranch6MkBalBranch00 (Left xuu400) xuu41 xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 otherwise",fontsize=16,color="black",shape="box"];2260 -> 2449[label="",style="solid", color="black", weight=3]; 24.03/9.92 2261[label="FiniteMap.mkBalBranch6Single_L (Left xuu400) xuu41 xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];2261 -> 2450[label="",style="solid", color="black", weight=3]; 24.03/9.92 4371[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4371 -> 4375[label="",style="solid", color="black", weight=3]; 24.03/9.92 4372[label="FiniteMap.sizeFM (FiniteMap.Branch xuu2670 xuu2671 xuu2672 xuu2673 xuu2674)",fontsize=16,color="black",shape="box"];4372 -> 4376[label="",style="solid", color="black", weight=3]; 24.03/9.92 4373[label="FiniteMap.mkBranchLeft_size xuu267 xuu264 xuu266",fontsize=16,color="black",shape="box"];4373 -> 4377[label="",style="solid", color="black", weight=3]; 24.03/9.92 4374[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];4177[label="Right xuu400",fontsize=16,color="green",shape="box"];4178[label="xuu44",fontsize=16,color="green",shape="box"];4179[label="Succ Zero",fontsize=16,color="green",shape="box"];4180[label="xuu47",fontsize=16,color="green",shape="box"];4181[label="xuu41",fontsize=16,color="green",shape="box"];2268 -> 2458[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2268[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu400) xuu41 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 xuu470 xuu471 xuu472 xuu473 xuu474 (FiniteMap.sizeFM xuu474 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu473)",fontsize=16,color="magenta"];2268 -> 2459[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2269[label="xuu443",fontsize=16,color="green",shape="box"];2270[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2271 -> 1854[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2271[label="FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];2271 -> 2492[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2272[label="FiniteMap.mkBalBranch6MkBalBranch00 (Right xuu400) xuu41 xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 otherwise",fontsize=16,color="black",shape="box"];2272 -> 2493[label="",style="solid", color="black", weight=3]; 24.03/9.92 2273[label="FiniteMap.mkBalBranch6Single_L (Right xuu400) xuu41 xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];2273 -> 2494[label="",style="solid", color="black", weight=3]; 24.03/9.92 2161 -> 1555[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2161[label="primMulNat xuu5000000 (Succ xuu400100)",fontsize=16,color="magenta"];2161 -> 2283[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2161 -> 2284[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2160[label="primPlusNat xuu145 (Succ xuu400100)",fontsize=16,color="burlywood",shape="triangle"];5041[label="xuu145/Succ xuu1450",fontsize=10,color="white",style="solid",shape="box"];2160 -> 5041[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5041 -> 2285[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5042[label="xuu145/Zero",fontsize=10,color="white",style="solid",shape="box"];2160 -> 5042[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5042 -> 2286[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 2162[label="xuu530",fontsize=16,color="green",shape="box"];2163[label="Succ xuu5200",fontsize=16,color="green",shape="box"];2164 -> 2001[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2164[label="primCmpNat Zero (Succ xuu5300)",fontsize=16,color="magenta"];2164 -> 2275[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2164 -> 2276[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2165[label="EQ",fontsize=16,color="green",shape="box"];2166[label="GT",fontsize=16,color="green",shape="box"];2167[label="EQ",fontsize=16,color="green",shape="box"];2168[label="Succ xuu5200",fontsize=16,color="green",shape="box"];2169[label="xuu530",fontsize=16,color="green",shape="box"];2170[label="LT",fontsize=16,color="green",shape="box"];2171[label="EQ",fontsize=16,color="green",shape="box"];2172 -> 2001[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2172[label="primCmpNat (Succ xuu5300) Zero",fontsize=16,color="magenta"];2172 -> 2277[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2172 -> 2278[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2173[label="EQ",fontsize=16,color="green",shape="box"];3811 -> 3637[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3811[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3811 -> 3931[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3811 -> 3932[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3812 -> 3182[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3812[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3812 -> 3933[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3812 -> 3934[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3813 -> 1321[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3813[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3813 -> 3935[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3813 -> 3936[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3814 -> 3184[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3814[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3814 -> 3937[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3814 -> 3938[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3815 -> 3643[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3815[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3815 -> 3939[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3815 -> 3940[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3816 -> 3645[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3816[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3816 -> 3941[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3816 -> 3942[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3817 -> 3185[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3817[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3817 -> 3943[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3817 -> 3944[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3818 -> 3649[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3818[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3818 -> 3945[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3818 -> 3946[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3819 -> 3651[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3819[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3819 -> 3947[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3819 -> 3948[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3820 -> 3186[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3820[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3820 -> 3949[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3820 -> 3950[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3821 -> 3187[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3821[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3821 -> 3951[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3821 -> 3952[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3822 -> 3188[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3822[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3822 -> 3953[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3822 -> 3954[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3823 -> 3659[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3823[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3823 -> 3955[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3823 -> 3956[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3824 -> 3189[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3824[label="compare xuu52000 xuu53000",fontsize=16,color="magenta"];3824 -> 3957[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3824 -> 3958[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3825[label="primCompAux0 xuu224 LT",fontsize=16,color="black",shape="box"];3825 -> 3959[label="",style="solid", color="black", weight=3]; 24.03/9.92 3826[label="primCompAux0 xuu224 EQ",fontsize=16,color="black",shape="box"];3826 -> 3960[label="",style="solid", color="black", weight=3]; 24.03/9.92 3827[label="primCompAux0 xuu224 GT",fontsize=16,color="black",shape="box"];3827 -> 3961[label="",style="solid", color="black", weight=3]; 24.03/9.92 3852 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3852[label="Pos xuu520010 * xuu53000",fontsize=16,color="magenta"];3852 -> 3978[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3852 -> 3979[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3853 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3853[label="xuu52000 * Pos xuu530010",fontsize=16,color="magenta"];3853 -> 3980[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3853 -> 3981[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3854 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3854[label="Neg xuu520010 * xuu53000",fontsize=16,color="magenta"];3854 -> 3982[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3854 -> 3983[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3855 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3855[label="xuu52000 * Pos xuu530010",fontsize=16,color="magenta"];3855 -> 3984[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3855 -> 3985[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3856 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3856[label="Pos xuu520010 * xuu53000",fontsize=16,color="magenta"];3856 -> 3986[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3856 -> 3987[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3857 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3857[label="xuu52000 * Neg xuu530010",fontsize=16,color="magenta"];3857 -> 3988[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3857 -> 3989[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3858 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3858[label="Neg xuu520010 * xuu53000",fontsize=16,color="magenta"];3858 -> 3990[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3858 -> 3991[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3859 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3859[label="xuu52000 * Neg xuu530010",fontsize=16,color="magenta"];3859 -> 3992[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3859 -> 3993[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3860 -> 3994[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3860[label="compare2 xuu52000 xuu53000 (xuu52000 == xuu53000)",fontsize=16,color="magenta"];3860 -> 3995[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 1922[label="xuu530",fontsize=16,color="green",shape="box"];1923[label="xuu520",fontsize=16,color="green",shape="box"];3861 -> 2183[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3861[label="compare2 xuu52000 xuu53000 (xuu52000 == xuu53000)",fontsize=16,color="magenta"];3861 -> 3998[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3861 -> 3999[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3861 -> 4000[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3862 -> 4001[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3862[label="compare2 xuu52000 xuu53000 (xuu52000 == xuu53000)",fontsize=16,color="magenta"];3862 -> 4002[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3863 -> 4005[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3863[label="compare2 xuu52000 xuu53000 (xuu52000 == xuu53000)",fontsize=16,color="magenta"];3863 -> 4006[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3864 -> 4010[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3864[label="compare2 xuu52000 xuu53000 (xuu52000 == xuu53000)",fontsize=16,color="magenta"];3864 -> 4011[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3865 -> 4013[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3865[label="compare2 xuu52000 xuu53000 (xuu52000 == xuu53000)",fontsize=16,color="magenta"];3865 -> 4014[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3866[label="Integer xuu530000 * Integer xuu520010",fontsize=16,color="black",shape="box"];3866 -> 4015[label="",style="solid", color="black", weight=3]; 24.03/9.92 3867 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3867[label="Pos xuu520010 * xuu53000",fontsize=16,color="magenta"];3867 -> 4016[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3867 -> 4017[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3868 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3868[label="xuu52000 * Pos xuu530010",fontsize=16,color="magenta"];3868 -> 4018[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3868 -> 4019[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3869 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3869[label="Neg xuu520010 * xuu53000",fontsize=16,color="magenta"];3869 -> 4020[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3869 -> 4021[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3870 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3870[label="xuu52000 * Pos xuu530010",fontsize=16,color="magenta"];3870 -> 4022[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3870 -> 4023[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3871 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3871[label="Pos xuu520010 * xuu53000",fontsize=16,color="magenta"];3871 -> 4024[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3871 -> 4025[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3872 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3872[label="xuu52000 * Neg xuu530010",fontsize=16,color="magenta"];3872 -> 4026[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3872 -> 4027[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3873 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3873[label="Neg xuu520010 * xuu53000",fontsize=16,color="magenta"];3873 -> 4028[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3873 -> 4029[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3874 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3874[label="xuu52000 * Neg xuu530010",fontsize=16,color="magenta"];3874 -> 4030[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3874 -> 4031[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3875[label="xuu52001",fontsize=16,color="green",shape="box"];3876[label="xuu53001",fontsize=16,color="green",shape="box"];3877[label="xuu52001",fontsize=16,color="green",shape="box"];3878[label="xuu53001",fontsize=16,color="green",shape="box"];3879[label="xuu52001",fontsize=16,color="green",shape="box"];3880[label="xuu53001",fontsize=16,color="green",shape="box"];3881[label="xuu52001",fontsize=16,color="green",shape="box"];3882[label="xuu53001",fontsize=16,color="green",shape="box"];3883[label="xuu52001",fontsize=16,color="green",shape="box"];3884[label="xuu53001",fontsize=16,color="green",shape="box"];3885[label="xuu52001",fontsize=16,color="green",shape="box"];3886[label="xuu53001",fontsize=16,color="green",shape="box"];3887[label="xuu52001",fontsize=16,color="green",shape="box"];3888[label="xuu53001",fontsize=16,color="green",shape="box"];3889[label="xuu52001",fontsize=16,color="green",shape="box"];3890[label="xuu53001",fontsize=16,color="green",shape="box"];3891[label="xuu52001",fontsize=16,color="green",shape="box"];3892[label="xuu53001",fontsize=16,color="green",shape="box"];3893[label="xuu52001",fontsize=16,color="green",shape="box"];3894[label="xuu53001",fontsize=16,color="green",shape="box"];3895[label="xuu52001",fontsize=16,color="green",shape="box"];3896[label="xuu53001",fontsize=16,color="green",shape="box"];3897[label="xuu52001",fontsize=16,color="green",shape="box"];3898[label="xuu53001",fontsize=16,color="green",shape="box"];3899[label="xuu52001",fontsize=16,color="green",shape="box"];3900[label="xuu53001",fontsize=16,color="green",shape="box"];3901[label="xuu52001",fontsize=16,color="green",shape="box"];3902[label="xuu53001",fontsize=16,color="green",shape="box"];3903[label="xuu53002",fontsize=16,color="green",shape="box"];3904[label="xuu52002",fontsize=16,color="green",shape="box"];3905[label="xuu53002",fontsize=16,color="green",shape="box"];3906[label="xuu52002",fontsize=16,color="green",shape="box"];3907[label="xuu53002",fontsize=16,color="green",shape="box"];3908[label="xuu52002",fontsize=16,color="green",shape="box"];3909[label="xuu53002",fontsize=16,color="green",shape="box"];3910[label="xuu52002",fontsize=16,color="green",shape="box"];3911[label="xuu53002",fontsize=16,color="green",shape="box"];3912[label="xuu52002",fontsize=16,color="green",shape="box"];3913[label="xuu53002",fontsize=16,color="green",shape="box"];3914[label="xuu52002",fontsize=16,color="green",shape="box"];3915[label="xuu53002",fontsize=16,color="green",shape="box"];3916[label="xuu52002",fontsize=16,color="green",shape="box"];3917[label="xuu53002",fontsize=16,color="green",shape="box"];3918[label="xuu52002",fontsize=16,color="green",shape="box"];3919[label="xuu53002",fontsize=16,color="green",shape="box"];3920[label="xuu52002",fontsize=16,color="green",shape="box"];3921[label="xuu53002",fontsize=16,color="green",shape="box"];3922[label="xuu52002",fontsize=16,color="green",shape="box"];3923[label="xuu53002",fontsize=16,color="green",shape="box"];3924[label="xuu52002",fontsize=16,color="green",shape="box"];3925[label="xuu53002",fontsize=16,color="green",shape="box"];3926[label="xuu52002",fontsize=16,color="green",shape="box"];3927[label="xuu53002",fontsize=16,color="green",shape="box"];3928[label="xuu52002",fontsize=16,color="green",shape="box"];3929[label="xuu53002",fontsize=16,color="green",shape="box"];3930[label="xuu52002",fontsize=16,color="green",shape="box"];2279[label="primCmpNat (Succ xuu5200) (Succ xuu5300)",fontsize=16,color="black",shape="box"];2279 -> 2514[label="",style="solid", color="black", weight=3]; 24.03/9.92 2280[label="primCmpNat (Succ xuu5200) Zero",fontsize=16,color="black",shape="box"];2280 -> 2515[label="",style="solid", color="black", weight=3]; 24.03/9.92 2281[label="primCmpNat Zero (Succ xuu5300)",fontsize=16,color="black",shape="box"];2281 -> 2516[label="",style="solid", color="black", weight=3]; 24.03/9.92 2282[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2282 -> 2517[label="",style="solid", color="black", weight=3]; 24.03/9.92 2263[label="Pos (primPlusNat xuu5520 xuu1360)",fontsize=16,color="green",shape="box"];2263 -> 2452[label="",style="dashed", color="green", weight=3]; 24.03/9.92 2264[label="primMinusNat xuu5520 xuu1360",fontsize=16,color="burlywood",shape="triangle"];5043[label="xuu5520/Succ xuu55200",fontsize=10,color="white",style="solid",shape="box"];2264 -> 5043[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5043 -> 2453[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5044[label="xuu5520/Zero",fontsize=10,color="white",style="solid",shape="box"];2264 -> 5044[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5044 -> 2454[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 2265 -> 2264[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2265[label="primMinusNat xuu1360 xuu5520",fontsize=16,color="magenta"];2265 -> 2455[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2265 -> 2456[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2266[label="Neg (primPlusNat xuu5520 xuu1360)",fontsize=16,color="green",shape="box"];2266 -> 2457[label="",style="dashed", color="green", weight=3]; 24.03/9.92 2363 -> 1496[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2363[label="FiniteMap.sizeFM xuu554 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu553",fontsize=16,color="magenta"];2363 -> 2496[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2363 -> 2497[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2362[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu400) xuu41 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 xuu550 xuu551 xuu552 xuu553 xuu554 xuu153",fontsize=16,color="burlywood",shape="triangle"];5045[label="xuu153/False",fontsize=10,color="white",style="solid",shape="box"];2362 -> 5045[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5045 -> 2498[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5046[label="xuu153/True",fontsize=10,color="white",style="solid",shape="box"];2362 -> 5046[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5046 -> 2499[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 2448[label="xuu444",fontsize=16,color="green",shape="box"];2449[label="FiniteMap.mkBalBranch6MkBalBranch00 (Left xuu400) xuu41 xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 True",fontsize=16,color="black",shape="box"];2449 -> 2500[label="",style="solid", color="black", weight=3]; 24.03/9.92 2450 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2450[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu440 xuu441 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Left xuu400) xuu41 xuu55 xuu443) xuu444",fontsize=16,color="magenta"];2450 -> 4182[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2450 -> 4183[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2450 -> 4184[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2450 -> 4185[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2450 -> 4186[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4375[label="Pos Zero",fontsize=16,color="green",shape="box"];4376[label="xuu2672",fontsize=16,color="green",shape="box"];4377 -> 4369[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4377[label="FiniteMap.sizeFM xuu266",fontsize=16,color="magenta"];4377 -> 4378[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2459 -> 1496[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2459[label="FiniteMap.sizeFM xuu474 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu473",fontsize=16,color="magenta"];2459 -> 2510[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2459 -> 2511[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2458[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu400) xuu41 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 xuu470 xuu471 xuu472 xuu473 xuu474 xuu157",fontsize=16,color="burlywood",shape="triangle"];5047[label="xuu157/False",fontsize=10,color="white",style="solid",shape="box"];2458 -> 5047[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5047 -> 2512[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5048[label="xuu157/True",fontsize=10,color="white",style="solid",shape="box"];2458 -> 5048[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5048 -> 2513[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 2492[label="xuu444",fontsize=16,color="green",shape="box"];2493[label="FiniteMap.mkBalBranch6MkBalBranch00 (Right xuu400) xuu41 xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 True",fontsize=16,color="black",shape="box"];2493 -> 3006[label="",style="solid", color="black", weight=3]; 24.03/9.92 2494 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2494[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu440 xuu441 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Right xuu400) xuu41 xuu47 xuu443) xuu444",fontsize=16,color="magenta"];2494 -> 4187[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2494 -> 4188[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2494 -> 4189[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2494 -> 4190[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2494 -> 4191[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2283[label="xuu5000000",fontsize=16,color="green",shape="box"];2284[label="Succ xuu400100",fontsize=16,color="green",shape="box"];2285[label="primPlusNat (Succ xuu1450) (Succ xuu400100)",fontsize=16,color="black",shape="box"];2285 -> 2518[label="",style="solid", color="black", weight=3]; 24.03/9.92 2286[label="primPlusNat Zero (Succ xuu400100)",fontsize=16,color="black",shape="box"];2286 -> 2519[label="",style="solid", color="black", weight=3]; 24.03/9.92 2275[label="Succ xuu5300",fontsize=16,color="green",shape="box"];2276[label="Zero",fontsize=16,color="green",shape="box"];2277[label="Zero",fontsize=16,color="green",shape="box"];2278[label="Succ xuu5300",fontsize=16,color="green",shape="box"];3931[label="xuu52000",fontsize=16,color="green",shape="box"];3932[label="xuu53000",fontsize=16,color="green",shape="box"];3933[label="xuu53000",fontsize=16,color="green",shape="box"];3934[label="xuu52000",fontsize=16,color="green",shape="box"];3935[label="xuu53000",fontsize=16,color="green",shape="box"];3936[label="xuu52000",fontsize=16,color="green",shape="box"];3937[label="xuu53000",fontsize=16,color="green",shape="box"];3938[label="xuu52000",fontsize=16,color="green",shape="box"];3939[label="xuu52000",fontsize=16,color="green",shape="box"];3940[label="xuu53000",fontsize=16,color="green",shape="box"];3941[label="xuu52000",fontsize=16,color="green",shape="box"];3942[label="xuu53000",fontsize=16,color="green",shape="box"];3943[label="xuu53000",fontsize=16,color="green",shape="box"];3944[label="xuu52000",fontsize=16,color="green",shape="box"];3945[label="xuu52000",fontsize=16,color="green",shape="box"];3946[label="xuu53000",fontsize=16,color="green",shape="box"];3947[label="xuu52000",fontsize=16,color="green",shape="box"];3948[label="xuu53000",fontsize=16,color="green",shape="box"];3949[label="xuu53000",fontsize=16,color="green",shape="box"];3950[label="xuu52000",fontsize=16,color="green",shape="box"];3951[label="xuu53000",fontsize=16,color="green",shape="box"];3952[label="xuu52000",fontsize=16,color="green",shape="box"];3953[label="xuu53000",fontsize=16,color="green",shape="box"];3954[label="xuu52000",fontsize=16,color="green",shape="box"];3955[label="xuu52000",fontsize=16,color="green",shape="box"];3956[label="xuu53000",fontsize=16,color="green",shape="box"];3957[label="xuu53000",fontsize=16,color="green",shape="box"];3958[label="xuu52000",fontsize=16,color="green",shape="box"];3959[label="LT",fontsize=16,color="green",shape="box"];3960[label="xuu224",fontsize=16,color="green",shape="box"];3961[label="GT",fontsize=16,color="green",shape="box"];3978[label="Pos xuu520010",fontsize=16,color="green",shape="box"];3979[label="xuu53000",fontsize=16,color="green",shape="box"];3980[label="xuu52000",fontsize=16,color="green",shape="box"];3981[label="Pos xuu530010",fontsize=16,color="green",shape="box"];3982[label="Neg xuu520010",fontsize=16,color="green",shape="box"];3983[label="xuu53000",fontsize=16,color="green",shape="box"];3984[label="xuu52000",fontsize=16,color="green",shape="box"];3985[label="Pos xuu530010",fontsize=16,color="green",shape="box"];3986[label="Pos xuu520010",fontsize=16,color="green",shape="box"];3987[label="xuu53000",fontsize=16,color="green",shape="box"];3988[label="xuu52000",fontsize=16,color="green",shape="box"];3989[label="Neg xuu530010",fontsize=16,color="green",shape="box"];3990[label="Neg xuu520010",fontsize=16,color="green",shape="box"];3991[label="xuu53000",fontsize=16,color="green",shape="box"];3992[label="xuu52000",fontsize=16,color="green",shape="box"];3993[label="Neg xuu530010",fontsize=16,color="green",shape="box"];3995 -> 73[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3995[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3995 -> 4033[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3995 -> 4034[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3994[label="compare2 xuu52000 xuu53000 xuu238",fontsize=16,color="burlywood",shape="triangle"];5049[label="xuu238/False",fontsize=10,color="white",style="solid",shape="box"];3994 -> 5049[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5049 -> 4035[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5050[label="xuu238/True",fontsize=10,color="white",style="solid",shape="box"];3994 -> 5050[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5050 -> 4036[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3998 -> 2231[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3998[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];3998 -> 4037[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3998 -> 4038[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3999[label="xuu52000",fontsize=16,color="green",shape="box"];4000[label="xuu53000",fontsize=16,color="green",shape="box"];4002 -> 2228[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4002[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];4002 -> 4039[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4002 -> 4040[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4001[label="compare2 xuu52000 xuu53000 xuu239",fontsize=16,color="burlywood",shape="triangle"];5051[label="xuu239/False",fontsize=10,color="white",style="solid",shape="box"];4001 -> 5051[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5051 -> 4041[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5052[label="xuu239/True",fontsize=10,color="white",style="solid",shape="box"];4001 -> 5052[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5052 -> 4042[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4006 -> 2224[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4006[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];4006 -> 4043[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4006 -> 4044[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4005[label="compare2 xuu52000 xuu53000 xuu240",fontsize=16,color="burlywood",shape="triangle"];5053[label="xuu240/False",fontsize=10,color="white",style="solid",shape="box"];4005 -> 5053[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5053 -> 4045[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5054[label="xuu240/True",fontsize=10,color="white",style="solid",shape="box"];4005 -> 5054[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5054 -> 4046[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4011 -> 2230[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4011[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];4011 -> 4047[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4011 -> 4048[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4010[label="compare2 xuu52000 xuu53000 xuu241",fontsize=16,color="burlywood",shape="triangle"];5055[label="xuu241/False",fontsize=10,color="white",style="solid",shape="box"];4010 -> 5055[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5055 -> 4049[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5056[label="xuu241/True",fontsize=10,color="white",style="solid",shape="box"];4010 -> 5056[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5056 -> 4050[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4014 -> 2222[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4014[label="xuu52000 == xuu53000",fontsize=16,color="magenta"];4014 -> 4051[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4014 -> 4052[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4013[label="compare2 xuu52000 xuu53000 xuu242",fontsize=16,color="burlywood",shape="triangle"];5057[label="xuu242/False",fontsize=10,color="white",style="solid",shape="box"];4013 -> 5057[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5057 -> 4053[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5058[label="xuu242/True",fontsize=10,color="white",style="solid",shape="box"];4013 -> 5058[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5058 -> 4054[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4015[label="Integer (primMulInt xuu530000 xuu520010)",fontsize=16,color="green",shape="box"];4015 -> 4077[label="",style="dashed", color="green", weight=3]; 24.03/9.92 4016[label="Pos xuu520010",fontsize=16,color="green",shape="box"];4017[label="xuu53000",fontsize=16,color="green",shape="box"];4018[label="xuu52000",fontsize=16,color="green",shape="box"];4019[label="Pos xuu530010",fontsize=16,color="green",shape="box"];4020[label="Neg xuu520010",fontsize=16,color="green",shape="box"];4021[label="xuu53000",fontsize=16,color="green",shape="box"];4022[label="xuu52000",fontsize=16,color="green",shape="box"];4023[label="Pos xuu530010",fontsize=16,color="green",shape="box"];4024[label="Pos xuu520010",fontsize=16,color="green",shape="box"];4025[label="xuu53000",fontsize=16,color="green",shape="box"];4026[label="xuu52000",fontsize=16,color="green",shape="box"];4027[label="Neg xuu530010",fontsize=16,color="green",shape="box"];4028[label="Neg xuu520010",fontsize=16,color="green",shape="box"];4029[label="xuu53000",fontsize=16,color="green",shape="box"];4030[label="xuu52000",fontsize=16,color="green",shape="box"];4031[label="Neg xuu530010",fontsize=16,color="green",shape="box"];2514 -> 2001[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2514[label="primCmpNat xuu5200 xuu5300",fontsize=16,color="magenta"];2514 -> 3029[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2514 -> 3030[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2515[label="GT",fontsize=16,color="green",shape="box"];2516[label="LT",fontsize=16,color="green",shape="box"];2517[label="EQ",fontsize=16,color="green",shape="box"];2452[label="primPlusNat xuu5520 xuu1360",fontsize=16,color="burlywood",shape="triangle"];5059[label="xuu5520/Succ xuu55200",fontsize=10,color="white",style="solid",shape="box"];2452 -> 5059[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5059 -> 2502[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5060[label="xuu5520/Zero",fontsize=10,color="white",style="solid",shape="box"];2452 -> 5060[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5060 -> 2503[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 2453[label="primMinusNat (Succ xuu55200) xuu1360",fontsize=16,color="burlywood",shape="box"];5061[label="xuu1360/Succ xuu13600",fontsize=10,color="white",style="solid",shape="box"];2453 -> 5061[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5061 -> 2504[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5062[label="xuu1360/Zero",fontsize=10,color="white",style="solid",shape="box"];2453 -> 5062[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5062 -> 2505[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 2454[label="primMinusNat Zero xuu1360",fontsize=16,color="burlywood",shape="box"];5063[label="xuu1360/Succ xuu13600",fontsize=10,color="white",style="solid",shape="box"];2454 -> 5063[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5063 -> 2506[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5064[label="xuu1360/Zero",fontsize=10,color="white",style="solid",shape="box"];2454 -> 5064[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5064 -> 2507[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 2455[label="xuu5520",fontsize=16,color="green",shape="box"];2456[label="xuu1360",fontsize=16,color="green",shape="box"];2457 -> 2452[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2457[label="primPlusNat xuu5520 xuu1360",fontsize=16,color="magenta"];2457 -> 2508[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2457 -> 2509[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2496 -> 1854[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2496[label="FiniteMap.sizeFM xuu554",fontsize=16,color="magenta"];2496 -> 3008[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2497 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2497[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu553",fontsize=16,color="magenta"];2497 -> 3009[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2497 -> 3010[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2498[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu400) xuu41 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 xuu550 xuu551 xuu552 xuu553 xuu554 False",fontsize=16,color="black",shape="box"];2498 -> 3011[label="",style="solid", color="black", weight=3]; 24.03/9.92 2499[label="FiniteMap.mkBalBranch6MkBalBranch11 (Left xuu400) xuu41 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 xuu550 xuu551 xuu552 xuu553 xuu554 True",fontsize=16,color="black",shape="box"];2499 -> 3012[label="",style="solid", color="black", weight=3]; 24.03/9.92 2500[label="FiniteMap.mkBalBranch6Double_L (Left xuu400) xuu41 xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="burlywood",shape="box"];5065[label="xuu443/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2500 -> 5065[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5065 -> 3013[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5066[label="xuu443/FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434",fontsize=10,color="white",style="solid",shape="box"];2500 -> 5066[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5066 -> 3014[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4182[label="xuu440",fontsize=16,color="green",shape="box"];4183[label="xuu444",fontsize=16,color="green",shape="box"];4184[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4185 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4185[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Left xuu400) xuu41 xuu55 xuu443",fontsize=16,color="magenta"];4185 -> 4293[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4185 -> 4294[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4185 -> 4295[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4185 -> 4296[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4185 -> 4297[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4186[label="xuu441",fontsize=16,color="green",shape="box"];4378[label="xuu266",fontsize=16,color="green",shape="box"];2510 -> 1854[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2510[label="FiniteMap.sizeFM xuu474",fontsize=16,color="magenta"];2510 -> 3024[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2511 -> 698[label="",style="dashed", color="red", weight=0]; 24.03/9.92 2511[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu473",fontsize=16,color="magenta"];2511 -> 3025[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2511 -> 3026[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 2512[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu400) xuu41 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 xuu470 xuu471 xuu472 xuu473 xuu474 False",fontsize=16,color="black",shape="box"];2512 -> 3027[label="",style="solid", color="black", weight=3]; 24.03/9.92 2513[label="FiniteMap.mkBalBranch6MkBalBranch11 (Right xuu400) xuu41 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 xuu470 xuu471 xuu472 xuu473 xuu474 True",fontsize=16,color="black",shape="box"];2513 -> 3028[label="",style="solid", color="black", weight=3]; 24.03/9.92 3006[label="FiniteMap.mkBalBranch6Double_L (Right xuu400) xuu41 xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="burlywood",shape="box"];5067[label="xuu443/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3006 -> 5067[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5067 -> 3148[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5068[label="xuu443/FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434",fontsize=10,color="white",style="solid",shape="box"];3006 -> 5068[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5068 -> 3149[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4187[label="xuu440",fontsize=16,color="green",shape="box"];4188[label="xuu444",fontsize=16,color="green",shape="box"];4189[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4190 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4190[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Right xuu400) xuu41 xuu47 xuu443",fontsize=16,color="magenta"];4190 -> 4298[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4190 -> 4299[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4190 -> 4300[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4190 -> 4301[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4190 -> 4302[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4191[label="xuu441",fontsize=16,color="green",shape="box"];2518[label="Succ (Succ (primPlusNat xuu1450 xuu400100))",fontsize=16,color="green",shape="box"];2518 -> 3031[label="",style="dashed", color="green", weight=3]; 24.03/9.92 2519[label="Succ xuu400100",fontsize=16,color="green",shape="box"];4033[label="xuu52000",fontsize=16,color="green",shape="box"];4034[label="xuu53000",fontsize=16,color="green",shape="box"];4035[label="compare2 xuu52000 xuu53000 False",fontsize=16,color="black",shape="box"];4035 -> 4078[label="",style="solid", color="black", weight=3]; 24.03/9.92 4036[label="compare2 xuu52000 xuu53000 True",fontsize=16,color="black",shape="box"];4036 -> 4079[label="",style="solid", color="black", weight=3]; 24.03/9.92 4037[label="xuu52000",fontsize=16,color="green",shape="box"];4038[label="xuu53000",fontsize=16,color="green",shape="box"];4039[label="xuu52000",fontsize=16,color="green",shape="box"];4040[label="xuu53000",fontsize=16,color="green",shape="box"];4041[label="compare2 xuu52000 xuu53000 False",fontsize=16,color="black",shape="box"];4041 -> 4080[label="",style="solid", color="black", weight=3]; 24.03/9.92 4042[label="compare2 xuu52000 xuu53000 True",fontsize=16,color="black",shape="box"];4042 -> 4081[label="",style="solid", color="black", weight=3]; 24.03/9.92 4043[label="xuu52000",fontsize=16,color="green",shape="box"];4044[label="xuu53000",fontsize=16,color="green",shape="box"];4045[label="compare2 xuu52000 xuu53000 False",fontsize=16,color="black",shape="box"];4045 -> 4082[label="",style="solid", color="black", weight=3]; 24.03/9.92 4046[label="compare2 xuu52000 xuu53000 True",fontsize=16,color="black",shape="box"];4046 -> 4083[label="",style="solid", color="black", weight=3]; 24.03/9.92 4047[label="xuu52000",fontsize=16,color="green",shape="box"];4048[label="xuu53000",fontsize=16,color="green",shape="box"];4049[label="compare2 xuu52000 xuu53000 False",fontsize=16,color="black",shape="box"];4049 -> 4084[label="",style="solid", color="black", weight=3]; 24.03/9.92 4050[label="compare2 xuu52000 xuu53000 True",fontsize=16,color="black",shape="box"];4050 -> 4085[label="",style="solid", color="black", weight=3]; 24.03/9.92 4051[label="xuu52000",fontsize=16,color="green",shape="box"];4052[label="xuu53000",fontsize=16,color="green",shape="box"];4053[label="compare2 xuu52000 xuu53000 False",fontsize=16,color="black",shape="box"];4053 -> 4086[label="",style="solid", color="black", weight=3]; 24.03/9.92 4054[label="compare2 xuu52000 xuu53000 True",fontsize=16,color="black",shape="box"];4054 -> 4087[label="",style="solid", color="black", weight=3]; 24.03/9.92 4077 -> 991[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4077[label="primMulInt xuu530000 xuu520010",fontsize=16,color="magenta"];4077 -> 4101[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4077 -> 4102[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3029[label="xuu5300",fontsize=16,color="green",shape="box"];3030[label="xuu5200",fontsize=16,color="green",shape="box"];2502[label="primPlusNat (Succ xuu55200) xuu1360",fontsize=16,color="burlywood",shape="box"];5069[label="xuu1360/Succ xuu13600",fontsize=10,color="white",style="solid",shape="box"];2502 -> 5069[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5069 -> 3016[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5070[label="xuu1360/Zero",fontsize=10,color="white",style="solid",shape="box"];2502 -> 5070[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5070 -> 3017[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 2503[label="primPlusNat Zero xuu1360",fontsize=16,color="burlywood",shape="box"];5071[label="xuu1360/Succ xuu13600",fontsize=10,color="white",style="solid",shape="box"];2503 -> 5071[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5071 -> 3018[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5072[label="xuu1360/Zero",fontsize=10,color="white",style="solid",shape="box"];2503 -> 5072[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5072 -> 3019[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 2504[label="primMinusNat (Succ xuu55200) (Succ xuu13600)",fontsize=16,color="black",shape="box"];2504 -> 3020[label="",style="solid", color="black", weight=3]; 24.03/9.92 2505[label="primMinusNat (Succ xuu55200) Zero",fontsize=16,color="black",shape="box"];2505 -> 3021[label="",style="solid", color="black", weight=3]; 24.03/9.92 2506[label="primMinusNat Zero (Succ xuu13600)",fontsize=16,color="black",shape="box"];2506 -> 3022[label="",style="solid", color="black", weight=3]; 24.03/9.92 2507[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2507 -> 3023[label="",style="solid", color="black", weight=3]; 24.03/9.92 2508[label="xuu5520",fontsize=16,color="green",shape="box"];2509[label="xuu1360",fontsize=16,color="green",shape="box"];3008[label="xuu554",fontsize=16,color="green",shape="box"];3009[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3010 -> 1854[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3010[label="FiniteMap.sizeFM xuu553",fontsize=16,color="magenta"];3010 -> 3151[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3011[label="FiniteMap.mkBalBranch6MkBalBranch10 (Left xuu400) xuu41 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 xuu550 xuu551 xuu552 xuu553 xuu554 otherwise",fontsize=16,color="black",shape="box"];3011 -> 3152[label="",style="solid", color="black", weight=3]; 24.03/9.92 3012[label="FiniteMap.mkBalBranch6Single_R (Left xuu400) xuu41 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44",fontsize=16,color="black",shape="box"];3012 -> 3153[label="",style="solid", color="black", weight=3]; 24.03/9.92 3013[label="FiniteMap.mkBalBranch6Double_L (Left xuu400) xuu41 xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 FiniteMap.EmptyFM xuu444) xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 FiniteMap.EmptyFM xuu444)",fontsize=16,color="black",shape="box"];3013 -> 3154[label="",style="solid", color="black", weight=3]; 24.03/9.92 3014[label="FiniteMap.mkBalBranch6Double_L (Left xuu400) xuu41 xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 (FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434) xuu444) xuu55 (FiniteMap.Branch xuu440 xuu441 xuu442 (FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434) xuu444)",fontsize=16,color="black",shape="box"];3014 -> 3155[label="",style="solid", color="black", weight=3]; 24.03/9.92 4293[label="Left xuu400",fontsize=16,color="green",shape="box"];4294[label="xuu443",fontsize=16,color="green",shape="box"];4295[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4296[label="xuu55",fontsize=16,color="green",shape="box"];4297[label="xuu41",fontsize=16,color="green",shape="box"];3024[label="xuu474",fontsize=16,color="green",shape="box"];3025[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3026 -> 1854[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3026[label="FiniteMap.sizeFM xuu473",fontsize=16,color="magenta"];3026 -> 3164[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3027[label="FiniteMap.mkBalBranch6MkBalBranch10 (Right xuu400) xuu41 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 xuu470 xuu471 xuu472 xuu473 xuu474 otherwise",fontsize=16,color="black",shape="box"];3027 -> 3165[label="",style="solid", color="black", weight=3]; 24.03/9.92 3028[label="FiniteMap.mkBalBranch6Single_R (Right xuu400) xuu41 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44",fontsize=16,color="black",shape="box"];3028 -> 3166[label="",style="solid", color="black", weight=3]; 24.03/9.92 3148[label="FiniteMap.mkBalBranch6Double_L (Right xuu400) xuu41 xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 FiniteMap.EmptyFM xuu444) xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 FiniteMap.EmptyFM xuu444)",fontsize=16,color="black",shape="box"];3148 -> 3226[label="",style="solid", color="black", weight=3]; 24.03/9.92 3149[label="FiniteMap.mkBalBranch6Double_L (Right xuu400) xuu41 xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 (FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434) xuu444) xuu47 (FiniteMap.Branch xuu440 xuu441 xuu442 (FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434) xuu444)",fontsize=16,color="black",shape="box"];3149 -> 3227[label="",style="solid", color="black", weight=3]; 24.03/9.92 4298[label="Right xuu400",fontsize=16,color="green",shape="box"];4299[label="xuu443",fontsize=16,color="green",shape="box"];4300[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4301[label="xuu47",fontsize=16,color="green",shape="box"];4302[label="xuu41",fontsize=16,color="green",shape="box"];3031 -> 2452[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3031[label="primPlusNat xuu1450 xuu400100",fontsize=16,color="magenta"];3031 -> 3167[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3031 -> 3168[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4078 -> 4103[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4078[label="compare1 xuu52000 xuu53000 (xuu52000 <= xuu53000)",fontsize=16,color="magenta"];4078 -> 4104[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4079[label="EQ",fontsize=16,color="green",shape="box"];4080 -> 4105[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4080[label="compare1 xuu52000 xuu53000 (xuu52000 <= xuu53000)",fontsize=16,color="magenta"];4080 -> 4106[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4081[label="EQ",fontsize=16,color="green",shape="box"];4082 -> 4107[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4082[label="compare1 xuu52000 xuu53000 (xuu52000 <= xuu53000)",fontsize=16,color="magenta"];4082 -> 4108[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4083[label="EQ",fontsize=16,color="green",shape="box"];4084 -> 4109[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4084[label="compare1 xuu52000 xuu53000 (xuu52000 <= xuu53000)",fontsize=16,color="magenta"];4084 -> 4110[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4085[label="EQ",fontsize=16,color="green",shape="box"];4086 -> 4111[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4086[label="compare1 xuu52000 xuu53000 (xuu52000 <= xuu53000)",fontsize=16,color="magenta"];4086 -> 4112[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4087[label="EQ",fontsize=16,color="green",shape="box"];4101[label="xuu530000",fontsize=16,color="green",shape="box"];4102[label="xuu520010",fontsize=16,color="green",shape="box"];3016[label="primPlusNat (Succ xuu55200) (Succ xuu13600)",fontsize=16,color="black",shape="box"];3016 -> 3158[label="",style="solid", color="black", weight=3]; 24.03/9.92 3017[label="primPlusNat (Succ xuu55200) Zero",fontsize=16,color="black",shape="box"];3017 -> 3159[label="",style="solid", color="black", weight=3]; 24.03/9.92 3018[label="primPlusNat Zero (Succ xuu13600)",fontsize=16,color="black",shape="box"];3018 -> 3160[label="",style="solid", color="black", weight=3]; 24.03/9.92 3019[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3019 -> 3161[label="",style="solid", color="black", weight=3]; 24.03/9.92 3020 -> 2264[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3020[label="primMinusNat xuu55200 xuu13600",fontsize=16,color="magenta"];3020 -> 3162[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3020 -> 3163[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3021[label="Pos (Succ xuu55200)",fontsize=16,color="green",shape="box"];3022[label="Neg (Succ xuu13600)",fontsize=16,color="green",shape="box"];3023[label="Pos Zero",fontsize=16,color="green",shape="box"];3151[label="xuu553",fontsize=16,color="green",shape="box"];3152[label="FiniteMap.mkBalBranch6MkBalBranch10 (Left xuu400) xuu41 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 xuu550 xuu551 xuu552 xuu553 xuu554 True",fontsize=16,color="black",shape="box"];3152 -> 3230[label="",style="solid", color="black", weight=3]; 24.03/9.92 3153 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3153[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu550 xuu551 xuu553 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Left xuu400) xuu41 xuu554 xuu44)",fontsize=16,color="magenta"];3153 -> 4192[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3153 -> 4193[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3153 -> 4194[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3153 -> 4195[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3153 -> 4196[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3154[label="error []",fontsize=16,color="red",shape="box"];3155 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3155[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu4430 xuu4431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Left xuu400) xuu41 xuu55 xuu4433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu440 xuu441 xuu4434 xuu444)",fontsize=16,color="magenta"];3155 -> 4197[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3155 -> 4198[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3155 -> 4199[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3155 -> 4200[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3155 -> 4201[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3164[label="xuu473",fontsize=16,color="green",shape="box"];3165[label="FiniteMap.mkBalBranch6MkBalBranch10 (Right xuu400) xuu41 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 xuu470 xuu471 xuu472 xuu473 xuu474 True",fontsize=16,color="black",shape="box"];3165 -> 3567[label="",style="solid", color="black", weight=3]; 24.03/9.92 3166 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3166[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu470 xuu471 xuu473 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Right xuu400) xuu41 xuu474 xuu44)",fontsize=16,color="magenta"];3166 -> 4207[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3166 -> 4208[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3166 -> 4209[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3166 -> 4210[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3166 -> 4211[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3226[label="error []",fontsize=16,color="red",shape="box"];3227 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3227[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu4430 xuu4431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Right xuu400) xuu41 xuu47 xuu4433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu440 xuu441 xuu4434 xuu444)",fontsize=16,color="magenta"];3227 -> 4212[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3227 -> 4213[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3227 -> 4214[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3227 -> 4215[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3227 -> 4216[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3167[label="xuu1450",fontsize=16,color="green",shape="box"];3168[label="xuu400100",fontsize=16,color="green",shape="box"];4104 -> 2973[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4104[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];4104 -> 4113[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4104 -> 4114[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4103[label="compare1 xuu52000 xuu53000 xuu253",fontsize=16,color="burlywood",shape="triangle"];5073[label="xuu253/False",fontsize=10,color="white",style="solid",shape="box"];4103 -> 5073[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5073 -> 4115[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5074[label="xuu253/True",fontsize=10,color="white",style="solid",shape="box"];4103 -> 5074[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5074 -> 4116[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4106 -> 2978[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4106[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];4106 -> 4117[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4106 -> 4118[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4105[label="compare1 xuu52000 xuu53000 xuu254",fontsize=16,color="burlywood",shape="triangle"];5075[label="xuu254/False",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5075[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5075 -> 4119[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5076[label="xuu254/True",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5076[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5076 -> 4120[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4108 -> 2980[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4108[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];4108 -> 4121[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4108 -> 4122[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4107[label="compare1 xuu52000 xuu53000 xuu255",fontsize=16,color="burlywood",shape="triangle"];5077[label="xuu255/False",fontsize=10,color="white",style="solid",shape="box"];4107 -> 5077[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5077 -> 4123[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5078[label="xuu255/True",fontsize=10,color="white",style="solid",shape="box"];4107 -> 5078[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5078 -> 4124[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4110 -> 2981[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4110[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];4110 -> 4125[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4110 -> 4126[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4109[label="compare1 xuu52000 xuu53000 xuu256",fontsize=16,color="burlywood",shape="triangle"];5079[label="xuu256/False",fontsize=10,color="white",style="solid",shape="box"];4109 -> 5079[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5079 -> 4127[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5080[label="xuu256/True",fontsize=10,color="white",style="solid",shape="box"];4109 -> 5080[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5080 -> 4128[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4112 -> 2985[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4112[label="xuu52000 <= xuu53000",fontsize=16,color="magenta"];4112 -> 4129[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4112 -> 4130[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4111[label="compare1 xuu52000 xuu53000 xuu257",fontsize=16,color="burlywood",shape="triangle"];5081[label="xuu257/False",fontsize=10,color="white",style="solid",shape="box"];4111 -> 5081[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5081 -> 4131[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5082[label="xuu257/True",fontsize=10,color="white",style="solid",shape="box"];4111 -> 5082[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5082 -> 4132[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 3158[label="Succ (Succ (primPlusNat xuu55200 xuu13600))",fontsize=16,color="green",shape="box"];3158 -> 3566[label="",style="dashed", color="green", weight=3]; 24.03/9.92 3159[label="Succ xuu55200",fontsize=16,color="green",shape="box"];3160[label="Succ xuu13600",fontsize=16,color="green",shape="box"];3161[label="Zero",fontsize=16,color="green",shape="box"];3162[label="xuu13600",fontsize=16,color="green",shape="box"];3163[label="xuu55200",fontsize=16,color="green",shape="box"];3230[label="FiniteMap.mkBalBranch6Double_R (Left xuu400) xuu41 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 xuu554) xuu44",fontsize=16,color="burlywood",shape="box"];5083[label="xuu554/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3230 -> 5083[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5083 -> 3831[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5084[label="xuu554/FiniteMap.Branch xuu5540 xuu5541 xuu5542 xuu5543 xuu5544",fontsize=10,color="white",style="solid",shape="box"];3230 -> 5084[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5084 -> 3832[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4192[label="xuu550",fontsize=16,color="green",shape="box"];4193 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4193[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Left xuu400) xuu41 xuu554 xuu44",fontsize=16,color="magenta"];4193 -> 4303[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4193 -> 4304[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4193 -> 4305[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4193 -> 4306[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4193 -> 4307[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4194[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4195[label="xuu553",fontsize=16,color="green",shape="box"];4196[label="xuu551",fontsize=16,color="green",shape="box"];4197[label="xuu4430",fontsize=16,color="green",shape="box"];4198 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4198[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu440 xuu441 xuu4434 xuu444",fontsize=16,color="magenta"];4198 -> 4308[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4198 -> 4309[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4198 -> 4310[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4198 -> 4311[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4198 -> 4312[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4199[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4200 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4200[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Left xuu400) xuu41 xuu55 xuu4433",fontsize=16,color="magenta"];4200 -> 4313[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4200 -> 4314[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4200 -> 4315[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4200 -> 4316[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4200 -> 4317[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4201[label="xuu4431",fontsize=16,color="green",shape="box"];3567[label="FiniteMap.mkBalBranch6Double_R (Right xuu400) xuu41 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 xuu474) xuu44",fontsize=16,color="burlywood",shape="box"];5085[label="xuu474/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3567 -> 5085[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5085 -> 4056[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 5086[label="xuu474/FiniteMap.Branch xuu4740 xuu4741 xuu4742 xuu4743 xuu4744",fontsize=10,color="white",style="solid",shape="box"];3567 -> 5086[label="",style="solid", color="burlywood", weight=9]; 24.03/9.92 5086 -> 4057[label="",style="solid", color="burlywood", weight=3]; 24.03/9.92 4207[label="xuu470",fontsize=16,color="green",shape="box"];4208 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4208[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Right xuu400) xuu41 xuu474 xuu44",fontsize=16,color="magenta"];4208 -> 4318[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4208 -> 4319[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4208 -> 4320[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4208 -> 4321[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4208 -> 4322[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4209[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4210[label="xuu473",fontsize=16,color="green",shape="box"];4211[label="xuu471",fontsize=16,color="green",shape="box"];4212[label="xuu4430",fontsize=16,color="green",shape="box"];4213 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4213[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu440 xuu441 xuu4434 xuu444",fontsize=16,color="magenta"];4213 -> 4323[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4213 -> 4324[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4213 -> 4325[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4213 -> 4326[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4213 -> 4327[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4214[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4215 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4215[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Right xuu400) xuu41 xuu47 xuu4433",fontsize=16,color="magenta"];4215 -> 4328[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4215 -> 4329[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4215 -> 4330[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4215 -> 4331[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4215 -> 4332[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4216[label="xuu4431",fontsize=16,color="green",shape="box"];4113[label="xuu53000",fontsize=16,color="green",shape="box"];4114[label="xuu52000",fontsize=16,color="green",shape="box"];4115[label="compare1 xuu52000 xuu53000 False",fontsize=16,color="black",shape="box"];4115 -> 4150[label="",style="solid", color="black", weight=3]; 24.03/9.92 4116[label="compare1 xuu52000 xuu53000 True",fontsize=16,color="black",shape="box"];4116 -> 4151[label="",style="solid", color="black", weight=3]; 24.03/9.92 4117[label="xuu53000",fontsize=16,color="green",shape="box"];4118[label="xuu52000",fontsize=16,color="green",shape="box"];4119[label="compare1 xuu52000 xuu53000 False",fontsize=16,color="black",shape="box"];4119 -> 4152[label="",style="solid", color="black", weight=3]; 24.03/9.92 4120[label="compare1 xuu52000 xuu53000 True",fontsize=16,color="black",shape="box"];4120 -> 4153[label="",style="solid", color="black", weight=3]; 24.03/9.92 4121[label="xuu53000",fontsize=16,color="green",shape="box"];4122[label="xuu52000",fontsize=16,color="green",shape="box"];4123[label="compare1 xuu52000 xuu53000 False",fontsize=16,color="black",shape="box"];4123 -> 4154[label="",style="solid", color="black", weight=3]; 24.03/9.92 4124[label="compare1 xuu52000 xuu53000 True",fontsize=16,color="black",shape="box"];4124 -> 4155[label="",style="solid", color="black", weight=3]; 24.03/9.92 4125[label="xuu53000",fontsize=16,color="green",shape="box"];4126[label="xuu52000",fontsize=16,color="green",shape="box"];4127[label="compare1 xuu52000 xuu53000 False",fontsize=16,color="black",shape="box"];4127 -> 4156[label="",style="solid", color="black", weight=3]; 24.03/9.92 4128[label="compare1 xuu52000 xuu53000 True",fontsize=16,color="black",shape="box"];4128 -> 4157[label="",style="solid", color="black", weight=3]; 24.03/9.92 4129[label="xuu53000",fontsize=16,color="green",shape="box"];4130[label="xuu52000",fontsize=16,color="green",shape="box"];4131[label="compare1 xuu52000 xuu53000 False",fontsize=16,color="black",shape="box"];4131 -> 4158[label="",style="solid", color="black", weight=3]; 24.03/9.92 4132[label="compare1 xuu52000 xuu53000 True",fontsize=16,color="black",shape="box"];4132 -> 4159[label="",style="solid", color="black", weight=3]; 24.03/9.92 3566 -> 2452[label="",style="dashed", color="red", weight=0]; 24.03/9.92 3566[label="primPlusNat xuu55200 xuu13600",fontsize=16,color="magenta"];3566 -> 4091[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3566 -> 4092[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 3831[label="FiniteMap.mkBalBranch6Double_R (Left xuu400) xuu41 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 FiniteMap.EmptyFM) xuu44 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 FiniteMap.EmptyFM) xuu44",fontsize=16,color="black",shape="box"];3831 -> 4093[label="",style="solid", color="black", weight=3]; 24.03/9.92 3832[label="FiniteMap.mkBalBranch6Double_R (Left xuu400) xuu41 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 (FiniteMap.Branch xuu5540 xuu5541 xuu5542 xuu5543 xuu5544)) xuu44 (FiniteMap.Branch xuu550 xuu551 xuu552 xuu553 (FiniteMap.Branch xuu5540 xuu5541 xuu5542 xuu5543 xuu5544)) xuu44",fontsize=16,color="black",shape="box"];3832 -> 4094[label="",style="solid", color="black", weight=3]; 24.03/9.92 4303[label="Left xuu400",fontsize=16,color="green",shape="box"];4304[label="xuu44",fontsize=16,color="green",shape="box"];4305[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4306[label="xuu554",fontsize=16,color="green",shape="box"];4307[label="xuu41",fontsize=16,color="green",shape="box"];4308[label="xuu440",fontsize=16,color="green",shape="box"];4309[label="xuu444",fontsize=16,color="green",shape="box"];4310[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4311[label="xuu4434",fontsize=16,color="green",shape="box"];4312[label="xuu441",fontsize=16,color="green",shape="box"];4313[label="Left xuu400",fontsize=16,color="green",shape="box"];4314[label="xuu4433",fontsize=16,color="green",shape="box"];4315[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4316[label="xuu55",fontsize=16,color="green",shape="box"];4317[label="xuu41",fontsize=16,color="green",shape="box"];4056[label="FiniteMap.mkBalBranch6Double_R (Right xuu400) xuu41 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 FiniteMap.EmptyFM) xuu44 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 FiniteMap.EmptyFM) xuu44",fontsize=16,color="black",shape="box"];4056 -> 4099[label="",style="solid", color="black", weight=3]; 24.03/9.92 4057[label="FiniteMap.mkBalBranch6Double_R (Right xuu400) xuu41 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 (FiniteMap.Branch xuu4740 xuu4741 xuu4742 xuu4743 xuu4744)) xuu44 (FiniteMap.Branch xuu470 xuu471 xuu472 xuu473 (FiniteMap.Branch xuu4740 xuu4741 xuu4742 xuu4743 xuu4744)) xuu44",fontsize=16,color="black",shape="box"];4057 -> 4100[label="",style="solid", color="black", weight=3]; 24.03/9.92 4318[label="Right xuu400",fontsize=16,color="green",shape="box"];4319[label="xuu44",fontsize=16,color="green",shape="box"];4320[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4321[label="xuu474",fontsize=16,color="green",shape="box"];4322[label="xuu41",fontsize=16,color="green",shape="box"];4323[label="xuu440",fontsize=16,color="green",shape="box"];4324[label="xuu444",fontsize=16,color="green",shape="box"];4325[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4326[label="xuu4434",fontsize=16,color="green",shape="box"];4327[label="xuu441",fontsize=16,color="green",shape="box"];4328[label="Right xuu400",fontsize=16,color="green",shape="box"];4329[label="xuu4433",fontsize=16,color="green",shape="box"];4330[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4331[label="xuu47",fontsize=16,color="green",shape="box"];4332[label="xuu41",fontsize=16,color="green",shape="box"];4150[label="compare0 xuu52000 xuu53000 otherwise",fontsize=16,color="black",shape="box"];4150 -> 4333[label="",style="solid", color="black", weight=3]; 24.03/9.92 4151[label="LT",fontsize=16,color="green",shape="box"];4152[label="compare0 xuu52000 xuu53000 otherwise",fontsize=16,color="black",shape="box"];4152 -> 4334[label="",style="solid", color="black", weight=3]; 24.03/9.92 4153[label="LT",fontsize=16,color="green",shape="box"];4154[label="compare0 xuu52000 xuu53000 otherwise",fontsize=16,color="black",shape="box"];4154 -> 4335[label="",style="solid", color="black", weight=3]; 24.03/9.92 4155[label="LT",fontsize=16,color="green",shape="box"];4156[label="compare0 xuu52000 xuu53000 otherwise",fontsize=16,color="black",shape="box"];4156 -> 4336[label="",style="solid", color="black", weight=3]; 24.03/9.92 4157[label="LT",fontsize=16,color="green",shape="box"];4158[label="compare0 xuu52000 xuu53000 otherwise",fontsize=16,color="black",shape="box"];4158 -> 4337[label="",style="solid", color="black", weight=3]; 24.03/9.92 4159[label="LT",fontsize=16,color="green",shape="box"];4091[label="xuu55200",fontsize=16,color="green",shape="box"];4092[label="xuu13600",fontsize=16,color="green",shape="box"];4093[label="error []",fontsize=16,color="red",shape="box"];4094 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4094[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu5540 xuu5541 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu550 xuu551 xuu553 xuu5543) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Left xuu400) xuu41 xuu5544 xuu44)",fontsize=16,color="magenta"];4094 -> 4252[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4094 -> 4253[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4094 -> 4254[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4094 -> 4255[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4094 -> 4256[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4099[label="error []",fontsize=16,color="red",shape="box"];4100 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4100[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu4740 xuu4741 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu470 xuu471 xuu473 xuu4743) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Right xuu400) xuu41 xuu4744 xuu44)",fontsize=16,color="magenta"];4100 -> 4267[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4100 -> 4268[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4100 -> 4269[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4100 -> 4270[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4100 -> 4271[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4333[label="compare0 xuu52000 xuu53000 True",fontsize=16,color="black",shape="box"];4333 -> 4359[label="",style="solid", color="black", weight=3]; 24.03/9.92 4334[label="compare0 xuu52000 xuu53000 True",fontsize=16,color="black",shape="box"];4334 -> 4360[label="",style="solid", color="black", weight=3]; 24.03/9.92 4335[label="compare0 xuu52000 xuu53000 True",fontsize=16,color="black",shape="box"];4335 -> 4361[label="",style="solid", color="black", weight=3]; 24.03/9.92 4336[label="compare0 xuu52000 xuu53000 True",fontsize=16,color="black",shape="box"];4336 -> 4362[label="",style="solid", color="black", weight=3]; 24.03/9.92 4337[label="compare0 xuu52000 xuu53000 True",fontsize=16,color="black",shape="box"];4337 -> 4363[label="",style="solid", color="black", weight=3]; 24.03/9.92 4252[label="xuu5540",fontsize=16,color="green",shape="box"];4253 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4253[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Left xuu400) xuu41 xuu5544 xuu44",fontsize=16,color="magenta"];4253 -> 4338[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4253 -> 4339[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4253 -> 4340[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4253 -> 4341[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4253 -> 4342[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4254[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4255 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4255[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu550 xuu551 xuu553 xuu5543",fontsize=16,color="magenta"];4255 -> 4343[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4255 -> 4344[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4255 -> 4345[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4255 -> 4346[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4255 -> 4347[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4256[label="xuu5541",fontsize=16,color="green",shape="box"];4267[label="xuu4740",fontsize=16,color="green",shape="box"];4268 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4268[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Right xuu400) xuu41 xuu4744 xuu44",fontsize=16,color="magenta"];4268 -> 4348[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4268 -> 4349[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4268 -> 4350[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4268 -> 4351[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4268 -> 4352[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4269[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4270 -> 4161[label="",style="dashed", color="red", weight=0]; 24.03/9.92 4270[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu470 xuu471 xuu473 xuu4743",fontsize=16,color="magenta"];4270 -> 4353[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4270 -> 4354[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4270 -> 4355[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4270 -> 4356[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4270 -> 4357[label="",style="dashed", color="magenta", weight=3]; 24.03/9.92 4271[label="xuu4741",fontsize=16,color="green",shape="box"];4359[label="GT",fontsize=16,color="green",shape="box"];4360[label="GT",fontsize=16,color="green",shape="box"];4361[label="GT",fontsize=16,color="green",shape="box"];4362[label="GT",fontsize=16,color="green",shape="box"];4363[label="GT",fontsize=16,color="green",shape="box"];4338[label="Left xuu400",fontsize=16,color="green",shape="box"];4339[label="xuu44",fontsize=16,color="green",shape="box"];4340[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4341[label="xuu5544",fontsize=16,color="green",shape="box"];4342[label="xuu41",fontsize=16,color="green",shape="box"];4343[label="xuu550",fontsize=16,color="green",shape="box"];4344[label="xuu5543",fontsize=16,color="green",shape="box"];4345[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4346[label="xuu553",fontsize=16,color="green",shape="box"];4347[label="xuu551",fontsize=16,color="green",shape="box"];4348[label="Right xuu400",fontsize=16,color="green",shape="box"];4349[label="xuu44",fontsize=16,color="green",shape="box"];4350[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4351[label="xuu4744",fontsize=16,color="green",shape="box"];4352[label="xuu41",fontsize=16,color="green",shape="box"];4353[label="xuu470",fontsize=16,color="green",shape="box"];4354[label="xuu4743",fontsize=16,color="green",shape="box"];4355[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4356[label="xuu473",fontsize=16,color="green",shape="box"];4357[label="xuu471",fontsize=16,color="green",shape="box"];} 24.03/9.92 24.03/9.92 ---------------------------------------- 24.03/9.92 24.03/9.92 (16) 24.03/9.92 Complex Obligation (AND) 24.03/9.92 24.03/9.92 ---------------------------------------- 24.03/9.92 24.03/9.92 (17) 24.03/9.92 Obligation: 24.03/9.92 Q DP problem: 24.03/9.92 The TRS P consists of the following rules: 24.03/9.92 24.03/9.92 new_primCmpNat(Succ(xuu5200), Succ(xuu5300)) -> new_primCmpNat(xuu5200, xuu5300) 24.03/9.92 24.03/9.92 R is empty. 24.03/9.92 Q is empty. 24.03/9.92 We have to consider all minimal (P,Q,R)-chains. 24.03/9.92 ---------------------------------------- 24.03/9.92 24.03/9.92 (18) QDPSizeChangeProof (EQUIVALENT) 24.03/9.92 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 24.03/9.92 24.03/9.92 From the DPs we obtained the following set of size-change graphs: 24.03/9.92 *new_primCmpNat(Succ(xuu5200), Succ(xuu5300)) -> new_primCmpNat(xuu5200, xuu5300) 24.03/9.92 The graph contains the following edges 1 > 1, 2 > 2 24.03/9.92 24.03/9.92 24.03/9.92 ---------------------------------------- 24.03/9.92 24.03/9.92 (19) 24.03/9.92 YES 24.03/9.92 24.03/9.92 ---------------------------------------- 24.03/9.92 24.03/9.92 (20) 24.03/9.92 Obligation: 24.03/9.92 Q DP problem: 24.03/9.92 The TRS P consists of the following rules: 24.03/9.92 24.03/9.92 new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, h, ba, bb) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs17(new_compare23(Left(xuu22), Left(xuu17), new_esEs29(xuu22, xuu17, h), h, ba), GT), h, ba, bb) 24.03/9.92 new_addToFM_C(xuu3, Branch(Right(xuu400), xuu41, xuu42, xuu43, xuu44), Left(xuu5000), xuu501, bc, bd, be) -> new_addToFM_C20(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Left(xuu5000), Right(xuu400), False, bc, bd), LT), bc, bd, be) 24.03/9.92 new_addToFM_C(xuu3, Branch(Left(xuu400), xuu41, xuu42, xuu43, xuu44), Left(xuu5000), xuu501, bc, bd, be) -> new_addToFM_C2(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Left(xuu5000), Left(xuu400), new_esEs30(xuu5000, xuu400, bc), bc, bd), LT), bc, bd, be) 24.03/9.92 new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu16, xuu20, Left(xuu22), xuu23, h, ba, bb) 24.03/9.92 new_addToFM_C21(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, bc, bd, be) -> new_addToFM_C(xuu3, xuu43, Right(xuu5000), xuu501, bc, bd, be) 24.03/9.92 new_addToFM_C(xuu3, Branch(Left(xuu400), xuu41, xuu42, xuu43, xuu44), Right(xuu5000), xuu501, bc, bd, be) -> new_addToFM_C21(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Right(xuu5000), Left(xuu400), False, bc, bd), LT), bc, bd, be) 24.03/9.92 new_addToFM_C(xuu3, Branch(Right(xuu400), xuu41, xuu42, xuu43, xuu44), Right(xuu5000), xuu501, bc, bd, be) -> new_addToFM_C22(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Right(xuu5000), Right(xuu400), new_esEs31(xuu5000, xuu400, bd), bc, bd), LT), bc, bd, be) 24.03/9.92 new_addToFM_C21(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, bc, bd, be) -> new_addToFM_C11(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Right(xuu5000), Left(xuu400), False, bc, bd), GT), bc, bd, be) 24.03/9.92 new_addToFM_C11(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, bc, bd, be) -> new_addToFM_C(xuu3, xuu44, Right(xuu5000), xuu501, bc, bd, be) 24.03/9.92 new_addToFM_C22(xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, xuu41, xuu42, True, bf, bg, bh) -> new_addToFM_C(xuu35, xuu39, Right(xuu41), xuu42, bf, bg, bh) 24.03/9.92 new_addToFM_C22(xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, xuu41, xuu42, False, bf, bg, bh) -> new_addToFM_C12(xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, xuu41, xuu42, new_esEs17(new_compare23(Right(xuu41), Right(xuu36), new_esEs32(xuu41, xuu36, bg), bf, bg), GT), bf, bg, bh) 24.03/9.92 new_addToFM_C12(xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, xuu41, xuu42, True, bf, bg, bh) -> new_addToFM_C(xuu35, xuu40, Right(xuu41), xuu42, bf, bg, bh) 24.03/9.92 new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu16, xuu21, Left(xuu22), xuu23, h, ba, bb) 24.03/9.92 new_addToFM_C20(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, bc, bd, be) -> new_addToFM_C(xuu3, xuu43, Left(xuu5000), xuu501, bc, bd, be) 24.03/9.92 new_addToFM_C20(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, bc, bd, be) -> new_addToFM_C10(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Left(xuu5000), Right(xuu400), False, bc, bd), GT), bc, bd, be) 24.03/9.92 new_addToFM_C10(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, bc, bd, be) -> new_addToFM_C(xuu3, xuu44, Left(xuu5000), xuu501, bc, bd, be) 24.03/9.92 24.03/9.92 The TRS R consists of the following rules: 24.03/9.92 24.03/9.92 new_lt20(xuu52000, xuu53000, ty_Double) -> new_lt12(xuu52000, xuu53000) 24.03/9.92 new_ltEs7(xuu52001, xuu53001, app(ty_[], fd)) -> new_ltEs11(xuu52001, xuu53001, fd) 24.03/9.92 new_esEs20(xuu50001, xuu4001, ty_Int) -> new_esEs12(xuu50001, xuu4001) 24.03/9.92 new_ltEs20(xuu5200, xuu5300, app(ty_[], dac)) -> new_ltEs11(xuu5200, xuu5300, dac) 24.03/9.92 new_esEs31(xuu5000, xuu400, app(ty_[], cae)) -> new_esEs13(xuu5000, xuu400, cae) 24.03/9.92 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.03/9.92 new_compare32(xuu52000, xuu53000, app(app(ty_Either, cgd), cge)) -> new_compare9(xuu52000, xuu53000, cgd, cge) 24.03/9.92 new_compare16(Double(xuu52000, Pos(xuu520010)), Double(xuu53000, Pos(xuu530010))) -> new_compare8(new_sr0(xuu52000, Pos(xuu530010)), new_sr0(Pos(xuu520010), xuu53000)) 24.03/9.92 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 24.03/9.92 new_primCmpInt(Neg(Succ(xuu5200)), Pos(xuu530)) -> LT 24.03/9.92 new_primPlusNat0(Zero, Zero) -> Zero 24.03/9.92 new_pePe(True, xuu210) -> True 24.03/9.92 new_esEs31(xuu5000, xuu400, ty_Ordering) -> new_esEs17(xuu5000, xuu400) 24.03/9.92 new_esEs32(xuu41, xuu36, ty_Integer) -> new_esEs14(xuu41, xuu36) 24.03/9.92 new_ltEs4(xuu5200, xuu5300, dg) -> new_fsEs(new_compare7(xuu5200, xuu5300, dg)) 24.03/9.92 new_esEs27(xuu50000, xuu4000, ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.03/9.92 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.03/9.92 new_esEs21(xuu50002, xuu4002, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs7(xuu50002, xuu4002, bbf, bbg, bbh) 24.03/9.92 new_esEs29(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) 24.03/9.92 new_compare112(xuu52000, xuu53000, True, eh) -> LT 24.03/9.92 new_lt8(xuu520, xuu530) -> new_esEs17(new_compare8(xuu520, xuu530), LT) 24.03/9.92 new_ltEs13(Just(xuu52000), Just(xuu53000), app(ty_Maybe, dbh)) -> new_ltEs13(xuu52000, xuu53000, dbh) 24.03/9.92 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Double) -> new_ltEs14(xuu52000, xuu53000) 24.03/9.92 new_compare(:(xuu52000, xuu52001), [], bee) -> GT 24.03/9.92 new_esEs4(Left(xuu50000), Right(xuu4000), bhg, bhh) -> False 24.03/9.92 new_esEs4(Right(xuu50000), Left(xuu4000), bhg, bhh) -> False 24.03/9.92 new_esEs25(xuu52000, xuu53000, app(ty_[], dcg)) -> new_esEs13(xuu52000, xuu53000, dcg) 24.03/9.92 new_esEs25(xuu52000, xuu53000, ty_Ordering) -> new_esEs17(xuu52000, xuu53000) 24.03/9.92 new_compare25(xuu52000, xuu53000, False) -> new_compare111(xuu52000, xuu53000, new_ltEs8(xuu52000, xuu53000)) 24.03/9.92 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 24.03/9.92 new_primCmpInt(Pos(Zero), Neg(Succ(xuu5300))) -> GT 24.03/9.92 new_ltEs12(Left(xuu52000), Left(xuu53000), app(ty_Maybe, bfb), bef) -> new_ltEs13(xuu52000, xuu53000, bfb) 24.03/9.92 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(app(ty_@2, bgf), bgg)) -> new_ltEs6(xuu52000, xuu53000, bgf, bgg) 24.03/9.92 new_esEs21(xuu50002, xuu4002, app(app(ty_@2, bcd), bce)) -> new_esEs6(xuu50002, xuu4002, bcd, bce) 24.03/9.92 new_lt19(xuu52001, xuu53001, app(app(ty_Either, deb), dec)) -> new_lt10(xuu52001, xuu53001, deb, dec) 24.03/9.92 new_primCmpInt(Neg(Succ(xuu5200)), Neg(xuu530)) -> new_primCmpNat0(xuu530, Succ(xuu5200)) 24.03/9.92 new_ltEs12(Left(xuu52000), Right(xuu53000), bga, bef) -> True 24.03/9.92 new_esEs20(xuu50001, xuu4001, ty_Double) -> new_esEs11(xuu50001, xuu4001) 24.03/9.92 new_esEs20(xuu50001, xuu4001, app(ty_Ratio, bag)) -> new_esEs9(xuu50001, xuu4001, bag) 24.03/9.92 new_esEs10(False, True) -> False 24.03/9.92 new_esEs10(True, False) -> False 24.03/9.92 new_primMulNat0(Succ(xuu5000000), Succ(xuu400100)) -> new_primPlusNat1(new_primMulNat0(xuu5000000, Succ(xuu400100)), xuu400100) 24.03/9.92 new_ltEs14(xuu5200, xuu5300) -> new_fsEs(new_compare16(xuu5200, xuu5300)) 24.03/9.92 new_compare18(xuu52000, xuu53000, True) -> LT 24.03/9.92 new_ltEs13(Just(xuu52000), Just(xuu53000), app(app(app(ty_@3, dcd), dce), dcf)) -> new_ltEs17(xuu52000, xuu53000, dcd, dce, dcf) 24.03/9.92 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs17(xuu52000, xuu53000, bha, bhb, bhc) 24.03/9.92 new_esEs19(xuu50000, xuu4000, ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.03/9.92 new_esEs27(xuu50000, xuu4000, ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.03/9.92 new_ltEs20(xuu5200, xuu5300, ty_Char) -> new_ltEs18(xuu5200, xuu5300) 24.03/9.92 new_esEs30(xuu5000, xuu400, app(ty_Ratio, beb)) -> new_esEs9(xuu5000, xuu400, beb) 24.03/9.92 new_ltEs18(xuu5200, xuu5300) -> new_fsEs(new_compare12(xuu5200, xuu5300)) 24.03/9.92 new_esEs25(xuu52000, xuu53000, ty_Double) -> new_esEs11(xuu52000, xuu53000) 24.03/9.92 new_primCompAux0(xuu224, GT) -> GT 24.03/9.92 new_esEs15(Float(xuu50000, xuu50001), Float(xuu4000, xuu4001)) -> new_esEs12(new_sr0(xuu50000, xuu4001), new_sr0(xuu50001, xuu4000)) 24.03/9.92 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_@0) -> new_ltEs15(xuu52000, xuu53000) 24.03/9.92 new_esEs21(xuu50002, xuu4002, app(ty_[], bcb)) -> new_esEs13(xuu50002, xuu4002, bcb) 24.03/9.92 new_esEs19(xuu50000, xuu4000, ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.03/9.92 new_ltEs19(xuu5200, xuu5300, app(ty_[], bee)) -> new_ltEs11(xuu5200, xuu5300, bee) 24.03/9.92 new_primEqInt(Pos(Succ(xuu500000)), Pos(Zero)) -> False 24.03/9.92 new_primEqInt(Pos(Zero), Pos(Succ(xuu40000))) -> False 24.03/9.92 new_esEs17(LT, LT) -> True 24.03/9.92 new_esEs19(xuu50000, xuu4000, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.03/9.92 new_esEs31(xuu5000, xuu400, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs7(xuu5000, xuu400, caa, cab, cac) 24.03/9.92 new_ltEs19(xuu5200, xuu5300, app(app(ty_@2, ee), ef)) -> new_ltEs6(xuu5200, xuu5300, ee, ef) 24.03/9.92 new_esEs31(xuu5000, xuu400, ty_Double) -> new_esEs11(xuu5000, xuu400) 24.03/9.92 new_primEqNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 24.03/9.92 new_esEs27(xuu50000, xuu4000, ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.03/9.92 new_esEs29(xuu22, xuu17, app(ty_Ratio, bdc)) -> new_esEs9(xuu22, xuu17, bdc) 24.03/9.92 new_esEs26(xuu52001, xuu53001, ty_Integer) -> new_esEs14(xuu52001, xuu53001) 24.03/9.92 new_ltEs7(xuu52001, xuu53001, ty_Ordering) -> new_ltEs8(xuu52001, xuu53001) 24.03/9.92 new_esEs19(xuu50000, xuu4000, ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.03/9.92 new_compare32(xuu52000, xuu53000, app(ty_Maybe, cgf)) -> new_compare28(xuu52000, xuu53000, cgf) 24.03/9.92 new_primCompAux0(xuu224, LT) -> LT 24.03/9.92 new_esEs31(xuu5000, xuu400, ty_Float) -> new_esEs15(xuu5000, xuu400) 24.03/9.92 new_esEs25(xuu52000, xuu53000, ty_Float) -> new_esEs15(xuu52000, xuu53000) 24.03/9.92 new_lt13(xuu52000, xuu53000) -> new_esEs17(new_compare13(xuu52000, xuu53000), LT) 24.03/9.92 new_compare31(Float(xuu52000, Pos(xuu520010)), Float(xuu53000, Pos(xuu530010))) -> new_compare8(new_sr0(xuu52000, Pos(xuu530010)), new_sr0(Pos(xuu520010), xuu53000)) 24.03/9.92 new_not(True) -> False 24.03/9.92 new_primCmpNat0(Zero, Zero) -> EQ 24.03/9.92 new_esEs30(xuu5000, xuu400, ty_Double) -> new_esEs11(xuu5000, xuu400) 24.03/9.92 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Ordering, bef) -> new_ltEs8(xuu52000, xuu53000) 24.03/9.92 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Char, bef) -> new_ltEs18(xuu52000, xuu53000) 24.03/9.92 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Integer) -> new_ltEs9(xuu52000, xuu53000) 24.03/9.92 new_esEs29(xuu22, xuu17, app(ty_[], bdd)) -> new_esEs13(xuu22, xuu17, bdd) 24.03/9.92 new_esEs31(xuu5000, xuu400, ty_Int) -> new_esEs12(xuu5000, xuu400) 24.03/9.92 new_esEs5(Just(xuu50000), Just(xuu4000), ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.03/9.92 new_esEs25(xuu52000, xuu53000, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs7(xuu52000, xuu53000, ddf, ddg, ddh) 24.03/9.92 new_esEs25(xuu52000, xuu53000, ty_Int) -> new_esEs12(xuu52000, xuu53000) 24.03/9.92 new_esEs20(xuu50001, xuu4001, ty_Ordering) -> new_esEs17(xuu50001, xuu4001) 24.03/9.92 new_ltEs19(xuu5200, xuu5300, ty_Char) -> new_ltEs18(xuu5200, xuu5300) 24.03/9.92 new_esEs8(@0, @0) -> True 24.03/9.92 new_lt6(xuu52000, xuu53000) -> new_esEs17(new_compare14(xuu52000, xuu53000), LT) 24.03/9.92 new_compare7(:%(xuu52000, xuu52001), :%(xuu53000, xuu53001), ty_Int) -> new_compare8(new_sr0(xuu52000, xuu53001), new_sr0(xuu53000, xuu52001)) 24.03/9.92 new_compare32(xuu52000, xuu53000, ty_Char) -> new_compare12(xuu52000, xuu53000) 24.03/9.92 new_primEqNat0(Succ(xuu500000), Zero) -> False 24.03/9.92 new_primEqNat0(Zero, Succ(xuu40000)) -> False 24.03/9.92 new_esEs19(xuu50000, xuu4000, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs7(xuu50000, xuu4000, hb, hc, hd) 24.03/9.92 new_lt19(xuu52001, xuu53001, ty_Double) -> new_lt12(xuu52001, xuu53001) 24.03/9.92 new_esEs24(xuu50000, xuu4000, ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.03/9.93 new_esEs13([], [], bhd) -> True 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs7(xuu50000, xuu4000, cfa, cfb, cfc) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.03/9.93 new_compare8(xuu52, xuu53) -> new_primCmpInt(xuu52, xuu53) 24.03/9.93 new_compare10(xuu184, xuu185, True, ca, cb) -> LT 24.03/9.93 new_esEs21(xuu50002, xuu4002, ty_Ordering) -> new_esEs17(xuu50002, xuu4002) 24.03/9.93 new_ltEs20(xuu5200, xuu5300, ty_Int) -> new_ltEs10(xuu5200, xuu5300) 24.03/9.93 new_compare23(Left(xuu5200), Right(xuu5300), False, che, chf) -> LT 24.03/9.93 new_ltEs8(GT, LT) -> False 24.03/9.93 new_lt20(xuu52000, xuu53000, app(ty_[], dcg)) -> new_lt9(xuu52000, xuu53000, dcg) 24.03/9.93 new_compare27(xuu52000, xuu53000, False, fa, fb) -> new_compare15(xuu52000, xuu53000, new_ltEs6(xuu52000, xuu53000, fa, fb), fa, fb) 24.03/9.93 new_esEs17(EQ, GT) -> False 24.03/9.93 new_esEs17(GT, EQ) -> False 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), app(app(ty_@2, cee), cef), bhh) -> new_esEs6(xuu50000, xuu4000, cee, cef) 24.03/9.93 new_lt5(xuu52000, xuu53000, app(ty_Ratio, fc)) -> new_lt15(xuu52000, xuu53000, fc) 24.03/9.93 new_esEs18(xuu52000, xuu53000, ty_Double) -> new_esEs11(xuu52000, xuu53000) 24.03/9.93 new_esEs26(xuu52001, xuu53001, ty_Ordering) -> new_esEs17(xuu52001, xuu53001) 24.03/9.93 new_ltEs21(xuu52002, xuu53002, ty_Float) -> new_ltEs16(xuu52002, xuu53002) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, app(app(ty_@2, ga), gb)) -> new_ltEs6(xuu52001, xuu53001, ga, gb) 24.03/9.93 new_esEs32(xuu41, xuu36, ty_Char) -> new_esEs16(xuu41, xuu36) 24.03/9.93 new_compare15(xuu52000, xuu53000, True, fa, fb) -> LT 24.03/9.93 new_compare6(Integer(xuu52000), Integer(xuu53000)) -> new_primCmpInt(xuu52000, xuu53000) 24.03/9.93 new_esEs32(xuu41, xuu36, ty_Bool) -> new_esEs10(xuu41, xuu36) 24.03/9.93 new_esEs26(xuu52001, xuu53001, ty_Bool) -> new_esEs10(xuu52001, xuu53001) 24.03/9.93 new_primCmpInt(Pos(Succ(xuu5200)), Neg(xuu530)) -> GT 24.03/9.93 new_ltEs20(xuu5200, xuu5300, ty_Ordering) -> new_ltEs8(xuu5200, xuu5300) 24.03/9.93 new_ltEs21(xuu52002, xuu53002, app(app(ty_@2, dfg), dfh)) -> new_ltEs6(xuu52002, xuu53002, dfg, dfh) 24.03/9.93 new_compare31(Float(xuu52000, Neg(xuu520010)), Float(xuu53000, Neg(xuu530010))) -> new_compare8(new_sr0(xuu52000, Neg(xuu530010)), new_sr0(Neg(xuu520010), xuu53000)) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(ty_[], cfe)) -> new_esEs13(xuu50000, xuu4000, cfe) 24.03/9.93 new_ltEs5(False, True) -> True 24.03/9.93 new_ltEs8(GT, EQ) -> False 24.03/9.93 new_compare110(xuu191, xuu192, True, bec, bed) -> LT 24.03/9.93 new_lt11(xuu52000, xuu53000, eh) -> new_esEs17(new_compare28(xuu52000, xuu53000, eh), LT) 24.03/9.93 new_esEs29(xuu22, xuu17, ty_Float) -> new_esEs15(xuu22, xuu17) 24.03/9.93 new_esEs29(xuu22, xuu17, ty_Double) -> new_esEs11(xuu22, xuu17) 24.03/9.93 new_esEs26(xuu52001, xuu53001, ty_Char) -> new_esEs16(xuu52001, xuu53001) 24.03/9.93 new_esEs13(:(xuu50000, xuu50001), :(xuu4000, xuu4001), bhd) -> new_asAs(new_esEs24(xuu50000, xuu4000, bhd), new_esEs13(xuu50001, xuu4001, bhd)) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, ty_Ordering) -> new_ltEs8(xuu5200, xuu5300) 24.03/9.93 new_esEs31(xuu5000, xuu400, ty_Integer) -> new_esEs14(xuu5000, xuu400) 24.03/9.93 new_esEs32(xuu41, xuu36, ty_Ordering) -> new_esEs17(xuu41, xuu36) 24.03/9.93 new_primCmpNat0(Zero, Succ(xuu5300)) -> LT 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), ty_@0, bhh) -> new_esEs8(xuu50000, xuu4000) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), app(ty_[], cec), bhh) -> new_esEs13(xuu50000, xuu4000, cec) 24.03/9.93 new_esEs11(Double(xuu50000, xuu50001), Double(xuu4000, xuu4001)) -> new_esEs12(new_sr0(xuu50000, xuu4001), new_sr0(xuu50001, xuu4000)) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_@2, dc), dd)) -> new_esEs6(xuu50000, xuu4000, dc, dd) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Bool) -> new_ltEs5(xuu52000, xuu53000) 24.03/9.93 new_esEs26(xuu52001, xuu53001, app(app(app(ty_@3, deh), dfa), dfb)) -> new_esEs7(xuu52001, xuu53001, deh, dfa, dfb) 24.03/9.93 new_esEs30(xuu5000, xuu400, ty_Int) -> new_esEs12(xuu5000, xuu400) 24.03/9.93 new_esEs18(xuu52000, xuu53000, ty_Int) -> new_esEs12(xuu52000, xuu53000) 24.03/9.93 new_compare24(xuu52000, xuu53000, False) -> new_compare18(xuu52000, xuu53000, new_ltEs5(xuu52000, xuu53000)) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Double) -> new_ltEs14(xuu52000, xuu53000) 24.03/9.93 new_lt15(xuu52000, xuu53000, fc) -> new_esEs17(new_compare7(xuu52000, xuu53000, fc), LT) 24.03/9.93 new_esEs24(xuu50000, xuu4000, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.03/9.93 new_esEs32(xuu41, xuu36, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_esEs7(xuu41, xuu36, cbc, cbd, cbe) 24.03/9.93 new_esEs24(xuu50000, xuu4000, app(ty_[], cda)) -> new_esEs13(xuu50000, xuu4000, cda) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, app(ty_Ratio, dg)) -> new_ltEs4(xuu5200, xuu5300, dg) 24.03/9.93 new_sr(Integer(xuu530000), Integer(xuu520010)) -> Integer(new_primMulInt(xuu530000, xuu520010)) 24.03/9.93 new_primCmpNat0(Succ(xuu5200), Zero) -> GT 24.03/9.93 new_esEs30(xuu5000, xuu400, ty_Float) -> new_esEs15(xuu5000, xuu400) 24.03/9.93 new_pePe(False, xuu210) -> xuu210 24.03/9.93 new_ltEs20(xuu5200, xuu5300, app(ty_Maybe, daf)) -> new_ltEs13(xuu5200, xuu5300, daf) 24.03/9.93 new_esEs28(xuu50001, xuu4001, ty_Double) -> new_esEs11(xuu50001, xuu4001) 24.03/9.93 new_lt20(xuu52000, xuu53000, ty_Float) -> new_lt17(xuu52000, xuu53000) 24.03/9.93 new_lt5(xuu52000, xuu53000, app(ty_Maybe, eh)) -> new_lt11(xuu52000, xuu53000, eh) 24.03/9.93 new_compare32(xuu52000, xuu53000, ty_Bool) -> new_compare13(xuu52000, xuu53000) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), app(ty_[], dbe)) -> new_ltEs11(xuu52000, xuu53000, dbe) 24.03/9.93 new_esEs21(xuu50002, xuu4002, app(ty_Ratio, bca)) -> new_esEs9(xuu50002, xuu4002, bca) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, ty_Int) -> new_ltEs10(xuu5200, xuu5300) 24.03/9.93 new_esEs25(xuu52000, xuu53000, ty_Integer) -> new_esEs14(xuu52000, xuu53000) 24.03/9.93 new_esEs21(xuu50002, xuu4002, ty_Int) -> new_esEs12(xuu50002, xuu4002) 24.03/9.93 new_esEs21(xuu50002, xuu4002, app(app(ty_Either, bcf), bcg)) -> new_esEs4(xuu50002, xuu4002, bcf, bcg) 24.03/9.93 new_esEs18(xuu52000, xuu53000, ty_Ordering) -> new_esEs17(xuu52000, xuu53000) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), app(ty_[], beg), bef) -> new_ltEs11(xuu52000, xuu53000, beg) 24.03/9.93 new_esEs30(xuu5000, xuu400, ty_Ordering) -> new_esEs17(xuu5000, xuu400) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(ty_Maybe, cff)) -> new_esEs5(xuu50000, xuu4000, cff) 24.03/9.93 new_ltEs6(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), ee, ef) -> new_pePe(new_lt5(xuu52000, xuu53000, ee), new_asAs(new_esEs18(xuu52000, xuu53000, ee), new_ltEs7(xuu52001, xuu53001, ef))) 24.03/9.93 new_compare23(xuu520, xuu530, True, che, chf) -> EQ 24.03/9.93 new_esEs27(xuu50000, xuu4000, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.03/9.93 new_esEs28(xuu50001, xuu4001, app(ty_Ratio, eab)) -> new_esEs9(xuu50001, xuu4001, eab) 24.03/9.93 new_esEs28(xuu50001, xuu4001, ty_Char) -> new_esEs16(xuu50001, xuu4001) 24.03/9.93 new_primEqInt(Pos(Zero), Neg(Succ(xuu40000))) -> False 24.03/9.93 new_primEqInt(Neg(Zero), Pos(Succ(xuu40000))) -> False 24.03/9.93 new_compare11(xuu52000, xuu53000, True, eb, ec, ed) -> LT 24.03/9.93 new_ltEs21(xuu52002, xuu53002, ty_Char) -> new_ltEs18(xuu52002, xuu53002) 24.03/9.93 new_compare16(Double(xuu52000, Neg(xuu520010)), Double(xuu53000, Neg(xuu530010))) -> new_compare8(new_sr0(xuu52000, Neg(xuu530010)), new_sr0(Neg(xuu520010), xuu53000)) 24.03/9.93 new_esEs24(xuu50000, xuu4000, app(app(ty_@2, cdc), cdd)) -> new_esEs6(xuu50000, xuu4000, cdc, cdd) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), app(app(ty_Either, beh), bfa), bef) -> new_ltEs12(xuu52000, xuu53000, beh, bfa) 24.03/9.93 new_esEs26(xuu52001, xuu53001, app(ty_[], dea)) -> new_esEs13(xuu52001, xuu53001, dea) 24.03/9.93 new_esEs21(xuu50002, xuu4002, app(ty_Maybe, bcc)) -> new_esEs5(xuu50002, xuu4002, bcc) 24.03/9.93 new_esEs10(False, False) -> True 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Bool) -> new_ltEs5(xuu52000, xuu53000) 24.03/9.93 new_esEs5(Nothing, Nothing, cc) -> True 24.03/9.93 new_esEs31(xuu5000, xuu400, app(app(ty_Either, cba), cbb)) -> new_esEs4(xuu5000, xuu400, cba, cbb) 24.03/9.93 new_compare32(xuu52000, xuu53000, ty_Int) -> new_compare8(xuu52000, xuu53000) 24.03/9.93 new_lt5(xuu52000, xuu53000, ty_Bool) -> new_lt13(xuu52000, xuu53000) 24.03/9.93 new_esEs17(EQ, EQ) -> True 24.03/9.93 new_esEs18(xuu52000, xuu53000, ty_Char) -> new_esEs16(xuu52000, xuu53000) 24.03/9.93 new_ltEs20(xuu5200, xuu5300, app(app(ty_@2, dag), dah)) -> new_ltEs6(xuu5200, xuu5300, dag, dah) 24.03/9.93 new_primEqInt(Neg(Succ(xuu500000)), Neg(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 24.03/9.93 new_esEs5(Nothing, Just(xuu4000), cc) -> False 24.03/9.93 new_esEs5(Just(xuu50000), Nothing, cc) -> False 24.03/9.93 new_esEs23(xuu50001, xuu4001, ty_Int) -> new_esEs12(xuu50001, xuu4001) 24.03/9.93 new_esEs17(LT, EQ) -> False 24.03/9.93 new_esEs17(EQ, LT) -> False 24.03/9.93 new_lt19(xuu52001, xuu53001, ty_Bool) -> new_lt13(xuu52001, xuu53001) 24.03/9.93 new_primCmpInt(Neg(Zero), Pos(Succ(xuu5300))) -> LT 24.03/9.93 new_ltEs20(xuu5200, xuu5300, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_ltEs17(xuu5200, xuu5300, dbb, dbc, dbd) 24.03/9.93 new_ltEs16(xuu5200, xuu5300) -> new_fsEs(new_compare31(xuu5200, xuu5300)) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Int, bhh) -> new_esEs12(xuu50000, xuu4000) 24.03/9.93 new_lt5(xuu52000, xuu53000, ty_Float) -> new_lt17(xuu52000, xuu53000) 24.03/9.93 new_ltEs10(xuu5200, xuu5300) -> new_fsEs(new_compare8(xuu5200, xuu5300)) 24.03/9.93 new_primMulInt(Pos(xuu500000), Pos(xuu40010)) -> Pos(new_primMulNat0(xuu500000, xuu40010)) 24.03/9.93 new_lt17(xuu52000, xuu53000) -> new_esEs17(new_compare31(xuu52000, xuu53000), LT) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, app(ty_Ratio, gc)) -> new_ltEs4(xuu52001, xuu53001, gc) 24.03/9.93 new_esEs20(xuu50001, xuu4001, ty_Float) -> new_esEs15(xuu50001, xuu4001) 24.03/9.93 new_esEs13(:(xuu50000, xuu50001), [], bhd) -> False 24.03/9.93 new_esEs13([], :(xuu4000, xuu4001), bhd) -> False 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, cd), ce), cf)) -> new_esEs7(xuu50000, xuu4000, cd, ce, cf) 24.03/9.93 new_esEs26(xuu52001, xuu53001, app(app(ty_@2, dee), def)) -> new_esEs6(xuu52001, xuu53001, dee, def) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.03/9.93 new_lt19(xuu52001, xuu53001, ty_Float) -> new_lt17(xuu52001, xuu53001) 24.03/9.93 new_esEs32(xuu41, xuu36, app(ty_Maybe, cbh)) -> new_esEs5(xuu41, xuu36, cbh) 24.03/9.93 new_compare32(xuu52000, xuu53000, ty_Integer) -> new_compare6(xuu52000, xuu53000) 24.03/9.93 new_primMulNat0(Succ(xuu5000000), Zero) -> Zero 24.03/9.93 new_primMulNat0(Zero, Succ(xuu400100)) -> Zero 24.03/9.93 new_esEs29(xuu22, xuu17, ty_Integer) -> new_esEs14(xuu22, xuu17) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.03/9.93 new_ltEs15(xuu5200, xuu5300) -> new_fsEs(new_compare17(xuu5200, xuu5300)) 24.03/9.93 new_lt20(xuu52000, xuu53000, ty_Bool) -> new_lt13(xuu52000, xuu53000) 24.03/9.93 new_primPlusNat1(Succ(xuu1450), xuu400100) -> Succ(Succ(new_primPlusNat0(xuu1450, xuu400100))) 24.03/9.93 new_esEs17(LT, GT) -> False 24.03/9.93 new_esEs17(GT, LT) -> False 24.03/9.93 new_compare11(xuu52000, xuu53000, False, eb, ec, ed) -> GT 24.03/9.93 new_ltEs5(True, False) -> False 24.03/9.93 new_esEs32(xuu41, xuu36, app(ty_Ratio, cbf)) -> new_esEs9(xuu41, xuu36, cbf) 24.03/9.93 new_esEs18(xuu52000, xuu53000, app(ty_Ratio, fc)) -> new_esEs9(xuu52000, xuu53000, fc) 24.03/9.93 new_esEs32(xuu41, xuu36, ty_Int) -> new_esEs12(xuu41, xuu36) 24.03/9.93 new_esEs25(xuu52000, xuu53000, ty_@0) -> new_esEs8(xuu52000, xuu53000) 24.03/9.93 new_primPlusNat0(Succ(xuu55200), Zero) -> Succ(xuu55200) 24.03/9.93 new_primPlusNat0(Zero, Succ(xuu13600)) -> Succ(xuu13600) 24.03/9.93 new_ltEs21(xuu52002, xuu53002, ty_Int) -> new_ltEs10(xuu52002, xuu53002) 24.03/9.93 new_lt20(xuu52000, xuu53000, app(app(ty_Either, dch), dda)) -> new_lt10(xuu52000, xuu53000, dch, dda) 24.03/9.93 new_primPlusNat1(Zero, xuu400100) -> Succ(xuu400100) 24.03/9.93 new_esEs28(xuu50001, xuu4001, ty_Ordering) -> new_esEs17(xuu50001, xuu4001) 24.03/9.93 new_esEs29(xuu22, xuu17, ty_Ordering) -> new_esEs17(xuu22, xuu17) 24.03/9.93 new_esEs30(xuu5000, xuu400, ty_Char) -> new_esEs16(xuu5000, xuu400) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Float) -> new_ltEs16(xuu52000, xuu53000) 24.03/9.93 new_ltEs21(xuu52002, xuu53002, app(ty_Ratio, dga)) -> new_ltEs4(xuu52002, xuu53002, dga) 24.03/9.93 new_compare111(xuu52000, xuu53000, True) -> LT 24.03/9.93 new_ltEs7(xuu52001, xuu53001, ty_Int) -> new_ltEs10(xuu52001, xuu53001) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.03/9.93 new_esEs32(xuu41, xuu36, app(app(ty_Either, ccc), ccd)) -> new_esEs4(xuu41, xuu36, ccc, ccd) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Ordering) -> new_ltEs8(xuu52000, xuu53000) 24.03/9.93 new_compare32(xuu52000, xuu53000, app(ty_[], cgc)) -> new_compare(xuu52000, xuu53000, cgc) 24.03/9.93 new_esEs24(xuu50000, xuu4000, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs7(xuu50000, xuu4000, cce, ccf, ccg) 24.03/9.93 new_esEs26(xuu52001, xuu53001, ty_@0) -> new_esEs8(xuu52001, xuu53001) 24.03/9.93 new_esEs24(xuu50000, xuu4000, ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.03/9.93 new_lt19(xuu52001, xuu53001, app(ty_Maybe, ded)) -> new_lt11(xuu52001, xuu53001, ded) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.03/9.93 new_compare18(xuu52000, xuu53000, False) -> GT 24.03/9.93 new_ltEs21(xuu52002, xuu53002, ty_Double) -> new_ltEs14(xuu52002, xuu53002) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, ty_Char) -> new_ltEs18(xuu52001, xuu53001) 24.03/9.93 new_esEs9(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), beb) -> new_asAs(new_esEs22(xuu50000, xuu4000, beb), new_esEs23(xuu50001, xuu4001, beb)) 24.03/9.93 new_ltEs20(xuu5200, xuu5300, ty_Integer) -> new_ltEs9(xuu5200, xuu5300) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Integer, bef) -> new_ltEs9(xuu52000, xuu53000) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), app(app(ty_@2, bfc), bfd), bef) -> new_ltEs6(xuu52000, xuu53000, bfc, bfd) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, ty_Integer) -> new_ltEs9(xuu5200, xuu5300) 24.03/9.93 new_lt20(xuu52000, xuu53000, app(ty_Maybe, ddb)) -> new_lt11(xuu52000, xuu53000, ddb) 24.03/9.93 new_ltEs20(xuu5200, xuu5300, ty_Double) -> new_ltEs14(xuu5200, xuu5300) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, ty_@0) -> new_ltEs15(xuu52001, xuu53001) 24.03/9.93 new_compare12(Char(xuu52000), Char(xuu53000)) -> new_primCmpNat0(xuu52000, xuu53000) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_Either, de), df)) -> new_esEs4(xuu50000, xuu4000, de, df) 24.03/9.93 new_esEs28(xuu50001, xuu4001, ty_Integer) -> new_esEs14(xuu50001, xuu4001) 24.03/9.93 new_primMulInt(Neg(xuu500000), Neg(xuu40010)) -> Pos(new_primMulNat0(xuu500000, xuu40010)) 24.03/9.93 new_esEs32(xuu41, xuu36, ty_Float) -> new_esEs15(xuu41, xuu36) 24.03/9.93 new_primCmpInt(Pos(Zero), Pos(Succ(xuu5300))) -> new_primCmpNat0(Zero, Succ(xuu5300)) 24.03/9.93 new_esEs25(xuu52000, xuu53000, app(app(ty_@2, ddc), ddd)) -> new_esEs6(xuu52000, xuu53000, ddc, ddd) 24.03/9.93 new_lt7(xuu52000, xuu53000) -> new_esEs17(new_compare6(xuu52000, xuu53000), LT) 24.03/9.93 new_compare([], :(xuu53000, xuu53001), bee) -> LT 24.03/9.93 new_ltEs21(xuu52002, xuu53002, ty_@0) -> new_ltEs15(xuu52002, xuu53002) 24.03/9.93 new_esEs19(xuu50000, xuu4000, app(ty_Ratio, he)) -> new_esEs9(xuu50000, xuu4000, he) 24.03/9.93 new_lt5(xuu52000, xuu53000, app(app(ty_Either, dh), ea)) -> new_lt10(xuu52000, xuu53000, dh, ea) 24.03/9.93 new_esEs31(xuu5000, xuu400, app(ty_Ratio, cad)) -> new_esEs9(xuu5000, xuu400, cad) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Bool, bhh) -> new_esEs10(xuu50000, xuu4000) 24.03/9.93 new_esEs26(xuu52001, xuu53001, ty_Double) -> new_esEs11(xuu52001, xuu53001) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Maybe, db)) -> new_esEs5(xuu50000, xuu4000, db) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(ty_Maybe, bge)) -> new_ltEs13(xuu52000, xuu53000, bge) 24.03/9.93 new_compare26(xuu52000, xuu53000, True, eb, ec, ed) -> EQ 24.03/9.93 new_ltEs20(xuu5200, xuu5300, app(ty_Ratio, dba)) -> new_ltEs4(xuu5200, xuu5300, dba) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, app(app(app(ty_@3, gd), ge), gf)) -> new_ltEs17(xuu52001, xuu53001, gd, ge, gf) 24.03/9.93 new_ltEs21(xuu52002, xuu53002, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_ltEs17(xuu52002, xuu53002, dgb, dgc, dgd) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), app(app(ty_Either, dbf), dbg)) -> new_ltEs12(xuu52000, xuu53000, dbf, dbg) 24.03/9.93 new_esEs21(xuu50002, xuu4002, ty_Float) -> new_esEs15(xuu50002, xuu4002) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_@0, bef) -> new_ltEs15(xuu52000, xuu53000) 24.03/9.93 new_primMulInt(Pos(xuu500000), Neg(xuu40010)) -> Neg(new_primMulNat0(xuu500000, xuu40010)) 24.03/9.93 new_primMulInt(Neg(xuu500000), Pos(xuu40010)) -> Neg(new_primMulNat0(xuu500000, xuu40010)) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(app(ty_Either, bgc), bgd)) -> new_ltEs12(xuu52000, xuu53000, bgc, bgd) 24.03/9.93 new_esEs20(xuu50001, xuu4001, ty_@0) -> new_esEs8(xuu50001, xuu4001) 24.03/9.93 new_compare19(xuu52000, xuu53000, fa, fb) -> new_compare27(xuu52000, xuu53000, new_esEs6(xuu52000, xuu53000, fa, fb), fa, fb) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Double, bef) -> new_ltEs14(xuu52000, xuu53000) 24.03/9.93 new_compare32(xuu52000, xuu53000, ty_@0) -> new_compare17(xuu52000, xuu53000) 24.03/9.93 new_ltEs12(Right(xuu52000), Left(xuu53000), bga, bef) -> False 24.03/9.93 new_ltEs21(xuu52002, xuu53002, app(ty_Maybe, dff)) -> new_ltEs13(xuu52002, xuu53002, dff) 24.03/9.93 new_lt4(xuu52000, xuu53000) -> new_esEs17(new_compare12(xuu52000, xuu53000), LT) 24.03/9.93 new_compare32(xuu52000, xuu53000, ty_Double) -> new_compare16(xuu52000, xuu53000) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Float, bhh) -> new_esEs15(xuu50000, xuu4000) 24.03/9.93 new_esEs19(xuu50000, xuu4000, ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, ty_Double) -> new_ltEs14(xuu5200, xuu5300) 24.03/9.93 new_esEs24(xuu50000, xuu4000, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.03/9.93 new_ltEs5(False, False) -> True 24.03/9.93 new_esEs29(xuu22, xuu17, app(ty_Maybe, bde)) -> new_esEs5(xuu22, xuu17, bde) 24.03/9.93 new_esEs27(xuu50000, xuu4000, ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.03/9.93 new_esEs29(xuu22, xuu17, ty_Char) -> new_esEs16(xuu22, xuu17) 24.03/9.93 new_esEs29(xuu22, xuu17, ty_Bool) -> new_esEs10(xuu22, xuu17) 24.03/9.93 new_esEs29(xuu22, xuu17, ty_@0) -> new_esEs8(xuu22, xuu17) 24.03/9.93 new_lt5(xuu52000, xuu53000, ty_Ordering) -> new_lt6(xuu52000, xuu53000) 24.03/9.93 new_compare32(xuu52000, xuu53000, ty_Float) -> new_compare31(xuu52000, xuu53000) 24.03/9.93 new_esEs19(xuu50000, xuu4000, ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.03/9.93 new_esEs18(xuu52000, xuu53000, ty_Integer) -> new_esEs14(xuu52000, xuu53000) 24.03/9.93 new_lt20(xuu52000, xuu53000, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_lt18(xuu52000, xuu53000, ddf, ddg, ddh) 24.03/9.93 new_esEs22(xuu50000, xuu4000, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.03/9.93 new_esEs19(xuu50000, xuu4000, app(ty_Maybe, hg)) -> new_esEs5(xuu50000, xuu4000, hg) 24.03/9.93 new_esEs28(xuu50001, xuu4001, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs7(xuu50001, xuu4001, dhg, dhh, eaa) 24.03/9.93 new_ltEs8(GT, GT) -> True 24.03/9.93 new_esEs25(xuu52000, xuu53000, ty_Char) -> new_esEs16(xuu52000, xuu53000) 24.03/9.93 new_compare32(xuu52000, xuu53000, ty_Ordering) -> new_compare14(xuu52000, xuu53000) 24.03/9.93 new_ltEs21(xuu52002, xuu53002, app(app(ty_Either, dfd), dfe)) -> new_ltEs12(xuu52002, xuu53002, dfd, dfe) 24.03/9.93 new_asAs(True, xuu179) -> xuu179 24.03/9.93 new_esEs25(xuu52000, xuu53000, ty_Bool) -> new_esEs10(xuu52000, xuu53000) 24.03/9.93 new_lt19(xuu52001, xuu53001, app(ty_Ratio, deg)) -> new_lt15(xuu52001, xuu53001, deg) 24.03/9.93 new_esEs30(xuu5000, xuu400, ty_Integer) -> new_esEs14(xuu5000, xuu400) 24.03/9.93 new_compare10(xuu184, xuu185, False, ca, cb) -> GT 24.03/9.93 new_esEs27(xuu50000, xuu4000, app(ty_[], dha)) -> new_esEs13(xuu50000, xuu4000, dha) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, ty_Double) -> new_ltEs14(xuu52001, xuu53001) 24.03/9.93 new_lt19(xuu52001, xuu53001, app(app(app(ty_@3, deh), dfa), dfb)) -> new_lt18(xuu52001, xuu53001, deh, dfa, dfb) 24.03/9.93 new_esEs30(xuu5000, xuu400, ty_@0) -> new_esEs8(xuu5000, xuu400) 24.03/9.93 new_ltEs20(xuu5200, xuu5300, ty_@0) -> new_ltEs15(xuu5200, xuu5300) 24.03/9.93 new_ltEs21(xuu52002, xuu53002, ty_Integer) -> new_ltEs9(xuu52002, xuu53002) 24.03/9.93 new_ltEs8(EQ, EQ) -> True 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), app(app(ty_@2, dca), dcb)) -> new_ltEs6(xuu52000, xuu53000, dca, dcb) 24.03/9.93 new_esEs20(xuu50001, xuu4001, app(ty_Maybe, bba)) -> new_esEs5(xuu50001, xuu4001, bba) 24.03/9.93 new_esEs16(Char(xuu50000), Char(xuu4000)) -> new_primEqNat0(xuu50000, xuu4000) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, cdg), cdh), cea), bhh) -> new_esEs7(xuu50000, xuu4000, cdg, cdh, cea) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), app(app(ty_Either, ceg), ceh), bhh) -> new_esEs4(xuu50000, xuu4000, ceg, ceh) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(app(ty_@2, cfg), cfh)) -> new_esEs6(xuu50000, xuu4000, cfg, cfh) 24.03/9.93 new_esEs24(xuu50000, xuu4000, ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.03/9.93 new_esEs27(xuu50000, xuu4000, ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.03/9.93 new_ltEs20(xuu5200, xuu5300, ty_Float) -> new_ltEs16(xuu5200, xuu5300) 24.03/9.93 new_compare32(xuu52000, xuu53000, app(app(app(ty_@3, chb), chc), chd)) -> new_compare30(xuu52000, xuu53000, chb, chc, chd) 24.03/9.93 new_lt18(xuu52000, xuu53000, eb, ec, ed) -> new_esEs17(new_compare30(xuu52000, xuu53000, eb, ec, ed), LT) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, ty_@0) -> new_ltEs15(xuu5200, xuu5300) 24.03/9.93 new_lt19(xuu52001, xuu53001, ty_Int) -> new_lt8(xuu52001, xuu53001) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, app(app(app(ty_@3, chh), daa), dab)) -> new_ltEs17(xuu5200, xuu5300, chh, daa, dab) 24.03/9.93 new_primCmpInt(Pos(Succ(xuu5200)), Pos(xuu530)) -> new_primCmpNat0(Succ(xuu5200), xuu530) 24.03/9.93 new_compare23(Right(xuu5200), Right(xuu5300), False, che, chf) -> new_compare110(xuu5200, xuu5300, new_ltEs20(xuu5200, xuu5300, chf), che, chf) 24.03/9.93 new_esEs20(xuu50001, xuu4001, app(app(ty_Either, bbd), bbe)) -> new_esEs4(xuu50001, xuu4001, bbd, bbe) 24.03/9.93 new_ltEs8(EQ, GT) -> True 24.03/9.93 new_esEs19(xuu50000, xuu4000, app(app(ty_Either, bab), bac)) -> new_esEs4(xuu50000, xuu4000, bab, bac) 24.03/9.93 new_esEs27(xuu50000, xuu4000, app(app(ty_@2, dhc), dhd)) -> new_esEs6(xuu50000, xuu4000, dhc, dhd) 24.03/9.93 new_esEs28(xuu50001, xuu4001, ty_Float) -> new_esEs15(xuu50001, xuu4001) 24.03/9.93 new_ltEs11(xuu5200, xuu5300, bee) -> new_fsEs(new_compare(xuu5200, xuu5300, bee)) 24.03/9.93 new_primMulNat0(Zero, Zero) -> Zero 24.03/9.93 new_ltEs13(Nothing, Nothing, chg) -> True 24.03/9.93 new_esEs18(xuu52000, xuu53000, ty_@0) -> new_esEs8(xuu52000, xuu53000) 24.03/9.93 new_ltEs13(Just(xuu52000), Nothing, chg) -> False 24.03/9.93 new_compare28(xuu52000, xuu53000, eh) -> new_compare29(xuu52000, xuu53000, new_esEs5(xuu52000, xuu53000, eh), eh) 24.03/9.93 new_esEs24(xuu50000, xuu4000, app(ty_Maybe, cdb)) -> new_esEs5(xuu50000, xuu4000, cdb) 24.03/9.93 new_esEs30(xuu5000, xuu400, app(ty_Maybe, cc)) -> new_esEs5(xuu5000, xuu400, cc) 24.03/9.93 new_compare111(xuu52000, xuu53000, False) -> GT 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), app(ty_Ratio, bfe), bef) -> new_ltEs4(xuu52000, xuu53000, bfe) 24.03/9.93 new_compare32(xuu52000, xuu53000, app(ty_Ratio, cha)) -> new_compare7(xuu52000, xuu53000, cha) 24.03/9.93 new_compare9(xuu52000, xuu53000, dh, ea) -> new_compare23(xuu52000, xuu53000, new_esEs4(xuu52000, xuu53000, dh, ea), dh, ea) 24.03/9.93 new_esEs31(xuu5000, xuu400, ty_Char) -> new_esEs16(xuu5000, xuu400) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.03/9.93 new_esEs25(xuu52000, xuu53000, app(app(ty_Either, dch), dda)) -> new_esEs4(xuu52000, xuu53000, dch, dda) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, app(ty_Maybe, chg)) -> new_ltEs13(xuu5200, xuu5300, chg) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, ty_Float) -> new_ltEs16(xuu52001, xuu53001) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, ty_Integer) -> new_ltEs9(xuu52001, xuu53001) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, app(app(ty_Either, ff), fg)) -> new_ltEs12(xuu52001, xuu53001, ff, fg) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Ordering) -> new_ltEs8(xuu52000, xuu53000) 24.03/9.93 new_lt20(xuu52000, xuu53000, app(ty_Ratio, dde)) -> new_lt15(xuu52000, xuu53000, dde) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Double, bhh) -> new_esEs11(xuu50000, xuu4000) 24.03/9.93 new_esEs31(xuu5000, xuu400, ty_Bool) -> new_esEs10(xuu5000, xuu400) 24.03/9.93 new_esEs31(xuu5000, xuu400, app(ty_Maybe, caf)) -> new_esEs5(xuu5000, xuu400, caf) 24.03/9.93 new_compare26(xuu52000, xuu53000, False, eb, ec, ed) -> new_compare11(xuu52000, xuu53000, new_ltEs17(xuu52000, xuu53000, eb, ec, ed), eb, ec, ed) 24.03/9.93 new_compare31(Float(xuu52000, Pos(xuu520010)), Float(xuu53000, Neg(xuu530010))) -> new_compare8(new_sr0(xuu52000, Pos(xuu530010)), new_sr0(Neg(xuu520010), xuu53000)) 24.03/9.93 new_compare31(Float(xuu52000, Neg(xuu520010)), Float(xuu53000, Pos(xuu530010))) -> new_compare8(new_sr0(xuu52000, Neg(xuu530010)), new_sr0(Pos(xuu520010), xuu53000)) 24.03/9.93 new_lt5(xuu52000, xuu53000, app(ty_[], eg)) -> new_lt9(xuu52000, xuu53000, eg) 24.03/9.93 new_lt10(xuu52000, xuu53000, dh, ea) -> new_esEs17(new_compare9(xuu52000, xuu53000, dh, ea), LT) 24.03/9.93 new_esEs20(xuu50001, xuu4001, ty_Integer) -> new_esEs14(xuu50001, xuu4001) 24.03/9.93 new_esEs25(xuu52000, xuu53000, app(ty_Maybe, ddb)) -> new_esEs5(xuu52000, xuu53000, ddb) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(ty_Ratio, bgh)) -> new_ltEs4(xuu52000, xuu53000, bgh) 24.03/9.93 new_lt16(xuu52000, xuu53000) -> new_esEs17(new_compare17(xuu52000, xuu53000), LT) 24.03/9.93 new_esEs21(xuu50002, xuu4002, ty_Char) -> new_esEs16(xuu50002, xuu4002) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(app(ty_Either, cga), cgb)) -> new_esEs4(xuu50000, xuu4000, cga, cgb) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, app(app(ty_Either, bga), bef)) -> new_ltEs12(xuu5200, xuu5300, bga, bef) 24.03/9.93 new_lt20(xuu52000, xuu53000, ty_Integer) -> new_lt7(xuu52000, xuu53000) 24.03/9.93 new_esEs21(xuu50002, xuu4002, ty_Bool) -> new_esEs10(xuu50002, xuu4002) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), app(ty_Ratio, ceb), bhh) -> new_esEs9(xuu50000, xuu4000, ceb) 24.03/9.93 new_esEs28(xuu50001, xuu4001, app(app(ty_@2, eae), eaf)) -> new_esEs6(xuu50001, xuu4001, eae, eaf) 24.03/9.93 new_ltEs8(LT, EQ) -> True 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), app(app(app(ty_@3, bff), bfg), bfh), bef) -> new_ltEs17(xuu52000, xuu53000, bff, bfg, bfh) 24.03/9.93 new_primCompAux0(xuu224, EQ) -> xuu224 24.03/9.93 new_esEs27(xuu50000, xuu4000, app(ty_Ratio, dgh)) -> new_esEs9(xuu50000, xuu4000, dgh) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), app(ty_Ratio, dcc)) -> new_ltEs4(xuu52000, xuu53000, dcc) 24.03/9.93 new_esEs18(xuu52000, xuu53000, app(ty_Maybe, eh)) -> new_esEs5(xuu52000, xuu53000, eh) 24.03/9.93 new_esEs29(xuu22, xuu17, app(app(ty_Either, bdh), bea)) -> new_esEs4(xuu22, xuu17, bdh, bea) 24.03/9.93 new_esEs17(GT, GT) -> True 24.03/9.93 new_primEqInt(Neg(Succ(xuu500000)), Neg(Zero)) -> False 24.03/9.93 new_primEqInt(Neg(Zero), Neg(Succ(xuu40000))) -> False 24.03/9.93 new_lt19(xuu52001, xuu53001, ty_Integer) -> new_lt7(xuu52001, xuu53001) 24.03/9.93 new_esEs20(xuu50001, xuu4001, ty_Bool) -> new_esEs10(xuu50001, xuu4001) 24.03/9.93 new_ltEs20(xuu5200, xuu5300, app(app(ty_Either, dad), dae)) -> new_ltEs12(xuu5200, xuu5300, dad, dae) 24.03/9.93 new_compare([], [], bee) -> EQ 24.03/9.93 new_esEs20(xuu50001, xuu4001, ty_Char) -> new_esEs16(xuu50001, xuu4001) 24.03/9.93 new_esEs28(xuu50001, xuu4001, ty_@0) -> new_esEs8(xuu50001, xuu4001) 24.03/9.93 new_primEqInt(Pos(Succ(xuu500000)), Pos(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 24.03/9.93 new_esEs18(xuu52000, xuu53000, ty_Float) -> new_esEs15(xuu52000, xuu53000) 24.03/9.93 new_compare24(xuu52000, xuu53000, True) -> EQ 24.03/9.93 new_ltEs8(LT, LT) -> True 24.03/9.93 new_compare16(Double(xuu52000, Pos(xuu520010)), Double(xuu53000, Neg(xuu530010))) -> new_compare8(new_sr0(xuu52000, Pos(xuu530010)), new_sr0(Neg(xuu520010), xuu53000)) 24.03/9.93 new_compare16(Double(xuu52000, Neg(xuu520010)), Double(xuu53000, Pos(xuu530010))) -> new_compare8(new_sr0(xuu52000, Neg(xuu530010)), new_sr0(Pos(xuu520010), xuu53000)) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Ratio, cg)) -> new_esEs9(xuu50000, xuu4000, cg) 24.03/9.93 new_lt19(xuu52001, xuu53001, app(ty_[], dea)) -> new_lt9(xuu52001, xuu53001, dea) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(ty_Ratio, cfd)) -> new_esEs9(xuu50000, xuu4000, cfd) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Int) -> new_ltEs10(xuu52000, xuu53000) 24.03/9.93 new_primEqInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> False 24.03/9.93 new_primEqInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> False 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Char) -> new_ltEs18(xuu52000, xuu53000) 24.03/9.93 new_lt5(xuu52000, xuu53000, ty_Double) -> new_lt12(xuu52000, xuu53000) 24.03/9.93 new_esEs28(xuu50001, xuu4001, app(ty_[], eac)) -> new_esEs13(xuu50001, xuu4001, eac) 24.03/9.93 new_primCmpInt(Neg(Zero), Neg(Succ(xuu5300))) -> new_primCmpNat0(Succ(xuu5300), Zero) 24.03/9.93 new_esEs30(xuu5000, xuu400, app(app(ty_Either, bhg), bhh)) -> new_esEs4(xuu5000, xuu400, bhg, bhh) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(ty_[], bgb)) -> new_ltEs11(xuu52000, xuu53000, bgb) 24.03/9.93 new_esEs24(xuu50000, xuu4000, app(app(ty_Either, cde), cdf)) -> new_esEs4(xuu50000, xuu4000, cde, cdf) 24.03/9.93 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 24.03/9.93 new_esEs18(xuu52000, xuu53000, app(app(ty_Either, dh), ea)) -> new_esEs4(xuu52000, xuu53000, dh, ea) 24.03/9.93 new_esEs28(xuu50001, xuu4001, app(ty_Maybe, ead)) -> new_esEs5(xuu50001, xuu4001, ead) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_[], da)) -> new_esEs13(xuu50000, xuu4000, da) 24.03/9.93 new_fsEs(xuu194) -> new_not(new_esEs17(xuu194, GT)) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, ty_Bool) -> new_ltEs5(xuu5200, xuu5300) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.03/9.93 new_esEs24(xuu50000, xuu4000, ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.03/9.93 new_esEs28(xuu50001, xuu4001, ty_Bool) -> new_esEs10(xuu50001, xuu4001) 24.03/9.93 new_esEs12(xuu5000, xuu400) -> new_primEqInt(xuu5000, xuu400) 24.03/9.93 new_esEs19(xuu50000, xuu4000, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.03/9.93 new_esEs24(xuu50000, xuu4000, ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.03/9.93 new_esEs29(xuu22, xuu17, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs7(xuu22, xuu17, bch, bda, bdb) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Bool, bef) -> new_ltEs5(xuu52000, xuu53000) 24.03/9.93 new_lt12(xuu52000, xuu53000) -> new_esEs17(new_compare16(xuu52000, xuu53000), LT) 24.03/9.93 new_esEs7(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), gg, gh, ha) -> new_asAs(new_esEs19(xuu50000, xuu4000, gg), new_asAs(new_esEs20(xuu50001, xuu4001, gh), new_esEs21(xuu50002, xuu4002, ha))) 24.03/9.93 new_not(False) -> True 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Int, bef) -> new_ltEs10(xuu52000, xuu53000) 24.03/9.93 new_esEs21(xuu50002, xuu4002, ty_@0) -> new_esEs8(xuu50002, xuu4002) 24.03/9.93 new_esEs20(xuu50001, xuu4001, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs7(xuu50001, xuu4001, bad, bae, baf) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, app(ty_Maybe, fh)) -> new_ltEs13(xuu52001, xuu53001, fh) 24.03/9.93 new_esEs30(xuu5000, xuu400, app(app(ty_@2, bhe), bhf)) -> new_esEs6(xuu5000, xuu400, bhe, bhf) 24.03/9.93 new_esEs32(xuu41, xuu36, app(ty_[], cbg)) -> new_esEs13(xuu41, xuu36, cbg) 24.03/9.93 new_primPlusNat0(Succ(xuu55200), Succ(xuu13600)) -> Succ(Succ(new_primPlusNat0(xuu55200, xuu13600))) 24.03/9.93 new_compare32(xuu52000, xuu53000, app(app(ty_@2, cgg), cgh)) -> new_compare19(xuu52000, xuu53000, cgg, cgh) 24.03/9.93 new_lt5(xuu52000, xuu53000, ty_Int) -> new_lt8(xuu52000, xuu53000) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_@0) -> new_ltEs15(xuu52000, xuu53000) 24.03/9.93 new_esEs30(xuu5000, xuu400, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs7(xuu5000, xuu400, gg, gh, ha) 24.03/9.93 new_esEs20(xuu50001, xuu4001, app(app(ty_@2, bbb), bbc)) -> new_esEs6(xuu50001, xuu4001, bbb, bbc) 24.03/9.93 new_esEs23(xuu50001, xuu4001, ty_Integer) -> new_esEs14(xuu50001, xuu4001) 24.03/9.93 new_compare27(xuu52000, xuu53000, True, fa, fb) -> EQ 24.03/9.93 new_compare25(xuu52000, xuu53000, True) -> EQ 24.03/9.93 new_lt19(xuu52001, xuu53001, ty_@0) -> new_lt16(xuu52001, xuu53001) 24.03/9.93 new_esEs10(True, True) -> True 24.03/9.93 new_esEs27(xuu50000, xuu4000, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs7(xuu50000, xuu4000, dge, dgf, dgg) 24.03/9.93 new_lt20(xuu52000, xuu53000, ty_Int) -> new_lt8(xuu52000, xuu53000) 24.03/9.93 new_esEs26(xuu52001, xuu53001, app(ty_Maybe, ded)) -> new_esEs5(xuu52001, xuu53001, ded) 24.03/9.93 new_lt20(xuu52000, xuu53000, ty_Char) -> new_lt4(xuu52000, xuu53000) 24.03/9.93 new_esEs18(xuu52000, xuu53000, ty_Bool) -> new_esEs10(xuu52000, xuu53000) 24.03/9.93 new_esEs29(xuu22, xuu17, app(app(ty_@2, bdf), bdg)) -> new_esEs6(xuu22, xuu17, bdf, bdg) 24.03/9.93 new_sr0(xuu50000, xuu4001) -> new_primMulInt(xuu50000, xuu4001) 24.03/9.93 new_lt5(xuu52000, xuu53000, ty_Integer) -> new_lt7(xuu52000, xuu53000) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), app(ty_Maybe, ced), bhh) -> new_esEs5(xuu50000, xuu4000, ced) 24.03/9.93 new_esEs30(xuu5000, xuu400, app(ty_[], bhd)) -> new_esEs13(xuu5000, xuu400, bhd) 24.03/9.93 new_esEs18(xuu52000, xuu53000, app(ty_[], eg)) -> new_esEs13(xuu52000, xuu53000, eg) 24.03/9.93 new_lt9(xuu52000, xuu53000, eg) -> new_esEs17(new_compare(xuu52000, xuu53000, eg), LT) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.03/9.93 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 24.03/9.93 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Char) -> new_ltEs18(xuu52000, xuu53000) 24.03/9.93 new_esEs26(xuu52001, xuu53001, app(ty_Ratio, deg)) -> new_esEs9(xuu52001, xuu53001, deg) 24.03/9.93 new_ltEs5(True, True) -> True 24.03/9.93 new_ltEs21(xuu52002, xuu53002, ty_Ordering) -> new_ltEs8(xuu52002, xuu53002) 24.03/9.93 new_esEs28(xuu50001, xuu4001, app(app(ty_Either, eag), eah)) -> new_esEs4(xuu50001, xuu4001, eag, eah) 24.03/9.93 new_lt5(xuu52000, xuu53000, ty_Char) -> new_lt4(xuu52000, xuu53000) 24.03/9.93 new_esEs28(xuu50001, xuu4001, ty_Int) -> new_esEs12(xuu50001, xuu4001) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Float) -> new_ltEs16(xuu52000, xuu53000) 24.03/9.93 new_compare23(Right(xuu5200), Left(xuu5300), False, che, chf) -> GT 24.03/9.93 new_esEs32(xuu41, xuu36, app(app(ty_@2, cca), ccb)) -> new_esEs6(xuu41, xuu36, cca, ccb) 24.03/9.93 new_esEs32(xuu41, xuu36, ty_@0) -> new_esEs8(xuu41, xuu36) 24.03/9.93 new_esEs25(xuu52000, xuu53000, app(ty_Ratio, dde)) -> new_esEs9(xuu52000, xuu53000, dde) 24.03/9.93 new_esEs18(xuu52000, xuu53000, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs7(xuu52000, xuu53000, eb, ec, ed) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Integer) -> new_ltEs9(xuu52000, xuu53000) 24.03/9.93 new_esEs26(xuu52001, xuu53001, app(app(ty_Either, deb), dec)) -> new_esEs4(xuu52001, xuu53001, deb, dec) 24.03/9.93 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 24.03/9.93 new_primCompAux1(xuu52000, xuu53000, xuu211, bee) -> new_primCompAux0(xuu211, new_compare32(xuu52000, xuu53000, bee)) 24.03/9.93 new_esEs30(xuu5000, xuu400, ty_Bool) -> new_esEs10(xuu5000, xuu400) 24.03/9.93 new_compare14(xuu52000, xuu53000) -> new_compare25(xuu52000, xuu53000, new_esEs17(xuu52000, xuu53000)) 24.03/9.93 new_compare17(@0, @0) -> EQ 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.03/9.93 new_esEs21(xuu50002, xuu4002, ty_Integer) -> new_esEs14(xuu50002, xuu4002) 24.03/9.93 new_primCmpNat0(Succ(xuu5200), Succ(xuu5300)) -> new_primCmpNat0(xuu5200, xuu5300) 24.03/9.93 new_compare29(xuu52000, xuu53000, False, eh) -> new_compare112(xuu52000, xuu53000, new_ltEs13(xuu52000, xuu53000, eh), eh) 24.03/9.93 new_compare29(xuu52000, xuu53000, True, eh) -> EQ 24.03/9.93 new_esEs19(xuu50000, xuu4000, ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.03/9.93 new_lt20(xuu52000, xuu53000, ty_@0) -> new_lt16(xuu52000, xuu53000) 24.03/9.93 new_esEs26(xuu52001, xuu53001, ty_Int) -> new_esEs12(xuu52001, xuu53001) 24.03/9.93 new_lt19(xuu52001, xuu53001, ty_Char) -> new_lt4(xuu52001, xuu53001) 24.03/9.93 new_esEs24(xuu50000, xuu4000, ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.03/9.93 new_esEs31(xuu5000, xuu400, ty_@0) -> new_esEs8(xuu5000, xuu400) 24.03/9.93 new_lt20(xuu52000, xuu53000, app(app(ty_@2, ddc), ddd)) -> new_lt14(xuu52000, xuu53000, ddc, ddd) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, ty_Bool) -> new_ltEs5(xuu52001, xuu53001) 24.03/9.93 new_esEs19(xuu50000, xuu4000, app(app(ty_@2, hh), baa)) -> new_esEs6(xuu50000, xuu4000, hh, baa) 24.03/9.93 new_esEs24(xuu50000, xuu4000, app(ty_Ratio, cch)) -> new_esEs9(xuu50000, xuu4000, cch) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Int) -> new_ltEs10(xuu52000, xuu53000) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Integer, bhh) -> new_esEs14(xuu50000, xuu4000) 24.03/9.93 new_compare15(xuu52000, xuu53000, False, fa, fb) -> GT 24.03/9.93 new_ltEs19(xuu5200, xuu5300, ty_Float) -> new_ltEs16(xuu5200, xuu5300) 24.03/9.93 new_esEs27(xuu50000, xuu4000, ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.03/9.93 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 24.03/9.93 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 24.03/9.93 new_ltEs21(xuu52002, xuu53002, ty_Bool) -> new_ltEs5(xuu52002, xuu53002) 24.03/9.93 new_lt5(xuu52000, xuu53000, app(app(ty_@2, fa), fb)) -> new_lt14(xuu52000, xuu53000, fa, fb) 24.03/9.93 new_compare110(xuu191, xuu192, False, bec, bed) -> GT 24.03/9.93 new_ltEs9(xuu5200, xuu5300) -> new_fsEs(new_compare6(xuu5200, xuu5300)) 24.03/9.93 new_esEs6(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), bhe, bhf) -> new_asAs(new_esEs27(xuu50000, xuu4000, bhe), new_esEs28(xuu50001, xuu4001, bhf)) 24.03/9.93 new_esEs27(xuu50000, xuu4000, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.03/9.93 new_primEqNat0(Zero, Zero) -> True 24.03/9.93 new_lt19(xuu52001, xuu53001, ty_Ordering) -> new_lt6(xuu52001, xuu53001) 24.03/9.93 new_esEs21(xuu50002, xuu4002, ty_Double) -> new_esEs11(xuu50002, xuu4002) 24.03/9.93 new_esEs18(xuu52000, xuu53000, app(app(ty_@2, fa), fb)) -> new_esEs6(xuu52000, xuu53000, fa, fb) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Ordering, bhh) -> new_esEs17(xuu50000, xuu4000) 24.03/9.93 new_lt5(xuu52000, xuu53000, ty_@0) -> new_lt16(xuu52000, xuu53000) 24.03/9.93 new_esEs32(xuu41, xuu36, ty_Double) -> new_esEs11(xuu41, xuu36) 24.03/9.93 new_ltEs8(LT, GT) -> True 24.03/9.93 new_esEs26(xuu52001, xuu53001, ty_Float) -> new_esEs15(xuu52001, xuu53001) 24.03/9.93 new_lt5(xuu52000, xuu53000, app(app(app(ty_@3, eb), ec), ed)) -> new_lt18(xuu52000, xuu53000, eb, ec, ed) 24.03/9.93 new_ltEs17(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), chh, daa, dab) -> new_pePe(new_lt20(xuu52000, xuu53000, chh), new_asAs(new_esEs25(xuu52000, xuu53000, chh), new_pePe(new_lt19(xuu52001, xuu53001, daa), new_asAs(new_esEs26(xuu52001, xuu53001, daa), new_ltEs21(xuu52002, xuu53002, dab))))) 24.03/9.93 new_esEs31(xuu5000, xuu400, app(app(ty_@2, cag), cah)) -> new_esEs6(xuu5000, xuu400, cag, cah) 24.03/9.93 new_esEs19(xuu50000, xuu4000, app(ty_[], hf)) -> new_esEs13(xuu50000, xuu4000, hf) 24.03/9.93 new_asAs(False, xuu179) -> False 24.03/9.93 new_ltEs20(xuu5200, xuu5300, ty_Bool) -> new_ltEs5(xuu5200, xuu5300) 24.03/9.93 new_ltEs8(EQ, LT) -> False 24.03/9.93 new_compare30(xuu52000, xuu53000, eb, ec, ed) -> new_compare26(xuu52000, xuu53000, new_esEs7(xuu52000, xuu53000, eb, ec, ed), eb, ec, ed) 24.03/9.93 new_compare13(xuu52000, xuu53000) -> new_compare24(xuu52000, xuu53000, new_esEs10(xuu52000, xuu53000)) 24.03/9.93 new_compare(:(xuu52000, xuu52001), :(xuu53000, xuu53001), bee) -> new_primCompAux1(xuu52000, xuu53000, new_compare(xuu52001, xuu53001, bee), bee) 24.03/9.93 new_lt20(xuu52000, xuu53000, ty_Ordering) -> new_lt6(xuu52000, xuu53000) 24.03/9.93 new_esEs27(xuu50000, xuu4000, app(ty_Maybe, dhb)) -> new_esEs5(xuu50000, xuu4000, dhb) 24.03/9.93 new_esEs22(xuu50000, xuu4000, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.03/9.93 new_ltEs21(xuu52002, xuu53002, app(ty_[], dfc)) -> new_ltEs11(xuu52002, xuu53002, dfc) 24.03/9.93 new_esEs14(Integer(xuu50000), Integer(xuu4000)) -> new_primEqInt(xuu50000, xuu4000) 24.03/9.93 new_esEs27(xuu50000, xuu4000, app(app(ty_Either, dhe), dhf)) -> new_esEs4(xuu50000, xuu4000, dhe, dhf) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.03/9.93 new_ltEs13(Nothing, Just(xuu53000), chg) -> True 24.03/9.93 new_compare7(:%(xuu52000, xuu52001), :%(xuu53000, xuu53001), ty_Integer) -> new_compare6(new_sr(xuu52000, xuu53001), new_sr(xuu53000, xuu52001)) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Char, bhh) -> new_esEs16(xuu50000, xuu4000) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Float, bef) -> new_ltEs16(xuu52000, xuu53000) 24.03/9.93 new_compare112(xuu52000, xuu53000, False, eh) -> GT 24.03/9.93 new_lt19(xuu52001, xuu53001, app(app(ty_@2, dee), def)) -> new_lt14(xuu52001, xuu53001, dee, def) 24.03/9.93 new_esEs20(xuu50001, xuu4001, app(ty_[], bah)) -> new_esEs13(xuu50001, xuu4001, bah) 24.03/9.93 new_compare23(Left(xuu5200), Left(xuu5300), False, che, chf) -> new_compare10(xuu5200, xuu5300, new_ltEs19(xuu5200, xuu5300, che), che, chf) 24.03/9.93 new_lt14(xuu52000, xuu53000, fa, fb) -> new_esEs17(new_compare19(xuu52000, xuu53000, fa, fb), LT) 24.03/9.93 24.03/9.93 The set Q consists of the following terms: 24.03/9.93 24.03/9.93 new_esEs13(:(x0, x1), [], x2) 24.03/9.93 new_lt5(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs31(x0, x1, ty_@0) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), ty_Char) 24.03/9.93 new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_esEs5(Nothing, Just(x0), x1) 24.03/9.93 new_compare(:(x0, x1), :(x2, x3), x4) 24.03/9.93 new_lt20(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_lt20(x0, x1, ty_Int) 24.03/9.93 new_ltEs7(x0, x1, ty_Char) 24.03/9.93 new_compare24(x0, x1, True) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 24.03/9.93 new_compare27(x0, x1, False, x2, x3) 24.03/9.93 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 24.03/9.93 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 24.03/9.93 new_esEs23(x0, x1, ty_Integer) 24.03/9.93 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_ltEs19(x0, x1, ty_@0) 24.03/9.93 new_esEs32(x0, x1, ty_Double) 24.03/9.93 new_compare13(x0, x1) 24.03/9.93 new_lt8(x0, x1) 24.03/9.93 new_ltEs7(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_ltEs14(x0, x1) 24.03/9.93 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.03/9.93 new_compare32(x0, x1, ty_Float) 24.03/9.93 new_lt20(x0, x1, ty_Ordering) 24.03/9.93 new_fsEs(x0) 24.03/9.93 new_ltEs18(x0, x1) 24.03/9.93 new_esEs27(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_esEs29(x0, x1, ty_Float) 24.03/9.93 new_ltEs13(Nothing, Nothing, x0) 24.03/9.93 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_sr(Integer(x0), Integer(x1)) 24.03/9.93 new_ltEs20(x0, x1, ty_Double) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.03/9.93 new_esEs26(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_esEs18(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 24.03/9.93 new_esEs31(x0, x1, ty_Bool) 24.03/9.93 new_sr0(x0, x1) 24.03/9.93 new_ltEs16(x0, x1) 24.03/9.93 new_esEs25(x0, x1, ty_Char) 24.03/9.93 new_ltEs19(x0, x1, ty_Bool) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), ty_Int) 24.03/9.93 new_primCmpNat0(Zero, Succ(x0)) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 24.03/9.93 new_primPlusNat0(Succ(x0), Succ(x1)) 24.03/9.93 new_lt19(x0, x1, app(ty_[], x2)) 24.03/9.93 new_lt20(x0, x1, ty_Char) 24.03/9.93 new_lt14(x0, x1, x2, x3) 24.03/9.93 new_ltEs7(x0, x1, ty_Int) 24.03/9.93 new_primEqInt(Pos(Zero), Pos(Zero)) 24.03/9.93 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.03/9.93 new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 24.03/9.93 new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 24.03/9.93 new_esEs28(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_compare11(x0, x1, False, x2, x3, x4) 24.03/9.93 new_esEs25(x0, x1, ty_Int) 24.03/9.93 new_primMulNat0(Succ(x0), Zero) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs26(x0, x1, ty_@0) 24.03/9.93 new_lt15(x0, x1, x2) 24.03/9.93 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.03/9.93 new_esEs32(x0, x1, ty_Ordering) 24.03/9.93 new_esEs31(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs13([], :(x0, x1), x2) 24.03/9.93 new_compare([], :(x0, x1), x2) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 24.03/9.93 new_ltEs5(False, True) 24.03/9.93 new_ltEs5(True, False) 24.03/9.93 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_compare23(x0, x1, True, x2, x3) 24.03/9.93 new_ltEs19(x0, x1, ty_Char) 24.03/9.93 new_esEs24(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_primCompAux0(x0, EQ) 24.03/9.93 new_esEs32(x0, x1, ty_Int) 24.03/9.93 new_compare17(@0, @0) 24.03/9.93 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_esEs25(x0, x1, ty_Ordering) 24.03/9.93 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_primEqNat0(Zero, Succ(x0)) 24.03/9.93 new_esEs25(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_primEqInt(Neg(Zero), Neg(Zero)) 24.03/9.93 new_esEs24(x0, x1, ty_Bool) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.03/9.93 new_lt19(x0, x1, ty_Double) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.03/9.93 new_lt20(x0, x1, ty_Double) 24.03/9.93 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 24.03/9.93 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs31(x0, x1, ty_Char) 24.03/9.93 new_lt19(x0, x1, ty_Ordering) 24.03/9.93 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.03/9.93 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs26(x0, x1, ty_Int) 24.03/9.93 new_esEs32(x0, x1, ty_Char) 24.03/9.93 new_ltEs19(x0, x1, ty_Integer) 24.03/9.93 new_esEs27(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs24(x0, x1, ty_Integer) 24.03/9.93 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.03/9.93 new_ltEs20(x0, x1, ty_Int) 24.03/9.93 new_esEs21(x0, x1, ty_Ordering) 24.03/9.93 new_ltEs7(x0, x1, ty_@0) 24.03/9.93 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs28(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 24.03/9.93 new_ltEs20(x0, x1, ty_Char) 24.03/9.93 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_lt5(x0, x1, ty_Integer) 24.03/9.93 new_esEs31(x0, x1, ty_Integer) 24.03/9.93 new_esEs10(True, True) 24.03/9.93 new_esEs26(x0, x1, ty_Char) 24.03/9.93 new_esEs20(x0, x1, ty_Double) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 24.03/9.93 new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 24.03/9.93 new_esEs20(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_esEs21(x0, x1, app(ty_[], x2)) 24.03/9.93 new_ltEs21(x0, x1, ty_Double) 24.03/9.93 new_esEs30(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_lt20(x0, x1, ty_@0) 24.03/9.93 new_esEs17(EQ, GT) 24.03/9.93 new_esEs17(GT, EQ) 24.03/9.93 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_primMulInt(Pos(x0), Pos(x1)) 24.03/9.93 new_lt4(x0, x1) 24.03/9.93 new_primEqInt(Pos(Zero), Neg(Zero)) 24.03/9.93 new_primEqInt(Neg(Zero), Pos(Zero)) 24.03/9.93 new_primMulNat0(Succ(x0), Succ(x1)) 24.03/9.93 new_ltEs10(x0, x1) 24.03/9.93 new_compare12(Char(x0), Char(x1)) 24.03/9.93 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_ltEs13(Just(x0), Nothing, x1) 24.03/9.93 new_esEs26(x0, x1, ty_Double) 24.03/9.93 new_esEs24(x0, x1, ty_Ordering) 24.03/9.93 new_compare32(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.03/9.93 new_compare111(x0, x1, True) 24.03/9.93 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 24.03/9.93 new_compare31(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 24.03/9.93 new_esEs18(x0, x1, ty_Float) 24.03/9.93 new_ltEs8(LT, LT) 24.03/9.93 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 24.03/9.93 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_primCompAux0(x0, LT) 24.03/9.93 new_compare29(x0, x1, False, x2) 24.03/9.93 new_compare15(x0, x1, False, x2, x3) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 24.03/9.93 new_lt16(x0, x1) 24.03/9.93 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_compare8(x0, x1) 24.03/9.93 new_compare11(x0, x1, True, x2, x3, x4) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 24.03/9.93 new_esEs18(x0, x1, ty_@0) 24.03/9.93 new_compare32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_esEs19(x0, x1, ty_Integer) 24.03/9.93 new_esEs26(x0, x1, ty_Bool) 24.03/9.93 new_esEs32(x0, x1, ty_@0) 24.03/9.93 new_esEs31(x0, x1, ty_Double) 24.03/9.93 new_esEs17(LT, GT) 24.03/9.93 new_esEs17(GT, LT) 24.03/9.93 new_esEs19(x0, x1, ty_Bool) 24.03/9.93 new_esEs23(x0, x1, ty_Int) 24.03/9.93 new_lt5(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 24.03/9.93 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 24.03/9.93 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 24.03/9.93 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_primPlusNat1(Succ(x0), x1) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.03/9.93 new_esEs28(x0, x1, ty_Float) 24.03/9.93 new_esEs5(Just(x0), Just(x1), ty_Double) 24.03/9.93 new_esEs24(x0, x1, ty_Double) 24.03/9.93 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_esEs31(x0, x1, ty_Ordering) 24.03/9.93 new_compare10(x0, x1, True, x2, x3) 24.03/9.93 new_compare32(x0, x1, ty_Bool) 24.03/9.93 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 24.03/9.93 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.03/9.93 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_esEs29(x0, x1, ty_@0) 24.03/9.93 new_compare24(x0, x1, False) 24.03/9.93 new_ltEs7(x0, x1, ty_Integer) 24.03/9.93 new_esEs28(x0, x1, ty_Double) 24.03/9.93 new_ltEs19(x0, x1, ty_Ordering) 24.03/9.93 new_ltEs20(x0, x1, ty_Bool) 24.03/9.93 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 24.03/9.93 new_primCmpNat0(Succ(x0), Zero) 24.03/9.93 new_compare18(x0, x1, True) 24.03/9.93 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 24.03/9.93 new_esEs20(x0, x1, ty_Ordering) 24.03/9.93 new_esEs26(x0, x1, ty_Ordering) 24.03/9.93 new_esEs32(x0, x1, app(ty_[], x2)) 24.03/9.93 new_compare29(x0, x1, True, x2) 24.03/9.93 new_ltEs19(x0, x1, ty_Double) 24.03/9.93 new_ltEs21(x0, x1, ty_Ordering) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), ty_Integer) 24.03/9.93 new_esEs26(x0, x1, ty_Integer) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.03/9.93 new_compare15(x0, x1, True, x2, x3) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.03/9.93 new_esEs22(x0, x1, ty_Int) 24.03/9.93 new_ltEs8(GT, GT) 24.03/9.93 new_esEs21(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 24.03/9.93 new_compare31(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 24.03/9.93 new_compare31(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 24.03/9.93 new_ltEs8(LT, EQ) 24.03/9.93 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_ltEs8(EQ, LT) 24.03/9.93 new_esEs10(False, False) 24.03/9.93 new_primCmpInt(Neg(Zero), Neg(Zero)) 24.03/9.93 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_lt18(x0, x1, x2, x3, x4) 24.03/9.93 new_esEs25(x0, x1, ty_Double) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 24.03/9.93 new_ltEs20(x0, x1, ty_Integer) 24.03/9.93 new_ltEs7(x0, x1, ty_Bool) 24.03/9.93 new_esEs25(x0, x1, ty_@0) 24.03/9.93 new_esEs27(x0, x1, ty_Int) 24.03/9.93 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_compare([], [], x0) 24.03/9.93 new_primCompAux1(x0, x1, x2, x3) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.03/9.93 new_primCmpInt(Pos(Zero), Neg(Zero)) 24.03/9.93 new_primCmpInt(Neg(Zero), Pos(Zero)) 24.03/9.93 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_ltEs7(x0, x1, ty_Ordering) 24.03/9.93 new_esEs19(x0, x1, ty_Char) 24.03/9.93 new_esEs32(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_primPlusNat1(Zero, x0) 24.03/9.93 new_primEqNat0(Succ(x0), Zero) 24.03/9.93 new_lt19(x0, x1, ty_@0) 24.03/9.93 new_esEs21(x0, x1, ty_Int) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.03/9.93 new_ltEs7(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs30(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs22(x0, x1, ty_Integer) 24.03/9.93 new_ltEs5(True, True) 24.03/9.93 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 24.03/9.93 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 24.03/9.93 new_esEs21(x0, x1, ty_Char) 24.03/9.93 new_esEs21(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 24.03/9.93 new_lt5(x0, x1, ty_Double) 24.03/9.93 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_esEs27(x0, x1, ty_Char) 24.03/9.93 new_ltEs20(x0, x1, ty_Ordering) 24.03/9.93 new_esEs27(x0, x1, ty_Float) 24.03/9.93 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_lt5(x0, x1, ty_@0) 24.03/9.93 new_lt9(x0, x1, x2) 24.03/9.93 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 24.03/9.93 new_primPlusNat0(Zero, Succ(x0)) 24.03/9.93 new_ltEs19(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs30(x0, x1, ty_Integer) 24.03/9.93 new_esEs31(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_ltEs8(EQ, EQ) 24.03/9.93 new_compare25(x0, x1, True) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), ty_Bool) 24.03/9.93 new_esEs28(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs30(x0, x1, ty_Ordering) 24.03/9.93 new_esEs24(x0, x1, ty_@0) 24.03/9.93 new_esEs19(x0, x1, ty_Float) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 24.03/9.93 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_compare112(x0, x1, False, x2) 24.03/9.93 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_compare110(x0, x1, True, x2, x3) 24.03/9.93 new_esEs21(x0, x1, ty_Bool) 24.03/9.93 new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 24.03/9.93 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_lt10(x0, x1, x2, x3) 24.03/9.93 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 24.03/9.93 new_esEs29(x0, x1, ty_Ordering) 24.03/9.93 new_esEs13([], [], x0) 24.03/9.93 new_esEs28(x0, x1, ty_Bool) 24.03/9.93 new_esEs30(x0, x1, ty_Bool) 24.03/9.93 new_compare23(Left(x0), Right(x1), False, x2, x3) 24.03/9.93 new_lt20(x0, x1, app(ty_[], x2)) 24.03/9.93 new_compare32(x0, x1, ty_Ordering) 24.03/9.93 new_esEs20(x0, x1, ty_Integer) 24.03/9.93 new_compare23(Right(x0), Left(x1), False, x2, x3) 24.03/9.93 new_ltEs15(x0, x1) 24.03/9.93 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.03/9.93 new_compare14(x0, x1) 24.03/9.93 new_esEs5(Just(x0), Just(x1), ty_@0) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.03/9.93 new_esEs25(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs19(x0, x1, ty_Double) 24.03/9.93 new_ltEs21(x0, x1, ty_Integer) 24.03/9.93 new_ltEs9(x0, x1) 24.03/9.93 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 24.03/9.93 new_esEs19(x0, x1, ty_Ordering) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.03/9.93 new_primMulNat0(Zero, Zero) 24.03/9.93 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 24.03/9.93 new_compare32(x0, x1, ty_Double) 24.03/9.93 new_esEs24(x0, x1, app(ty_[], x2)) 24.03/9.93 new_ltEs11(x0, x1, x2) 24.03/9.93 new_esEs19(x0, x1, ty_Int) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 24.03/9.93 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 24.03/9.93 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_primCompAux0(x0, GT) 24.03/9.93 new_esEs32(x0, x1, ty_Float) 24.03/9.93 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_compare10(x0, x1, False, x2, x3) 24.03/9.93 new_esEs18(x0, x1, ty_Double) 24.03/9.93 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 24.03/9.93 new_esEs19(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs29(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs27(x0, x1, ty_Bool) 24.03/9.93 new_compare32(x0, x1, ty_Char) 24.03/9.93 new_esEs31(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs32(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_esEs29(x0, x1, ty_Int) 24.03/9.93 new_esEs29(x0, x1, ty_Double) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 24.03/9.93 new_esEs21(x0, x1, ty_Integer) 24.03/9.93 new_primEqNat0(Succ(x0), Succ(x1)) 24.03/9.93 new_compare26(x0, x1, False, x2, x3, x4) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), ty_Float) 24.03/9.93 new_esEs21(x0, x1, ty_Float) 24.03/9.93 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_esEs5(Just(x0), Just(x1), ty_Integer) 24.03/9.93 new_esEs29(x0, x1, ty_Char) 24.03/9.93 new_primPlusNat0(Zero, Zero) 24.03/9.93 new_compare32(x0, x1, ty_Int) 24.03/9.93 new_compare6(Integer(x0), Integer(x1)) 24.03/9.93 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.03/9.93 new_ltEs7(x0, x1, ty_Float) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.03/9.93 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_not(True) 24.03/9.93 new_esEs18(x0, x1, ty_Int) 24.03/9.93 new_ltEs21(x0, x1, ty_@0) 24.03/9.93 new_ltEs20(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs20(x0, x1, ty_@0) 24.03/9.93 new_primPlusNat0(Succ(x0), Zero) 24.03/9.93 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_lt19(x0, x1, ty_Bool) 24.03/9.93 new_asAs(True, x0) 24.03/9.93 new_esEs25(x0, x1, ty_Float) 24.03/9.93 new_compare30(x0, x1, x2, x3, x4) 24.03/9.93 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_esEs17(LT, EQ) 24.03/9.93 new_esEs17(EQ, LT) 24.03/9.93 new_esEs27(x0, x1, ty_Integer) 24.03/9.93 new_lt7(x0, x1) 24.03/9.93 new_esEs13(:(x0, x1), :(x2, x3), x4) 24.03/9.93 new_pePe(False, x0) 24.03/9.93 new_esEs20(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.03/9.93 new_pePe(True, x0) 24.03/9.93 new_esEs9(:%(x0, x1), :%(x2, x3), x4) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.03/9.93 new_esEs28(x0, x1, ty_Char) 24.03/9.93 new_ltEs8(GT, LT) 24.03/9.93 new_esEs18(x0, x1, ty_Char) 24.03/9.93 new_primMulNat0(Zero, Succ(x0)) 24.03/9.93 new_ltEs8(LT, GT) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 24.03/9.93 new_esEs17(GT, GT) 24.03/9.93 new_esEs25(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs32(x0, x1, ty_Integer) 24.03/9.93 new_esEs30(x0, x1, ty_Char) 24.03/9.93 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 24.03/9.93 new_lt19(x0, x1, ty_Integer) 24.03/9.93 new_esEs28(x0, x1, ty_Int) 24.03/9.93 new_esEs24(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_ltEs4(x0, x1, x2) 24.03/9.93 new_ltEs5(False, False) 24.03/9.93 new_ltEs20(x0, x1, ty_Float) 24.03/9.93 new_lt20(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 24.03/9.93 new_esEs17(EQ, EQ) 24.03/9.93 new_esEs5(Just(x0), Nothing, x1) 24.03/9.93 new_lt20(x0, x1, ty_Float) 24.03/9.93 new_esEs30(x0, x1, ty_Int) 24.03/9.93 new_ltEs20(x0, x1, ty_@0) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 24.03/9.93 new_esEs27(x0, x1, ty_Ordering) 24.03/9.93 new_esEs29(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_lt19(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_lt5(x0, x1, ty_Ordering) 24.03/9.93 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_ltEs21(x0, x1, ty_Bool) 24.03/9.93 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs30(x0, x1, ty_@0) 24.03/9.93 new_ltEs6(@2(x0, x1), @2(x2, x3), x4, x5) 24.03/9.93 new_lt5(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs12(x0, x1) 24.03/9.93 new_esEs20(x0, x1, ty_Bool) 24.03/9.93 new_primCmpInt(Pos(Zero), Pos(Zero)) 24.03/9.93 new_lt13(x0, x1) 24.03/9.93 new_esEs28(x0, x1, ty_@0) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 24.03/9.93 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 24.03/9.93 new_compare9(x0, x1, x2, x3) 24.03/9.93 new_esEs30(x0, x1, ty_Float) 24.03/9.93 new_esEs16(Char(x0), Char(x1)) 24.03/9.93 new_esEs30(x0, x1, ty_Double) 24.03/9.93 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_esEs18(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_compare19(x0, x1, x2, x3) 24.03/9.93 new_compare26(x0, x1, True, x2, x3, x4) 24.03/9.93 new_ltEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.03/9.93 new_esEs27(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 24.03/9.93 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 24.03/9.93 new_esEs32(x0, x1, ty_Bool) 24.03/9.93 new_esEs20(x0, x1, ty_Int) 24.03/9.93 new_ltEs21(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs31(x0, x1, ty_Float) 24.03/9.93 new_esEs20(x0, x1, ty_Char) 24.03/9.93 new_esEs29(x0, x1, ty_Bool) 24.03/9.93 new_compare32(x0, x1, ty_Integer) 24.03/9.93 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_ltEs19(x0, x1, ty_Float) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.03/9.93 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 24.03/9.93 new_ltEs21(x0, x1, ty_Char) 24.03/9.93 new_ltEs7(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_compare23(Right(x0), Right(x1), False, x2, x3) 24.03/9.93 new_esEs29(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs26(x0, x1, ty_Float) 24.03/9.93 new_esEs21(x0, x1, ty_@0) 24.03/9.93 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_esEs18(x0, x1, ty_Bool) 24.03/9.93 new_compare110(x0, x1, False, x2, x3) 24.03/9.93 new_compare28(x0, x1, x2) 24.03/9.93 new_primCmpNat0(Succ(x0), Succ(x1)) 24.03/9.93 new_compare32(x0, x1, ty_@0) 24.03/9.93 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.03/9.93 new_lt5(x0, x1, ty_Bool) 24.03/9.93 new_lt19(x0, x1, ty_Int) 24.03/9.93 new_ltEs12(Left(x0), Right(x1), x2, x3) 24.03/9.93 new_ltEs12(Right(x0), Left(x1), x2, x3) 24.03/9.93 new_lt20(x0, x1, ty_Bool) 24.03/9.93 new_ltEs13(Nothing, Just(x0), x1) 24.03/9.93 new_compare32(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_ltEs21(x0, x1, ty_Int) 24.03/9.93 new_esEs5(Just(x0), Just(x1), ty_Ordering) 24.03/9.93 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 24.03/9.93 new_lt19(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 24.03/9.93 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 24.03/9.93 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_esEs19(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_esEs15(Float(x0, x1), Float(x2, x3)) 24.03/9.93 new_esEs25(x0, x1, ty_Integer) 24.03/9.93 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs31(x0, x1, ty_Int) 24.03/9.93 new_primMulInt(Neg(x0), Neg(x1)) 24.03/9.93 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs20(x0, x1, ty_Float) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 24.03/9.93 new_esEs14(Integer(x0), Integer(x1)) 24.03/9.93 new_compare(:(x0, x1), [], x2) 24.03/9.93 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 24.03/9.93 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 24.03/9.93 new_compare112(x0, x1, True, x2) 24.03/9.93 new_lt6(x0, x1) 24.03/9.93 new_compare25(x0, x1, False) 24.03/9.93 new_esEs8(@0, @0) 24.03/9.93 new_compare27(x0, x1, True, x2, x3) 24.03/9.93 new_esEs20(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs11(Double(x0, x1), Double(x2, x3)) 24.03/9.93 new_esEs5(Just(x0), Just(x1), ty_Float) 24.03/9.93 new_compare111(x0, x1, False) 24.03/9.93 new_lt19(x0, x1, ty_Char) 24.03/9.93 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), ty_@0) 24.03/9.93 new_esEs18(x0, x1, app(ty_[], x2)) 24.03/9.93 new_primEqNat0(Zero, Zero) 24.03/9.93 new_compare32(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), ty_Double) 24.03/9.93 new_esEs30(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_ltEs19(x0, x1, ty_Int) 24.03/9.93 new_not(False) 24.03/9.93 new_esEs18(x0, x1, ty_Integer) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 24.03/9.93 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 24.03/9.93 new_lt19(x0, x1, ty_Float) 24.03/9.93 new_ltEs8(GT, EQ) 24.03/9.93 new_lt11(x0, x1, x2) 24.03/9.93 new_ltEs8(EQ, GT) 24.03/9.93 new_esEs5(Just(x0), Just(x1), ty_Char) 24.03/9.93 new_esEs17(LT, LT) 24.03/9.93 new_esEs24(x0, x1, ty_Int) 24.03/9.93 new_esEs5(Nothing, Nothing, x0) 24.03/9.93 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_ltEs21(x0, x1, ty_Float) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.03/9.93 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_ltEs7(x0, x1, ty_Double) 24.03/9.93 new_compare31(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 24.03/9.93 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.03/9.93 new_lt12(x0, x1) 24.03/9.93 new_esEs5(Just(x0), Just(x1), ty_Int) 24.03/9.93 new_lt5(x0, x1, ty_Float) 24.03/9.93 new_esEs24(x0, x1, ty_Char) 24.03/9.93 new_esEs4(Left(x0), Right(x1), x2, x3) 24.03/9.93 new_esEs4(Right(x0), Left(x1), x2, x3) 24.03/9.93 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 24.03/9.93 new_lt17(x0, x1) 24.03/9.93 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_esEs29(x0, x1, ty_Integer) 24.03/9.93 new_esEs27(x0, x1, ty_Double) 24.03/9.93 new_esEs19(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_primMulInt(Pos(x0), Neg(x1)) 24.03/9.93 new_primMulInt(Neg(x0), Pos(x1)) 24.03/9.93 new_esEs26(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs21(x0, x1, ty_Double) 24.03/9.93 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 24.03/9.93 new_lt5(x0, x1, ty_Char) 24.03/9.93 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.03/9.93 new_esEs19(x0, x1, ty_@0) 24.03/9.93 new_esEs28(x0, x1, ty_Integer) 24.03/9.93 new_lt20(x0, x1, ty_Integer) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 24.03/9.93 new_compare32(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs10(False, True) 24.03/9.93 new_esEs10(True, False) 24.03/9.93 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 24.03/9.93 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs24(x0, x1, ty_Float) 24.03/9.93 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs18(x0, x1, ty_Ordering) 24.03/9.93 new_esEs28(x0, x1, ty_Ordering) 24.03/9.93 new_lt5(x0, x1, ty_Int) 24.03/9.93 new_esEs25(x0, x1, ty_Bool) 24.03/9.93 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.03/9.93 new_esEs27(x0, x1, ty_@0) 24.03/9.93 new_esEs26(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs5(Just(x0), Just(x1), ty_Bool) 24.03/9.93 new_compare32(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_primCmpNat0(Zero, Zero) 24.03/9.93 new_compare18(x0, x1, False) 24.03/9.93 new_asAs(False, x0) 24.03/9.93 new_compare23(Left(x0), Left(x1), False, x2, x3) 24.03/9.93 24.03/9.93 We have to consider all minimal (P,Q,R)-chains. 24.03/9.93 ---------------------------------------- 24.03/9.93 24.03/9.93 (21) DependencyGraphProof (EQUIVALENT) 24.03/9.93 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 24.03/9.93 ---------------------------------------- 24.03/9.93 24.03/9.93 (22) 24.03/9.93 Complex Obligation (AND) 24.03/9.93 24.03/9.93 ---------------------------------------- 24.03/9.93 24.03/9.93 (23) 24.03/9.93 Obligation: 24.03/9.93 Q DP problem: 24.03/9.93 The TRS P consists of the following rules: 24.03/9.93 24.03/9.93 new_addToFM_C(xuu3, Branch(Left(xuu400), xuu41, xuu42, xuu43, xuu44), Right(xuu5000), xuu501, bc, bd, be) -> new_addToFM_C21(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Right(xuu5000), Left(xuu400), False, bc, bd), LT), bc, bd, be) 24.03/9.93 new_addToFM_C21(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, bc, bd, be) -> new_addToFM_C(xuu3, xuu43, Right(xuu5000), xuu501, bc, bd, be) 24.03/9.93 new_addToFM_C(xuu3, Branch(Right(xuu400), xuu41, xuu42, xuu43, xuu44), Right(xuu5000), xuu501, bc, bd, be) -> new_addToFM_C22(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Right(xuu5000), Right(xuu400), new_esEs31(xuu5000, xuu400, bd), bc, bd), LT), bc, bd, be) 24.03/9.93 new_addToFM_C22(xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, xuu41, xuu42, True, bf, bg, bh) -> new_addToFM_C(xuu35, xuu39, Right(xuu41), xuu42, bf, bg, bh) 24.03/9.93 new_addToFM_C22(xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, xuu41, xuu42, False, bf, bg, bh) -> new_addToFM_C12(xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, xuu41, xuu42, new_esEs17(new_compare23(Right(xuu41), Right(xuu36), new_esEs32(xuu41, xuu36, bg), bf, bg), GT), bf, bg, bh) 24.03/9.93 new_addToFM_C12(xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, xuu41, xuu42, True, bf, bg, bh) -> new_addToFM_C(xuu35, xuu40, Right(xuu41), xuu42, bf, bg, bh) 24.03/9.93 new_addToFM_C21(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, bc, bd, be) -> new_addToFM_C11(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Right(xuu5000), Left(xuu400), False, bc, bd), GT), bc, bd, be) 24.03/9.93 new_addToFM_C11(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, bc, bd, be) -> new_addToFM_C(xuu3, xuu44, Right(xuu5000), xuu501, bc, bd, be) 24.03/9.93 24.03/9.93 The TRS R consists of the following rules: 24.03/9.93 24.03/9.93 new_lt20(xuu52000, xuu53000, ty_Double) -> new_lt12(xuu52000, xuu53000) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, app(ty_[], fd)) -> new_ltEs11(xuu52001, xuu53001, fd) 24.03/9.93 new_esEs20(xuu50001, xuu4001, ty_Int) -> new_esEs12(xuu50001, xuu4001) 24.03/9.93 new_ltEs20(xuu5200, xuu5300, app(ty_[], dac)) -> new_ltEs11(xuu5200, xuu5300, dac) 24.03/9.93 new_esEs31(xuu5000, xuu400, app(ty_[], cae)) -> new_esEs13(xuu5000, xuu400, cae) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.03/9.93 new_compare32(xuu52000, xuu53000, app(app(ty_Either, cgd), cge)) -> new_compare9(xuu52000, xuu53000, cgd, cge) 24.03/9.93 new_compare16(Double(xuu52000, Pos(xuu520010)), Double(xuu53000, Pos(xuu530010))) -> new_compare8(new_sr0(xuu52000, Pos(xuu530010)), new_sr0(Pos(xuu520010), xuu53000)) 24.03/9.93 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 24.03/9.93 new_primCmpInt(Neg(Succ(xuu5200)), Pos(xuu530)) -> LT 24.03/9.93 new_primPlusNat0(Zero, Zero) -> Zero 24.03/9.93 new_pePe(True, xuu210) -> True 24.03/9.93 new_esEs31(xuu5000, xuu400, ty_Ordering) -> new_esEs17(xuu5000, xuu400) 24.03/9.93 new_esEs32(xuu41, xuu36, ty_Integer) -> new_esEs14(xuu41, xuu36) 24.03/9.93 new_ltEs4(xuu5200, xuu5300, dg) -> new_fsEs(new_compare7(xuu5200, xuu5300, dg)) 24.03/9.93 new_esEs27(xuu50000, xuu4000, ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.03/9.93 new_esEs21(xuu50002, xuu4002, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs7(xuu50002, xuu4002, bbf, bbg, bbh) 24.03/9.93 new_esEs29(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) 24.03/9.93 new_compare112(xuu52000, xuu53000, True, eh) -> LT 24.03/9.93 new_lt8(xuu520, xuu530) -> new_esEs17(new_compare8(xuu520, xuu530), LT) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), app(ty_Maybe, dbh)) -> new_ltEs13(xuu52000, xuu53000, dbh) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Double) -> new_ltEs14(xuu52000, xuu53000) 24.03/9.93 new_compare(:(xuu52000, xuu52001), [], bee) -> GT 24.03/9.93 new_esEs4(Left(xuu50000), Right(xuu4000), bhg, bhh) -> False 24.03/9.93 new_esEs4(Right(xuu50000), Left(xuu4000), bhg, bhh) -> False 24.03/9.93 new_esEs25(xuu52000, xuu53000, app(ty_[], dcg)) -> new_esEs13(xuu52000, xuu53000, dcg) 24.03/9.93 new_esEs25(xuu52000, xuu53000, ty_Ordering) -> new_esEs17(xuu52000, xuu53000) 24.03/9.93 new_compare25(xuu52000, xuu53000, False) -> new_compare111(xuu52000, xuu53000, new_ltEs8(xuu52000, xuu53000)) 24.03/9.93 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 24.03/9.93 new_primCmpInt(Pos(Zero), Neg(Succ(xuu5300))) -> GT 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), app(ty_Maybe, bfb), bef) -> new_ltEs13(xuu52000, xuu53000, bfb) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(app(ty_@2, bgf), bgg)) -> new_ltEs6(xuu52000, xuu53000, bgf, bgg) 24.03/9.93 new_esEs21(xuu50002, xuu4002, app(app(ty_@2, bcd), bce)) -> new_esEs6(xuu50002, xuu4002, bcd, bce) 24.03/9.93 new_lt19(xuu52001, xuu53001, app(app(ty_Either, deb), dec)) -> new_lt10(xuu52001, xuu53001, deb, dec) 24.03/9.93 new_primCmpInt(Neg(Succ(xuu5200)), Neg(xuu530)) -> new_primCmpNat0(xuu530, Succ(xuu5200)) 24.03/9.93 new_ltEs12(Left(xuu52000), Right(xuu53000), bga, bef) -> True 24.03/9.93 new_esEs20(xuu50001, xuu4001, ty_Double) -> new_esEs11(xuu50001, xuu4001) 24.03/9.93 new_esEs20(xuu50001, xuu4001, app(ty_Ratio, bag)) -> new_esEs9(xuu50001, xuu4001, bag) 24.03/9.93 new_esEs10(False, True) -> False 24.03/9.93 new_esEs10(True, False) -> False 24.03/9.93 new_primMulNat0(Succ(xuu5000000), Succ(xuu400100)) -> new_primPlusNat1(new_primMulNat0(xuu5000000, Succ(xuu400100)), xuu400100) 24.03/9.93 new_ltEs14(xuu5200, xuu5300) -> new_fsEs(new_compare16(xuu5200, xuu5300)) 24.03/9.93 new_compare18(xuu52000, xuu53000, True) -> LT 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), app(app(app(ty_@3, dcd), dce), dcf)) -> new_ltEs17(xuu52000, xuu53000, dcd, dce, dcf) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs17(xuu52000, xuu53000, bha, bhb, bhc) 24.03/9.93 new_esEs19(xuu50000, xuu4000, ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.03/9.93 new_esEs27(xuu50000, xuu4000, ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.03/9.93 new_ltEs20(xuu5200, xuu5300, ty_Char) -> new_ltEs18(xuu5200, xuu5300) 24.03/9.93 new_esEs30(xuu5000, xuu400, app(ty_Ratio, beb)) -> new_esEs9(xuu5000, xuu400, beb) 24.03/9.93 new_ltEs18(xuu5200, xuu5300) -> new_fsEs(new_compare12(xuu5200, xuu5300)) 24.03/9.93 new_esEs25(xuu52000, xuu53000, ty_Double) -> new_esEs11(xuu52000, xuu53000) 24.03/9.93 new_primCompAux0(xuu224, GT) -> GT 24.03/9.93 new_esEs15(Float(xuu50000, xuu50001), Float(xuu4000, xuu4001)) -> new_esEs12(new_sr0(xuu50000, xuu4001), new_sr0(xuu50001, xuu4000)) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_@0) -> new_ltEs15(xuu52000, xuu53000) 24.03/9.93 new_esEs21(xuu50002, xuu4002, app(ty_[], bcb)) -> new_esEs13(xuu50002, xuu4002, bcb) 24.03/9.93 new_esEs19(xuu50000, xuu4000, ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, app(ty_[], bee)) -> new_ltEs11(xuu5200, xuu5300, bee) 24.03/9.93 new_primEqInt(Pos(Succ(xuu500000)), Pos(Zero)) -> False 24.03/9.93 new_primEqInt(Pos(Zero), Pos(Succ(xuu40000))) -> False 24.03/9.93 new_esEs17(LT, LT) -> True 24.03/9.93 new_esEs19(xuu50000, xuu4000, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.03/9.93 new_esEs31(xuu5000, xuu400, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs7(xuu5000, xuu400, caa, cab, cac) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, app(app(ty_@2, ee), ef)) -> new_ltEs6(xuu5200, xuu5300, ee, ef) 24.03/9.93 new_esEs31(xuu5000, xuu400, ty_Double) -> new_esEs11(xuu5000, xuu400) 24.03/9.93 new_primEqNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 24.03/9.93 new_esEs27(xuu50000, xuu4000, ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.03/9.93 new_esEs29(xuu22, xuu17, app(ty_Ratio, bdc)) -> new_esEs9(xuu22, xuu17, bdc) 24.03/9.93 new_esEs26(xuu52001, xuu53001, ty_Integer) -> new_esEs14(xuu52001, xuu53001) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, ty_Ordering) -> new_ltEs8(xuu52001, xuu53001) 24.03/9.93 new_esEs19(xuu50000, xuu4000, ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.03/9.93 new_compare32(xuu52000, xuu53000, app(ty_Maybe, cgf)) -> new_compare28(xuu52000, xuu53000, cgf) 24.03/9.93 new_primCompAux0(xuu224, LT) -> LT 24.03/9.93 new_esEs31(xuu5000, xuu400, ty_Float) -> new_esEs15(xuu5000, xuu400) 24.03/9.93 new_esEs25(xuu52000, xuu53000, ty_Float) -> new_esEs15(xuu52000, xuu53000) 24.03/9.93 new_lt13(xuu52000, xuu53000) -> new_esEs17(new_compare13(xuu52000, xuu53000), LT) 24.03/9.93 new_compare31(Float(xuu52000, Pos(xuu520010)), Float(xuu53000, Pos(xuu530010))) -> new_compare8(new_sr0(xuu52000, Pos(xuu530010)), new_sr0(Pos(xuu520010), xuu53000)) 24.03/9.93 new_not(True) -> False 24.03/9.93 new_primCmpNat0(Zero, Zero) -> EQ 24.03/9.93 new_esEs30(xuu5000, xuu400, ty_Double) -> new_esEs11(xuu5000, xuu400) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Ordering, bef) -> new_ltEs8(xuu52000, xuu53000) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Char, bef) -> new_ltEs18(xuu52000, xuu53000) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Integer) -> new_ltEs9(xuu52000, xuu53000) 24.03/9.93 new_esEs29(xuu22, xuu17, app(ty_[], bdd)) -> new_esEs13(xuu22, xuu17, bdd) 24.03/9.93 new_esEs31(xuu5000, xuu400, ty_Int) -> new_esEs12(xuu5000, xuu400) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.03/9.93 new_esEs25(xuu52000, xuu53000, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs7(xuu52000, xuu53000, ddf, ddg, ddh) 24.03/9.93 new_esEs25(xuu52000, xuu53000, ty_Int) -> new_esEs12(xuu52000, xuu53000) 24.03/9.93 new_esEs20(xuu50001, xuu4001, ty_Ordering) -> new_esEs17(xuu50001, xuu4001) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, ty_Char) -> new_ltEs18(xuu5200, xuu5300) 24.03/9.93 new_esEs8(@0, @0) -> True 24.03/9.93 new_lt6(xuu52000, xuu53000) -> new_esEs17(new_compare14(xuu52000, xuu53000), LT) 24.03/9.93 new_compare7(:%(xuu52000, xuu52001), :%(xuu53000, xuu53001), ty_Int) -> new_compare8(new_sr0(xuu52000, xuu53001), new_sr0(xuu53000, xuu52001)) 24.03/9.93 new_compare32(xuu52000, xuu53000, ty_Char) -> new_compare12(xuu52000, xuu53000) 24.03/9.93 new_primEqNat0(Succ(xuu500000), Zero) -> False 24.03/9.93 new_primEqNat0(Zero, Succ(xuu40000)) -> False 24.03/9.93 new_esEs19(xuu50000, xuu4000, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs7(xuu50000, xuu4000, hb, hc, hd) 24.03/9.93 new_lt19(xuu52001, xuu53001, ty_Double) -> new_lt12(xuu52001, xuu53001) 24.03/9.93 new_esEs24(xuu50000, xuu4000, ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.03/9.93 new_esEs13([], [], bhd) -> True 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs7(xuu50000, xuu4000, cfa, cfb, cfc) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.03/9.93 new_compare8(xuu52, xuu53) -> new_primCmpInt(xuu52, xuu53) 24.03/9.93 new_compare10(xuu184, xuu185, True, ca, cb) -> LT 24.03/9.93 new_esEs21(xuu50002, xuu4002, ty_Ordering) -> new_esEs17(xuu50002, xuu4002) 24.03/9.93 new_ltEs20(xuu5200, xuu5300, ty_Int) -> new_ltEs10(xuu5200, xuu5300) 24.03/9.93 new_compare23(Left(xuu5200), Right(xuu5300), False, che, chf) -> LT 24.03/9.93 new_ltEs8(GT, LT) -> False 24.03/9.93 new_lt20(xuu52000, xuu53000, app(ty_[], dcg)) -> new_lt9(xuu52000, xuu53000, dcg) 24.03/9.93 new_compare27(xuu52000, xuu53000, False, fa, fb) -> new_compare15(xuu52000, xuu53000, new_ltEs6(xuu52000, xuu53000, fa, fb), fa, fb) 24.03/9.93 new_esEs17(EQ, GT) -> False 24.03/9.93 new_esEs17(GT, EQ) -> False 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), app(app(ty_@2, cee), cef), bhh) -> new_esEs6(xuu50000, xuu4000, cee, cef) 24.03/9.93 new_lt5(xuu52000, xuu53000, app(ty_Ratio, fc)) -> new_lt15(xuu52000, xuu53000, fc) 24.03/9.93 new_esEs18(xuu52000, xuu53000, ty_Double) -> new_esEs11(xuu52000, xuu53000) 24.03/9.93 new_esEs26(xuu52001, xuu53001, ty_Ordering) -> new_esEs17(xuu52001, xuu53001) 24.03/9.93 new_ltEs21(xuu52002, xuu53002, ty_Float) -> new_ltEs16(xuu52002, xuu53002) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, app(app(ty_@2, ga), gb)) -> new_ltEs6(xuu52001, xuu53001, ga, gb) 24.03/9.93 new_esEs32(xuu41, xuu36, ty_Char) -> new_esEs16(xuu41, xuu36) 24.03/9.93 new_compare15(xuu52000, xuu53000, True, fa, fb) -> LT 24.03/9.93 new_compare6(Integer(xuu52000), Integer(xuu53000)) -> new_primCmpInt(xuu52000, xuu53000) 24.03/9.93 new_esEs32(xuu41, xuu36, ty_Bool) -> new_esEs10(xuu41, xuu36) 24.03/9.93 new_esEs26(xuu52001, xuu53001, ty_Bool) -> new_esEs10(xuu52001, xuu53001) 24.03/9.93 new_primCmpInt(Pos(Succ(xuu5200)), Neg(xuu530)) -> GT 24.03/9.93 new_ltEs20(xuu5200, xuu5300, ty_Ordering) -> new_ltEs8(xuu5200, xuu5300) 24.03/9.93 new_ltEs21(xuu52002, xuu53002, app(app(ty_@2, dfg), dfh)) -> new_ltEs6(xuu52002, xuu53002, dfg, dfh) 24.03/9.93 new_compare31(Float(xuu52000, Neg(xuu520010)), Float(xuu53000, Neg(xuu530010))) -> new_compare8(new_sr0(xuu52000, Neg(xuu530010)), new_sr0(Neg(xuu520010), xuu53000)) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(ty_[], cfe)) -> new_esEs13(xuu50000, xuu4000, cfe) 24.03/9.93 new_ltEs5(False, True) -> True 24.03/9.93 new_ltEs8(GT, EQ) -> False 24.03/9.93 new_compare110(xuu191, xuu192, True, bec, bed) -> LT 24.03/9.93 new_lt11(xuu52000, xuu53000, eh) -> new_esEs17(new_compare28(xuu52000, xuu53000, eh), LT) 24.03/9.93 new_esEs29(xuu22, xuu17, ty_Float) -> new_esEs15(xuu22, xuu17) 24.03/9.93 new_esEs29(xuu22, xuu17, ty_Double) -> new_esEs11(xuu22, xuu17) 24.03/9.93 new_esEs26(xuu52001, xuu53001, ty_Char) -> new_esEs16(xuu52001, xuu53001) 24.03/9.93 new_esEs13(:(xuu50000, xuu50001), :(xuu4000, xuu4001), bhd) -> new_asAs(new_esEs24(xuu50000, xuu4000, bhd), new_esEs13(xuu50001, xuu4001, bhd)) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, ty_Ordering) -> new_ltEs8(xuu5200, xuu5300) 24.03/9.93 new_esEs31(xuu5000, xuu400, ty_Integer) -> new_esEs14(xuu5000, xuu400) 24.03/9.93 new_esEs32(xuu41, xuu36, ty_Ordering) -> new_esEs17(xuu41, xuu36) 24.03/9.93 new_primCmpNat0(Zero, Succ(xuu5300)) -> LT 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), ty_@0, bhh) -> new_esEs8(xuu50000, xuu4000) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), app(ty_[], cec), bhh) -> new_esEs13(xuu50000, xuu4000, cec) 24.03/9.93 new_esEs11(Double(xuu50000, xuu50001), Double(xuu4000, xuu4001)) -> new_esEs12(new_sr0(xuu50000, xuu4001), new_sr0(xuu50001, xuu4000)) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_@2, dc), dd)) -> new_esEs6(xuu50000, xuu4000, dc, dd) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Bool) -> new_ltEs5(xuu52000, xuu53000) 24.03/9.93 new_esEs26(xuu52001, xuu53001, app(app(app(ty_@3, deh), dfa), dfb)) -> new_esEs7(xuu52001, xuu53001, deh, dfa, dfb) 24.03/9.93 new_esEs30(xuu5000, xuu400, ty_Int) -> new_esEs12(xuu5000, xuu400) 24.03/9.93 new_esEs18(xuu52000, xuu53000, ty_Int) -> new_esEs12(xuu52000, xuu53000) 24.03/9.93 new_compare24(xuu52000, xuu53000, False) -> new_compare18(xuu52000, xuu53000, new_ltEs5(xuu52000, xuu53000)) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Double) -> new_ltEs14(xuu52000, xuu53000) 24.03/9.93 new_lt15(xuu52000, xuu53000, fc) -> new_esEs17(new_compare7(xuu52000, xuu53000, fc), LT) 24.03/9.93 new_esEs24(xuu50000, xuu4000, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.03/9.93 new_esEs32(xuu41, xuu36, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_esEs7(xuu41, xuu36, cbc, cbd, cbe) 24.03/9.93 new_esEs24(xuu50000, xuu4000, app(ty_[], cda)) -> new_esEs13(xuu50000, xuu4000, cda) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, app(ty_Ratio, dg)) -> new_ltEs4(xuu5200, xuu5300, dg) 24.03/9.93 new_sr(Integer(xuu530000), Integer(xuu520010)) -> Integer(new_primMulInt(xuu530000, xuu520010)) 24.03/9.93 new_primCmpNat0(Succ(xuu5200), Zero) -> GT 24.03/9.93 new_esEs30(xuu5000, xuu400, ty_Float) -> new_esEs15(xuu5000, xuu400) 24.03/9.93 new_pePe(False, xuu210) -> xuu210 24.03/9.93 new_ltEs20(xuu5200, xuu5300, app(ty_Maybe, daf)) -> new_ltEs13(xuu5200, xuu5300, daf) 24.03/9.93 new_esEs28(xuu50001, xuu4001, ty_Double) -> new_esEs11(xuu50001, xuu4001) 24.03/9.93 new_lt20(xuu52000, xuu53000, ty_Float) -> new_lt17(xuu52000, xuu53000) 24.03/9.93 new_lt5(xuu52000, xuu53000, app(ty_Maybe, eh)) -> new_lt11(xuu52000, xuu53000, eh) 24.03/9.93 new_compare32(xuu52000, xuu53000, ty_Bool) -> new_compare13(xuu52000, xuu53000) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), app(ty_[], dbe)) -> new_ltEs11(xuu52000, xuu53000, dbe) 24.03/9.93 new_esEs21(xuu50002, xuu4002, app(ty_Ratio, bca)) -> new_esEs9(xuu50002, xuu4002, bca) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, ty_Int) -> new_ltEs10(xuu5200, xuu5300) 24.03/9.93 new_esEs25(xuu52000, xuu53000, ty_Integer) -> new_esEs14(xuu52000, xuu53000) 24.03/9.93 new_esEs21(xuu50002, xuu4002, ty_Int) -> new_esEs12(xuu50002, xuu4002) 24.03/9.93 new_esEs21(xuu50002, xuu4002, app(app(ty_Either, bcf), bcg)) -> new_esEs4(xuu50002, xuu4002, bcf, bcg) 24.03/9.93 new_esEs18(xuu52000, xuu53000, ty_Ordering) -> new_esEs17(xuu52000, xuu53000) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), app(ty_[], beg), bef) -> new_ltEs11(xuu52000, xuu53000, beg) 24.03/9.93 new_esEs30(xuu5000, xuu400, ty_Ordering) -> new_esEs17(xuu5000, xuu400) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(ty_Maybe, cff)) -> new_esEs5(xuu50000, xuu4000, cff) 24.03/9.93 new_ltEs6(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), ee, ef) -> new_pePe(new_lt5(xuu52000, xuu53000, ee), new_asAs(new_esEs18(xuu52000, xuu53000, ee), new_ltEs7(xuu52001, xuu53001, ef))) 24.03/9.93 new_compare23(xuu520, xuu530, True, che, chf) -> EQ 24.03/9.93 new_esEs27(xuu50000, xuu4000, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.03/9.93 new_esEs28(xuu50001, xuu4001, app(ty_Ratio, eab)) -> new_esEs9(xuu50001, xuu4001, eab) 24.03/9.93 new_esEs28(xuu50001, xuu4001, ty_Char) -> new_esEs16(xuu50001, xuu4001) 24.03/9.93 new_primEqInt(Pos(Zero), Neg(Succ(xuu40000))) -> False 24.03/9.93 new_primEqInt(Neg(Zero), Pos(Succ(xuu40000))) -> False 24.03/9.93 new_compare11(xuu52000, xuu53000, True, eb, ec, ed) -> LT 24.03/9.93 new_ltEs21(xuu52002, xuu53002, ty_Char) -> new_ltEs18(xuu52002, xuu53002) 24.03/9.93 new_compare16(Double(xuu52000, Neg(xuu520010)), Double(xuu53000, Neg(xuu530010))) -> new_compare8(new_sr0(xuu52000, Neg(xuu530010)), new_sr0(Neg(xuu520010), xuu53000)) 24.03/9.93 new_esEs24(xuu50000, xuu4000, app(app(ty_@2, cdc), cdd)) -> new_esEs6(xuu50000, xuu4000, cdc, cdd) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), app(app(ty_Either, beh), bfa), bef) -> new_ltEs12(xuu52000, xuu53000, beh, bfa) 24.03/9.93 new_esEs26(xuu52001, xuu53001, app(ty_[], dea)) -> new_esEs13(xuu52001, xuu53001, dea) 24.03/9.93 new_esEs21(xuu50002, xuu4002, app(ty_Maybe, bcc)) -> new_esEs5(xuu50002, xuu4002, bcc) 24.03/9.93 new_esEs10(False, False) -> True 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Bool) -> new_ltEs5(xuu52000, xuu53000) 24.03/9.93 new_esEs5(Nothing, Nothing, cc) -> True 24.03/9.93 new_esEs31(xuu5000, xuu400, app(app(ty_Either, cba), cbb)) -> new_esEs4(xuu5000, xuu400, cba, cbb) 24.03/9.93 new_compare32(xuu52000, xuu53000, ty_Int) -> new_compare8(xuu52000, xuu53000) 24.03/9.93 new_lt5(xuu52000, xuu53000, ty_Bool) -> new_lt13(xuu52000, xuu53000) 24.03/9.93 new_esEs17(EQ, EQ) -> True 24.03/9.93 new_esEs18(xuu52000, xuu53000, ty_Char) -> new_esEs16(xuu52000, xuu53000) 24.03/9.93 new_ltEs20(xuu5200, xuu5300, app(app(ty_@2, dag), dah)) -> new_ltEs6(xuu5200, xuu5300, dag, dah) 24.03/9.93 new_primEqInt(Neg(Succ(xuu500000)), Neg(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 24.03/9.93 new_esEs5(Nothing, Just(xuu4000), cc) -> False 24.03/9.93 new_esEs5(Just(xuu50000), Nothing, cc) -> False 24.03/9.93 new_esEs23(xuu50001, xuu4001, ty_Int) -> new_esEs12(xuu50001, xuu4001) 24.03/9.93 new_esEs17(LT, EQ) -> False 24.03/9.93 new_esEs17(EQ, LT) -> False 24.03/9.93 new_lt19(xuu52001, xuu53001, ty_Bool) -> new_lt13(xuu52001, xuu53001) 24.03/9.93 new_primCmpInt(Neg(Zero), Pos(Succ(xuu5300))) -> LT 24.03/9.93 new_ltEs20(xuu5200, xuu5300, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_ltEs17(xuu5200, xuu5300, dbb, dbc, dbd) 24.03/9.93 new_ltEs16(xuu5200, xuu5300) -> new_fsEs(new_compare31(xuu5200, xuu5300)) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Int, bhh) -> new_esEs12(xuu50000, xuu4000) 24.03/9.93 new_lt5(xuu52000, xuu53000, ty_Float) -> new_lt17(xuu52000, xuu53000) 24.03/9.93 new_ltEs10(xuu5200, xuu5300) -> new_fsEs(new_compare8(xuu5200, xuu5300)) 24.03/9.93 new_primMulInt(Pos(xuu500000), Pos(xuu40010)) -> Pos(new_primMulNat0(xuu500000, xuu40010)) 24.03/9.93 new_lt17(xuu52000, xuu53000) -> new_esEs17(new_compare31(xuu52000, xuu53000), LT) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, app(ty_Ratio, gc)) -> new_ltEs4(xuu52001, xuu53001, gc) 24.03/9.93 new_esEs20(xuu50001, xuu4001, ty_Float) -> new_esEs15(xuu50001, xuu4001) 24.03/9.93 new_esEs13(:(xuu50000, xuu50001), [], bhd) -> False 24.03/9.93 new_esEs13([], :(xuu4000, xuu4001), bhd) -> False 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, cd), ce), cf)) -> new_esEs7(xuu50000, xuu4000, cd, ce, cf) 24.03/9.93 new_esEs26(xuu52001, xuu53001, app(app(ty_@2, dee), def)) -> new_esEs6(xuu52001, xuu53001, dee, def) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.03/9.93 new_lt19(xuu52001, xuu53001, ty_Float) -> new_lt17(xuu52001, xuu53001) 24.03/9.93 new_esEs32(xuu41, xuu36, app(ty_Maybe, cbh)) -> new_esEs5(xuu41, xuu36, cbh) 24.03/9.93 new_compare32(xuu52000, xuu53000, ty_Integer) -> new_compare6(xuu52000, xuu53000) 24.03/9.93 new_primMulNat0(Succ(xuu5000000), Zero) -> Zero 24.03/9.93 new_primMulNat0(Zero, Succ(xuu400100)) -> Zero 24.03/9.93 new_esEs29(xuu22, xuu17, ty_Integer) -> new_esEs14(xuu22, xuu17) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.03/9.93 new_ltEs15(xuu5200, xuu5300) -> new_fsEs(new_compare17(xuu5200, xuu5300)) 24.03/9.93 new_lt20(xuu52000, xuu53000, ty_Bool) -> new_lt13(xuu52000, xuu53000) 24.03/9.93 new_primPlusNat1(Succ(xuu1450), xuu400100) -> Succ(Succ(new_primPlusNat0(xuu1450, xuu400100))) 24.03/9.93 new_esEs17(LT, GT) -> False 24.03/9.93 new_esEs17(GT, LT) -> False 24.03/9.93 new_compare11(xuu52000, xuu53000, False, eb, ec, ed) -> GT 24.03/9.93 new_ltEs5(True, False) -> False 24.03/9.93 new_esEs32(xuu41, xuu36, app(ty_Ratio, cbf)) -> new_esEs9(xuu41, xuu36, cbf) 24.03/9.93 new_esEs18(xuu52000, xuu53000, app(ty_Ratio, fc)) -> new_esEs9(xuu52000, xuu53000, fc) 24.03/9.93 new_esEs32(xuu41, xuu36, ty_Int) -> new_esEs12(xuu41, xuu36) 24.03/9.93 new_esEs25(xuu52000, xuu53000, ty_@0) -> new_esEs8(xuu52000, xuu53000) 24.03/9.93 new_primPlusNat0(Succ(xuu55200), Zero) -> Succ(xuu55200) 24.03/9.93 new_primPlusNat0(Zero, Succ(xuu13600)) -> Succ(xuu13600) 24.03/9.93 new_ltEs21(xuu52002, xuu53002, ty_Int) -> new_ltEs10(xuu52002, xuu53002) 24.03/9.93 new_lt20(xuu52000, xuu53000, app(app(ty_Either, dch), dda)) -> new_lt10(xuu52000, xuu53000, dch, dda) 24.03/9.93 new_primPlusNat1(Zero, xuu400100) -> Succ(xuu400100) 24.03/9.93 new_esEs28(xuu50001, xuu4001, ty_Ordering) -> new_esEs17(xuu50001, xuu4001) 24.03/9.93 new_esEs29(xuu22, xuu17, ty_Ordering) -> new_esEs17(xuu22, xuu17) 24.03/9.93 new_esEs30(xuu5000, xuu400, ty_Char) -> new_esEs16(xuu5000, xuu400) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Float) -> new_ltEs16(xuu52000, xuu53000) 24.03/9.93 new_ltEs21(xuu52002, xuu53002, app(ty_Ratio, dga)) -> new_ltEs4(xuu52002, xuu53002, dga) 24.03/9.93 new_compare111(xuu52000, xuu53000, True) -> LT 24.03/9.93 new_ltEs7(xuu52001, xuu53001, ty_Int) -> new_ltEs10(xuu52001, xuu53001) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.03/9.93 new_esEs32(xuu41, xuu36, app(app(ty_Either, ccc), ccd)) -> new_esEs4(xuu41, xuu36, ccc, ccd) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Ordering) -> new_ltEs8(xuu52000, xuu53000) 24.03/9.93 new_compare32(xuu52000, xuu53000, app(ty_[], cgc)) -> new_compare(xuu52000, xuu53000, cgc) 24.03/9.93 new_esEs24(xuu50000, xuu4000, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs7(xuu50000, xuu4000, cce, ccf, ccg) 24.03/9.93 new_esEs26(xuu52001, xuu53001, ty_@0) -> new_esEs8(xuu52001, xuu53001) 24.03/9.93 new_esEs24(xuu50000, xuu4000, ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.03/9.93 new_lt19(xuu52001, xuu53001, app(ty_Maybe, ded)) -> new_lt11(xuu52001, xuu53001, ded) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.03/9.93 new_compare18(xuu52000, xuu53000, False) -> GT 24.03/9.93 new_ltEs21(xuu52002, xuu53002, ty_Double) -> new_ltEs14(xuu52002, xuu53002) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, ty_Char) -> new_ltEs18(xuu52001, xuu53001) 24.03/9.93 new_esEs9(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), beb) -> new_asAs(new_esEs22(xuu50000, xuu4000, beb), new_esEs23(xuu50001, xuu4001, beb)) 24.03/9.93 new_ltEs20(xuu5200, xuu5300, ty_Integer) -> new_ltEs9(xuu5200, xuu5300) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Integer, bef) -> new_ltEs9(xuu52000, xuu53000) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), app(app(ty_@2, bfc), bfd), bef) -> new_ltEs6(xuu52000, xuu53000, bfc, bfd) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, ty_Integer) -> new_ltEs9(xuu5200, xuu5300) 24.03/9.93 new_lt20(xuu52000, xuu53000, app(ty_Maybe, ddb)) -> new_lt11(xuu52000, xuu53000, ddb) 24.03/9.93 new_ltEs20(xuu5200, xuu5300, ty_Double) -> new_ltEs14(xuu5200, xuu5300) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, ty_@0) -> new_ltEs15(xuu52001, xuu53001) 24.03/9.93 new_compare12(Char(xuu52000), Char(xuu53000)) -> new_primCmpNat0(xuu52000, xuu53000) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_Either, de), df)) -> new_esEs4(xuu50000, xuu4000, de, df) 24.03/9.93 new_esEs28(xuu50001, xuu4001, ty_Integer) -> new_esEs14(xuu50001, xuu4001) 24.03/9.93 new_primMulInt(Neg(xuu500000), Neg(xuu40010)) -> Pos(new_primMulNat0(xuu500000, xuu40010)) 24.03/9.93 new_esEs32(xuu41, xuu36, ty_Float) -> new_esEs15(xuu41, xuu36) 24.03/9.93 new_primCmpInt(Pos(Zero), Pos(Succ(xuu5300))) -> new_primCmpNat0(Zero, Succ(xuu5300)) 24.03/9.93 new_esEs25(xuu52000, xuu53000, app(app(ty_@2, ddc), ddd)) -> new_esEs6(xuu52000, xuu53000, ddc, ddd) 24.03/9.93 new_lt7(xuu52000, xuu53000) -> new_esEs17(new_compare6(xuu52000, xuu53000), LT) 24.03/9.93 new_compare([], :(xuu53000, xuu53001), bee) -> LT 24.03/9.93 new_ltEs21(xuu52002, xuu53002, ty_@0) -> new_ltEs15(xuu52002, xuu53002) 24.03/9.93 new_esEs19(xuu50000, xuu4000, app(ty_Ratio, he)) -> new_esEs9(xuu50000, xuu4000, he) 24.03/9.93 new_lt5(xuu52000, xuu53000, app(app(ty_Either, dh), ea)) -> new_lt10(xuu52000, xuu53000, dh, ea) 24.03/9.93 new_esEs31(xuu5000, xuu400, app(ty_Ratio, cad)) -> new_esEs9(xuu5000, xuu400, cad) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Bool, bhh) -> new_esEs10(xuu50000, xuu4000) 24.03/9.93 new_esEs26(xuu52001, xuu53001, ty_Double) -> new_esEs11(xuu52001, xuu53001) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Maybe, db)) -> new_esEs5(xuu50000, xuu4000, db) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(ty_Maybe, bge)) -> new_ltEs13(xuu52000, xuu53000, bge) 24.03/9.93 new_compare26(xuu52000, xuu53000, True, eb, ec, ed) -> EQ 24.03/9.93 new_ltEs20(xuu5200, xuu5300, app(ty_Ratio, dba)) -> new_ltEs4(xuu5200, xuu5300, dba) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, app(app(app(ty_@3, gd), ge), gf)) -> new_ltEs17(xuu52001, xuu53001, gd, ge, gf) 24.03/9.93 new_ltEs21(xuu52002, xuu53002, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_ltEs17(xuu52002, xuu53002, dgb, dgc, dgd) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), app(app(ty_Either, dbf), dbg)) -> new_ltEs12(xuu52000, xuu53000, dbf, dbg) 24.03/9.93 new_esEs21(xuu50002, xuu4002, ty_Float) -> new_esEs15(xuu50002, xuu4002) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_@0, bef) -> new_ltEs15(xuu52000, xuu53000) 24.03/9.93 new_primMulInt(Pos(xuu500000), Neg(xuu40010)) -> Neg(new_primMulNat0(xuu500000, xuu40010)) 24.03/9.93 new_primMulInt(Neg(xuu500000), Pos(xuu40010)) -> Neg(new_primMulNat0(xuu500000, xuu40010)) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(app(ty_Either, bgc), bgd)) -> new_ltEs12(xuu52000, xuu53000, bgc, bgd) 24.03/9.93 new_esEs20(xuu50001, xuu4001, ty_@0) -> new_esEs8(xuu50001, xuu4001) 24.03/9.93 new_compare19(xuu52000, xuu53000, fa, fb) -> new_compare27(xuu52000, xuu53000, new_esEs6(xuu52000, xuu53000, fa, fb), fa, fb) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Double, bef) -> new_ltEs14(xuu52000, xuu53000) 24.03/9.93 new_compare32(xuu52000, xuu53000, ty_@0) -> new_compare17(xuu52000, xuu53000) 24.03/9.93 new_ltEs12(Right(xuu52000), Left(xuu53000), bga, bef) -> False 24.03/9.93 new_ltEs21(xuu52002, xuu53002, app(ty_Maybe, dff)) -> new_ltEs13(xuu52002, xuu53002, dff) 24.03/9.93 new_lt4(xuu52000, xuu53000) -> new_esEs17(new_compare12(xuu52000, xuu53000), LT) 24.03/9.93 new_compare32(xuu52000, xuu53000, ty_Double) -> new_compare16(xuu52000, xuu53000) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Float, bhh) -> new_esEs15(xuu50000, xuu4000) 24.03/9.93 new_esEs19(xuu50000, xuu4000, ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, ty_Double) -> new_ltEs14(xuu5200, xuu5300) 24.03/9.93 new_esEs24(xuu50000, xuu4000, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.03/9.93 new_ltEs5(False, False) -> True 24.03/9.93 new_esEs29(xuu22, xuu17, app(ty_Maybe, bde)) -> new_esEs5(xuu22, xuu17, bde) 24.03/9.93 new_esEs27(xuu50000, xuu4000, ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.03/9.93 new_esEs29(xuu22, xuu17, ty_Char) -> new_esEs16(xuu22, xuu17) 24.03/9.93 new_esEs29(xuu22, xuu17, ty_Bool) -> new_esEs10(xuu22, xuu17) 24.03/9.93 new_esEs29(xuu22, xuu17, ty_@0) -> new_esEs8(xuu22, xuu17) 24.03/9.93 new_lt5(xuu52000, xuu53000, ty_Ordering) -> new_lt6(xuu52000, xuu53000) 24.03/9.93 new_compare32(xuu52000, xuu53000, ty_Float) -> new_compare31(xuu52000, xuu53000) 24.03/9.93 new_esEs19(xuu50000, xuu4000, ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.03/9.93 new_esEs18(xuu52000, xuu53000, ty_Integer) -> new_esEs14(xuu52000, xuu53000) 24.03/9.93 new_lt20(xuu52000, xuu53000, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_lt18(xuu52000, xuu53000, ddf, ddg, ddh) 24.03/9.93 new_esEs22(xuu50000, xuu4000, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.03/9.93 new_esEs19(xuu50000, xuu4000, app(ty_Maybe, hg)) -> new_esEs5(xuu50000, xuu4000, hg) 24.03/9.93 new_esEs28(xuu50001, xuu4001, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs7(xuu50001, xuu4001, dhg, dhh, eaa) 24.03/9.93 new_ltEs8(GT, GT) -> True 24.03/9.93 new_esEs25(xuu52000, xuu53000, ty_Char) -> new_esEs16(xuu52000, xuu53000) 24.03/9.93 new_compare32(xuu52000, xuu53000, ty_Ordering) -> new_compare14(xuu52000, xuu53000) 24.03/9.93 new_ltEs21(xuu52002, xuu53002, app(app(ty_Either, dfd), dfe)) -> new_ltEs12(xuu52002, xuu53002, dfd, dfe) 24.03/9.93 new_asAs(True, xuu179) -> xuu179 24.03/9.93 new_esEs25(xuu52000, xuu53000, ty_Bool) -> new_esEs10(xuu52000, xuu53000) 24.03/9.93 new_lt19(xuu52001, xuu53001, app(ty_Ratio, deg)) -> new_lt15(xuu52001, xuu53001, deg) 24.03/9.93 new_esEs30(xuu5000, xuu400, ty_Integer) -> new_esEs14(xuu5000, xuu400) 24.03/9.93 new_compare10(xuu184, xuu185, False, ca, cb) -> GT 24.03/9.93 new_esEs27(xuu50000, xuu4000, app(ty_[], dha)) -> new_esEs13(xuu50000, xuu4000, dha) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, ty_Double) -> new_ltEs14(xuu52001, xuu53001) 24.03/9.93 new_lt19(xuu52001, xuu53001, app(app(app(ty_@3, deh), dfa), dfb)) -> new_lt18(xuu52001, xuu53001, deh, dfa, dfb) 24.03/9.93 new_esEs30(xuu5000, xuu400, ty_@0) -> new_esEs8(xuu5000, xuu400) 24.03/9.93 new_ltEs20(xuu5200, xuu5300, ty_@0) -> new_ltEs15(xuu5200, xuu5300) 24.03/9.93 new_ltEs21(xuu52002, xuu53002, ty_Integer) -> new_ltEs9(xuu52002, xuu53002) 24.03/9.93 new_ltEs8(EQ, EQ) -> True 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), app(app(ty_@2, dca), dcb)) -> new_ltEs6(xuu52000, xuu53000, dca, dcb) 24.03/9.93 new_esEs20(xuu50001, xuu4001, app(ty_Maybe, bba)) -> new_esEs5(xuu50001, xuu4001, bba) 24.03/9.93 new_esEs16(Char(xuu50000), Char(xuu4000)) -> new_primEqNat0(xuu50000, xuu4000) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, cdg), cdh), cea), bhh) -> new_esEs7(xuu50000, xuu4000, cdg, cdh, cea) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), app(app(ty_Either, ceg), ceh), bhh) -> new_esEs4(xuu50000, xuu4000, ceg, ceh) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(app(ty_@2, cfg), cfh)) -> new_esEs6(xuu50000, xuu4000, cfg, cfh) 24.03/9.93 new_esEs24(xuu50000, xuu4000, ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.03/9.93 new_esEs27(xuu50000, xuu4000, ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.03/9.93 new_ltEs20(xuu5200, xuu5300, ty_Float) -> new_ltEs16(xuu5200, xuu5300) 24.03/9.93 new_compare32(xuu52000, xuu53000, app(app(app(ty_@3, chb), chc), chd)) -> new_compare30(xuu52000, xuu53000, chb, chc, chd) 24.03/9.93 new_lt18(xuu52000, xuu53000, eb, ec, ed) -> new_esEs17(new_compare30(xuu52000, xuu53000, eb, ec, ed), LT) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, ty_@0) -> new_ltEs15(xuu5200, xuu5300) 24.03/9.93 new_lt19(xuu52001, xuu53001, ty_Int) -> new_lt8(xuu52001, xuu53001) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, app(app(app(ty_@3, chh), daa), dab)) -> new_ltEs17(xuu5200, xuu5300, chh, daa, dab) 24.03/9.93 new_primCmpInt(Pos(Succ(xuu5200)), Pos(xuu530)) -> new_primCmpNat0(Succ(xuu5200), xuu530) 24.03/9.93 new_compare23(Right(xuu5200), Right(xuu5300), False, che, chf) -> new_compare110(xuu5200, xuu5300, new_ltEs20(xuu5200, xuu5300, chf), che, chf) 24.03/9.93 new_esEs20(xuu50001, xuu4001, app(app(ty_Either, bbd), bbe)) -> new_esEs4(xuu50001, xuu4001, bbd, bbe) 24.03/9.93 new_ltEs8(EQ, GT) -> True 24.03/9.93 new_esEs19(xuu50000, xuu4000, app(app(ty_Either, bab), bac)) -> new_esEs4(xuu50000, xuu4000, bab, bac) 24.03/9.93 new_esEs27(xuu50000, xuu4000, app(app(ty_@2, dhc), dhd)) -> new_esEs6(xuu50000, xuu4000, dhc, dhd) 24.03/9.93 new_esEs28(xuu50001, xuu4001, ty_Float) -> new_esEs15(xuu50001, xuu4001) 24.03/9.93 new_ltEs11(xuu5200, xuu5300, bee) -> new_fsEs(new_compare(xuu5200, xuu5300, bee)) 24.03/9.93 new_primMulNat0(Zero, Zero) -> Zero 24.03/9.93 new_ltEs13(Nothing, Nothing, chg) -> True 24.03/9.93 new_esEs18(xuu52000, xuu53000, ty_@0) -> new_esEs8(xuu52000, xuu53000) 24.03/9.93 new_ltEs13(Just(xuu52000), Nothing, chg) -> False 24.03/9.93 new_compare28(xuu52000, xuu53000, eh) -> new_compare29(xuu52000, xuu53000, new_esEs5(xuu52000, xuu53000, eh), eh) 24.03/9.93 new_esEs24(xuu50000, xuu4000, app(ty_Maybe, cdb)) -> new_esEs5(xuu50000, xuu4000, cdb) 24.03/9.93 new_esEs30(xuu5000, xuu400, app(ty_Maybe, cc)) -> new_esEs5(xuu5000, xuu400, cc) 24.03/9.93 new_compare111(xuu52000, xuu53000, False) -> GT 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), app(ty_Ratio, bfe), bef) -> new_ltEs4(xuu52000, xuu53000, bfe) 24.03/9.93 new_compare32(xuu52000, xuu53000, app(ty_Ratio, cha)) -> new_compare7(xuu52000, xuu53000, cha) 24.03/9.93 new_compare9(xuu52000, xuu53000, dh, ea) -> new_compare23(xuu52000, xuu53000, new_esEs4(xuu52000, xuu53000, dh, ea), dh, ea) 24.03/9.93 new_esEs31(xuu5000, xuu400, ty_Char) -> new_esEs16(xuu5000, xuu400) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.03/9.93 new_esEs25(xuu52000, xuu53000, app(app(ty_Either, dch), dda)) -> new_esEs4(xuu52000, xuu53000, dch, dda) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, app(ty_Maybe, chg)) -> new_ltEs13(xuu5200, xuu5300, chg) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, ty_Float) -> new_ltEs16(xuu52001, xuu53001) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, ty_Integer) -> new_ltEs9(xuu52001, xuu53001) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, app(app(ty_Either, ff), fg)) -> new_ltEs12(xuu52001, xuu53001, ff, fg) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Ordering) -> new_ltEs8(xuu52000, xuu53000) 24.03/9.93 new_lt20(xuu52000, xuu53000, app(ty_Ratio, dde)) -> new_lt15(xuu52000, xuu53000, dde) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Double, bhh) -> new_esEs11(xuu50000, xuu4000) 24.03/9.93 new_esEs31(xuu5000, xuu400, ty_Bool) -> new_esEs10(xuu5000, xuu400) 24.03/9.93 new_esEs31(xuu5000, xuu400, app(ty_Maybe, caf)) -> new_esEs5(xuu5000, xuu400, caf) 24.03/9.93 new_compare26(xuu52000, xuu53000, False, eb, ec, ed) -> new_compare11(xuu52000, xuu53000, new_ltEs17(xuu52000, xuu53000, eb, ec, ed), eb, ec, ed) 24.03/9.93 new_compare31(Float(xuu52000, Pos(xuu520010)), Float(xuu53000, Neg(xuu530010))) -> new_compare8(new_sr0(xuu52000, Pos(xuu530010)), new_sr0(Neg(xuu520010), xuu53000)) 24.03/9.93 new_compare31(Float(xuu52000, Neg(xuu520010)), Float(xuu53000, Pos(xuu530010))) -> new_compare8(new_sr0(xuu52000, Neg(xuu530010)), new_sr0(Pos(xuu520010), xuu53000)) 24.03/9.93 new_lt5(xuu52000, xuu53000, app(ty_[], eg)) -> new_lt9(xuu52000, xuu53000, eg) 24.03/9.93 new_lt10(xuu52000, xuu53000, dh, ea) -> new_esEs17(new_compare9(xuu52000, xuu53000, dh, ea), LT) 24.03/9.93 new_esEs20(xuu50001, xuu4001, ty_Integer) -> new_esEs14(xuu50001, xuu4001) 24.03/9.93 new_esEs25(xuu52000, xuu53000, app(ty_Maybe, ddb)) -> new_esEs5(xuu52000, xuu53000, ddb) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(ty_Ratio, bgh)) -> new_ltEs4(xuu52000, xuu53000, bgh) 24.03/9.93 new_lt16(xuu52000, xuu53000) -> new_esEs17(new_compare17(xuu52000, xuu53000), LT) 24.03/9.93 new_esEs21(xuu50002, xuu4002, ty_Char) -> new_esEs16(xuu50002, xuu4002) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(app(ty_Either, cga), cgb)) -> new_esEs4(xuu50000, xuu4000, cga, cgb) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, app(app(ty_Either, bga), bef)) -> new_ltEs12(xuu5200, xuu5300, bga, bef) 24.03/9.93 new_lt20(xuu52000, xuu53000, ty_Integer) -> new_lt7(xuu52000, xuu53000) 24.03/9.93 new_esEs21(xuu50002, xuu4002, ty_Bool) -> new_esEs10(xuu50002, xuu4002) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), app(ty_Ratio, ceb), bhh) -> new_esEs9(xuu50000, xuu4000, ceb) 24.03/9.93 new_esEs28(xuu50001, xuu4001, app(app(ty_@2, eae), eaf)) -> new_esEs6(xuu50001, xuu4001, eae, eaf) 24.03/9.93 new_ltEs8(LT, EQ) -> True 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), app(app(app(ty_@3, bff), bfg), bfh), bef) -> new_ltEs17(xuu52000, xuu53000, bff, bfg, bfh) 24.03/9.93 new_primCompAux0(xuu224, EQ) -> xuu224 24.03/9.93 new_esEs27(xuu50000, xuu4000, app(ty_Ratio, dgh)) -> new_esEs9(xuu50000, xuu4000, dgh) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), app(ty_Ratio, dcc)) -> new_ltEs4(xuu52000, xuu53000, dcc) 24.03/9.93 new_esEs18(xuu52000, xuu53000, app(ty_Maybe, eh)) -> new_esEs5(xuu52000, xuu53000, eh) 24.03/9.93 new_esEs29(xuu22, xuu17, app(app(ty_Either, bdh), bea)) -> new_esEs4(xuu22, xuu17, bdh, bea) 24.03/9.93 new_esEs17(GT, GT) -> True 24.03/9.93 new_primEqInt(Neg(Succ(xuu500000)), Neg(Zero)) -> False 24.03/9.93 new_primEqInt(Neg(Zero), Neg(Succ(xuu40000))) -> False 24.03/9.93 new_lt19(xuu52001, xuu53001, ty_Integer) -> new_lt7(xuu52001, xuu53001) 24.03/9.93 new_esEs20(xuu50001, xuu4001, ty_Bool) -> new_esEs10(xuu50001, xuu4001) 24.03/9.93 new_ltEs20(xuu5200, xuu5300, app(app(ty_Either, dad), dae)) -> new_ltEs12(xuu5200, xuu5300, dad, dae) 24.03/9.93 new_compare([], [], bee) -> EQ 24.03/9.93 new_esEs20(xuu50001, xuu4001, ty_Char) -> new_esEs16(xuu50001, xuu4001) 24.03/9.93 new_esEs28(xuu50001, xuu4001, ty_@0) -> new_esEs8(xuu50001, xuu4001) 24.03/9.93 new_primEqInt(Pos(Succ(xuu500000)), Pos(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 24.03/9.93 new_esEs18(xuu52000, xuu53000, ty_Float) -> new_esEs15(xuu52000, xuu53000) 24.03/9.93 new_compare24(xuu52000, xuu53000, True) -> EQ 24.03/9.93 new_ltEs8(LT, LT) -> True 24.03/9.93 new_compare16(Double(xuu52000, Pos(xuu520010)), Double(xuu53000, Neg(xuu530010))) -> new_compare8(new_sr0(xuu52000, Pos(xuu530010)), new_sr0(Neg(xuu520010), xuu53000)) 24.03/9.93 new_compare16(Double(xuu52000, Neg(xuu520010)), Double(xuu53000, Pos(xuu530010))) -> new_compare8(new_sr0(xuu52000, Neg(xuu530010)), new_sr0(Pos(xuu520010), xuu53000)) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Ratio, cg)) -> new_esEs9(xuu50000, xuu4000, cg) 24.03/9.93 new_lt19(xuu52001, xuu53001, app(ty_[], dea)) -> new_lt9(xuu52001, xuu53001, dea) 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(ty_Ratio, cfd)) -> new_esEs9(xuu50000, xuu4000, cfd) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Int) -> new_ltEs10(xuu52000, xuu53000) 24.03/9.93 new_primEqInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> False 24.03/9.93 new_primEqInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> False 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Char) -> new_ltEs18(xuu52000, xuu53000) 24.03/9.93 new_lt5(xuu52000, xuu53000, ty_Double) -> new_lt12(xuu52000, xuu53000) 24.03/9.93 new_esEs28(xuu50001, xuu4001, app(ty_[], eac)) -> new_esEs13(xuu50001, xuu4001, eac) 24.03/9.93 new_primCmpInt(Neg(Zero), Neg(Succ(xuu5300))) -> new_primCmpNat0(Succ(xuu5300), Zero) 24.03/9.93 new_esEs30(xuu5000, xuu400, app(app(ty_Either, bhg), bhh)) -> new_esEs4(xuu5000, xuu400, bhg, bhh) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(ty_[], bgb)) -> new_ltEs11(xuu52000, xuu53000, bgb) 24.03/9.93 new_esEs24(xuu50000, xuu4000, app(app(ty_Either, cde), cdf)) -> new_esEs4(xuu50000, xuu4000, cde, cdf) 24.03/9.93 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 24.03/9.93 new_esEs18(xuu52000, xuu53000, app(app(ty_Either, dh), ea)) -> new_esEs4(xuu52000, xuu53000, dh, ea) 24.03/9.93 new_esEs28(xuu50001, xuu4001, app(ty_Maybe, ead)) -> new_esEs5(xuu50001, xuu4001, ead) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_[], da)) -> new_esEs13(xuu50000, xuu4000, da) 24.03/9.93 new_fsEs(xuu194) -> new_not(new_esEs17(xuu194, GT)) 24.03/9.93 new_ltEs19(xuu5200, xuu5300, ty_Bool) -> new_ltEs5(xuu5200, xuu5300) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.03/9.93 new_esEs24(xuu50000, xuu4000, ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.03/9.93 new_esEs28(xuu50001, xuu4001, ty_Bool) -> new_esEs10(xuu50001, xuu4001) 24.03/9.93 new_esEs12(xuu5000, xuu400) -> new_primEqInt(xuu5000, xuu400) 24.03/9.93 new_esEs19(xuu50000, xuu4000, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.03/9.93 new_esEs24(xuu50000, xuu4000, ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.03/9.93 new_esEs29(xuu22, xuu17, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs7(xuu22, xuu17, bch, bda, bdb) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Bool, bef) -> new_ltEs5(xuu52000, xuu53000) 24.03/9.93 new_lt12(xuu52000, xuu53000) -> new_esEs17(new_compare16(xuu52000, xuu53000), LT) 24.03/9.93 new_esEs7(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), gg, gh, ha) -> new_asAs(new_esEs19(xuu50000, xuu4000, gg), new_asAs(new_esEs20(xuu50001, xuu4001, gh), new_esEs21(xuu50002, xuu4002, ha))) 24.03/9.93 new_not(False) -> True 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Int, bef) -> new_ltEs10(xuu52000, xuu53000) 24.03/9.93 new_esEs21(xuu50002, xuu4002, ty_@0) -> new_esEs8(xuu50002, xuu4002) 24.03/9.93 new_esEs20(xuu50001, xuu4001, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs7(xuu50001, xuu4001, bad, bae, baf) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, app(ty_Maybe, fh)) -> new_ltEs13(xuu52001, xuu53001, fh) 24.03/9.93 new_esEs30(xuu5000, xuu400, app(app(ty_@2, bhe), bhf)) -> new_esEs6(xuu5000, xuu400, bhe, bhf) 24.03/9.93 new_esEs32(xuu41, xuu36, app(ty_[], cbg)) -> new_esEs13(xuu41, xuu36, cbg) 24.03/9.93 new_primPlusNat0(Succ(xuu55200), Succ(xuu13600)) -> Succ(Succ(new_primPlusNat0(xuu55200, xuu13600))) 24.03/9.93 new_compare32(xuu52000, xuu53000, app(app(ty_@2, cgg), cgh)) -> new_compare19(xuu52000, xuu53000, cgg, cgh) 24.03/9.93 new_lt5(xuu52000, xuu53000, ty_Int) -> new_lt8(xuu52000, xuu53000) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_@0) -> new_ltEs15(xuu52000, xuu53000) 24.03/9.93 new_esEs30(xuu5000, xuu400, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs7(xuu5000, xuu400, gg, gh, ha) 24.03/9.93 new_esEs20(xuu50001, xuu4001, app(app(ty_@2, bbb), bbc)) -> new_esEs6(xuu50001, xuu4001, bbb, bbc) 24.03/9.93 new_esEs23(xuu50001, xuu4001, ty_Integer) -> new_esEs14(xuu50001, xuu4001) 24.03/9.93 new_compare27(xuu52000, xuu53000, True, fa, fb) -> EQ 24.03/9.93 new_compare25(xuu52000, xuu53000, True) -> EQ 24.03/9.93 new_lt19(xuu52001, xuu53001, ty_@0) -> new_lt16(xuu52001, xuu53001) 24.03/9.93 new_esEs10(True, True) -> True 24.03/9.93 new_esEs27(xuu50000, xuu4000, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs7(xuu50000, xuu4000, dge, dgf, dgg) 24.03/9.93 new_lt20(xuu52000, xuu53000, ty_Int) -> new_lt8(xuu52000, xuu53000) 24.03/9.93 new_esEs26(xuu52001, xuu53001, app(ty_Maybe, ded)) -> new_esEs5(xuu52001, xuu53001, ded) 24.03/9.93 new_lt20(xuu52000, xuu53000, ty_Char) -> new_lt4(xuu52000, xuu53000) 24.03/9.93 new_esEs18(xuu52000, xuu53000, ty_Bool) -> new_esEs10(xuu52000, xuu53000) 24.03/9.93 new_esEs29(xuu22, xuu17, app(app(ty_@2, bdf), bdg)) -> new_esEs6(xuu22, xuu17, bdf, bdg) 24.03/9.93 new_sr0(xuu50000, xuu4001) -> new_primMulInt(xuu50000, xuu4001) 24.03/9.93 new_lt5(xuu52000, xuu53000, ty_Integer) -> new_lt7(xuu52000, xuu53000) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), app(ty_Maybe, ced), bhh) -> new_esEs5(xuu50000, xuu4000, ced) 24.03/9.93 new_esEs30(xuu5000, xuu400, app(ty_[], bhd)) -> new_esEs13(xuu5000, xuu400, bhd) 24.03/9.93 new_esEs18(xuu52000, xuu53000, app(ty_[], eg)) -> new_esEs13(xuu52000, xuu53000, eg) 24.03/9.93 new_lt9(xuu52000, xuu53000, eg) -> new_esEs17(new_compare(xuu52000, xuu53000, eg), LT) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.03/9.93 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 24.03/9.93 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Char) -> new_ltEs18(xuu52000, xuu53000) 24.03/9.93 new_esEs26(xuu52001, xuu53001, app(ty_Ratio, deg)) -> new_esEs9(xuu52001, xuu53001, deg) 24.03/9.93 new_ltEs5(True, True) -> True 24.03/9.93 new_ltEs21(xuu52002, xuu53002, ty_Ordering) -> new_ltEs8(xuu52002, xuu53002) 24.03/9.93 new_esEs28(xuu50001, xuu4001, app(app(ty_Either, eag), eah)) -> new_esEs4(xuu50001, xuu4001, eag, eah) 24.03/9.93 new_lt5(xuu52000, xuu53000, ty_Char) -> new_lt4(xuu52000, xuu53000) 24.03/9.93 new_esEs28(xuu50001, xuu4001, ty_Int) -> new_esEs12(xuu50001, xuu4001) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Float) -> new_ltEs16(xuu52000, xuu53000) 24.03/9.93 new_compare23(Right(xuu5200), Left(xuu5300), False, che, chf) -> GT 24.03/9.93 new_esEs32(xuu41, xuu36, app(app(ty_@2, cca), ccb)) -> new_esEs6(xuu41, xuu36, cca, ccb) 24.03/9.93 new_esEs32(xuu41, xuu36, ty_@0) -> new_esEs8(xuu41, xuu36) 24.03/9.93 new_esEs25(xuu52000, xuu53000, app(ty_Ratio, dde)) -> new_esEs9(xuu52000, xuu53000, dde) 24.03/9.93 new_esEs18(xuu52000, xuu53000, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs7(xuu52000, xuu53000, eb, ec, ed) 24.03/9.93 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Integer) -> new_ltEs9(xuu52000, xuu53000) 24.03/9.93 new_esEs26(xuu52001, xuu53001, app(app(ty_Either, deb), dec)) -> new_esEs4(xuu52001, xuu53001, deb, dec) 24.03/9.93 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 24.03/9.93 new_primCompAux1(xuu52000, xuu53000, xuu211, bee) -> new_primCompAux0(xuu211, new_compare32(xuu52000, xuu53000, bee)) 24.03/9.93 new_esEs30(xuu5000, xuu400, ty_Bool) -> new_esEs10(xuu5000, xuu400) 24.03/9.93 new_compare14(xuu52000, xuu53000) -> new_compare25(xuu52000, xuu53000, new_esEs17(xuu52000, xuu53000)) 24.03/9.93 new_compare17(@0, @0) -> EQ 24.03/9.93 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.03/9.93 new_esEs21(xuu50002, xuu4002, ty_Integer) -> new_esEs14(xuu50002, xuu4002) 24.03/9.93 new_primCmpNat0(Succ(xuu5200), Succ(xuu5300)) -> new_primCmpNat0(xuu5200, xuu5300) 24.03/9.93 new_compare29(xuu52000, xuu53000, False, eh) -> new_compare112(xuu52000, xuu53000, new_ltEs13(xuu52000, xuu53000, eh), eh) 24.03/9.93 new_compare29(xuu52000, xuu53000, True, eh) -> EQ 24.03/9.93 new_esEs19(xuu50000, xuu4000, ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.03/9.93 new_lt20(xuu52000, xuu53000, ty_@0) -> new_lt16(xuu52000, xuu53000) 24.03/9.93 new_esEs26(xuu52001, xuu53001, ty_Int) -> new_esEs12(xuu52001, xuu53001) 24.03/9.93 new_lt19(xuu52001, xuu53001, ty_Char) -> new_lt4(xuu52001, xuu53001) 24.03/9.93 new_esEs24(xuu50000, xuu4000, ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.03/9.93 new_esEs31(xuu5000, xuu400, ty_@0) -> new_esEs8(xuu5000, xuu400) 24.03/9.93 new_lt20(xuu52000, xuu53000, app(app(ty_@2, ddc), ddd)) -> new_lt14(xuu52000, xuu53000, ddc, ddd) 24.03/9.93 new_ltEs7(xuu52001, xuu53001, ty_Bool) -> new_ltEs5(xuu52001, xuu53001) 24.03/9.93 new_esEs19(xuu50000, xuu4000, app(app(ty_@2, hh), baa)) -> new_esEs6(xuu50000, xuu4000, hh, baa) 24.03/9.93 new_esEs24(xuu50000, xuu4000, app(ty_Ratio, cch)) -> new_esEs9(xuu50000, xuu4000, cch) 24.03/9.93 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Int) -> new_ltEs10(xuu52000, xuu53000) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Integer, bhh) -> new_esEs14(xuu50000, xuu4000) 24.03/9.93 new_compare15(xuu52000, xuu53000, False, fa, fb) -> GT 24.03/9.93 new_ltEs19(xuu5200, xuu5300, ty_Float) -> new_ltEs16(xuu5200, xuu5300) 24.03/9.93 new_esEs27(xuu50000, xuu4000, ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.03/9.93 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 24.03/9.93 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 24.03/9.93 new_ltEs21(xuu52002, xuu53002, ty_Bool) -> new_ltEs5(xuu52002, xuu53002) 24.03/9.93 new_lt5(xuu52000, xuu53000, app(app(ty_@2, fa), fb)) -> new_lt14(xuu52000, xuu53000, fa, fb) 24.03/9.93 new_compare110(xuu191, xuu192, False, bec, bed) -> GT 24.03/9.93 new_ltEs9(xuu5200, xuu5300) -> new_fsEs(new_compare6(xuu5200, xuu5300)) 24.03/9.93 new_esEs6(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), bhe, bhf) -> new_asAs(new_esEs27(xuu50000, xuu4000, bhe), new_esEs28(xuu50001, xuu4001, bhf)) 24.03/9.93 new_esEs27(xuu50000, xuu4000, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.03/9.93 new_primEqNat0(Zero, Zero) -> True 24.03/9.93 new_lt19(xuu52001, xuu53001, ty_Ordering) -> new_lt6(xuu52001, xuu53001) 24.03/9.93 new_esEs21(xuu50002, xuu4002, ty_Double) -> new_esEs11(xuu50002, xuu4002) 24.03/9.93 new_esEs18(xuu52000, xuu53000, app(app(ty_@2, fa), fb)) -> new_esEs6(xuu52000, xuu53000, fa, fb) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Ordering, bhh) -> new_esEs17(xuu50000, xuu4000) 24.03/9.93 new_lt5(xuu52000, xuu53000, ty_@0) -> new_lt16(xuu52000, xuu53000) 24.03/9.93 new_esEs32(xuu41, xuu36, ty_Double) -> new_esEs11(xuu41, xuu36) 24.03/9.93 new_ltEs8(LT, GT) -> True 24.03/9.93 new_esEs26(xuu52001, xuu53001, ty_Float) -> new_esEs15(xuu52001, xuu53001) 24.03/9.93 new_lt5(xuu52000, xuu53000, app(app(app(ty_@3, eb), ec), ed)) -> new_lt18(xuu52000, xuu53000, eb, ec, ed) 24.03/9.93 new_ltEs17(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), chh, daa, dab) -> new_pePe(new_lt20(xuu52000, xuu53000, chh), new_asAs(new_esEs25(xuu52000, xuu53000, chh), new_pePe(new_lt19(xuu52001, xuu53001, daa), new_asAs(new_esEs26(xuu52001, xuu53001, daa), new_ltEs21(xuu52002, xuu53002, dab))))) 24.03/9.93 new_esEs31(xuu5000, xuu400, app(app(ty_@2, cag), cah)) -> new_esEs6(xuu5000, xuu400, cag, cah) 24.03/9.93 new_esEs19(xuu50000, xuu4000, app(ty_[], hf)) -> new_esEs13(xuu50000, xuu4000, hf) 24.03/9.93 new_asAs(False, xuu179) -> False 24.03/9.93 new_ltEs20(xuu5200, xuu5300, ty_Bool) -> new_ltEs5(xuu5200, xuu5300) 24.03/9.93 new_ltEs8(EQ, LT) -> False 24.03/9.93 new_compare30(xuu52000, xuu53000, eb, ec, ed) -> new_compare26(xuu52000, xuu53000, new_esEs7(xuu52000, xuu53000, eb, ec, ed), eb, ec, ed) 24.03/9.93 new_compare13(xuu52000, xuu53000) -> new_compare24(xuu52000, xuu53000, new_esEs10(xuu52000, xuu53000)) 24.03/9.93 new_compare(:(xuu52000, xuu52001), :(xuu53000, xuu53001), bee) -> new_primCompAux1(xuu52000, xuu53000, new_compare(xuu52001, xuu53001, bee), bee) 24.03/9.93 new_lt20(xuu52000, xuu53000, ty_Ordering) -> new_lt6(xuu52000, xuu53000) 24.03/9.93 new_esEs27(xuu50000, xuu4000, app(ty_Maybe, dhb)) -> new_esEs5(xuu50000, xuu4000, dhb) 24.03/9.93 new_esEs22(xuu50000, xuu4000, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.03/9.93 new_ltEs21(xuu52002, xuu53002, app(ty_[], dfc)) -> new_ltEs11(xuu52002, xuu53002, dfc) 24.03/9.93 new_esEs14(Integer(xuu50000), Integer(xuu4000)) -> new_primEqInt(xuu50000, xuu4000) 24.03/9.93 new_esEs27(xuu50000, xuu4000, app(app(ty_Either, dhe), dhf)) -> new_esEs4(xuu50000, xuu4000, dhe, dhf) 24.03/9.93 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.03/9.93 new_ltEs13(Nothing, Just(xuu53000), chg) -> True 24.03/9.93 new_compare7(:%(xuu52000, xuu52001), :%(xuu53000, xuu53001), ty_Integer) -> new_compare6(new_sr(xuu52000, xuu53001), new_sr(xuu53000, xuu52001)) 24.03/9.93 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Char, bhh) -> new_esEs16(xuu50000, xuu4000) 24.03/9.93 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Float, bef) -> new_ltEs16(xuu52000, xuu53000) 24.03/9.93 new_compare112(xuu52000, xuu53000, False, eh) -> GT 24.03/9.93 new_lt19(xuu52001, xuu53001, app(app(ty_@2, dee), def)) -> new_lt14(xuu52001, xuu53001, dee, def) 24.03/9.93 new_esEs20(xuu50001, xuu4001, app(ty_[], bah)) -> new_esEs13(xuu50001, xuu4001, bah) 24.03/9.93 new_compare23(Left(xuu5200), Left(xuu5300), False, che, chf) -> new_compare10(xuu5200, xuu5300, new_ltEs19(xuu5200, xuu5300, che), che, chf) 24.03/9.93 new_lt14(xuu52000, xuu53000, fa, fb) -> new_esEs17(new_compare19(xuu52000, xuu53000, fa, fb), LT) 24.03/9.93 24.03/9.93 The set Q consists of the following terms: 24.03/9.93 24.03/9.93 new_esEs13(:(x0, x1), [], x2) 24.03/9.93 new_lt5(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs31(x0, x1, ty_@0) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), ty_Char) 24.03/9.93 new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_esEs5(Nothing, Just(x0), x1) 24.03/9.93 new_compare(:(x0, x1), :(x2, x3), x4) 24.03/9.93 new_lt20(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_lt20(x0, x1, ty_Int) 24.03/9.93 new_ltEs7(x0, x1, ty_Char) 24.03/9.93 new_compare24(x0, x1, True) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 24.03/9.93 new_compare27(x0, x1, False, x2, x3) 24.03/9.93 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 24.03/9.93 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 24.03/9.93 new_esEs23(x0, x1, ty_Integer) 24.03/9.93 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_ltEs19(x0, x1, ty_@0) 24.03/9.93 new_esEs32(x0, x1, ty_Double) 24.03/9.93 new_compare13(x0, x1) 24.03/9.93 new_lt8(x0, x1) 24.03/9.93 new_ltEs7(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_ltEs14(x0, x1) 24.03/9.93 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.03/9.93 new_compare32(x0, x1, ty_Float) 24.03/9.93 new_lt20(x0, x1, ty_Ordering) 24.03/9.93 new_fsEs(x0) 24.03/9.93 new_ltEs18(x0, x1) 24.03/9.93 new_esEs27(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_esEs29(x0, x1, ty_Float) 24.03/9.93 new_ltEs13(Nothing, Nothing, x0) 24.03/9.93 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_sr(Integer(x0), Integer(x1)) 24.03/9.93 new_ltEs20(x0, x1, ty_Double) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.03/9.93 new_esEs26(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_esEs18(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 24.03/9.93 new_esEs31(x0, x1, ty_Bool) 24.03/9.93 new_sr0(x0, x1) 24.03/9.93 new_ltEs16(x0, x1) 24.03/9.93 new_esEs25(x0, x1, ty_Char) 24.03/9.93 new_ltEs19(x0, x1, ty_Bool) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), ty_Int) 24.03/9.93 new_primCmpNat0(Zero, Succ(x0)) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 24.03/9.93 new_primPlusNat0(Succ(x0), Succ(x1)) 24.03/9.93 new_lt19(x0, x1, app(ty_[], x2)) 24.03/9.93 new_lt20(x0, x1, ty_Char) 24.03/9.93 new_lt14(x0, x1, x2, x3) 24.03/9.93 new_ltEs7(x0, x1, ty_Int) 24.03/9.93 new_primEqInt(Pos(Zero), Pos(Zero)) 24.03/9.93 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.03/9.93 new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 24.03/9.93 new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 24.03/9.93 new_esEs28(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_compare11(x0, x1, False, x2, x3, x4) 24.03/9.93 new_esEs25(x0, x1, ty_Int) 24.03/9.93 new_primMulNat0(Succ(x0), Zero) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs26(x0, x1, ty_@0) 24.03/9.93 new_lt15(x0, x1, x2) 24.03/9.93 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.03/9.93 new_esEs32(x0, x1, ty_Ordering) 24.03/9.93 new_esEs31(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs13([], :(x0, x1), x2) 24.03/9.93 new_compare([], :(x0, x1), x2) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 24.03/9.93 new_ltEs5(False, True) 24.03/9.93 new_ltEs5(True, False) 24.03/9.93 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_compare23(x0, x1, True, x2, x3) 24.03/9.93 new_ltEs19(x0, x1, ty_Char) 24.03/9.93 new_esEs24(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_primCompAux0(x0, EQ) 24.03/9.93 new_esEs32(x0, x1, ty_Int) 24.03/9.93 new_compare17(@0, @0) 24.03/9.93 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_esEs25(x0, x1, ty_Ordering) 24.03/9.93 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_primEqNat0(Zero, Succ(x0)) 24.03/9.93 new_esEs25(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_primEqInt(Neg(Zero), Neg(Zero)) 24.03/9.93 new_esEs24(x0, x1, ty_Bool) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.03/9.93 new_lt19(x0, x1, ty_Double) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.03/9.93 new_lt20(x0, x1, ty_Double) 24.03/9.93 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 24.03/9.93 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs31(x0, x1, ty_Char) 24.03/9.93 new_lt19(x0, x1, ty_Ordering) 24.03/9.93 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.03/9.93 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs26(x0, x1, ty_Int) 24.03/9.93 new_esEs32(x0, x1, ty_Char) 24.03/9.93 new_ltEs19(x0, x1, ty_Integer) 24.03/9.93 new_esEs27(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs24(x0, x1, ty_Integer) 24.03/9.93 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.03/9.93 new_ltEs20(x0, x1, ty_Int) 24.03/9.93 new_esEs21(x0, x1, ty_Ordering) 24.03/9.93 new_ltEs7(x0, x1, ty_@0) 24.03/9.93 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs28(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 24.03/9.93 new_ltEs20(x0, x1, ty_Char) 24.03/9.93 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_lt5(x0, x1, ty_Integer) 24.03/9.93 new_esEs31(x0, x1, ty_Integer) 24.03/9.93 new_esEs10(True, True) 24.03/9.93 new_esEs26(x0, x1, ty_Char) 24.03/9.93 new_esEs20(x0, x1, ty_Double) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 24.03/9.93 new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 24.03/9.93 new_esEs20(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_esEs21(x0, x1, app(ty_[], x2)) 24.03/9.93 new_ltEs21(x0, x1, ty_Double) 24.03/9.93 new_esEs30(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_lt20(x0, x1, ty_@0) 24.03/9.93 new_esEs17(EQ, GT) 24.03/9.93 new_esEs17(GT, EQ) 24.03/9.93 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_primMulInt(Pos(x0), Pos(x1)) 24.03/9.93 new_lt4(x0, x1) 24.03/9.93 new_primEqInt(Pos(Zero), Neg(Zero)) 24.03/9.93 new_primEqInt(Neg(Zero), Pos(Zero)) 24.03/9.93 new_primMulNat0(Succ(x0), Succ(x1)) 24.03/9.93 new_ltEs10(x0, x1) 24.03/9.93 new_compare12(Char(x0), Char(x1)) 24.03/9.93 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_ltEs13(Just(x0), Nothing, x1) 24.03/9.93 new_esEs26(x0, x1, ty_Double) 24.03/9.93 new_esEs24(x0, x1, ty_Ordering) 24.03/9.93 new_compare32(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.03/9.93 new_compare111(x0, x1, True) 24.03/9.93 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 24.03/9.93 new_compare31(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 24.03/9.93 new_esEs18(x0, x1, ty_Float) 24.03/9.93 new_ltEs8(LT, LT) 24.03/9.93 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 24.03/9.93 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_primCompAux0(x0, LT) 24.03/9.93 new_compare29(x0, x1, False, x2) 24.03/9.93 new_compare15(x0, x1, False, x2, x3) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 24.03/9.93 new_lt16(x0, x1) 24.03/9.93 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_compare8(x0, x1) 24.03/9.93 new_compare11(x0, x1, True, x2, x3, x4) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 24.03/9.93 new_esEs18(x0, x1, ty_@0) 24.03/9.93 new_compare32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_esEs19(x0, x1, ty_Integer) 24.03/9.93 new_esEs26(x0, x1, ty_Bool) 24.03/9.93 new_esEs32(x0, x1, ty_@0) 24.03/9.93 new_esEs31(x0, x1, ty_Double) 24.03/9.93 new_esEs17(LT, GT) 24.03/9.93 new_esEs17(GT, LT) 24.03/9.93 new_esEs19(x0, x1, ty_Bool) 24.03/9.93 new_esEs23(x0, x1, ty_Int) 24.03/9.93 new_lt5(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 24.03/9.93 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 24.03/9.93 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 24.03/9.93 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_primPlusNat1(Succ(x0), x1) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.03/9.93 new_esEs28(x0, x1, ty_Float) 24.03/9.93 new_esEs5(Just(x0), Just(x1), ty_Double) 24.03/9.93 new_esEs24(x0, x1, ty_Double) 24.03/9.93 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_esEs31(x0, x1, ty_Ordering) 24.03/9.93 new_compare10(x0, x1, True, x2, x3) 24.03/9.93 new_compare32(x0, x1, ty_Bool) 24.03/9.93 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 24.03/9.93 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.03/9.93 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_esEs29(x0, x1, ty_@0) 24.03/9.93 new_compare24(x0, x1, False) 24.03/9.93 new_ltEs7(x0, x1, ty_Integer) 24.03/9.93 new_esEs28(x0, x1, ty_Double) 24.03/9.93 new_ltEs19(x0, x1, ty_Ordering) 24.03/9.93 new_ltEs20(x0, x1, ty_Bool) 24.03/9.93 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 24.03/9.93 new_primCmpNat0(Succ(x0), Zero) 24.03/9.93 new_compare18(x0, x1, True) 24.03/9.93 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 24.03/9.93 new_esEs20(x0, x1, ty_Ordering) 24.03/9.93 new_esEs26(x0, x1, ty_Ordering) 24.03/9.93 new_esEs32(x0, x1, app(ty_[], x2)) 24.03/9.93 new_compare29(x0, x1, True, x2) 24.03/9.93 new_ltEs19(x0, x1, ty_Double) 24.03/9.93 new_ltEs21(x0, x1, ty_Ordering) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), ty_Integer) 24.03/9.93 new_esEs26(x0, x1, ty_Integer) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.03/9.93 new_compare15(x0, x1, True, x2, x3) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.03/9.93 new_esEs22(x0, x1, ty_Int) 24.03/9.93 new_ltEs8(GT, GT) 24.03/9.93 new_esEs21(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 24.03/9.93 new_compare31(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 24.03/9.93 new_compare31(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 24.03/9.93 new_ltEs8(LT, EQ) 24.03/9.93 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_ltEs8(EQ, LT) 24.03/9.93 new_esEs10(False, False) 24.03/9.93 new_primCmpInt(Neg(Zero), Neg(Zero)) 24.03/9.93 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_lt18(x0, x1, x2, x3, x4) 24.03/9.93 new_esEs25(x0, x1, ty_Double) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 24.03/9.93 new_ltEs20(x0, x1, ty_Integer) 24.03/9.93 new_ltEs7(x0, x1, ty_Bool) 24.03/9.93 new_esEs25(x0, x1, ty_@0) 24.03/9.93 new_esEs27(x0, x1, ty_Int) 24.03/9.93 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_compare([], [], x0) 24.03/9.93 new_primCompAux1(x0, x1, x2, x3) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.03/9.93 new_primCmpInt(Pos(Zero), Neg(Zero)) 24.03/9.93 new_primCmpInt(Neg(Zero), Pos(Zero)) 24.03/9.93 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_ltEs7(x0, x1, ty_Ordering) 24.03/9.93 new_esEs19(x0, x1, ty_Char) 24.03/9.93 new_esEs32(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_primPlusNat1(Zero, x0) 24.03/9.93 new_primEqNat0(Succ(x0), Zero) 24.03/9.93 new_lt19(x0, x1, ty_@0) 24.03/9.93 new_esEs21(x0, x1, ty_Int) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.03/9.93 new_ltEs7(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs30(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs22(x0, x1, ty_Integer) 24.03/9.93 new_ltEs5(True, True) 24.03/9.93 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 24.03/9.93 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 24.03/9.93 new_esEs21(x0, x1, ty_Char) 24.03/9.93 new_esEs21(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 24.03/9.93 new_lt5(x0, x1, ty_Double) 24.03/9.93 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.93 new_esEs27(x0, x1, ty_Char) 24.03/9.93 new_ltEs20(x0, x1, ty_Ordering) 24.03/9.93 new_esEs27(x0, x1, ty_Float) 24.03/9.93 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_lt5(x0, x1, ty_@0) 24.03/9.93 new_lt9(x0, x1, x2) 24.03/9.93 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 24.03/9.93 new_primPlusNat0(Zero, Succ(x0)) 24.03/9.93 new_ltEs19(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs30(x0, x1, ty_Integer) 24.03/9.93 new_esEs31(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_ltEs8(EQ, EQ) 24.03/9.93 new_compare25(x0, x1, True) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), ty_Bool) 24.03/9.93 new_esEs28(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs30(x0, x1, ty_Ordering) 24.03/9.93 new_esEs24(x0, x1, ty_@0) 24.03/9.93 new_esEs19(x0, x1, ty_Float) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 24.03/9.93 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_compare112(x0, x1, False, x2) 24.03/9.93 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_compare110(x0, x1, True, x2, x3) 24.03/9.93 new_esEs21(x0, x1, ty_Bool) 24.03/9.93 new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 24.03/9.93 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_lt10(x0, x1, x2, x3) 24.03/9.93 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 24.03/9.93 new_esEs29(x0, x1, ty_Ordering) 24.03/9.93 new_esEs13([], [], x0) 24.03/9.93 new_esEs28(x0, x1, ty_Bool) 24.03/9.93 new_esEs30(x0, x1, ty_Bool) 24.03/9.93 new_compare23(Left(x0), Right(x1), False, x2, x3) 24.03/9.93 new_lt20(x0, x1, app(ty_[], x2)) 24.03/9.93 new_compare32(x0, x1, ty_Ordering) 24.03/9.93 new_esEs20(x0, x1, ty_Integer) 24.03/9.93 new_compare23(Right(x0), Left(x1), False, x2, x3) 24.03/9.93 new_ltEs15(x0, x1) 24.03/9.93 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.03/9.93 new_compare14(x0, x1) 24.03/9.93 new_esEs5(Just(x0), Just(x1), ty_@0) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.03/9.93 new_esEs25(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs19(x0, x1, ty_Double) 24.03/9.93 new_ltEs21(x0, x1, ty_Integer) 24.03/9.93 new_ltEs9(x0, x1) 24.03/9.93 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 24.03/9.93 new_esEs19(x0, x1, ty_Ordering) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.03/9.93 new_primMulNat0(Zero, Zero) 24.03/9.93 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 24.03/9.93 new_compare32(x0, x1, ty_Double) 24.03/9.93 new_esEs24(x0, x1, app(ty_[], x2)) 24.03/9.93 new_ltEs11(x0, x1, x2) 24.03/9.93 new_esEs19(x0, x1, ty_Int) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 24.03/9.93 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 24.03/9.93 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_primCompAux0(x0, GT) 24.03/9.93 new_esEs32(x0, x1, ty_Float) 24.03/9.93 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.93 new_compare10(x0, x1, False, x2, x3) 24.03/9.93 new_esEs18(x0, x1, ty_Double) 24.03/9.93 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 24.03/9.93 new_esEs19(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs29(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs27(x0, x1, ty_Bool) 24.03/9.93 new_compare32(x0, x1, ty_Char) 24.03/9.93 new_esEs31(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs32(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_esEs29(x0, x1, ty_Int) 24.03/9.93 new_esEs29(x0, x1, ty_Double) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 24.03/9.93 new_esEs21(x0, x1, ty_Integer) 24.03/9.93 new_primEqNat0(Succ(x0), Succ(x1)) 24.03/9.93 new_compare26(x0, x1, False, x2, x3, x4) 24.03/9.93 new_ltEs13(Just(x0), Just(x1), ty_Float) 24.03/9.93 new_esEs21(x0, x1, ty_Float) 24.03/9.93 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_esEs5(Just(x0), Just(x1), ty_Integer) 24.03/9.93 new_esEs29(x0, x1, ty_Char) 24.03/9.93 new_primPlusNat0(Zero, Zero) 24.03/9.93 new_compare32(x0, x1, ty_Int) 24.03/9.93 new_compare6(Integer(x0), Integer(x1)) 24.03/9.93 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.03/9.93 new_ltEs7(x0, x1, ty_Float) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.03/9.93 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_not(True) 24.03/9.93 new_esEs18(x0, x1, ty_Int) 24.03/9.93 new_ltEs21(x0, x1, ty_@0) 24.03/9.93 new_ltEs20(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs20(x0, x1, ty_@0) 24.03/9.93 new_primPlusNat0(Succ(x0), Zero) 24.03/9.93 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.93 new_lt19(x0, x1, ty_Bool) 24.03/9.93 new_asAs(True, x0) 24.03/9.93 new_esEs25(x0, x1, ty_Float) 24.03/9.93 new_compare30(x0, x1, x2, x3, x4) 24.03/9.93 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_esEs17(LT, EQ) 24.03/9.93 new_esEs17(EQ, LT) 24.03/9.93 new_esEs27(x0, x1, ty_Integer) 24.03/9.93 new_lt7(x0, x1) 24.03/9.93 new_esEs13(:(x0, x1), :(x2, x3), x4) 24.03/9.93 new_pePe(False, x0) 24.03/9.93 new_esEs20(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.03/9.93 new_pePe(True, x0) 24.03/9.93 new_esEs9(:%(x0, x1), :%(x2, x3), x4) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.03/9.93 new_esEs28(x0, x1, ty_Char) 24.03/9.93 new_ltEs8(GT, LT) 24.03/9.93 new_esEs18(x0, x1, ty_Char) 24.03/9.93 new_primMulNat0(Zero, Succ(x0)) 24.03/9.93 new_ltEs8(LT, GT) 24.03/9.93 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 24.03/9.93 new_esEs17(GT, GT) 24.03/9.93 new_esEs25(x0, x1, app(ty_[], x2)) 24.03/9.93 new_esEs32(x0, x1, ty_Integer) 24.03/9.93 new_esEs30(x0, x1, ty_Char) 24.03/9.93 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 24.03/9.93 new_lt19(x0, x1, ty_Integer) 24.03/9.93 new_esEs28(x0, x1, ty_Int) 24.03/9.93 new_esEs24(x0, x1, app(ty_Ratio, x2)) 24.03/9.93 new_ltEs4(x0, x1, x2) 24.03/9.93 new_ltEs5(False, False) 24.03/9.93 new_ltEs20(x0, x1, ty_Float) 24.03/9.93 new_lt20(x0, x1, app(ty_Maybe, x2)) 24.03/9.93 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 24.03/9.94 new_esEs17(EQ, EQ) 24.03/9.94 new_esEs5(Just(x0), Nothing, x1) 24.03/9.94 new_lt20(x0, x1, ty_Float) 24.03/9.94 new_esEs30(x0, x1, ty_Int) 24.03/9.94 new_ltEs20(x0, x1, ty_@0) 24.03/9.94 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 24.03/9.94 new_esEs27(x0, x1, ty_Ordering) 24.03/9.94 new_esEs29(x0, x1, app(ty_Ratio, x2)) 24.03/9.94 new_lt19(x0, x1, app(ty_Ratio, x2)) 24.03/9.94 new_lt5(x0, x1, ty_Ordering) 24.03/9.94 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 24.03/9.94 new_ltEs21(x0, x1, ty_Bool) 24.03/9.94 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.94 new_esEs30(x0, x1, ty_@0) 24.03/9.94 new_ltEs6(@2(x0, x1), @2(x2, x3), x4, x5) 24.03/9.94 new_lt5(x0, x1, app(ty_[], x2)) 24.03/9.94 new_esEs12(x0, x1) 24.03/9.94 new_esEs20(x0, x1, ty_Bool) 24.03/9.94 new_primCmpInt(Pos(Zero), Pos(Zero)) 24.03/9.94 new_lt13(x0, x1) 24.03/9.94 new_esEs28(x0, x1, ty_@0) 24.03/9.94 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.03/9.94 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 24.03/9.94 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 24.03/9.94 new_compare9(x0, x1, x2, x3) 24.03/9.94 new_esEs30(x0, x1, ty_Float) 24.03/9.94 new_esEs16(Char(x0), Char(x1)) 24.03/9.94 new_esEs30(x0, x1, ty_Double) 24.03/9.94 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.03/9.94 new_esEs18(x0, x1, app(ty_Ratio, x2)) 24.03/9.94 new_compare19(x0, x1, x2, x3) 24.03/9.94 new_compare26(x0, x1, True, x2, x3, x4) 24.03/9.94 new_ltEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.03/9.94 new_esEs27(x0, x1, app(ty_Maybe, x2)) 24.03/9.94 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 24.03/9.94 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.94 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 24.03/9.94 new_esEs32(x0, x1, ty_Bool) 24.03/9.94 new_esEs20(x0, x1, ty_Int) 24.03/9.94 new_ltEs21(x0, x1, app(ty_[], x2)) 24.03/9.94 new_esEs31(x0, x1, ty_Float) 24.03/9.94 new_esEs20(x0, x1, ty_Char) 24.03/9.94 new_esEs29(x0, x1, ty_Bool) 24.03/9.94 new_compare32(x0, x1, ty_Integer) 24.03/9.94 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 24.03/9.94 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.03/9.94 new_ltEs19(x0, x1, ty_Float) 24.03/9.94 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.03/9.94 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 24.03/9.94 new_ltEs21(x0, x1, ty_Char) 24.03/9.94 new_ltEs7(x0, x1, app(ty_Maybe, x2)) 24.03/9.94 new_compare23(Right(x0), Right(x1), False, x2, x3) 24.03/9.94 new_esEs29(x0, x1, app(ty_Maybe, x2)) 24.03/9.94 new_esEs26(x0, x1, ty_Float) 24.03/9.94 new_esEs21(x0, x1, ty_@0) 24.03/9.94 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.94 new_esEs18(x0, x1, ty_Bool) 24.03/9.94 new_compare110(x0, x1, False, x2, x3) 24.03/9.94 new_compare28(x0, x1, x2) 24.03/9.94 new_primCmpNat0(Succ(x0), Succ(x1)) 24.03/9.94 new_compare32(x0, x1, ty_@0) 24.03/9.94 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.03/9.94 new_lt5(x0, x1, ty_Bool) 24.03/9.94 new_lt19(x0, x1, ty_Int) 24.03/9.94 new_ltEs12(Left(x0), Right(x1), x2, x3) 24.03/9.94 new_ltEs12(Right(x0), Left(x1), x2, x3) 24.03/9.94 new_lt20(x0, x1, ty_Bool) 24.03/9.94 new_ltEs13(Nothing, Just(x0), x1) 24.03/9.94 new_compare32(x0, x1, app(ty_Ratio, x2)) 24.03/9.94 new_ltEs21(x0, x1, ty_Int) 24.03/9.94 new_esEs5(Just(x0), Just(x1), ty_Ordering) 24.03/9.94 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 24.03/9.94 new_lt19(x0, x1, app(ty_Maybe, x2)) 24.03/9.94 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 24.03/9.94 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 24.03/9.94 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.94 new_esEs19(x0, x1, app(ty_Ratio, x2)) 24.03/9.94 new_esEs15(Float(x0, x1), Float(x2, x3)) 24.03/9.94 new_esEs25(x0, x1, ty_Integer) 24.03/9.94 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.94 new_esEs31(x0, x1, ty_Int) 24.03/9.94 new_primMulInt(Neg(x0), Neg(x1)) 24.03/9.94 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.94 new_esEs20(x0, x1, ty_Float) 24.03/9.94 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 24.03/9.94 new_esEs14(Integer(x0), Integer(x1)) 24.03/9.94 new_compare(:(x0, x1), [], x2) 24.03/9.94 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 24.03/9.94 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 24.03/9.94 new_compare112(x0, x1, True, x2) 24.03/9.94 new_lt6(x0, x1) 24.03/9.94 new_compare25(x0, x1, False) 24.03/9.94 new_esEs8(@0, @0) 24.03/9.94 new_compare27(x0, x1, True, x2, x3) 24.03/9.94 new_esEs20(x0, x1, app(ty_[], x2)) 24.03/9.94 new_esEs11(Double(x0, x1), Double(x2, x3)) 24.03/9.94 new_esEs5(Just(x0), Just(x1), ty_Float) 24.03/9.94 new_compare111(x0, x1, False) 24.03/9.94 new_lt19(x0, x1, ty_Char) 24.03/9.94 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 24.03/9.94 new_ltEs13(Just(x0), Just(x1), ty_@0) 24.03/9.94 new_esEs18(x0, x1, app(ty_[], x2)) 24.03/9.94 new_primEqNat0(Zero, Zero) 24.03/9.94 new_compare32(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.94 new_ltEs13(Just(x0), Just(x1), ty_Double) 24.03/9.94 new_esEs30(x0, x1, app(ty_Ratio, x2)) 24.03/9.94 new_ltEs19(x0, x1, ty_Int) 24.03/9.94 new_not(False) 24.03/9.94 new_esEs18(x0, x1, ty_Integer) 24.03/9.94 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 24.03/9.94 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 24.03/9.94 new_lt19(x0, x1, ty_Float) 24.03/9.94 new_ltEs8(GT, EQ) 24.03/9.94 new_lt11(x0, x1, x2) 24.03/9.94 new_ltEs8(EQ, GT) 24.03/9.94 new_esEs5(Just(x0), Just(x1), ty_Char) 24.03/9.94 new_esEs17(LT, LT) 24.03/9.94 new_esEs24(x0, x1, ty_Int) 24.03/9.94 new_esEs5(Nothing, Nothing, x0) 24.03/9.94 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.94 new_ltEs21(x0, x1, ty_Float) 24.03/9.94 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.03/9.94 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.94 new_ltEs7(x0, x1, ty_Double) 24.03/9.94 new_compare31(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 24.03/9.94 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.03/9.94 new_lt12(x0, x1) 24.03/9.94 new_esEs5(Just(x0), Just(x1), ty_Int) 24.03/9.94 new_lt5(x0, x1, ty_Float) 24.03/9.94 new_esEs24(x0, x1, ty_Char) 24.03/9.94 new_esEs4(Left(x0), Right(x1), x2, x3) 24.03/9.94 new_esEs4(Right(x0), Left(x1), x2, x3) 24.03/9.94 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 24.03/9.94 new_lt17(x0, x1) 24.03/9.94 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 24.03/9.94 new_esEs29(x0, x1, ty_Integer) 24.03/9.94 new_esEs27(x0, x1, ty_Double) 24.03/9.94 new_esEs19(x0, x1, app(ty_Maybe, x2)) 24.03/9.94 new_primMulInt(Pos(x0), Neg(x1)) 24.03/9.94 new_primMulInt(Neg(x0), Pos(x1)) 24.03/9.94 new_esEs26(x0, x1, app(ty_Maybe, x2)) 24.03/9.94 new_esEs21(x0, x1, ty_Double) 24.03/9.94 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.03/9.94 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 24.03/9.94 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 24.03/9.94 new_lt5(x0, x1, ty_Char) 24.03/9.94 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 24.03/9.94 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.03/9.94 new_esEs19(x0, x1, ty_@0) 24.03/9.94 new_esEs28(x0, x1, ty_Integer) 24.03/9.94 new_lt20(x0, x1, ty_Integer) 24.03/9.94 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 24.03/9.94 new_compare32(x0, x1, app(ty_[], x2)) 24.03/9.94 new_esEs10(False, True) 24.03/9.94 new_esEs10(True, False) 24.03/9.94 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 24.03/9.94 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 24.03/9.94 new_esEs24(x0, x1, ty_Float) 24.03/9.94 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 24.03/9.94 new_esEs18(x0, x1, ty_Ordering) 24.03/9.94 new_esEs28(x0, x1, ty_Ordering) 24.03/9.94 new_lt5(x0, x1, ty_Int) 24.03/9.94 new_esEs25(x0, x1, ty_Bool) 24.03/9.94 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.03/9.94 new_esEs27(x0, x1, ty_@0) 24.03/9.94 new_esEs26(x0, x1, app(ty_[], x2)) 24.03/9.94 new_esEs5(Just(x0), Just(x1), ty_Bool) 24.03/9.94 new_compare32(x0, x1, app(ty_Maybe, x2)) 24.03/9.94 new_primCmpNat0(Zero, Zero) 24.03/9.94 new_compare18(x0, x1, False) 24.03/9.94 new_asAs(False, x0) 24.03/9.94 new_compare23(Left(x0), Left(x1), False, x2, x3) 24.03/9.94 24.03/9.94 We have to consider all minimal (P,Q,R)-chains. 24.03/9.94 ---------------------------------------- 24.03/9.94 24.03/9.94 (24) QDPSizeChangeProof (EQUIVALENT) 24.03/9.94 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. 24.03/9.94 24.03/9.94 From the DPs we obtained the following set of size-change graphs: 24.03/9.94 *new_addToFM_C21(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, bc, bd, be) -> new_addToFM_C(xuu3, xuu43, Right(xuu5000), xuu501, bc, bd, be) 24.03/9.94 The graph contains the following edges 1 >= 1, 5 >= 2, 8 >= 4, 10 >= 5, 11 >= 6, 12 >= 7 24.03/9.94 24.03/9.94 24.03/9.94 *new_addToFM_C21(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, bc, bd, be) -> new_addToFM_C11(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Right(xuu5000), Left(xuu400), False, bc, bd), GT), bc, bd, be) 24.03/9.94 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 10, 11 >= 11, 12 >= 12 24.03/9.94 24.03/9.94 24.03/9.94 *new_addToFM_C(xuu3, Branch(Left(xuu400), xuu41, xuu42, xuu43, xuu44), Right(xuu5000), xuu501, bc, bd, be) -> new_addToFM_C21(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Right(xuu5000), Left(xuu400), False, bc, bd), LT), bc, bd, be) 24.03/9.94 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 2 > 6, 3 > 7, 4 >= 8, 5 >= 10, 6 >= 11, 7 >= 12 24.03/9.94 24.03/9.94 24.03/9.94 *new_addToFM_C(xuu3, Branch(Right(xuu400), xuu41, xuu42, xuu43, xuu44), Right(xuu5000), xuu501, bc, bd, be) -> new_addToFM_C22(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Right(xuu5000), Right(xuu400), new_esEs31(xuu5000, xuu400, bd), bc, bd), LT), bc, bd, be) 24.03/9.94 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 2 > 6, 3 > 7, 4 >= 8, 5 >= 10, 6 >= 11, 7 >= 12 24.03/9.94 24.03/9.94 24.03/9.94 *new_addToFM_C22(xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, xuu41, xuu42, False, bf, bg, bh) -> new_addToFM_C12(xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, xuu41, xuu42, new_esEs17(new_compare23(Right(xuu41), Right(xuu36), new_esEs32(xuu41, xuu36, bg), bf, bg), GT), bf, bg, bh) 24.03/9.94 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 10, 11 >= 11, 12 >= 12 24.03/9.94 24.03/9.94 24.03/9.94 *new_addToFM_C22(xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, xuu41, xuu42, True, bf, bg, bh) -> new_addToFM_C(xuu35, xuu39, Right(xuu41), xuu42, bf, bg, bh) 24.03/9.94 The graph contains the following edges 1 >= 1, 5 >= 2, 8 >= 4, 10 >= 5, 11 >= 6, 12 >= 7 24.03/9.94 24.03/9.94 24.03/9.94 *new_addToFM_C12(xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, xuu41, xuu42, True, bf, bg, bh) -> new_addToFM_C(xuu35, xuu40, Right(xuu41), xuu42, bf, bg, bh) 24.03/9.94 The graph contains the following edges 1 >= 1, 6 >= 2, 8 >= 4, 10 >= 5, 11 >= 6, 12 >= 7 24.03/9.94 24.03/9.94 24.03/9.94 *new_addToFM_C11(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, bc, bd, be) -> new_addToFM_C(xuu3, xuu44, Right(xuu5000), xuu501, bc, bd, be) 24.03/9.94 The graph contains the following edges 1 >= 1, 6 >= 2, 8 >= 4, 10 >= 5, 11 >= 6, 12 >= 7 24.03/9.94 24.03/9.94 24.03/9.94 ---------------------------------------- 24.03/9.94 24.03/9.94 (25) 24.03/9.94 YES 24.03/9.94 24.03/9.94 ---------------------------------------- 24.03/9.94 24.03/9.94 (26) 24.03/9.94 Obligation: 24.03/9.94 Q DP problem: 24.03/9.94 The TRS P consists of the following rules: 24.03/9.94 24.03/9.94 new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu16, xuu21, Left(xuu22), xuu23, h, ba, bb) 24.03/9.94 new_addToFM_C(xuu3, Branch(Right(xuu400), xuu41, xuu42, xuu43, xuu44), Left(xuu5000), xuu501, bc, bd, be) -> new_addToFM_C20(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Left(xuu5000), Right(xuu400), False, bc, bd), LT), bc, bd, be) 24.03/9.94 new_addToFM_C20(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, bc, bd, be) -> new_addToFM_C(xuu3, xuu43, Left(xuu5000), xuu501, bc, bd, be) 24.03/9.94 new_addToFM_C(xuu3, Branch(Left(xuu400), xuu41, xuu42, xuu43, xuu44), Left(xuu5000), xuu501, bc, bd, be) -> new_addToFM_C2(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Left(xuu5000), Left(xuu400), new_esEs30(xuu5000, xuu400, bc), bc, bd), LT), bc, bd, be) 24.03/9.94 new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, h, ba, bb) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs17(new_compare23(Left(xuu22), Left(xuu17), new_esEs29(xuu22, xuu17, h), h, ba), GT), h, ba, bb) 24.03/9.94 new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu16, xuu20, Left(xuu22), xuu23, h, ba, bb) 24.03/9.94 new_addToFM_C20(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, bc, bd, be) -> new_addToFM_C10(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Left(xuu5000), Right(xuu400), False, bc, bd), GT), bc, bd, be) 24.03/9.94 new_addToFM_C10(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, bc, bd, be) -> new_addToFM_C(xuu3, xuu44, Left(xuu5000), xuu501, bc, bd, be) 24.03/9.94 24.03/9.94 The TRS R consists of the following rules: 24.03/9.94 24.03/9.94 new_lt20(xuu52000, xuu53000, ty_Double) -> new_lt12(xuu52000, xuu53000) 24.03/9.94 new_ltEs7(xuu52001, xuu53001, app(ty_[], fd)) -> new_ltEs11(xuu52001, xuu53001, fd) 24.03/9.94 new_esEs20(xuu50001, xuu4001, ty_Int) -> new_esEs12(xuu50001, xuu4001) 24.03/9.94 new_ltEs20(xuu5200, xuu5300, app(ty_[], dac)) -> new_ltEs11(xuu5200, xuu5300, dac) 24.03/9.94 new_esEs31(xuu5000, xuu400, app(ty_[], cae)) -> new_esEs13(xuu5000, xuu400, cae) 24.03/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.03/9.94 new_compare32(xuu52000, xuu53000, app(app(ty_Either, cgd), cge)) -> new_compare9(xuu52000, xuu53000, cgd, cge) 24.03/9.94 new_compare16(Double(xuu52000, Pos(xuu520010)), Double(xuu53000, Pos(xuu530010))) -> new_compare8(new_sr0(xuu52000, Pos(xuu530010)), new_sr0(Pos(xuu520010), xuu53000)) 24.03/9.94 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 24.03/9.94 new_primCmpInt(Neg(Succ(xuu5200)), Pos(xuu530)) -> LT 24.03/9.94 new_primPlusNat0(Zero, Zero) -> Zero 24.03/9.94 new_pePe(True, xuu210) -> True 24.03/9.94 new_esEs31(xuu5000, xuu400, ty_Ordering) -> new_esEs17(xuu5000, xuu400) 24.03/9.94 new_esEs32(xuu41, xuu36, ty_Integer) -> new_esEs14(xuu41, xuu36) 24.03/9.94 new_ltEs4(xuu5200, xuu5300, dg) -> new_fsEs(new_compare7(xuu5200, xuu5300, dg)) 24.03/9.94 new_esEs27(xuu50000, xuu4000, ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.03/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.03/9.94 new_esEs21(xuu50002, xuu4002, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs7(xuu50002, xuu4002, bbf, bbg, bbh) 24.03/9.94 new_esEs29(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) 24.03/9.94 new_compare112(xuu52000, xuu53000, True, eh) -> LT 24.03/9.94 new_lt8(xuu520, xuu530) -> new_esEs17(new_compare8(xuu520, xuu530), LT) 24.03/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), app(ty_Maybe, dbh)) -> new_ltEs13(xuu52000, xuu53000, dbh) 24.03/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Double) -> new_ltEs14(xuu52000, xuu53000) 24.03/9.94 new_compare(:(xuu52000, xuu52001), [], bee) -> GT 24.03/9.94 new_esEs4(Left(xuu50000), Right(xuu4000), bhg, bhh) -> False 24.03/9.94 new_esEs4(Right(xuu50000), Left(xuu4000), bhg, bhh) -> False 24.03/9.94 new_esEs25(xuu52000, xuu53000, app(ty_[], dcg)) -> new_esEs13(xuu52000, xuu53000, dcg) 24.03/9.94 new_esEs25(xuu52000, xuu53000, ty_Ordering) -> new_esEs17(xuu52000, xuu53000) 24.03/9.94 new_compare25(xuu52000, xuu53000, False) -> new_compare111(xuu52000, xuu53000, new_ltEs8(xuu52000, xuu53000)) 24.03/9.94 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 24.03/9.94 new_primCmpInt(Pos(Zero), Neg(Succ(xuu5300))) -> GT 24.03/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), app(ty_Maybe, bfb), bef) -> new_ltEs13(xuu52000, xuu53000, bfb) 24.03/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(app(ty_@2, bgf), bgg)) -> new_ltEs6(xuu52000, xuu53000, bgf, bgg) 24.03/9.94 new_esEs21(xuu50002, xuu4002, app(app(ty_@2, bcd), bce)) -> new_esEs6(xuu50002, xuu4002, bcd, bce) 24.03/9.94 new_lt19(xuu52001, xuu53001, app(app(ty_Either, deb), dec)) -> new_lt10(xuu52001, xuu53001, deb, dec) 24.03/9.94 new_primCmpInt(Neg(Succ(xuu5200)), Neg(xuu530)) -> new_primCmpNat0(xuu530, Succ(xuu5200)) 24.03/9.94 new_ltEs12(Left(xuu52000), Right(xuu53000), bga, bef) -> True 24.03/9.94 new_esEs20(xuu50001, xuu4001, ty_Double) -> new_esEs11(xuu50001, xuu4001) 24.03/9.94 new_esEs20(xuu50001, xuu4001, app(ty_Ratio, bag)) -> new_esEs9(xuu50001, xuu4001, bag) 24.03/9.94 new_esEs10(False, True) -> False 24.03/9.94 new_esEs10(True, False) -> False 24.03/9.94 new_primMulNat0(Succ(xuu5000000), Succ(xuu400100)) -> new_primPlusNat1(new_primMulNat0(xuu5000000, Succ(xuu400100)), xuu400100) 24.03/9.94 new_ltEs14(xuu5200, xuu5300) -> new_fsEs(new_compare16(xuu5200, xuu5300)) 24.03/9.94 new_compare18(xuu52000, xuu53000, True) -> LT 24.03/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), app(app(app(ty_@3, dcd), dce), dcf)) -> new_ltEs17(xuu52000, xuu53000, dcd, dce, dcf) 24.03/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs17(xuu52000, xuu53000, bha, bhb, bhc) 24.03/9.94 new_esEs19(xuu50000, xuu4000, ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.03/9.94 new_esEs27(xuu50000, xuu4000, ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.03/9.94 new_ltEs20(xuu5200, xuu5300, ty_Char) -> new_ltEs18(xuu5200, xuu5300) 24.03/9.94 new_esEs30(xuu5000, xuu400, app(ty_Ratio, beb)) -> new_esEs9(xuu5000, xuu400, beb) 24.03/9.94 new_ltEs18(xuu5200, xuu5300) -> new_fsEs(new_compare12(xuu5200, xuu5300)) 24.03/9.94 new_esEs25(xuu52000, xuu53000, ty_Double) -> new_esEs11(xuu52000, xuu53000) 24.03/9.94 new_primCompAux0(xuu224, GT) -> GT 24.03/9.94 new_esEs15(Float(xuu50000, xuu50001), Float(xuu4000, xuu4001)) -> new_esEs12(new_sr0(xuu50000, xuu4001), new_sr0(xuu50001, xuu4000)) 24.03/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_@0) -> new_ltEs15(xuu52000, xuu53000) 24.03/9.94 new_esEs21(xuu50002, xuu4002, app(ty_[], bcb)) -> new_esEs13(xuu50002, xuu4002, bcb) 24.03/9.94 new_esEs19(xuu50000, xuu4000, ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.03/9.94 new_ltEs19(xuu5200, xuu5300, app(ty_[], bee)) -> new_ltEs11(xuu5200, xuu5300, bee) 24.03/9.94 new_primEqInt(Pos(Succ(xuu500000)), Pos(Zero)) -> False 24.35/9.94 new_primEqInt(Pos(Zero), Pos(Succ(xuu40000))) -> False 24.35/9.94 new_esEs17(LT, LT) -> True 24.35/9.94 new_esEs19(xuu50000, xuu4000, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.35/9.94 new_esEs31(xuu5000, xuu400, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs7(xuu5000, xuu400, caa, cab, cac) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, app(app(ty_@2, ee), ef)) -> new_ltEs6(xuu5200, xuu5300, ee, ef) 24.35/9.94 new_esEs31(xuu5000, xuu400, ty_Double) -> new_esEs11(xuu5000, xuu400) 24.35/9.94 new_primEqNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 24.35/9.94 new_esEs27(xuu50000, xuu4000, ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.35/9.94 new_esEs29(xuu22, xuu17, app(ty_Ratio, bdc)) -> new_esEs9(xuu22, xuu17, bdc) 24.35/9.94 new_esEs26(xuu52001, xuu53001, ty_Integer) -> new_esEs14(xuu52001, xuu53001) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, ty_Ordering) -> new_ltEs8(xuu52001, xuu53001) 24.35/9.94 new_esEs19(xuu50000, xuu4000, ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.35/9.94 new_compare32(xuu52000, xuu53000, app(ty_Maybe, cgf)) -> new_compare28(xuu52000, xuu53000, cgf) 24.35/9.94 new_primCompAux0(xuu224, LT) -> LT 24.35/9.94 new_esEs31(xuu5000, xuu400, ty_Float) -> new_esEs15(xuu5000, xuu400) 24.35/9.94 new_esEs25(xuu52000, xuu53000, ty_Float) -> new_esEs15(xuu52000, xuu53000) 24.35/9.94 new_lt13(xuu52000, xuu53000) -> new_esEs17(new_compare13(xuu52000, xuu53000), LT) 24.35/9.94 new_compare31(Float(xuu52000, Pos(xuu520010)), Float(xuu53000, Pos(xuu530010))) -> new_compare8(new_sr0(xuu52000, Pos(xuu530010)), new_sr0(Pos(xuu520010), xuu53000)) 24.35/9.94 new_not(True) -> False 24.35/9.94 new_primCmpNat0(Zero, Zero) -> EQ 24.35/9.94 new_esEs30(xuu5000, xuu400, ty_Double) -> new_esEs11(xuu5000, xuu400) 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Ordering, bef) -> new_ltEs8(xuu52000, xuu53000) 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Char, bef) -> new_ltEs18(xuu52000, xuu53000) 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Integer) -> new_ltEs9(xuu52000, xuu53000) 24.35/9.94 new_esEs29(xuu22, xuu17, app(ty_[], bdd)) -> new_esEs13(xuu22, xuu17, bdd) 24.35/9.94 new_esEs31(xuu5000, xuu400, ty_Int) -> new_esEs12(xuu5000, xuu400) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.35/9.94 new_esEs25(xuu52000, xuu53000, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs7(xuu52000, xuu53000, ddf, ddg, ddh) 24.35/9.94 new_esEs25(xuu52000, xuu53000, ty_Int) -> new_esEs12(xuu52000, xuu53000) 24.35/9.94 new_esEs20(xuu50001, xuu4001, ty_Ordering) -> new_esEs17(xuu50001, xuu4001) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, ty_Char) -> new_ltEs18(xuu5200, xuu5300) 24.35/9.94 new_esEs8(@0, @0) -> True 24.35/9.94 new_lt6(xuu52000, xuu53000) -> new_esEs17(new_compare14(xuu52000, xuu53000), LT) 24.35/9.94 new_compare7(:%(xuu52000, xuu52001), :%(xuu53000, xuu53001), ty_Int) -> new_compare8(new_sr0(xuu52000, xuu53001), new_sr0(xuu53000, xuu52001)) 24.35/9.94 new_compare32(xuu52000, xuu53000, ty_Char) -> new_compare12(xuu52000, xuu53000) 24.35/9.94 new_primEqNat0(Succ(xuu500000), Zero) -> False 24.35/9.94 new_primEqNat0(Zero, Succ(xuu40000)) -> False 24.35/9.94 new_esEs19(xuu50000, xuu4000, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs7(xuu50000, xuu4000, hb, hc, hd) 24.35/9.94 new_lt19(xuu52001, xuu53001, ty_Double) -> new_lt12(xuu52001, xuu53001) 24.35/9.94 new_esEs24(xuu50000, xuu4000, ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.35/9.94 new_esEs13([], [], bhd) -> True 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs7(xuu50000, xuu4000, cfa, cfb, cfc) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.35/9.94 new_compare8(xuu52, xuu53) -> new_primCmpInt(xuu52, xuu53) 24.35/9.94 new_compare10(xuu184, xuu185, True, ca, cb) -> LT 24.35/9.94 new_esEs21(xuu50002, xuu4002, ty_Ordering) -> new_esEs17(xuu50002, xuu4002) 24.35/9.94 new_ltEs20(xuu5200, xuu5300, ty_Int) -> new_ltEs10(xuu5200, xuu5300) 24.35/9.94 new_compare23(Left(xuu5200), Right(xuu5300), False, che, chf) -> LT 24.35/9.94 new_ltEs8(GT, LT) -> False 24.35/9.94 new_lt20(xuu52000, xuu53000, app(ty_[], dcg)) -> new_lt9(xuu52000, xuu53000, dcg) 24.35/9.94 new_compare27(xuu52000, xuu53000, False, fa, fb) -> new_compare15(xuu52000, xuu53000, new_ltEs6(xuu52000, xuu53000, fa, fb), fa, fb) 24.35/9.94 new_esEs17(EQ, GT) -> False 24.35/9.94 new_esEs17(GT, EQ) -> False 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), app(app(ty_@2, cee), cef), bhh) -> new_esEs6(xuu50000, xuu4000, cee, cef) 24.35/9.94 new_lt5(xuu52000, xuu53000, app(ty_Ratio, fc)) -> new_lt15(xuu52000, xuu53000, fc) 24.35/9.94 new_esEs18(xuu52000, xuu53000, ty_Double) -> new_esEs11(xuu52000, xuu53000) 24.35/9.94 new_esEs26(xuu52001, xuu53001, ty_Ordering) -> new_esEs17(xuu52001, xuu53001) 24.35/9.94 new_ltEs21(xuu52002, xuu53002, ty_Float) -> new_ltEs16(xuu52002, xuu53002) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, app(app(ty_@2, ga), gb)) -> new_ltEs6(xuu52001, xuu53001, ga, gb) 24.35/9.94 new_esEs32(xuu41, xuu36, ty_Char) -> new_esEs16(xuu41, xuu36) 24.35/9.94 new_compare15(xuu52000, xuu53000, True, fa, fb) -> LT 24.35/9.94 new_compare6(Integer(xuu52000), Integer(xuu53000)) -> new_primCmpInt(xuu52000, xuu53000) 24.35/9.94 new_esEs32(xuu41, xuu36, ty_Bool) -> new_esEs10(xuu41, xuu36) 24.35/9.94 new_esEs26(xuu52001, xuu53001, ty_Bool) -> new_esEs10(xuu52001, xuu53001) 24.35/9.94 new_primCmpInt(Pos(Succ(xuu5200)), Neg(xuu530)) -> GT 24.35/9.94 new_ltEs20(xuu5200, xuu5300, ty_Ordering) -> new_ltEs8(xuu5200, xuu5300) 24.35/9.94 new_ltEs21(xuu52002, xuu53002, app(app(ty_@2, dfg), dfh)) -> new_ltEs6(xuu52002, xuu53002, dfg, dfh) 24.35/9.94 new_compare31(Float(xuu52000, Neg(xuu520010)), Float(xuu53000, Neg(xuu530010))) -> new_compare8(new_sr0(xuu52000, Neg(xuu530010)), new_sr0(Neg(xuu520010), xuu53000)) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(ty_[], cfe)) -> new_esEs13(xuu50000, xuu4000, cfe) 24.35/9.94 new_ltEs5(False, True) -> True 24.35/9.94 new_ltEs8(GT, EQ) -> False 24.35/9.94 new_compare110(xuu191, xuu192, True, bec, bed) -> LT 24.35/9.94 new_lt11(xuu52000, xuu53000, eh) -> new_esEs17(new_compare28(xuu52000, xuu53000, eh), LT) 24.35/9.94 new_esEs29(xuu22, xuu17, ty_Float) -> new_esEs15(xuu22, xuu17) 24.35/9.94 new_esEs29(xuu22, xuu17, ty_Double) -> new_esEs11(xuu22, xuu17) 24.35/9.94 new_esEs26(xuu52001, xuu53001, ty_Char) -> new_esEs16(xuu52001, xuu53001) 24.35/9.94 new_esEs13(:(xuu50000, xuu50001), :(xuu4000, xuu4001), bhd) -> new_asAs(new_esEs24(xuu50000, xuu4000, bhd), new_esEs13(xuu50001, xuu4001, bhd)) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, ty_Ordering) -> new_ltEs8(xuu5200, xuu5300) 24.35/9.94 new_esEs31(xuu5000, xuu400, ty_Integer) -> new_esEs14(xuu5000, xuu400) 24.35/9.94 new_esEs32(xuu41, xuu36, ty_Ordering) -> new_esEs17(xuu41, xuu36) 24.35/9.94 new_primCmpNat0(Zero, Succ(xuu5300)) -> LT 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), ty_@0, bhh) -> new_esEs8(xuu50000, xuu4000) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), app(ty_[], cec), bhh) -> new_esEs13(xuu50000, xuu4000, cec) 24.35/9.94 new_esEs11(Double(xuu50000, xuu50001), Double(xuu4000, xuu4001)) -> new_esEs12(new_sr0(xuu50000, xuu4001), new_sr0(xuu50001, xuu4000)) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_@2, dc), dd)) -> new_esEs6(xuu50000, xuu4000, dc, dd) 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Bool) -> new_ltEs5(xuu52000, xuu53000) 24.35/9.94 new_esEs26(xuu52001, xuu53001, app(app(app(ty_@3, deh), dfa), dfb)) -> new_esEs7(xuu52001, xuu53001, deh, dfa, dfb) 24.35/9.94 new_esEs30(xuu5000, xuu400, ty_Int) -> new_esEs12(xuu5000, xuu400) 24.35/9.94 new_esEs18(xuu52000, xuu53000, ty_Int) -> new_esEs12(xuu52000, xuu53000) 24.35/9.94 new_compare24(xuu52000, xuu53000, False) -> new_compare18(xuu52000, xuu53000, new_ltEs5(xuu52000, xuu53000)) 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Double) -> new_ltEs14(xuu52000, xuu53000) 24.35/9.94 new_lt15(xuu52000, xuu53000, fc) -> new_esEs17(new_compare7(xuu52000, xuu53000, fc), LT) 24.35/9.94 new_esEs24(xuu50000, xuu4000, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.35/9.94 new_esEs32(xuu41, xuu36, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_esEs7(xuu41, xuu36, cbc, cbd, cbe) 24.35/9.94 new_esEs24(xuu50000, xuu4000, app(ty_[], cda)) -> new_esEs13(xuu50000, xuu4000, cda) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, app(ty_Ratio, dg)) -> new_ltEs4(xuu5200, xuu5300, dg) 24.35/9.94 new_sr(Integer(xuu530000), Integer(xuu520010)) -> Integer(new_primMulInt(xuu530000, xuu520010)) 24.35/9.94 new_primCmpNat0(Succ(xuu5200), Zero) -> GT 24.35/9.94 new_esEs30(xuu5000, xuu400, ty_Float) -> new_esEs15(xuu5000, xuu400) 24.35/9.94 new_pePe(False, xuu210) -> xuu210 24.35/9.94 new_ltEs20(xuu5200, xuu5300, app(ty_Maybe, daf)) -> new_ltEs13(xuu5200, xuu5300, daf) 24.35/9.94 new_esEs28(xuu50001, xuu4001, ty_Double) -> new_esEs11(xuu50001, xuu4001) 24.35/9.94 new_lt20(xuu52000, xuu53000, ty_Float) -> new_lt17(xuu52000, xuu53000) 24.35/9.94 new_lt5(xuu52000, xuu53000, app(ty_Maybe, eh)) -> new_lt11(xuu52000, xuu53000, eh) 24.35/9.94 new_compare32(xuu52000, xuu53000, ty_Bool) -> new_compare13(xuu52000, xuu53000) 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), app(ty_[], dbe)) -> new_ltEs11(xuu52000, xuu53000, dbe) 24.35/9.94 new_esEs21(xuu50002, xuu4002, app(ty_Ratio, bca)) -> new_esEs9(xuu50002, xuu4002, bca) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, ty_Int) -> new_ltEs10(xuu5200, xuu5300) 24.35/9.94 new_esEs25(xuu52000, xuu53000, ty_Integer) -> new_esEs14(xuu52000, xuu53000) 24.35/9.94 new_esEs21(xuu50002, xuu4002, ty_Int) -> new_esEs12(xuu50002, xuu4002) 24.35/9.94 new_esEs21(xuu50002, xuu4002, app(app(ty_Either, bcf), bcg)) -> new_esEs4(xuu50002, xuu4002, bcf, bcg) 24.35/9.94 new_esEs18(xuu52000, xuu53000, ty_Ordering) -> new_esEs17(xuu52000, xuu53000) 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), app(ty_[], beg), bef) -> new_ltEs11(xuu52000, xuu53000, beg) 24.35/9.94 new_esEs30(xuu5000, xuu400, ty_Ordering) -> new_esEs17(xuu5000, xuu400) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(ty_Maybe, cff)) -> new_esEs5(xuu50000, xuu4000, cff) 24.35/9.94 new_ltEs6(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), ee, ef) -> new_pePe(new_lt5(xuu52000, xuu53000, ee), new_asAs(new_esEs18(xuu52000, xuu53000, ee), new_ltEs7(xuu52001, xuu53001, ef))) 24.35/9.94 new_compare23(xuu520, xuu530, True, che, chf) -> EQ 24.35/9.94 new_esEs27(xuu50000, xuu4000, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.35/9.94 new_esEs28(xuu50001, xuu4001, app(ty_Ratio, eab)) -> new_esEs9(xuu50001, xuu4001, eab) 24.35/9.94 new_esEs28(xuu50001, xuu4001, ty_Char) -> new_esEs16(xuu50001, xuu4001) 24.35/9.94 new_primEqInt(Pos(Zero), Neg(Succ(xuu40000))) -> False 24.35/9.94 new_primEqInt(Neg(Zero), Pos(Succ(xuu40000))) -> False 24.35/9.94 new_compare11(xuu52000, xuu53000, True, eb, ec, ed) -> LT 24.35/9.94 new_ltEs21(xuu52002, xuu53002, ty_Char) -> new_ltEs18(xuu52002, xuu53002) 24.35/9.94 new_compare16(Double(xuu52000, Neg(xuu520010)), Double(xuu53000, Neg(xuu530010))) -> new_compare8(new_sr0(xuu52000, Neg(xuu530010)), new_sr0(Neg(xuu520010), xuu53000)) 24.35/9.94 new_esEs24(xuu50000, xuu4000, app(app(ty_@2, cdc), cdd)) -> new_esEs6(xuu50000, xuu4000, cdc, cdd) 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), app(app(ty_Either, beh), bfa), bef) -> new_ltEs12(xuu52000, xuu53000, beh, bfa) 24.35/9.94 new_esEs26(xuu52001, xuu53001, app(ty_[], dea)) -> new_esEs13(xuu52001, xuu53001, dea) 24.35/9.94 new_esEs21(xuu50002, xuu4002, app(ty_Maybe, bcc)) -> new_esEs5(xuu50002, xuu4002, bcc) 24.35/9.94 new_esEs10(False, False) -> True 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Bool) -> new_ltEs5(xuu52000, xuu53000) 24.35/9.94 new_esEs5(Nothing, Nothing, cc) -> True 24.35/9.94 new_esEs31(xuu5000, xuu400, app(app(ty_Either, cba), cbb)) -> new_esEs4(xuu5000, xuu400, cba, cbb) 24.35/9.94 new_compare32(xuu52000, xuu53000, ty_Int) -> new_compare8(xuu52000, xuu53000) 24.35/9.94 new_lt5(xuu52000, xuu53000, ty_Bool) -> new_lt13(xuu52000, xuu53000) 24.35/9.94 new_esEs17(EQ, EQ) -> True 24.35/9.94 new_esEs18(xuu52000, xuu53000, ty_Char) -> new_esEs16(xuu52000, xuu53000) 24.35/9.94 new_ltEs20(xuu5200, xuu5300, app(app(ty_@2, dag), dah)) -> new_ltEs6(xuu5200, xuu5300, dag, dah) 24.35/9.94 new_primEqInt(Neg(Succ(xuu500000)), Neg(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 24.35/9.94 new_esEs5(Nothing, Just(xuu4000), cc) -> False 24.35/9.94 new_esEs5(Just(xuu50000), Nothing, cc) -> False 24.35/9.94 new_esEs23(xuu50001, xuu4001, ty_Int) -> new_esEs12(xuu50001, xuu4001) 24.35/9.94 new_esEs17(LT, EQ) -> False 24.35/9.94 new_esEs17(EQ, LT) -> False 24.35/9.94 new_lt19(xuu52001, xuu53001, ty_Bool) -> new_lt13(xuu52001, xuu53001) 24.35/9.94 new_primCmpInt(Neg(Zero), Pos(Succ(xuu5300))) -> LT 24.35/9.94 new_ltEs20(xuu5200, xuu5300, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_ltEs17(xuu5200, xuu5300, dbb, dbc, dbd) 24.35/9.94 new_ltEs16(xuu5200, xuu5300) -> new_fsEs(new_compare31(xuu5200, xuu5300)) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Int, bhh) -> new_esEs12(xuu50000, xuu4000) 24.35/9.94 new_lt5(xuu52000, xuu53000, ty_Float) -> new_lt17(xuu52000, xuu53000) 24.35/9.94 new_ltEs10(xuu5200, xuu5300) -> new_fsEs(new_compare8(xuu5200, xuu5300)) 24.35/9.94 new_primMulInt(Pos(xuu500000), Pos(xuu40010)) -> Pos(new_primMulNat0(xuu500000, xuu40010)) 24.35/9.94 new_lt17(xuu52000, xuu53000) -> new_esEs17(new_compare31(xuu52000, xuu53000), LT) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, app(ty_Ratio, gc)) -> new_ltEs4(xuu52001, xuu53001, gc) 24.35/9.94 new_esEs20(xuu50001, xuu4001, ty_Float) -> new_esEs15(xuu50001, xuu4001) 24.35/9.94 new_esEs13(:(xuu50000, xuu50001), [], bhd) -> False 24.35/9.94 new_esEs13([], :(xuu4000, xuu4001), bhd) -> False 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, cd), ce), cf)) -> new_esEs7(xuu50000, xuu4000, cd, ce, cf) 24.35/9.94 new_esEs26(xuu52001, xuu53001, app(app(ty_@2, dee), def)) -> new_esEs6(xuu52001, xuu53001, dee, def) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.35/9.94 new_lt19(xuu52001, xuu53001, ty_Float) -> new_lt17(xuu52001, xuu53001) 24.35/9.94 new_esEs32(xuu41, xuu36, app(ty_Maybe, cbh)) -> new_esEs5(xuu41, xuu36, cbh) 24.35/9.94 new_compare32(xuu52000, xuu53000, ty_Integer) -> new_compare6(xuu52000, xuu53000) 24.35/9.94 new_primMulNat0(Succ(xuu5000000), Zero) -> Zero 24.35/9.94 new_primMulNat0(Zero, Succ(xuu400100)) -> Zero 24.35/9.94 new_esEs29(xuu22, xuu17, ty_Integer) -> new_esEs14(xuu22, xuu17) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.35/9.94 new_ltEs15(xuu5200, xuu5300) -> new_fsEs(new_compare17(xuu5200, xuu5300)) 24.35/9.94 new_lt20(xuu52000, xuu53000, ty_Bool) -> new_lt13(xuu52000, xuu53000) 24.35/9.94 new_primPlusNat1(Succ(xuu1450), xuu400100) -> Succ(Succ(new_primPlusNat0(xuu1450, xuu400100))) 24.35/9.94 new_esEs17(LT, GT) -> False 24.35/9.94 new_esEs17(GT, LT) -> False 24.35/9.94 new_compare11(xuu52000, xuu53000, False, eb, ec, ed) -> GT 24.35/9.94 new_ltEs5(True, False) -> False 24.35/9.94 new_esEs32(xuu41, xuu36, app(ty_Ratio, cbf)) -> new_esEs9(xuu41, xuu36, cbf) 24.35/9.94 new_esEs18(xuu52000, xuu53000, app(ty_Ratio, fc)) -> new_esEs9(xuu52000, xuu53000, fc) 24.35/9.94 new_esEs32(xuu41, xuu36, ty_Int) -> new_esEs12(xuu41, xuu36) 24.35/9.94 new_esEs25(xuu52000, xuu53000, ty_@0) -> new_esEs8(xuu52000, xuu53000) 24.35/9.94 new_primPlusNat0(Succ(xuu55200), Zero) -> Succ(xuu55200) 24.35/9.94 new_primPlusNat0(Zero, Succ(xuu13600)) -> Succ(xuu13600) 24.35/9.94 new_ltEs21(xuu52002, xuu53002, ty_Int) -> new_ltEs10(xuu52002, xuu53002) 24.35/9.94 new_lt20(xuu52000, xuu53000, app(app(ty_Either, dch), dda)) -> new_lt10(xuu52000, xuu53000, dch, dda) 24.35/9.94 new_primPlusNat1(Zero, xuu400100) -> Succ(xuu400100) 24.35/9.94 new_esEs28(xuu50001, xuu4001, ty_Ordering) -> new_esEs17(xuu50001, xuu4001) 24.35/9.94 new_esEs29(xuu22, xuu17, ty_Ordering) -> new_esEs17(xuu22, xuu17) 24.35/9.94 new_esEs30(xuu5000, xuu400, ty_Char) -> new_esEs16(xuu5000, xuu400) 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Float) -> new_ltEs16(xuu52000, xuu53000) 24.35/9.94 new_ltEs21(xuu52002, xuu53002, app(ty_Ratio, dga)) -> new_ltEs4(xuu52002, xuu53002, dga) 24.35/9.94 new_compare111(xuu52000, xuu53000, True) -> LT 24.35/9.94 new_ltEs7(xuu52001, xuu53001, ty_Int) -> new_ltEs10(xuu52001, xuu53001) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.35/9.94 new_esEs32(xuu41, xuu36, app(app(ty_Either, ccc), ccd)) -> new_esEs4(xuu41, xuu36, ccc, ccd) 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Ordering) -> new_ltEs8(xuu52000, xuu53000) 24.35/9.94 new_compare32(xuu52000, xuu53000, app(ty_[], cgc)) -> new_compare(xuu52000, xuu53000, cgc) 24.35/9.94 new_esEs24(xuu50000, xuu4000, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs7(xuu50000, xuu4000, cce, ccf, ccg) 24.35/9.94 new_esEs26(xuu52001, xuu53001, ty_@0) -> new_esEs8(xuu52001, xuu53001) 24.35/9.94 new_esEs24(xuu50000, xuu4000, ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.35/9.94 new_lt19(xuu52001, xuu53001, app(ty_Maybe, ded)) -> new_lt11(xuu52001, xuu53001, ded) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.35/9.94 new_compare18(xuu52000, xuu53000, False) -> GT 24.35/9.94 new_ltEs21(xuu52002, xuu53002, ty_Double) -> new_ltEs14(xuu52002, xuu53002) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, ty_Char) -> new_ltEs18(xuu52001, xuu53001) 24.35/9.94 new_esEs9(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), beb) -> new_asAs(new_esEs22(xuu50000, xuu4000, beb), new_esEs23(xuu50001, xuu4001, beb)) 24.35/9.94 new_ltEs20(xuu5200, xuu5300, ty_Integer) -> new_ltEs9(xuu5200, xuu5300) 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Integer, bef) -> new_ltEs9(xuu52000, xuu53000) 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), app(app(ty_@2, bfc), bfd), bef) -> new_ltEs6(xuu52000, xuu53000, bfc, bfd) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, ty_Integer) -> new_ltEs9(xuu5200, xuu5300) 24.35/9.94 new_lt20(xuu52000, xuu53000, app(ty_Maybe, ddb)) -> new_lt11(xuu52000, xuu53000, ddb) 24.35/9.94 new_ltEs20(xuu5200, xuu5300, ty_Double) -> new_ltEs14(xuu5200, xuu5300) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, ty_@0) -> new_ltEs15(xuu52001, xuu53001) 24.35/9.94 new_compare12(Char(xuu52000), Char(xuu53000)) -> new_primCmpNat0(xuu52000, xuu53000) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_Either, de), df)) -> new_esEs4(xuu50000, xuu4000, de, df) 24.35/9.94 new_esEs28(xuu50001, xuu4001, ty_Integer) -> new_esEs14(xuu50001, xuu4001) 24.35/9.94 new_primMulInt(Neg(xuu500000), Neg(xuu40010)) -> Pos(new_primMulNat0(xuu500000, xuu40010)) 24.35/9.94 new_esEs32(xuu41, xuu36, ty_Float) -> new_esEs15(xuu41, xuu36) 24.35/9.94 new_primCmpInt(Pos(Zero), Pos(Succ(xuu5300))) -> new_primCmpNat0(Zero, Succ(xuu5300)) 24.35/9.94 new_esEs25(xuu52000, xuu53000, app(app(ty_@2, ddc), ddd)) -> new_esEs6(xuu52000, xuu53000, ddc, ddd) 24.35/9.94 new_lt7(xuu52000, xuu53000) -> new_esEs17(new_compare6(xuu52000, xuu53000), LT) 24.35/9.94 new_compare([], :(xuu53000, xuu53001), bee) -> LT 24.35/9.94 new_ltEs21(xuu52002, xuu53002, ty_@0) -> new_ltEs15(xuu52002, xuu53002) 24.35/9.94 new_esEs19(xuu50000, xuu4000, app(ty_Ratio, he)) -> new_esEs9(xuu50000, xuu4000, he) 24.35/9.94 new_lt5(xuu52000, xuu53000, app(app(ty_Either, dh), ea)) -> new_lt10(xuu52000, xuu53000, dh, ea) 24.35/9.94 new_esEs31(xuu5000, xuu400, app(ty_Ratio, cad)) -> new_esEs9(xuu5000, xuu400, cad) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Bool, bhh) -> new_esEs10(xuu50000, xuu4000) 24.35/9.94 new_esEs26(xuu52001, xuu53001, ty_Double) -> new_esEs11(xuu52001, xuu53001) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Maybe, db)) -> new_esEs5(xuu50000, xuu4000, db) 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(ty_Maybe, bge)) -> new_ltEs13(xuu52000, xuu53000, bge) 24.35/9.94 new_compare26(xuu52000, xuu53000, True, eb, ec, ed) -> EQ 24.35/9.94 new_ltEs20(xuu5200, xuu5300, app(ty_Ratio, dba)) -> new_ltEs4(xuu5200, xuu5300, dba) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, app(app(app(ty_@3, gd), ge), gf)) -> new_ltEs17(xuu52001, xuu53001, gd, ge, gf) 24.35/9.94 new_ltEs21(xuu52002, xuu53002, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_ltEs17(xuu52002, xuu53002, dgb, dgc, dgd) 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), app(app(ty_Either, dbf), dbg)) -> new_ltEs12(xuu52000, xuu53000, dbf, dbg) 24.35/9.94 new_esEs21(xuu50002, xuu4002, ty_Float) -> new_esEs15(xuu50002, xuu4002) 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_@0, bef) -> new_ltEs15(xuu52000, xuu53000) 24.35/9.94 new_primMulInt(Pos(xuu500000), Neg(xuu40010)) -> Neg(new_primMulNat0(xuu500000, xuu40010)) 24.35/9.94 new_primMulInt(Neg(xuu500000), Pos(xuu40010)) -> Neg(new_primMulNat0(xuu500000, xuu40010)) 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(app(ty_Either, bgc), bgd)) -> new_ltEs12(xuu52000, xuu53000, bgc, bgd) 24.35/9.94 new_esEs20(xuu50001, xuu4001, ty_@0) -> new_esEs8(xuu50001, xuu4001) 24.35/9.94 new_compare19(xuu52000, xuu53000, fa, fb) -> new_compare27(xuu52000, xuu53000, new_esEs6(xuu52000, xuu53000, fa, fb), fa, fb) 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Double, bef) -> new_ltEs14(xuu52000, xuu53000) 24.35/9.94 new_compare32(xuu52000, xuu53000, ty_@0) -> new_compare17(xuu52000, xuu53000) 24.35/9.94 new_ltEs12(Right(xuu52000), Left(xuu53000), bga, bef) -> False 24.35/9.94 new_ltEs21(xuu52002, xuu53002, app(ty_Maybe, dff)) -> new_ltEs13(xuu52002, xuu53002, dff) 24.35/9.94 new_lt4(xuu52000, xuu53000) -> new_esEs17(new_compare12(xuu52000, xuu53000), LT) 24.35/9.94 new_compare32(xuu52000, xuu53000, ty_Double) -> new_compare16(xuu52000, xuu53000) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Float, bhh) -> new_esEs15(xuu50000, xuu4000) 24.35/9.94 new_esEs19(xuu50000, xuu4000, ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, ty_Double) -> new_ltEs14(xuu5200, xuu5300) 24.35/9.94 new_esEs24(xuu50000, xuu4000, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.35/9.94 new_ltEs5(False, False) -> True 24.35/9.94 new_esEs29(xuu22, xuu17, app(ty_Maybe, bde)) -> new_esEs5(xuu22, xuu17, bde) 24.35/9.94 new_esEs27(xuu50000, xuu4000, ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.35/9.94 new_esEs29(xuu22, xuu17, ty_Char) -> new_esEs16(xuu22, xuu17) 24.35/9.94 new_esEs29(xuu22, xuu17, ty_Bool) -> new_esEs10(xuu22, xuu17) 24.35/9.94 new_esEs29(xuu22, xuu17, ty_@0) -> new_esEs8(xuu22, xuu17) 24.35/9.94 new_lt5(xuu52000, xuu53000, ty_Ordering) -> new_lt6(xuu52000, xuu53000) 24.35/9.94 new_compare32(xuu52000, xuu53000, ty_Float) -> new_compare31(xuu52000, xuu53000) 24.35/9.94 new_esEs19(xuu50000, xuu4000, ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.35/9.94 new_esEs18(xuu52000, xuu53000, ty_Integer) -> new_esEs14(xuu52000, xuu53000) 24.35/9.94 new_lt20(xuu52000, xuu53000, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_lt18(xuu52000, xuu53000, ddf, ddg, ddh) 24.35/9.94 new_esEs22(xuu50000, xuu4000, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.35/9.94 new_esEs19(xuu50000, xuu4000, app(ty_Maybe, hg)) -> new_esEs5(xuu50000, xuu4000, hg) 24.35/9.94 new_esEs28(xuu50001, xuu4001, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs7(xuu50001, xuu4001, dhg, dhh, eaa) 24.35/9.94 new_ltEs8(GT, GT) -> True 24.35/9.94 new_esEs25(xuu52000, xuu53000, ty_Char) -> new_esEs16(xuu52000, xuu53000) 24.35/9.94 new_compare32(xuu52000, xuu53000, ty_Ordering) -> new_compare14(xuu52000, xuu53000) 24.35/9.94 new_ltEs21(xuu52002, xuu53002, app(app(ty_Either, dfd), dfe)) -> new_ltEs12(xuu52002, xuu53002, dfd, dfe) 24.35/9.94 new_asAs(True, xuu179) -> xuu179 24.35/9.94 new_esEs25(xuu52000, xuu53000, ty_Bool) -> new_esEs10(xuu52000, xuu53000) 24.35/9.94 new_lt19(xuu52001, xuu53001, app(ty_Ratio, deg)) -> new_lt15(xuu52001, xuu53001, deg) 24.35/9.94 new_esEs30(xuu5000, xuu400, ty_Integer) -> new_esEs14(xuu5000, xuu400) 24.35/9.94 new_compare10(xuu184, xuu185, False, ca, cb) -> GT 24.35/9.94 new_esEs27(xuu50000, xuu4000, app(ty_[], dha)) -> new_esEs13(xuu50000, xuu4000, dha) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, ty_Double) -> new_ltEs14(xuu52001, xuu53001) 24.35/9.94 new_lt19(xuu52001, xuu53001, app(app(app(ty_@3, deh), dfa), dfb)) -> new_lt18(xuu52001, xuu53001, deh, dfa, dfb) 24.35/9.94 new_esEs30(xuu5000, xuu400, ty_@0) -> new_esEs8(xuu5000, xuu400) 24.35/9.94 new_ltEs20(xuu5200, xuu5300, ty_@0) -> new_ltEs15(xuu5200, xuu5300) 24.35/9.94 new_ltEs21(xuu52002, xuu53002, ty_Integer) -> new_ltEs9(xuu52002, xuu53002) 24.35/9.94 new_ltEs8(EQ, EQ) -> True 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), app(app(ty_@2, dca), dcb)) -> new_ltEs6(xuu52000, xuu53000, dca, dcb) 24.35/9.94 new_esEs20(xuu50001, xuu4001, app(ty_Maybe, bba)) -> new_esEs5(xuu50001, xuu4001, bba) 24.35/9.94 new_esEs16(Char(xuu50000), Char(xuu4000)) -> new_primEqNat0(xuu50000, xuu4000) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, cdg), cdh), cea), bhh) -> new_esEs7(xuu50000, xuu4000, cdg, cdh, cea) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), app(app(ty_Either, ceg), ceh), bhh) -> new_esEs4(xuu50000, xuu4000, ceg, ceh) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(app(ty_@2, cfg), cfh)) -> new_esEs6(xuu50000, xuu4000, cfg, cfh) 24.35/9.94 new_esEs24(xuu50000, xuu4000, ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.35/9.94 new_esEs27(xuu50000, xuu4000, ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.35/9.94 new_ltEs20(xuu5200, xuu5300, ty_Float) -> new_ltEs16(xuu5200, xuu5300) 24.35/9.94 new_compare32(xuu52000, xuu53000, app(app(app(ty_@3, chb), chc), chd)) -> new_compare30(xuu52000, xuu53000, chb, chc, chd) 24.35/9.94 new_lt18(xuu52000, xuu53000, eb, ec, ed) -> new_esEs17(new_compare30(xuu52000, xuu53000, eb, ec, ed), LT) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, ty_@0) -> new_ltEs15(xuu5200, xuu5300) 24.35/9.94 new_lt19(xuu52001, xuu53001, ty_Int) -> new_lt8(xuu52001, xuu53001) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, app(app(app(ty_@3, chh), daa), dab)) -> new_ltEs17(xuu5200, xuu5300, chh, daa, dab) 24.35/9.94 new_primCmpInt(Pos(Succ(xuu5200)), Pos(xuu530)) -> new_primCmpNat0(Succ(xuu5200), xuu530) 24.35/9.94 new_compare23(Right(xuu5200), Right(xuu5300), False, che, chf) -> new_compare110(xuu5200, xuu5300, new_ltEs20(xuu5200, xuu5300, chf), che, chf) 24.35/9.94 new_esEs20(xuu50001, xuu4001, app(app(ty_Either, bbd), bbe)) -> new_esEs4(xuu50001, xuu4001, bbd, bbe) 24.35/9.94 new_ltEs8(EQ, GT) -> True 24.35/9.94 new_esEs19(xuu50000, xuu4000, app(app(ty_Either, bab), bac)) -> new_esEs4(xuu50000, xuu4000, bab, bac) 24.35/9.94 new_esEs27(xuu50000, xuu4000, app(app(ty_@2, dhc), dhd)) -> new_esEs6(xuu50000, xuu4000, dhc, dhd) 24.35/9.94 new_esEs28(xuu50001, xuu4001, ty_Float) -> new_esEs15(xuu50001, xuu4001) 24.35/9.94 new_ltEs11(xuu5200, xuu5300, bee) -> new_fsEs(new_compare(xuu5200, xuu5300, bee)) 24.35/9.94 new_primMulNat0(Zero, Zero) -> Zero 24.35/9.94 new_ltEs13(Nothing, Nothing, chg) -> True 24.35/9.94 new_esEs18(xuu52000, xuu53000, ty_@0) -> new_esEs8(xuu52000, xuu53000) 24.35/9.94 new_ltEs13(Just(xuu52000), Nothing, chg) -> False 24.35/9.94 new_compare28(xuu52000, xuu53000, eh) -> new_compare29(xuu52000, xuu53000, new_esEs5(xuu52000, xuu53000, eh), eh) 24.35/9.94 new_esEs24(xuu50000, xuu4000, app(ty_Maybe, cdb)) -> new_esEs5(xuu50000, xuu4000, cdb) 24.35/9.94 new_esEs30(xuu5000, xuu400, app(ty_Maybe, cc)) -> new_esEs5(xuu5000, xuu400, cc) 24.35/9.94 new_compare111(xuu52000, xuu53000, False) -> GT 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), app(ty_Ratio, bfe), bef) -> new_ltEs4(xuu52000, xuu53000, bfe) 24.35/9.94 new_compare32(xuu52000, xuu53000, app(ty_Ratio, cha)) -> new_compare7(xuu52000, xuu53000, cha) 24.35/9.94 new_compare9(xuu52000, xuu53000, dh, ea) -> new_compare23(xuu52000, xuu53000, new_esEs4(xuu52000, xuu53000, dh, ea), dh, ea) 24.35/9.94 new_esEs31(xuu5000, xuu400, ty_Char) -> new_esEs16(xuu5000, xuu400) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.35/9.94 new_esEs25(xuu52000, xuu53000, app(app(ty_Either, dch), dda)) -> new_esEs4(xuu52000, xuu53000, dch, dda) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, app(ty_Maybe, chg)) -> new_ltEs13(xuu5200, xuu5300, chg) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, ty_Float) -> new_ltEs16(xuu52001, xuu53001) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, ty_Integer) -> new_ltEs9(xuu52001, xuu53001) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, app(app(ty_Either, ff), fg)) -> new_ltEs12(xuu52001, xuu53001, ff, fg) 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Ordering) -> new_ltEs8(xuu52000, xuu53000) 24.35/9.94 new_lt20(xuu52000, xuu53000, app(ty_Ratio, dde)) -> new_lt15(xuu52000, xuu53000, dde) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Double, bhh) -> new_esEs11(xuu50000, xuu4000) 24.35/9.94 new_esEs31(xuu5000, xuu400, ty_Bool) -> new_esEs10(xuu5000, xuu400) 24.35/9.94 new_esEs31(xuu5000, xuu400, app(ty_Maybe, caf)) -> new_esEs5(xuu5000, xuu400, caf) 24.35/9.94 new_compare26(xuu52000, xuu53000, False, eb, ec, ed) -> new_compare11(xuu52000, xuu53000, new_ltEs17(xuu52000, xuu53000, eb, ec, ed), eb, ec, ed) 24.35/9.94 new_compare31(Float(xuu52000, Pos(xuu520010)), Float(xuu53000, Neg(xuu530010))) -> new_compare8(new_sr0(xuu52000, Pos(xuu530010)), new_sr0(Neg(xuu520010), xuu53000)) 24.35/9.94 new_compare31(Float(xuu52000, Neg(xuu520010)), Float(xuu53000, Pos(xuu530010))) -> new_compare8(new_sr0(xuu52000, Neg(xuu530010)), new_sr0(Pos(xuu520010), xuu53000)) 24.35/9.94 new_lt5(xuu52000, xuu53000, app(ty_[], eg)) -> new_lt9(xuu52000, xuu53000, eg) 24.35/9.94 new_lt10(xuu52000, xuu53000, dh, ea) -> new_esEs17(new_compare9(xuu52000, xuu53000, dh, ea), LT) 24.35/9.94 new_esEs20(xuu50001, xuu4001, ty_Integer) -> new_esEs14(xuu50001, xuu4001) 24.35/9.94 new_esEs25(xuu52000, xuu53000, app(ty_Maybe, ddb)) -> new_esEs5(xuu52000, xuu53000, ddb) 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(ty_Ratio, bgh)) -> new_ltEs4(xuu52000, xuu53000, bgh) 24.35/9.94 new_lt16(xuu52000, xuu53000) -> new_esEs17(new_compare17(xuu52000, xuu53000), LT) 24.35/9.94 new_esEs21(xuu50002, xuu4002, ty_Char) -> new_esEs16(xuu50002, xuu4002) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(app(ty_Either, cga), cgb)) -> new_esEs4(xuu50000, xuu4000, cga, cgb) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, app(app(ty_Either, bga), bef)) -> new_ltEs12(xuu5200, xuu5300, bga, bef) 24.35/9.94 new_lt20(xuu52000, xuu53000, ty_Integer) -> new_lt7(xuu52000, xuu53000) 24.35/9.94 new_esEs21(xuu50002, xuu4002, ty_Bool) -> new_esEs10(xuu50002, xuu4002) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), app(ty_Ratio, ceb), bhh) -> new_esEs9(xuu50000, xuu4000, ceb) 24.35/9.94 new_esEs28(xuu50001, xuu4001, app(app(ty_@2, eae), eaf)) -> new_esEs6(xuu50001, xuu4001, eae, eaf) 24.35/9.94 new_ltEs8(LT, EQ) -> True 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), app(app(app(ty_@3, bff), bfg), bfh), bef) -> new_ltEs17(xuu52000, xuu53000, bff, bfg, bfh) 24.35/9.94 new_primCompAux0(xuu224, EQ) -> xuu224 24.35/9.94 new_esEs27(xuu50000, xuu4000, app(ty_Ratio, dgh)) -> new_esEs9(xuu50000, xuu4000, dgh) 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), app(ty_Ratio, dcc)) -> new_ltEs4(xuu52000, xuu53000, dcc) 24.35/9.94 new_esEs18(xuu52000, xuu53000, app(ty_Maybe, eh)) -> new_esEs5(xuu52000, xuu53000, eh) 24.35/9.94 new_esEs29(xuu22, xuu17, app(app(ty_Either, bdh), bea)) -> new_esEs4(xuu22, xuu17, bdh, bea) 24.35/9.94 new_esEs17(GT, GT) -> True 24.35/9.94 new_primEqInt(Neg(Succ(xuu500000)), Neg(Zero)) -> False 24.35/9.94 new_primEqInt(Neg(Zero), Neg(Succ(xuu40000))) -> False 24.35/9.94 new_lt19(xuu52001, xuu53001, ty_Integer) -> new_lt7(xuu52001, xuu53001) 24.35/9.94 new_esEs20(xuu50001, xuu4001, ty_Bool) -> new_esEs10(xuu50001, xuu4001) 24.35/9.94 new_ltEs20(xuu5200, xuu5300, app(app(ty_Either, dad), dae)) -> new_ltEs12(xuu5200, xuu5300, dad, dae) 24.35/9.94 new_compare([], [], bee) -> EQ 24.35/9.94 new_esEs20(xuu50001, xuu4001, ty_Char) -> new_esEs16(xuu50001, xuu4001) 24.35/9.94 new_esEs28(xuu50001, xuu4001, ty_@0) -> new_esEs8(xuu50001, xuu4001) 24.35/9.94 new_primEqInt(Pos(Succ(xuu500000)), Pos(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 24.35/9.94 new_esEs18(xuu52000, xuu53000, ty_Float) -> new_esEs15(xuu52000, xuu53000) 24.35/9.94 new_compare24(xuu52000, xuu53000, True) -> EQ 24.35/9.94 new_ltEs8(LT, LT) -> True 24.35/9.94 new_compare16(Double(xuu52000, Pos(xuu520010)), Double(xuu53000, Neg(xuu530010))) -> new_compare8(new_sr0(xuu52000, Pos(xuu530010)), new_sr0(Neg(xuu520010), xuu53000)) 24.35/9.94 new_compare16(Double(xuu52000, Neg(xuu520010)), Double(xuu53000, Pos(xuu530010))) -> new_compare8(new_sr0(xuu52000, Neg(xuu530010)), new_sr0(Pos(xuu520010), xuu53000)) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Ratio, cg)) -> new_esEs9(xuu50000, xuu4000, cg) 24.35/9.94 new_lt19(xuu52001, xuu53001, app(ty_[], dea)) -> new_lt9(xuu52001, xuu53001, dea) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, app(ty_Ratio, cfd)) -> new_esEs9(xuu50000, xuu4000, cfd) 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Int) -> new_ltEs10(xuu52000, xuu53000) 24.35/9.94 new_primEqInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> False 24.35/9.94 new_primEqInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> False 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Char) -> new_ltEs18(xuu52000, xuu53000) 24.35/9.94 new_lt5(xuu52000, xuu53000, ty_Double) -> new_lt12(xuu52000, xuu53000) 24.35/9.94 new_esEs28(xuu50001, xuu4001, app(ty_[], eac)) -> new_esEs13(xuu50001, xuu4001, eac) 24.35/9.94 new_primCmpInt(Neg(Zero), Neg(Succ(xuu5300))) -> new_primCmpNat0(Succ(xuu5300), Zero) 24.35/9.94 new_esEs30(xuu5000, xuu400, app(app(ty_Either, bhg), bhh)) -> new_esEs4(xuu5000, xuu400, bhg, bhh) 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, app(ty_[], bgb)) -> new_ltEs11(xuu52000, xuu53000, bgb) 24.35/9.94 new_esEs24(xuu50000, xuu4000, app(app(ty_Either, cde), cdf)) -> new_esEs4(xuu50000, xuu4000, cde, cdf) 24.35/9.94 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 24.35/9.94 new_esEs18(xuu52000, xuu53000, app(app(ty_Either, dh), ea)) -> new_esEs4(xuu52000, xuu53000, dh, ea) 24.35/9.94 new_esEs28(xuu50001, xuu4001, app(ty_Maybe, ead)) -> new_esEs5(xuu50001, xuu4001, ead) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_[], da)) -> new_esEs13(xuu50000, xuu4000, da) 24.35/9.94 new_fsEs(xuu194) -> new_not(new_esEs17(xuu194, GT)) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, ty_Bool) -> new_ltEs5(xuu5200, xuu5300) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.35/9.94 new_esEs24(xuu50000, xuu4000, ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.35/9.94 new_esEs28(xuu50001, xuu4001, ty_Bool) -> new_esEs10(xuu50001, xuu4001) 24.35/9.94 new_esEs12(xuu5000, xuu400) -> new_primEqInt(xuu5000, xuu400) 24.35/9.94 new_esEs19(xuu50000, xuu4000, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.35/9.94 new_esEs24(xuu50000, xuu4000, ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.35/9.94 new_esEs29(xuu22, xuu17, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs7(xuu22, xuu17, bch, bda, bdb) 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Bool, bef) -> new_ltEs5(xuu52000, xuu53000) 24.35/9.94 new_lt12(xuu52000, xuu53000) -> new_esEs17(new_compare16(xuu52000, xuu53000), LT) 24.35/9.94 new_esEs7(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), gg, gh, ha) -> new_asAs(new_esEs19(xuu50000, xuu4000, gg), new_asAs(new_esEs20(xuu50001, xuu4001, gh), new_esEs21(xuu50002, xuu4002, ha))) 24.35/9.94 new_not(False) -> True 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Int, bef) -> new_ltEs10(xuu52000, xuu53000) 24.35/9.94 new_esEs21(xuu50002, xuu4002, ty_@0) -> new_esEs8(xuu50002, xuu4002) 24.35/9.94 new_esEs20(xuu50001, xuu4001, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs7(xuu50001, xuu4001, bad, bae, baf) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, app(ty_Maybe, fh)) -> new_ltEs13(xuu52001, xuu53001, fh) 24.35/9.94 new_esEs30(xuu5000, xuu400, app(app(ty_@2, bhe), bhf)) -> new_esEs6(xuu5000, xuu400, bhe, bhf) 24.35/9.94 new_esEs32(xuu41, xuu36, app(ty_[], cbg)) -> new_esEs13(xuu41, xuu36, cbg) 24.35/9.94 new_primPlusNat0(Succ(xuu55200), Succ(xuu13600)) -> Succ(Succ(new_primPlusNat0(xuu55200, xuu13600))) 24.35/9.94 new_compare32(xuu52000, xuu53000, app(app(ty_@2, cgg), cgh)) -> new_compare19(xuu52000, xuu53000, cgg, cgh) 24.35/9.94 new_lt5(xuu52000, xuu53000, ty_Int) -> new_lt8(xuu52000, xuu53000) 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_@0) -> new_ltEs15(xuu52000, xuu53000) 24.35/9.94 new_esEs30(xuu5000, xuu400, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs7(xuu5000, xuu400, gg, gh, ha) 24.35/9.94 new_esEs20(xuu50001, xuu4001, app(app(ty_@2, bbb), bbc)) -> new_esEs6(xuu50001, xuu4001, bbb, bbc) 24.35/9.94 new_esEs23(xuu50001, xuu4001, ty_Integer) -> new_esEs14(xuu50001, xuu4001) 24.35/9.94 new_compare27(xuu52000, xuu53000, True, fa, fb) -> EQ 24.35/9.94 new_compare25(xuu52000, xuu53000, True) -> EQ 24.35/9.94 new_lt19(xuu52001, xuu53001, ty_@0) -> new_lt16(xuu52001, xuu53001) 24.35/9.94 new_esEs10(True, True) -> True 24.35/9.94 new_esEs27(xuu50000, xuu4000, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs7(xuu50000, xuu4000, dge, dgf, dgg) 24.35/9.94 new_lt20(xuu52000, xuu53000, ty_Int) -> new_lt8(xuu52000, xuu53000) 24.35/9.94 new_esEs26(xuu52001, xuu53001, app(ty_Maybe, ded)) -> new_esEs5(xuu52001, xuu53001, ded) 24.35/9.94 new_lt20(xuu52000, xuu53000, ty_Char) -> new_lt4(xuu52000, xuu53000) 24.35/9.94 new_esEs18(xuu52000, xuu53000, ty_Bool) -> new_esEs10(xuu52000, xuu53000) 24.35/9.94 new_esEs29(xuu22, xuu17, app(app(ty_@2, bdf), bdg)) -> new_esEs6(xuu22, xuu17, bdf, bdg) 24.35/9.94 new_sr0(xuu50000, xuu4001) -> new_primMulInt(xuu50000, xuu4001) 24.35/9.94 new_lt5(xuu52000, xuu53000, ty_Integer) -> new_lt7(xuu52000, xuu53000) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), app(ty_Maybe, ced), bhh) -> new_esEs5(xuu50000, xuu4000, ced) 24.35/9.94 new_esEs30(xuu5000, xuu400, app(ty_[], bhd)) -> new_esEs13(xuu5000, xuu400, bhd) 24.35/9.94 new_esEs18(xuu52000, xuu53000, app(ty_[], eg)) -> new_esEs13(xuu52000, xuu53000, eg) 24.35/9.94 new_lt9(xuu52000, xuu53000, eg) -> new_esEs17(new_compare(xuu52000, xuu53000, eg), LT) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.35/9.94 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 24.35/9.94 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Char) -> new_ltEs18(xuu52000, xuu53000) 24.35/9.94 new_esEs26(xuu52001, xuu53001, app(ty_Ratio, deg)) -> new_esEs9(xuu52001, xuu53001, deg) 24.35/9.94 new_ltEs5(True, True) -> True 24.35/9.94 new_ltEs21(xuu52002, xuu53002, ty_Ordering) -> new_ltEs8(xuu52002, xuu53002) 24.35/9.94 new_esEs28(xuu50001, xuu4001, app(app(ty_Either, eag), eah)) -> new_esEs4(xuu50001, xuu4001, eag, eah) 24.35/9.94 new_lt5(xuu52000, xuu53000, ty_Char) -> new_lt4(xuu52000, xuu53000) 24.35/9.94 new_esEs28(xuu50001, xuu4001, ty_Int) -> new_esEs12(xuu50001, xuu4001) 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Float) -> new_ltEs16(xuu52000, xuu53000) 24.35/9.94 new_compare23(Right(xuu5200), Left(xuu5300), False, che, chf) -> GT 24.35/9.94 new_esEs32(xuu41, xuu36, app(app(ty_@2, cca), ccb)) -> new_esEs6(xuu41, xuu36, cca, ccb) 24.35/9.94 new_esEs32(xuu41, xuu36, ty_@0) -> new_esEs8(xuu41, xuu36) 24.35/9.94 new_esEs25(xuu52000, xuu53000, app(ty_Ratio, dde)) -> new_esEs9(xuu52000, xuu53000, dde) 24.35/9.94 new_esEs18(xuu52000, xuu53000, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs7(xuu52000, xuu53000, eb, ec, ed) 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), bga, ty_Integer) -> new_ltEs9(xuu52000, xuu53000) 24.35/9.94 new_esEs26(xuu52001, xuu53001, app(app(ty_Either, deb), dec)) -> new_esEs4(xuu52001, xuu53001, deb, dec) 24.35/9.94 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 24.35/9.94 new_primCompAux1(xuu52000, xuu53000, xuu211, bee) -> new_primCompAux0(xuu211, new_compare32(xuu52000, xuu53000, bee)) 24.35/9.94 new_esEs30(xuu5000, xuu400, ty_Bool) -> new_esEs10(xuu5000, xuu400) 24.35/9.94 new_compare14(xuu52000, xuu53000) -> new_compare25(xuu52000, xuu53000, new_esEs17(xuu52000, xuu53000)) 24.35/9.94 new_compare17(@0, @0) -> EQ 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), bhg, ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.35/9.94 new_esEs21(xuu50002, xuu4002, ty_Integer) -> new_esEs14(xuu50002, xuu4002) 24.35/9.94 new_primCmpNat0(Succ(xuu5200), Succ(xuu5300)) -> new_primCmpNat0(xuu5200, xuu5300) 24.35/9.94 new_compare29(xuu52000, xuu53000, False, eh) -> new_compare112(xuu52000, xuu53000, new_ltEs13(xuu52000, xuu53000, eh), eh) 24.35/9.94 new_compare29(xuu52000, xuu53000, True, eh) -> EQ 24.35/9.94 new_esEs19(xuu50000, xuu4000, ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.35/9.94 new_lt20(xuu52000, xuu53000, ty_@0) -> new_lt16(xuu52000, xuu53000) 24.35/9.94 new_esEs26(xuu52001, xuu53001, ty_Int) -> new_esEs12(xuu52001, xuu53001) 24.35/9.94 new_lt19(xuu52001, xuu53001, ty_Char) -> new_lt4(xuu52001, xuu53001) 24.35/9.94 new_esEs24(xuu50000, xuu4000, ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.35/9.94 new_esEs31(xuu5000, xuu400, ty_@0) -> new_esEs8(xuu5000, xuu400) 24.35/9.94 new_lt20(xuu52000, xuu53000, app(app(ty_@2, ddc), ddd)) -> new_lt14(xuu52000, xuu53000, ddc, ddd) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, ty_Bool) -> new_ltEs5(xuu52001, xuu53001) 24.35/9.94 new_esEs19(xuu50000, xuu4000, app(app(ty_@2, hh), baa)) -> new_esEs6(xuu50000, xuu4000, hh, baa) 24.35/9.94 new_esEs24(xuu50000, xuu4000, app(ty_Ratio, cch)) -> new_esEs9(xuu50000, xuu4000, cch) 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Int) -> new_ltEs10(xuu52000, xuu53000) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Integer, bhh) -> new_esEs14(xuu50000, xuu4000) 24.35/9.94 new_compare15(xuu52000, xuu53000, False, fa, fb) -> GT 24.35/9.94 new_ltEs19(xuu5200, xuu5300, ty_Float) -> new_ltEs16(xuu5200, xuu5300) 24.35/9.94 new_esEs27(xuu50000, xuu4000, ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.35/9.94 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 24.35/9.94 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 24.35/9.94 new_ltEs21(xuu52002, xuu53002, ty_Bool) -> new_ltEs5(xuu52002, xuu53002) 24.35/9.94 new_lt5(xuu52000, xuu53000, app(app(ty_@2, fa), fb)) -> new_lt14(xuu52000, xuu53000, fa, fb) 24.35/9.94 new_compare110(xuu191, xuu192, False, bec, bed) -> GT 24.35/9.94 new_ltEs9(xuu5200, xuu5300) -> new_fsEs(new_compare6(xuu5200, xuu5300)) 24.35/9.94 new_esEs6(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), bhe, bhf) -> new_asAs(new_esEs27(xuu50000, xuu4000, bhe), new_esEs28(xuu50001, xuu4001, bhf)) 24.35/9.94 new_esEs27(xuu50000, xuu4000, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.35/9.94 new_primEqNat0(Zero, Zero) -> True 24.35/9.94 new_lt19(xuu52001, xuu53001, ty_Ordering) -> new_lt6(xuu52001, xuu53001) 24.35/9.94 new_esEs21(xuu50002, xuu4002, ty_Double) -> new_esEs11(xuu50002, xuu4002) 24.35/9.94 new_esEs18(xuu52000, xuu53000, app(app(ty_@2, fa), fb)) -> new_esEs6(xuu52000, xuu53000, fa, fb) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Ordering, bhh) -> new_esEs17(xuu50000, xuu4000) 24.35/9.94 new_lt5(xuu52000, xuu53000, ty_@0) -> new_lt16(xuu52000, xuu53000) 24.35/9.94 new_esEs32(xuu41, xuu36, ty_Double) -> new_esEs11(xuu41, xuu36) 24.35/9.94 new_ltEs8(LT, GT) -> True 24.35/9.94 new_esEs26(xuu52001, xuu53001, ty_Float) -> new_esEs15(xuu52001, xuu53001) 24.35/9.94 new_lt5(xuu52000, xuu53000, app(app(app(ty_@3, eb), ec), ed)) -> new_lt18(xuu52000, xuu53000, eb, ec, ed) 24.35/9.94 new_ltEs17(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), chh, daa, dab) -> new_pePe(new_lt20(xuu52000, xuu53000, chh), new_asAs(new_esEs25(xuu52000, xuu53000, chh), new_pePe(new_lt19(xuu52001, xuu53001, daa), new_asAs(new_esEs26(xuu52001, xuu53001, daa), new_ltEs21(xuu52002, xuu53002, dab))))) 24.35/9.94 new_esEs31(xuu5000, xuu400, app(app(ty_@2, cag), cah)) -> new_esEs6(xuu5000, xuu400, cag, cah) 24.35/9.94 new_esEs19(xuu50000, xuu4000, app(ty_[], hf)) -> new_esEs13(xuu50000, xuu4000, hf) 24.35/9.94 new_asAs(False, xuu179) -> False 24.35/9.94 new_ltEs20(xuu5200, xuu5300, ty_Bool) -> new_ltEs5(xuu5200, xuu5300) 24.35/9.94 new_ltEs8(EQ, LT) -> False 24.35/9.94 new_compare30(xuu52000, xuu53000, eb, ec, ed) -> new_compare26(xuu52000, xuu53000, new_esEs7(xuu52000, xuu53000, eb, ec, ed), eb, ec, ed) 24.35/9.94 new_compare13(xuu52000, xuu53000) -> new_compare24(xuu52000, xuu53000, new_esEs10(xuu52000, xuu53000)) 24.35/9.94 new_compare(:(xuu52000, xuu52001), :(xuu53000, xuu53001), bee) -> new_primCompAux1(xuu52000, xuu53000, new_compare(xuu52001, xuu53001, bee), bee) 24.35/9.94 new_lt20(xuu52000, xuu53000, ty_Ordering) -> new_lt6(xuu52000, xuu53000) 24.35/9.94 new_esEs27(xuu50000, xuu4000, app(ty_Maybe, dhb)) -> new_esEs5(xuu50000, xuu4000, dhb) 24.35/9.94 new_esEs22(xuu50000, xuu4000, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.35/9.94 new_ltEs21(xuu52002, xuu53002, app(ty_[], dfc)) -> new_ltEs11(xuu52002, xuu53002, dfc) 24.35/9.94 new_esEs14(Integer(xuu50000), Integer(xuu4000)) -> new_primEqInt(xuu50000, xuu4000) 24.35/9.94 new_esEs27(xuu50000, xuu4000, app(app(ty_Either, dhe), dhf)) -> new_esEs4(xuu50000, xuu4000, dhe, dhf) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.35/9.94 new_ltEs13(Nothing, Just(xuu53000), chg) -> True 24.35/9.94 new_compare7(:%(xuu52000, xuu52001), :%(xuu53000, xuu53001), ty_Integer) -> new_compare6(new_sr(xuu52000, xuu53001), new_sr(xuu53000, xuu52001)) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Char, bhh) -> new_esEs16(xuu50000, xuu4000) 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Float, bef) -> new_ltEs16(xuu52000, xuu53000) 24.35/9.94 new_compare112(xuu52000, xuu53000, False, eh) -> GT 24.35/9.94 new_lt19(xuu52001, xuu53001, app(app(ty_@2, dee), def)) -> new_lt14(xuu52001, xuu53001, dee, def) 24.35/9.94 new_esEs20(xuu50001, xuu4001, app(ty_[], bah)) -> new_esEs13(xuu50001, xuu4001, bah) 24.35/9.94 new_compare23(Left(xuu5200), Left(xuu5300), False, che, chf) -> new_compare10(xuu5200, xuu5300, new_ltEs19(xuu5200, xuu5300, che), che, chf) 24.35/9.94 new_lt14(xuu52000, xuu53000, fa, fb) -> new_esEs17(new_compare19(xuu52000, xuu53000, fa, fb), LT) 24.35/9.94 24.35/9.94 The set Q consists of the following terms: 24.35/9.94 24.35/9.94 new_esEs13(:(x0, x1), [], x2) 24.35/9.94 new_lt5(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_esEs31(x0, x1, ty_@0) 24.35/9.94 new_ltEs13(Just(x0), Just(x1), ty_Char) 24.35/9.94 new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_esEs5(Nothing, Just(x0), x1) 24.35/9.94 new_compare(:(x0, x1), :(x2, x3), x4) 24.35/9.94 new_lt20(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_lt20(x0, x1, ty_Int) 24.35/9.94 new_ltEs7(x0, x1, ty_Char) 24.35/9.94 new_compare24(x0, x1, True) 24.35/9.94 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 24.35/9.94 new_compare27(x0, x1, False, x2, x3) 24.35/9.94 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 24.35/9.94 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 24.35/9.94 new_esEs23(x0, x1, ty_Integer) 24.35/9.94 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_ltEs19(x0, x1, ty_@0) 24.35/9.94 new_esEs32(x0, x1, ty_Double) 24.35/9.94 new_compare13(x0, x1) 24.35/9.94 new_lt8(x0, x1) 24.35/9.94 new_ltEs7(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_ltEs14(x0, x1) 24.35/9.94 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.35/9.94 new_compare32(x0, x1, ty_Float) 24.35/9.94 new_lt20(x0, x1, ty_Ordering) 24.35/9.94 new_fsEs(x0) 24.35/9.94 new_ltEs18(x0, x1) 24.35/9.94 new_esEs27(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_esEs29(x0, x1, ty_Float) 24.35/9.94 new_ltEs13(Nothing, Nothing, x0) 24.35/9.94 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_sr(Integer(x0), Integer(x1)) 24.35/9.94 new_ltEs20(x0, x1, ty_Double) 24.35/9.94 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.35/9.94 new_esEs26(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_esEs18(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 24.35/9.94 new_esEs31(x0, x1, ty_Bool) 24.35/9.94 new_sr0(x0, x1) 24.35/9.94 new_ltEs16(x0, x1) 24.35/9.94 new_esEs25(x0, x1, ty_Char) 24.35/9.94 new_ltEs19(x0, x1, ty_Bool) 24.35/9.94 new_ltEs13(Just(x0), Just(x1), ty_Int) 24.35/9.94 new_primCmpNat0(Zero, Succ(x0)) 24.35/9.94 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 24.35/9.94 new_primPlusNat0(Succ(x0), Succ(x1)) 24.35/9.94 new_lt19(x0, x1, app(ty_[], x2)) 24.35/9.94 new_lt20(x0, x1, ty_Char) 24.35/9.94 new_lt14(x0, x1, x2, x3) 24.35/9.94 new_ltEs7(x0, x1, ty_Int) 24.35/9.94 new_primEqInt(Pos(Zero), Pos(Zero)) 24.35/9.94 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.35/9.94 new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 24.35/9.94 new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 24.35/9.94 new_esEs28(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_compare11(x0, x1, False, x2, x3, x4) 24.35/9.94 new_esEs25(x0, x1, ty_Int) 24.35/9.94 new_primMulNat0(Succ(x0), Zero) 24.35/9.94 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.35/9.94 new_esEs26(x0, x1, ty_@0) 24.35/9.94 new_lt15(x0, x1, x2) 24.35/9.94 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.35/9.94 new_esEs32(x0, x1, ty_Ordering) 24.35/9.94 new_esEs31(x0, x1, app(ty_[], x2)) 24.35/9.94 new_esEs13([], :(x0, x1), x2) 24.35/9.94 new_compare([], :(x0, x1), x2) 24.35/9.94 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 24.35/9.94 new_ltEs5(False, True) 24.35/9.94 new_ltEs5(True, False) 24.35/9.94 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_compare23(x0, x1, True, x2, x3) 24.35/9.94 new_ltEs19(x0, x1, ty_Char) 24.35/9.94 new_esEs24(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_primCompAux0(x0, EQ) 24.35/9.94 new_esEs32(x0, x1, ty_Int) 24.35/9.94 new_compare17(@0, @0) 24.35/9.94 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_esEs25(x0, x1, ty_Ordering) 24.35/9.94 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_primEqNat0(Zero, Succ(x0)) 24.35/9.94 new_esEs25(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_primEqInt(Neg(Zero), Neg(Zero)) 24.35/9.94 new_esEs24(x0, x1, ty_Bool) 24.35/9.94 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.35/9.94 new_lt19(x0, x1, ty_Double) 24.35/9.94 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.35/9.94 new_lt20(x0, x1, ty_Double) 24.35/9.94 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 24.35/9.94 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_esEs31(x0, x1, ty_Char) 24.35/9.94 new_lt19(x0, x1, ty_Ordering) 24.35/9.94 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.35/9.94 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_esEs26(x0, x1, ty_Int) 24.35/9.94 new_esEs32(x0, x1, ty_Char) 24.35/9.94 new_ltEs19(x0, x1, ty_Integer) 24.35/9.94 new_esEs27(x0, x1, app(ty_[], x2)) 24.35/9.94 new_esEs24(x0, x1, ty_Integer) 24.35/9.94 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.35/9.94 new_ltEs20(x0, x1, ty_Int) 24.35/9.94 new_esEs21(x0, x1, ty_Ordering) 24.35/9.94 new_ltEs7(x0, x1, ty_@0) 24.35/9.94 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_esEs28(x0, x1, app(ty_[], x2)) 24.35/9.94 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 24.35/9.94 new_ltEs20(x0, x1, ty_Char) 24.35/9.94 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_lt5(x0, x1, ty_Integer) 24.35/9.94 new_esEs31(x0, x1, ty_Integer) 24.35/9.94 new_esEs10(True, True) 24.35/9.94 new_esEs26(x0, x1, ty_Char) 24.35/9.94 new_esEs20(x0, x1, ty_Double) 24.35/9.94 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 24.35/9.94 new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 24.35/9.94 new_esEs20(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_esEs21(x0, x1, app(ty_[], x2)) 24.35/9.94 new_ltEs21(x0, x1, ty_Double) 24.35/9.94 new_esEs30(x0, x1, app(ty_[], x2)) 24.35/9.94 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_lt20(x0, x1, ty_@0) 24.35/9.94 new_esEs17(EQ, GT) 24.35/9.94 new_esEs17(GT, EQ) 24.35/9.94 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_primMulInt(Pos(x0), Pos(x1)) 24.35/9.94 new_lt4(x0, x1) 24.35/9.94 new_primEqInt(Pos(Zero), Neg(Zero)) 24.35/9.94 new_primEqInt(Neg(Zero), Pos(Zero)) 24.35/9.94 new_primMulNat0(Succ(x0), Succ(x1)) 24.35/9.94 new_ltEs10(x0, x1) 24.35/9.94 new_compare12(Char(x0), Char(x1)) 24.35/9.94 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_ltEs13(Just(x0), Nothing, x1) 24.35/9.94 new_esEs26(x0, x1, ty_Double) 24.35/9.94 new_esEs24(x0, x1, ty_Ordering) 24.35/9.94 new_compare32(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.35/9.94 new_compare111(x0, x1, True) 24.35/9.94 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 24.35/9.94 new_compare31(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 24.35/9.94 new_esEs18(x0, x1, ty_Float) 24.35/9.94 new_ltEs8(LT, LT) 24.35/9.94 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 24.35/9.94 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_primCompAux0(x0, LT) 24.35/9.94 new_compare29(x0, x1, False, x2) 24.35/9.94 new_compare15(x0, x1, False, x2, x3) 24.35/9.94 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 24.35/9.94 new_lt16(x0, x1) 24.35/9.94 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_compare8(x0, x1) 24.35/9.94 new_compare11(x0, x1, True, x2, x3, x4) 24.35/9.94 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 24.35/9.94 new_esEs18(x0, x1, ty_@0) 24.35/9.94 new_compare32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_esEs19(x0, x1, ty_Integer) 24.35/9.94 new_esEs26(x0, x1, ty_Bool) 24.35/9.94 new_esEs32(x0, x1, ty_@0) 24.35/9.94 new_esEs31(x0, x1, ty_Double) 24.35/9.94 new_esEs17(LT, GT) 24.35/9.94 new_esEs17(GT, LT) 24.35/9.94 new_esEs19(x0, x1, ty_Bool) 24.35/9.94 new_esEs23(x0, x1, ty_Int) 24.35/9.94 new_lt5(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 24.35/9.94 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 24.35/9.94 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 24.35/9.94 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_primPlusNat1(Succ(x0), x1) 24.35/9.94 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.35/9.94 new_esEs28(x0, x1, ty_Float) 24.35/9.94 new_esEs5(Just(x0), Just(x1), ty_Double) 24.35/9.94 new_esEs24(x0, x1, ty_Double) 24.35/9.94 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_esEs31(x0, x1, ty_Ordering) 24.35/9.94 new_compare10(x0, x1, True, x2, x3) 24.35/9.94 new_compare32(x0, x1, ty_Bool) 24.35/9.94 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 24.35/9.94 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.35/9.94 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_esEs29(x0, x1, ty_@0) 24.35/9.94 new_compare24(x0, x1, False) 24.35/9.94 new_ltEs7(x0, x1, ty_Integer) 24.35/9.94 new_esEs28(x0, x1, ty_Double) 24.35/9.94 new_ltEs19(x0, x1, ty_Ordering) 24.35/9.94 new_ltEs20(x0, x1, ty_Bool) 24.35/9.94 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 24.35/9.94 new_primCmpNat0(Succ(x0), Zero) 24.35/9.94 new_compare18(x0, x1, True) 24.35/9.94 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 24.35/9.94 new_esEs20(x0, x1, ty_Ordering) 24.35/9.94 new_esEs26(x0, x1, ty_Ordering) 24.35/9.94 new_esEs32(x0, x1, app(ty_[], x2)) 24.35/9.94 new_compare29(x0, x1, True, x2) 24.35/9.94 new_ltEs19(x0, x1, ty_Double) 24.35/9.94 new_ltEs21(x0, x1, ty_Ordering) 24.35/9.94 new_ltEs13(Just(x0), Just(x1), ty_Integer) 24.35/9.94 new_esEs26(x0, x1, ty_Integer) 24.35/9.94 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.35/9.94 new_compare15(x0, x1, True, x2, x3) 24.35/9.94 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.35/9.94 new_esEs22(x0, x1, ty_Int) 24.35/9.94 new_ltEs8(GT, GT) 24.35/9.94 new_esEs21(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 24.35/9.94 new_compare31(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 24.35/9.94 new_compare31(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 24.35/9.94 new_ltEs8(LT, EQ) 24.35/9.94 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_ltEs8(EQ, LT) 24.35/9.94 new_esEs10(False, False) 24.35/9.94 new_primCmpInt(Neg(Zero), Neg(Zero)) 24.35/9.94 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_lt18(x0, x1, x2, x3, x4) 24.35/9.94 new_esEs25(x0, x1, ty_Double) 24.35/9.94 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 24.35/9.94 new_ltEs20(x0, x1, ty_Integer) 24.35/9.94 new_ltEs7(x0, x1, ty_Bool) 24.35/9.94 new_esEs25(x0, x1, ty_@0) 24.35/9.94 new_esEs27(x0, x1, ty_Int) 24.35/9.94 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_compare([], [], x0) 24.35/9.94 new_primCompAux1(x0, x1, x2, x3) 24.35/9.94 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.35/9.94 new_primCmpInt(Pos(Zero), Neg(Zero)) 24.35/9.94 new_primCmpInt(Neg(Zero), Pos(Zero)) 24.35/9.94 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_ltEs7(x0, x1, ty_Ordering) 24.35/9.94 new_esEs19(x0, x1, ty_Char) 24.35/9.94 new_esEs32(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_primPlusNat1(Zero, x0) 24.35/9.94 new_primEqNat0(Succ(x0), Zero) 24.35/9.94 new_lt19(x0, x1, ty_@0) 24.35/9.94 new_esEs21(x0, x1, ty_Int) 24.35/9.94 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.35/9.94 new_ltEs7(x0, x1, app(ty_[], x2)) 24.35/9.94 new_esEs30(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_esEs22(x0, x1, ty_Integer) 24.35/9.94 new_ltEs5(True, True) 24.35/9.94 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 24.35/9.94 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 24.35/9.94 new_esEs21(x0, x1, ty_Char) 24.35/9.94 new_esEs21(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 24.35/9.94 new_lt5(x0, x1, ty_Double) 24.35/9.94 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_esEs27(x0, x1, ty_Char) 24.35/9.94 new_ltEs20(x0, x1, ty_Ordering) 24.35/9.94 new_esEs27(x0, x1, ty_Float) 24.35/9.94 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_lt5(x0, x1, ty_@0) 24.35/9.94 new_lt9(x0, x1, x2) 24.35/9.94 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 24.35/9.94 new_primPlusNat0(Zero, Succ(x0)) 24.35/9.94 new_ltEs19(x0, x1, app(ty_[], x2)) 24.35/9.94 new_esEs30(x0, x1, ty_Integer) 24.35/9.94 new_esEs31(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_ltEs8(EQ, EQ) 24.35/9.94 new_compare25(x0, x1, True) 24.35/9.94 new_ltEs13(Just(x0), Just(x1), ty_Bool) 24.35/9.94 new_esEs28(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_esEs30(x0, x1, ty_Ordering) 24.35/9.94 new_esEs24(x0, x1, ty_@0) 24.35/9.94 new_esEs19(x0, x1, ty_Float) 24.35/9.94 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 24.35/9.94 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_compare112(x0, x1, False, x2) 24.35/9.94 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_compare110(x0, x1, True, x2, x3) 24.35/9.94 new_esEs21(x0, x1, ty_Bool) 24.35/9.94 new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.35/9.94 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 24.35/9.94 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_lt10(x0, x1, x2, x3) 24.35/9.94 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 24.35/9.94 new_esEs29(x0, x1, ty_Ordering) 24.35/9.94 new_esEs13([], [], x0) 24.35/9.94 new_esEs28(x0, x1, ty_Bool) 24.35/9.94 new_esEs30(x0, x1, ty_Bool) 24.35/9.94 new_compare23(Left(x0), Right(x1), False, x2, x3) 24.35/9.94 new_lt20(x0, x1, app(ty_[], x2)) 24.35/9.94 new_compare32(x0, x1, ty_Ordering) 24.35/9.94 new_esEs20(x0, x1, ty_Integer) 24.35/9.94 new_compare23(Right(x0), Left(x1), False, x2, x3) 24.35/9.94 new_ltEs15(x0, x1) 24.35/9.94 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.35/9.94 new_compare14(x0, x1) 24.35/9.94 new_esEs5(Just(x0), Just(x1), ty_@0) 24.35/9.94 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.35/9.94 new_esEs25(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_esEs19(x0, x1, ty_Double) 24.35/9.94 new_ltEs21(x0, x1, ty_Integer) 24.35/9.94 new_ltEs9(x0, x1) 24.35/9.94 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 24.35/9.94 new_esEs19(x0, x1, ty_Ordering) 24.35/9.94 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.35/9.94 new_primMulNat0(Zero, Zero) 24.35/9.94 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 24.35/9.94 new_compare32(x0, x1, ty_Double) 24.35/9.94 new_esEs24(x0, x1, app(ty_[], x2)) 24.35/9.94 new_ltEs11(x0, x1, x2) 24.35/9.94 new_esEs19(x0, x1, ty_Int) 24.35/9.94 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 24.35/9.94 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 24.35/9.94 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_primCompAux0(x0, GT) 24.35/9.94 new_esEs32(x0, x1, ty_Float) 24.35/9.94 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_compare10(x0, x1, False, x2, x3) 24.35/9.94 new_esEs18(x0, x1, ty_Double) 24.35/9.94 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 24.35/9.94 new_esEs19(x0, x1, app(ty_[], x2)) 24.35/9.94 new_esEs29(x0, x1, app(ty_[], x2)) 24.35/9.94 new_esEs27(x0, x1, ty_Bool) 24.35/9.94 new_compare32(x0, x1, ty_Char) 24.35/9.94 new_esEs31(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_esEs32(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_esEs29(x0, x1, ty_Int) 24.35/9.94 new_esEs29(x0, x1, ty_Double) 24.35/9.94 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 24.35/9.94 new_esEs21(x0, x1, ty_Integer) 24.35/9.94 new_primEqNat0(Succ(x0), Succ(x1)) 24.35/9.94 new_compare26(x0, x1, False, x2, x3, x4) 24.35/9.94 new_ltEs13(Just(x0), Just(x1), ty_Float) 24.35/9.94 new_esEs21(x0, x1, ty_Float) 24.35/9.94 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_esEs5(Just(x0), Just(x1), ty_Integer) 24.35/9.94 new_esEs29(x0, x1, ty_Char) 24.35/9.94 new_primPlusNat0(Zero, Zero) 24.35/9.94 new_compare32(x0, x1, ty_Int) 24.35/9.94 new_compare6(Integer(x0), Integer(x1)) 24.35/9.94 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.35/9.94 new_ltEs7(x0, x1, ty_Float) 24.35/9.94 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.35/9.94 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_not(True) 24.35/9.94 new_esEs18(x0, x1, ty_Int) 24.35/9.94 new_ltEs21(x0, x1, ty_@0) 24.35/9.94 new_ltEs20(x0, x1, app(ty_[], x2)) 24.35/9.94 new_esEs20(x0, x1, ty_@0) 24.35/9.94 new_primPlusNat0(Succ(x0), Zero) 24.35/9.94 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_lt19(x0, x1, ty_Bool) 24.35/9.94 new_asAs(True, x0) 24.35/9.94 new_esEs25(x0, x1, ty_Float) 24.35/9.94 new_compare30(x0, x1, x2, x3, x4) 24.35/9.94 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_esEs17(LT, EQ) 24.35/9.94 new_esEs17(EQ, LT) 24.35/9.94 new_esEs27(x0, x1, ty_Integer) 24.35/9.94 new_lt7(x0, x1) 24.35/9.94 new_esEs13(:(x0, x1), :(x2, x3), x4) 24.35/9.94 new_pePe(False, x0) 24.35/9.94 new_esEs20(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.35/9.94 new_pePe(True, x0) 24.35/9.94 new_esEs9(:%(x0, x1), :%(x2, x3), x4) 24.35/9.94 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.35/9.94 new_esEs28(x0, x1, ty_Char) 24.35/9.94 new_ltEs8(GT, LT) 24.35/9.94 new_esEs18(x0, x1, ty_Char) 24.35/9.94 new_primMulNat0(Zero, Succ(x0)) 24.35/9.94 new_ltEs8(LT, GT) 24.35/9.94 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 24.35/9.94 new_esEs17(GT, GT) 24.35/9.94 new_esEs25(x0, x1, app(ty_[], x2)) 24.35/9.94 new_esEs32(x0, x1, ty_Integer) 24.35/9.94 new_esEs30(x0, x1, ty_Char) 24.35/9.94 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 24.35/9.94 new_lt19(x0, x1, ty_Integer) 24.35/9.94 new_esEs28(x0, x1, ty_Int) 24.35/9.94 new_esEs24(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_ltEs4(x0, x1, x2) 24.35/9.94 new_ltEs5(False, False) 24.35/9.94 new_ltEs20(x0, x1, ty_Float) 24.35/9.94 new_lt20(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 24.35/9.94 new_esEs17(EQ, EQ) 24.35/9.94 new_esEs5(Just(x0), Nothing, x1) 24.35/9.94 new_lt20(x0, x1, ty_Float) 24.35/9.94 new_esEs30(x0, x1, ty_Int) 24.35/9.94 new_ltEs20(x0, x1, ty_@0) 24.35/9.94 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 24.35/9.94 new_esEs27(x0, x1, ty_Ordering) 24.35/9.94 new_esEs29(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_lt19(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_lt5(x0, x1, ty_Ordering) 24.35/9.94 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_ltEs21(x0, x1, ty_Bool) 24.35/9.94 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_esEs30(x0, x1, ty_@0) 24.35/9.94 new_ltEs6(@2(x0, x1), @2(x2, x3), x4, x5) 24.35/9.94 new_lt5(x0, x1, app(ty_[], x2)) 24.35/9.94 new_esEs12(x0, x1) 24.35/9.94 new_esEs20(x0, x1, ty_Bool) 24.35/9.94 new_primCmpInt(Pos(Zero), Pos(Zero)) 24.35/9.94 new_lt13(x0, x1) 24.35/9.94 new_esEs28(x0, x1, ty_@0) 24.35/9.94 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.35/9.94 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 24.35/9.94 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 24.35/9.94 new_compare9(x0, x1, x2, x3) 24.35/9.94 new_esEs30(x0, x1, ty_Float) 24.35/9.94 new_esEs16(Char(x0), Char(x1)) 24.35/9.94 new_esEs30(x0, x1, ty_Double) 24.35/9.94 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_esEs18(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_compare19(x0, x1, x2, x3) 24.35/9.94 new_compare26(x0, x1, True, x2, x3, x4) 24.35/9.94 new_ltEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.35/9.94 new_esEs27(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 24.35/9.94 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 24.35/9.94 new_esEs32(x0, x1, ty_Bool) 24.35/9.94 new_esEs20(x0, x1, ty_Int) 24.35/9.94 new_ltEs21(x0, x1, app(ty_[], x2)) 24.35/9.94 new_esEs31(x0, x1, ty_Float) 24.35/9.94 new_esEs20(x0, x1, ty_Char) 24.35/9.94 new_esEs29(x0, x1, ty_Bool) 24.35/9.94 new_compare32(x0, x1, ty_Integer) 24.35/9.94 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 24.35/9.94 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_ltEs19(x0, x1, ty_Float) 24.35/9.94 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.35/9.94 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 24.35/9.94 new_ltEs21(x0, x1, ty_Char) 24.35/9.94 new_ltEs7(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_compare23(Right(x0), Right(x1), False, x2, x3) 24.35/9.94 new_esEs29(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_esEs26(x0, x1, ty_Float) 24.35/9.94 new_esEs21(x0, x1, ty_@0) 24.35/9.94 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_esEs18(x0, x1, ty_Bool) 24.35/9.94 new_compare110(x0, x1, False, x2, x3) 24.35/9.94 new_compare28(x0, x1, x2) 24.35/9.94 new_primCmpNat0(Succ(x0), Succ(x1)) 24.35/9.94 new_compare32(x0, x1, ty_@0) 24.35/9.94 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.35/9.94 new_lt5(x0, x1, ty_Bool) 24.35/9.94 new_lt19(x0, x1, ty_Int) 24.35/9.94 new_ltEs12(Left(x0), Right(x1), x2, x3) 24.35/9.94 new_ltEs12(Right(x0), Left(x1), x2, x3) 24.35/9.94 new_lt20(x0, x1, ty_Bool) 24.35/9.94 new_ltEs13(Nothing, Just(x0), x1) 24.35/9.94 new_compare32(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_ltEs21(x0, x1, ty_Int) 24.35/9.94 new_esEs5(Just(x0), Just(x1), ty_Ordering) 24.35/9.94 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 24.35/9.94 new_lt19(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 24.35/9.94 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 24.35/9.94 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_esEs19(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_esEs15(Float(x0, x1), Float(x2, x3)) 24.35/9.94 new_esEs25(x0, x1, ty_Integer) 24.35/9.94 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_esEs31(x0, x1, ty_Int) 24.35/9.94 new_primMulInt(Neg(x0), Neg(x1)) 24.35/9.94 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_esEs20(x0, x1, ty_Float) 24.35/9.94 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 24.35/9.94 new_esEs14(Integer(x0), Integer(x1)) 24.35/9.94 new_compare(:(x0, x1), [], x2) 24.35/9.94 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 24.35/9.94 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 24.35/9.94 new_compare112(x0, x1, True, x2) 24.35/9.94 new_lt6(x0, x1) 24.35/9.94 new_compare25(x0, x1, False) 24.35/9.94 new_esEs8(@0, @0) 24.35/9.94 new_compare27(x0, x1, True, x2, x3) 24.35/9.94 new_esEs20(x0, x1, app(ty_[], x2)) 24.35/9.94 new_esEs11(Double(x0, x1), Double(x2, x3)) 24.35/9.94 new_esEs5(Just(x0), Just(x1), ty_Float) 24.35/9.94 new_compare111(x0, x1, False) 24.35/9.94 new_lt19(x0, x1, ty_Char) 24.35/9.94 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 24.35/9.94 new_ltEs13(Just(x0), Just(x1), ty_@0) 24.35/9.94 new_esEs18(x0, x1, app(ty_[], x2)) 24.35/9.94 new_primEqNat0(Zero, Zero) 24.35/9.94 new_compare32(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_ltEs13(Just(x0), Just(x1), ty_Double) 24.35/9.94 new_esEs30(x0, x1, app(ty_Ratio, x2)) 24.35/9.94 new_ltEs19(x0, x1, ty_Int) 24.35/9.94 new_not(False) 24.35/9.94 new_esEs18(x0, x1, ty_Integer) 24.35/9.94 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 24.35/9.94 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 24.35/9.94 new_lt19(x0, x1, ty_Float) 24.35/9.94 new_ltEs8(GT, EQ) 24.35/9.94 new_lt11(x0, x1, x2) 24.35/9.94 new_ltEs8(EQ, GT) 24.35/9.94 new_esEs5(Just(x0), Just(x1), ty_Char) 24.35/9.94 new_esEs17(LT, LT) 24.35/9.94 new_esEs24(x0, x1, ty_Int) 24.35/9.94 new_esEs5(Nothing, Nothing, x0) 24.35/9.94 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_ltEs21(x0, x1, ty_Float) 24.35/9.94 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.35/9.94 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_ltEs7(x0, x1, ty_Double) 24.35/9.94 new_compare31(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 24.35/9.94 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.35/9.94 new_lt12(x0, x1) 24.35/9.94 new_esEs5(Just(x0), Just(x1), ty_Int) 24.35/9.94 new_lt5(x0, x1, ty_Float) 24.35/9.94 new_esEs24(x0, x1, ty_Char) 24.35/9.94 new_esEs4(Left(x0), Right(x1), x2, x3) 24.35/9.94 new_esEs4(Right(x0), Left(x1), x2, x3) 24.35/9.94 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 24.35/9.94 new_lt17(x0, x1) 24.35/9.94 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.94 new_esEs29(x0, x1, ty_Integer) 24.35/9.94 new_esEs27(x0, x1, ty_Double) 24.35/9.94 new_esEs19(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_primMulInt(Pos(x0), Neg(x1)) 24.35/9.94 new_primMulInt(Neg(x0), Pos(x1)) 24.35/9.94 new_esEs26(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_esEs21(x0, x1, ty_Double) 24.35/9.94 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.94 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 24.35/9.94 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 24.35/9.94 new_lt5(x0, x1, ty_Char) 24.35/9.94 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 24.35/9.94 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.35/9.94 new_esEs19(x0, x1, ty_@0) 24.35/9.94 new_esEs28(x0, x1, ty_Integer) 24.35/9.94 new_lt20(x0, x1, ty_Integer) 24.35/9.94 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 24.35/9.94 new_compare32(x0, x1, app(ty_[], x2)) 24.35/9.94 new_esEs10(False, True) 24.35/9.94 new_esEs10(True, False) 24.35/9.94 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 24.35/9.94 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_esEs24(x0, x1, ty_Float) 24.35/9.94 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.94 new_esEs18(x0, x1, ty_Ordering) 24.35/9.94 new_esEs28(x0, x1, ty_Ordering) 24.35/9.94 new_lt5(x0, x1, ty_Int) 24.35/9.94 new_esEs25(x0, x1, ty_Bool) 24.35/9.94 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.35/9.94 new_esEs27(x0, x1, ty_@0) 24.35/9.94 new_esEs26(x0, x1, app(ty_[], x2)) 24.35/9.94 new_esEs5(Just(x0), Just(x1), ty_Bool) 24.35/9.94 new_compare32(x0, x1, app(ty_Maybe, x2)) 24.35/9.94 new_primCmpNat0(Zero, Zero) 24.35/9.94 new_compare18(x0, x1, False) 24.35/9.94 new_asAs(False, x0) 24.35/9.94 new_compare23(Left(x0), Left(x1), False, x2, x3) 24.35/9.94 24.35/9.94 We have to consider all minimal (P,Q,R)-chains. 24.35/9.94 ---------------------------------------- 24.35/9.94 24.35/9.94 (27) QDPSizeChangeProof (EQUIVALENT) 24.35/9.94 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. 24.35/9.94 24.35/9.94 From the DPs we obtained the following set of size-change graphs: 24.35/9.94 *new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, h, ba, bb) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs17(new_compare23(Left(xuu22), Left(xuu17), new_esEs29(xuu22, xuu17, h), h, ba), GT), h, ba, bb) 24.35/9.94 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 10, 11 >= 11, 12 >= 12 24.35/9.94 24.35/9.94 24.35/9.94 *new_addToFM_C20(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, bc, bd, be) -> new_addToFM_C(xuu3, xuu43, Left(xuu5000), xuu501, bc, bd, be) 24.35/9.94 The graph contains the following edges 1 >= 1, 5 >= 2, 8 >= 4, 10 >= 5, 11 >= 6, 12 >= 7 24.35/9.94 24.35/9.94 24.35/9.94 *new_addToFM_C20(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, False, bc, bd, be) -> new_addToFM_C10(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Left(xuu5000), Right(xuu400), False, bc, bd), GT), bc, bd, be) 24.35/9.94 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 10, 11 >= 11, 12 >= 12 24.35/9.94 24.35/9.94 24.35/9.94 *new_addToFM_C(xuu3, Branch(Right(xuu400), xuu41, xuu42, xuu43, xuu44), Left(xuu5000), xuu501, bc, bd, be) -> new_addToFM_C20(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Left(xuu5000), Right(xuu400), False, bc, bd), LT), bc, bd, be) 24.35/9.94 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 2 > 6, 3 > 7, 4 >= 8, 5 >= 10, 6 >= 11, 7 >= 12 24.35/9.94 24.35/9.94 24.35/9.94 *new_addToFM_C(xuu3, Branch(Left(xuu400), xuu41, xuu42, xuu43, xuu44), Left(xuu5000), xuu501, bc, bd, be) -> new_addToFM_C2(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, new_esEs17(new_compare23(Left(xuu5000), Left(xuu400), new_esEs30(xuu5000, xuu400, bc), bc, bd), LT), bc, bd, be) 24.35/9.94 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 2 > 6, 3 > 7, 4 >= 8, 5 >= 10, 6 >= 11, 7 >= 12 24.35/9.94 24.35/9.94 24.35/9.94 *new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu16, xuu20, Left(xuu22), xuu23, h, ba, bb) 24.35/9.94 The graph contains the following edges 1 >= 1, 5 >= 2, 8 >= 4, 10 >= 5, 11 >= 6, 12 >= 7 24.35/9.94 24.35/9.94 24.35/9.94 *new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba, bb) -> new_addToFM_C(xuu16, xuu21, Left(xuu22), xuu23, h, ba, bb) 24.35/9.94 The graph contains the following edges 1 >= 1, 6 >= 2, 8 >= 4, 10 >= 5, 11 >= 6, 12 >= 7 24.35/9.94 24.35/9.94 24.35/9.94 *new_addToFM_C10(xuu3, xuu400, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu501, True, bc, bd, be) -> new_addToFM_C(xuu3, xuu44, Left(xuu5000), xuu501, bc, bd, be) 24.35/9.94 The graph contains the following edges 1 >= 1, 6 >= 2, 8 >= 4, 10 >= 5, 11 >= 6, 12 >= 7 24.35/9.94 24.35/9.94 24.35/9.94 ---------------------------------------- 24.35/9.94 24.35/9.94 (28) 24.35/9.94 YES 24.35/9.94 24.35/9.94 ---------------------------------------- 24.35/9.94 24.35/9.94 (29) 24.35/9.94 Obligation: 24.35/9.94 Q DP problem: 24.35/9.94 The TRS P consists of the following rules: 24.35/9.94 24.35/9.94 new_foldl(xuu3, :(xuu50, xuu51), h, ba, bb) -> new_foldl(xuu3, xuu51, h, ba, bb) 24.35/9.94 24.35/9.94 R is empty. 24.35/9.94 Q is empty. 24.35/9.94 We have to consider all minimal (P,Q,R)-chains. 24.35/9.94 ---------------------------------------- 24.35/9.94 24.35/9.94 (30) QDPSizeChangeProof (EQUIVALENT) 24.35/9.94 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. 24.35/9.94 24.35/9.94 From the DPs we obtained the following set of size-change graphs: 24.35/9.94 *new_foldl(xuu3, :(xuu50, xuu51), h, ba, bb) -> new_foldl(xuu3, xuu51, h, ba, bb) 24.35/9.94 The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3, 4 >= 4, 5 >= 5 24.35/9.94 24.35/9.94 24.35/9.94 ---------------------------------------- 24.35/9.94 24.35/9.94 (31) 24.35/9.94 YES 24.35/9.94 24.35/9.94 ---------------------------------------- 24.35/9.94 24.35/9.94 (32) 24.35/9.94 Obligation: 24.35/9.94 Q DP problem: 24.35/9.94 The TRS P consists of the following rules: 24.35/9.94 24.35/9.94 new_primMulNat(Succ(xuu5000000), Succ(xuu400100)) -> new_primMulNat(xuu5000000, Succ(xuu400100)) 24.35/9.94 24.35/9.94 R is empty. 24.35/9.94 Q is empty. 24.35/9.94 We have to consider all minimal (P,Q,R)-chains. 24.35/9.94 ---------------------------------------- 24.35/9.94 24.35/9.94 (33) QDPSizeChangeProof (EQUIVALENT) 24.35/9.94 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. 24.35/9.94 24.35/9.94 From the DPs we obtained the following set of size-change graphs: 24.35/9.94 *new_primMulNat(Succ(xuu5000000), Succ(xuu400100)) -> new_primMulNat(xuu5000000, Succ(xuu400100)) 24.35/9.94 The graph contains the following edges 1 > 1, 2 >= 2 24.35/9.94 24.35/9.94 24.35/9.94 ---------------------------------------- 24.35/9.94 24.35/9.94 (34) 24.35/9.94 YES 24.35/9.94 24.35/9.94 ---------------------------------------- 24.35/9.94 24.35/9.94 (35) 24.35/9.94 Obligation: 24.35/9.94 Q DP problem: 24.35/9.94 The TRS P consists of the following rules: 24.35/9.94 24.35/9.94 new_primCompAux(xuu52000, xuu53000, xuu211, app(ty_[], bee)) -> new_compare0(xuu52000, xuu53000, bee) 24.35/9.94 new_primCompAux(xuu52000, xuu53000, xuu211, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare5(xuu52000, xuu53000, bfc, bfd, bfe) 24.35/9.94 new_ltEs1(Just(xuu52000), Just(xuu53000), app(app(ty_Either, dh), ea)) -> new_ltEs0(xuu52000, xuu53000, dh, ea) 24.35/9.94 new_compare21(xuu52000, xuu53000, False, gh, ha) -> new_ltEs2(xuu52000, xuu53000, gh, ha) 24.35/9.94 new_compare2(Left(Right(xuu52000)), Left(Right(xuu53000)), False, app(app(ty_Either, cd), app(app(ty_@2, db), dc)), ba) -> new_ltEs2(xuu52000, xuu53000, db, dc) 24.35/9.94 new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), app(app(ty_@2, gh), ha), gd) -> new_compare21(xuu52000, xuu53000, new_esEs6(xuu52000, xuu53000, gh, ha), gh, ha) 24.35/9.94 new_compare2(Left(Left(xuu52000)), Left(Left(xuu53000)), False, app(app(ty_Either, app(app(ty_@2, bg), bh)), bc), ba) -> new_ltEs2(xuu52000, xuu53000, bg, bh) 24.35/9.94 new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), app(app(ty_@2, bcf), bcg), hf, bba) -> new_lt2(xuu52000, xuu53000, bcf, bcg) 24.35/9.94 new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, app(ty_[], bah), bba) -> new_lt(xuu52001, xuu53001, bah) 24.35/9.94 new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, eh), app(app(ty_Either, fb), fc)), ba) -> new_ltEs0(xuu52001, xuu53001, fb, fc) 24.35/9.94 new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, app(app(ty_@2, bcf), bcg)), hf), bba), ba) -> new_lt2(xuu52000, xuu53000, bcf, bcg) 24.35/9.94 new_compare20(xuu52000, xuu53000, False, gg) -> new_ltEs1(xuu52000, xuu53000, gg) 24.35/9.94 new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bch), bda), bdb)), hf), bba), ba) -> new_lt3(xuu52000, xuu53000, bch, bda, bdb) 24.35/9.94 new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), app(ty_Maybe, bce), hf, bba) -> new_lt1(xuu52000, xuu53000, bce) 24.35/9.94 new_compare2(Left(:(xuu52000, xuu52001)), Left(:(xuu53000, xuu53001)), False, app(ty_[], h), ba) -> new_primCompAux(xuu52000, xuu53000, new_compare(xuu52001, xuu53001, h), h) 24.35/9.94 new_compare2(Left(Left(xuu52000)), Left(Left(xuu53000)), False, app(app(ty_Either, app(ty_Maybe, bf)), bc), ba) -> new_ltEs1(xuu52000, xuu53000, bf) 24.35/9.94 new_ltEs0(Right(xuu52000), Right(xuu53000), cd, app(app(app(ty_@3, dd), de), df)) -> new_ltEs3(xuu52000, xuu53000, dd, de, df) 24.35/9.94 new_ltEs1(Just(xuu52000), Just(xuu53000), app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs3(xuu52000, xuu53000, ee, ef, eg) 24.35/9.94 new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), hf), app(app(app(ty_@3, bae), baf), bag)), ba) -> new_ltEs3(xuu52002, xuu53002, bae, baf, bag) 24.35/9.94 new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, eh), app(ty_[], fa)), ba) -> new_ltEs(xuu52001, xuu53001, fa) 24.35/9.94 new_compare2(Right(xuu5200), Right(xuu5300), False, bdc, app(ty_[], bdd)) -> new_ltEs(xuu5200, xuu5300, bdd) 24.35/9.94 new_ltEs1(Just(xuu52000), Just(xuu53000), app(app(ty_@2, ec), ed)) -> new_ltEs2(xuu52000, xuu53000, ec, ed) 24.35/9.94 new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), app(ty_Maybe, gg), gd) -> new_compare20(xuu52000, xuu53000, new_esEs5(xuu52000, xuu53000, gg), gg) 24.35/9.94 new_compare2(Left(Right(xuu52000)), Left(Right(xuu53000)), False, app(app(ty_Either, cd), app(app(ty_Either, cf), cg)), ba) -> new_ltEs0(xuu52000, xuu53000, cf, cg) 24.35/9.94 new_ltEs0(Right(xuu52000), Right(xuu53000), cd, app(ty_[], ce)) -> new_ltEs(xuu52000, xuu53000, ce) 24.35/9.94 new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, hf, app(app(ty_@2, bac), bad)) -> new_ltEs2(xuu52002, xuu53002, bac, bad) 24.35/9.94 new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), eh, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs3(xuu52001, xuu53001, fh, ga, gb) 24.35/9.94 new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, eh), app(app(app(ty_@3, fh), ga), gb)), ba) -> new_ltEs3(xuu52001, xuu53001, fh, ga, gb) 24.35/9.94 new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), app(ty_[], gc), gd) -> new_compare0(xuu52000, xuu53000, gc) 24.35/9.94 new_compare2(Left(Right(xuu52000)), Left(Right(xuu53000)), False, app(app(ty_Either, cd), app(app(app(ty_@3, dd), de), df)), ba) -> new_ltEs3(xuu52000, xuu53000, dd, de, df) 24.35/9.94 new_compare4(xuu52000, xuu53000, gh, ha) -> new_compare21(xuu52000, xuu53000, new_esEs6(xuu52000, xuu53000, gh, ha), gh, ha) 24.35/9.94 new_compare2(Left(Right(xuu52000)), Left(Right(xuu53000)), False, app(app(ty_Either, cd), app(ty_[], ce)), ba) -> new_ltEs(xuu52000, xuu53000, ce) 24.35/9.94 new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), eh, app(ty_Maybe, fd)) -> new_ltEs1(xuu52001, xuu53001, fd) 24.35/9.94 new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), app(app(ty_@2, bbe), bbf)), bba), ba) -> new_lt2(xuu52001, xuu53001, bbe, bbf) 24.35/9.94 new_compare2(Left(Left(xuu52000)), Left(Left(xuu53000)), False, app(app(ty_Either, app(app(ty_Either, bd), be)), bc), ba) -> new_ltEs0(xuu52000, xuu53000, bd, be) 24.35/9.94 new_ltEs(:(xuu52000, xuu52001), :(xuu53000, xuu53001), h) -> new_compare0(xuu52001, xuu53001, h) 24.35/9.94 new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), app(app(app(ty_@3, hb), hc), hd), gd) -> new_compare22(xuu52000, xuu53000, new_esEs7(xuu52000, xuu53000, hb, hc, hd), hb, hc, hd) 24.35/9.94 new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, hf, app(app(app(ty_@3, bae), baf), bag)) -> new_ltEs3(xuu52002, xuu53002, bae, baf, bag) 24.35/9.94 new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), hf), app(ty_Maybe, bab)), ba) -> new_ltEs1(xuu52002, xuu53002, bab) 24.35/9.94 new_compare22(xuu52000, xuu53000, False, hb, hc, hd) -> new_ltEs3(xuu52000, xuu53000, hb, hc, hd) 24.35/9.94 new_compare2(Right(xuu5200), Right(xuu5300), False, bdc, app(ty_Maybe, bdg)) -> new_ltEs1(xuu5200, xuu5300, bdg) 24.35/9.94 new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, app(app(ty_Either, bcc), bcd)), hf), bba), ba) -> new_lt0(xuu52000, xuu53000, bcc, bcd) 24.35/9.94 new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, app(app(ty_@2, gh), ha)), gd), ba) -> new_compare21(xuu52000, xuu53000, new_esEs6(xuu52000, xuu53000, gh, ha), gh, ha) 24.35/9.94 new_ltEs0(Left(xuu52000), Left(xuu53000), app(ty_[], bb), bc) -> new_ltEs(xuu52000, xuu53000, bb) 24.35/9.94 new_compare2(Left(Just(xuu52000)), Left(Just(xuu53000)), False, app(ty_Maybe, app(ty_Maybe, eb)), ba) -> new_ltEs1(xuu52000, xuu53000, eb) 24.35/9.94 new_primCompAux(xuu52000, xuu53000, xuu211, app(app(ty_Either, bef), beg)) -> new_compare1(xuu52000, xuu53000, bef, beg) 24.35/9.94 new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), eh, app(app(ty_Either, fb), fc)) -> new_ltEs0(xuu52001, xuu53001, fb, fc) 24.35/9.94 new_compare5(xuu52000, xuu53000, hb, hc, hd) -> new_compare22(xuu52000, xuu53000, new_esEs7(xuu52000, xuu53000, hb, hc, hd), hb, hc, hd) 24.35/9.94 new_compare2(Left(Just(xuu52000)), Left(Just(xuu53000)), False, app(ty_Maybe, app(app(ty_Either, dh), ea)), ba) -> new_ltEs0(xuu52000, xuu53000, dh, ea) 24.35/9.94 new_ltEs(:(xuu52000, xuu52001), :(xuu53000, xuu53001), h) -> new_primCompAux(xuu52000, xuu53000, new_compare(xuu52001, xuu53001, h), h) 24.35/9.94 new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), app(app(app(ty_@3, bch), bda), bdb), hf, bba) -> new_lt3(xuu52000, xuu53000, bch, bda, bdb) 24.35/9.94 new_compare0(:(xuu52000, xuu52001), :(xuu53000, xuu53001), h) -> new_compare0(xuu52001, xuu53001, h) 24.35/9.94 new_lt3(xuu52000, xuu53000, hb, hc, hd) -> new_compare22(xuu52000, xuu53000, new_esEs7(xuu52000, xuu53000, hb, hc, hd), hb, hc, hd) 24.35/9.94 new_ltEs1(Just(xuu52000), Just(xuu53000), app(ty_Maybe, eb)) -> new_ltEs1(xuu52000, xuu53000, eb) 24.35/9.94 new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, app(ty_Maybe, bce)), hf), bba), ba) -> new_lt1(xuu52000, xuu53000, bce) 24.35/9.94 new_compare2(Right(xuu5200), Right(xuu5300), False, bdc, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs3(xuu5200, xuu5300, beb, bec, bed) 24.35/9.94 new_lt0(xuu52000, xuu53000, ge, gf) -> new_compare2(xuu52000, xuu53000, new_esEs4(xuu52000, xuu53000, ge, gf), ge, gf) 24.35/9.94 new_ltEs0(Left(xuu52000), Left(xuu53000), app(ty_Maybe, bf), bc) -> new_ltEs1(xuu52000, xuu53000, bf) 24.35/9.94 new_compare2(Right(xuu5200), Right(xuu5300), False, bdc, app(app(ty_@2, bdh), bea)) -> new_ltEs2(xuu5200, xuu5300, bdh, bea) 24.35/9.94 new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, hf, app(ty_Maybe, bab)) -> new_ltEs1(xuu52002, xuu53002, bab) 24.35/9.94 new_primCompAux(xuu52000, xuu53000, xuu211, app(ty_Maybe, beh)) -> new_compare3(xuu52000, xuu53000, beh) 24.35/9.94 new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), app(ty_[], bah)), bba), ba) -> new_lt(xuu52001, xuu53001, bah) 24.35/9.94 new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), app(app(ty_Either, bbb), bbc)), bba), ba) -> new_lt0(xuu52001, xuu53001, bbb, bbc) 24.35/9.94 new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), eh, app(ty_[], fa)) -> new_ltEs(xuu52001, xuu53001, fa) 24.35/9.94 new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, app(ty_Maybe, bbd), bba) -> new_lt1(xuu52001, xuu53001, bbd) 24.35/9.94 new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), app(ty_[], bcb), hf, bba) -> new_lt(xuu52000, xuu53000, bcb) 24.35/9.94 new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, app(ty_Maybe, gg)), gd), ba) -> new_compare20(xuu52000, xuu53000, new_esEs5(xuu52000, xuu53000, gg), gg) 24.35/9.94 new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), hf), app(app(ty_@2, bac), bad)), ba) -> new_ltEs2(xuu52002, xuu53002, bac, bad) 24.35/9.94 new_compare2(Left(Right(xuu52000)), Left(Right(xuu53000)), False, app(app(ty_Either, cd), app(ty_Maybe, da)), ba) -> new_ltEs1(xuu52000, xuu53000, da) 24.35/9.94 new_ltEs0(Right(xuu52000), Right(xuu53000), cd, app(ty_Maybe, da)) -> new_ltEs1(xuu52000, xuu53000, da) 24.35/9.94 new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, app(app(app(ty_@3, hb), hc), hd)), gd), ba) -> new_compare22(xuu52000, xuu53000, new_esEs7(xuu52000, xuu53000, hb, hc, hd), hb, hc, hd) 24.35/9.94 new_ltEs0(Left(xuu52000), Left(xuu53000), app(app(ty_@2, bg), bh), bc) -> new_ltEs2(xuu52000, xuu53000, bg, bh) 24.35/9.94 new_ltEs0(Right(xuu52000), Right(xuu53000), cd, app(app(ty_Either, cf), cg)) -> new_ltEs0(xuu52000, xuu53000, cf, cg) 24.35/9.94 new_compare2(Left(Just(xuu52000)), Left(Just(xuu53000)), False, app(ty_Maybe, app(app(ty_@2, ec), ed)), ba) -> new_ltEs2(xuu52000, xuu53000, ec, ed) 24.35/9.94 new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), app(app(ty_Either, ge), gf), gd) -> new_compare2(xuu52000, xuu53000, new_esEs4(xuu52000, xuu53000, ge, gf), ge, gf) 24.35/9.94 new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), app(ty_Maybe, bbd)), bba), ba) -> new_lt1(xuu52001, xuu53001, bbd) 24.35/9.94 new_ltEs0(Left(xuu52000), Left(xuu53000), app(app(ty_Either, bd), be), bc) -> new_ltEs0(xuu52000, xuu53000, bd, be) 24.35/9.94 new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), hf), app(ty_[], hg)), ba) -> new_ltEs(xuu52002, xuu53002, hg) 24.35/9.94 new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, app(app(ty_Either, bbb), bbc), bba) -> new_lt0(xuu52001, xuu53001, bbb, bbc) 24.35/9.94 new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, eh), app(ty_Maybe, fd)), ba) -> new_ltEs1(xuu52001, xuu53001, fd) 24.35/9.94 new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, app(ty_[], bcb)), hf), bba), ba) -> new_lt(xuu52000, xuu53000, bcb) 24.35/9.94 new_compare2(Left(Left(xuu52000)), Left(Left(xuu53000)), False, app(app(ty_Either, app(ty_[], bb)), bc), ba) -> new_ltEs(xuu52000, xuu53000, bb) 24.35/9.94 new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), eh, app(app(ty_@2, ff), fg)) -> new_ltEs2(xuu52001, xuu53001, ff, fg) 24.35/9.94 new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), hf), app(app(ty_Either, hh), baa)), ba) -> new_ltEs0(xuu52002, xuu53002, hh, baa) 24.35/9.94 new_compare0(:(xuu52000, xuu52001), :(xuu53000, xuu53001), h) -> new_primCompAux(xuu52000, xuu53000, new_compare(xuu52001, xuu53001, h), h) 24.35/9.94 new_compare2(Left(Just(xuu52000)), Left(Just(xuu53000)), False, app(ty_Maybe, app(app(app(ty_@3, ee), ef), eg)), ba) -> new_ltEs3(xuu52000, xuu53000, ee, ef, eg) 24.35/9.94 new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, hf, app(ty_[], hg)) -> new_ltEs(xuu52002, xuu53002, hg) 24.35/9.94 new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, hf, app(app(ty_Either, hh), baa)) -> new_ltEs0(xuu52002, xuu53002, hh, baa) 24.35/9.94 new_lt(xuu52000, xuu53000, gc) -> new_compare0(xuu52000, xuu53000, gc) 24.35/9.94 new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, app(app(ty_@2, bbe), bbf), bba) -> new_lt2(xuu52001, xuu53001, bbe, bbf) 24.35/9.94 new_primCompAux(xuu52000, xuu53000, xuu211, app(app(ty_@2, bfa), bfb)) -> new_compare4(xuu52000, xuu53000, bfa, bfb) 24.35/9.94 new_lt1(xuu52000, xuu53000, gg) -> new_compare20(xuu52000, xuu53000, new_esEs5(xuu52000, xuu53000, gg), gg) 24.35/9.94 new_lt2(xuu52000, xuu53000, gh, ha) -> new_compare21(xuu52000, xuu53000, new_esEs6(xuu52000, xuu53000, gh, ha), gh, ha) 24.35/9.94 new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), app(app(ty_Either, bcc), bcd), hf, bba) -> new_lt0(xuu52000, xuu53000, bcc, bcd) 24.35/9.94 new_compare2(Right(xuu5200), Right(xuu5300), False, bdc, app(app(ty_Either, bde), bdf)) -> new_ltEs0(xuu5200, xuu5300, bde, bdf) 24.35/9.94 new_ltEs0(Left(xuu52000), Left(xuu53000), app(app(app(ty_@3, ca), cb), cc), bc) -> new_ltEs3(xuu52000, xuu53000, ca, cb, cc) 24.35/9.94 new_compare2(Left(:(xuu52000, xuu52001)), Left(:(xuu53000, xuu53001)), False, app(ty_[], h), ba) -> new_compare0(xuu52001, xuu53001, h) 24.35/9.94 new_ltEs0(Right(xuu52000), Right(xuu53000), cd, app(app(ty_@2, db), dc)) -> new_ltEs2(xuu52000, xuu53000, db, dc) 24.35/9.94 new_compare2(Left(Left(xuu52000)), Left(Left(xuu53000)), False, app(app(ty_Either, app(app(app(ty_@3, ca), cb), cc)), bc), ba) -> new_ltEs3(xuu52000, xuu53000, ca, cb, cc) 24.35/9.94 new_ltEs1(Just(xuu52000), Just(xuu53000), app(ty_[], dg)) -> new_ltEs(xuu52000, xuu53000, dg) 24.35/9.94 new_compare2(Left(Just(xuu52000)), Left(Just(xuu53000)), False, app(ty_Maybe, app(ty_[], dg)), ba) -> new_ltEs(xuu52000, xuu53000, dg) 24.35/9.94 new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), app(app(app(ty_@3, bbg), bbh), bca)), bba), ba) -> new_lt3(xuu52001, xuu53001, bbg, bbh, bca) 24.35/9.94 new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, app(ty_[], gc)), gd), ba) -> new_compare0(xuu52000, xuu53000, gc) 24.35/9.94 new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, app(app(ty_Either, ge), gf)), gd), ba) -> new_compare2(xuu52000, xuu53000, new_esEs4(xuu52000, xuu53000, ge, gf), ge, gf) 24.35/9.94 new_compare3(xuu52000, xuu53000, gg) -> new_compare20(xuu52000, xuu53000, new_esEs5(xuu52000, xuu53000, gg), gg) 24.35/9.94 new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, eh), app(app(ty_@2, ff), fg)), ba) -> new_ltEs2(xuu52001, xuu53001, ff, fg) 24.35/9.94 new_compare1(xuu52000, xuu53000, ge, gf) -> new_compare2(xuu52000, xuu53000, new_esEs4(xuu52000, xuu53000, ge, gf), ge, gf) 24.35/9.94 new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, app(app(app(ty_@3, bbg), bbh), bca), bba) -> new_lt3(xuu52001, xuu53001, bbg, bbh, bca) 24.35/9.94 24.35/9.94 The TRS R consists of the following rules: 24.35/9.94 24.35/9.94 new_lt20(xuu52000, xuu53000, ty_Double) -> new_lt12(xuu52000, xuu53000) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, app(ty_[], fa)) -> new_ltEs11(xuu52001, xuu53001, fa) 24.35/9.94 new_esEs20(xuu50001, xuu4001, ty_Int) -> new_esEs12(xuu50001, xuu4001) 24.35/9.94 new_ltEs20(xuu5200, xuu5300, app(ty_[], bdd)) -> new_ltEs11(xuu5200, xuu5300, bdd) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), chb, ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.35/9.94 new_compare32(xuu52000, xuu53000, app(app(ty_Either, bef), beg)) -> new_compare9(xuu52000, xuu53000, bef, beg) 24.35/9.94 new_compare16(Double(xuu52000, Pos(xuu520010)), Double(xuu53000, Pos(xuu530010))) -> new_compare8(new_sr0(xuu52000, Pos(xuu530010)), new_sr0(Pos(xuu520010), xuu53000)) 24.35/9.94 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 24.35/9.94 new_primCmpInt(Neg(Succ(xuu5200)), Pos(xuu530)) -> LT 24.35/9.94 new_primPlusNat0(Zero, Zero) -> Zero 24.35/9.94 new_pePe(True, xuu210) -> True 24.35/9.94 new_ltEs4(xuu5200, xuu5300, bhc) -> new_fsEs(new_compare7(xuu5200, xuu5300, bhc)) 24.35/9.94 new_esEs27(xuu50000, xuu4000, ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), chb, ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.35/9.94 new_esEs21(xuu50002, xuu4002, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs7(xuu50002, xuu4002, cce, ccf, ccg) 24.35/9.94 new_compare112(xuu52000, xuu53000, True, gg) -> LT 24.35/9.94 new_lt8(xuu520, xuu530) -> new_esEs17(new_compare8(xuu520, xuu530), LT) 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), app(ty_Maybe, eb)) -> new_ltEs13(xuu52000, xuu53000, eb) 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), cd, ty_Double) -> new_ltEs14(xuu52000, xuu53000) 24.35/9.94 new_compare(:(xuu52000, xuu52001), [], h) -> GT 24.35/9.94 new_esEs4(Left(xuu50000), Right(xuu4000), chb, cfg) -> False 24.35/9.94 new_esEs4(Right(xuu50000), Left(xuu4000), chb, cfg) -> False 24.35/9.94 new_esEs25(xuu52000, xuu53000, app(ty_[], bcb)) -> new_esEs13(xuu52000, xuu53000, bcb) 24.35/9.94 new_esEs25(xuu52000, xuu53000, ty_Ordering) -> new_esEs17(xuu52000, xuu53000) 24.35/9.94 new_compare25(xuu52000, xuu53000, False) -> new_compare111(xuu52000, xuu53000, new_ltEs8(xuu52000, xuu53000)) 24.35/9.94 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 24.35/9.94 new_primCmpInt(Pos(Zero), Neg(Succ(xuu5300))) -> GT 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), app(ty_Maybe, bf), bc) -> new_ltEs13(xuu52000, xuu53000, bf) 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), cd, app(app(ty_@2, db), dc)) -> new_ltEs6(xuu52000, xuu53000, db, dc) 24.35/9.94 new_esEs21(xuu50002, xuu4002, app(app(ty_@2, cdc), cdd)) -> new_esEs6(xuu50002, xuu4002, cdc, cdd) 24.35/9.94 new_lt19(xuu52001, xuu53001, app(app(ty_Either, bbb), bbc)) -> new_lt10(xuu52001, xuu53001, bbb, bbc) 24.35/9.94 new_primCmpInt(Neg(Succ(xuu5200)), Neg(xuu530)) -> new_primCmpNat0(xuu530, Succ(xuu5200)) 24.35/9.94 new_ltEs12(Left(xuu52000), Right(xuu53000), cd, bc) -> True 24.35/9.94 new_esEs20(xuu50001, xuu4001, ty_Double) -> new_esEs11(xuu50001, xuu4001) 24.35/9.94 new_esEs20(xuu50001, xuu4001, app(ty_Ratio, cbf)) -> new_esEs9(xuu50001, xuu4001, cbf) 24.35/9.94 new_esEs10(False, True) -> False 24.35/9.94 new_esEs10(True, False) -> False 24.35/9.94 new_primMulNat0(Succ(xuu5000000), Succ(xuu400100)) -> new_primPlusNat1(new_primMulNat0(xuu5000000, Succ(xuu400100)), xuu400100) 24.35/9.94 new_ltEs14(xuu5200, xuu5300) -> new_fsEs(new_compare16(xuu5200, xuu5300)) 24.35/9.94 new_compare18(xuu52000, xuu53000, True) -> LT 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs17(xuu52000, xuu53000, ee, ef, eg) 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), cd, app(app(app(ty_@3, dd), de), df)) -> new_ltEs17(xuu52000, xuu53000, dd, de, df) 24.35/9.94 new_esEs19(xuu50000, xuu4000, ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.35/9.94 new_esEs27(xuu50000, xuu4000, ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.35/9.94 new_ltEs20(xuu5200, xuu5300, ty_Char) -> new_ltEs18(xuu5200, xuu5300) 24.35/9.94 new_ltEs18(xuu5200, xuu5300) -> new_fsEs(new_compare12(xuu5200, xuu5300)) 24.35/9.94 new_esEs25(xuu52000, xuu53000, ty_Double) -> new_esEs11(xuu52000, xuu53000) 24.35/9.94 new_primCompAux0(xuu224, GT) -> GT 24.35/9.94 new_esEs15(Float(xuu50000, xuu50001), Float(xuu4000, xuu4001)) -> new_esEs12(new_sr0(xuu50000, xuu4001), new_sr0(xuu50001, xuu4000)) 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), cd, ty_@0) -> new_ltEs15(xuu52000, xuu53000) 24.35/9.94 new_esEs21(xuu50002, xuu4002, app(ty_[], cda)) -> new_esEs13(xuu50002, xuu4002, cda) 24.35/9.94 new_esEs19(xuu50000, xuu4000, ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, app(ty_[], h)) -> new_ltEs11(xuu5200, xuu5300, h) 24.35/9.94 new_primEqInt(Pos(Succ(xuu500000)), Pos(Zero)) -> False 24.35/9.94 new_primEqInt(Pos(Zero), Pos(Succ(xuu40000))) -> False 24.35/9.94 new_esEs17(LT, LT) -> True 24.35/9.94 new_esEs19(xuu50000, xuu4000, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, app(app(ty_@2, eh), gd)) -> new_ltEs6(xuu5200, xuu5300, eh, gd) 24.35/9.94 new_primEqNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 24.35/9.94 new_esEs27(xuu50000, xuu4000, ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.35/9.94 new_esEs26(xuu52001, xuu53001, ty_Integer) -> new_esEs14(xuu52001, xuu53001) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, ty_Ordering) -> new_ltEs8(xuu52001, xuu53001) 24.35/9.94 new_esEs19(xuu50000, xuu4000, ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.35/9.94 new_compare32(xuu52000, xuu53000, app(ty_Maybe, beh)) -> new_compare28(xuu52000, xuu53000, beh) 24.35/9.94 new_primCompAux0(xuu224, LT) -> LT 24.35/9.94 new_esEs25(xuu52000, xuu53000, ty_Float) -> new_esEs15(xuu52000, xuu53000) 24.35/9.94 new_lt13(xuu52000, xuu53000) -> new_esEs17(new_compare13(xuu52000, xuu53000), LT) 24.35/9.94 new_compare31(Float(xuu52000, Pos(xuu520010)), Float(xuu53000, Pos(xuu530010))) -> new_compare8(new_sr0(xuu52000, Pos(xuu530010)), new_sr0(Pos(xuu520010), xuu53000)) 24.35/9.94 new_not(True) -> False 24.35/9.94 new_primCmpNat0(Zero, Zero) -> EQ 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Ordering, bc) -> new_ltEs8(xuu52000, xuu53000) 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Char, bc) -> new_ltEs18(xuu52000, xuu53000) 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Integer) -> new_ltEs9(xuu52000, xuu53000) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.35/9.94 new_esEs25(xuu52000, xuu53000, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs7(xuu52000, xuu53000, bch, bda, bdb) 24.35/9.94 new_esEs25(xuu52000, xuu53000, ty_Int) -> new_esEs12(xuu52000, xuu53000) 24.35/9.94 new_esEs20(xuu50001, xuu4001, ty_Ordering) -> new_esEs17(xuu50001, xuu4001) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, ty_Char) -> new_ltEs18(xuu5200, xuu5300) 24.35/9.94 new_esEs8(@0, @0) -> True 24.35/9.94 new_lt6(xuu52000, xuu53000) -> new_esEs17(new_compare14(xuu52000, xuu53000), LT) 24.35/9.94 new_compare7(:%(xuu52000, xuu52001), :%(xuu53000, xuu53001), ty_Int) -> new_compare8(new_sr0(xuu52000, xuu53001), new_sr0(xuu53000, xuu52001)) 24.35/9.94 new_compare32(xuu52000, xuu53000, ty_Char) -> new_compare12(xuu52000, xuu53000) 24.35/9.94 new_primEqNat0(Succ(xuu500000), Zero) -> False 24.35/9.94 new_primEqNat0(Zero, Succ(xuu40000)) -> False 24.35/9.94 new_esEs19(xuu50000, xuu4000, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs7(xuu50000, xuu4000, caa, cab, cac) 24.35/9.94 new_lt19(xuu52001, xuu53001, ty_Double) -> new_lt12(xuu52001, xuu53001) 24.35/9.94 new_esEs24(xuu50000, xuu4000, ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.35/9.94 new_esEs13([], [], ced) -> True 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), chb, app(app(app(ty_@3, chc), chd), che)) -> new_esEs7(xuu50000, xuu4000, chc, chd, che) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), chb, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.35/9.94 new_compare8(xuu52, xuu53) -> new_primCmpInt(xuu52, xuu53) 24.35/9.94 new_compare10(xuu184, xuu185, True, bff, bfg) -> LT 24.35/9.94 new_esEs21(xuu50002, xuu4002, ty_Ordering) -> new_esEs17(xuu50002, xuu4002) 24.35/9.94 new_ltEs20(xuu5200, xuu5300, ty_Int) -> new_ltEs10(xuu5200, xuu5300) 24.35/9.94 new_compare23(Left(xuu5200), Right(xuu5300), False, bdc, ba) -> LT 24.35/9.94 new_ltEs8(GT, LT) -> False 24.35/9.94 new_lt20(xuu52000, xuu53000, app(ty_[], bcb)) -> new_lt9(xuu52000, xuu53000, bcb) 24.35/9.94 new_compare27(xuu52000, xuu53000, False, gh, ha) -> new_compare15(xuu52000, xuu53000, new_ltEs6(xuu52000, xuu53000, gh, ha), gh, ha) 24.35/9.94 new_esEs17(EQ, GT) -> False 24.35/9.94 new_esEs17(GT, EQ) -> False 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), app(app(ty_@2, cgf), cgg), cfg) -> new_esEs6(xuu50000, xuu4000, cgf, cgg) 24.35/9.94 new_lt5(xuu52000, xuu53000, app(ty_Ratio, bhd)) -> new_lt15(xuu52000, xuu53000, bhd) 24.35/9.94 new_esEs18(xuu52000, xuu53000, ty_Double) -> new_esEs11(xuu52000, xuu53000) 24.35/9.94 new_esEs26(xuu52001, xuu53001, ty_Ordering) -> new_esEs17(xuu52001, xuu53001) 24.35/9.94 new_ltEs21(xuu52002, xuu53002, ty_Float) -> new_ltEs16(xuu52002, xuu53002) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, app(app(ty_@2, ff), fg)) -> new_ltEs6(xuu52001, xuu53001, ff, fg) 24.35/9.94 new_compare15(xuu52000, xuu53000, True, gh, ha) -> LT 24.35/9.94 new_compare6(Integer(xuu52000), Integer(xuu53000)) -> new_primCmpInt(xuu52000, xuu53000) 24.35/9.94 new_esEs26(xuu52001, xuu53001, ty_Bool) -> new_esEs10(xuu52001, xuu53001) 24.35/9.94 new_primCmpInt(Pos(Succ(xuu5200)), Neg(xuu530)) -> GT 24.35/9.94 new_ltEs20(xuu5200, xuu5300, ty_Ordering) -> new_ltEs8(xuu5200, xuu5300) 24.35/9.94 new_ltEs21(xuu52002, xuu53002, app(app(ty_@2, bac), bad)) -> new_ltEs6(xuu52002, xuu53002, bac, bad) 24.35/9.94 new_compare31(Float(xuu52000, Neg(xuu520010)), Float(xuu53000, Neg(xuu530010))) -> new_compare8(new_sr0(xuu52000, Neg(xuu530010)), new_sr0(Neg(xuu520010), xuu53000)) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), chb, app(ty_[], chg)) -> new_esEs13(xuu50000, xuu4000, chg) 24.35/9.94 new_ltEs5(False, True) -> True 24.35/9.94 new_ltEs8(GT, EQ) -> False 24.35/9.94 new_compare110(xuu191, xuu192, True, cdh, cea) -> LT 24.35/9.94 new_lt11(xuu52000, xuu53000, gg) -> new_esEs17(new_compare28(xuu52000, xuu53000, gg), LT) 24.35/9.94 new_esEs26(xuu52001, xuu53001, ty_Char) -> new_esEs16(xuu52001, xuu53001) 24.35/9.94 new_esEs13(:(xuu50000, xuu50001), :(xuu4000, xuu4001), ced) -> new_asAs(new_esEs24(xuu50000, xuu4000, ced), new_esEs13(xuu50001, xuu4001, ced)) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, ty_Ordering) -> new_ltEs8(xuu5200, xuu5300) 24.35/9.94 new_primCmpNat0(Zero, Succ(xuu5300)) -> LT 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), ty_@0, cfg) -> new_esEs8(xuu50000, xuu4000) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), app(ty_[], cgd), cfg) -> new_esEs13(xuu50000, xuu4000, cgd) 24.35/9.94 new_esEs11(Double(xuu50000, xuu50001), Double(xuu4000, xuu4001)) -> new_esEs12(new_sr0(xuu50000, xuu4001), new_sr0(xuu50001, xuu4000)) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), chb, ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_@2, bgg), bgh)) -> new_esEs6(xuu50000, xuu4000, bgg, bgh) 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Bool) -> new_ltEs5(xuu52000, xuu53000) 24.35/9.94 new_esEs26(xuu52001, xuu53001, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs7(xuu52001, xuu53001, bbg, bbh, bca) 24.35/9.94 new_esEs18(xuu52000, xuu53000, ty_Int) -> new_esEs12(xuu52000, xuu53000) 24.35/9.94 new_compare24(xuu52000, xuu53000, False) -> new_compare18(xuu52000, xuu53000, new_ltEs5(xuu52000, xuu53000)) 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Double) -> new_ltEs14(xuu52000, xuu53000) 24.35/9.94 new_lt15(xuu52000, xuu53000, bhd) -> new_esEs17(new_compare7(xuu52000, xuu53000, bhd), LT) 24.35/9.94 new_esEs24(xuu50000, xuu4000, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.35/9.94 new_esEs24(xuu50000, xuu4000, app(ty_[], cfa)) -> new_esEs13(xuu50000, xuu4000, cfa) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, app(ty_Ratio, bhc)) -> new_ltEs4(xuu5200, xuu5300, bhc) 24.35/9.94 new_sr(Integer(xuu530000), Integer(xuu520010)) -> Integer(new_primMulInt(xuu530000, xuu520010)) 24.35/9.94 new_primCmpNat0(Succ(xuu5200), Zero) -> GT 24.35/9.94 new_pePe(False, xuu210) -> xuu210 24.35/9.94 new_ltEs20(xuu5200, xuu5300, app(ty_Maybe, bdg)) -> new_ltEs13(xuu5200, xuu5300, bdg) 24.35/9.94 new_esEs28(xuu50001, xuu4001, ty_Double) -> new_esEs11(xuu50001, xuu4001) 24.35/9.94 new_lt20(xuu52000, xuu53000, ty_Float) -> new_lt17(xuu52000, xuu53000) 24.35/9.94 new_lt5(xuu52000, xuu53000, app(ty_Maybe, gg)) -> new_lt11(xuu52000, xuu53000, gg) 24.35/9.94 new_compare32(xuu52000, xuu53000, ty_Bool) -> new_compare13(xuu52000, xuu53000) 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), app(ty_[], dg)) -> new_ltEs11(xuu52000, xuu53000, dg) 24.35/9.94 new_esEs21(xuu50002, xuu4002, app(ty_Ratio, cch)) -> new_esEs9(xuu50002, xuu4002, cch) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, ty_Int) -> new_ltEs10(xuu5200, xuu5300) 24.35/9.94 new_esEs25(xuu52000, xuu53000, ty_Integer) -> new_esEs14(xuu52000, xuu53000) 24.35/9.94 new_esEs21(xuu50002, xuu4002, ty_Int) -> new_esEs12(xuu50002, xuu4002) 24.35/9.94 new_esEs21(xuu50002, xuu4002, app(app(ty_Either, cde), cdf)) -> new_esEs4(xuu50002, xuu4002, cde, cdf) 24.35/9.94 new_esEs18(xuu52000, xuu53000, ty_Ordering) -> new_esEs17(xuu52000, xuu53000) 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), app(ty_[], bb), bc) -> new_ltEs11(xuu52000, xuu53000, bb) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), chb, app(ty_Maybe, chh)) -> new_esEs5(xuu50000, xuu4000, chh) 24.35/9.94 new_ltEs6(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), eh, gd) -> new_pePe(new_lt5(xuu52000, xuu53000, eh), new_asAs(new_esEs18(xuu52000, xuu53000, eh), new_ltEs7(xuu52001, xuu53001, gd))) 24.35/9.94 new_compare23(xuu520, xuu530, True, bdc, ba) -> EQ 24.35/9.94 new_esEs27(xuu50000, xuu4000, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.35/9.94 new_esEs28(xuu50001, xuu4001, app(ty_Ratio, ddc)) -> new_esEs9(xuu50001, xuu4001, ddc) 24.35/9.94 new_esEs28(xuu50001, xuu4001, ty_Char) -> new_esEs16(xuu50001, xuu4001) 24.35/9.94 new_primEqInt(Pos(Zero), Neg(Succ(xuu40000))) -> False 24.35/9.94 new_primEqInt(Neg(Zero), Pos(Succ(xuu40000))) -> False 24.35/9.94 new_compare11(xuu52000, xuu53000, True, hb, hc, hd) -> LT 24.35/9.94 new_ltEs21(xuu52002, xuu53002, ty_Char) -> new_ltEs18(xuu52002, xuu53002) 24.35/9.94 new_compare16(Double(xuu52000, Neg(xuu520010)), Double(xuu53000, Neg(xuu530010))) -> new_compare8(new_sr0(xuu52000, Neg(xuu530010)), new_sr0(Neg(xuu520010), xuu53000)) 24.35/9.94 new_esEs24(xuu50000, xuu4000, app(app(ty_@2, cfc), cfd)) -> new_esEs6(xuu50000, xuu4000, cfc, cfd) 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), app(app(ty_Either, bd), be), bc) -> new_ltEs12(xuu52000, xuu53000, bd, be) 24.35/9.94 new_esEs26(xuu52001, xuu53001, app(ty_[], bah)) -> new_esEs13(xuu52001, xuu53001, bah) 24.35/9.94 new_esEs21(xuu50002, xuu4002, app(ty_Maybe, cdb)) -> new_esEs5(xuu50002, xuu4002, cdb) 24.35/9.94 new_esEs10(False, False) -> True 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), cd, ty_Bool) -> new_ltEs5(xuu52000, xuu53000) 24.35/9.94 new_esEs5(Nothing, Nothing, bfh) -> True 24.35/9.94 new_compare32(xuu52000, xuu53000, ty_Int) -> new_compare8(xuu52000, xuu53000) 24.35/9.94 new_lt5(xuu52000, xuu53000, ty_Bool) -> new_lt13(xuu52000, xuu53000) 24.35/9.94 new_esEs17(EQ, EQ) -> True 24.35/9.94 new_esEs18(xuu52000, xuu53000, ty_Char) -> new_esEs16(xuu52000, xuu53000) 24.35/9.94 new_ltEs20(xuu5200, xuu5300, app(app(ty_@2, bdh), bea)) -> new_ltEs6(xuu5200, xuu5300, bdh, bea) 24.35/9.94 new_primEqInt(Neg(Succ(xuu500000)), Neg(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 24.35/9.94 new_esEs5(Nothing, Just(xuu4000), bfh) -> False 24.35/9.94 new_esEs5(Just(xuu50000), Nothing, bfh) -> False 24.35/9.94 new_esEs23(xuu50001, xuu4001, ty_Int) -> new_esEs12(xuu50001, xuu4001) 24.35/9.94 new_esEs17(LT, EQ) -> False 24.35/9.94 new_esEs17(EQ, LT) -> False 24.35/9.94 new_lt19(xuu52001, xuu53001, ty_Bool) -> new_lt13(xuu52001, xuu53001) 24.35/9.94 new_primCmpInt(Neg(Zero), Pos(Succ(xuu5300))) -> LT 24.35/9.94 new_ltEs20(xuu5200, xuu5300, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs17(xuu5200, xuu5300, beb, bec, bed) 24.35/9.94 new_ltEs16(xuu5200, xuu5300) -> new_fsEs(new_compare31(xuu5200, xuu5300)) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Int, cfg) -> new_esEs12(xuu50000, xuu4000) 24.35/9.94 new_lt5(xuu52000, xuu53000, ty_Float) -> new_lt17(xuu52000, xuu53000) 24.35/9.94 new_ltEs10(xuu5200, xuu5300) -> new_fsEs(new_compare8(xuu5200, xuu5300)) 24.35/9.94 new_primMulInt(Pos(xuu500000), Pos(xuu40010)) -> Pos(new_primMulNat0(xuu500000, xuu40010)) 24.35/9.94 new_lt17(xuu52000, xuu53000) -> new_esEs17(new_compare31(xuu52000, xuu53000), LT) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, app(ty_Ratio, bhe)) -> new_ltEs4(xuu52001, xuu53001, bhe) 24.35/9.94 new_esEs20(xuu50001, xuu4001, ty_Float) -> new_esEs15(xuu50001, xuu4001) 24.35/9.94 new_esEs13(:(xuu50000, xuu50001), [], ced) -> False 24.35/9.94 new_esEs13([], :(xuu4000, xuu4001), ced) -> False 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, bga), bgb), bgc)) -> new_esEs7(xuu50000, xuu4000, bga, bgb, bgc) 24.35/9.94 new_esEs26(xuu52001, xuu53001, app(app(ty_@2, bbe), bbf)) -> new_esEs6(xuu52001, xuu53001, bbe, bbf) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.35/9.94 new_lt19(xuu52001, xuu53001, ty_Float) -> new_lt17(xuu52001, xuu53001) 24.35/9.94 new_compare32(xuu52000, xuu53000, ty_Integer) -> new_compare6(xuu52000, xuu53000) 24.35/9.94 new_primMulNat0(Succ(xuu5000000), Zero) -> Zero 24.35/9.94 new_primMulNat0(Zero, Succ(xuu400100)) -> Zero 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), chb, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.35/9.94 new_ltEs15(xuu5200, xuu5300) -> new_fsEs(new_compare17(xuu5200, xuu5300)) 24.35/9.94 new_lt20(xuu52000, xuu53000, ty_Bool) -> new_lt13(xuu52000, xuu53000) 24.35/9.94 new_primPlusNat1(Succ(xuu1450), xuu400100) -> Succ(Succ(new_primPlusNat0(xuu1450, xuu400100))) 24.35/9.94 new_esEs17(LT, GT) -> False 24.35/9.94 new_esEs17(GT, LT) -> False 24.35/9.94 new_compare11(xuu52000, xuu53000, False, hb, hc, hd) -> GT 24.35/9.94 new_ltEs5(True, False) -> False 24.35/9.94 new_esEs18(xuu52000, xuu53000, app(ty_Ratio, bhd)) -> new_esEs9(xuu52000, xuu53000, bhd) 24.35/9.94 new_esEs25(xuu52000, xuu53000, ty_@0) -> new_esEs8(xuu52000, xuu53000) 24.35/9.94 new_primPlusNat0(Succ(xuu55200), Zero) -> Succ(xuu55200) 24.35/9.94 new_primPlusNat0(Zero, Succ(xuu13600)) -> Succ(xuu13600) 24.35/9.94 new_ltEs21(xuu52002, xuu53002, ty_Int) -> new_ltEs10(xuu52002, xuu53002) 24.35/9.94 new_lt20(xuu52000, xuu53000, app(app(ty_Either, bcc), bcd)) -> new_lt10(xuu52000, xuu53000, bcc, bcd) 24.35/9.94 new_primPlusNat1(Zero, xuu400100) -> Succ(xuu400100) 24.35/9.94 new_esEs28(xuu50001, xuu4001, ty_Ordering) -> new_esEs17(xuu50001, xuu4001) 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), cd, ty_Float) -> new_ltEs16(xuu52000, xuu53000) 24.35/9.94 new_ltEs21(xuu52002, xuu53002, app(ty_Ratio, dbc)) -> new_ltEs4(xuu52002, xuu53002, dbc) 24.35/9.94 new_compare111(xuu52000, xuu53000, True) -> LT 24.35/9.94 new_ltEs7(xuu52001, xuu53001, ty_Int) -> new_ltEs10(xuu52001, xuu53001) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), chb, ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Ordering) -> new_ltEs8(xuu52000, xuu53000) 24.35/9.94 new_compare32(xuu52000, xuu53000, app(ty_[], bee)) -> new_compare(xuu52000, xuu53000, bee) 24.35/9.94 new_esEs24(xuu50000, xuu4000, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs7(xuu50000, xuu4000, cee, cef, ceg) 24.35/9.94 new_esEs26(xuu52001, xuu53001, ty_@0) -> new_esEs8(xuu52001, xuu53001) 24.35/9.94 new_esEs24(xuu50000, xuu4000, ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.35/9.94 new_lt19(xuu52001, xuu53001, app(ty_Maybe, bbd)) -> new_lt11(xuu52001, xuu53001, bbd) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.35/9.94 new_compare18(xuu52000, xuu53000, False) -> GT 24.35/9.94 new_ltEs21(xuu52002, xuu53002, ty_Double) -> new_ltEs14(xuu52002, xuu53002) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, ty_Char) -> new_ltEs18(xuu52001, xuu53001) 24.35/9.94 new_esEs9(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), cdg) -> new_asAs(new_esEs22(xuu50000, xuu4000, cdg), new_esEs23(xuu50001, xuu4001, cdg)) 24.35/9.94 new_ltEs20(xuu5200, xuu5300, ty_Integer) -> new_ltEs9(xuu5200, xuu5300) 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Integer, bc) -> new_ltEs9(xuu52000, xuu53000) 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), app(app(ty_@2, bg), bh), bc) -> new_ltEs6(xuu52000, xuu53000, bg, bh) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, ty_Integer) -> new_ltEs9(xuu5200, xuu5300) 24.35/9.94 new_lt20(xuu52000, xuu53000, app(ty_Maybe, bce)) -> new_lt11(xuu52000, xuu53000, bce) 24.35/9.94 new_ltEs20(xuu5200, xuu5300, ty_Double) -> new_ltEs14(xuu5200, xuu5300) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, ty_@0) -> new_ltEs15(xuu52001, xuu53001) 24.35/9.94 new_compare12(Char(xuu52000), Char(xuu53000)) -> new_primCmpNat0(xuu52000, xuu53000) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(app(ty_Either, bha), bhb)) -> new_esEs4(xuu50000, xuu4000, bha, bhb) 24.35/9.94 new_esEs28(xuu50001, xuu4001, ty_Integer) -> new_esEs14(xuu50001, xuu4001) 24.35/9.94 new_primMulInt(Neg(xuu500000), Neg(xuu40010)) -> Pos(new_primMulNat0(xuu500000, xuu40010)) 24.35/9.94 new_primCmpInt(Pos(Zero), Pos(Succ(xuu5300))) -> new_primCmpNat0(Zero, Succ(xuu5300)) 24.35/9.94 new_esEs25(xuu52000, xuu53000, app(app(ty_@2, bcf), bcg)) -> new_esEs6(xuu52000, xuu53000, bcf, bcg) 24.35/9.94 new_lt7(xuu52000, xuu53000) -> new_esEs17(new_compare6(xuu52000, xuu53000), LT) 24.35/9.94 new_compare([], :(xuu53000, xuu53001), h) -> LT 24.35/9.94 new_ltEs21(xuu52002, xuu53002, ty_@0) -> new_ltEs15(xuu52002, xuu53002) 24.35/9.94 new_esEs19(xuu50000, xuu4000, app(ty_Ratio, cad)) -> new_esEs9(xuu50000, xuu4000, cad) 24.35/9.94 new_lt5(xuu52000, xuu53000, app(app(ty_Either, ge), gf)) -> new_lt10(xuu52000, xuu53000, ge, gf) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Bool, cfg) -> new_esEs10(xuu50000, xuu4000) 24.35/9.94 new_esEs26(xuu52001, xuu53001, ty_Double) -> new_esEs11(xuu52001, xuu53001) 24.35/9.94 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Maybe, bgf)) -> new_esEs5(xuu50000, xuu4000, bgf) 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), cd, app(ty_Maybe, da)) -> new_ltEs13(xuu52000, xuu53000, da) 24.35/9.94 new_compare26(xuu52000, xuu53000, True, hb, hc, hd) -> EQ 24.35/9.94 new_ltEs20(xuu5200, xuu5300, app(ty_Ratio, dag)) -> new_ltEs4(xuu5200, xuu5300, dag) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs17(xuu52001, xuu53001, fh, ga, gb) 24.35/9.94 new_ltEs21(xuu52002, xuu53002, app(app(app(ty_@3, bae), baf), bag)) -> new_ltEs17(xuu52002, xuu53002, bae, baf, bag) 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), app(app(ty_Either, dh), ea)) -> new_ltEs12(xuu52000, xuu53000, dh, ea) 24.35/9.94 new_esEs21(xuu50002, xuu4002, ty_Float) -> new_esEs15(xuu50002, xuu4002) 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_@0, bc) -> new_ltEs15(xuu52000, xuu53000) 24.35/9.94 new_primMulInt(Pos(xuu500000), Neg(xuu40010)) -> Neg(new_primMulNat0(xuu500000, xuu40010)) 24.35/9.94 new_primMulInt(Neg(xuu500000), Pos(xuu40010)) -> Neg(new_primMulNat0(xuu500000, xuu40010)) 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), cd, app(app(ty_Either, cf), cg)) -> new_ltEs12(xuu52000, xuu53000, cf, cg) 24.35/9.94 new_esEs20(xuu50001, xuu4001, ty_@0) -> new_esEs8(xuu50001, xuu4001) 24.35/9.94 new_compare19(xuu52000, xuu53000, gh, ha) -> new_compare27(xuu52000, xuu53000, new_esEs6(xuu52000, xuu53000, gh, ha), gh, ha) 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Double, bc) -> new_ltEs14(xuu52000, xuu53000) 24.35/9.94 new_compare32(xuu52000, xuu53000, ty_@0) -> new_compare17(xuu52000, xuu53000) 24.35/9.94 new_ltEs12(Right(xuu52000), Left(xuu53000), cd, bc) -> False 24.35/9.94 new_ltEs21(xuu52002, xuu53002, app(ty_Maybe, bab)) -> new_ltEs13(xuu52002, xuu53002, bab) 24.35/9.94 new_lt4(xuu52000, xuu53000) -> new_esEs17(new_compare12(xuu52000, xuu53000), LT) 24.35/9.94 new_compare32(xuu52000, xuu53000, ty_Double) -> new_compare16(xuu52000, xuu53000) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Float, cfg) -> new_esEs15(xuu50000, xuu4000) 24.35/9.94 new_esEs19(xuu50000, xuu4000, ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, ty_Double) -> new_ltEs14(xuu5200, xuu5300) 24.35/9.94 new_esEs24(xuu50000, xuu4000, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.35/9.94 new_ltEs5(False, False) -> True 24.35/9.94 new_esEs27(xuu50000, xuu4000, ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.35/9.94 new_lt5(xuu52000, xuu53000, ty_Ordering) -> new_lt6(xuu52000, xuu53000) 24.35/9.94 new_compare32(xuu52000, xuu53000, ty_Float) -> new_compare31(xuu52000, xuu53000) 24.35/9.94 new_esEs19(xuu50000, xuu4000, ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.35/9.94 new_esEs18(xuu52000, xuu53000, ty_Integer) -> new_esEs14(xuu52000, xuu53000) 24.35/9.94 new_lt20(xuu52000, xuu53000, app(app(app(ty_@3, bch), bda), bdb)) -> new_lt18(xuu52000, xuu53000, bch, bda, bdb) 24.35/9.94 new_esEs22(xuu50000, xuu4000, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.35/9.94 new_esEs19(xuu50000, xuu4000, app(ty_Maybe, caf)) -> new_esEs5(xuu50000, xuu4000, caf) 24.35/9.94 new_esEs28(xuu50001, xuu4001, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs7(xuu50001, xuu4001, dch, dda, ddb) 24.35/9.94 new_ltEs8(GT, GT) -> True 24.35/9.94 new_esEs25(xuu52000, xuu53000, ty_Char) -> new_esEs16(xuu52000, xuu53000) 24.35/9.94 new_compare32(xuu52000, xuu53000, ty_Ordering) -> new_compare14(xuu52000, xuu53000) 24.35/9.94 new_ltEs21(xuu52002, xuu53002, app(app(ty_Either, hh), baa)) -> new_ltEs12(xuu52002, xuu53002, hh, baa) 24.35/9.94 new_asAs(True, xuu179) -> xuu179 24.35/9.94 new_esEs25(xuu52000, xuu53000, ty_Bool) -> new_esEs10(xuu52000, xuu53000) 24.35/9.94 new_lt19(xuu52001, xuu53001, app(ty_Ratio, dbb)) -> new_lt15(xuu52001, xuu53001, dbb) 24.35/9.94 new_compare10(xuu184, xuu185, False, bff, bfg) -> GT 24.35/9.94 new_esEs27(xuu50000, xuu4000, app(ty_[], dcb)) -> new_esEs13(xuu50000, xuu4000, dcb) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, ty_Double) -> new_ltEs14(xuu52001, xuu53001) 24.35/9.94 new_lt19(xuu52001, xuu53001, app(app(app(ty_@3, bbg), bbh), bca)) -> new_lt18(xuu52001, xuu53001, bbg, bbh, bca) 24.35/9.94 new_ltEs20(xuu5200, xuu5300, ty_@0) -> new_ltEs15(xuu5200, xuu5300) 24.35/9.94 new_ltEs21(xuu52002, xuu53002, ty_Integer) -> new_ltEs9(xuu52002, xuu53002) 24.35/9.94 new_ltEs8(EQ, EQ) -> True 24.35/9.94 new_ltEs13(Just(xuu52000), Just(xuu53000), app(app(ty_@2, ec), ed)) -> new_ltEs6(xuu52000, xuu53000, ec, ed) 24.35/9.94 new_esEs20(xuu50001, xuu4001, app(ty_Maybe, cbh)) -> new_esEs5(xuu50001, xuu4001, cbh) 24.35/9.94 new_esEs16(Char(xuu50000), Char(xuu4000)) -> new_primEqNat0(xuu50000, xuu4000) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, cfh), cga), cgb), cfg) -> new_esEs7(xuu50000, xuu4000, cfh, cga, cgb) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), app(app(ty_Either, cgh), cha), cfg) -> new_esEs4(xuu50000, xuu4000, cgh, cha) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), chb, app(app(ty_@2, daa), dab)) -> new_esEs6(xuu50000, xuu4000, daa, dab) 24.35/9.94 new_esEs24(xuu50000, xuu4000, ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.35/9.94 new_esEs27(xuu50000, xuu4000, ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.35/9.94 new_ltEs20(xuu5200, xuu5300, ty_Float) -> new_ltEs16(xuu5200, xuu5300) 24.35/9.94 new_compare32(xuu52000, xuu53000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare30(xuu52000, xuu53000, bfc, bfd, bfe) 24.35/9.94 new_lt18(xuu52000, xuu53000, hb, hc, hd) -> new_esEs17(new_compare30(xuu52000, xuu53000, hb, hc, hd), LT) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, ty_@0) -> new_ltEs15(xuu5200, xuu5300) 24.35/9.94 new_lt19(xuu52001, xuu53001, ty_Int) -> new_lt8(xuu52001, xuu53001) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, app(app(app(ty_@3, he), hf), bba)) -> new_ltEs17(xuu5200, xuu5300, he, hf, bba) 24.35/9.94 new_primCmpInt(Pos(Succ(xuu5200)), Pos(xuu530)) -> new_primCmpNat0(Succ(xuu5200), xuu530) 24.35/9.94 new_compare23(Right(xuu5200), Right(xuu5300), False, bdc, ba) -> new_compare110(xuu5200, xuu5300, new_ltEs20(xuu5200, xuu5300, ba), bdc, ba) 24.35/9.94 new_esEs20(xuu50001, xuu4001, app(app(ty_Either, ccc), ccd)) -> new_esEs4(xuu50001, xuu4001, ccc, ccd) 24.35/9.94 new_ltEs8(EQ, GT) -> True 24.35/9.94 new_esEs19(xuu50000, xuu4000, app(app(ty_Either, cba), cbb)) -> new_esEs4(xuu50000, xuu4000, cba, cbb) 24.35/9.94 new_esEs27(xuu50000, xuu4000, app(app(ty_@2, dcd), dce)) -> new_esEs6(xuu50000, xuu4000, dcd, dce) 24.35/9.94 new_esEs28(xuu50001, xuu4001, ty_Float) -> new_esEs15(xuu50001, xuu4001) 24.35/9.94 new_ltEs11(xuu5200, xuu5300, h) -> new_fsEs(new_compare(xuu5200, xuu5300, h)) 24.35/9.94 new_primMulNat0(Zero, Zero) -> Zero 24.35/9.94 new_ltEs13(Nothing, Nothing, daf) -> True 24.35/9.94 new_esEs18(xuu52000, xuu53000, ty_@0) -> new_esEs8(xuu52000, xuu53000) 24.35/9.94 new_ltEs13(Just(xuu52000), Nothing, daf) -> False 24.35/9.94 new_compare28(xuu52000, xuu53000, gg) -> new_compare29(xuu52000, xuu53000, new_esEs5(xuu52000, xuu53000, gg), gg) 24.35/9.94 new_esEs24(xuu50000, xuu4000, app(ty_Maybe, cfb)) -> new_esEs5(xuu50000, xuu4000, cfb) 24.35/9.94 new_compare111(xuu52000, xuu53000, False) -> GT 24.35/9.94 new_ltEs12(Left(xuu52000), Left(xuu53000), app(ty_Ratio, ceb), bc) -> new_ltEs4(xuu52000, xuu53000, ceb) 24.35/9.94 new_compare32(xuu52000, xuu53000, app(ty_Ratio, dae)) -> new_compare7(xuu52000, xuu53000, dae) 24.35/9.94 new_compare9(xuu52000, xuu53000, ge, gf) -> new_compare23(xuu52000, xuu53000, new_esEs4(xuu52000, xuu53000, ge, gf), ge, gf) 24.35/9.94 new_esEs4(Right(xuu50000), Right(xuu4000), chb, ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.35/9.94 new_esEs25(xuu52000, xuu53000, app(app(ty_Either, bcc), bcd)) -> new_esEs4(xuu52000, xuu53000, bcc, bcd) 24.35/9.94 new_ltEs19(xuu5200, xuu5300, app(ty_Maybe, daf)) -> new_ltEs13(xuu5200, xuu5300, daf) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, ty_Float) -> new_ltEs16(xuu52001, xuu53001) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, ty_Integer) -> new_ltEs9(xuu52001, xuu53001) 24.35/9.94 new_ltEs7(xuu52001, xuu53001, app(app(ty_Either, fb), fc)) -> new_ltEs12(xuu52001, xuu53001, fb, fc) 24.35/9.94 new_ltEs12(Right(xuu52000), Right(xuu53000), cd, ty_Ordering) -> new_ltEs8(xuu52000, xuu53000) 24.35/9.94 new_lt20(xuu52000, xuu53000, app(ty_Ratio, dba)) -> new_lt15(xuu52000, xuu53000, dba) 24.35/9.94 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Double, cfg) -> new_esEs11(xuu50000, xuu4000) 24.35/9.94 new_compare26(xuu52000, xuu53000, False, hb, hc, hd) -> new_compare11(xuu52000, xuu53000, new_ltEs17(xuu52000, xuu53000, hb, hc, hd), hb, hc, hd) 24.35/9.94 new_compare31(Float(xuu52000, Pos(xuu520010)), Float(xuu53000, Neg(xuu530010))) -> new_compare8(new_sr0(xuu52000, Pos(xuu530010)), new_sr0(Neg(xuu520010), xuu53000)) 24.35/9.95 new_compare31(Float(xuu52000, Neg(xuu520010)), Float(xuu53000, Pos(xuu530010))) -> new_compare8(new_sr0(xuu52000, Neg(xuu530010)), new_sr0(Pos(xuu520010), xuu53000)) 24.35/9.95 new_lt5(xuu52000, xuu53000, app(ty_[], gc)) -> new_lt9(xuu52000, xuu53000, gc) 24.35/9.95 new_lt10(xuu52000, xuu53000, ge, gf) -> new_esEs17(new_compare9(xuu52000, xuu53000, ge, gf), LT) 24.35/9.95 new_esEs20(xuu50001, xuu4001, ty_Integer) -> new_esEs14(xuu50001, xuu4001) 24.35/9.95 new_esEs25(xuu52000, xuu53000, app(ty_Maybe, bce)) -> new_esEs5(xuu52000, xuu53000, bce) 24.35/9.95 new_ltEs12(Right(xuu52000), Right(xuu53000), cd, app(ty_Ratio, cec)) -> new_ltEs4(xuu52000, xuu53000, cec) 24.35/9.95 new_lt16(xuu52000, xuu53000) -> new_esEs17(new_compare17(xuu52000, xuu53000), LT) 24.35/9.95 new_esEs21(xuu50002, xuu4002, ty_Char) -> new_esEs16(xuu50002, xuu4002) 24.35/9.95 new_esEs4(Right(xuu50000), Right(xuu4000), chb, app(app(ty_Either, dac), dad)) -> new_esEs4(xuu50000, xuu4000, dac, dad) 24.35/9.95 new_ltEs19(xuu5200, xuu5300, app(app(ty_Either, cd), bc)) -> new_ltEs12(xuu5200, xuu5300, cd, bc) 24.35/9.95 new_lt20(xuu52000, xuu53000, ty_Integer) -> new_lt7(xuu52000, xuu53000) 24.35/9.95 new_esEs21(xuu50002, xuu4002, ty_Bool) -> new_esEs10(xuu50002, xuu4002) 24.35/9.95 new_esEs4(Left(xuu50000), Left(xuu4000), app(ty_Ratio, cgc), cfg) -> new_esEs9(xuu50000, xuu4000, cgc) 24.35/9.95 new_esEs28(xuu50001, xuu4001, app(app(ty_@2, ddf), ddg)) -> new_esEs6(xuu50001, xuu4001, ddf, ddg) 24.35/9.95 new_ltEs8(LT, EQ) -> True 24.35/9.95 new_ltEs12(Left(xuu52000), Left(xuu53000), app(app(app(ty_@3, ca), cb), cc), bc) -> new_ltEs17(xuu52000, xuu53000, ca, cb, cc) 24.35/9.95 new_primCompAux0(xuu224, EQ) -> xuu224 24.35/9.95 new_esEs27(xuu50000, xuu4000, app(ty_Ratio, dca)) -> new_esEs9(xuu50000, xuu4000, dca) 24.35/9.95 new_ltEs13(Just(xuu52000), Just(xuu53000), app(ty_Ratio, dah)) -> new_ltEs4(xuu52000, xuu53000, dah) 24.35/9.95 new_esEs18(xuu52000, xuu53000, app(ty_Maybe, gg)) -> new_esEs5(xuu52000, xuu53000, gg) 24.35/9.95 new_esEs17(GT, GT) -> True 24.35/9.95 new_primEqInt(Neg(Succ(xuu500000)), Neg(Zero)) -> False 24.35/9.95 new_primEqInt(Neg(Zero), Neg(Succ(xuu40000))) -> False 24.35/9.95 new_lt19(xuu52001, xuu53001, ty_Integer) -> new_lt7(xuu52001, xuu53001) 24.35/9.95 new_esEs20(xuu50001, xuu4001, ty_Bool) -> new_esEs10(xuu50001, xuu4001) 24.35/9.95 new_ltEs20(xuu5200, xuu5300, app(app(ty_Either, bde), bdf)) -> new_ltEs12(xuu5200, xuu5300, bde, bdf) 24.35/9.95 new_compare([], [], h) -> EQ 24.35/9.95 new_esEs20(xuu50001, xuu4001, ty_Char) -> new_esEs16(xuu50001, xuu4001) 24.35/9.95 new_esEs28(xuu50001, xuu4001, ty_@0) -> new_esEs8(xuu50001, xuu4001) 24.35/9.95 new_primEqInt(Pos(Succ(xuu500000)), Pos(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 24.35/9.95 new_esEs18(xuu52000, xuu53000, ty_Float) -> new_esEs15(xuu52000, xuu53000) 24.35/9.95 new_compare24(xuu52000, xuu53000, True) -> EQ 24.35/9.95 new_ltEs8(LT, LT) -> True 24.35/9.95 new_compare16(Double(xuu52000, Pos(xuu520010)), Double(xuu53000, Neg(xuu530010))) -> new_compare8(new_sr0(xuu52000, Pos(xuu530010)), new_sr0(Neg(xuu520010), xuu53000)) 24.35/9.95 new_compare16(Double(xuu52000, Neg(xuu520010)), Double(xuu53000, Pos(xuu530010))) -> new_compare8(new_sr0(xuu52000, Neg(xuu530010)), new_sr0(Pos(xuu520010), xuu53000)) 24.35/9.95 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_Ratio, bgd)) -> new_esEs9(xuu50000, xuu4000, bgd) 24.35/9.95 new_lt19(xuu52001, xuu53001, app(ty_[], bah)) -> new_lt9(xuu52001, xuu53001, bah) 24.35/9.95 new_esEs4(Right(xuu50000), Right(xuu4000), chb, app(ty_Ratio, chf)) -> new_esEs9(xuu50000, xuu4000, chf) 24.35/9.95 new_ltEs12(Right(xuu52000), Right(xuu53000), cd, ty_Int) -> new_ltEs10(xuu52000, xuu53000) 24.35/9.95 new_primEqInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> False 24.35/9.95 new_primEqInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> False 24.35/9.95 new_ltEs12(Right(xuu52000), Right(xuu53000), cd, ty_Char) -> new_ltEs18(xuu52000, xuu53000) 24.35/9.95 new_lt5(xuu52000, xuu53000, ty_Double) -> new_lt12(xuu52000, xuu53000) 24.35/9.95 new_esEs28(xuu50001, xuu4001, app(ty_[], ddd)) -> new_esEs13(xuu50001, xuu4001, ddd) 24.35/9.95 new_primCmpInt(Neg(Zero), Neg(Succ(xuu5300))) -> new_primCmpNat0(Succ(xuu5300), Zero) 24.35/9.95 new_ltEs12(Right(xuu52000), Right(xuu53000), cd, app(ty_[], ce)) -> new_ltEs11(xuu52000, xuu53000, ce) 24.35/9.95 new_esEs24(xuu50000, xuu4000, app(app(ty_Either, cfe), cff)) -> new_esEs4(xuu50000, xuu4000, cfe, cff) 24.35/9.95 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 24.35/9.95 new_esEs18(xuu52000, xuu53000, app(app(ty_Either, ge), gf)) -> new_esEs4(xuu52000, xuu53000, ge, gf) 24.35/9.95 new_esEs28(xuu50001, xuu4001, app(ty_Maybe, dde)) -> new_esEs5(xuu50001, xuu4001, dde) 24.35/9.95 new_esEs5(Just(xuu50000), Just(xuu4000), app(ty_[], bge)) -> new_esEs13(xuu50000, xuu4000, bge) 24.35/9.95 new_fsEs(xuu194) -> new_not(new_esEs17(xuu194, GT)) 24.35/9.95 new_ltEs19(xuu5200, xuu5300, ty_Bool) -> new_ltEs5(xuu5200, xuu5300) 24.35/9.95 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.35/9.95 new_esEs24(xuu50000, xuu4000, ty_Ordering) -> new_esEs17(xuu50000, xuu4000) 24.35/9.95 new_esEs28(xuu50001, xuu4001, ty_Bool) -> new_esEs10(xuu50001, xuu4001) 24.35/9.95 new_esEs12(xuu5000, xuu400) -> new_primEqInt(xuu5000, xuu400) 24.35/9.95 new_esEs19(xuu50000, xuu4000, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.35/9.95 new_esEs24(xuu50000, xuu4000, ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.35/9.95 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Bool, bc) -> new_ltEs5(xuu52000, xuu53000) 24.35/9.95 new_lt12(xuu52000, xuu53000) -> new_esEs17(new_compare16(xuu52000, xuu53000), LT) 24.35/9.95 new_esEs7(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bhf, bhg, bhh) -> new_asAs(new_esEs19(xuu50000, xuu4000, bhf), new_asAs(new_esEs20(xuu50001, xuu4001, bhg), new_esEs21(xuu50002, xuu4002, bhh))) 24.35/9.95 new_not(False) -> True 24.35/9.95 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Int, bc) -> new_ltEs10(xuu52000, xuu53000) 24.35/9.95 new_esEs21(xuu50002, xuu4002, ty_@0) -> new_esEs8(xuu50002, xuu4002) 24.35/9.95 new_esEs20(xuu50001, xuu4001, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_esEs7(xuu50001, xuu4001, cbc, cbd, cbe) 24.35/9.95 new_ltEs7(xuu52001, xuu53001, app(ty_Maybe, fd)) -> new_ltEs13(xuu52001, xuu53001, fd) 24.35/9.95 new_primPlusNat0(Succ(xuu55200), Succ(xuu13600)) -> Succ(Succ(new_primPlusNat0(xuu55200, xuu13600))) 24.35/9.95 new_compare32(xuu52000, xuu53000, app(app(ty_@2, bfa), bfb)) -> new_compare19(xuu52000, xuu53000, bfa, bfb) 24.35/9.95 new_lt5(xuu52000, xuu53000, ty_Int) -> new_lt8(xuu52000, xuu53000) 24.35/9.95 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_@0) -> new_ltEs15(xuu52000, xuu53000) 24.35/9.95 new_esEs20(xuu50001, xuu4001, app(app(ty_@2, cca), ccb)) -> new_esEs6(xuu50001, xuu4001, cca, ccb) 24.35/9.95 new_esEs23(xuu50001, xuu4001, ty_Integer) -> new_esEs14(xuu50001, xuu4001) 24.35/9.95 new_compare27(xuu52000, xuu53000, True, gh, ha) -> EQ 24.35/9.95 new_compare25(xuu52000, xuu53000, True) -> EQ 24.35/9.95 new_lt19(xuu52001, xuu53001, ty_@0) -> new_lt16(xuu52001, xuu53001) 24.35/9.95 new_esEs10(True, True) -> True 24.35/9.95 new_esEs27(xuu50000, xuu4000, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs7(xuu50000, xuu4000, dbf, dbg, dbh) 24.35/9.95 new_lt20(xuu52000, xuu53000, ty_Int) -> new_lt8(xuu52000, xuu53000) 24.35/9.95 new_esEs26(xuu52001, xuu53001, app(ty_Maybe, bbd)) -> new_esEs5(xuu52001, xuu53001, bbd) 24.35/9.95 new_lt20(xuu52000, xuu53000, ty_Char) -> new_lt4(xuu52000, xuu53000) 24.35/9.95 new_esEs18(xuu52000, xuu53000, ty_Bool) -> new_esEs10(xuu52000, xuu53000) 24.35/9.95 new_sr0(xuu50000, xuu4001) -> new_primMulInt(xuu50000, xuu4001) 24.35/9.95 new_lt5(xuu52000, xuu53000, ty_Integer) -> new_lt7(xuu52000, xuu53000) 24.35/9.95 new_esEs4(Left(xuu50000), Left(xuu4000), app(ty_Maybe, cge), cfg) -> new_esEs5(xuu50000, xuu4000, cge) 24.35/9.95 new_esEs18(xuu52000, xuu53000, app(ty_[], gc)) -> new_esEs13(xuu52000, xuu53000, gc) 24.35/9.95 new_lt9(xuu52000, xuu53000, gc) -> new_esEs17(new_compare(xuu52000, xuu53000, gc), LT) 24.35/9.95 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.35/9.95 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 24.35/9.95 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 24.35/9.95 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Char) -> new_ltEs18(xuu52000, xuu53000) 24.35/9.95 new_esEs26(xuu52001, xuu53001, app(ty_Ratio, dbb)) -> new_esEs9(xuu52001, xuu53001, dbb) 24.35/9.95 new_ltEs5(True, True) -> True 24.35/9.95 new_ltEs21(xuu52002, xuu53002, ty_Ordering) -> new_ltEs8(xuu52002, xuu53002) 24.35/9.95 new_esEs28(xuu50001, xuu4001, app(app(ty_Either, ddh), dea)) -> new_esEs4(xuu50001, xuu4001, ddh, dea) 24.35/9.95 new_lt5(xuu52000, xuu53000, ty_Char) -> new_lt4(xuu52000, xuu53000) 24.35/9.95 new_esEs28(xuu50001, xuu4001, ty_Int) -> new_esEs12(xuu50001, xuu4001) 24.35/9.95 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Float) -> new_ltEs16(xuu52000, xuu53000) 24.35/9.95 new_compare23(Right(xuu5200), Left(xuu5300), False, bdc, ba) -> GT 24.35/9.95 new_esEs25(xuu52000, xuu53000, app(ty_Ratio, dba)) -> new_esEs9(xuu52000, xuu53000, dba) 24.35/9.95 new_esEs18(xuu52000, xuu53000, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs7(xuu52000, xuu53000, hb, hc, hd) 24.35/9.95 new_ltEs12(Right(xuu52000), Right(xuu53000), cd, ty_Integer) -> new_ltEs9(xuu52000, xuu53000) 24.35/9.95 new_esEs26(xuu52001, xuu53001, app(app(ty_Either, bbb), bbc)) -> new_esEs4(xuu52001, xuu53001, bbb, bbc) 24.35/9.95 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 24.35/9.95 new_primCompAux1(xuu52000, xuu53000, xuu211, h) -> new_primCompAux0(xuu211, new_compare32(xuu52000, xuu53000, h)) 24.35/9.95 new_compare14(xuu52000, xuu53000) -> new_compare25(xuu52000, xuu53000, new_esEs17(xuu52000, xuu53000)) 24.35/9.95 new_compare17(@0, @0) -> EQ 24.35/9.95 new_esEs4(Right(xuu50000), Right(xuu4000), chb, ty_Bool) -> new_esEs10(xuu50000, xuu4000) 24.35/9.95 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Double) -> new_esEs11(xuu50000, xuu4000) 24.35/9.95 new_esEs21(xuu50002, xuu4002, ty_Integer) -> new_esEs14(xuu50002, xuu4002) 24.35/9.95 new_primCmpNat0(Succ(xuu5200), Succ(xuu5300)) -> new_primCmpNat0(xuu5200, xuu5300) 24.35/9.95 new_compare29(xuu52000, xuu53000, False, gg) -> new_compare112(xuu52000, xuu53000, new_ltEs13(xuu52000, xuu53000, gg), gg) 24.35/9.95 new_compare29(xuu52000, xuu53000, True, gg) -> EQ 24.35/9.95 new_esEs19(xuu50000, xuu4000, ty_@0) -> new_esEs8(xuu50000, xuu4000) 24.35/9.95 new_lt20(xuu52000, xuu53000, ty_@0) -> new_lt16(xuu52000, xuu53000) 24.35/9.95 new_esEs26(xuu52001, xuu53001, ty_Int) -> new_esEs12(xuu52001, xuu53001) 24.35/9.95 new_lt19(xuu52001, xuu53001, ty_Char) -> new_lt4(xuu52001, xuu53001) 24.35/9.95 new_esEs24(xuu50000, xuu4000, ty_Char) -> new_esEs16(xuu50000, xuu4000) 24.35/9.95 new_lt20(xuu52000, xuu53000, app(app(ty_@2, bcf), bcg)) -> new_lt14(xuu52000, xuu53000, bcf, bcg) 24.35/9.95 new_ltEs7(xuu52001, xuu53001, ty_Bool) -> new_ltEs5(xuu52001, xuu53001) 24.35/9.95 new_esEs19(xuu50000, xuu4000, app(app(ty_@2, cag), cah)) -> new_esEs6(xuu50000, xuu4000, cag, cah) 24.35/9.95 new_esEs24(xuu50000, xuu4000, app(ty_Ratio, ceh)) -> new_esEs9(xuu50000, xuu4000, ceh) 24.35/9.95 new_ltEs13(Just(xuu52000), Just(xuu53000), ty_Int) -> new_ltEs10(xuu52000, xuu53000) 24.35/9.95 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Integer, cfg) -> new_esEs14(xuu50000, xuu4000) 24.35/9.95 new_compare15(xuu52000, xuu53000, False, gh, ha) -> GT 24.35/9.95 new_ltEs19(xuu5200, xuu5300, ty_Float) -> new_ltEs16(xuu5200, xuu5300) 24.35/9.95 new_esEs27(xuu50000, xuu4000, ty_Float) -> new_esEs15(xuu50000, xuu4000) 24.35/9.95 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 24.35/9.95 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 24.35/9.95 new_ltEs21(xuu52002, xuu53002, ty_Bool) -> new_ltEs5(xuu52002, xuu53002) 24.35/9.95 new_lt5(xuu52000, xuu53000, app(app(ty_@2, gh), ha)) -> new_lt14(xuu52000, xuu53000, gh, ha) 24.35/9.95 new_compare110(xuu191, xuu192, False, cdh, cea) -> GT 24.35/9.95 new_ltEs9(xuu5200, xuu5300) -> new_fsEs(new_compare6(xuu5200, xuu5300)) 24.35/9.95 new_esEs6(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), dbd, dbe) -> new_asAs(new_esEs27(xuu50000, xuu4000, dbd), new_esEs28(xuu50001, xuu4001, dbe)) 24.35/9.95 new_esEs27(xuu50000, xuu4000, ty_Int) -> new_esEs12(xuu50000, xuu4000) 24.35/9.95 new_primEqNat0(Zero, Zero) -> True 24.35/9.95 new_lt19(xuu52001, xuu53001, ty_Ordering) -> new_lt6(xuu52001, xuu53001) 24.35/9.95 new_esEs21(xuu50002, xuu4002, ty_Double) -> new_esEs11(xuu50002, xuu4002) 24.35/9.95 new_esEs18(xuu52000, xuu53000, app(app(ty_@2, gh), ha)) -> new_esEs6(xuu52000, xuu53000, gh, ha) 24.35/9.95 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Ordering, cfg) -> new_esEs17(xuu50000, xuu4000) 24.35/9.95 new_lt5(xuu52000, xuu53000, ty_@0) -> new_lt16(xuu52000, xuu53000) 24.35/9.95 new_ltEs8(LT, GT) -> True 24.35/9.95 new_esEs26(xuu52001, xuu53001, ty_Float) -> new_esEs15(xuu52001, xuu53001) 24.35/9.95 new_lt5(xuu52000, xuu53000, app(app(app(ty_@3, hb), hc), hd)) -> new_lt18(xuu52000, xuu53000, hb, hc, hd) 24.35/9.95 new_ltEs17(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, hf, bba) -> new_pePe(new_lt20(xuu52000, xuu53000, he), new_asAs(new_esEs25(xuu52000, xuu53000, he), new_pePe(new_lt19(xuu52001, xuu53001, hf), new_asAs(new_esEs26(xuu52001, xuu53001, hf), new_ltEs21(xuu52002, xuu53002, bba))))) 24.35/9.95 new_esEs19(xuu50000, xuu4000, app(ty_[], cae)) -> new_esEs13(xuu50000, xuu4000, cae) 24.35/9.95 new_asAs(False, xuu179) -> False 24.35/9.95 new_ltEs20(xuu5200, xuu5300, ty_Bool) -> new_ltEs5(xuu5200, xuu5300) 24.35/9.95 new_ltEs8(EQ, LT) -> False 24.35/9.95 new_compare30(xuu52000, xuu53000, hb, hc, hd) -> new_compare26(xuu52000, xuu53000, new_esEs7(xuu52000, xuu53000, hb, hc, hd), hb, hc, hd) 24.35/9.95 new_compare13(xuu52000, xuu53000) -> new_compare24(xuu52000, xuu53000, new_esEs10(xuu52000, xuu53000)) 24.35/9.95 new_compare(:(xuu52000, xuu52001), :(xuu53000, xuu53001), h) -> new_primCompAux1(xuu52000, xuu53000, new_compare(xuu52001, xuu53001, h), h) 24.35/9.95 new_lt20(xuu52000, xuu53000, ty_Ordering) -> new_lt6(xuu52000, xuu53000) 24.35/9.95 new_esEs27(xuu50000, xuu4000, app(ty_Maybe, dcc)) -> new_esEs5(xuu50000, xuu4000, dcc) 24.35/9.95 new_esEs22(xuu50000, xuu4000, ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.35/9.95 new_ltEs21(xuu52002, xuu53002, app(ty_[], hg)) -> new_ltEs11(xuu52002, xuu53002, hg) 24.35/9.95 new_esEs14(Integer(xuu50000), Integer(xuu4000)) -> new_primEqInt(xuu50000, xuu4000) 24.35/9.95 new_esEs27(xuu50000, xuu4000, app(app(ty_Either, dcf), dcg)) -> new_esEs4(xuu50000, xuu4000, dcf, dcg) 24.35/9.95 new_esEs5(Just(xuu50000), Just(xuu4000), ty_Integer) -> new_esEs14(xuu50000, xuu4000) 24.35/9.95 new_ltEs13(Nothing, Just(xuu53000), daf) -> True 24.35/9.95 new_compare7(:%(xuu52000, xuu52001), :%(xuu53000, xuu53001), ty_Integer) -> new_compare6(new_sr(xuu52000, xuu53001), new_sr(xuu53000, xuu52001)) 24.35/9.95 new_esEs4(Left(xuu50000), Left(xuu4000), ty_Char, cfg) -> new_esEs16(xuu50000, xuu4000) 24.35/9.95 new_ltEs12(Left(xuu52000), Left(xuu53000), ty_Float, bc) -> new_ltEs16(xuu52000, xuu53000) 24.35/9.95 new_compare112(xuu52000, xuu53000, False, gg) -> GT 24.35/9.95 new_lt19(xuu52001, xuu53001, app(app(ty_@2, bbe), bbf)) -> new_lt14(xuu52001, xuu53001, bbe, bbf) 24.35/9.95 new_esEs20(xuu50001, xuu4001, app(ty_[], cbg)) -> new_esEs13(xuu50001, xuu4001, cbg) 24.35/9.95 new_compare23(Left(xuu5200), Left(xuu5300), False, bdc, ba) -> new_compare10(xuu5200, xuu5300, new_ltEs19(xuu5200, xuu5300, bdc), bdc, ba) 24.35/9.95 new_lt14(xuu52000, xuu53000, gh, ha) -> new_esEs17(new_compare19(xuu52000, xuu53000, gh, ha), LT) 24.35/9.95 24.35/9.95 The set Q consists of the following terms: 24.35/9.95 24.35/9.95 new_ltEs13(Just(x0), Just(x1), ty_Char) 24.35/9.95 new_esEs28(x0, x1, app(ty_[], x2)) 24.35/9.95 new_lt20(x0, x1, ty_Int) 24.35/9.95 new_compare27(x0, x1, False, x2, x3) 24.35/9.95 new_ltEs7(x0, x1, ty_Char) 24.35/9.95 new_compare24(x0, x1, True) 24.35/9.95 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 24.35/9.95 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 24.35/9.95 new_esEs23(x0, x1, ty_Integer) 24.35/9.95 new_ltEs19(x0, x1, ty_@0) 24.35/9.95 new_compare13(x0, x1) 24.35/9.95 new_lt8(x0, x1) 24.35/9.95 new_ltEs14(x0, x1) 24.35/9.95 new_compare32(x0, x1, ty_Float) 24.35/9.95 new_esEs27(x0, x1, app(ty_[], x2)) 24.35/9.95 new_lt20(x0, x1, ty_Ordering) 24.35/9.95 new_fsEs(x0) 24.35/9.95 new_ltEs18(x0, x1) 24.35/9.95 new_compare10(x0, x1, False, x2, x3) 24.35/9.95 new_lt5(x0, x1, app(ty_[], x2)) 24.35/9.95 new_esEs20(x0, x1, app(ty_Maybe, x2)) 24.35/9.95 new_sr(Integer(x0), Integer(x1)) 24.35/9.95 new_ltEs20(x0, x1, ty_Double) 24.35/9.95 new_compare23(x0, x1, True, x2, x3) 24.35/9.95 new_sr0(x0, x1) 24.35/9.95 new_ltEs16(x0, x1) 24.35/9.95 new_esEs25(x0, x1, ty_Char) 24.35/9.95 new_ltEs19(x0, x1, ty_Bool) 24.35/9.95 new_compare29(x0, x1, True, x2) 24.35/9.95 new_ltEs13(Just(x0), Just(x1), ty_Int) 24.35/9.95 new_esEs24(x0, x1, app(ty_Maybe, x2)) 24.35/9.95 new_primCmpNat0(Zero, Succ(x0)) 24.35/9.95 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.35/9.95 new_primPlusNat0(Succ(x0), Succ(x1)) 24.35/9.95 new_ltEs7(x0, x1, app(ty_Maybe, x2)) 24.35/9.95 new_lt20(x0, x1, ty_Char) 24.35/9.95 new_ltEs7(x0, x1, ty_Int) 24.35/9.95 new_primEqInt(Pos(Zero), Pos(Zero)) 24.35/9.95 new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 24.35/9.95 new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 24.35/9.95 new_esEs6(@2(x0, x1), @2(x2, x3), x4, x5) 24.35/9.95 new_esEs25(x0, x1, ty_Int) 24.35/9.95 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 24.35/9.95 new_primMulNat0(Succ(x0), Zero) 24.35/9.95 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 24.35/9.95 new_esEs26(x0, x1, ty_@0) 24.35/9.95 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 24.35/9.95 new_ltEs5(False, True) 24.35/9.95 new_ltEs5(True, False) 24.35/9.95 new_ltEs19(x0, x1, ty_Char) 24.35/9.95 new_primCompAux0(x0, EQ) 24.35/9.95 new_compare17(@0, @0) 24.35/9.95 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.35/9.95 new_esEs25(x0, x1, ty_Ordering) 24.35/9.95 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.35/9.95 new_compare(:(x0, x1), [], x2) 24.35/9.95 new_primEqNat0(Zero, Succ(x0)) 24.35/9.95 new_primEqInt(Neg(Zero), Neg(Zero)) 24.35/9.95 new_ltEs7(x0, x1, app(ty_Ratio, x2)) 24.35/9.95 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.35/9.95 new_esEs24(x0, x1, ty_Bool) 24.35/9.95 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.95 new_lt19(x0, x1, ty_Double) 24.35/9.95 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 24.35/9.95 new_lt20(x0, x1, ty_Double) 24.35/9.95 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 24.35/9.95 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 24.35/9.95 new_lt19(x0, x1, ty_Ordering) 24.35/9.95 new_esEs26(x0, x1, ty_Int) 24.35/9.95 new_esEs25(x0, x1, app(ty_[], x2)) 24.35/9.95 new_ltEs19(x0, x1, ty_Integer) 24.35/9.95 new_compare112(x0, x1, False, x2) 24.35/9.95 new_esEs24(x0, x1, ty_Integer) 24.35/9.95 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 24.35/9.95 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_primCompAux1(x0, x1, x2, x3) 24.35/9.95 new_compare110(x0, x1, True, x2, x3) 24.35/9.95 new_ltEs20(x0, x1, ty_Int) 24.35/9.95 new_compare11(x0, x1, True, x2, x3, x4) 24.35/9.95 new_compare15(x0, x1, False, x2, x3) 24.35/9.95 new_esEs21(x0, x1, ty_Ordering) 24.35/9.95 new_ltEs7(x0, x1, ty_@0) 24.35/9.95 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.95 new_esEs28(x0, x1, app(ty_Ratio, x2)) 24.35/9.95 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 24.35/9.95 new_ltEs20(x0, x1, ty_Char) 24.35/9.95 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 24.35/9.95 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 24.35/9.95 new_lt5(x0, x1, ty_Integer) 24.35/9.95 new_esEs10(True, True) 24.35/9.95 new_esEs26(x0, x1, ty_Char) 24.35/9.95 new_esEs20(x0, x1, ty_Double) 24.35/9.95 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 24.35/9.95 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 24.35/9.95 new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 24.35/9.95 new_ltEs21(x0, x1, ty_Double) 24.35/9.95 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 24.35/9.95 new_lt20(x0, x1, ty_@0) 24.35/9.95 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.95 new_esEs17(EQ, GT) 24.35/9.95 new_esEs17(GT, EQ) 24.35/9.95 new_primMulInt(Pos(x0), Pos(x1)) 24.35/9.95 new_lt4(x0, x1) 24.35/9.95 new_primEqInt(Pos(Zero), Neg(Zero)) 24.35/9.95 new_primEqInt(Neg(Zero), Pos(Zero)) 24.35/9.95 new_primMulNat0(Succ(x0), Succ(x1)) 24.35/9.95 new_ltEs10(x0, x1) 24.35/9.95 new_compare12(Char(x0), Char(x1)) 24.35/9.95 new_esEs26(x0, x1, ty_Double) 24.35/9.95 new_lt20(x0, x1, app(ty_[], x2)) 24.35/9.95 new_esEs24(x0, x1, ty_Ordering) 24.35/9.95 new_esEs18(x0, x1, app(ty_[], x2)) 24.35/9.95 new_ltEs11(x0, x1, x2) 24.35/9.95 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 24.35/9.95 new_esEs5(Just(x0), Nothing, x1) 24.35/9.95 new_compare111(x0, x1, True) 24.35/9.95 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.95 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 24.35/9.95 new_lt14(x0, x1, x2, x3) 24.35/9.95 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 24.35/9.95 new_compare31(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 24.35/9.95 new_esEs18(x0, x1, ty_Float) 24.35/9.95 new_ltEs8(LT, LT) 24.35/9.95 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 24.35/9.95 new_primCompAux0(x0, LT) 24.35/9.95 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.95 new_lt16(x0, x1) 24.35/9.95 new_compare8(x0, x1) 24.35/9.95 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_compare32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_compare([], [], x0) 24.35/9.95 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 24.35/9.95 new_esEs18(x0, x1, ty_@0) 24.35/9.95 new_esEs19(x0, x1, ty_Integer) 24.35/9.95 new_esEs26(x0, x1, ty_Bool) 24.35/9.95 new_esEs26(x0, x1, app(ty_Ratio, x2)) 24.35/9.95 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_lt11(x0, x1, x2) 24.35/9.95 new_esEs17(LT, GT) 24.35/9.95 new_esEs17(GT, LT) 24.35/9.95 new_esEs19(x0, x1, ty_Bool) 24.35/9.95 new_esEs23(x0, x1, ty_Int) 24.35/9.95 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 24.35/9.95 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 24.35/9.95 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.35/9.95 new_compare26(x0, x1, False, x2, x3, x4) 24.35/9.95 new_esEs21(x0, x1, app(ty_[], x2)) 24.35/9.95 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.35/9.95 new_compare9(x0, x1, x2, x3) 24.35/9.95 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.95 new_compare32(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.95 new_primPlusNat1(Succ(x0), x1) 24.35/9.95 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 24.35/9.95 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 24.35/9.95 new_esEs28(x0, x1, ty_Float) 24.35/9.95 new_esEs5(Just(x0), Just(x1), ty_Double) 24.35/9.95 new_compare10(x0, x1, True, x2, x3) 24.35/9.95 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 24.35/9.95 new_esEs24(x0, x1, ty_Double) 24.35/9.95 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 24.35/9.95 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 24.35/9.95 new_compare32(x0, x1, ty_Bool) 24.35/9.95 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 24.35/9.95 new_esEs24(x0, x1, app(ty_Ratio, x2)) 24.35/9.95 new_lt20(x0, x1, app(ty_Maybe, x2)) 24.35/9.95 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.35/9.95 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.95 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_compare24(x0, x1, False) 24.35/9.95 new_ltEs7(x0, x1, ty_Integer) 24.35/9.95 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.95 new_esEs28(x0, x1, ty_Double) 24.35/9.95 new_compare(:(x0, x1), :(x2, x3), x4) 24.35/9.95 new_lt20(x0, x1, app(ty_Ratio, x2)) 24.35/9.95 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_ltEs19(x0, x1, ty_Ordering) 24.35/9.95 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 24.35/9.95 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.95 new_ltEs20(x0, x1, ty_Bool) 24.35/9.95 new_esEs18(x0, x1, app(ty_Ratio, x2)) 24.35/9.95 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.35/9.95 new_primCmpNat0(Succ(x0), Zero) 24.35/9.95 new_lt5(x0, x1, app(ty_Maybe, x2)) 24.35/9.95 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_compare18(x0, x1, True) 24.35/9.95 new_esEs20(x0, x1, ty_Ordering) 24.35/9.95 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 24.35/9.95 new_esEs26(x0, x1, ty_Ordering) 24.35/9.95 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 24.35/9.95 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 24.35/9.95 new_ltEs19(x0, x1, ty_Double) 24.35/9.95 new_ltEs21(x0, x1, ty_Ordering) 24.35/9.95 new_ltEs7(x0, x1, app(ty_[], x2)) 24.35/9.95 new_ltEs13(Just(x0), Just(x1), ty_Integer) 24.35/9.95 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 24.35/9.95 new_esEs26(x0, x1, ty_Integer) 24.35/9.95 new_ltEs12(Left(x0), Right(x1), x2, x3) 24.35/9.95 new_ltEs12(Right(x0), Left(x1), x2, x3) 24.35/9.95 new_esEs22(x0, x1, ty_Int) 24.35/9.95 new_ltEs8(GT, GT) 24.35/9.95 new_compare31(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 24.35/9.95 new_compare31(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 24.35/9.95 new_ltEs8(LT, EQ) 24.35/9.95 new_ltEs8(EQ, LT) 24.35/9.95 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.35/9.95 new_esEs10(False, False) 24.35/9.95 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_primCmpInt(Neg(Zero), Neg(Zero)) 24.35/9.95 new_esEs27(x0, x1, app(ty_Ratio, x2)) 24.35/9.95 new_compare112(x0, x1, True, x2) 24.35/9.95 new_esEs25(x0, x1, ty_Double) 24.35/9.95 new_esEs5(Nothing, Nothing, x0) 24.35/9.95 new_ltEs20(x0, x1, ty_Integer) 24.35/9.95 new_ltEs7(x0, x1, ty_Bool) 24.35/9.95 new_esEs25(x0, x1, ty_@0) 24.35/9.95 new_esEs27(x0, x1, ty_Int) 24.35/9.95 new_primCmpInt(Pos(Zero), Neg(Zero)) 24.35/9.95 new_primCmpInt(Neg(Zero), Pos(Zero)) 24.35/9.95 new_ltEs7(x0, x1, ty_Ordering) 24.35/9.95 new_ltEs6(@2(x0, x1), @2(x2, x3), x4, x5) 24.35/9.95 new_esEs19(x0, x1, ty_Char) 24.35/9.95 new_lt18(x0, x1, x2, x3, x4) 24.35/9.95 new_primPlusNat1(Zero, x0) 24.35/9.95 new_primEqNat0(Succ(x0), Zero) 24.35/9.95 new_lt19(x0, x1, ty_@0) 24.35/9.95 new_esEs21(x0, x1, ty_Int) 24.35/9.95 new_ltEs13(Nothing, Just(x0), x1) 24.35/9.95 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 24.35/9.95 new_esEs20(x0, x1, app(ty_Ratio, x2)) 24.35/9.95 new_lt19(x0, x1, app(ty_Maybe, x2)) 24.35/9.95 new_esEs22(x0, x1, ty_Integer) 24.35/9.95 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 24.35/9.95 new_ltEs5(True, True) 24.35/9.95 new_ltEs4(x0, x1, x2) 24.35/9.95 new_compare28(x0, x1, x2) 24.35/9.95 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 24.35/9.95 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 24.35/9.95 new_compare15(x0, x1, True, x2, x3) 24.35/9.95 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.35/9.95 new_esEs21(x0, x1, ty_Char) 24.35/9.95 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 24.35/9.95 new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 24.35/9.95 new_lt5(x0, x1, ty_Double) 24.35/9.95 new_esEs27(x0, x1, ty_Char) 24.35/9.95 new_ltEs20(x0, x1, ty_Ordering) 24.35/9.95 new_esEs27(x0, x1, ty_Float) 24.35/9.95 new_lt5(x0, x1, ty_@0) 24.35/9.95 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 24.35/9.95 new_primPlusNat0(Zero, Succ(x0)) 24.35/9.95 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.35/9.95 new_esEs9(:%(x0, x1), :%(x2, x3), x4) 24.35/9.95 new_ltEs8(EQ, EQ) 24.35/9.95 new_compare25(x0, x1, True) 24.35/9.95 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.35/9.95 new_ltEs13(Just(x0), Just(x1), ty_Bool) 24.35/9.95 new_esEs24(x0, x1, ty_@0) 24.35/9.95 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 24.35/9.95 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.35/9.95 new_esEs19(x0, x1, ty_Float) 24.35/9.95 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.95 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 24.35/9.95 new_esEs21(x0, x1, ty_Bool) 24.35/9.95 new_esEs26(x0, x1, app(ty_Maybe, x2)) 24.35/9.95 new_esEs24(x0, x1, app(ty_[], x2)) 24.35/9.95 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 24.35/9.95 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 24.35/9.95 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 24.35/9.95 new_esEs28(x0, x1, ty_Bool) 24.35/9.95 new_compare32(x0, x1, ty_Ordering) 24.35/9.95 new_esEs20(x0, x1, ty_Integer) 24.35/9.95 new_ltEs15(x0, x1) 24.35/9.95 new_compare14(x0, x1) 24.35/9.95 new_esEs5(Just(x0), Just(x1), ty_@0) 24.35/9.95 new_esEs19(x0, x1, ty_Double) 24.35/9.95 new_ltEs21(x0, x1, ty_Integer) 24.35/9.95 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 24.35/9.95 new_ltEs9(x0, x1) 24.35/9.95 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 24.35/9.95 new_esEs19(x0, x1, ty_Ordering) 24.35/9.95 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.95 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_primMulNat0(Zero, Zero) 24.35/9.95 new_compare32(x0, x1, ty_Double) 24.35/9.95 new_compare26(x0, x1, True, x2, x3, x4) 24.35/9.95 new_compare23(Right(x0), Right(x1), False, x2, x3) 24.35/9.95 new_lt10(x0, x1, x2, x3) 24.35/9.95 new_esEs19(x0, x1, ty_Int) 24.35/9.95 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.95 new_primCompAux0(x0, GT) 24.35/9.95 new_esEs18(x0, x1, ty_Double) 24.35/9.95 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 24.35/9.95 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_ltEs13(Just(x0), Nothing, x1) 24.35/9.95 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.95 new_esEs27(x0, x1, ty_Bool) 24.35/9.95 new_compare32(x0, x1, ty_Char) 24.35/9.95 new_esEs20(x0, x1, app(ty_[], x2)) 24.35/9.95 new_lt15(x0, x1, x2) 24.35/9.95 new_lt19(x0, x1, app(ty_Ratio, x2)) 24.35/9.95 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.95 new_esEs21(x0, x1, ty_Integer) 24.35/9.95 new_ltEs13(Nothing, Nothing, x0) 24.35/9.95 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.95 new_esEs27(x0, x1, app(ty_Maybe, x2)) 24.35/9.95 new_primEqNat0(Succ(x0), Succ(x1)) 24.35/9.95 new_ltEs13(Just(x0), Just(x1), ty_Float) 24.35/9.95 new_esEs21(x0, x1, ty_Float) 24.35/9.95 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 24.35/9.95 new_esEs5(Just(x0), Just(x1), ty_Integer) 24.35/9.95 new_primPlusNat0(Zero, Zero) 24.35/9.95 new_esEs26(x0, x1, app(ty_[], x2)) 24.35/9.95 new_compare32(x0, x1, ty_Int) 24.35/9.95 new_compare6(Integer(x0), Integer(x1)) 24.35/9.95 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 24.35/9.95 new_ltEs7(x0, x1, ty_Float) 24.35/9.95 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 24.35/9.95 new_not(True) 24.35/9.95 new_esEs18(x0, x1, ty_Int) 24.35/9.95 new_ltEs21(x0, x1, ty_@0) 24.35/9.95 new_esEs20(x0, x1, ty_@0) 24.35/9.95 new_primPlusNat0(Succ(x0), Zero) 24.35/9.95 new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.95 new_esEs28(x0, x1, app(ty_Maybe, x2)) 24.35/9.95 new_lt19(x0, x1, ty_Bool) 24.35/9.95 new_asAs(True, x0) 24.35/9.95 new_esEs21(x0, x1, app(ty_Ratio, x2)) 24.35/9.95 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.95 new_compare23(Left(x0), Right(x1), False, x2, x3) 24.35/9.95 new_compare23(Right(x0), Left(x1), False, x2, x3) 24.35/9.95 new_esEs25(x0, x1, ty_Float) 24.35/9.95 new_esEs21(x0, x1, app(ty_Maybe, x2)) 24.35/9.95 new_esEs25(x0, x1, app(ty_Maybe, x2)) 24.35/9.95 new_esEs17(LT, EQ) 24.35/9.95 new_esEs17(EQ, LT) 24.35/9.95 new_esEs27(x0, x1, ty_Integer) 24.35/9.95 new_lt7(x0, x1) 24.35/9.95 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.35/9.95 new_pePe(False, x0) 24.35/9.95 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.95 new_pePe(True, x0) 24.35/9.95 new_compare30(x0, x1, x2, x3, x4) 24.35/9.95 new_esEs28(x0, x1, ty_Char) 24.35/9.95 new_ltEs8(GT, LT) 24.35/9.95 new_esEs18(x0, x1, ty_Char) 24.35/9.95 new_primMulNat0(Zero, Succ(x0)) 24.35/9.95 new_ltEs8(LT, GT) 24.35/9.95 new_esEs17(GT, GT) 24.35/9.95 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.95 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.95 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 24.35/9.95 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 24.35/9.95 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 24.35/9.95 new_lt19(x0, x1, ty_Integer) 24.35/9.95 new_esEs28(x0, x1, ty_Int) 24.35/9.95 new_ltEs5(False, False) 24.35/9.95 new_ltEs20(x0, x1, ty_Float) 24.35/9.95 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.95 new_esEs17(EQ, EQ) 24.35/9.95 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 24.35/9.95 new_lt20(x0, x1, ty_Float) 24.35/9.95 new_esEs13([], :(x0, x1), x2) 24.35/9.95 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.95 new_ltEs20(x0, x1, ty_@0) 24.35/9.95 new_esEs27(x0, x1, ty_Ordering) 24.35/9.95 new_lt5(x0, x1, ty_Ordering) 24.35/9.95 new_ltEs21(x0, x1, ty_Bool) 24.35/9.95 new_esEs12(x0, x1) 24.35/9.95 new_esEs20(x0, x1, ty_Bool) 24.35/9.95 new_primCmpInt(Pos(Zero), Pos(Zero)) 24.35/9.95 new_lt13(x0, x1) 24.35/9.95 new_esEs28(x0, x1, ty_@0) 24.35/9.95 new_esEs4(Left(x0), Right(x1), x2, x3) 24.35/9.95 new_esEs4(Right(x0), Left(x1), x2, x3) 24.35/9.95 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 24.35/9.95 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.35/9.95 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 24.35/9.95 new_esEs16(Char(x0), Char(x1)) 24.35/9.95 new_compare27(x0, x1, True, x2, x3) 24.35/9.95 new_esEs25(x0, x1, app(ty_Ratio, x2)) 24.35/9.95 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_esEs13(:(x0, x1), [], x2) 24.35/9.95 new_esEs13([], [], x0) 24.35/9.95 new_esEs19(x0, x1, app(ty_Maybe, x2)) 24.35/9.95 new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_esEs5(Nothing, Just(x0), x1) 24.35/9.95 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.95 new_compare29(x0, x1, False, x2) 24.35/9.95 new_esEs20(x0, x1, ty_Int) 24.35/9.95 new_ltEs21(x0, x1, app(ty_[], x2)) 24.35/9.95 new_esEs20(x0, x1, ty_Char) 24.35/9.95 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_compare32(x0, x1, ty_Integer) 24.35/9.95 new_ltEs19(x0, x1, ty_Float) 24.35/9.95 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.35/9.95 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 24.35/9.95 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 24.35/9.95 new_compare19(x0, x1, x2, x3) 24.35/9.95 new_ltEs21(x0, x1, ty_Char) 24.35/9.95 new_esEs26(x0, x1, ty_Float) 24.35/9.95 new_esEs21(x0, x1, ty_@0) 24.35/9.95 new_esEs18(x0, x1, ty_Bool) 24.35/9.95 new_lt5(x0, x1, app(ty_Ratio, x2)) 24.35/9.95 new_esEs19(x0, x1, app(ty_Ratio, x2)) 24.35/9.95 new_primCmpNat0(Succ(x0), Succ(x1)) 24.35/9.95 new_ltEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 24.35/9.95 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.95 new_compare32(x0, x1, ty_@0) 24.35/9.95 new_compare([], :(x0, x1), x2) 24.35/9.95 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.95 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 24.35/9.95 new_lt5(x0, x1, ty_Bool) 24.35/9.95 new_lt19(x0, x1, ty_Int) 24.35/9.95 new_esEs13(:(x0, x1), :(x2, x3), x4) 24.35/9.95 new_esEs18(x0, x1, app(ty_Maybe, x2)) 24.35/9.95 new_lt20(x0, x1, ty_Bool) 24.35/9.95 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.95 new_ltEs21(x0, x1, ty_Int) 24.35/9.95 new_esEs5(Just(x0), Just(x1), ty_Ordering) 24.35/9.95 new_compare32(x0, x1, app(ty_Ratio, x2)) 24.35/9.95 new_compare23(Left(x0), Left(x1), False, x2, x3) 24.35/9.95 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 24.35/9.95 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 24.35/9.95 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 24.35/9.95 new_esEs15(Float(x0, x1), Float(x2, x3)) 24.35/9.95 new_esEs25(x0, x1, ty_Integer) 24.35/9.95 new_ltEs20(x0, x1, app(ty_[], x2)) 24.35/9.95 new_esEs19(x0, x1, app(ty_[], x2)) 24.35/9.95 new_primMulInt(Neg(x0), Neg(x1)) 24.35/9.95 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_esEs20(x0, x1, ty_Float) 24.35/9.95 new_compare11(x0, x1, False, x2, x3, x4) 24.35/9.95 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 24.35/9.95 new_esEs14(Integer(x0), Integer(x1)) 24.35/9.95 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 24.35/9.95 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 24.35/9.95 new_lt6(x0, x1) 24.35/9.95 new_compare25(x0, x1, False) 24.35/9.95 new_esEs8(@0, @0) 24.35/9.95 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.95 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.95 new_esEs11(Double(x0, x1), Double(x2, x3)) 24.35/9.95 new_esEs5(Just(x0), Just(x1), ty_Float) 24.35/9.95 new_compare111(x0, x1, False) 24.35/9.95 new_lt19(x0, x1, ty_Char) 24.35/9.95 new_ltEs13(Just(x0), Just(x1), ty_@0) 24.35/9.95 new_primEqNat0(Zero, Zero) 24.35/9.95 new_ltEs13(Just(x0), Just(x1), ty_Double) 24.35/9.95 new_ltEs19(x0, x1, ty_Int) 24.35/9.95 new_not(False) 24.35/9.95 new_esEs18(x0, x1, ty_Integer) 24.35/9.95 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.95 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 24.35/9.95 new_lt19(x0, x1, ty_Float) 24.35/9.95 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 24.35/9.95 new_ltEs8(GT, EQ) 24.35/9.95 new_ltEs8(EQ, GT) 24.35/9.95 new_esEs5(Just(x0), Just(x1), ty_Char) 24.35/9.95 new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.95 new_esEs17(LT, LT) 24.35/9.95 new_esEs24(x0, x1, ty_Int) 24.35/9.95 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 24.35/9.95 new_compare32(x0, x1, app(ty_Maybe, x2)) 24.35/9.95 new_ltEs21(x0, x1, ty_Float) 24.35/9.95 new_ltEs7(x0, x1, ty_Double) 24.35/9.95 new_compare31(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 24.35/9.95 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 24.35/9.95 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.95 new_compare110(x0, x1, False, x2, x3) 24.35/9.95 new_lt12(x0, x1) 24.35/9.95 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 24.35/9.95 new_esEs5(Just(x0), Just(x1), ty_Int) 24.35/9.95 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 24.35/9.95 new_lt5(x0, x1, ty_Float) 24.35/9.95 new_esEs24(x0, x1, ty_Char) 24.35/9.95 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 24.35/9.95 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 24.35/9.95 new_lt17(x0, x1) 24.35/9.95 new_compare32(x0, x1, app(app(ty_@2, x2), x3)) 24.35/9.95 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 24.35/9.95 new_lt9(x0, x1, x2) 24.35/9.95 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 24.35/9.95 new_esEs27(x0, x1, ty_Double) 24.35/9.95 new_lt19(x0, x1, app(ty_[], x2)) 24.35/9.95 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 24.35/9.95 new_primMulInt(Pos(x0), Neg(x1)) 24.35/9.95 new_primMulInt(Neg(x0), Pos(x1)) 24.35/9.95 new_esEs21(x0, x1, ty_Double) 24.35/9.95 new_lt5(x0, x1, ty_Char) 24.35/9.95 new_esEs19(x0, x1, ty_@0) 24.35/9.95 new_esEs28(x0, x1, ty_Integer) 24.35/9.95 new_lt20(x0, x1, ty_Integer) 24.35/9.95 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 24.35/9.95 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 24.35/9.95 new_esEs10(False, True) 24.35/9.95 new_esEs10(True, False) 24.35/9.95 new_compare32(x0, x1, app(ty_[], x2)) 24.35/9.95 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 24.35/9.95 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 24.35/9.95 new_esEs24(x0, x1, ty_Float) 24.35/9.95 new_ltEs19(x0, x1, app(ty_[], x2)) 24.35/9.95 new_esEs18(x0, x1, ty_Ordering) 24.35/9.95 new_esEs28(x0, x1, ty_Ordering) 24.35/9.95 new_lt5(x0, x1, ty_Int) 24.35/9.95 new_esEs25(x0, x1, ty_Bool) 24.35/9.95 new_esEs27(x0, x1, ty_@0) 24.35/9.95 new_esEs5(Just(x0), Just(x1), ty_Bool) 24.35/9.95 new_primCmpNat0(Zero, Zero) 24.35/9.95 new_compare18(x0, x1, False) 24.35/9.95 new_asAs(False, x0) 24.35/9.95 24.35/9.95 We have to consider all minimal (P,Q,R)-chains. 24.35/9.95 ---------------------------------------- 24.35/9.95 24.35/9.95 (36) QDPSizeChangeProof (EQUIVALENT) 24.35/9.95 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. 24.35/9.95 24.35/9.95 From the DPs we obtained the following set of size-change graphs: 24.35/9.95 *new_compare0(:(xuu52000, xuu52001), :(xuu53000, xuu53001), h) -> new_primCompAux(xuu52000, xuu53000, new_compare(xuu52001, xuu53001, h), h) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare0(:(xuu52000, xuu52001), :(xuu53000, xuu53001), h) -> new_compare0(xuu52001, xuu53001, h) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare5(xuu52000, xuu53000, hb, hc, hd) -> new_compare22(xuu52000, xuu53000, new_esEs7(xuu52000, xuu53000, hb, hc, hd), hb, hc, hd) 24.35/9.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), eh, app(ty_Maybe, fd)) -> new_ltEs1(xuu52001, xuu53001, fd) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), app(app(ty_@2, gh), ha), gd) -> new_compare21(xuu52000, xuu53000, new_esEs6(xuu52000, xuu53000, gh, ha), gh, ha) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), app(app(ty_Either, ge), gf), gd) -> new_compare2(xuu52000, xuu53000, new_esEs4(xuu52000, xuu53000, ge, gf), ge, gf) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), eh, app(app(ty_@2, ff), fg)) -> new_ltEs2(xuu52001, xuu53001, ff, fg) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare21(xuu52000, xuu53000, False, gh, ha) -> new_ltEs2(xuu52000, xuu53000, gh, ha) 24.35/9.95 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), eh, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs3(xuu52001, xuu53001, fh, ga, gb) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_lt2(xuu52000, xuu53000, gh, ha) -> new_compare21(xuu52000, xuu53000, new_esEs6(xuu52000, xuu53000, gh, ha), gh, ha) 24.35/9.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_lt(xuu52000, xuu53000, gc) -> new_compare0(xuu52000, xuu53000, gc) 24.35/9.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs1(Just(xuu52000), Just(xuu53000), app(ty_Maybe, eb)) -> new_ltEs1(xuu52000, xuu53000, eb) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), app(ty_Maybe, gg), gd) -> new_compare20(xuu52000, xuu53000, new_esEs5(xuu52000, xuu53000, gg), gg) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs1(Just(xuu52000), Just(xuu53000), app(app(ty_@2, ec), ed)) -> new_ltEs2(xuu52000, xuu53000, ec, ed) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs1(Just(xuu52000), Just(xuu53000), app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs3(xuu52000, xuu53000, ee, ef, eg) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_lt3(xuu52000, xuu53000, hb, hc, hd) -> new_compare22(xuu52000, xuu53000, new_esEs7(xuu52000, xuu53000, hb, hc, hd), hb, hc, hd) 24.35/9.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 24.35/9.95 24.35/9.95 24.35/9.95 *new_lt1(xuu52000, xuu53000, gg) -> new_compare20(xuu52000, xuu53000, new_esEs5(xuu52000, xuu53000, gg), gg) 24.35/9.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, hf, app(ty_Maybe, bab)) -> new_ltEs1(xuu52002, xuu53002, bab) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), eh, app(app(ty_Either, fb), fc)) -> new_ltEs0(xuu52001, xuu53001, fb, fc) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, hf, app(app(ty_@2, bac), bad)) -> new_ltEs2(xuu52002, xuu53002, bac, bad) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, hf, app(app(app(ty_@3, bae), baf), bag)) -> new_ltEs3(xuu52002, xuu53002, bae, baf, bag) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs1(Just(xuu52000), Just(xuu53000), app(app(ty_Either, dh), ea)) -> new_ltEs0(xuu52000, xuu53000, dh, ea) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs1(Just(xuu52000), Just(xuu53000), app(ty_[], dg)) -> new_ltEs(xuu52000, xuu53000, dg) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, hf, app(app(ty_Either, hh), baa)) -> new_ltEs0(xuu52002, xuu53002, hh, baa) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs(:(xuu52000, xuu52001), :(xuu53000, xuu53001), h) -> new_primCompAux(xuu52000, xuu53000, new_compare(xuu52001, xuu53001, h), h) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(:(xuu52000, xuu52001)), Left(:(xuu53000, xuu53001)), False, app(ty_[], h), ba) -> new_primCompAux(xuu52000, xuu53000, new_compare(xuu52001, xuu53001, h), h) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs(:(xuu52000, xuu52001), :(xuu53000, xuu53001), h) -> new_compare0(xuu52001, xuu53001, h) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare20(xuu52000, xuu53000, False, gg) -> new_ltEs1(xuu52000, xuu53000, gg) 24.35/9.95 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_primCompAux(xuu52000, xuu53000, xuu211, app(app(ty_@2, bfa), bfb)) -> new_compare4(xuu52000, xuu53000, bfa, bfb) 24.35/9.95 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), eh, app(ty_[], fa)) -> new_ltEs(xuu52001, xuu53001, fa) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, hf, app(ty_[], hg)) -> new_ltEs(xuu52002, xuu53002, hg) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare22(xuu52000, xuu53000, False, hb, hc, hd) -> new_ltEs3(xuu52000, xuu53000, hb, hc, hd) 24.35/9.95 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), app(app(app(ty_@3, hb), hc), hd), gd) -> new_compare22(xuu52000, xuu53000, new_esEs7(xuu52000, xuu53000, hb, hc, hd), hb, hc, hd) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs2(@2(xuu52000, xuu52001), @2(xuu53000, xuu53001), app(ty_[], gc), gd) -> new_compare0(xuu52000, xuu53000, gc) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, app(app(app(ty_@3, hb), hc), hd)), gd), ba) -> new_compare22(xuu52000, xuu53000, new_esEs7(xuu52000, xuu53000, hb, hc, hd), hb, hc, hd) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 24.35/9.95 24.35/9.95 24.35/9.95 *new_lt0(xuu52000, xuu53000, ge, gf) -> new_compare2(xuu52000, xuu53000, new_esEs4(xuu52000, xuu53000, ge, gf), ge, gf) 24.35/9.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare1(xuu52000, xuu53000, ge, gf) -> new_compare2(xuu52000, xuu53000, new_esEs4(xuu52000, xuu53000, ge, gf), ge, gf) 24.35/9.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, app(app(ty_Either, ge), gf)), gd), ba) -> new_compare2(xuu52000, xuu53000, new_esEs4(xuu52000, xuu53000, ge, gf), ge, gf) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_primCompAux(xuu52000, xuu53000, xuu211, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare5(xuu52000, xuu53000, bfc, bfd, bfe) 24.35/9.95 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_primCompAux(xuu52000, xuu53000, xuu211, app(ty_[], bee)) -> new_compare0(xuu52000, xuu53000, bee) 24.35/9.95 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, app(app(ty_@2, gh), ha)), gd), ba) -> new_compare21(xuu52000, xuu53000, new_esEs6(xuu52000, xuu53000, gh, ha), gh, ha) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare4(xuu52000, xuu53000, gh, ha) -> new_compare21(xuu52000, xuu53000, new_esEs6(xuu52000, xuu53000, gh, ha), gh, ha) 24.35/9.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, app(ty_Maybe, gg)), gd), ba) -> new_compare20(xuu52000, xuu53000, new_esEs5(xuu52000, xuu53000, gg), gg) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare3(xuu52000, xuu53000, gg) -> new_compare20(xuu52000, xuu53000, new_esEs5(xuu52000, xuu53000, gg), gg) 24.35/9.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_primCompAux(xuu52000, xuu53000, xuu211, app(ty_Maybe, beh)) -> new_compare3(xuu52000, xuu53000, beh) 24.35/9.95 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_primCompAux(xuu52000, xuu53000, xuu211, app(app(ty_Either, bef), beg)) -> new_compare1(xuu52000, xuu53000, bef, beg) 24.35/9.95 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs0(Left(xuu52000), Left(xuu53000), app(ty_Maybe, bf), bc) -> new_ltEs1(xuu52000, xuu53000, bf) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs0(Right(xuu52000), Right(xuu53000), cd, app(ty_Maybe, da)) -> new_ltEs1(xuu52000, xuu53000, da) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs0(Left(xuu52000), Left(xuu53000), app(app(ty_@2, bg), bh), bc) -> new_ltEs2(xuu52000, xuu53000, bg, bh) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs0(Right(xuu52000), Right(xuu53000), cd, app(app(ty_@2, db), dc)) -> new_ltEs2(xuu52000, xuu53000, db, dc) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs0(Right(xuu52000), Right(xuu53000), cd, app(app(app(ty_@3, dd), de), df)) -> new_ltEs3(xuu52000, xuu53000, dd, de, df) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs0(Left(xuu52000), Left(xuu53000), app(app(app(ty_@3, ca), cb), cc), bc) -> new_ltEs3(xuu52000, xuu53000, ca, cb, cc) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs0(Right(xuu52000), Right(xuu53000), cd, app(app(ty_Either, cf), cg)) -> new_ltEs0(xuu52000, xuu53000, cf, cg) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs0(Left(xuu52000), Left(xuu53000), app(app(ty_Either, bd), be), bc) -> new_ltEs0(xuu52000, xuu53000, bd, be) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs0(Right(xuu52000), Right(xuu53000), cd, app(ty_[], ce)) -> new_ltEs(xuu52000, xuu53000, ce) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs0(Left(xuu52000), Left(xuu53000), app(ty_[], bb), bc) -> new_ltEs(xuu52000, xuu53000, bb) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(Left(xuu52000)), Left(Left(xuu53000)), False, app(app(ty_Either, app(ty_Maybe, bf)), bc), ba) -> new_ltEs1(xuu52000, xuu53000, bf) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), hf), app(ty_Maybe, bab)), ba) -> new_ltEs1(xuu52002, xuu53002, bab) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Right(xuu5200), Right(xuu5300), False, bdc, app(ty_Maybe, bdg)) -> new_ltEs1(xuu5200, xuu5300, bdg) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(Just(xuu52000)), Left(Just(xuu53000)), False, app(ty_Maybe, app(ty_Maybe, eb)), ba) -> new_ltEs1(xuu52000, xuu53000, eb) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(Right(xuu52000)), Left(Right(xuu53000)), False, app(app(ty_Either, cd), app(ty_Maybe, da)), ba) -> new_ltEs1(xuu52000, xuu53000, da) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, eh), app(ty_Maybe, fd)), ba) -> new_ltEs1(xuu52001, xuu53001, fd) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(Right(xuu52000)), Left(Right(xuu53000)), False, app(app(ty_Either, cd), app(app(ty_@2, db), dc)), ba) -> new_ltEs2(xuu52000, xuu53000, db, dc) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(Left(xuu52000)), Left(Left(xuu53000)), False, app(app(ty_Either, app(app(ty_@2, bg), bh)), bc), ba) -> new_ltEs2(xuu52000, xuu53000, bg, bh) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Right(xuu5200), Right(xuu5300), False, bdc, app(app(ty_@2, bdh), bea)) -> new_ltEs2(xuu5200, xuu5300, bdh, bea) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), hf), app(app(ty_@2, bac), bad)), ba) -> new_ltEs2(xuu52002, xuu53002, bac, bad) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(Just(xuu52000)), Left(Just(xuu53000)), False, app(ty_Maybe, app(app(ty_@2, ec), ed)), ba) -> new_ltEs2(xuu52000, xuu53000, ec, ed) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, eh), app(app(ty_@2, ff), fg)), ba) -> new_ltEs2(xuu52001, xuu53001, ff, fg) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), hf), app(app(app(ty_@3, bae), baf), bag)), ba) -> new_ltEs3(xuu52002, xuu53002, bae, baf, bag) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, eh), app(app(app(ty_@3, fh), ga), gb)), ba) -> new_ltEs3(xuu52001, xuu53001, fh, ga, gb) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(Right(xuu52000)), Left(Right(xuu53000)), False, app(app(ty_Either, cd), app(app(app(ty_@3, dd), de), df)), ba) -> new_ltEs3(xuu52000, xuu53000, dd, de, df) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Right(xuu5200), Right(xuu5300), False, bdc, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs3(xuu5200, xuu5300, beb, bec, bed) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(Just(xuu52000)), Left(Just(xuu53000)), False, app(ty_Maybe, app(app(app(ty_@3, ee), ef), eg)), ba) -> new_ltEs3(xuu52000, xuu53000, ee, ef, eg) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(Left(xuu52000)), Left(Left(xuu53000)), False, app(app(ty_Either, app(app(app(ty_@3, ca), cb), cc)), bc), ba) -> new_ltEs3(xuu52000, xuu53000, ca, cb, cc) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), app(app(app(ty_@3, bch), bda), bdb), hf, bba) -> new_lt3(xuu52000, xuu53000, bch, bda, bdb) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, app(app(app(ty_@3, bbg), bbh), bca), bba) -> new_lt3(xuu52001, xuu53001, bbg, bbh, bca) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, app(app(ty_Either, bbb), bbc), bba) -> new_lt0(xuu52001, xuu53001, bbb, bbc) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), app(app(ty_Either, bcc), bcd), hf, bba) -> new_lt0(xuu52000, xuu53000, bcc, bcd) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, app(ty_[], bah), bba) -> new_lt(xuu52001, xuu53001, bah) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), app(ty_[], bcb), hf, bba) -> new_lt(xuu52000, xuu53000, bcb) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), app(ty_Maybe, bce), hf, bba) -> new_lt1(xuu52000, xuu53000, bce) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, app(ty_Maybe, bbd), bba) -> new_lt1(xuu52001, xuu53001, bbd) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), app(app(ty_@2, bcf), bcg), hf, bba) -> new_lt2(xuu52000, xuu53000, bcf, bcg) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_ltEs3(@3(xuu52000, xuu52001, xuu52002), @3(xuu53000, xuu53001, xuu53002), he, app(app(ty_@2, bbe), bbf), bba) -> new_lt2(xuu52001, xuu53001, bbe, bbf) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, eh), app(app(ty_Either, fb), fc)), ba) -> new_ltEs0(xuu52001, xuu53001, fb, fc) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(Right(xuu52000)), Left(Right(xuu53000)), False, app(app(ty_Either, cd), app(app(ty_Either, cf), cg)), ba) -> new_ltEs0(xuu52000, xuu53000, cf, cg) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(Left(xuu52000)), Left(Left(xuu53000)), False, app(app(ty_Either, app(app(ty_Either, bd), be)), bc), ba) -> new_ltEs0(xuu52000, xuu53000, bd, be) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(Just(xuu52000)), Left(Just(xuu53000)), False, app(ty_Maybe, app(app(ty_Either, dh), ea)), ba) -> new_ltEs0(xuu52000, xuu53000, dh, ea) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), hf), app(app(ty_Either, hh), baa)), ba) -> new_ltEs0(xuu52002, xuu53002, hh, baa) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Right(xuu5200), Right(xuu5300), False, bdc, app(app(ty_Either, bde), bdf)) -> new_ltEs0(xuu5200, xuu5300, bde, bdf) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, eh), app(ty_[], fa)), ba) -> new_ltEs(xuu52001, xuu53001, fa) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Right(xuu5200), Right(xuu5300), False, bdc, app(ty_[], bdd)) -> new_ltEs(xuu5200, xuu5300, bdd) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(Right(xuu52000)), Left(Right(xuu53000)), False, app(app(ty_Either, cd), app(ty_[], ce)), ba) -> new_ltEs(xuu52000, xuu53000, ce) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), hf), app(ty_[], hg)), ba) -> new_ltEs(xuu52002, xuu53002, hg) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(Left(xuu52000)), Left(Left(xuu53000)), False, app(app(ty_Either, app(ty_[], bb)), bc), ba) -> new_ltEs(xuu52000, xuu53000, bb) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(Just(xuu52000)), Left(Just(xuu53000)), False, app(ty_Maybe, app(ty_[], dg)), ba) -> new_ltEs(xuu52000, xuu53000, dg) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(:(xuu52000, xuu52001)), Left(:(xuu53000, xuu53001)), False, app(ty_[], h), ba) -> new_compare0(xuu52001, xuu53001, h) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@2(xuu52000, xuu52001)), Left(@2(xuu53000, xuu53001)), False, app(app(ty_@2, app(ty_[], gc)), gd), ba) -> new_compare0(xuu52000, xuu53000, gc) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bch), bda), bdb)), hf), bba), ba) -> new_lt3(xuu52000, xuu53000, bch, bda, bdb) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), app(app(app(ty_@3, bbg), bbh), bca)), bba), ba) -> new_lt3(xuu52001, xuu53001, bbg, bbh, bca) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, app(app(ty_Either, bcc), bcd)), hf), bba), ba) -> new_lt0(xuu52000, xuu53000, bcc, bcd) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), app(app(ty_Either, bbb), bbc)), bba), ba) -> new_lt0(xuu52001, xuu53001, bbb, bbc) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), app(ty_[], bah)), bba), ba) -> new_lt(xuu52001, xuu53001, bah) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, app(ty_[], bcb)), hf), bba), ba) -> new_lt(xuu52000, xuu53000, bcb) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, app(ty_Maybe, bce)), hf), bba), ba) -> new_lt1(xuu52000, xuu53000, bce) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), app(ty_Maybe, bbd)), bba), ba) -> new_lt1(xuu52001, xuu53001, bbd) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, app(app(ty_@2, bcf), bcg)), hf), bba), ba) -> new_lt2(xuu52000, xuu53000, bcf, bcg) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_compare2(Left(@3(xuu52000, xuu52001, xuu52002)), Left(@3(xuu53000, xuu53001, xuu53002)), False, app(app(app(ty_@3, he), app(app(ty_@2, bbe), bbf)), bba), ba) -> new_lt2(xuu52001, xuu53001, bbe, bbf) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 ---------------------------------------- 24.35/9.95 24.35/9.95 (37) 24.35/9.95 YES 24.35/9.95 24.35/9.95 ---------------------------------------- 24.35/9.95 24.35/9.95 (38) 24.35/9.95 Obligation: 24.35/9.95 Q DP problem: 24.35/9.95 The TRS P consists of the following rules: 24.35/9.95 24.35/9.95 new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(app(ty_@2, db), dc), bd) -> new_esEs2(xuu50001, xuu4001, db, dc) 24.35/9.95 new_esEs3(Left(xuu50000), Left(xuu4000), app(app(ty_Either, bcg), bch), bcb) -> new_esEs3(xuu50000, xuu4000, bcg, bch) 24.35/9.95 new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), bae, app(ty_[], bba)) -> new_esEs0(xuu50001, xuu4001, bba) 24.35/9.95 new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(ty_[], cg), bd) -> new_esEs0(xuu50001, xuu4001, cg) 24.35/9.95 new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(app(ty_@2, ec), ed)) -> new_esEs2(xuu50002, xuu4002, ec, ed) 24.35/9.95 new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(ty_[], ea)) -> new_esEs0(xuu50002, xuu4002, ea) 24.35/9.95 new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(xuu50002, xuu4002, df, dg, dh) 24.35/9.95 new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(ty_[], bde)) -> new_esEs0(xuu50000, xuu4000, bde) 24.35/9.95 new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), bae, app(app(ty_@2, bbc), bbd)) -> new_esEs2(xuu50001, xuu4001, bbc, bbd) 24.35/9.95 new_esEs0(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(ty_@2, fd), ff)) -> new_esEs2(xuu50000, xuu4000, fd, ff) 24.35/9.95 new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(ty_[], hg), hf) -> new_esEs0(xuu50000, xuu4000, hg) 24.35/9.95 new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(ty_Either, bac), bad), hf) -> new_esEs3(xuu50000, xuu4000, bac, bad) 24.35/9.95 new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(app(ty_@3, hc), hd), he), hf) -> new_esEs(xuu50000, xuu4000, hc, hd, he) 24.35/9.95 new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(ty_Maybe, bf), bc, bd) -> new_esEs1(xuu50000, xuu4000, bf) 24.35/9.95 new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(ty_Either, ca), cb), bc, bd) -> new_esEs3(xuu50000, xuu4000, ca, cb) 24.35/9.95 new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(app(ty_@2, bdg), bdh)) -> new_esEs2(xuu50000, xuu4000, bdg, bdh) 24.35/9.95 new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(ty_Maybe, da), bd) -> new_esEs1(xuu50001, xuu4001, da) 24.35/9.95 new_esEs0(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(ty_[], fb)) -> new_esEs0(xuu50000, xuu4000, fb) 24.35/9.95 new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(ty_@2, baa), bab), hf) -> new_esEs2(xuu50000, xuu4000, baa, bab) 24.35/9.95 new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(xuu50000, xuu4000, bea, beb) 24.35/9.95 new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(xuu50001, xuu4001, cd, ce, cf) 24.35/9.95 new_esEs3(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, bbg), bbh), bca), bcb) -> new_esEs(xuu50000, xuu4000, bbg, bbh, bca) 24.35/9.95 new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(app(ty_Either, dd), de), bd) -> new_esEs3(xuu50001, xuu4001, dd, de) 24.35/9.95 new_esEs0(:(xuu50000, xuu50001), :(xuu4000, xuu4001), ga) -> new_esEs0(xuu50001, xuu4001, ga) 24.35/9.95 new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(ty_@2, bg), bh), bc, bd) -> new_esEs2(xuu50000, xuu4000, bg, bh) 24.35/9.95 new_esEs1(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, gb), gc), gd)) -> new_esEs(xuu50000, xuu4000, gb, gc, gd) 24.35/9.95 new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), bae, app(app(ty_Either, bbe), bbf)) -> new_esEs3(xuu50001, xuu4001, bbe, bbf) 24.35/9.95 new_esEs0(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(ty_Maybe, fc)) -> new_esEs1(xuu50000, xuu4000, fc) 24.35/9.95 new_esEs1(Just(xuu50000), Just(xuu4000), app(ty_[], ge)) -> new_esEs0(xuu50000, xuu4000, ge) 24.35/9.95 new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), bae, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs(xuu50001, xuu4001, baf, bag, bah) 24.35/9.95 new_esEs3(Left(xuu50000), Left(xuu4000), app(ty_[], bcc), bcb) -> new_esEs0(xuu50000, xuu4000, bcc) 24.35/9.95 new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(app(ty_Either, ee), ef)) -> new_esEs3(xuu50002, xuu4002, ee, ef) 24.35/9.95 new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(xuu50000, xuu4000, bdb, bdc, bdd) 24.35/9.95 new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(ty_Maybe, bdf)) -> new_esEs1(xuu50000, xuu4000, bdf) 24.35/9.95 new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(ty_Maybe, eb)) -> new_esEs1(xuu50002, xuu4002, eb) 24.35/9.95 new_esEs1(Just(xuu50000), Just(xuu4000), app(app(ty_@2, gg), gh)) -> new_esEs2(xuu50000, xuu4000, gg, gh) 24.35/9.95 new_esEs3(Left(xuu50000), Left(xuu4000), app(app(ty_@2, bce), bcf), bcb) -> new_esEs2(xuu50000, xuu4000, bce, bcf) 24.35/9.95 new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(xuu50000, xuu4000, h, ba, bb) 24.35/9.95 new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), bae, app(ty_Maybe, bbb)) -> new_esEs1(xuu50001, xuu4001, bbb) 24.35/9.95 new_esEs0(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(xuu50000, xuu4000, eg, eh, fa) 24.35/9.95 new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(ty_Maybe, hh), hf) -> new_esEs1(xuu50000, xuu4000, hh) 24.35/9.95 new_esEs3(Left(xuu50000), Left(xuu4000), app(ty_Maybe, bcd), bcb) -> new_esEs1(xuu50000, xuu4000, bcd) 24.35/9.95 new_esEs1(Just(xuu50000), Just(xuu4000), app(ty_Maybe, gf)) -> new_esEs1(xuu50000, xuu4000, gf) 24.35/9.95 new_esEs1(Just(xuu50000), Just(xuu4000), app(app(ty_Either, ha), hb)) -> new_esEs3(xuu50000, xuu4000, ha, hb) 24.35/9.95 new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(ty_[], be), bc, bd) -> new_esEs0(xuu50000, xuu4000, be) 24.35/9.95 new_esEs0(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(ty_Either, fg), fh)) -> new_esEs3(xuu50000, xuu4000, fg, fh) 24.35/9.95 24.35/9.95 R is empty. 24.35/9.95 Q is empty. 24.35/9.95 We have to consider all minimal (P,Q,R)-chains. 24.35/9.95 ---------------------------------------- 24.35/9.95 24.35/9.95 (39) QDPSizeChangeProof (EQUIVALENT) 24.35/9.95 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. 24.35/9.95 24.35/9.95 From the DPs we obtained the following set of size-change graphs: 24.35/9.95 *new_esEs0(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(xuu50000, xuu4000, eg, eh, fa) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs0(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(ty_Either, fg), fh)) -> new_esEs3(xuu50000, xuu4000, fg, fh) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs0(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(ty_@2, fd), ff)) -> new_esEs2(xuu50000, xuu4000, fd, ff) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs1(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, gb), gc), gd)) -> new_esEs(xuu50000, xuu4000, gb, gc, gd) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs1(Just(xuu50000), Just(xuu4000), app(app(ty_Either, ha), hb)) -> new_esEs3(xuu50000, xuu4000, ha, hb) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs1(Just(xuu50000), Just(xuu4000), app(app(ty_@2, gg), gh)) -> new_esEs2(xuu50000, xuu4000, gg, gh) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs0(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(ty_Maybe, fc)) -> new_esEs1(xuu50000, xuu4000, fc) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs1(Just(xuu50000), Just(xuu4000), app(ty_[], ge)) -> new_esEs0(xuu50000, xuu4000, ge) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs1(Just(xuu50000), Just(xuu4000), app(ty_Maybe, gf)) -> new_esEs1(xuu50000, xuu4000, gf) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(app(ty_@3, hc), hd), he), hf) -> new_esEs(xuu50000, xuu4000, hc, hd, he) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), bae, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs(xuu50001, xuu4001, baf, bag, bah) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(ty_Either, bac), bad), hf) -> new_esEs3(xuu50000, xuu4000, bac, bad) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), bae, app(app(ty_Either, bbe), bbf)) -> new_esEs3(xuu50001, xuu4001, bbe, bbf) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), bae, app(app(ty_@2, bbc), bbd)) -> new_esEs2(xuu50001, xuu4001, bbc, bbd) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(ty_@2, baa), bab), hf) -> new_esEs2(xuu50000, xuu4000, baa, bab) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), bae, app(ty_[], bba)) -> new_esEs0(xuu50001, xuu4001, bba) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(ty_[], hg), hf) -> new_esEs0(xuu50000, xuu4000, hg) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), bae, app(ty_Maybe, bbb)) -> new_esEs1(xuu50001, xuu4001, bbb) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs2(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(ty_Maybe, hh), hf) -> new_esEs1(xuu50000, xuu4000, hh) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs3(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, bbg), bbh), bca), bcb) -> new_esEs(xuu50000, xuu4000, bbg, bbh, bca) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(xuu50000, xuu4000, bdb, bdc, bdd) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(xuu50002, xuu4002, df, dg, dh) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(xuu50001, xuu4001, cd, ce, cf) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(xuu50000, xuu4000, h, ba, bb) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs3(Left(xuu50000), Left(xuu4000), app(app(ty_Either, bcg), bch), bcb) -> new_esEs3(xuu50000, xuu4000, bcg, bch) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(xuu50000, xuu4000, bea, beb) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(app(ty_@2, bdg), bdh)) -> new_esEs2(xuu50000, xuu4000, bdg, bdh) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs3(Left(xuu50000), Left(xuu4000), app(app(ty_@2, bce), bcf), bcb) -> new_esEs2(xuu50000, xuu4000, bce, bcf) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(ty_[], bde)) -> new_esEs0(xuu50000, xuu4000, bde) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs3(Left(xuu50000), Left(xuu4000), app(ty_[], bcc), bcb) -> new_esEs0(xuu50000, xuu4000, bcc) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(ty_Maybe, bdf)) -> new_esEs1(xuu50000, xuu4000, bdf) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs3(Left(xuu50000), Left(xuu4000), app(ty_Maybe, bcd), bcb) -> new_esEs1(xuu50000, xuu4000, bcd) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(ty_Either, ca), cb), bc, bd) -> new_esEs3(xuu50000, xuu4000, ca, cb) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(app(ty_Either, dd), de), bd) -> new_esEs3(xuu50001, xuu4001, dd, de) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(app(ty_Either, ee), ef)) -> new_esEs3(xuu50002, xuu4002, ee, ef) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs0(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(ty_[], fb)) -> new_esEs0(xuu50000, xuu4000, fb) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs0(:(xuu50000, xuu50001), :(xuu4000, xuu4001), ga) -> new_esEs0(xuu50001, xuu4001, ga) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(app(ty_@2, db), dc), bd) -> new_esEs2(xuu50001, xuu4001, db, dc) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(app(ty_@2, ec), ed)) -> new_esEs2(xuu50002, xuu4002, ec, ed) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(ty_@2, bg), bh), bc, bd) -> new_esEs2(xuu50000, xuu4000, bg, bh) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(ty_[], cg), bd) -> new_esEs0(xuu50001, xuu4001, cg) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(ty_[], ea)) -> new_esEs0(xuu50002, xuu4002, ea) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(ty_[], be), bc, bd) -> new_esEs0(xuu50000, xuu4000, be) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(ty_Maybe, bf), bc, bd) -> new_esEs1(xuu50000, xuu4000, bf) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(ty_Maybe, da), bd) -> new_esEs1(xuu50001, xuu4001, da) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 24.35/9.95 24.35/9.95 24.35/9.95 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(ty_Maybe, eb)) -> new_esEs1(xuu50002, xuu4002, eb) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 24.35/9.95 24.35/9.95 24.35/9.95 ---------------------------------------- 24.35/9.95 24.35/9.95 (40) 24.35/9.95 YES 24.35/9.95 24.35/9.95 ---------------------------------------- 24.35/9.95 24.35/9.95 (41) 24.35/9.95 Obligation: 24.35/9.95 Q DP problem: 24.35/9.95 The TRS P consists of the following rules: 24.35/9.95 24.35/9.95 new_primEqNat(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat(xuu500000, xuu40000) 24.35/9.95 24.35/9.95 R is empty. 24.35/9.95 Q is empty. 24.35/9.95 We have to consider all minimal (P,Q,R)-chains. 24.35/9.95 ---------------------------------------- 24.35/9.95 24.35/9.95 (42) QDPSizeChangeProof (EQUIVALENT) 24.35/9.95 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. 24.35/9.95 24.35/9.95 From the DPs we obtained the following set of size-change graphs: 24.35/9.95 *new_primEqNat(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat(xuu500000, xuu40000) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2 24.35/9.95 24.35/9.95 24.35/9.95 ---------------------------------------- 24.35/9.95 24.35/9.95 (43) 24.35/9.95 YES 24.35/9.95 24.35/9.95 ---------------------------------------- 24.35/9.95 24.35/9.95 (44) 24.35/9.95 Obligation: 24.35/9.95 Q DP problem: 24.35/9.95 The TRS P consists of the following rules: 24.35/9.95 24.35/9.95 new_primMinusNat(Succ(xuu55200), Succ(xuu13600)) -> new_primMinusNat(xuu55200, xuu13600) 24.35/9.95 24.35/9.95 R is empty. 24.35/9.95 Q is empty. 24.35/9.95 We have to consider all minimal (P,Q,R)-chains. 24.35/9.95 ---------------------------------------- 24.35/9.95 24.35/9.95 (45) QDPSizeChangeProof (EQUIVALENT) 24.35/9.95 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. 24.35/9.95 24.35/9.95 From the DPs we obtained the following set of size-change graphs: 24.35/9.95 *new_primMinusNat(Succ(xuu55200), Succ(xuu13600)) -> new_primMinusNat(xuu55200, xuu13600) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2 24.35/9.95 24.35/9.95 24.35/9.95 ---------------------------------------- 24.35/9.95 24.35/9.95 (46) 24.35/9.95 YES 24.35/9.95 24.35/9.95 ---------------------------------------- 24.35/9.95 24.35/9.95 (47) 24.35/9.95 Obligation: 24.35/9.95 Q DP problem: 24.35/9.95 The TRS P consists of the following rules: 24.35/9.95 24.35/9.95 new_primPlusNat(Succ(xuu55200), Succ(xuu13600)) -> new_primPlusNat(xuu55200, xuu13600) 24.35/9.95 24.35/9.95 R is empty. 24.35/9.95 Q is empty. 24.35/9.95 We have to consider all minimal (P,Q,R)-chains. 24.35/9.95 ---------------------------------------- 24.35/9.95 24.35/9.95 (48) QDPSizeChangeProof (EQUIVALENT) 24.35/9.95 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. 24.35/9.95 24.35/9.95 From the DPs we obtained the following set of size-change graphs: 24.35/9.95 *new_primPlusNat(Succ(xuu55200), Succ(xuu13600)) -> new_primPlusNat(xuu55200, xuu13600) 24.35/9.95 The graph contains the following edges 1 > 1, 2 > 2 24.35/9.95 24.35/9.95 24.35/9.95 ---------------------------------------- 24.35/9.95 24.35/9.95 (49) 24.35/9.95 YES 24.39/10.66 EOF