22.22/10.11 YES 25.19/10.90 proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs 25.19/10.90 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 25.19/10.90 25.19/10.90 25.19/10.90 H-Termination with start terms of the given HASKELL could be proven: 25.19/10.90 25.19/10.90 (0) HASKELL 25.19/10.90 (1) LR [EQUIVALENT, 0 ms] 25.19/10.90 (2) HASKELL 25.19/10.90 (3) CR [EQUIVALENT, 0 ms] 25.19/10.90 (4) HASKELL 25.19/10.90 (5) IFR [EQUIVALENT, 0 ms] 25.19/10.90 (6) HASKELL 25.19/10.90 (7) BR [EQUIVALENT, 10 ms] 25.19/10.90 (8) HASKELL 25.19/10.90 (9) COR [EQUIVALENT, 0 ms] 25.19/10.90 (10) HASKELL 25.19/10.90 (11) LetRed [EQUIVALENT, 14 ms] 25.19/10.90 (12) HASKELL 25.19/10.90 (13) NumRed [SOUND, 0 ms] 25.19/10.90 (14) HASKELL 25.19/10.90 (15) Narrow [SOUND, 0 ms] 25.19/10.90 (16) AND 25.19/10.90 (17) QDP 25.19/10.90 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.19/10.90 (19) YES 25.19/10.90 (20) QDP 25.19/10.90 (21) QDPSizeChangeProof [EQUIVALENT, 116 ms] 25.19/10.90 (22) YES 25.19/10.90 (23) QDP 25.19/10.90 (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.19/10.90 (25) YES 25.19/10.90 (26) QDP 25.19/10.90 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.19/10.90 (28) YES 25.19/10.90 (29) QDP 25.19/10.90 (30) TransformationProof [EQUIVALENT, 1522 ms] 25.19/10.90 (31) QDP 25.19/10.90 (32) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.19/10.90 (33) YES 25.19/10.90 (34) QDP 25.19/10.90 (35) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.19/10.90 (36) YES 25.19/10.90 (37) QDP 25.19/10.90 (38) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.19/10.90 (39) YES 25.19/10.90 25.19/10.90 25.19/10.90 ---------------------------------------- 25.19/10.90 25.19/10.90 (0) 25.19/10.90 Obligation: 25.19/10.90 mainModule Main 25.19/10.90 module FiniteMap where { 25.19/10.90 import qualified Main; 25.19/10.90 import qualified Maybe; 25.19/10.90 import qualified Prelude; 25.19/10.90 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 25.19/10.90 25.19/10.90 instance (Eq a, Eq b) => Eq FiniteMap a b where { 25.19/10.90 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.19/10.90 } 25.19/10.90 fmToList :: FiniteMap b a -> [(b,a)]; 25.19/10.90 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 25.19/10.90 25.19/10.90 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 25.19/10.90 foldFM k z EmptyFM = z; 25.19/10.90 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.19/10.90 25.19/10.90 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 25.19/10.90 lookupFM EmptyFM key = Nothing; 25.19/10.90 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 25.19/10.90 | key_to_find > key = lookupFM fm_r key_to_find 25.19/10.90 | otherwise = Just elt; 25.19/10.90 25.19/10.90 lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; 25.19/10.90 lookupWithDefaultFM fm deflt key = case lookupFM fm key of { 25.19/10.90 Nothing-> deflt; 25.19/10.90 Just elt-> elt; 25.19/10.90 } ; 25.19/10.90 25.19/10.90 sizeFM :: FiniteMap b a -> Int; 25.19/10.90 sizeFM EmptyFM = 0; 25.19/10.90 sizeFM (Branch _ _ size _ _) = size; 25.19/10.90 25.19/10.90 } 25.19/10.90 module Maybe where { 25.19/10.90 import qualified FiniteMap; 25.19/10.90 import qualified Main; 25.19/10.90 import qualified Prelude; 25.19/10.90 } 25.19/10.90 module Main where { 25.19/10.90 import qualified FiniteMap; 25.19/10.90 import qualified Maybe; 25.19/10.90 import qualified Prelude; 25.19/10.90 } 25.19/10.90 25.19/10.90 ---------------------------------------- 25.19/10.90 25.19/10.90 (1) LR (EQUIVALENT) 25.19/10.90 Lambda Reductions: 25.19/10.90 The following Lambda expression 25.19/10.90 "\keyeltrest->(key,elt) : rest" 25.19/10.90 is transformed to 25.19/10.90 "fmToList0 key elt rest = (key,elt) : rest; 25.19/10.90 " 25.19/10.90 25.19/10.90 ---------------------------------------- 25.19/10.90 25.19/10.90 (2) 25.19/10.90 Obligation: 25.19/10.90 mainModule Main 25.19/10.90 module FiniteMap where { 25.19/10.90 import qualified Main; 25.19/10.90 import qualified Maybe; 25.19/10.90 import qualified Prelude; 25.19/10.90 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 25.19/10.90 25.19/10.90 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.19/10.90 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.19/10.90 } 25.19/10.90 fmToList :: FiniteMap a b -> [(a,b)]; 25.19/10.90 fmToList fm = foldFM fmToList0 [] fm; 25.19/10.90 25.19/10.90 fmToList0 key elt rest = (key,elt) : rest; 25.19/10.90 25.19/10.90 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 25.19/10.90 foldFM k z EmptyFM = z; 25.19/10.90 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.19/10.90 25.19/10.90 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 25.19/10.90 lookupFM EmptyFM key = Nothing; 25.19/10.90 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 25.19/10.90 | key_to_find > key = lookupFM fm_r key_to_find 25.19/10.90 | otherwise = Just elt; 25.19/10.90 25.19/10.90 lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; 25.19/10.90 lookupWithDefaultFM fm deflt key = case lookupFM fm key of { 25.19/10.90 Nothing-> deflt; 25.19/10.90 Just elt-> elt; 25.19/10.90 } ; 25.19/10.90 25.19/10.90 sizeFM :: FiniteMap a b -> Int; 25.19/10.90 sizeFM EmptyFM = 0; 25.19/10.90 sizeFM (Branch _ _ size _ _) = size; 25.19/10.90 25.19/10.90 } 25.19/10.90 module Maybe where { 25.19/10.90 import qualified FiniteMap; 25.19/10.90 import qualified Main; 25.19/10.90 import qualified Prelude; 25.19/10.90 } 25.19/10.90 module Main where { 25.19/10.90 import qualified FiniteMap; 25.19/10.90 import qualified Maybe; 25.19/10.90 import qualified Prelude; 25.19/10.90 } 25.19/10.90 25.19/10.90 ---------------------------------------- 25.19/10.90 25.19/10.90 (3) CR (EQUIVALENT) 25.19/10.90 Case Reductions: 25.19/10.90 The following Case expression 25.19/10.90 "case compare x y of { 25.19/10.90 EQ -> o; 25.19/10.90 LT -> LT; 25.19/10.90 GT -> GT} 25.19/10.90 " 25.19/10.90 is transformed to 25.19/10.90 "primCompAux0 o EQ = o; 25.19/10.90 primCompAux0 o LT = LT; 25.19/10.90 primCompAux0 o GT = GT; 25.19/10.90 " 25.19/10.90 The following Case expression 25.19/10.90 "case lookupFM fm key of { 25.19/10.90 Nothing -> deflt; 25.19/10.90 Just elt -> elt} 25.19/10.90 " 25.19/10.90 is transformed to 25.19/10.90 "lookupWithDefaultFM0 deflt Nothing = deflt; 25.19/10.90 lookupWithDefaultFM0 deflt (Just elt) = elt; 25.19/10.90 " 25.19/10.90 25.19/10.90 ---------------------------------------- 25.19/10.90 25.19/10.90 (4) 25.19/10.90 Obligation: 25.19/10.90 mainModule Main 25.19/10.90 module FiniteMap where { 25.19/10.90 import qualified Main; 25.19/10.90 import qualified Maybe; 25.19/10.90 import qualified Prelude; 25.19/10.90 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 25.19/10.90 25.19/10.90 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.19/10.90 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.19/10.90 } 25.19/10.90 fmToList :: FiniteMap a b -> [(a,b)]; 25.19/10.90 fmToList fm = foldFM fmToList0 [] fm; 25.19/10.90 25.19/10.90 fmToList0 key elt rest = (key,elt) : rest; 25.19/10.90 25.19/10.90 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 25.19/10.90 foldFM k z EmptyFM = z; 25.19/10.90 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.19/10.90 25.19/10.90 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 25.19/10.90 lookupFM EmptyFM key = Nothing; 25.19/10.90 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 25.19/10.90 | key_to_find > key = lookupFM fm_r key_to_find 25.19/10.90 | otherwise = Just elt; 25.19/10.90 25.19/10.90 lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; 25.19/10.90 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 25.19/10.90 25.19/10.90 lookupWithDefaultFM0 deflt Nothing = deflt; 25.19/10.90 lookupWithDefaultFM0 deflt (Just elt) = elt; 25.19/10.90 25.19/10.90 sizeFM :: FiniteMap a b -> Int; 25.19/10.90 sizeFM EmptyFM = 0; 25.19/10.90 sizeFM (Branch _ _ size _ _) = size; 25.19/10.90 25.19/10.90 } 25.19/10.90 module Maybe where { 25.19/10.90 import qualified FiniteMap; 25.19/10.90 import qualified Main; 25.19/10.90 import qualified Prelude; 25.19/10.90 } 25.19/10.90 module Main where { 25.19/10.90 import qualified FiniteMap; 25.19/10.90 import qualified Maybe; 25.19/10.90 import qualified Prelude; 25.19/10.90 } 25.19/10.90 25.19/10.90 ---------------------------------------- 25.19/10.90 25.19/10.90 (5) IFR (EQUIVALENT) 25.19/10.90 If Reductions: 25.19/10.90 The following If expression 25.19/10.90 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 25.19/10.90 is transformed to 25.19/10.90 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 25.19/10.90 primDivNatS0 x y False = Zero; 25.19/10.90 " 25.19/10.90 The following If expression 25.19/10.90 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 25.19/10.90 is transformed to 25.19/10.90 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 25.19/10.90 primModNatS0 x y False = Succ x; 25.19/10.90 " 25.19/10.90 25.19/10.90 ---------------------------------------- 25.19/10.90 25.19/10.90 (6) 25.19/10.90 Obligation: 25.19/10.90 mainModule Main 25.19/10.90 module FiniteMap where { 25.19/10.90 import qualified Main; 25.19/10.90 import qualified Maybe; 25.19/10.90 import qualified Prelude; 25.19/10.90 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 25.19/10.90 25.19/10.90 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.19/10.90 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.19/10.90 } 25.19/10.90 fmToList :: FiniteMap a b -> [(a,b)]; 25.19/10.90 fmToList fm = foldFM fmToList0 [] fm; 25.19/10.90 25.19/10.90 fmToList0 key elt rest = (key,elt) : rest; 25.19/10.90 25.19/10.90 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 25.19/10.90 foldFM k z EmptyFM = z; 25.19/10.90 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.19/10.90 25.19/10.90 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 25.19/10.90 lookupFM EmptyFM key = Nothing; 25.19/10.90 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 25.19/10.90 | key_to_find > key = lookupFM fm_r key_to_find 25.19/10.90 | otherwise = Just elt; 25.19/10.90 25.19/10.90 lookupWithDefaultFM :: Ord a => FiniteMap a b -> b -> a -> b; 25.19/10.90 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 25.19/10.90 25.19/10.90 lookupWithDefaultFM0 deflt Nothing = deflt; 25.19/10.90 lookupWithDefaultFM0 deflt (Just elt) = elt; 25.19/10.90 25.19/10.90 sizeFM :: FiniteMap a b -> Int; 25.19/10.90 sizeFM EmptyFM = 0; 25.19/10.90 sizeFM (Branch _ _ size _ _) = size; 25.19/10.90 25.19/10.90 } 25.19/10.90 module Maybe where { 25.19/10.90 import qualified FiniteMap; 25.19/10.90 import qualified Main; 25.19/10.90 import qualified Prelude; 25.19/10.90 } 25.19/10.90 module Main where { 25.19/10.90 import qualified FiniteMap; 25.19/10.90 import qualified Maybe; 25.19/10.90 import qualified Prelude; 25.19/10.92 } 25.19/10.92 25.19/10.92 ---------------------------------------- 25.19/10.92 25.19/10.92 (7) BR (EQUIVALENT) 25.19/10.92 Replaced joker patterns by fresh variables and removed binding patterns. 25.19/10.92 ---------------------------------------- 25.19/10.92 25.19/10.92 (8) 25.19/10.92 Obligation: 25.19/10.92 mainModule Main 25.19/10.92 module FiniteMap where { 25.19/10.92 import qualified Main; 25.19/10.92 import qualified Maybe; 25.19/10.92 import qualified Prelude; 25.19/10.92 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 25.19/10.92 25.19/10.92 instance (Eq a, Eq b) => Eq FiniteMap a b where { 25.19/10.92 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.19/10.92 } 25.19/10.92 fmToList :: FiniteMap a b -> [(a,b)]; 25.19/10.92 fmToList fm = foldFM fmToList0 [] fm; 25.19/10.92 25.19/10.92 fmToList0 key elt rest = (key,elt) : rest; 25.19/10.92 25.19/10.92 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 25.19/10.92 foldFM k z EmptyFM = z; 25.19/10.92 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.19/10.92 25.19/10.92 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 25.19/10.92 lookupFM EmptyFM key = Nothing; 25.19/10.92 lookupFM (Branch key elt vux fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 25.19/10.92 | key_to_find > key = lookupFM fm_r key_to_find 25.19/10.92 | otherwise = Just elt; 25.19/10.92 25.19/10.92 lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; 25.19/10.92 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 25.19/10.92 25.19/10.92 lookupWithDefaultFM0 deflt Nothing = deflt; 25.19/10.92 lookupWithDefaultFM0 deflt (Just elt) = elt; 25.19/10.92 25.19/10.92 sizeFM :: FiniteMap a b -> Int; 25.19/10.92 sizeFM EmptyFM = 0; 25.19/10.92 sizeFM (Branch zz vuu size vuv vuw) = size; 25.19/10.92 25.19/10.92 } 25.19/10.92 module Maybe where { 25.19/10.92 import qualified FiniteMap; 25.19/10.92 import qualified Main; 25.19/10.92 import qualified Prelude; 25.19/10.92 } 25.19/10.92 module Main where { 25.19/10.92 import qualified FiniteMap; 25.19/10.92 import qualified Maybe; 25.19/10.92 import qualified Prelude; 25.19/10.92 } 25.19/10.92 25.19/10.92 ---------------------------------------- 25.19/10.92 25.19/10.92 (9) COR (EQUIVALENT) 25.19/10.92 Cond Reductions: 25.19/10.92 The following Function with conditions 25.19/10.92 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 25.19/10.92 " 25.19/10.92 is transformed to 25.19/10.92 "compare x y = compare3 x y; 25.19/10.92 " 25.19/10.92 "compare1 x y True = LT; 25.19/10.92 compare1 x y False = compare0 x y otherwise; 25.19/10.92 " 25.19/10.92 "compare2 x y True = EQ; 25.19/10.92 compare2 x y False = compare1 x y (x <= y); 25.19/10.92 " 25.19/10.92 "compare0 x y True = GT; 25.19/10.92 " 25.19/10.92 "compare3 x y = compare2 x y (x == y); 25.19/10.92 " 25.19/10.92 The following Function with conditions 25.19/10.92 "absReal x|x >= 0x|otherwise`negate` x; 25.19/10.92 " 25.19/10.92 is transformed to 25.19/10.92 "absReal x = absReal2 x; 25.19/10.92 " 25.19/10.92 "absReal0 x True = `negate` x; 25.19/10.92 " 25.19/10.92 "absReal1 x True = x; 25.19/10.92 absReal1 x False = absReal0 x otherwise; 25.19/10.92 " 25.19/10.92 "absReal2 x = absReal1 x (x >= 0); 25.19/10.92 " 25.19/10.92 The following Function with conditions 25.19/10.92 "gcd' x 0 = x; 25.19/10.92 gcd' x y = gcd' y (x `rem` y); 25.19/10.92 " 25.19/10.92 is transformed to 25.19/10.92 "gcd' x vuy = gcd'2 x vuy; 25.19/10.92 gcd' x y = gcd'0 x y; 25.19/10.92 " 25.19/10.92 "gcd'0 x y = gcd' y (x `rem` y); 25.19/10.92 " 25.19/10.92 "gcd'1 True x vuy = x; 25.19/10.92 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 25.19/10.92 " 25.19/10.92 "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 25.19/10.92 gcd'2 vvw vvx = gcd'0 vvw vvx; 25.19/10.92 " 25.19/10.92 The following Function with conditions 25.19/10.92 "gcd 0 0 = error []; 25.19/10.92 gcd x y = gcd' (abs x) (abs y) where { 25.19/10.92 gcd' x 0 = x; 25.19/10.92 gcd' x y = gcd' y (x `rem` y); 25.19/10.92 } 25.19/10.92 ; 25.19/10.92 " 25.19/10.92 is transformed to 25.19/10.92 "gcd vvy vvz = gcd3 vvy vvz; 25.19/10.92 gcd x y = gcd0 x y; 25.19/10.92 " 25.19/10.92 "gcd0 x y = gcd' (abs x) (abs y) where { 25.19/10.92 gcd' x vuy = gcd'2 x vuy; 25.19/10.92 gcd' x y = gcd'0 x y; 25.19/10.92 ; 25.19/10.92 gcd'0 x y = gcd' y (x `rem` y); 25.19/10.92 ; 25.19/10.92 gcd'1 True x vuy = x; 25.19/10.92 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 25.19/10.92 ; 25.19/10.92 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 25.19/10.92 gcd'2 vvw vvx = gcd'0 vvw vvx; 25.19/10.92 } 25.19/10.92 ; 25.19/10.92 " 25.19/10.92 "gcd1 True vvy vvz = error []; 25.19/10.92 gcd1 vwu vwv vww = gcd0 vwv vww; 25.19/10.92 " 25.19/10.92 "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; 25.19/10.92 gcd2 vwx vwy vwz = gcd0 vwy vwz; 25.19/10.92 " 25.19/10.92 "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; 25.19/10.92 gcd3 vxu vxv = gcd0 vxu vxv; 25.19/10.92 " 25.19/10.92 The following Function with conditions 25.19/10.92 "undefined |Falseundefined; 25.19/10.92 " 25.19/10.92 is transformed to 25.19/10.92 "undefined = undefined1; 25.19/10.92 " 25.19/10.92 "undefined0 True = undefined; 25.19/10.92 " 25.19/10.92 "undefined1 = undefined0 False; 25.19/10.92 " 25.19/10.92 The following Function with conditions 25.19/10.92 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 25.19/10.92 d = gcd x y; 25.19/10.92 } 25.19/10.92 ; 25.19/10.92 " 25.19/10.92 is transformed to 25.19/10.92 "reduce x y = reduce2 x y; 25.19/10.92 " 25.19/10.92 "reduce2 x y = reduce1 x y (y == 0) where { 25.19/10.92 d = gcd x y; 25.19/10.92 ; 25.19/10.92 reduce0 x y True = x `quot` d :% (y `quot` d); 25.19/10.92 ; 25.19/10.92 reduce1 x y True = error []; 25.19/10.92 reduce1 x y False = reduce0 x y otherwise; 25.19/10.92 } 25.19/10.92 ; 25.19/10.92 " 25.19/10.92 The following Function with conditions 25.19/10.92 "lookupFM EmptyFM key = Nothing; 25.19/10.92 lookupFM (Branch key elt vux fm_l fm_r) key_to_find|key_to_find < keylookupFM fm_l key_to_find|key_to_find > keylookupFM fm_r key_to_find|otherwiseJust elt; 25.19/10.92 " 25.19/10.92 is transformed to 25.19/10.92 "lookupFM EmptyFM key = lookupFM4 EmptyFM key; 25.19/10.92 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 25.19/10.92 " 25.19/10.92 "lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 25.19/10.92 " 25.19/10.92 "lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 25.19/10.92 lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); 25.19/10.92 " 25.19/10.92 "lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 25.19/10.92 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 25.19/10.92 " 25.19/10.92 "lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); 25.19/10.92 " 25.19/10.92 "lookupFM4 EmptyFM key = Nothing; 25.19/10.92 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 25.19/10.92 " 25.19/10.92 25.19/10.92 ---------------------------------------- 25.19/10.92 25.19/10.92 (10) 25.19/10.92 Obligation: 25.19/10.92 mainModule Main 25.19/10.92 module FiniteMap where { 25.19/10.92 import qualified Main; 25.19/10.92 import qualified Maybe; 25.19/10.92 import qualified Prelude; 25.19/10.92 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 25.19/10.92 25.19/10.92 instance (Eq a, Eq b) => Eq FiniteMap a b where { 25.19/10.92 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.19/10.92 } 25.19/10.92 fmToList :: FiniteMap a b -> [(a,b)]; 25.19/10.92 fmToList fm = foldFM fmToList0 [] fm; 25.19/10.92 25.19/10.92 fmToList0 key elt rest = (key,elt) : rest; 25.19/10.92 25.19/10.92 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 25.19/10.92 foldFM k z EmptyFM = z; 25.19/10.92 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.19/10.92 25.19/10.92 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 25.19/10.92 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 25.19/10.92 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 25.19/10.92 25.19/10.92 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 25.19/10.92 25.19/10.92 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 25.19/10.92 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 25.19/10.92 25.19/10.92 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 25.19/10.92 lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); 25.19/10.92 25.19/10.92 lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); 25.19/10.92 25.19/10.92 lookupFM4 EmptyFM key = Nothing; 25.19/10.92 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 25.19/10.92 25.19/10.92 lookupWithDefaultFM :: Ord a => FiniteMap a b -> b -> a -> b; 25.19/10.92 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 25.19/10.92 25.19/10.92 lookupWithDefaultFM0 deflt Nothing = deflt; 25.19/10.92 lookupWithDefaultFM0 deflt (Just elt) = elt; 25.19/10.92 25.19/10.92 sizeFM :: FiniteMap b a -> Int; 25.19/10.92 sizeFM EmptyFM = 0; 25.19/10.92 sizeFM (Branch zz vuu size vuv vuw) = size; 25.19/10.92 25.19/10.92 } 25.19/10.92 module Maybe where { 25.19/10.92 import qualified FiniteMap; 25.19/10.92 import qualified Main; 25.19/10.92 import qualified Prelude; 25.19/10.92 } 25.19/10.92 module Main where { 25.19/10.92 import qualified FiniteMap; 25.19/10.92 import qualified Maybe; 25.19/10.92 import qualified Prelude; 25.19/10.92 } 25.19/10.92 25.19/10.92 ---------------------------------------- 25.19/10.92 25.19/10.92 (11) LetRed (EQUIVALENT) 25.19/10.92 Let/Where Reductions: 25.19/10.92 The bindings of the following Let/Where expression 25.19/10.93 "gcd' (abs x) (abs y) where { 25.19/10.93 gcd' x vuy = gcd'2 x vuy; 25.19/10.93 gcd' x y = gcd'0 x y; 25.19/10.93 ; 25.19/10.93 gcd'0 x y = gcd' y (x `rem` y); 25.19/10.93 ; 25.19/10.93 gcd'1 True x vuy = x; 25.19/10.93 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 25.19/10.93 ; 25.19/10.93 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 25.19/10.93 gcd'2 vvw vvx = gcd'0 vvw vvx; 25.19/10.93 } 25.19/10.93 " 25.19/10.93 are unpacked to the following functions on top level 25.19/10.93 "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; 25.19/10.93 gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; 25.19/10.93 " 25.19/10.93 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 25.19/10.93 " 25.19/10.93 "gcd0Gcd'1 True x vuy = x; 25.19/10.93 gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; 25.19/10.93 " 25.19/10.93 "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; 25.19/10.93 gcd0Gcd' x y = gcd0Gcd'0 x y; 25.19/10.93 " 25.19/10.93 The bindings of the following Let/Where expression 25.19/10.93 "reduce1 x y (y == 0) where { 25.19/10.93 d = gcd x y; 25.19/10.93 ; 25.19/10.93 reduce0 x y True = x `quot` d :% (y `quot` d); 25.19/10.93 ; 25.19/10.93 reduce1 x y True = error []; 25.19/10.93 reduce1 x y False = reduce0 x y otherwise; 25.19/10.93 } 25.19/10.93 " 25.19/10.93 are unpacked to the following functions on top level 25.19/10.93 "reduce2Reduce1 vyu vyv x y True = error []; 25.19/10.93 reduce2Reduce1 vyu vyv x y False = reduce2Reduce0 vyu vyv x y otherwise; 25.19/10.93 " 25.19/10.93 "reduce2D vyu vyv = gcd vyu vyv; 25.19/10.93 " 25.19/10.93 "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); 25.19/10.93 " 25.19/10.93 25.19/10.93 ---------------------------------------- 25.19/10.93 25.19/10.93 (12) 25.19/10.93 Obligation: 25.19/10.93 mainModule Main 25.19/10.93 module FiniteMap where { 25.19/10.93 import qualified Main; 25.19/10.93 import qualified Maybe; 25.19/10.93 import qualified Prelude; 25.19/10.93 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 25.19/10.93 25.19/10.93 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.19/10.93 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.19/10.93 } 25.19/10.93 fmToList :: FiniteMap a b -> [(a,b)]; 25.19/10.93 fmToList fm = foldFM fmToList0 [] fm; 25.19/10.93 25.19/10.93 fmToList0 key elt rest = (key,elt) : rest; 25.19/10.93 25.19/10.93 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 25.19/10.93 foldFM k z EmptyFM = z; 25.19/10.93 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.19/10.93 25.19/10.93 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 25.19/10.93 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 25.19/10.93 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 25.19/10.93 25.19/10.93 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 25.19/10.93 25.19/10.93 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 25.19/10.93 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 25.19/10.93 25.19/10.93 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 25.19/10.93 lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); 25.19/10.93 25.19/10.93 lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); 25.19/10.93 25.19/10.93 lookupFM4 EmptyFM key = Nothing; 25.19/10.93 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 25.19/10.93 25.19/10.93 lookupWithDefaultFM :: Ord a => FiniteMap a b -> b -> a -> b; 25.19/10.93 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 25.19/10.93 25.19/10.93 lookupWithDefaultFM0 deflt Nothing = deflt; 25.19/10.93 lookupWithDefaultFM0 deflt (Just elt) = elt; 25.19/10.93 25.19/10.93 sizeFM :: FiniteMap a b -> Int; 25.19/10.93 sizeFM EmptyFM = 0; 25.19/10.93 sizeFM (Branch zz vuu size vuv vuw) = size; 25.19/10.93 25.19/10.93 } 25.19/10.93 module Maybe where { 25.19/10.93 import qualified FiniteMap; 25.19/10.93 import qualified Main; 25.19/10.93 import qualified Prelude; 25.19/10.93 } 25.19/10.93 module Main where { 25.19/10.93 import qualified FiniteMap; 25.19/10.93 import qualified Maybe; 25.19/10.93 import qualified Prelude; 25.19/10.93 } 25.19/10.93 25.19/10.93 ---------------------------------------- 25.19/10.93 25.19/10.93 (13) NumRed (SOUND) 25.19/10.93 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 25.19/10.93 ---------------------------------------- 25.19/10.93 25.19/10.93 (14) 25.19/10.93 Obligation: 25.19/10.93 mainModule Main 25.19/10.93 module FiniteMap where { 25.19/10.93 import qualified Main; 25.19/10.93 import qualified Maybe; 25.19/10.93 import qualified Prelude; 25.19/10.93 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 25.19/10.93 25.19/10.93 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.19/10.93 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.19/10.93 } 25.19/10.93 fmToList :: FiniteMap b a -> [(b,a)]; 25.19/10.93 fmToList fm = foldFM fmToList0 [] fm; 25.19/10.93 25.19/10.93 fmToList0 key elt rest = (key,elt) : rest; 25.19/10.93 25.19/10.93 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 25.19/10.93 foldFM k z EmptyFM = z; 25.19/10.93 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.19/10.93 25.19/10.93 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 25.19/10.93 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 25.19/10.93 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 25.19/10.93 25.19/10.93 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 25.19/10.93 25.19/10.93 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 25.19/10.93 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 25.19/10.93 25.19/10.93 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 25.19/10.93 lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); 25.19/10.93 25.19/10.93 lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); 25.19/10.93 25.19/10.93 lookupFM4 EmptyFM key = Nothing; 25.19/10.93 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 25.19/10.93 25.19/10.93 lookupWithDefaultFM :: Ord a => FiniteMap a b -> b -> a -> b; 25.19/10.93 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 25.19/10.93 25.19/10.93 lookupWithDefaultFM0 deflt Nothing = deflt; 25.19/10.93 lookupWithDefaultFM0 deflt (Just elt) = elt; 25.19/10.93 25.19/10.93 sizeFM :: FiniteMap a b -> Int; 25.19/10.93 sizeFM EmptyFM = Pos Zero; 25.19/10.93 sizeFM (Branch zz vuu size vuv vuw) = size; 25.19/10.93 25.19/10.93 } 25.19/10.93 module Maybe where { 25.19/10.93 import qualified FiniteMap; 25.19/10.93 import qualified Main; 25.19/10.93 import qualified Prelude; 25.19/10.93 } 25.19/10.93 module Main where { 25.19/10.93 import qualified FiniteMap; 25.19/10.93 import qualified Maybe; 25.19/10.93 import qualified Prelude; 25.19/10.93 } 25.19/10.93 25.19/10.93 ---------------------------------------- 25.19/10.93 25.19/10.93 (15) Narrow (SOUND) 25.19/10.93 Haskell To QDPs 25.19/10.93 25.19/10.93 digraph dp_graph { 25.19/10.93 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.lookupWithDefaultFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 25.19/10.93 3[label="FiniteMap.lookupWithDefaultFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 25.19/10.93 4[label="FiniteMap.lookupWithDefaultFM vyw3 vyw4",fontsize=16,color="grey",shape="box"];4 -> 5[label="",style="dashed", color="grey", weight=3]; 25.19/10.93 5[label="FiniteMap.lookupWithDefaultFM vyw3 vyw4 vyw5",fontsize=16,color="black",shape="triangle"];5 -> 6[label="",style="solid", color="black", weight=3]; 25.19/10.93 6[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM vyw3 vyw5)",fontsize=16,color="burlywood",shape="triangle"];2284[label="vyw3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];6 -> 2284[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2284 -> 7[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2285[label="vyw3/FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34",fontsize=10,color="white",style="solid",shape="box"];6 -> 2285[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2285 -> 8[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 7[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM FiniteMap.EmptyFM vyw5)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 25.19/10.93 8[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw5)",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 25.19/10.93 9[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw5)",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 25.19/10.93 10[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM3 (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw5)",fontsize=16,color="black",shape="box"];10 -> 12[label="",style="solid", color="black", weight=3]; 25.19/10.93 11[label="FiniteMap.lookupWithDefaultFM0 vyw4 Nothing",fontsize=16,color="black",shape="box"];11 -> 13[label="",style="solid", color="black", weight=3]; 25.19/10.93 12[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw5 (vyw5 < vyw30))",fontsize=16,color="black",shape="box"];12 -> 14[label="",style="solid", color="black", weight=3]; 25.19/10.93 13[label="vyw4",fontsize=16,color="green",shape="box"];14[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw5 (compare vyw5 vyw30 == LT))",fontsize=16,color="black",shape="box"];14 -> 15[label="",style="solid", color="black", weight=3]; 25.19/10.93 15[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw5 (compare3 vyw5 vyw30 == LT))",fontsize=16,color="black",shape="box"];15 -> 16[label="",style="solid", color="black", weight=3]; 25.19/10.93 16[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw5 (compare2 vyw5 vyw30 (vyw5 == vyw30) == LT))",fontsize=16,color="burlywood",shape="box"];2286[label="vyw5/(vyw50,vyw51)",fontsize=10,color="white",style="solid",shape="box"];16 -> 2286[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2286 -> 17[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 17[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 (vyw50,vyw51) (compare2 (vyw50,vyw51) vyw30 ((vyw50,vyw51) == vyw30) == LT))",fontsize=16,color="burlywood",shape="box"];2287[label="vyw30/(vyw300,vyw301)",fontsize=10,color="white",style="solid",shape="box"];17 -> 2287[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2287 -> 18[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 18[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 (vyw300,vyw301) vyw31 vyw32 vyw33 vyw34 (vyw50,vyw51) (compare2 (vyw50,vyw51) (vyw300,vyw301) ((vyw50,vyw51) == (vyw300,vyw301)) == LT))",fontsize=16,color="black",shape="box"];18 -> 19[label="",style="solid", color="black", weight=3]; 25.19/10.93 19 -> 104[label="",style="dashed", color="red", weight=0]; 25.19/10.93 19[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 (vyw300,vyw301) vyw31 vyw32 vyw33 vyw34 (vyw50,vyw51) (compare2 (vyw50,vyw51) (vyw300,vyw301) (vyw50 == vyw300 && vyw51 == vyw301) == LT))",fontsize=16,color="magenta"];19 -> 105[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 19 -> 106[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 19 -> 107[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 19 -> 108[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 19 -> 109[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 19 -> 110[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 19 -> 111[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 19 -> 112[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 19 -> 113[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 19 -> 114[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 105[label="vyw33",fontsize=16,color="green",shape="box"];106 -> 118[label="",style="dashed", color="red", weight=0]; 25.19/10.93 106[label="compare2 (vyw50,vyw51) (vyw300,vyw301) (vyw50 == vyw300 && vyw51 == vyw301) == LT",fontsize=16,color="magenta"];106 -> 119[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 106 -> 120[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 106 -> 121[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 106 -> 122[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 106 -> 123[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 107[label="vyw50",fontsize=16,color="green",shape="box"];108[label="vyw31",fontsize=16,color="green",shape="box"];109[label="vyw51",fontsize=16,color="green",shape="box"];110[label="vyw300",fontsize=16,color="green",shape="box"];111[label="vyw4",fontsize=16,color="green",shape="box"];112[label="vyw301",fontsize=16,color="green",shape="box"];113[label="vyw32",fontsize=16,color="green",shape="box"];114[label="vyw34",fontsize=16,color="green",shape="box"];104[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM2 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) vyw27)",fontsize=16,color="burlywood",shape="triangle"];2288[label="vyw27/False",fontsize=10,color="white",style="solid",shape="box"];104 -> 2288[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2288 -> 124[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2289[label="vyw27/True",fontsize=10,color="white",style="solid",shape="box"];104 -> 2289[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2289 -> 125[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 119[label="vyw50 == vyw300",fontsize=16,color="blue",shape="box"];2290[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2290[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2290 -> 126[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2291[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2291[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2291 -> 127[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2292[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2292[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2292 -> 128[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2293[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2293[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2293 -> 129[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2294[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2294[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2294 -> 130[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2295[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2295[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2295 -> 131[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2296[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2296[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2296 -> 132[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2297[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2297[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2297 -> 133[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2298[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2298[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2298 -> 134[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2299[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2299[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2299 -> 135[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2300[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2300[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2300 -> 136[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2301[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2301[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2301 -> 137[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2302[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2302[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2302 -> 138[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2303[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2303[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2303 -> 139[label="",style="solid", color="blue", weight=3]; 25.19/10.93 120[label="vyw301",fontsize=16,color="green",shape="box"];121[label="vyw51",fontsize=16,color="green",shape="box"];122[label="vyw50",fontsize=16,color="green",shape="box"];123[label="vyw300",fontsize=16,color="green",shape="box"];118[label="compare2 (vyw34,vyw35) (vyw36,vyw37) (vyw38 && vyw35 == vyw37) == LT",fontsize=16,color="burlywood",shape="triangle"];2304[label="vyw38/False",fontsize=10,color="white",style="solid",shape="box"];118 -> 2304[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2304 -> 140[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2305[label="vyw38/True",fontsize=10,color="white",style="solid",shape="box"];118 -> 2305[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2305 -> 141[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 124[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM2 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) False)",fontsize=16,color="black",shape="box"];124 -> 142[label="",style="solid", color="black", weight=3]; 25.19/10.93 125[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM2 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) True)",fontsize=16,color="black",shape="box"];125 -> 143[label="",style="solid", color="black", weight=3]; 25.19/10.93 126[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2306[label="vyw50/False",fontsize=10,color="white",style="solid",shape="box"];126 -> 2306[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2306 -> 144[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2307[label="vyw50/True",fontsize=10,color="white",style="solid",shape="box"];126 -> 2307[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2307 -> 145[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 127[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2308[label="vyw50/Nothing",fontsize=10,color="white",style="solid",shape="box"];127 -> 2308[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2308 -> 146[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2309[label="vyw50/Just vyw500",fontsize=10,color="white",style="solid",shape="box"];127 -> 2309[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2309 -> 147[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 128[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2310[label="vyw50/LT",fontsize=10,color="white",style="solid",shape="box"];128 -> 2310[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2310 -> 148[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2311[label="vyw50/EQ",fontsize=10,color="white",style="solid",shape="box"];128 -> 2311[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2311 -> 149[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2312[label="vyw50/GT",fontsize=10,color="white",style="solid",shape="box"];128 -> 2312[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2312 -> 150[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 129[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2313[label="vyw50/vyw500 : vyw501",fontsize=10,color="white",style="solid",shape="box"];129 -> 2313[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2313 -> 151[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2314[label="vyw50/[]",fontsize=10,color="white",style="solid",shape="box"];129 -> 2314[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2314 -> 152[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 130[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];130 -> 153[label="",style="solid", color="black", weight=3]; 25.19/10.93 131[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2315[label="vyw50/Left vyw500",fontsize=10,color="white",style="solid",shape="box"];131 -> 2315[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2315 -> 154[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2316[label="vyw50/Right vyw500",fontsize=10,color="white",style="solid",shape="box"];131 -> 2316[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2316 -> 155[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 132[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];132 -> 156[label="",style="solid", color="black", weight=3]; 25.19/10.93 133[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2317[label="vyw50/(vyw500,vyw501)",fontsize=10,color="white",style="solid",shape="box"];133 -> 2317[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2317 -> 157[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 134[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];134 -> 158[label="",style="solid", color="black", weight=3]; 25.19/10.93 135[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2318[label="vyw50/Integer vyw500",fontsize=10,color="white",style="solid",shape="box"];135 -> 2318[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2318 -> 159[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 136[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2319[label="vyw50/(vyw500,vyw501,vyw502)",fontsize=10,color="white",style="solid",shape="box"];136 -> 2319[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2319 -> 160[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 137[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2320[label="vyw50/vyw500 :% vyw501",fontsize=10,color="white",style="solid",shape="box"];137 -> 2320[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2320 -> 161[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 138[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];138 -> 162[label="",style="solid", color="black", weight=3]; 25.19/10.93 139[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2321[label="vyw50/()",fontsize=10,color="white",style="solid",shape="box"];139 -> 2321[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2321 -> 163[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 140[label="compare2 (vyw34,vyw35) (vyw36,vyw37) (False && vyw35 == vyw37) == LT",fontsize=16,color="black",shape="box"];140 -> 164[label="",style="solid", color="black", weight=3]; 25.19/10.93 141[label="compare2 (vyw34,vyw35) (vyw36,vyw37) (True && vyw35 == vyw37) == LT",fontsize=16,color="black",shape="box"];141 -> 165[label="",style="solid", color="black", weight=3]; 25.19/10.93 142 -> 209[label="",style="dashed", color="red", weight=0]; 25.19/10.93 142[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM1 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) ((vyw24,vyw25) > (vyw18,vyw19)))",fontsize=16,color="magenta"];142 -> 210[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 143 -> 6[label="",style="dashed", color="red", weight=0]; 25.19/10.93 143[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM vyw22 (vyw24,vyw25))",fontsize=16,color="magenta"];143 -> 167[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 143 -> 168[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 143 -> 169[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 144[label="False == vyw300",fontsize=16,color="burlywood",shape="box"];2322[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];144 -> 2322[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2322 -> 170[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2323[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];144 -> 2323[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2323 -> 171[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 145[label="True == vyw300",fontsize=16,color="burlywood",shape="box"];2324[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];145 -> 2324[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2324 -> 172[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2325[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];145 -> 2325[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2325 -> 173[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 146[label="Nothing == vyw300",fontsize=16,color="burlywood",shape="box"];2326[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];146 -> 2326[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2326 -> 174[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2327[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];146 -> 2327[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2327 -> 175[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 147[label="Just vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];2328[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];147 -> 2328[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2328 -> 176[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2329[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];147 -> 2329[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2329 -> 177[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 148[label="LT == vyw300",fontsize=16,color="burlywood",shape="box"];2330[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];148 -> 2330[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2330 -> 178[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2331[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];148 -> 2331[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2331 -> 179[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2332[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];148 -> 2332[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2332 -> 180[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 149[label="EQ == vyw300",fontsize=16,color="burlywood",shape="box"];2333[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];149 -> 2333[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2333 -> 181[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2334[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];149 -> 2334[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2334 -> 182[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2335[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];149 -> 2335[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2335 -> 183[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 150[label="GT == vyw300",fontsize=16,color="burlywood",shape="box"];2336[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];150 -> 2336[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2336 -> 184[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2337[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];150 -> 2337[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2337 -> 185[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2338[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];150 -> 2338[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2338 -> 186[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 151[label="vyw500 : vyw501 == vyw300",fontsize=16,color="burlywood",shape="box"];2339[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];151 -> 2339[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2339 -> 187[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2340[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];151 -> 2340[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2340 -> 188[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 152[label="[] == vyw300",fontsize=16,color="burlywood",shape="box"];2341[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];152 -> 2341[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2341 -> 189[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2342[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];152 -> 2342[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2342 -> 190[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 153[label="primEqChar vyw50 vyw300",fontsize=16,color="burlywood",shape="box"];2343[label="vyw50/Char vyw500",fontsize=10,color="white",style="solid",shape="box"];153 -> 2343[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2343 -> 191[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 154[label="Left vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];2344[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];154 -> 2344[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2344 -> 192[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2345[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];154 -> 2345[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2345 -> 193[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 155[label="Right vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];2346[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];155 -> 2346[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2346 -> 194[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2347[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];155 -> 2347[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2347 -> 195[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 156[label="primEqDouble vyw50 vyw300",fontsize=16,color="burlywood",shape="box"];2348[label="vyw50/Double vyw500 vyw501",fontsize=10,color="white",style="solid",shape="box"];156 -> 2348[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2348 -> 196[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 157[label="(vyw500,vyw501) == vyw300",fontsize=16,color="burlywood",shape="box"];2349[label="vyw300/(vyw3000,vyw3001)",fontsize=10,color="white",style="solid",shape="box"];157 -> 2349[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2349 -> 197[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 158[label="primEqInt vyw50 vyw300",fontsize=16,color="burlywood",shape="triangle"];2350[label="vyw50/Pos vyw500",fontsize=10,color="white",style="solid",shape="box"];158 -> 2350[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2350 -> 198[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2351[label="vyw50/Neg vyw500",fontsize=10,color="white",style="solid",shape="box"];158 -> 2351[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2351 -> 199[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 159[label="Integer vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];2352[label="vyw300/Integer vyw3000",fontsize=10,color="white",style="solid",shape="box"];159 -> 2352[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2352 -> 200[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 160[label="(vyw500,vyw501,vyw502) == vyw300",fontsize=16,color="burlywood",shape="box"];2353[label="vyw300/(vyw3000,vyw3001,vyw3002)",fontsize=10,color="white",style="solid",shape="box"];160 -> 2353[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2353 -> 201[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 161[label="vyw500 :% vyw501 == vyw300",fontsize=16,color="burlywood",shape="box"];2354[label="vyw300/vyw3000 :% vyw3001",fontsize=10,color="white",style="solid",shape="box"];161 -> 2354[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2354 -> 202[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 162[label="primEqFloat vyw50 vyw300",fontsize=16,color="burlywood",shape="box"];2355[label="vyw50/Float vyw500 vyw501",fontsize=10,color="white",style="solid",shape="box"];162 -> 2355[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2355 -> 203[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 163[label="() == vyw300",fontsize=16,color="burlywood",shape="box"];2356[label="vyw300/()",fontsize=10,color="white",style="solid",shape="box"];163 -> 2356[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2356 -> 204[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 164 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 164[label="compare2 (vyw34,vyw35) (vyw36,vyw37) False == LT",fontsize=16,color="magenta"];164 -> 205[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 164 -> 206[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 165 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 165[label="compare2 (vyw34,vyw35) (vyw36,vyw37) (vyw35 == vyw37) == LT",fontsize=16,color="magenta"];165 -> 207[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 165 -> 208[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 210[label="(vyw24,vyw25) > (vyw18,vyw19)",fontsize=16,color="black",shape="box"];210 -> 212[label="",style="solid", color="black", weight=3]; 25.19/10.93 209[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM1 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) vyw39)",fontsize=16,color="burlywood",shape="triangle"];2357[label="vyw39/False",fontsize=10,color="white",style="solid",shape="box"];209 -> 2357[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2357 -> 213[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2358[label="vyw39/True",fontsize=10,color="white",style="solid",shape="box"];209 -> 2358[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2358 -> 214[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 167[label="vyw22",fontsize=16,color="green",shape="box"];168[label="vyw17",fontsize=16,color="green",shape="box"];169[label="(vyw24,vyw25)",fontsize=16,color="green",shape="box"];170[label="False == False",fontsize=16,color="black",shape="box"];170 -> 215[label="",style="solid", color="black", weight=3]; 25.19/10.93 171[label="False == True",fontsize=16,color="black",shape="box"];171 -> 216[label="",style="solid", color="black", weight=3]; 25.19/10.93 172[label="True == False",fontsize=16,color="black",shape="box"];172 -> 217[label="",style="solid", color="black", weight=3]; 25.19/10.93 173[label="True == True",fontsize=16,color="black",shape="box"];173 -> 218[label="",style="solid", color="black", weight=3]; 25.19/10.93 174[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];174 -> 219[label="",style="solid", color="black", weight=3]; 25.19/10.93 175[label="Nothing == Just vyw3000",fontsize=16,color="black",shape="box"];175 -> 220[label="",style="solid", color="black", weight=3]; 25.19/10.93 176[label="Just vyw500 == Nothing",fontsize=16,color="black",shape="box"];176 -> 221[label="",style="solid", color="black", weight=3]; 25.19/10.93 177[label="Just vyw500 == Just vyw3000",fontsize=16,color="black",shape="box"];177 -> 222[label="",style="solid", color="black", weight=3]; 25.19/10.93 178[label="LT == LT",fontsize=16,color="black",shape="box"];178 -> 223[label="",style="solid", color="black", weight=3]; 25.19/10.93 179[label="LT == EQ",fontsize=16,color="black",shape="box"];179 -> 224[label="",style="solid", color="black", weight=3]; 25.19/10.93 180[label="LT == GT",fontsize=16,color="black",shape="box"];180 -> 225[label="",style="solid", color="black", weight=3]; 25.19/10.93 181[label="EQ == LT",fontsize=16,color="black",shape="box"];181 -> 226[label="",style="solid", color="black", weight=3]; 25.19/10.93 182[label="EQ == EQ",fontsize=16,color="black",shape="box"];182 -> 227[label="",style="solid", color="black", weight=3]; 25.19/10.93 183[label="EQ == GT",fontsize=16,color="black",shape="box"];183 -> 228[label="",style="solid", color="black", weight=3]; 25.19/10.93 184[label="GT == LT",fontsize=16,color="black",shape="box"];184 -> 229[label="",style="solid", color="black", weight=3]; 25.19/10.93 185[label="GT == EQ",fontsize=16,color="black",shape="box"];185 -> 230[label="",style="solid", color="black", weight=3]; 25.19/10.93 186[label="GT == GT",fontsize=16,color="black",shape="box"];186 -> 231[label="",style="solid", color="black", weight=3]; 25.19/10.93 187[label="vyw500 : vyw501 == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];187 -> 232[label="",style="solid", color="black", weight=3]; 25.19/10.93 188[label="vyw500 : vyw501 == []",fontsize=16,color="black",shape="box"];188 -> 233[label="",style="solid", color="black", weight=3]; 25.19/10.93 189[label="[] == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];189 -> 234[label="",style="solid", color="black", weight=3]; 25.19/10.93 190[label="[] == []",fontsize=16,color="black",shape="box"];190 -> 235[label="",style="solid", color="black", weight=3]; 25.19/10.93 191[label="primEqChar (Char vyw500) vyw300",fontsize=16,color="burlywood",shape="box"];2359[label="vyw300/Char vyw3000",fontsize=10,color="white",style="solid",shape="box"];191 -> 2359[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2359 -> 236[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 192[label="Left vyw500 == Left vyw3000",fontsize=16,color="black",shape="box"];192 -> 237[label="",style="solid", color="black", weight=3]; 25.19/10.93 193[label="Left vyw500 == Right vyw3000",fontsize=16,color="black",shape="box"];193 -> 238[label="",style="solid", color="black", weight=3]; 25.19/10.93 194[label="Right vyw500 == Left vyw3000",fontsize=16,color="black",shape="box"];194 -> 239[label="",style="solid", color="black", weight=3]; 25.19/10.93 195[label="Right vyw500 == Right vyw3000",fontsize=16,color="black",shape="box"];195 -> 240[label="",style="solid", color="black", weight=3]; 25.19/10.93 196[label="primEqDouble (Double vyw500 vyw501) vyw300",fontsize=16,color="burlywood",shape="box"];2360[label="vyw300/Double vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];196 -> 2360[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2360 -> 241[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 197[label="(vyw500,vyw501) == (vyw3000,vyw3001)",fontsize=16,color="black",shape="box"];197 -> 242[label="",style="solid", color="black", weight=3]; 25.19/10.93 198[label="primEqInt (Pos vyw500) vyw300",fontsize=16,color="burlywood",shape="box"];2361[label="vyw500/Succ vyw5000",fontsize=10,color="white",style="solid",shape="box"];198 -> 2361[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2361 -> 243[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2362[label="vyw500/Zero",fontsize=10,color="white",style="solid",shape="box"];198 -> 2362[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2362 -> 244[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 199[label="primEqInt (Neg vyw500) vyw300",fontsize=16,color="burlywood",shape="box"];2363[label="vyw500/Succ vyw5000",fontsize=10,color="white",style="solid",shape="box"];199 -> 2363[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2363 -> 245[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2364[label="vyw500/Zero",fontsize=10,color="white",style="solid",shape="box"];199 -> 2364[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2364 -> 246[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 200[label="Integer vyw500 == Integer vyw3000",fontsize=16,color="black",shape="box"];200 -> 247[label="",style="solid", color="black", weight=3]; 25.19/10.93 201[label="(vyw500,vyw501,vyw502) == (vyw3000,vyw3001,vyw3002)",fontsize=16,color="black",shape="box"];201 -> 248[label="",style="solid", color="black", weight=3]; 25.19/10.93 202[label="vyw500 :% vyw501 == vyw3000 :% vyw3001",fontsize=16,color="black",shape="box"];202 -> 249[label="",style="solid", color="black", weight=3]; 25.19/10.93 203[label="primEqFloat (Float vyw500 vyw501) vyw300",fontsize=16,color="burlywood",shape="box"];2365[label="vyw300/Float vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];203 -> 2365[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2365 -> 250[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 204[label="() == ()",fontsize=16,color="black",shape="box"];204 -> 251[label="",style="solid", color="black", weight=3]; 25.19/10.93 205[label="LT",fontsize=16,color="green",shape="box"];206 -> 1129[label="",style="dashed", color="red", weight=0]; 25.19/10.93 206[label="compare2 (vyw34,vyw35) (vyw36,vyw37) False",fontsize=16,color="magenta"];206 -> 1130[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 206 -> 1131[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 206 -> 1132[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 207[label="LT",fontsize=16,color="green",shape="box"];208 -> 1129[label="",style="dashed", color="red", weight=0]; 25.19/10.93 208[label="compare2 (vyw34,vyw35) (vyw36,vyw37) (vyw35 == vyw37)",fontsize=16,color="magenta"];208 -> 1133[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 208 -> 1134[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 208 -> 1135[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 212 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 212[label="compare (vyw24,vyw25) (vyw18,vyw19) == GT",fontsize=16,color="magenta"];212 -> 264[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 212 -> 265[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 213[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM1 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) False)",fontsize=16,color="black",shape="box"];213 -> 266[label="",style="solid", color="black", weight=3]; 25.19/10.93 214[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM1 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) True)",fontsize=16,color="black",shape="box"];214 -> 267[label="",style="solid", color="black", weight=3]; 25.19/10.93 215[label="True",fontsize=16,color="green",shape="box"];216[label="False",fontsize=16,color="green",shape="box"];217[label="False",fontsize=16,color="green",shape="box"];218[label="True",fontsize=16,color="green",shape="box"];219[label="True",fontsize=16,color="green",shape="box"];220[label="False",fontsize=16,color="green",shape="box"];221[label="False",fontsize=16,color="green",shape="box"];222[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];2366[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2366[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2366 -> 268[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2367[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2367[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2367 -> 269[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2368[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2368[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2368 -> 270[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2369[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2369[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2369 -> 271[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2370[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2370[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2370 -> 272[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2371[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2371[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2371 -> 273[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2372[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2372[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2372 -> 274[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2373[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2373[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2373 -> 275[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2374[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2374[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2374 -> 276[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2375[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2375[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2375 -> 277[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2376[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2376[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2376 -> 278[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2377[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2377[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2377 -> 279[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2378[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2378[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2378 -> 280[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2379[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2379[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2379 -> 281[label="",style="solid", color="blue", weight=3]; 25.19/10.93 223[label="True",fontsize=16,color="green",shape="box"];224[label="False",fontsize=16,color="green",shape="box"];225[label="False",fontsize=16,color="green",shape="box"];226[label="False",fontsize=16,color="green",shape="box"];227[label="True",fontsize=16,color="green",shape="box"];228[label="False",fontsize=16,color="green",shape="box"];229[label="False",fontsize=16,color="green",shape="box"];230[label="False",fontsize=16,color="green",shape="box"];231[label="True",fontsize=16,color="green",shape="box"];232 -> 385[label="",style="dashed", color="red", weight=0]; 25.19/10.93 232[label="vyw500 == vyw3000 && vyw501 == vyw3001",fontsize=16,color="magenta"];232 -> 386[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 232 -> 387[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 233[label="False",fontsize=16,color="green",shape="box"];234[label="False",fontsize=16,color="green",shape="box"];235[label="True",fontsize=16,color="green",shape="box"];236[label="primEqChar (Char vyw500) (Char vyw3000)",fontsize=16,color="black",shape="box"];236 -> 293[label="",style="solid", color="black", weight=3]; 25.19/10.93 237[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];2380[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2380[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2380 -> 294[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2381[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2381[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2381 -> 295[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2382[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2382[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2382 -> 296[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2383[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2383[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2383 -> 297[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2384[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2384[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2384 -> 298[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2385[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2385[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2385 -> 299[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2386[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2386[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2386 -> 300[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2387[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2387[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2387 -> 301[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2388[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2388[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2388 -> 302[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2389[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2389[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2389 -> 303[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2390[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2390[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2390 -> 304[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2391[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2391[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2391 -> 305[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2392[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2392[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2392 -> 306[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2393[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];237 -> 2393[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2393 -> 307[label="",style="solid", color="blue", weight=3]; 25.19/10.93 238[label="False",fontsize=16,color="green",shape="box"];239[label="False",fontsize=16,color="green",shape="box"];240[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];2394[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2394[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2394 -> 308[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2395[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2395[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2395 -> 309[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2396[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2396[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2396 -> 310[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2397[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2397[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2397 -> 311[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2398[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2398[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2398 -> 312[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2399[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2399[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2399 -> 313[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2400[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2400[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2400 -> 314[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2401[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2401[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2401 -> 315[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2402[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2402[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2402 -> 316[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2403[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2403[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2403 -> 317[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2404[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2404[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2404 -> 318[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2405[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2405[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2405 -> 319[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2406[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2406[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2406 -> 320[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2407[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2407[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2407 -> 321[label="",style="solid", color="blue", weight=3]; 25.19/10.93 241[label="primEqDouble (Double vyw500 vyw501) (Double vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];241 -> 322[label="",style="solid", color="black", weight=3]; 25.19/10.93 242 -> 385[label="",style="dashed", color="red", weight=0]; 25.19/10.93 242[label="vyw500 == vyw3000 && vyw501 == vyw3001",fontsize=16,color="magenta"];242 -> 388[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 242 -> 389[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 243[label="primEqInt (Pos (Succ vyw5000)) vyw300",fontsize=16,color="burlywood",shape="box"];2408[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];243 -> 2408[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2408 -> 323[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2409[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];243 -> 2409[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2409 -> 324[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 244[label="primEqInt (Pos Zero) vyw300",fontsize=16,color="burlywood",shape="box"];2410[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];244 -> 2410[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2410 -> 325[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2411[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];244 -> 2411[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2411 -> 326[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 245[label="primEqInt (Neg (Succ vyw5000)) vyw300",fontsize=16,color="burlywood",shape="box"];2412[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];245 -> 2412[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2412 -> 327[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2413[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];245 -> 2413[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2413 -> 328[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 246[label="primEqInt (Neg Zero) vyw300",fontsize=16,color="burlywood",shape="box"];2414[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];246 -> 2414[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2414 -> 329[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2415[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];246 -> 2415[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2415 -> 330[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 247 -> 158[label="",style="dashed", color="red", weight=0]; 25.19/10.93 247[label="primEqInt vyw500 vyw3000",fontsize=16,color="magenta"];247 -> 331[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 247 -> 332[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 248 -> 385[label="",style="dashed", color="red", weight=0]; 25.19/10.93 248[label="vyw500 == vyw3000 && vyw501 == vyw3001 && vyw502 == vyw3002",fontsize=16,color="magenta"];248 -> 390[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 248 -> 391[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 249 -> 385[label="",style="dashed", color="red", weight=0]; 25.19/10.93 249[label="vyw500 == vyw3000 && vyw501 == vyw3001",fontsize=16,color="magenta"];249 -> 392[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 249 -> 393[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 250[label="primEqFloat (Float vyw500 vyw501) (Float vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];250 -> 333[label="",style="solid", color="black", weight=3]; 25.19/10.93 251[label="True",fontsize=16,color="green",shape="box"];1130[label="(vyw34,vyw35)",fontsize=16,color="green",shape="box"];1131[label="False",fontsize=16,color="green",shape="box"];1132[label="(vyw36,vyw37)",fontsize=16,color="green",shape="box"];1129[label="compare2 vyw46 vyw48 vyw74",fontsize=16,color="burlywood",shape="triangle"];2416[label="vyw74/False",fontsize=10,color="white",style="solid",shape="box"];1129 -> 2416[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2416 -> 1143[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2417[label="vyw74/True",fontsize=10,color="white",style="solid",shape="box"];1129 -> 2417[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2417 -> 1144[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1133[label="(vyw34,vyw35)",fontsize=16,color="green",shape="box"];1134[label="vyw35 == vyw37",fontsize=16,color="blue",shape="box"];2418[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 2418[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2418 -> 1145[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2419[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 2419[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2419 -> 1146[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2420[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 2420[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2420 -> 1147[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2421[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 2421[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2421 -> 1148[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2422[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 2422[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2422 -> 1149[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2423[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 2423[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2423 -> 1150[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2424[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 2424[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2424 -> 1151[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2425[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 2425[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2425 -> 1152[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2426[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 2426[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2426 -> 1153[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2427[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 2427[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2427 -> 1154[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2428[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 2428[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2428 -> 1155[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2429[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 2429[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2429 -> 1156[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2430[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 2430[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2430 -> 1157[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2431[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 2431[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2431 -> 1158[label="",style="solid", color="blue", weight=3]; 25.19/10.93 1135[label="(vyw36,vyw37)",fontsize=16,color="green",shape="box"];264[label="GT",fontsize=16,color="green",shape="box"];265[label="compare (vyw24,vyw25) (vyw18,vyw19)",fontsize=16,color="black",shape="box"];265 -> 350[label="",style="solid", color="black", weight=3]; 25.19/10.93 266[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM0 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) otherwise)",fontsize=16,color="black",shape="box"];266 -> 351[label="",style="solid", color="black", weight=3]; 25.19/10.93 267 -> 6[label="",style="dashed", color="red", weight=0]; 25.19/10.93 267[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM vyw23 (vyw24,vyw25))",fontsize=16,color="magenta"];267 -> 352[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 267 -> 353[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 267 -> 354[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 268 -> 126[label="",style="dashed", color="red", weight=0]; 25.19/10.93 268[label="vyw500 == vyw3000",fontsize=16,color="magenta"];268 -> 355[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 268 -> 356[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 269 -> 127[label="",style="dashed", color="red", weight=0]; 25.19/10.93 269[label="vyw500 == vyw3000",fontsize=16,color="magenta"];269 -> 357[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 269 -> 358[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 270 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 270[label="vyw500 == vyw3000",fontsize=16,color="magenta"];270 -> 359[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 270 -> 360[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 271 -> 129[label="",style="dashed", color="red", weight=0]; 25.19/10.93 271[label="vyw500 == vyw3000",fontsize=16,color="magenta"];271 -> 361[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 271 -> 362[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 272 -> 130[label="",style="dashed", color="red", weight=0]; 25.19/10.93 272[label="vyw500 == vyw3000",fontsize=16,color="magenta"];272 -> 363[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 272 -> 364[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 273 -> 131[label="",style="dashed", color="red", weight=0]; 25.19/10.93 273[label="vyw500 == vyw3000",fontsize=16,color="magenta"];273 -> 365[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 273 -> 366[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 274 -> 132[label="",style="dashed", color="red", weight=0]; 25.19/10.93 274[label="vyw500 == vyw3000",fontsize=16,color="magenta"];274 -> 367[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 274 -> 368[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 275 -> 133[label="",style="dashed", color="red", weight=0]; 25.19/10.93 275[label="vyw500 == vyw3000",fontsize=16,color="magenta"];275 -> 369[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 275 -> 370[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 276 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.93 276[label="vyw500 == vyw3000",fontsize=16,color="magenta"];276 -> 371[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 276 -> 372[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 277 -> 135[label="",style="dashed", color="red", weight=0]; 25.19/10.93 277[label="vyw500 == vyw3000",fontsize=16,color="magenta"];277 -> 373[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 277 -> 374[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 278 -> 136[label="",style="dashed", color="red", weight=0]; 25.19/10.93 278[label="vyw500 == vyw3000",fontsize=16,color="magenta"];278 -> 375[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 278 -> 376[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 279 -> 137[label="",style="dashed", color="red", weight=0]; 25.19/10.93 279[label="vyw500 == vyw3000",fontsize=16,color="magenta"];279 -> 377[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 279 -> 378[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 280 -> 138[label="",style="dashed", color="red", weight=0]; 25.19/10.93 280[label="vyw500 == vyw3000",fontsize=16,color="magenta"];280 -> 379[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 280 -> 380[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 281 -> 139[label="",style="dashed", color="red", weight=0]; 25.19/10.93 281[label="vyw500 == vyw3000",fontsize=16,color="magenta"];281 -> 381[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 281 -> 382[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 386[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];2432[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];386 -> 2432[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2432 -> 398[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2433[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];386 -> 2433[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2433 -> 399[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2434[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];386 -> 2434[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2434 -> 400[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2435[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];386 -> 2435[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2435 -> 401[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2436[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];386 -> 2436[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2436 -> 402[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2437[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];386 -> 2437[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2437 -> 403[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2438[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];386 -> 2438[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2438 -> 404[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2439[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];386 -> 2439[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2439 -> 405[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2440[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];386 -> 2440[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2440 -> 406[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2441[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];386 -> 2441[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2441 -> 407[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2442[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];386 -> 2442[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2442 -> 408[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2443[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];386 -> 2443[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2443 -> 409[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2444[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];386 -> 2444[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2444 -> 410[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2445[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];386 -> 2445[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2445 -> 411[label="",style="solid", color="blue", weight=3]; 25.19/10.93 387 -> 129[label="",style="dashed", color="red", weight=0]; 25.19/10.93 387[label="vyw501 == vyw3001",fontsize=16,color="magenta"];387 -> 412[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 387 -> 413[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 385[label="vyw55 && vyw56",fontsize=16,color="burlywood",shape="triangle"];2446[label="vyw55/False",fontsize=10,color="white",style="solid",shape="box"];385 -> 2446[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2446 -> 414[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2447[label="vyw55/True",fontsize=10,color="white",style="solid",shape="box"];385 -> 2447[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2447 -> 415[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 293[label="primEqNat vyw500 vyw3000",fontsize=16,color="burlywood",shape="triangle"];2448[label="vyw500/Succ vyw5000",fontsize=10,color="white",style="solid",shape="box"];293 -> 2448[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2448 -> 416[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2449[label="vyw500/Zero",fontsize=10,color="white",style="solid",shape="box"];293 -> 2449[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2449 -> 417[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 294 -> 126[label="",style="dashed", color="red", weight=0]; 25.19/10.93 294[label="vyw500 == vyw3000",fontsize=16,color="magenta"];294 -> 418[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 294 -> 419[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 295 -> 127[label="",style="dashed", color="red", weight=0]; 25.19/10.93 295[label="vyw500 == vyw3000",fontsize=16,color="magenta"];295 -> 420[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 295 -> 421[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 296 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 296[label="vyw500 == vyw3000",fontsize=16,color="magenta"];296 -> 422[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 296 -> 423[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 297 -> 129[label="",style="dashed", color="red", weight=0]; 25.19/10.93 297[label="vyw500 == vyw3000",fontsize=16,color="magenta"];297 -> 424[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 297 -> 425[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 298 -> 130[label="",style="dashed", color="red", weight=0]; 25.19/10.93 298[label="vyw500 == vyw3000",fontsize=16,color="magenta"];298 -> 426[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 298 -> 427[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 299 -> 131[label="",style="dashed", color="red", weight=0]; 25.19/10.93 299[label="vyw500 == vyw3000",fontsize=16,color="magenta"];299 -> 428[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 299 -> 429[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 300 -> 132[label="",style="dashed", color="red", weight=0]; 25.19/10.93 300[label="vyw500 == vyw3000",fontsize=16,color="magenta"];300 -> 430[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 300 -> 431[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 301 -> 133[label="",style="dashed", color="red", weight=0]; 25.19/10.93 301[label="vyw500 == vyw3000",fontsize=16,color="magenta"];301 -> 432[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 301 -> 433[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 302 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.93 302[label="vyw500 == vyw3000",fontsize=16,color="magenta"];302 -> 434[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 302 -> 435[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 303 -> 135[label="",style="dashed", color="red", weight=0]; 25.19/10.93 303[label="vyw500 == vyw3000",fontsize=16,color="magenta"];303 -> 436[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 303 -> 437[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 304 -> 136[label="",style="dashed", color="red", weight=0]; 25.19/10.93 304[label="vyw500 == vyw3000",fontsize=16,color="magenta"];304 -> 438[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 304 -> 439[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 305 -> 137[label="",style="dashed", color="red", weight=0]; 25.19/10.93 305[label="vyw500 == vyw3000",fontsize=16,color="magenta"];305 -> 440[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 305 -> 441[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 306 -> 138[label="",style="dashed", color="red", weight=0]; 25.19/10.93 306[label="vyw500 == vyw3000",fontsize=16,color="magenta"];306 -> 442[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 306 -> 443[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 307 -> 139[label="",style="dashed", color="red", weight=0]; 25.19/10.93 307[label="vyw500 == vyw3000",fontsize=16,color="magenta"];307 -> 444[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 307 -> 445[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 308 -> 126[label="",style="dashed", color="red", weight=0]; 25.19/10.93 308[label="vyw500 == vyw3000",fontsize=16,color="magenta"];308 -> 446[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 308 -> 447[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 309 -> 127[label="",style="dashed", color="red", weight=0]; 25.19/10.93 309[label="vyw500 == vyw3000",fontsize=16,color="magenta"];309 -> 448[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 309 -> 449[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 310 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 310[label="vyw500 == vyw3000",fontsize=16,color="magenta"];310 -> 450[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 310 -> 451[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 311 -> 129[label="",style="dashed", color="red", weight=0]; 25.19/10.93 311[label="vyw500 == vyw3000",fontsize=16,color="magenta"];311 -> 452[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 311 -> 453[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 312 -> 130[label="",style="dashed", color="red", weight=0]; 25.19/10.93 312[label="vyw500 == vyw3000",fontsize=16,color="magenta"];312 -> 454[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 312 -> 455[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 313 -> 131[label="",style="dashed", color="red", weight=0]; 25.19/10.93 313[label="vyw500 == vyw3000",fontsize=16,color="magenta"];313 -> 456[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 313 -> 457[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 314 -> 132[label="",style="dashed", color="red", weight=0]; 25.19/10.93 314[label="vyw500 == vyw3000",fontsize=16,color="magenta"];314 -> 458[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 314 -> 459[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 315 -> 133[label="",style="dashed", color="red", weight=0]; 25.19/10.93 315[label="vyw500 == vyw3000",fontsize=16,color="magenta"];315 -> 460[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 315 -> 461[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 316 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.93 316[label="vyw500 == vyw3000",fontsize=16,color="magenta"];316 -> 462[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 316 -> 463[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 317 -> 135[label="",style="dashed", color="red", weight=0]; 25.19/10.93 317[label="vyw500 == vyw3000",fontsize=16,color="magenta"];317 -> 464[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 317 -> 465[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 318 -> 136[label="",style="dashed", color="red", weight=0]; 25.19/10.93 318[label="vyw500 == vyw3000",fontsize=16,color="magenta"];318 -> 466[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 318 -> 467[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 319 -> 137[label="",style="dashed", color="red", weight=0]; 25.19/10.93 319[label="vyw500 == vyw3000",fontsize=16,color="magenta"];319 -> 468[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 319 -> 469[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 320 -> 138[label="",style="dashed", color="red", weight=0]; 25.19/10.93 320[label="vyw500 == vyw3000",fontsize=16,color="magenta"];320 -> 470[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 320 -> 471[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 321 -> 139[label="",style="dashed", color="red", weight=0]; 25.19/10.93 321[label="vyw500 == vyw3000",fontsize=16,color="magenta"];321 -> 472[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 321 -> 473[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 322 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.93 322[label="vyw500 * vyw3001 == vyw501 * vyw3000",fontsize=16,color="magenta"];322 -> 474[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 322 -> 475[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 388[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];2450[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 2450[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2450 -> 476[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2451[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 2451[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2451 -> 477[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2452[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 2452[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2452 -> 478[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2453[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 2453[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2453 -> 479[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2454[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 2454[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2454 -> 480[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2455[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 2455[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2455 -> 481[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2456[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 2456[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2456 -> 482[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2457[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 2457[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2457 -> 483[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2458[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 2458[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2458 -> 484[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2459[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 2459[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2459 -> 485[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2460[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 2460[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2460 -> 486[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2461[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 2461[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2461 -> 487[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2462[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 2462[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2462 -> 488[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2463[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 2463[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2463 -> 489[label="",style="solid", color="blue", weight=3]; 25.19/10.93 389[label="vyw501 == vyw3001",fontsize=16,color="blue",shape="box"];2464[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2464[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2464 -> 490[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2465[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2465[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2465 -> 491[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2466[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2466[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2466 -> 492[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2467[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2467[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2467 -> 493[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2468[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2468[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2468 -> 494[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2469[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2469[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2469 -> 495[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2470[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2470[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2470 -> 496[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2471[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2471[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2471 -> 497[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2472[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2472[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2472 -> 498[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2473[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2473[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2473 -> 499[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2474[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2474[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2474 -> 500[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2475[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2475[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2475 -> 501[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2476[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2476[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2476 -> 502[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2477[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2477[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2477 -> 503[label="",style="solid", color="blue", weight=3]; 25.19/10.93 323[label="primEqInt (Pos (Succ vyw5000)) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];2478[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];323 -> 2478[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2478 -> 504[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2479[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];323 -> 2479[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2479 -> 505[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 324[label="primEqInt (Pos (Succ vyw5000)) (Neg vyw3000)",fontsize=16,color="black",shape="box"];324 -> 506[label="",style="solid", color="black", weight=3]; 25.19/10.93 325[label="primEqInt (Pos Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];2480[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];325 -> 2480[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2480 -> 507[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2481[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];325 -> 2481[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2481 -> 508[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 326[label="primEqInt (Pos Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];2482[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];326 -> 2482[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2482 -> 509[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2483[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];326 -> 2483[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2483 -> 510[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 327[label="primEqInt (Neg (Succ vyw5000)) (Pos vyw3000)",fontsize=16,color="black",shape="box"];327 -> 511[label="",style="solid", color="black", weight=3]; 25.19/10.93 328[label="primEqInt (Neg (Succ vyw5000)) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];2484[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];328 -> 2484[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2484 -> 512[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2485[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];328 -> 2485[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2485 -> 513[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 329[label="primEqInt (Neg Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];2486[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];329 -> 2486[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2486 -> 514[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2487[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];329 -> 2487[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2487 -> 515[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 330[label="primEqInt (Neg Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];2488[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];330 -> 2488[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2488 -> 516[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2489[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];330 -> 2489[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2489 -> 517[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 331[label="vyw3000",fontsize=16,color="green",shape="box"];332[label="vyw500",fontsize=16,color="green",shape="box"];390[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];2490[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2490[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2490 -> 518[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2491[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2491[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2491 -> 519[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2492[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2492[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2492 -> 520[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2493[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2493[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2493 -> 521[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2494[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2494[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2494 -> 522[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2495[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2495[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2495 -> 523[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2496[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2496[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2496 -> 524[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2497[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2497[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2497 -> 525[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2498[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2498[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2498 -> 526[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2499[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2499[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2499 -> 527[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2500[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2500[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2500 -> 528[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2501[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2501[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2501 -> 529[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2502[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2502[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2502 -> 530[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2503[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2503[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2503 -> 531[label="",style="solid", color="blue", weight=3]; 25.19/10.93 391 -> 385[label="",style="dashed", color="red", weight=0]; 25.19/10.93 391[label="vyw501 == vyw3001 && vyw502 == vyw3002",fontsize=16,color="magenta"];391 -> 532[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 391 -> 533[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 392[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];2504[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2504[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2504 -> 534[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2505[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];392 -> 2505[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2505 -> 535[label="",style="solid", color="blue", weight=3]; 25.19/10.93 393[label="vyw501 == vyw3001",fontsize=16,color="blue",shape="box"];2506[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];393 -> 2506[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2506 -> 536[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2507[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];393 -> 2507[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2507 -> 537[label="",style="solid", color="blue", weight=3]; 25.19/10.93 333 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.93 333[label="vyw500 * vyw3001 == vyw501 * vyw3000",fontsize=16,color="magenta"];333 -> 538[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 333 -> 539[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1143[label="compare2 vyw46 vyw48 False",fontsize=16,color="black",shape="box"];1143 -> 1163[label="",style="solid", color="black", weight=3]; 25.19/10.93 1144[label="compare2 vyw46 vyw48 True",fontsize=16,color="black",shape="box"];1144 -> 1164[label="",style="solid", color="black", weight=3]; 25.19/10.93 1145 -> 126[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1145[label="vyw35 == vyw37",fontsize=16,color="magenta"];1145 -> 1165[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1145 -> 1166[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1146 -> 127[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1146[label="vyw35 == vyw37",fontsize=16,color="magenta"];1146 -> 1167[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1146 -> 1168[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1147 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1147[label="vyw35 == vyw37",fontsize=16,color="magenta"];1147 -> 1169[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1147 -> 1170[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1148 -> 129[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1148[label="vyw35 == vyw37",fontsize=16,color="magenta"];1148 -> 1171[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1148 -> 1172[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1149 -> 130[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1149[label="vyw35 == vyw37",fontsize=16,color="magenta"];1149 -> 1173[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1149 -> 1174[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1150 -> 131[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1150[label="vyw35 == vyw37",fontsize=16,color="magenta"];1150 -> 1175[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1150 -> 1176[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1151 -> 132[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1151[label="vyw35 == vyw37",fontsize=16,color="magenta"];1151 -> 1177[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1151 -> 1178[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1152 -> 133[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1152[label="vyw35 == vyw37",fontsize=16,color="magenta"];1152 -> 1179[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1152 -> 1180[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1153 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1153[label="vyw35 == vyw37",fontsize=16,color="magenta"];1153 -> 1181[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1153 -> 1182[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1154 -> 135[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1154[label="vyw35 == vyw37",fontsize=16,color="magenta"];1154 -> 1183[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1154 -> 1184[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1155 -> 136[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1155[label="vyw35 == vyw37",fontsize=16,color="magenta"];1155 -> 1185[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1155 -> 1186[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1156 -> 137[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1156[label="vyw35 == vyw37",fontsize=16,color="magenta"];1156 -> 1187[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1156 -> 1188[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1157 -> 138[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1157[label="vyw35 == vyw37",fontsize=16,color="magenta"];1157 -> 1189[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1157 -> 1190[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1158 -> 139[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1158[label="vyw35 == vyw37",fontsize=16,color="magenta"];1158 -> 1191[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1158 -> 1192[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 350[label="compare3 (vyw24,vyw25) (vyw18,vyw19)",fontsize=16,color="black",shape="box"];350 -> 570[label="",style="solid", color="black", weight=3]; 25.19/10.93 351[label="FiniteMap.lookupWithDefaultFM0 vyw17 (FiniteMap.lookupFM0 (vyw18,vyw19) vyw20 vyw21 vyw22 vyw23 (vyw24,vyw25) True)",fontsize=16,color="black",shape="box"];351 -> 571[label="",style="solid", color="black", weight=3]; 25.19/10.93 352[label="vyw23",fontsize=16,color="green",shape="box"];353[label="vyw17",fontsize=16,color="green",shape="box"];354[label="(vyw24,vyw25)",fontsize=16,color="green",shape="box"];355[label="vyw3000",fontsize=16,color="green",shape="box"];356[label="vyw500",fontsize=16,color="green",shape="box"];357[label="vyw3000",fontsize=16,color="green",shape="box"];358[label="vyw500",fontsize=16,color="green",shape="box"];359[label="vyw3000",fontsize=16,color="green",shape="box"];360[label="vyw500",fontsize=16,color="green",shape="box"];361[label="vyw3000",fontsize=16,color="green",shape="box"];362[label="vyw500",fontsize=16,color="green",shape="box"];363[label="vyw3000",fontsize=16,color="green",shape="box"];364[label="vyw500",fontsize=16,color="green",shape="box"];365[label="vyw3000",fontsize=16,color="green",shape="box"];366[label="vyw500",fontsize=16,color="green",shape="box"];367[label="vyw3000",fontsize=16,color="green",shape="box"];368[label="vyw500",fontsize=16,color="green",shape="box"];369[label="vyw3000",fontsize=16,color="green",shape="box"];370[label="vyw500",fontsize=16,color="green",shape="box"];371[label="vyw3000",fontsize=16,color="green",shape="box"];372[label="vyw500",fontsize=16,color="green",shape="box"];373[label="vyw3000",fontsize=16,color="green",shape="box"];374[label="vyw500",fontsize=16,color="green",shape="box"];375[label="vyw3000",fontsize=16,color="green",shape="box"];376[label="vyw500",fontsize=16,color="green",shape="box"];377[label="vyw3000",fontsize=16,color="green",shape="box"];378[label="vyw500",fontsize=16,color="green",shape="box"];379[label="vyw3000",fontsize=16,color="green",shape="box"];380[label="vyw500",fontsize=16,color="green",shape="box"];381[label="vyw3000",fontsize=16,color="green",shape="box"];382[label="vyw500",fontsize=16,color="green",shape="box"];398 -> 126[label="",style="dashed", color="red", weight=0]; 25.19/10.93 398[label="vyw500 == vyw3000",fontsize=16,color="magenta"];398 -> 572[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 398 -> 573[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 399 -> 127[label="",style="dashed", color="red", weight=0]; 25.19/10.93 399[label="vyw500 == vyw3000",fontsize=16,color="magenta"];399 -> 574[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 399 -> 575[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 400 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 400[label="vyw500 == vyw3000",fontsize=16,color="magenta"];400 -> 576[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 400 -> 577[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 401 -> 129[label="",style="dashed", color="red", weight=0]; 25.19/10.93 401[label="vyw500 == vyw3000",fontsize=16,color="magenta"];401 -> 578[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 401 -> 579[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 402 -> 130[label="",style="dashed", color="red", weight=0]; 25.19/10.93 402[label="vyw500 == vyw3000",fontsize=16,color="magenta"];402 -> 580[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 402 -> 581[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 403 -> 131[label="",style="dashed", color="red", weight=0]; 25.19/10.93 403[label="vyw500 == vyw3000",fontsize=16,color="magenta"];403 -> 582[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 403 -> 583[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 404 -> 132[label="",style="dashed", color="red", weight=0]; 25.19/10.93 404[label="vyw500 == vyw3000",fontsize=16,color="magenta"];404 -> 584[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 404 -> 585[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 405 -> 133[label="",style="dashed", color="red", weight=0]; 25.19/10.93 405[label="vyw500 == vyw3000",fontsize=16,color="magenta"];405 -> 586[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 405 -> 587[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 406 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.93 406[label="vyw500 == vyw3000",fontsize=16,color="magenta"];406 -> 588[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 406 -> 589[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 407 -> 135[label="",style="dashed", color="red", weight=0]; 25.19/10.93 407[label="vyw500 == vyw3000",fontsize=16,color="magenta"];407 -> 590[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 407 -> 591[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 408 -> 136[label="",style="dashed", color="red", weight=0]; 25.19/10.93 408[label="vyw500 == vyw3000",fontsize=16,color="magenta"];408 -> 592[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 408 -> 593[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 409 -> 137[label="",style="dashed", color="red", weight=0]; 25.19/10.93 409[label="vyw500 == vyw3000",fontsize=16,color="magenta"];409 -> 594[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 409 -> 595[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 410 -> 138[label="",style="dashed", color="red", weight=0]; 25.19/10.93 410[label="vyw500 == vyw3000",fontsize=16,color="magenta"];410 -> 596[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 410 -> 597[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 411 -> 139[label="",style="dashed", color="red", weight=0]; 25.19/10.93 411[label="vyw500 == vyw3000",fontsize=16,color="magenta"];411 -> 598[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 411 -> 599[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 412[label="vyw3001",fontsize=16,color="green",shape="box"];413[label="vyw501",fontsize=16,color="green",shape="box"];414[label="False && vyw56",fontsize=16,color="black",shape="box"];414 -> 600[label="",style="solid", color="black", weight=3]; 25.19/10.93 415[label="True && vyw56",fontsize=16,color="black",shape="box"];415 -> 601[label="",style="solid", color="black", weight=3]; 25.19/10.93 416[label="primEqNat (Succ vyw5000) vyw3000",fontsize=16,color="burlywood",shape="box"];2508[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];416 -> 2508[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2508 -> 602[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2509[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];416 -> 2509[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2509 -> 603[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 417[label="primEqNat Zero vyw3000",fontsize=16,color="burlywood",shape="box"];2510[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];417 -> 2510[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2510 -> 604[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2511[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];417 -> 2511[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2511 -> 605[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 418[label="vyw3000",fontsize=16,color="green",shape="box"];419[label="vyw500",fontsize=16,color="green",shape="box"];420[label="vyw3000",fontsize=16,color="green",shape="box"];421[label="vyw500",fontsize=16,color="green",shape="box"];422[label="vyw3000",fontsize=16,color="green",shape="box"];423[label="vyw500",fontsize=16,color="green",shape="box"];424[label="vyw3000",fontsize=16,color="green",shape="box"];425[label="vyw500",fontsize=16,color="green",shape="box"];426[label="vyw3000",fontsize=16,color="green",shape="box"];427[label="vyw500",fontsize=16,color="green",shape="box"];428[label="vyw3000",fontsize=16,color="green",shape="box"];429[label="vyw500",fontsize=16,color="green",shape="box"];430[label="vyw3000",fontsize=16,color="green",shape="box"];431[label="vyw500",fontsize=16,color="green",shape="box"];432[label="vyw3000",fontsize=16,color="green",shape="box"];433[label="vyw500",fontsize=16,color="green",shape="box"];434[label="vyw3000",fontsize=16,color="green",shape="box"];435[label="vyw500",fontsize=16,color="green",shape="box"];436[label="vyw3000",fontsize=16,color="green",shape="box"];437[label="vyw500",fontsize=16,color="green",shape="box"];438[label="vyw3000",fontsize=16,color="green",shape="box"];439[label="vyw500",fontsize=16,color="green",shape="box"];440[label="vyw3000",fontsize=16,color="green",shape="box"];441[label="vyw500",fontsize=16,color="green",shape="box"];442[label="vyw3000",fontsize=16,color="green",shape="box"];443[label="vyw500",fontsize=16,color="green",shape="box"];444[label="vyw3000",fontsize=16,color="green",shape="box"];445[label="vyw500",fontsize=16,color="green",shape="box"];446[label="vyw3000",fontsize=16,color="green",shape="box"];447[label="vyw500",fontsize=16,color="green",shape="box"];448[label="vyw3000",fontsize=16,color="green",shape="box"];449[label="vyw500",fontsize=16,color="green",shape="box"];450[label="vyw3000",fontsize=16,color="green",shape="box"];451[label="vyw500",fontsize=16,color="green",shape="box"];452[label="vyw3000",fontsize=16,color="green",shape="box"];453[label="vyw500",fontsize=16,color="green",shape="box"];454[label="vyw3000",fontsize=16,color="green",shape="box"];455[label="vyw500",fontsize=16,color="green",shape="box"];456[label="vyw3000",fontsize=16,color="green",shape="box"];457[label="vyw500",fontsize=16,color="green",shape="box"];458[label="vyw3000",fontsize=16,color="green",shape="box"];459[label="vyw500",fontsize=16,color="green",shape="box"];460[label="vyw3000",fontsize=16,color="green",shape="box"];461[label="vyw500",fontsize=16,color="green",shape="box"];462[label="vyw3000",fontsize=16,color="green",shape="box"];463[label="vyw500",fontsize=16,color="green",shape="box"];464[label="vyw3000",fontsize=16,color="green",shape="box"];465[label="vyw500",fontsize=16,color="green",shape="box"];466[label="vyw3000",fontsize=16,color="green",shape="box"];467[label="vyw500",fontsize=16,color="green",shape="box"];468[label="vyw3000",fontsize=16,color="green",shape="box"];469[label="vyw500",fontsize=16,color="green",shape="box"];470[label="vyw3000",fontsize=16,color="green",shape="box"];471[label="vyw500",fontsize=16,color="green",shape="box"];472[label="vyw3000",fontsize=16,color="green",shape="box"];473[label="vyw500",fontsize=16,color="green",shape="box"];474[label="vyw501 * vyw3000",fontsize=16,color="black",shape="triangle"];474 -> 606[label="",style="solid", color="black", weight=3]; 25.19/10.93 475 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.93 475[label="vyw500 * vyw3001",fontsize=16,color="magenta"];475 -> 607[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 475 -> 608[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 476 -> 126[label="",style="dashed", color="red", weight=0]; 25.19/10.93 476[label="vyw500 == vyw3000",fontsize=16,color="magenta"];476 -> 609[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 476 -> 610[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 477 -> 127[label="",style="dashed", color="red", weight=0]; 25.19/10.93 477[label="vyw500 == vyw3000",fontsize=16,color="magenta"];477 -> 611[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 477 -> 612[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 478 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 478[label="vyw500 == vyw3000",fontsize=16,color="magenta"];478 -> 613[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 478 -> 614[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 479 -> 129[label="",style="dashed", color="red", weight=0]; 25.19/10.93 479[label="vyw500 == vyw3000",fontsize=16,color="magenta"];479 -> 615[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 479 -> 616[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 480 -> 130[label="",style="dashed", color="red", weight=0]; 25.19/10.93 480[label="vyw500 == vyw3000",fontsize=16,color="magenta"];480 -> 617[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 480 -> 618[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 481 -> 131[label="",style="dashed", color="red", weight=0]; 25.19/10.93 481[label="vyw500 == vyw3000",fontsize=16,color="magenta"];481 -> 619[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 481 -> 620[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 482 -> 132[label="",style="dashed", color="red", weight=0]; 25.19/10.93 482[label="vyw500 == vyw3000",fontsize=16,color="magenta"];482 -> 621[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 482 -> 622[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 483 -> 133[label="",style="dashed", color="red", weight=0]; 25.19/10.93 483[label="vyw500 == vyw3000",fontsize=16,color="magenta"];483 -> 623[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 483 -> 624[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 484 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.93 484[label="vyw500 == vyw3000",fontsize=16,color="magenta"];484 -> 625[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 484 -> 626[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 485 -> 135[label="",style="dashed", color="red", weight=0]; 25.19/10.93 485[label="vyw500 == vyw3000",fontsize=16,color="magenta"];485 -> 627[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 485 -> 628[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 486 -> 136[label="",style="dashed", color="red", weight=0]; 25.19/10.93 486[label="vyw500 == vyw3000",fontsize=16,color="magenta"];486 -> 629[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 486 -> 630[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 487 -> 137[label="",style="dashed", color="red", weight=0]; 25.19/10.93 487[label="vyw500 == vyw3000",fontsize=16,color="magenta"];487 -> 631[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 487 -> 632[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 488 -> 138[label="",style="dashed", color="red", weight=0]; 25.19/10.93 488[label="vyw500 == vyw3000",fontsize=16,color="magenta"];488 -> 633[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 488 -> 634[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 489 -> 139[label="",style="dashed", color="red", weight=0]; 25.19/10.93 489[label="vyw500 == vyw3000",fontsize=16,color="magenta"];489 -> 635[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 489 -> 636[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 490 -> 126[label="",style="dashed", color="red", weight=0]; 25.19/10.93 490[label="vyw501 == vyw3001",fontsize=16,color="magenta"];490 -> 637[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 490 -> 638[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 491 -> 127[label="",style="dashed", color="red", weight=0]; 25.19/10.93 491[label="vyw501 == vyw3001",fontsize=16,color="magenta"];491 -> 639[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 491 -> 640[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 492 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 492[label="vyw501 == vyw3001",fontsize=16,color="magenta"];492 -> 641[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 492 -> 642[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 493 -> 129[label="",style="dashed", color="red", weight=0]; 25.19/10.93 493[label="vyw501 == vyw3001",fontsize=16,color="magenta"];493 -> 643[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 493 -> 644[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 494 -> 130[label="",style="dashed", color="red", weight=0]; 25.19/10.93 494[label="vyw501 == vyw3001",fontsize=16,color="magenta"];494 -> 645[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 494 -> 646[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 495 -> 131[label="",style="dashed", color="red", weight=0]; 25.19/10.93 495[label="vyw501 == vyw3001",fontsize=16,color="magenta"];495 -> 647[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 495 -> 648[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 496 -> 132[label="",style="dashed", color="red", weight=0]; 25.19/10.93 496[label="vyw501 == vyw3001",fontsize=16,color="magenta"];496 -> 649[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 496 -> 650[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 497 -> 133[label="",style="dashed", color="red", weight=0]; 25.19/10.93 497[label="vyw501 == vyw3001",fontsize=16,color="magenta"];497 -> 651[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 497 -> 652[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 498 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.93 498[label="vyw501 == vyw3001",fontsize=16,color="magenta"];498 -> 653[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 498 -> 654[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 499 -> 135[label="",style="dashed", color="red", weight=0]; 25.19/10.93 499[label="vyw501 == vyw3001",fontsize=16,color="magenta"];499 -> 655[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 499 -> 656[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 500 -> 136[label="",style="dashed", color="red", weight=0]; 25.19/10.93 500[label="vyw501 == vyw3001",fontsize=16,color="magenta"];500 -> 657[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 500 -> 658[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 501 -> 137[label="",style="dashed", color="red", weight=0]; 25.19/10.93 501[label="vyw501 == vyw3001",fontsize=16,color="magenta"];501 -> 659[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 501 -> 660[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 502 -> 138[label="",style="dashed", color="red", weight=0]; 25.19/10.93 502[label="vyw501 == vyw3001",fontsize=16,color="magenta"];502 -> 661[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 502 -> 662[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 503 -> 139[label="",style="dashed", color="red", weight=0]; 25.19/10.93 503[label="vyw501 == vyw3001",fontsize=16,color="magenta"];503 -> 663[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 503 -> 664[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 504[label="primEqInt (Pos (Succ vyw5000)) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];504 -> 665[label="",style="solid", color="black", weight=3]; 25.19/10.93 505[label="primEqInt (Pos (Succ vyw5000)) (Pos Zero)",fontsize=16,color="black",shape="box"];505 -> 666[label="",style="solid", color="black", weight=3]; 25.19/10.93 506[label="False",fontsize=16,color="green",shape="box"];507[label="primEqInt (Pos Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];507 -> 667[label="",style="solid", color="black", weight=3]; 25.19/10.93 508[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];508 -> 668[label="",style="solid", color="black", weight=3]; 25.19/10.93 509[label="primEqInt (Pos Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];509 -> 669[label="",style="solid", color="black", weight=3]; 25.19/10.93 510[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];510 -> 670[label="",style="solid", color="black", weight=3]; 25.19/10.93 511[label="False",fontsize=16,color="green",shape="box"];512[label="primEqInt (Neg (Succ vyw5000)) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];512 -> 671[label="",style="solid", color="black", weight=3]; 25.19/10.93 513[label="primEqInt (Neg (Succ vyw5000)) (Neg Zero)",fontsize=16,color="black",shape="box"];513 -> 672[label="",style="solid", color="black", weight=3]; 25.19/10.93 514[label="primEqInt (Neg Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];514 -> 673[label="",style="solid", color="black", weight=3]; 25.19/10.93 515[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];515 -> 674[label="",style="solid", color="black", weight=3]; 25.19/10.93 516[label="primEqInt (Neg Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];516 -> 675[label="",style="solid", color="black", weight=3]; 25.19/10.93 517[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];517 -> 676[label="",style="solid", color="black", weight=3]; 25.19/10.93 518 -> 126[label="",style="dashed", color="red", weight=0]; 25.19/10.93 518[label="vyw500 == vyw3000",fontsize=16,color="magenta"];518 -> 677[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 518 -> 678[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 519 -> 127[label="",style="dashed", color="red", weight=0]; 25.19/10.93 519[label="vyw500 == vyw3000",fontsize=16,color="magenta"];519 -> 679[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 519 -> 680[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 520 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 520[label="vyw500 == vyw3000",fontsize=16,color="magenta"];520 -> 681[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 520 -> 682[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 521 -> 129[label="",style="dashed", color="red", weight=0]; 25.19/10.93 521[label="vyw500 == vyw3000",fontsize=16,color="magenta"];521 -> 683[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 521 -> 684[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 522 -> 130[label="",style="dashed", color="red", weight=0]; 25.19/10.93 522[label="vyw500 == vyw3000",fontsize=16,color="magenta"];522 -> 685[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 522 -> 686[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 523 -> 131[label="",style="dashed", color="red", weight=0]; 25.19/10.93 523[label="vyw500 == vyw3000",fontsize=16,color="magenta"];523 -> 687[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 523 -> 688[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 524 -> 132[label="",style="dashed", color="red", weight=0]; 25.19/10.93 524[label="vyw500 == vyw3000",fontsize=16,color="magenta"];524 -> 689[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 524 -> 690[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 525 -> 133[label="",style="dashed", color="red", weight=0]; 25.19/10.93 525[label="vyw500 == vyw3000",fontsize=16,color="magenta"];525 -> 691[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 525 -> 692[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 526 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.93 526[label="vyw500 == vyw3000",fontsize=16,color="magenta"];526 -> 693[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 526 -> 694[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 527 -> 135[label="",style="dashed", color="red", weight=0]; 25.19/10.93 527[label="vyw500 == vyw3000",fontsize=16,color="magenta"];527 -> 695[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 527 -> 696[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 528 -> 136[label="",style="dashed", color="red", weight=0]; 25.19/10.93 528[label="vyw500 == vyw3000",fontsize=16,color="magenta"];528 -> 697[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 528 -> 698[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 529 -> 137[label="",style="dashed", color="red", weight=0]; 25.19/10.93 529[label="vyw500 == vyw3000",fontsize=16,color="magenta"];529 -> 699[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 529 -> 700[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 530 -> 138[label="",style="dashed", color="red", weight=0]; 25.19/10.93 530[label="vyw500 == vyw3000",fontsize=16,color="magenta"];530 -> 701[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 530 -> 702[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 531 -> 139[label="",style="dashed", color="red", weight=0]; 25.19/10.93 531[label="vyw500 == vyw3000",fontsize=16,color="magenta"];531 -> 703[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 531 -> 704[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 532[label="vyw501 == vyw3001",fontsize=16,color="blue",shape="box"];2512[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 2512[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2512 -> 705[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2513[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 2513[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2513 -> 706[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2514[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 2514[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2514 -> 707[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2515[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 2515[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2515 -> 708[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2516[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 2516[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2516 -> 709[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2517[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 2517[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2517 -> 710[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2518[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 2518[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2518 -> 711[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2519[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 2519[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2519 -> 712[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2520[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 2520[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2520 -> 713[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2521[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 2521[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2521 -> 714[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2522[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 2522[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2522 -> 715[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2523[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 2523[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2523 -> 716[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2524[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 2524[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2524 -> 717[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2525[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];532 -> 2525[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2525 -> 718[label="",style="solid", color="blue", weight=3]; 25.19/10.93 533[label="vyw502 == vyw3002",fontsize=16,color="blue",shape="box"];2526[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];533 -> 2526[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2526 -> 719[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2527[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];533 -> 2527[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2527 -> 720[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2528[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];533 -> 2528[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2528 -> 721[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2529[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];533 -> 2529[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2529 -> 722[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2530[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];533 -> 2530[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2530 -> 723[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2531[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];533 -> 2531[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2531 -> 724[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2532[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];533 -> 2532[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2532 -> 725[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2533[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];533 -> 2533[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2533 -> 726[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2534[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];533 -> 2534[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2534 -> 727[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2535[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];533 -> 2535[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2535 -> 728[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2536[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];533 -> 2536[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2536 -> 729[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2537[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];533 -> 2537[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2537 -> 730[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2538[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];533 -> 2538[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2538 -> 731[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2539[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];533 -> 2539[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2539 -> 732[label="",style="solid", color="blue", weight=3]; 25.19/10.93 534 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.93 534[label="vyw500 == vyw3000",fontsize=16,color="magenta"];534 -> 733[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 534 -> 734[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 535 -> 135[label="",style="dashed", color="red", weight=0]; 25.19/10.93 535[label="vyw500 == vyw3000",fontsize=16,color="magenta"];535 -> 735[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 535 -> 736[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 536 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.93 536[label="vyw501 == vyw3001",fontsize=16,color="magenta"];536 -> 737[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 536 -> 738[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 537 -> 135[label="",style="dashed", color="red", weight=0]; 25.19/10.93 537[label="vyw501 == vyw3001",fontsize=16,color="magenta"];537 -> 739[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 537 -> 740[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 538 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.93 538[label="vyw501 * vyw3000",fontsize=16,color="magenta"];538 -> 741[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 538 -> 742[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 539 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.93 539[label="vyw500 * vyw3001",fontsize=16,color="magenta"];539 -> 743[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 539 -> 744[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1163[label="compare1 vyw46 vyw48 (vyw46 <= vyw48)",fontsize=16,color="burlywood",shape="box"];2540[label="vyw46/(vyw460,vyw461)",fontsize=10,color="white",style="solid",shape="box"];1163 -> 2540[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2540 -> 1197[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1164[label="EQ",fontsize=16,color="green",shape="box"];1165[label="vyw37",fontsize=16,color="green",shape="box"];1166[label="vyw35",fontsize=16,color="green",shape="box"];1167[label="vyw37",fontsize=16,color="green",shape="box"];1168[label="vyw35",fontsize=16,color="green",shape="box"];1169[label="vyw37",fontsize=16,color="green",shape="box"];1170[label="vyw35",fontsize=16,color="green",shape="box"];1171[label="vyw37",fontsize=16,color="green",shape="box"];1172[label="vyw35",fontsize=16,color="green",shape="box"];1173[label="vyw37",fontsize=16,color="green",shape="box"];1174[label="vyw35",fontsize=16,color="green",shape="box"];1175[label="vyw37",fontsize=16,color="green",shape="box"];1176[label="vyw35",fontsize=16,color="green",shape="box"];1177[label="vyw37",fontsize=16,color="green",shape="box"];1178[label="vyw35",fontsize=16,color="green",shape="box"];1179[label="vyw37",fontsize=16,color="green",shape="box"];1180[label="vyw35",fontsize=16,color="green",shape="box"];1181[label="vyw37",fontsize=16,color="green",shape="box"];1182[label="vyw35",fontsize=16,color="green",shape="box"];1183[label="vyw37",fontsize=16,color="green",shape="box"];1184[label="vyw35",fontsize=16,color="green",shape="box"];1185[label="vyw37",fontsize=16,color="green",shape="box"];1186[label="vyw35",fontsize=16,color="green",shape="box"];1187[label="vyw37",fontsize=16,color="green",shape="box"];1188[label="vyw35",fontsize=16,color="green",shape="box"];1189[label="vyw37",fontsize=16,color="green",shape="box"];1190[label="vyw35",fontsize=16,color="green",shape="box"];1191[label="vyw37",fontsize=16,color="green",shape="box"];1192[label="vyw35",fontsize=16,color="green",shape="box"];570 -> 1129[label="",style="dashed", color="red", weight=0]; 25.19/10.93 570[label="compare2 (vyw24,vyw25) (vyw18,vyw19) ((vyw24,vyw25) == (vyw18,vyw19))",fontsize=16,color="magenta"];570 -> 1139[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 570 -> 1140[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 570 -> 1141[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 571[label="FiniteMap.lookupWithDefaultFM0 vyw17 (Just vyw20)",fontsize=16,color="black",shape="box"];571 -> 751[label="",style="solid", color="black", weight=3]; 25.19/10.93 572[label="vyw3000",fontsize=16,color="green",shape="box"];573[label="vyw500",fontsize=16,color="green",shape="box"];574[label="vyw3000",fontsize=16,color="green",shape="box"];575[label="vyw500",fontsize=16,color="green",shape="box"];576[label="vyw3000",fontsize=16,color="green",shape="box"];577[label="vyw500",fontsize=16,color="green",shape="box"];578[label="vyw3000",fontsize=16,color="green",shape="box"];579[label="vyw500",fontsize=16,color="green",shape="box"];580[label="vyw3000",fontsize=16,color="green",shape="box"];581[label="vyw500",fontsize=16,color="green",shape="box"];582[label="vyw3000",fontsize=16,color="green",shape="box"];583[label="vyw500",fontsize=16,color="green",shape="box"];584[label="vyw3000",fontsize=16,color="green",shape="box"];585[label="vyw500",fontsize=16,color="green",shape="box"];586[label="vyw3000",fontsize=16,color="green",shape="box"];587[label="vyw500",fontsize=16,color="green",shape="box"];588[label="vyw3000",fontsize=16,color="green",shape="box"];589[label="vyw500",fontsize=16,color="green",shape="box"];590[label="vyw3000",fontsize=16,color="green",shape="box"];591[label="vyw500",fontsize=16,color="green",shape="box"];592[label="vyw3000",fontsize=16,color="green",shape="box"];593[label="vyw500",fontsize=16,color="green",shape="box"];594[label="vyw3000",fontsize=16,color="green",shape="box"];595[label="vyw500",fontsize=16,color="green",shape="box"];596[label="vyw3000",fontsize=16,color="green",shape="box"];597[label="vyw500",fontsize=16,color="green",shape="box"];598[label="vyw3000",fontsize=16,color="green",shape="box"];599[label="vyw500",fontsize=16,color="green",shape="box"];600[label="False",fontsize=16,color="green",shape="box"];601[label="vyw56",fontsize=16,color="green",shape="box"];602[label="primEqNat (Succ vyw5000) (Succ vyw30000)",fontsize=16,color="black",shape="box"];602 -> 752[label="",style="solid", color="black", weight=3]; 25.19/10.93 603[label="primEqNat (Succ vyw5000) Zero",fontsize=16,color="black",shape="box"];603 -> 753[label="",style="solid", color="black", weight=3]; 25.19/10.93 604[label="primEqNat Zero (Succ vyw30000)",fontsize=16,color="black",shape="box"];604 -> 754[label="",style="solid", color="black", weight=3]; 25.19/10.93 605[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];605 -> 755[label="",style="solid", color="black", weight=3]; 25.19/10.93 606[label="primMulInt vyw501 vyw3000",fontsize=16,color="burlywood",shape="triangle"];2541[label="vyw501/Pos vyw5010",fontsize=10,color="white",style="solid",shape="box"];606 -> 2541[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2541 -> 756[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2542[label="vyw501/Neg vyw5010",fontsize=10,color="white",style="solid",shape="box"];606 -> 2542[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2542 -> 757[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 607[label="vyw3001",fontsize=16,color="green",shape="box"];608[label="vyw500",fontsize=16,color="green",shape="box"];609[label="vyw3000",fontsize=16,color="green",shape="box"];610[label="vyw500",fontsize=16,color="green",shape="box"];611[label="vyw3000",fontsize=16,color="green",shape="box"];612[label="vyw500",fontsize=16,color="green",shape="box"];613[label="vyw3000",fontsize=16,color="green",shape="box"];614[label="vyw500",fontsize=16,color="green",shape="box"];615[label="vyw3000",fontsize=16,color="green",shape="box"];616[label="vyw500",fontsize=16,color="green",shape="box"];617[label="vyw3000",fontsize=16,color="green",shape="box"];618[label="vyw500",fontsize=16,color="green",shape="box"];619[label="vyw3000",fontsize=16,color="green",shape="box"];620[label="vyw500",fontsize=16,color="green",shape="box"];621[label="vyw3000",fontsize=16,color="green",shape="box"];622[label="vyw500",fontsize=16,color="green",shape="box"];623[label="vyw3000",fontsize=16,color="green",shape="box"];624[label="vyw500",fontsize=16,color="green",shape="box"];625[label="vyw3000",fontsize=16,color="green",shape="box"];626[label="vyw500",fontsize=16,color="green",shape="box"];627[label="vyw3000",fontsize=16,color="green",shape="box"];628[label="vyw500",fontsize=16,color="green",shape="box"];629[label="vyw3000",fontsize=16,color="green",shape="box"];630[label="vyw500",fontsize=16,color="green",shape="box"];631[label="vyw3000",fontsize=16,color="green",shape="box"];632[label="vyw500",fontsize=16,color="green",shape="box"];633[label="vyw3000",fontsize=16,color="green",shape="box"];634[label="vyw500",fontsize=16,color="green",shape="box"];635[label="vyw3000",fontsize=16,color="green",shape="box"];636[label="vyw500",fontsize=16,color="green",shape="box"];637[label="vyw3001",fontsize=16,color="green",shape="box"];638[label="vyw501",fontsize=16,color="green",shape="box"];639[label="vyw3001",fontsize=16,color="green",shape="box"];640[label="vyw501",fontsize=16,color="green",shape="box"];641[label="vyw3001",fontsize=16,color="green",shape="box"];642[label="vyw501",fontsize=16,color="green",shape="box"];643[label="vyw3001",fontsize=16,color="green",shape="box"];644[label="vyw501",fontsize=16,color="green",shape="box"];645[label="vyw3001",fontsize=16,color="green",shape="box"];646[label="vyw501",fontsize=16,color="green",shape="box"];647[label="vyw3001",fontsize=16,color="green",shape="box"];648[label="vyw501",fontsize=16,color="green",shape="box"];649[label="vyw3001",fontsize=16,color="green",shape="box"];650[label="vyw501",fontsize=16,color="green",shape="box"];651[label="vyw3001",fontsize=16,color="green",shape="box"];652[label="vyw501",fontsize=16,color="green",shape="box"];653[label="vyw3001",fontsize=16,color="green",shape="box"];654[label="vyw501",fontsize=16,color="green",shape="box"];655[label="vyw3001",fontsize=16,color="green",shape="box"];656[label="vyw501",fontsize=16,color="green",shape="box"];657[label="vyw3001",fontsize=16,color="green",shape="box"];658[label="vyw501",fontsize=16,color="green",shape="box"];659[label="vyw3001",fontsize=16,color="green",shape="box"];660[label="vyw501",fontsize=16,color="green",shape="box"];661[label="vyw3001",fontsize=16,color="green",shape="box"];662[label="vyw501",fontsize=16,color="green",shape="box"];663[label="vyw3001",fontsize=16,color="green",shape="box"];664[label="vyw501",fontsize=16,color="green",shape="box"];665 -> 293[label="",style="dashed", color="red", weight=0]; 25.19/10.93 665[label="primEqNat vyw5000 vyw30000",fontsize=16,color="magenta"];665 -> 758[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 665 -> 759[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 666[label="False",fontsize=16,color="green",shape="box"];667[label="False",fontsize=16,color="green",shape="box"];668[label="True",fontsize=16,color="green",shape="box"];669[label="False",fontsize=16,color="green",shape="box"];670[label="True",fontsize=16,color="green",shape="box"];671 -> 293[label="",style="dashed", color="red", weight=0]; 25.19/10.93 671[label="primEqNat vyw5000 vyw30000",fontsize=16,color="magenta"];671 -> 760[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 671 -> 761[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 672[label="False",fontsize=16,color="green",shape="box"];673[label="False",fontsize=16,color="green",shape="box"];674[label="True",fontsize=16,color="green",shape="box"];675[label="False",fontsize=16,color="green",shape="box"];676[label="True",fontsize=16,color="green",shape="box"];677[label="vyw3000",fontsize=16,color="green",shape="box"];678[label="vyw500",fontsize=16,color="green",shape="box"];679[label="vyw3000",fontsize=16,color="green",shape="box"];680[label="vyw500",fontsize=16,color="green",shape="box"];681[label="vyw3000",fontsize=16,color="green",shape="box"];682[label="vyw500",fontsize=16,color="green",shape="box"];683[label="vyw3000",fontsize=16,color="green",shape="box"];684[label="vyw500",fontsize=16,color="green",shape="box"];685[label="vyw3000",fontsize=16,color="green",shape="box"];686[label="vyw500",fontsize=16,color="green",shape="box"];687[label="vyw3000",fontsize=16,color="green",shape="box"];688[label="vyw500",fontsize=16,color="green",shape="box"];689[label="vyw3000",fontsize=16,color="green",shape="box"];690[label="vyw500",fontsize=16,color="green",shape="box"];691[label="vyw3000",fontsize=16,color="green",shape="box"];692[label="vyw500",fontsize=16,color="green",shape="box"];693[label="vyw3000",fontsize=16,color="green",shape="box"];694[label="vyw500",fontsize=16,color="green",shape="box"];695[label="vyw3000",fontsize=16,color="green",shape="box"];696[label="vyw500",fontsize=16,color="green",shape="box"];697[label="vyw3000",fontsize=16,color="green",shape="box"];698[label="vyw500",fontsize=16,color="green",shape="box"];699[label="vyw3000",fontsize=16,color="green",shape="box"];700[label="vyw500",fontsize=16,color="green",shape="box"];701[label="vyw3000",fontsize=16,color="green",shape="box"];702[label="vyw500",fontsize=16,color="green",shape="box"];703[label="vyw3000",fontsize=16,color="green",shape="box"];704[label="vyw500",fontsize=16,color="green",shape="box"];705 -> 126[label="",style="dashed", color="red", weight=0]; 25.19/10.93 705[label="vyw501 == vyw3001",fontsize=16,color="magenta"];705 -> 762[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 705 -> 763[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 706 -> 127[label="",style="dashed", color="red", weight=0]; 25.19/10.93 706[label="vyw501 == vyw3001",fontsize=16,color="magenta"];706 -> 764[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 706 -> 765[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 707 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 707[label="vyw501 == vyw3001",fontsize=16,color="magenta"];707 -> 766[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 707 -> 767[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 708 -> 129[label="",style="dashed", color="red", weight=0]; 25.19/10.93 708[label="vyw501 == vyw3001",fontsize=16,color="magenta"];708 -> 768[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 708 -> 769[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 709 -> 130[label="",style="dashed", color="red", weight=0]; 25.19/10.93 709[label="vyw501 == vyw3001",fontsize=16,color="magenta"];709 -> 770[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 709 -> 771[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 710 -> 131[label="",style="dashed", color="red", weight=0]; 25.19/10.93 710[label="vyw501 == vyw3001",fontsize=16,color="magenta"];710 -> 772[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 710 -> 773[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 711 -> 132[label="",style="dashed", color="red", weight=0]; 25.19/10.93 711[label="vyw501 == vyw3001",fontsize=16,color="magenta"];711 -> 774[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 711 -> 775[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 712 -> 133[label="",style="dashed", color="red", weight=0]; 25.19/10.93 712[label="vyw501 == vyw3001",fontsize=16,color="magenta"];712 -> 776[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 712 -> 777[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 713 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.93 713[label="vyw501 == vyw3001",fontsize=16,color="magenta"];713 -> 778[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 713 -> 779[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 714 -> 135[label="",style="dashed", color="red", weight=0]; 25.19/10.93 714[label="vyw501 == vyw3001",fontsize=16,color="magenta"];714 -> 780[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 714 -> 781[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 715 -> 136[label="",style="dashed", color="red", weight=0]; 25.19/10.93 715[label="vyw501 == vyw3001",fontsize=16,color="magenta"];715 -> 782[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 715 -> 783[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 716 -> 137[label="",style="dashed", color="red", weight=0]; 25.19/10.93 716[label="vyw501 == vyw3001",fontsize=16,color="magenta"];716 -> 784[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 716 -> 785[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 717 -> 138[label="",style="dashed", color="red", weight=0]; 25.19/10.93 717[label="vyw501 == vyw3001",fontsize=16,color="magenta"];717 -> 786[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 717 -> 787[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 718 -> 139[label="",style="dashed", color="red", weight=0]; 25.19/10.93 718[label="vyw501 == vyw3001",fontsize=16,color="magenta"];718 -> 788[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 718 -> 789[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 719 -> 126[label="",style="dashed", color="red", weight=0]; 25.19/10.93 719[label="vyw502 == vyw3002",fontsize=16,color="magenta"];719 -> 790[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 719 -> 791[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 720 -> 127[label="",style="dashed", color="red", weight=0]; 25.19/10.93 720[label="vyw502 == vyw3002",fontsize=16,color="magenta"];720 -> 792[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 720 -> 793[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 721 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 721[label="vyw502 == vyw3002",fontsize=16,color="magenta"];721 -> 794[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 721 -> 795[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 722 -> 129[label="",style="dashed", color="red", weight=0]; 25.19/10.93 722[label="vyw502 == vyw3002",fontsize=16,color="magenta"];722 -> 796[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 722 -> 797[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 723 -> 130[label="",style="dashed", color="red", weight=0]; 25.19/10.93 723[label="vyw502 == vyw3002",fontsize=16,color="magenta"];723 -> 798[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 723 -> 799[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 724 -> 131[label="",style="dashed", color="red", weight=0]; 25.19/10.93 724[label="vyw502 == vyw3002",fontsize=16,color="magenta"];724 -> 800[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 724 -> 801[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 725 -> 132[label="",style="dashed", color="red", weight=0]; 25.19/10.93 725[label="vyw502 == vyw3002",fontsize=16,color="magenta"];725 -> 802[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 725 -> 803[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 726 -> 133[label="",style="dashed", color="red", weight=0]; 25.19/10.93 726[label="vyw502 == vyw3002",fontsize=16,color="magenta"];726 -> 804[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 726 -> 805[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 727 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.93 727[label="vyw502 == vyw3002",fontsize=16,color="magenta"];727 -> 806[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 727 -> 807[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 728 -> 135[label="",style="dashed", color="red", weight=0]; 25.19/10.93 728[label="vyw502 == vyw3002",fontsize=16,color="magenta"];728 -> 808[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 728 -> 809[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 729 -> 136[label="",style="dashed", color="red", weight=0]; 25.19/10.93 729[label="vyw502 == vyw3002",fontsize=16,color="magenta"];729 -> 810[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 729 -> 811[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 730 -> 137[label="",style="dashed", color="red", weight=0]; 25.19/10.93 730[label="vyw502 == vyw3002",fontsize=16,color="magenta"];730 -> 812[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 730 -> 813[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 731 -> 138[label="",style="dashed", color="red", weight=0]; 25.19/10.93 731[label="vyw502 == vyw3002",fontsize=16,color="magenta"];731 -> 814[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 731 -> 815[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 732 -> 139[label="",style="dashed", color="red", weight=0]; 25.19/10.93 732[label="vyw502 == vyw3002",fontsize=16,color="magenta"];732 -> 816[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 732 -> 817[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 733[label="vyw3000",fontsize=16,color="green",shape="box"];734[label="vyw500",fontsize=16,color="green",shape="box"];735[label="vyw3000",fontsize=16,color="green",shape="box"];736[label="vyw500",fontsize=16,color="green",shape="box"];737[label="vyw3001",fontsize=16,color="green",shape="box"];738[label="vyw501",fontsize=16,color="green",shape="box"];739[label="vyw3001",fontsize=16,color="green",shape="box"];740[label="vyw501",fontsize=16,color="green",shape="box"];741[label="vyw3000",fontsize=16,color="green",shape="box"];742[label="vyw501",fontsize=16,color="green",shape="box"];743[label="vyw3001",fontsize=16,color="green",shape="box"];744[label="vyw500",fontsize=16,color="green",shape="box"];1197[label="compare1 (vyw460,vyw461) vyw48 ((vyw460,vyw461) <= vyw48)",fontsize=16,color="burlywood",shape="box"];2543[label="vyw48/(vyw480,vyw481)",fontsize=10,color="white",style="solid",shape="box"];1197 -> 2543[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2543 -> 1200[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1139[label="(vyw24,vyw25)",fontsize=16,color="green",shape="box"];1140 -> 133[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1140[label="(vyw24,vyw25) == (vyw18,vyw19)",fontsize=16,color="magenta"];1140 -> 1159[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1140 -> 1160[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1141[label="(vyw18,vyw19)",fontsize=16,color="green",shape="box"];751[label="vyw20",fontsize=16,color="green",shape="box"];752 -> 293[label="",style="dashed", color="red", weight=0]; 25.19/10.93 752[label="primEqNat vyw5000 vyw30000",fontsize=16,color="magenta"];752 -> 822[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 752 -> 823[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 753[label="False",fontsize=16,color="green",shape="box"];754[label="False",fontsize=16,color="green",shape="box"];755[label="True",fontsize=16,color="green",shape="box"];756[label="primMulInt (Pos vyw5010) vyw3000",fontsize=16,color="burlywood",shape="box"];2544[label="vyw3000/Pos vyw30000",fontsize=10,color="white",style="solid",shape="box"];756 -> 2544[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2544 -> 824[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2545[label="vyw3000/Neg vyw30000",fontsize=10,color="white",style="solid",shape="box"];756 -> 2545[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2545 -> 825[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 757[label="primMulInt (Neg vyw5010) vyw3000",fontsize=16,color="burlywood",shape="box"];2546[label="vyw3000/Pos vyw30000",fontsize=10,color="white",style="solid",shape="box"];757 -> 2546[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2546 -> 826[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2547[label="vyw3000/Neg vyw30000",fontsize=10,color="white",style="solid",shape="box"];757 -> 2547[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2547 -> 827[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 758[label="vyw30000",fontsize=16,color="green",shape="box"];759[label="vyw5000",fontsize=16,color="green",shape="box"];760[label="vyw30000",fontsize=16,color="green",shape="box"];761[label="vyw5000",fontsize=16,color="green",shape="box"];762[label="vyw3001",fontsize=16,color="green",shape="box"];763[label="vyw501",fontsize=16,color="green",shape="box"];764[label="vyw3001",fontsize=16,color="green",shape="box"];765[label="vyw501",fontsize=16,color="green",shape="box"];766[label="vyw3001",fontsize=16,color="green",shape="box"];767[label="vyw501",fontsize=16,color="green",shape="box"];768[label="vyw3001",fontsize=16,color="green",shape="box"];769[label="vyw501",fontsize=16,color="green",shape="box"];770[label="vyw3001",fontsize=16,color="green",shape="box"];771[label="vyw501",fontsize=16,color="green",shape="box"];772[label="vyw3001",fontsize=16,color="green",shape="box"];773[label="vyw501",fontsize=16,color="green",shape="box"];774[label="vyw3001",fontsize=16,color="green",shape="box"];775[label="vyw501",fontsize=16,color="green",shape="box"];776[label="vyw3001",fontsize=16,color="green",shape="box"];777[label="vyw501",fontsize=16,color="green",shape="box"];778[label="vyw3001",fontsize=16,color="green",shape="box"];779[label="vyw501",fontsize=16,color="green",shape="box"];780[label="vyw3001",fontsize=16,color="green",shape="box"];781[label="vyw501",fontsize=16,color="green",shape="box"];782[label="vyw3001",fontsize=16,color="green",shape="box"];783[label="vyw501",fontsize=16,color="green",shape="box"];784[label="vyw3001",fontsize=16,color="green",shape="box"];785[label="vyw501",fontsize=16,color="green",shape="box"];786[label="vyw3001",fontsize=16,color="green",shape="box"];787[label="vyw501",fontsize=16,color="green",shape="box"];788[label="vyw3001",fontsize=16,color="green",shape="box"];789[label="vyw501",fontsize=16,color="green",shape="box"];790[label="vyw3002",fontsize=16,color="green",shape="box"];791[label="vyw502",fontsize=16,color="green",shape="box"];792[label="vyw3002",fontsize=16,color="green",shape="box"];793[label="vyw502",fontsize=16,color="green",shape="box"];794[label="vyw3002",fontsize=16,color="green",shape="box"];795[label="vyw502",fontsize=16,color="green",shape="box"];796[label="vyw3002",fontsize=16,color="green",shape="box"];797[label="vyw502",fontsize=16,color="green",shape="box"];798[label="vyw3002",fontsize=16,color="green",shape="box"];799[label="vyw502",fontsize=16,color="green",shape="box"];800[label="vyw3002",fontsize=16,color="green",shape="box"];801[label="vyw502",fontsize=16,color="green",shape="box"];802[label="vyw3002",fontsize=16,color="green",shape="box"];803[label="vyw502",fontsize=16,color="green",shape="box"];804[label="vyw3002",fontsize=16,color="green",shape="box"];805[label="vyw502",fontsize=16,color="green",shape="box"];806[label="vyw3002",fontsize=16,color="green",shape="box"];807[label="vyw502",fontsize=16,color="green",shape="box"];808[label="vyw3002",fontsize=16,color="green",shape="box"];809[label="vyw502",fontsize=16,color="green",shape="box"];810[label="vyw3002",fontsize=16,color="green",shape="box"];811[label="vyw502",fontsize=16,color="green",shape="box"];812[label="vyw3002",fontsize=16,color="green",shape="box"];813[label="vyw502",fontsize=16,color="green",shape="box"];814[label="vyw3002",fontsize=16,color="green",shape="box"];815[label="vyw502",fontsize=16,color="green",shape="box"];816[label="vyw3002",fontsize=16,color="green",shape="box"];817[label="vyw502",fontsize=16,color="green",shape="box"];1200[label="compare1 (vyw460,vyw461) (vyw480,vyw481) ((vyw460,vyw461) <= (vyw480,vyw481))",fontsize=16,color="black",shape="box"];1200 -> 1202[label="",style="solid", color="black", weight=3]; 25.19/10.93 1159[label="(vyw18,vyw19)",fontsize=16,color="green",shape="box"];1160[label="(vyw24,vyw25)",fontsize=16,color="green",shape="box"];822[label="vyw30000",fontsize=16,color="green",shape="box"];823[label="vyw5000",fontsize=16,color="green",shape="box"];824[label="primMulInt (Pos vyw5010) (Pos vyw30000)",fontsize=16,color="black",shape="box"];824 -> 861[label="",style="solid", color="black", weight=3]; 25.19/10.93 825[label="primMulInt (Pos vyw5010) (Neg vyw30000)",fontsize=16,color="black",shape="box"];825 -> 862[label="",style="solid", color="black", weight=3]; 25.19/10.93 826[label="primMulInt (Neg vyw5010) (Pos vyw30000)",fontsize=16,color="black",shape="box"];826 -> 863[label="",style="solid", color="black", weight=3]; 25.19/10.93 827[label="primMulInt (Neg vyw5010) (Neg vyw30000)",fontsize=16,color="black",shape="box"];827 -> 864[label="",style="solid", color="black", weight=3]; 25.19/10.93 1202 -> 1209[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1202[label="compare1 (vyw460,vyw461) (vyw480,vyw481) (vyw460 < vyw480 || vyw460 == vyw480 && vyw461 <= vyw481)",fontsize=16,color="magenta"];1202 -> 1210[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1202 -> 1211[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1202 -> 1212[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1202 -> 1213[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1202 -> 1214[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1202 -> 1215[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 861[label="Pos (primMulNat vyw5010 vyw30000)",fontsize=16,color="green",shape="box"];861 -> 909[label="",style="dashed", color="green", weight=3]; 25.19/10.93 862[label="Neg (primMulNat vyw5010 vyw30000)",fontsize=16,color="green",shape="box"];862 -> 910[label="",style="dashed", color="green", weight=3]; 25.19/10.93 863[label="Neg (primMulNat vyw5010 vyw30000)",fontsize=16,color="green",shape="box"];863 -> 911[label="",style="dashed", color="green", weight=3]; 25.19/10.93 864[label="Pos (primMulNat vyw5010 vyw30000)",fontsize=16,color="green",shape="box"];864 -> 912[label="",style="dashed", color="green", weight=3]; 25.19/10.93 1210[label="vyw480",fontsize=16,color="green",shape="box"];1211[label="vyw460",fontsize=16,color="green",shape="box"];1212[label="vyw460 < vyw480",fontsize=16,color="blue",shape="box"];2548[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2548[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2548 -> 1222[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2549[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2549[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2549 -> 1223[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2550[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2550[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2550 -> 1224[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2551[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2551[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2551 -> 1225[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2552[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2552[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2552 -> 1226[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2553[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2553[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2553 -> 1227[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2554[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2554[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2554 -> 1228[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2555[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2555[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2555 -> 1229[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2556[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2556[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2556 -> 1230[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2557[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2557[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2557 -> 1231[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2558[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2558[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2558 -> 1232[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2559[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2559[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2559 -> 1233[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2560[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2560[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2560 -> 1234[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2561[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2561[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2561 -> 1235[label="",style="solid", color="blue", weight=3]; 25.19/10.93 1213 -> 385[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1213[label="vyw460 == vyw480 && vyw461 <= vyw481",fontsize=16,color="magenta"];1213 -> 1236[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1213 -> 1237[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1214[label="vyw461",fontsize=16,color="green",shape="box"];1215[label="vyw481",fontsize=16,color="green",shape="box"];1209[label="compare1 (vyw84,vyw85) (vyw86,vyw87) (vyw88 || vyw89)",fontsize=16,color="burlywood",shape="triangle"];2562[label="vyw88/False",fontsize=10,color="white",style="solid",shape="box"];1209 -> 2562[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2562 -> 1238[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2563[label="vyw88/True",fontsize=10,color="white",style="solid",shape="box"];1209 -> 2563[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2563 -> 1239[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 909[label="primMulNat vyw5010 vyw30000",fontsize=16,color="burlywood",shape="triangle"];2564[label="vyw5010/Succ vyw50100",fontsize=10,color="white",style="solid",shape="box"];909 -> 2564[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2564 -> 991[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2565[label="vyw5010/Zero",fontsize=10,color="white",style="solid",shape="box"];909 -> 2565[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2565 -> 992[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 910 -> 909[label="",style="dashed", color="red", weight=0]; 25.19/10.93 910[label="primMulNat vyw5010 vyw30000",fontsize=16,color="magenta"];910 -> 993[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 911 -> 909[label="",style="dashed", color="red", weight=0]; 25.19/10.93 911[label="primMulNat vyw5010 vyw30000",fontsize=16,color="magenta"];911 -> 994[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 912 -> 909[label="",style="dashed", color="red", weight=0]; 25.19/10.93 912[label="primMulNat vyw5010 vyw30000",fontsize=16,color="magenta"];912 -> 995[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 912 -> 996[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1222[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1222 -> 1244[label="",style="solid", color="black", weight=3]; 25.19/10.93 1223[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1223 -> 1245[label="",style="solid", color="black", weight=3]; 25.19/10.93 1224[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1224 -> 1246[label="",style="solid", color="black", weight=3]; 25.19/10.93 1225[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1225 -> 1247[label="",style="solid", color="black", weight=3]; 25.19/10.93 1226[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1226 -> 1248[label="",style="solid", color="black", weight=3]; 25.19/10.93 1227[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1227 -> 1249[label="",style="solid", color="black", weight=3]; 25.19/10.93 1228[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1228 -> 1250[label="",style="solid", color="black", weight=3]; 25.19/10.93 1229[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1229 -> 1251[label="",style="solid", color="black", weight=3]; 25.19/10.93 1230[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1230 -> 1252[label="",style="solid", color="black", weight=3]; 25.19/10.93 1231[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1231 -> 1253[label="",style="solid", color="black", weight=3]; 25.19/10.93 1232[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1232 -> 1254[label="",style="solid", color="black", weight=3]; 25.19/10.93 1233[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1233 -> 1255[label="",style="solid", color="black", weight=3]; 25.19/10.93 1234[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1234 -> 1256[label="",style="solid", color="black", weight=3]; 25.19/10.93 1235[label="vyw460 < vyw480",fontsize=16,color="black",shape="triangle"];1235 -> 1257[label="",style="solid", color="black", weight=3]; 25.19/10.93 1236[label="vyw460 == vyw480",fontsize=16,color="blue",shape="box"];2566[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1236 -> 2566[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2566 -> 1258[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2567[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1236 -> 2567[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2567 -> 1259[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2568[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1236 -> 2568[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2568 -> 1260[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2569[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1236 -> 2569[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2569 -> 1261[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2570[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1236 -> 2570[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2570 -> 1262[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2571[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1236 -> 2571[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2571 -> 1263[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2572[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1236 -> 2572[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2572 -> 1264[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2573[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1236 -> 2573[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2573 -> 1265[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2574[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1236 -> 2574[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2574 -> 1266[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2575[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1236 -> 2575[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2575 -> 1267[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2576[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1236 -> 2576[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2576 -> 1268[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2577[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1236 -> 2577[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2577 -> 1269[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2578[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1236 -> 2578[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2578 -> 1270[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2579[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1236 -> 2579[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2579 -> 1271[label="",style="solid", color="blue", weight=3]; 25.19/10.93 1237[label="vyw461 <= vyw481",fontsize=16,color="blue",shape="box"];2580[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 2580[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2580 -> 1272[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2581[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 2581[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2581 -> 1273[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2582[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 2582[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2582 -> 1274[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2583[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 2583[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2583 -> 1275[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2584[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 2584[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2584 -> 1276[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2585[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 2585[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2585 -> 1277[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2586[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 2586[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2586 -> 1278[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2587[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 2587[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2587 -> 1279[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2588[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 2588[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2588 -> 1280[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2589[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 2589[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2589 -> 1281[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2590[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 2590[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2590 -> 1282[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2591[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 2591[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2591 -> 1283[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2592[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 2592[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2592 -> 1284[label="",style="solid", color="blue", weight=3]; 25.19/10.93 2593[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1237 -> 2593[label="",style="solid", color="blue", weight=9]; 25.19/10.93 2593 -> 1285[label="",style="solid", color="blue", weight=3]; 25.19/10.93 1238[label="compare1 (vyw84,vyw85) (vyw86,vyw87) (False || vyw89)",fontsize=16,color="black",shape="box"];1238 -> 1286[label="",style="solid", color="black", weight=3]; 25.19/10.93 1239[label="compare1 (vyw84,vyw85) (vyw86,vyw87) (True || vyw89)",fontsize=16,color="black",shape="box"];1239 -> 1287[label="",style="solid", color="black", weight=3]; 25.19/10.93 991[label="primMulNat (Succ vyw50100) vyw30000",fontsize=16,color="burlywood",shape="box"];2594[label="vyw30000/Succ vyw300000",fontsize=10,color="white",style="solid",shape="box"];991 -> 2594[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2594 -> 1046[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2595[label="vyw30000/Zero",fontsize=10,color="white",style="solid",shape="box"];991 -> 2595[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2595 -> 1047[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 992[label="primMulNat Zero vyw30000",fontsize=16,color="burlywood",shape="box"];2596[label="vyw30000/Succ vyw300000",fontsize=10,color="white",style="solid",shape="box"];992 -> 2596[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2596 -> 1048[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2597[label="vyw30000/Zero",fontsize=10,color="white",style="solid",shape="box"];992 -> 2597[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2597 -> 1049[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 993[label="vyw30000",fontsize=16,color="green",shape="box"];994[label="vyw5010",fontsize=16,color="green",shape="box"];995[label="vyw5010",fontsize=16,color="green",shape="box"];996[label="vyw30000",fontsize=16,color="green",shape="box"];1244 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1244[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1244 -> 1292[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1244 -> 1293[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1245 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1245[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1245 -> 1294[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1245 -> 1295[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1246 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1246[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1246 -> 1296[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1246 -> 1297[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1247 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1247[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1247 -> 1298[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1247 -> 1299[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1248 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1248[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1248 -> 1300[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1248 -> 1301[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1249 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1249[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1249 -> 1302[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1249 -> 1303[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1250 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1250[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1250 -> 1304[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1250 -> 1305[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1251 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1251[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1251 -> 1306[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1251 -> 1307[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1252 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1252[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1252 -> 1308[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1252 -> 1309[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1253 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1253[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1253 -> 1310[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1253 -> 1311[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1254 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1254[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1254 -> 1312[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1254 -> 1313[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1255 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1255[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1255 -> 1314[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1255 -> 1315[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1256 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1256[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1256 -> 1316[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1256 -> 1317[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1257 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1257[label="compare vyw460 vyw480 == LT",fontsize=16,color="magenta"];1257 -> 1318[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1257 -> 1319[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1258 -> 136[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1258[label="vyw460 == vyw480",fontsize=16,color="magenta"];1258 -> 1320[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1258 -> 1321[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1259 -> 130[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1259[label="vyw460 == vyw480",fontsize=16,color="magenta"];1259 -> 1322[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1259 -> 1323[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1260 -> 129[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1260[label="vyw460 == vyw480",fontsize=16,color="magenta"];1260 -> 1324[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1260 -> 1325[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1261 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1261[label="vyw460 == vyw480",fontsize=16,color="magenta"];1261 -> 1326[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1261 -> 1327[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1262 -> 132[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1262[label="vyw460 == vyw480",fontsize=16,color="magenta"];1262 -> 1328[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1262 -> 1329[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1263 -> 139[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1263[label="vyw460 == vyw480",fontsize=16,color="magenta"];1263 -> 1330[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1263 -> 1331[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1264 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1264[label="vyw460 == vyw480",fontsize=16,color="magenta"];1264 -> 1332[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1264 -> 1333[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1265 -> 133[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1265[label="vyw460 == vyw480",fontsize=16,color="magenta"];1265 -> 1334[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1265 -> 1335[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1266 -> 127[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1266[label="vyw460 == vyw480",fontsize=16,color="magenta"];1266 -> 1336[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1266 -> 1337[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1267 -> 135[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1267[label="vyw460 == vyw480",fontsize=16,color="magenta"];1267 -> 1338[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1267 -> 1339[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1268 -> 137[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1268[label="vyw460 == vyw480",fontsize=16,color="magenta"];1268 -> 1340[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1268 -> 1341[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1269 -> 131[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1269[label="vyw460 == vyw480",fontsize=16,color="magenta"];1269 -> 1342[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1269 -> 1343[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1270 -> 126[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1270[label="vyw460 == vyw480",fontsize=16,color="magenta"];1270 -> 1344[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1270 -> 1345[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1271 -> 138[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1271[label="vyw460 == vyw480",fontsize=16,color="magenta"];1271 -> 1346[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1271 -> 1347[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1272[label="vyw461 <= vyw481",fontsize=16,color="burlywood",shape="triangle"];2598[label="vyw461/(vyw4610,vyw4611,vyw4612)",fontsize=10,color="white",style="solid",shape="box"];1272 -> 2598[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2598 -> 1348[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1273[label="vyw461 <= vyw481",fontsize=16,color="black",shape="triangle"];1273 -> 1349[label="",style="solid", color="black", weight=3]; 25.19/10.93 1274[label="vyw461 <= vyw481",fontsize=16,color="black",shape="triangle"];1274 -> 1350[label="",style="solid", color="black", weight=3]; 25.19/10.93 1275[label="vyw461 <= vyw481",fontsize=16,color="black",shape="triangle"];1275 -> 1351[label="",style="solid", color="black", weight=3]; 25.19/10.93 1276[label="vyw461 <= vyw481",fontsize=16,color="black",shape="triangle"];1276 -> 1352[label="",style="solid", color="black", weight=3]; 25.19/10.93 1277[label="vyw461 <= vyw481",fontsize=16,color="black",shape="triangle"];1277 -> 1353[label="",style="solid", color="black", weight=3]; 25.19/10.93 1278[label="vyw461 <= vyw481",fontsize=16,color="burlywood",shape="triangle"];2599[label="vyw461/LT",fontsize=10,color="white",style="solid",shape="box"];1278 -> 2599[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2599 -> 1354[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2600[label="vyw461/EQ",fontsize=10,color="white",style="solid",shape="box"];1278 -> 2600[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2600 -> 1355[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2601[label="vyw461/GT",fontsize=10,color="white",style="solid",shape="box"];1278 -> 2601[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2601 -> 1356[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1279[label="vyw461 <= vyw481",fontsize=16,color="burlywood",shape="triangle"];2602[label="vyw461/(vyw4610,vyw4611)",fontsize=10,color="white",style="solid",shape="box"];1279 -> 2602[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2602 -> 1357[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1280[label="vyw461 <= vyw481",fontsize=16,color="burlywood",shape="triangle"];2603[label="vyw461/Nothing",fontsize=10,color="white",style="solid",shape="box"];1280 -> 2603[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2603 -> 1358[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2604[label="vyw461/Just vyw4610",fontsize=10,color="white",style="solid",shape="box"];1280 -> 2604[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2604 -> 1359[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1281[label="vyw461 <= vyw481",fontsize=16,color="black",shape="triangle"];1281 -> 1360[label="",style="solid", color="black", weight=3]; 25.19/10.93 1282[label="vyw461 <= vyw481",fontsize=16,color="black",shape="triangle"];1282 -> 1361[label="",style="solid", color="black", weight=3]; 25.19/10.93 1283[label="vyw461 <= vyw481",fontsize=16,color="burlywood",shape="triangle"];2605[label="vyw461/Left vyw4610",fontsize=10,color="white",style="solid",shape="box"];1283 -> 2605[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2605 -> 1362[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2606[label="vyw461/Right vyw4610",fontsize=10,color="white",style="solid",shape="box"];1283 -> 2606[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2606 -> 1363[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1284[label="vyw461 <= vyw481",fontsize=16,color="burlywood",shape="triangle"];2607[label="vyw461/False",fontsize=10,color="white",style="solid",shape="box"];1284 -> 2607[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2607 -> 1364[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2608[label="vyw461/True",fontsize=10,color="white",style="solid",shape="box"];1284 -> 2608[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2608 -> 1365[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1285[label="vyw461 <= vyw481",fontsize=16,color="black",shape="triangle"];1285 -> 1366[label="",style="solid", color="black", weight=3]; 25.19/10.93 1286[label="compare1 (vyw84,vyw85) (vyw86,vyw87) vyw89",fontsize=16,color="burlywood",shape="triangle"];2609[label="vyw89/False",fontsize=10,color="white",style="solid",shape="box"];1286 -> 2609[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2609 -> 1367[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2610[label="vyw89/True",fontsize=10,color="white",style="solid",shape="box"];1286 -> 2610[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2610 -> 1368[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1287 -> 1286[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1287[label="compare1 (vyw84,vyw85) (vyw86,vyw87) True",fontsize=16,color="magenta"];1287 -> 1369[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1046[label="primMulNat (Succ vyw50100) (Succ vyw300000)",fontsize=16,color="black",shape="box"];1046 -> 1109[label="",style="solid", color="black", weight=3]; 25.19/10.93 1047[label="primMulNat (Succ vyw50100) Zero",fontsize=16,color="black",shape="box"];1047 -> 1110[label="",style="solid", color="black", weight=3]; 25.19/10.93 1048[label="primMulNat Zero (Succ vyw300000)",fontsize=16,color="black",shape="box"];1048 -> 1111[label="",style="solid", color="black", weight=3]; 25.19/10.93 1049[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1049 -> 1112[label="",style="solid", color="black", weight=3]; 25.19/10.93 1292[label="LT",fontsize=16,color="green",shape="box"];1293[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1293 -> 1371[label="",style="solid", color="black", weight=3]; 25.19/10.93 1294[label="LT",fontsize=16,color="green",shape="box"];1295[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1295 -> 1372[label="",style="solid", color="black", weight=3]; 25.19/10.93 1296[label="LT",fontsize=16,color="green",shape="box"];1297[label="compare vyw460 vyw480",fontsize=16,color="burlywood",shape="triangle"];2611[label="vyw460/vyw4600 : vyw4601",fontsize=10,color="white",style="solid",shape="box"];1297 -> 2611[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2611 -> 1373[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2612[label="vyw460/[]",fontsize=10,color="white",style="solid",shape="box"];1297 -> 2612[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2612 -> 1374[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1298[label="LT",fontsize=16,color="green",shape="box"];1299[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1299 -> 1375[label="",style="solid", color="black", weight=3]; 25.19/10.93 1300[label="LT",fontsize=16,color="green",shape="box"];1301[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1301 -> 1376[label="",style="solid", color="black", weight=3]; 25.19/10.93 1302[label="LT",fontsize=16,color="green",shape="box"];1303[label="compare vyw460 vyw480",fontsize=16,color="burlywood",shape="triangle"];2613[label="vyw460/()",fontsize=10,color="white",style="solid",shape="box"];1303 -> 2613[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2613 -> 1377[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1304[label="LT",fontsize=16,color="green",shape="box"];1305[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1305 -> 1378[label="",style="solid", color="black", weight=3]; 25.19/10.93 1306[label="LT",fontsize=16,color="green",shape="box"];1307[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1307 -> 1379[label="",style="solid", color="black", weight=3]; 25.19/10.93 1308[label="LT",fontsize=16,color="green",shape="box"];1309[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1309 -> 1380[label="",style="solid", color="black", weight=3]; 25.19/10.93 1310[label="LT",fontsize=16,color="green",shape="box"];1311[label="compare vyw460 vyw480",fontsize=16,color="burlywood",shape="triangle"];2614[label="vyw460/Integer vyw4600",fontsize=10,color="white",style="solid",shape="box"];1311 -> 2614[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2614 -> 1381[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1312[label="LT",fontsize=16,color="green",shape="box"];1313[label="compare vyw460 vyw480",fontsize=16,color="burlywood",shape="triangle"];2615[label="vyw460/vyw4600 :% vyw4601",fontsize=10,color="white",style="solid",shape="box"];1313 -> 2615[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2615 -> 1382[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1314[label="LT",fontsize=16,color="green",shape="box"];1315[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1315 -> 1383[label="",style="solid", color="black", weight=3]; 25.19/10.93 1316[label="LT",fontsize=16,color="green",shape="box"];1317[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1317 -> 1384[label="",style="solid", color="black", weight=3]; 25.19/10.93 1318[label="LT",fontsize=16,color="green",shape="box"];1319[label="compare vyw460 vyw480",fontsize=16,color="black",shape="triangle"];1319 -> 1385[label="",style="solid", color="black", weight=3]; 25.19/10.93 1320[label="vyw480",fontsize=16,color="green",shape="box"];1321[label="vyw460",fontsize=16,color="green",shape="box"];1322[label="vyw480",fontsize=16,color="green",shape="box"];1323[label="vyw460",fontsize=16,color="green",shape="box"];1324[label="vyw480",fontsize=16,color="green",shape="box"];1325[label="vyw460",fontsize=16,color="green",shape="box"];1326[label="vyw480",fontsize=16,color="green",shape="box"];1327[label="vyw460",fontsize=16,color="green",shape="box"];1328[label="vyw480",fontsize=16,color="green",shape="box"];1329[label="vyw460",fontsize=16,color="green",shape="box"];1330[label="vyw480",fontsize=16,color="green",shape="box"];1331[label="vyw460",fontsize=16,color="green",shape="box"];1332[label="vyw480",fontsize=16,color="green",shape="box"];1333[label="vyw460",fontsize=16,color="green",shape="box"];1334[label="vyw480",fontsize=16,color="green",shape="box"];1335[label="vyw460",fontsize=16,color="green",shape="box"];1336[label="vyw480",fontsize=16,color="green",shape="box"];1337[label="vyw460",fontsize=16,color="green",shape="box"];1338[label="vyw480",fontsize=16,color="green",shape="box"];1339[label="vyw460",fontsize=16,color="green",shape="box"];1340[label="vyw480",fontsize=16,color="green",shape="box"];1341[label="vyw460",fontsize=16,color="green",shape="box"];1342[label="vyw480",fontsize=16,color="green",shape="box"];1343[label="vyw460",fontsize=16,color="green",shape="box"];1344[label="vyw480",fontsize=16,color="green",shape="box"];1345[label="vyw460",fontsize=16,color="green",shape="box"];1346[label="vyw480",fontsize=16,color="green",shape="box"];1347[label="vyw460",fontsize=16,color="green",shape="box"];1348[label="(vyw4610,vyw4611,vyw4612) <= vyw481",fontsize=16,color="burlywood",shape="box"];2616[label="vyw481/(vyw4810,vyw4811,vyw4812)",fontsize=10,color="white",style="solid",shape="box"];1348 -> 2616[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2616 -> 1386[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1349 -> 1387[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1349[label="compare vyw461 vyw481 /= GT",fontsize=16,color="magenta"];1349 -> 1388[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1350 -> 1387[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1350[label="compare vyw461 vyw481 /= GT",fontsize=16,color="magenta"];1350 -> 1389[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1351 -> 1387[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1351[label="compare vyw461 vyw481 /= GT",fontsize=16,color="magenta"];1351 -> 1390[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1352 -> 1387[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1352[label="compare vyw461 vyw481 /= GT",fontsize=16,color="magenta"];1352 -> 1391[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1353 -> 1387[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1353[label="compare vyw461 vyw481 /= GT",fontsize=16,color="magenta"];1353 -> 1392[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1354[label="LT <= vyw481",fontsize=16,color="burlywood",shape="box"];2617[label="vyw481/LT",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2617[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2617 -> 1396[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2618[label="vyw481/EQ",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2618[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2618 -> 1397[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2619[label="vyw481/GT",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2619[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2619 -> 1398[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1355[label="EQ <= vyw481",fontsize=16,color="burlywood",shape="box"];2620[label="vyw481/LT",fontsize=10,color="white",style="solid",shape="box"];1355 -> 2620[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2620 -> 1399[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2621[label="vyw481/EQ",fontsize=10,color="white",style="solid",shape="box"];1355 -> 2621[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2621 -> 1400[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2622[label="vyw481/GT",fontsize=10,color="white",style="solid",shape="box"];1355 -> 2622[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2622 -> 1401[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1356[label="GT <= vyw481",fontsize=16,color="burlywood",shape="box"];2623[label="vyw481/LT",fontsize=10,color="white",style="solid",shape="box"];1356 -> 2623[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2623 -> 1402[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2624[label="vyw481/EQ",fontsize=10,color="white",style="solid",shape="box"];1356 -> 2624[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2624 -> 1403[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2625[label="vyw481/GT",fontsize=10,color="white",style="solid",shape="box"];1356 -> 2625[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2625 -> 1404[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1357[label="(vyw4610,vyw4611) <= vyw481",fontsize=16,color="burlywood",shape="box"];2626[label="vyw481/(vyw4810,vyw4811)",fontsize=10,color="white",style="solid",shape="box"];1357 -> 2626[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2626 -> 1405[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1358[label="Nothing <= vyw481",fontsize=16,color="burlywood",shape="box"];2627[label="vyw481/Nothing",fontsize=10,color="white",style="solid",shape="box"];1358 -> 2627[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2627 -> 1406[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2628[label="vyw481/Just vyw4810",fontsize=10,color="white",style="solid",shape="box"];1358 -> 2628[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2628 -> 1407[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1359[label="Just vyw4610 <= vyw481",fontsize=16,color="burlywood",shape="box"];2629[label="vyw481/Nothing",fontsize=10,color="white",style="solid",shape="box"];1359 -> 2629[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2629 -> 1408[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2630[label="vyw481/Just vyw4810",fontsize=10,color="white",style="solid",shape="box"];1359 -> 2630[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2630 -> 1409[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1360 -> 1387[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1360[label="compare vyw461 vyw481 /= GT",fontsize=16,color="magenta"];1360 -> 1393[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1361 -> 1387[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1361[label="compare vyw461 vyw481 /= GT",fontsize=16,color="magenta"];1361 -> 1394[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1362[label="Left vyw4610 <= vyw481",fontsize=16,color="burlywood",shape="box"];2631[label="vyw481/Left vyw4810",fontsize=10,color="white",style="solid",shape="box"];1362 -> 2631[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2631 -> 1410[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2632[label="vyw481/Right vyw4810",fontsize=10,color="white",style="solid",shape="box"];1362 -> 2632[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2632 -> 1411[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1363[label="Right vyw4610 <= vyw481",fontsize=16,color="burlywood",shape="box"];2633[label="vyw481/Left vyw4810",fontsize=10,color="white",style="solid",shape="box"];1363 -> 2633[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2633 -> 1412[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2634[label="vyw481/Right vyw4810",fontsize=10,color="white",style="solid",shape="box"];1363 -> 2634[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2634 -> 1413[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1364[label="False <= vyw481",fontsize=16,color="burlywood",shape="box"];2635[label="vyw481/False",fontsize=10,color="white",style="solid",shape="box"];1364 -> 2635[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2635 -> 1414[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2636[label="vyw481/True",fontsize=10,color="white",style="solid",shape="box"];1364 -> 2636[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2636 -> 1415[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1365[label="True <= vyw481",fontsize=16,color="burlywood",shape="box"];2637[label="vyw481/False",fontsize=10,color="white",style="solid",shape="box"];1365 -> 2637[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2637 -> 1416[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2638[label="vyw481/True",fontsize=10,color="white",style="solid",shape="box"];1365 -> 2638[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2638 -> 1417[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1366 -> 1387[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1366[label="compare vyw461 vyw481 /= GT",fontsize=16,color="magenta"];1366 -> 1395[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1367[label="compare1 (vyw84,vyw85) (vyw86,vyw87) False",fontsize=16,color="black",shape="box"];1367 -> 1418[label="",style="solid", color="black", weight=3]; 25.19/10.93 1368[label="compare1 (vyw84,vyw85) (vyw86,vyw87) True",fontsize=16,color="black",shape="box"];1368 -> 1419[label="",style="solid", color="black", weight=3]; 25.19/10.93 1369[label="True",fontsize=16,color="green",shape="box"];1109 -> 1161[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1109[label="primPlusNat (primMulNat vyw50100 (Succ vyw300000)) (Succ vyw300000)",fontsize=16,color="magenta"];1109 -> 1162[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1110[label="Zero",fontsize=16,color="green",shape="box"];1111[label="Zero",fontsize=16,color="green",shape="box"];1112[label="Zero",fontsize=16,color="green",shape="box"];1371[label="compare3 vyw460 vyw480",fontsize=16,color="black",shape="box"];1371 -> 1420[label="",style="solid", color="black", weight=3]; 25.19/10.93 1372[label="primCmpChar vyw460 vyw480",fontsize=16,color="burlywood",shape="box"];2639[label="vyw460/Char vyw4600",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2639[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2639 -> 1421[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1373[label="compare (vyw4600 : vyw4601) vyw480",fontsize=16,color="burlywood",shape="box"];2640[label="vyw480/vyw4800 : vyw4801",fontsize=10,color="white",style="solid",shape="box"];1373 -> 2640[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2640 -> 1422[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2641[label="vyw480/[]",fontsize=10,color="white",style="solid",shape="box"];1373 -> 2641[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2641 -> 1423[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1374[label="compare [] vyw480",fontsize=16,color="burlywood",shape="box"];2642[label="vyw480/vyw4800 : vyw4801",fontsize=10,color="white",style="solid",shape="box"];1374 -> 2642[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2642 -> 1424[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2643[label="vyw480/[]",fontsize=10,color="white",style="solid",shape="box"];1374 -> 2643[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2643 -> 1425[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1375[label="primCmpInt vyw460 vyw480",fontsize=16,color="burlywood",shape="triangle"];2644[label="vyw460/Pos vyw4600",fontsize=10,color="white",style="solid",shape="box"];1375 -> 2644[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2644 -> 1426[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 2645[label="vyw460/Neg vyw4600",fontsize=10,color="white",style="solid",shape="box"];1375 -> 2645[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2645 -> 1427[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1376[label="primCmpDouble vyw460 vyw480",fontsize=16,color="burlywood",shape="box"];2646[label="vyw460/Double vyw4600 vyw4601",fontsize=10,color="white",style="solid",shape="box"];1376 -> 2646[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2646 -> 1428[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1377[label="compare () vyw480",fontsize=16,color="burlywood",shape="box"];2647[label="vyw480/()",fontsize=10,color="white",style="solid",shape="box"];1377 -> 2647[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2647 -> 1429[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1378[label="compare3 vyw460 vyw480",fontsize=16,color="black",shape="box"];1378 -> 1430[label="",style="solid", color="black", weight=3]; 25.19/10.93 1379[label="compare3 vyw460 vyw480",fontsize=16,color="black",shape="box"];1379 -> 1431[label="",style="solid", color="black", weight=3]; 25.19/10.93 1380[label="compare3 vyw460 vyw480",fontsize=16,color="black",shape="box"];1380 -> 1432[label="",style="solid", color="black", weight=3]; 25.19/10.93 1381[label="compare (Integer vyw4600) vyw480",fontsize=16,color="burlywood",shape="box"];2648[label="vyw480/Integer vyw4800",fontsize=10,color="white",style="solid",shape="box"];1381 -> 2648[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2648 -> 1433[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1382[label="compare (vyw4600 :% vyw4601) vyw480",fontsize=16,color="burlywood",shape="box"];2649[label="vyw480/vyw4800 :% vyw4801",fontsize=10,color="white",style="solid",shape="box"];1382 -> 2649[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2649 -> 1434[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1383[label="compare3 vyw460 vyw480",fontsize=16,color="black",shape="box"];1383 -> 1435[label="",style="solid", color="black", weight=3]; 25.19/10.93 1384[label="compare3 vyw460 vyw480",fontsize=16,color="black",shape="box"];1384 -> 1436[label="",style="solid", color="black", weight=3]; 25.19/10.93 1385[label="primCmpFloat vyw460 vyw480",fontsize=16,color="burlywood",shape="box"];2650[label="vyw460/Float vyw4600 vyw4601",fontsize=10,color="white",style="solid",shape="box"];1385 -> 2650[label="",style="solid", color="burlywood", weight=9]; 25.19/10.93 2650 -> 1437[label="",style="solid", color="burlywood", weight=3]; 25.19/10.93 1386[label="(vyw4610,vyw4611,vyw4612) <= (vyw4810,vyw4811,vyw4812)",fontsize=16,color="black",shape="box"];1386 -> 1438[label="",style="solid", color="black", weight=3]; 25.19/10.93 1388 -> 1295[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1388[label="compare vyw461 vyw481",fontsize=16,color="magenta"];1388 -> 1439[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1388 -> 1440[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1387[label="vyw90 /= GT",fontsize=16,color="black",shape="triangle"];1387 -> 1441[label="",style="solid", color="black", weight=3]; 25.19/10.93 1389 -> 1297[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1389[label="compare vyw461 vyw481",fontsize=16,color="magenta"];1389 -> 1442[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1389 -> 1443[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1390 -> 1299[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1390[label="compare vyw461 vyw481",fontsize=16,color="magenta"];1390 -> 1444[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1390 -> 1445[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1391 -> 1301[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1391[label="compare vyw461 vyw481",fontsize=16,color="magenta"];1391 -> 1446[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1391 -> 1447[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1392 -> 1303[label="",style="dashed", color="red", weight=0]; 25.19/10.93 1392[label="compare vyw461 vyw481",fontsize=16,color="magenta"];1392 -> 1448[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1392 -> 1449[label="",style="dashed", color="magenta", weight=3]; 25.19/10.93 1396[label="LT <= LT",fontsize=16,color="black",shape="box"];1396 -> 1458[label="",style="solid", color="black", weight=3]; 25.19/10.93 1397[label="LT <= EQ",fontsize=16,color="black",shape="box"];1397 -> 1459[label="",style="solid", color="black", weight=3]; 25.19/10.93 1398[label="LT <= GT",fontsize=16,color="black",shape="box"];1398 -> 1460[label="",style="solid", color="black", weight=3]; 25.19/10.93 1399[label="EQ <= LT",fontsize=16,color="black",shape="box"];1399 -> 1461[label="",style="solid", color="black", weight=3]; 25.19/10.93 1400[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1400 -> 1462[label="",style="solid", color="black", weight=3]; 25.19/10.93 1401[label="EQ <= GT",fontsize=16,color="black",shape="box"];1401 -> 1463[label="",style="solid", color="black", weight=3]; 25.19/10.93 1402[label="GT <= LT",fontsize=16,color="black",shape="box"];1402 -> 1464[label="",style="solid", color="black", weight=3]; 25.19/10.93 1403[label="GT <= EQ",fontsize=16,color="black",shape="box"];1403 -> 1465[label="",style="solid", color="black", weight=3]; 25.19/10.93 1404[label="GT <= GT",fontsize=16,color="black",shape="box"];1404 -> 1466[label="",style="solid", color="black", weight=3]; 25.19/10.93 1405[label="(vyw4610,vyw4611) <= (vyw4810,vyw4811)",fontsize=16,color="black",shape="box"];1405 -> 1467[label="",style="solid", color="black", weight=3]; 25.19/10.93 1406[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1406 -> 1468[label="",style="solid", color="black", weight=3]; 25.19/10.93 1407[label="Nothing <= Just vyw4810",fontsize=16,color="black",shape="box"];1407 -> 1469[label="",style="solid", color="black", weight=3]; 25.19/10.94 1408[label="Just vyw4610 <= Nothing",fontsize=16,color="black",shape="box"];1408 -> 1470[label="",style="solid", color="black", weight=3]; 25.19/10.94 1409[label="Just vyw4610 <= Just vyw4810",fontsize=16,color="black",shape="box"];1409 -> 1471[label="",style="solid", color="black", weight=3]; 25.19/10.94 1393 -> 1311[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1393[label="compare vyw461 vyw481",fontsize=16,color="magenta"];1393 -> 1450[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1393 -> 1451[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1394 -> 1313[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1394[label="compare vyw461 vyw481",fontsize=16,color="magenta"];1394 -> 1452[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1394 -> 1453[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1410[label="Left vyw4610 <= Left vyw4810",fontsize=16,color="black",shape="box"];1410 -> 1472[label="",style="solid", color="black", weight=3]; 25.19/10.94 1411[label="Left vyw4610 <= Right vyw4810",fontsize=16,color="black",shape="box"];1411 -> 1473[label="",style="solid", color="black", weight=3]; 25.19/10.94 1412[label="Right vyw4610 <= Left vyw4810",fontsize=16,color="black",shape="box"];1412 -> 1474[label="",style="solid", color="black", weight=3]; 25.19/10.94 1413[label="Right vyw4610 <= Right vyw4810",fontsize=16,color="black",shape="box"];1413 -> 1475[label="",style="solid", color="black", weight=3]; 25.19/10.94 1414[label="False <= False",fontsize=16,color="black",shape="box"];1414 -> 1476[label="",style="solid", color="black", weight=3]; 25.19/10.94 1415[label="False <= True",fontsize=16,color="black",shape="box"];1415 -> 1477[label="",style="solid", color="black", weight=3]; 25.19/10.94 1416[label="True <= False",fontsize=16,color="black",shape="box"];1416 -> 1478[label="",style="solid", color="black", weight=3]; 25.19/10.94 1417[label="True <= True",fontsize=16,color="black",shape="box"];1417 -> 1479[label="",style="solid", color="black", weight=3]; 25.19/10.94 1395 -> 1319[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1395[label="compare vyw461 vyw481",fontsize=16,color="magenta"];1395 -> 1454[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1395 -> 1455[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1418[label="compare0 (vyw84,vyw85) (vyw86,vyw87) otherwise",fontsize=16,color="black",shape="box"];1418 -> 1480[label="",style="solid", color="black", weight=3]; 25.19/10.94 1419[label="LT",fontsize=16,color="green",shape="box"];1162 -> 909[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1162[label="primMulNat vyw50100 (Succ vyw300000)",fontsize=16,color="magenta"];1162 -> 1193[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1162 -> 1194[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1161[label="primPlusNat vyw75 (Succ vyw300000)",fontsize=16,color="burlywood",shape="triangle"];2651[label="vyw75/Succ vyw750",fontsize=10,color="white",style="solid",shape="box"];1161 -> 2651[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2651 -> 1195[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2652[label="vyw75/Zero",fontsize=10,color="white",style="solid",shape="box"];1161 -> 2652[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2652 -> 1196[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1420 -> 1481[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1420[label="compare2 vyw460 vyw480 (vyw460 == vyw480)",fontsize=16,color="magenta"];1420 -> 1482[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1421[label="primCmpChar (Char vyw4600) vyw480",fontsize=16,color="burlywood",shape="box"];2653[label="vyw480/Char vyw4800",fontsize=10,color="white",style="solid",shape="box"];1421 -> 2653[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2653 -> 1483[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1422[label="compare (vyw4600 : vyw4601) (vyw4800 : vyw4801)",fontsize=16,color="black",shape="box"];1422 -> 1484[label="",style="solid", color="black", weight=3]; 25.19/10.94 1423[label="compare (vyw4600 : vyw4601) []",fontsize=16,color="black",shape="box"];1423 -> 1485[label="",style="solid", color="black", weight=3]; 25.19/10.94 1424[label="compare [] (vyw4800 : vyw4801)",fontsize=16,color="black",shape="box"];1424 -> 1486[label="",style="solid", color="black", weight=3]; 25.19/10.94 1425[label="compare [] []",fontsize=16,color="black",shape="box"];1425 -> 1487[label="",style="solid", color="black", weight=3]; 25.19/10.94 1426[label="primCmpInt (Pos vyw4600) vyw480",fontsize=16,color="burlywood",shape="box"];2654[label="vyw4600/Succ vyw46000",fontsize=10,color="white",style="solid",shape="box"];1426 -> 2654[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2654 -> 1488[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2655[label="vyw4600/Zero",fontsize=10,color="white",style="solid",shape="box"];1426 -> 2655[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2655 -> 1489[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1427[label="primCmpInt (Neg vyw4600) vyw480",fontsize=16,color="burlywood",shape="box"];2656[label="vyw4600/Succ vyw46000",fontsize=10,color="white",style="solid",shape="box"];1427 -> 2656[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2656 -> 1490[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2657[label="vyw4600/Zero",fontsize=10,color="white",style="solid",shape="box"];1427 -> 2657[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2657 -> 1491[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1428[label="primCmpDouble (Double vyw4600 vyw4601) vyw480",fontsize=16,color="burlywood",shape="box"];2658[label="vyw4601/Pos vyw46010",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2658[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2658 -> 1492[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2659[label="vyw4601/Neg vyw46010",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2659[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2659 -> 1493[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1429[label="compare () ()",fontsize=16,color="black",shape="box"];1429 -> 1494[label="",style="solid", color="black", weight=3]; 25.19/10.94 1430 -> 1495[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1430[label="compare2 vyw460 vyw480 (vyw460 == vyw480)",fontsize=16,color="magenta"];1430 -> 1496[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1431 -> 1129[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1431[label="compare2 vyw460 vyw480 (vyw460 == vyw480)",fontsize=16,color="magenta"];1431 -> 1497[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1431 -> 1498[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1431 -> 1499[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1432 -> 1500[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1432[label="compare2 vyw460 vyw480 (vyw460 == vyw480)",fontsize=16,color="magenta"];1432 -> 1501[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1433[label="compare (Integer vyw4600) (Integer vyw4800)",fontsize=16,color="black",shape="box"];1433 -> 1502[label="",style="solid", color="black", weight=3]; 25.19/10.94 1434[label="compare (vyw4600 :% vyw4601) (vyw4800 :% vyw4801)",fontsize=16,color="black",shape="box"];1434 -> 1503[label="",style="solid", color="black", weight=3]; 25.19/10.94 1435 -> 1504[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1435[label="compare2 vyw460 vyw480 (vyw460 == vyw480)",fontsize=16,color="magenta"];1435 -> 1505[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1436 -> 1506[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1436[label="compare2 vyw460 vyw480 (vyw460 == vyw480)",fontsize=16,color="magenta"];1436 -> 1507[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1437[label="primCmpFloat (Float vyw4600 vyw4601) vyw480",fontsize=16,color="burlywood",shape="box"];2660[label="vyw4601/Pos vyw46010",fontsize=10,color="white",style="solid",shape="box"];1437 -> 2660[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2660 -> 1508[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2661[label="vyw4601/Neg vyw46010",fontsize=10,color="white",style="solid",shape="box"];1437 -> 2661[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2661 -> 1509[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1438 -> 1603[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1438[label="vyw4610 < vyw4810 || vyw4610 == vyw4810 && (vyw4611 < vyw4811 || vyw4611 == vyw4811 && vyw4612 <= vyw4812)",fontsize=16,color="magenta"];1438 -> 1604[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1438 -> 1605[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1439[label="vyw461",fontsize=16,color="green",shape="box"];1440[label="vyw481",fontsize=16,color="green",shape="box"];1441 -> 1515[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1441[label="not (vyw90 == GT)",fontsize=16,color="magenta"];1441 -> 1516[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1442[label="vyw461",fontsize=16,color="green",shape="box"];1443[label="vyw481",fontsize=16,color="green",shape="box"];1444[label="vyw461",fontsize=16,color="green",shape="box"];1445[label="vyw481",fontsize=16,color="green",shape="box"];1446[label="vyw461",fontsize=16,color="green",shape="box"];1447[label="vyw481",fontsize=16,color="green",shape="box"];1448[label="vyw461",fontsize=16,color="green",shape="box"];1449[label="vyw481",fontsize=16,color="green",shape="box"];1458[label="True",fontsize=16,color="green",shape="box"];1459[label="True",fontsize=16,color="green",shape="box"];1460[label="True",fontsize=16,color="green",shape="box"];1461[label="False",fontsize=16,color="green",shape="box"];1462[label="True",fontsize=16,color="green",shape="box"];1463[label="True",fontsize=16,color="green",shape="box"];1464[label="False",fontsize=16,color="green",shape="box"];1465[label="False",fontsize=16,color="green",shape="box"];1466[label="True",fontsize=16,color="green",shape="box"];1467 -> 1603[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1467[label="vyw4610 < vyw4810 || vyw4610 == vyw4810 && vyw4611 <= vyw4811",fontsize=16,color="magenta"];1467 -> 1606[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1467 -> 1607[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1468[label="True",fontsize=16,color="green",shape="box"];1469[label="True",fontsize=16,color="green",shape="box"];1470[label="False",fontsize=16,color="green",shape="box"];1471[label="vyw4610 <= vyw4810",fontsize=16,color="blue",shape="box"];2662[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2662[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2662 -> 1517[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2663[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2663[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2663 -> 1518[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2664[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2664[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2664 -> 1519[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2665[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2665[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2665 -> 1520[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2666[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2666[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2666 -> 1521[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2667[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2667[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2667 -> 1522[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2668[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2668[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2668 -> 1523[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2669[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2669[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2669 -> 1524[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2670[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2670[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2670 -> 1525[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2671[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2671[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2671 -> 1526[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2672[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2672[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2672 -> 1527[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2673[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2673[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2673 -> 1528[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2674[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2674[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2674 -> 1529[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2675[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2675[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2675 -> 1530[label="",style="solid", color="blue", weight=3]; 25.19/10.94 1450[label="vyw461",fontsize=16,color="green",shape="box"];1451[label="vyw481",fontsize=16,color="green",shape="box"];1452[label="vyw461",fontsize=16,color="green",shape="box"];1453[label="vyw481",fontsize=16,color="green",shape="box"];1472[label="vyw4610 <= vyw4810",fontsize=16,color="blue",shape="box"];2676[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2676[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2676 -> 1531[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2677[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2677[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2677 -> 1532[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2678[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2678[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2678 -> 1533[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2679[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2679[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2679 -> 1534[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2680[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2680[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2680 -> 1535[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2681[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2681[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2681 -> 1536[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2682[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2682[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2682 -> 1537[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2683[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2683[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2683 -> 1538[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2684[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2684[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2684 -> 1539[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2685[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2685[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2685 -> 1540[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2686[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2686[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2686 -> 1541[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2687[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2687[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2687 -> 1542[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2688[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2688[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2688 -> 1543[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2689[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2689[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2689 -> 1544[label="",style="solid", color="blue", weight=3]; 25.19/10.94 1473[label="True",fontsize=16,color="green",shape="box"];1474[label="False",fontsize=16,color="green",shape="box"];1475[label="vyw4610 <= vyw4810",fontsize=16,color="blue",shape="box"];2690[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1475 -> 2690[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2690 -> 1545[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2691[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1475 -> 2691[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2691 -> 1546[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2692[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1475 -> 2692[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2692 -> 1547[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2693[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1475 -> 2693[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2693 -> 1548[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2694[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1475 -> 2694[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2694 -> 1549[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2695[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1475 -> 2695[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2695 -> 1550[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2696[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1475 -> 2696[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2696 -> 1551[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2697[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1475 -> 2697[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2697 -> 1552[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2698[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1475 -> 2698[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2698 -> 1553[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2699[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1475 -> 2699[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2699 -> 1554[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2700[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1475 -> 2700[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2700 -> 1555[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2701[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1475 -> 2701[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2701 -> 1556[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2702[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1475 -> 2702[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2702 -> 1557[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2703[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1475 -> 2703[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2703 -> 1558[label="",style="solid", color="blue", weight=3]; 25.19/10.94 1476[label="True",fontsize=16,color="green",shape="box"];1477[label="True",fontsize=16,color="green",shape="box"];1478[label="False",fontsize=16,color="green",shape="box"];1479[label="True",fontsize=16,color="green",shape="box"];1454[label="vyw461",fontsize=16,color="green",shape="box"];1455[label="vyw481",fontsize=16,color="green",shape="box"];1480[label="compare0 (vyw84,vyw85) (vyw86,vyw87) True",fontsize=16,color="black",shape="box"];1480 -> 1559[label="",style="solid", color="black", weight=3]; 25.19/10.94 1193[label="vyw50100",fontsize=16,color="green",shape="box"];1194[label="Succ vyw300000",fontsize=16,color="green",shape="box"];1195[label="primPlusNat (Succ vyw750) (Succ vyw300000)",fontsize=16,color="black",shape="box"];1195 -> 1198[label="",style="solid", color="black", weight=3]; 25.19/10.94 1196[label="primPlusNat Zero (Succ vyw300000)",fontsize=16,color="black",shape="box"];1196 -> 1199[label="",style="solid", color="black", weight=3]; 25.19/10.94 1482 -> 136[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1482[label="vyw460 == vyw480",fontsize=16,color="magenta"];1482 -> 1560[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1482 -> 1561[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1481[label="compare2 vyw460 vyw480 vyw91",fontsize=16,color="burlywood",shape="triangle"];2704[label="vyw91/False",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2704[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2704 -> 1562[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2705[label="vyw91/True",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2705[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2705 -> 1563[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1483[label="primCmpChar (Char vyw4600) (Char vyw4800)",fontsize=16,color="black",shape="box"];1483 -> 1564[label="",style="solid", color="black", weight=3]; 25.19/10.94 1484 -> 1565[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1484[label="primCompAux vyw4600 vyw4800 (compare vyw4601 vyw4801)",fontsize=16,color="magenta"];1484 -> 1566[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1485[label="GT",fontsize=16,color="green",shape="box"];1486[label="LT",fontsize=16,color="green",shape="box"];1487[label="EQ",fontsize=16,color="green",shape="box"];1488[label="primCmpInt (Pos (Succ vyw46000)) vyw480",fontsize=16,color="burlywood",shape="box"];2706[label="vyw480/Pos vyw4800",fontsize=10,color="white",style="solid",shape="box"];1488 -> 2706[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2706 -> 1567[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2707[label="vyw480/Neg vyw4800",fontsize=10,color="white",style="solid",shape="box"];1488 -> 2707[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2707 -> 1568[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1489[label="primCmpInt (Pos Zero) vyw480",fontsize=16,color="burlywood",shape="box"];2708[label="vyw480/Pos vyw4800",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2708[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2708 -> 1569[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2709[label="vyw480/Neg vyw4800",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2709[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2709 -> 1570[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1490[label="primCmpInt (Neg (Succ vyw46000)) vyw480",fontsize=16,color="burlywood",shape="box"];2710[label="vyw480/Pos vyw4800",fontsize=10,color="white",style="solid",shape="box"];1490 -> 2710[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2710 -> 1571[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2711[label="vyw480/Neg vyw4800",fontsize=10,color="white",style="solid",shape="box"];1490 -> 2711[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2711 -> 1572[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1491[label="primCmpInt (Neg Zero) vyw480",fontsize=16,color="burlywood",shape="box"];2712[label="vyw480/Pos vyw4800",fontsize=10,color="white",style="solid",shape="box"];1491 -> 2712[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2712 -> 1573[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2713[label="vyw480/Neg vyw4800",fontsize=10,color="white",style="solid",shape="box"];1491 -> 2713[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2713 -> 1574[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1492[label="primCmpDouble (Double vyw4600 (Pos vyw46010)) vyw480",fontsize=16,color="burlywood",shape="box"];2714[label="vyw480/Double vyw4800 vyw4801",fontsize=10,color="white",style="solid",shape="box"];1492 -> 2714[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2714 -> 1575[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1493[label="primCmpDouble (Double vyw4600 (Neg vyw46010)) vyw480",fontsize=16,color="burlywood",shape="box"];2715[label="vyw480/Double vyw4800 vyw4801",fontsize=10,color="white",style="solid",shape="box"];1493 -> 2715[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2715 -> 1576[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1494[label="EQ",fontsize=16,color="green",shape="box"];1496 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1496[label="vyw460 == vyw480",fontsize=16,color="magenta"];1496 -> 1577[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1496 -> 1578[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1495[label="compare2 vyw460 vyw480 vyw92",fontsize=16,color="burlywood",shape="triangle"];2716[label="vyw92/False",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2716[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2716 -> 1579[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2717[label="vyw92/True",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2717[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2717 -> 1580[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1497[label="vyw460",fontsize=16,color="green",shape="box"];1498 -> 133[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1498[label="vyw460 == vyw480",fontsize=16,color="magenta"];1498 -> 1581[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1498 -> 1582[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1499[label="vyw480",fontsize=16,color="green",shape="box"];1501 -> 127[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1501[label="vyw460 == vyw480",fontsize=16,color="magenta"];1501 -> 1583[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1501 -> 1584[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1500[label="compare2 vyw460 vyw480 vyw93",fontsize=16,color="burlywood",shape="triangle"];2718[label="vyw93/False",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2718[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2718 -> 1585[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2719[label="vyw93/True",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2719[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2719 -> 1586[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1502 -> 1375[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1502[label="primCmpInt vyw4600 vyw4800",fontsize=16,color="magenta"];1502 -> 1587[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1502 -> 1588[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1503[label="compare (vyw4600 * vyw4801) (vyw4800 * vyw4601)",fontsize=16,color="blue",shape="box"];2720[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1503 -> 2720[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2720 -> 1589[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2721[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1503 -> 2721[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2721 -> 1590[label="",style="solid", color="blue", weight=3]; 25.19/10.94 1505 -> 131[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1505[label="vyw460 == vyw480",fontsize=16,color="magenta"];1505 -> 1591[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1505 -> 1592[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1504[label="compare2 vyw460 vyw480 vyw94",fontsize=16,color="burlywood",shape="triangle"];2722[label="vyw94/False",fontsize=10,color="white",style="solid",shape="box"];1504 -> 2722[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2722 -> 1593[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2723[label="vyw94/True",fontsize=10,color="white",style="solid",shape="box"];1504 -> 2723[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2723 -> 1594[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1507 -> 126[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1507[label="vyw460 == vyw480",fontsize=16,color="magenta"];1507 -> 1595[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1507 -> 1596[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1506[label="compare2 vyw460 vyw480 vyw95",fontsize=16,color="burlywood",shape="triangle"];2724[label="vyw95/False",fontsize=10,color="white",style="solid",shape="box"];1506 -> 2724[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2724 -> 1597[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2725[label="vyw95/True",fontsize=10,color="white",style="solid",shape="box"];1506 -> 2725[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2725 -> 1598[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1508[label="primCmpFloat (Float vyw4600 (Pos vyw46010)) vyw480",fontsize=16,color="burlywood",shape="box"];2726[label="vyw480/Float vyw4800 vyw4801",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2726[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2726 -> 1599[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1509[label="primCmpFloat (Float vyw4600 (Neg vyw46010)) vyw480",fontsize=16,color="burlywood",shape="box"];2727[label="vyw480/Float vyw4800 vyw4801",fontsize=10,color="white",style="solid",shape="box"];1509 -> 2727[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2727 -> 1600[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1604[label="vyw4610 < vyw4810",fontsize=16,color="blue",shape="box"];2728[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2728[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2728 -> 1612[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2729[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2729[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2729 -> 1613[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2730[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2730[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2730 -> 1614[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2731[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2731[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2731 -> 1615[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2732[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2732[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2732 -> 1616[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2733[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2733[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2733 -> 1617[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2734[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2734[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2734 -> 1618[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2735[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2735[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2735 -> 1619[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2736[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2736[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2736 -> 1620[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2737[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2737[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2737 -> 1621[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2738[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2738[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2738 -> 1622[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2739[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2739[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2739 -> 1623[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2740[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2740[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2740 -> 1624[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2741[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2741[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2741 -> 1625[label="",style="solid", color="blue", weight=3]; 25.19/10.94 1605 -> 385[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1605[label="vyw4610 == vyw4810 && (vyw4611 < vyw4811 || vyw4611 == vyw4811 && vyw4612 <= vyw4812)",fontsize=16,color="magenta"];1605 -> 1626[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1605 -> 1627[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1603[label="vyw103 || vyw104",fontsize=16,color="burlywood",shape="triangle"];2742[label="vyw103/False",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2742[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2742 -> 1628[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2743[label="vyw103/True",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2743[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2743 -> 1629[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1516 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1516[label="vyw90 == GT",fontsize=16,color="magenta"];1516 -> 1630[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1516 -> 1631[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1515[label="not vyw98",fontsize=16,color="burlywood",shape="triangle"];2744[label="vyw98/False",fontsize=10,color="white",style="solid",shape="box"];1515 -> 2744[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2744 -> 1632[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2745[label="vyw98/True",fontsize=10,color="white",style="solid",shape="box"];1515 -> 2745[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2745 -> 1633[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1606[label="vyw4610 < vyw4810",fontsize=16,color="blue",shape="box"];2746[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2746[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2746 -> 1634[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2747[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2747[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2747 -> 1635[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2748[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2748[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2748 -> 1636[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2749[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2749[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2749 -> 1637[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2750[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2750[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2750 -> 1638[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2751[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2751[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2751 -> 1639[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2752[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2752[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2752 -> 1640[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2753[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2753[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2753 -> 1641[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2754[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2754[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2754 -> 1642[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2755[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2755[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2755 -> 1643[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2756[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2756[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2756 -> 1644[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2757[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2757[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2757 -> 1645[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2758[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2758[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2758 -> 1646[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2759[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2759[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2759 -> 1647[label="",style="solid", color="blue", weight=3]; 25.19/10.94 1607 -> 385[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1607[label="vyw4610 == vyw4810 && vyw4611 <= vyw4811",fontsize=16,color="magenta"];1607 -> 1648[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1607 -> 1649[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1517 -> 1272[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1517[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1517 -> 1650[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1517 -> 1651[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1518 -> 1273[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1518[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1518 -> 1652[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1518 -> 1653[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1519 -> 1274[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1519[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1519 -> 1654[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1519 -> 1655[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1520 -> 1275[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1520[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1520 -> 1656[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1520 -> 1657[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1521 -> 1276[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1521[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1521 -> 1658[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1521 -> 1659[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1522 -> 1277[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1522[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1522 -> 1660[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1522 -> 1661[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1523 -> 1278[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1523[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1523 -> 1662[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1523 -> 1663[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1524 -> 1279[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1524[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1524 -> 1664[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1524 -> 1665[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1525 -> 1280[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1525[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1525 -> 1666[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1525 -> 1667[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1526 -> 1281[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1526[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1526 -> 1668[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1526 -> 1669[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1527 -> 1282[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1527[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1527 -> 1670[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1527 -> 1671[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1528 -> 1283[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1528[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1528 -> 1672[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1528 -> 1673[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1529 -> 1284[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1529[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1529 -> 1674[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1529 -> 1675[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1530 -> 1285[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1530[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1530 -> 1676[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1530 -> 1677[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1531 -> 1272[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1531[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1531 -> 1678[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1531 -> 1679[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1532 -> 1273[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1532[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1532 -> 1680[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1532 -> 1681[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1533 -> 1274[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1533[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1533 -> 1682[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1533 -> 1683[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1534 -> 1275[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1534[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1534 -> 1684[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1534 -> 1685[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1535 -> 1276[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1535[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1535 -> 1686[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1535 -> 1687[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1536 -> 1277[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1536[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1536 -> 1688[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1536 -> 1689[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1537 -> 1278[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1537[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1537 -> 1690[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1537 -> 1691[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1538 -> 1279[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1538[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1538 -> 1692[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1538 -> 1693[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1539 -> 1280[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1539[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1539 -> 1694[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1539 -> 1695[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1540 -> 1281[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1540[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1540 -> 1696[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1540 -> 1697[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1541 -> 1282[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1541[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1541 -> 1698[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1541 -> 1699[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1542 -> 1283[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1542[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1542 -> 1700[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1542 -> 1701[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1543 -> 1284[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1543[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1543 -> 1702[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1543 -> 1703[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1544 -> 1285[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1544[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1544 -> 1704[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1544 -> 1705[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1545 -> 1272[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1545[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1545 -> 1706[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1545 -> 1707[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1546 -> 1273[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1546[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1546 -> 1708[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1546 -> 1709[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1547 -> 1274[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1547[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1547 -> 1710[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1547 -> 1711[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1548 -> 1275[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1548[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1548 -> 1712[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1548 -> 1713[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1549 -> 1276[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1549[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1549 -> 1714[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1549 -> 1715[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1550 -> 1277[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1550[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1550 -> 1716[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1550 -> 1717[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1551 -> 1278[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1551[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1551 -> 1718[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1551 -> 1719[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1552 -> 1279[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1552[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1552 -> 1720[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1552 -> 1721[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1553 -> 1280[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1553[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1553 -> 1722[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1553 -> 1723[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1554 -> 1281[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1554[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1554 -> 1724[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1554 -> 1725[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1555 -> 1282[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1555[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1555 -> 1726[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1555 -> 1727[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1556 -> 1283[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1556[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1556 -> 1728[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1556 -> 1729[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1557 -> 1284[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1557[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1557 -> 1730[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1557 -> 1731[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1558 -> 1285[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1558[label="vyw4610 <= vyw4810",fontsize=16,color="magenta"];1558 -> 1732[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1558 -> 1733[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1559[label="GT",fontsize=16,color="green",shape="box"];1198[label="Succ (Succ (primPlusNat vyw750 vyw300000))",fontsize=16,color="green",shape="box"];1198 -> 1201[label="",style="dashed", color="green", weight=3]; 25.19/10.94 1199[label="Succ vyw300000",fontsize=16,color="green",shape="box"];1560[label="vyw480",fontsize=16,color="green",shape="box"];1561[label="vyw460",fontsize=16,color="green",shape="box"];1562[label="compare2 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];1562 -> 1734[label="",style="solid", color="black", weight=3]; 25.19/10.94 1563[label="compare2 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];1563 -> 1735[label="",style="solid", color="black", weight=3]; 25.19/10.94 1564[label="primCmpNat vyw4600 vyw4800",fontsize=16,color="burlywood",shape="triangle"];2760[label="vyw4600/Succ vyw46000",fontsize=10,color="white",style="solid",shape="box"];1564 -> 2760[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2760 -> 1736[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2761[label="vyw4600/Zero",fontsize=10,color="white",style="solid",shape="box"];1564 -> 2761[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2761 -> 1737[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1566 -> 1297[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1566[label="compare vyw4601 vyw4801",fontsize=16,color="magenta"];1566 -> 1738[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1566 -> 1739[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1565[label="primCompAux vyw4600 vyw4800 vyw99",fontsize=16,color="black",shape="triangle"];1565 -> 1740[label="",style="solid", color="black", weight=3]; 25.19/10.94 1567[label="primCmpInt (Pos (Succ vyw46000)) (Pos vyw4800)",fontsize=16,color="black",shape="box"];1567 -> 1741[label="",style="solid", color="black", weight=3]; 25.19/10.94 1568[label="primCmpInt (Pos (Succ vyw46000)) (Neg vyw4800)",fontsize=16,color="black",shape="box"];1568 -> 1742[label="",style="solid", color="black", weight=3]; 25.19/10.94 1569[label="primCmpInt (Pos Zero) (Pos vyw4800)",fontsize=16,color="burlywood",shape="box"];2762[label="vyw4800/Succ vyw48000",fontsize=10,color="white",style="solid",shape="box"];1569 -> 2762[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2762 -> 1743[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2763[label="vyw4800/Zero",fontsize=10,color="white",style="solid",shape="box"];1569 -> 2763[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2763 -> 1744[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1570[label="primCmpInt (Pos Zero) (Neg vyw4800)",fontsize=16,color="burlywood",shape="box"];2764[label="vyw4800/Succ vyw48000",fontsize=10,color="white",style="solid",shape="box"];1570 -> 2764[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2764 -> 1745[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2765[label="vyw4800/Zero",fontsize=10,color="white",style="solid",shape="box"];1570 -> 2765[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2765 -> 1746[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1571[label="primCmpInt (Neg (Succ vyw46000)) (Pos vyw4800)",fontsize=16,color="black",shape="box"];1571 -> 1747[label="",style="solid", color="black", weight=3]; 25.19/10.94 1572[label="primCmpInt (Neg (Succ vyw46000)) (Neg vyw4800)",fontsize=16,color="black",shape="box"];1572 -> 1748[label="",style="solid", color="black", weight=3]; 25.19/10.94 1573[label="primCmpInt (Neg Zero) (Pos vyw4800)",fontsize=16,color="burlywood",shape="box"];2766[label="vyw4800/Succ vyw48000",fontsize=10,color="white",style="solid",shape="box"];1573 -> 2766[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2766 -> 1749[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2767[label="vyw4800/Zero",fontsize=10,color="white",style="solid",shape="box"];1573 -> 2767[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2767 -> 1750[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1574[label="primCmpInt (Neg Zero) (Neg vyw4800)",fontsize=16,color="burlywood",shape="box"];2768[label="vyw4800/Succ vyw48000",fontsize=10,color="white",style="solid",shape="box"];1574 -> 2768[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2768 -> 1751[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2769[label="vyw4800/Zero",fontsize=10,color="white",style="solid",shape="box"];1574 -> 2769[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2769 -> 1752[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1575[label="primCmpDouble (Double vyw4600 (Pos vyw46010)) (Double vyw4800 vyw4801)",fontsize=16,color="burlywood",shape="box"];2770[label="vyw4801/Pos vyw48010",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2770[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2770 -> 1753[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2771[label="vyw4801/Neg vyw48010",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2771[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2771 -> 1754[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1576[label="primCmpDouble (Double vyw4600 (Neg vyw46010)) (Double vyw4800 vyw4801)",fontsize=16,color="burlywood",shape="box"];2772[label="vyw4801/Pos vyw48010",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2772[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2772 -> 1755[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2773[label="vyw4801/Neg vyw48010",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2773[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2773 -> 1756[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1577[label="vyw480",fontsize=16,color="green",shape="box"];1578[label="vyw460",fontsize=16,color="green",shape="box"];1579[label="compare2 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];1579 -> 1757[label="",style="solid", color="black", weight=3]; 25.19/10.94 1580[label="compare2 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];1580 -> 1758[label="",style="solid", color="black", weight=3]; 25.19/10.94 1581[label="vyw480",fontsize=16,color="green",shape="box"];1582[label="vyw460",fontsize=16,color="green",shape="box"];1583[label="vyw480",fontsize=16,color="green",shape="box"];1584[label="vyw460",fontsize=16,color="green",shape="box"];1585[label="compare2 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];1585 -> 1759[label="",style="solid", color="black", weight=3]; 25.19/10.94 1586[label="compare2 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];1586 -> 1760[label="",style="solid", color="black", weight=3]; 25.19/10.94 1587[label="vyw4600",fontsize=16,color="green",shape="box"];1588[label="vyw4800",fontsize=16,color="green",shape="box"];1589 -> 1299[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1589[label="compare (vyw4600 * vyw4801) (vyw4800 * vyw4601)",fontsize=16,color="magenta"];1589 -> 1761[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1589 -> 1762[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1590 -> 1311[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1590[label="compare (vyw4600 * vyw4801) (vyw4800 * vyw4601)",fontsize=16,color="magenta"];1590 -> 1763[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1590 -> 1764[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1591[label="vyw480",fontsize=16,color="green",shape="box"];1592[label="vyw460",fontsize=16,color="green",shape="box"];1593[label="compare2 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];1593 -> 1765[label="",style="solid", color="black", weight=3]; 25.19/10.94 1594[label="compare2 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];1594 -> 1766[label="",style="solid", color="black", weight=3]; 25.19/10.94 1595[label="vyw480",fontsize=16,color="green",shape="box"];1596[label="vyw460",fontsize=16,color="green",shape="box"];1597[label="compare2 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];1597 -> 1767[label="",style="solid", color="black", weight=3]; 25.19/10.94 1598[label="compare2 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];1598 -> 1768[label="",style="solid", color="black", weight=3]; 25.19/10.94 1599[label="primCmpFloat (Float vyw4600 (Pos vyw46010)) (Float vyw4800 vyw4801)",fontsize=16,color="burlywood",shape="box"];2774[label="vyw4801/Pos vyw48010",fontsize=10,color="white",style="solid",shape="box"];1599 -> 2774[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2774 -> 1769[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2775[label="vyw4801/Neg vyw48010",fontsize=10,color="white",style="solid",shape="box"];1599 -> 2775[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2775 -> 1770[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1600[label="primCmpFloat (Float vyw4600 (Neg vyw46010)) (Float vyw4800 vyw4801)",fontsize=16,color="burlywood",shape="box"];2776[label="vyw4801/Pos vyw48010",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2776[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2776 -> 1771[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2777[label="vyw4801/Neg vyw48010",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2777[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2777 -> 1772[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1612 -> 1222[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1612[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1612 -> 1773[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1612 -> 1774[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1613 -> 1223[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1613[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1613 -> 1775[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1613 -> 1776[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1614 -> 1224[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1614[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1614 -> 1777[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1614 -> 1778[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1615 -> 1225[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1615[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1615 -> 1779[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1615 -> 1780[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1616 -> 1226[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1616[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1616 -> 1781[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1616 -> 1782[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1617 -> 1227[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1617[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1617 -> 1783[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1617 -> 1784[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1618 -> 1228[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1618[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1618 -> 1785[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1618 -> 1786[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1619 -> 1229[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1619[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1619 -> 1787[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1619 -> 1788[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1620 -> 1230[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1620[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1620 -> 1789[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1620 -> 1790[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1621 -> 1231[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1621[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1621 -> 1791[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1621 -> 1792[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1622 -> 1232[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1622[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1622 -> 1793[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1622 -> 1794[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1623 -> 1233[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1623[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1623 -> 1795[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1623 -> 1796[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1624 -> 1234[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1624[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1624 -> 1797[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1624 -> 1798[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1625 -> 1235[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1625[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1625 -> 1799[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1625 -> 1800[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1626[label="vyw4610 == vyw4810",fontsize=16,color="blue",shape="box"];2778[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1626 -> 2778[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2778 -> 1801[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2779[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1626 -> 2779[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2779 -> 1802[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2780[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1626 -> 2780[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2780 -> 1803[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2781[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1626 -> 2781[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2781 -> 1804[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2782[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1626 -> 2782[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2782 -> 1805[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2783[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1626 -> 2783[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2783 -> 1806[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2784[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1626 -> 2784[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2784 -> 1807[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2785[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1626 -> 2785[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2785 -> 1808[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2786[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1626 -> 2786[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2786 -> 1809[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2787[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1626 -> 2787[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2787 -> 1810[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2788[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1626 -> 2788[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2788 -> 1811[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2789[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1626 -> 2789[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2789 -> 1812[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2790[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1626 -> 2790[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2790 -> 1813[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2791[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1626 -> 2791[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2791 -> 1814[label="",style="solid", color="blue", weight=3]; 25.19/10.94 1627 -> 1603[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1627[label="vyw4611 < vyw4811 || vyw4611 == vyw4811 && vyw4612 <= vyw4812",fontsize=16,color="magenta"];1627 -> 1815[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1627 -> 1816[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1628[label="False || vyw104",fontsize=16,color="black",shape="box"];1628 -> 1817[label="",style="solid", color="black", weight=3]; 25.19/10.94 1629[label="True || vyw104",fontsize=16,color="black",shape="box"];1629 -> 1818[label="",style="solid", color="black", weight=3]; 25.19/10.94 1630[label="GT",fontsize=16,color="green",shape="box"];1631[label="vyw90",fontsize=16,color="green",shape="box"];1632[label="not False",fontsize=16,color="black",shape="box"];1632 -> 1819[label="",style="solid", color="black", weight=3]; 25.19/10.94 1633[label="not True",fontsize=16,color="black",shape="box"];1633 -> 1820[label="",style="solid", color="black", weight=3]; 25.19/10.94 1634 -> 1222[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1634[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1634 -> 1821[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1634 -> 1822[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1635 -> 1223[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1635[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1635 -> 1823[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1635 -> 1824[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1636 -> 1224[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1636[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1636 -> 1825[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1636 -> 1826[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1637 -> 1225[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1637[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1637 -> 1827[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1637 -> 1828[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1638 -> 1226[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1638[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1638 -> 1829[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1638 -> 1830[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1639 -> 1227[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1639[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1639 -> 1831[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1639 -> 1832[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1640 -> 1228[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1640[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1640 -> 1833[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1640 -> 1834[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1641 -> 1229[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1641[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1641 -> 1835[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1641 -> 1836[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1642 -> 1230[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1642[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1642 -> 1837[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1642 -> 1838[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1643 -> 1231[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1643[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1643 -> 1839[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1643 -> 1840[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1644 -> 1232[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1644[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1644 -> 1841[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1644 -> 1842[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1645 -> 1233[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1645[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1645 -> 1843[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1645 -> 1844[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1646 -> 1234[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1646[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1646 -> 1845[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1646 -> 1846[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1647 -> 1235[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1647[label="vyw4610 < vyw4810",fontsize=16,color="magenta"];1647 -> 1847[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1647 -> 1848[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1648[label="vyw4610 == vyw4810",fontsize=16,color="blue",shape="box"];2792[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2792[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2792 -> 1849[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2793[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2793[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2793 -> 1850[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2794[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2794[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2794 -> 1851[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2795[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2795[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2795 -> 1852[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2796[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2796[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2796 -> 1853[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2797[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2797[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2797 -> 1854[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2798[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2798[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2798 -> 1855[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2799[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2799[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2799 -> 1856[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2800[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2800[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2800 -> 1857[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2801[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2801[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2801 -> 1858[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2802[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2802[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2802 -> 1859[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2803[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2803[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2803 -> 1860[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2804[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2804[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2804 -> 1861[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2805[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2805[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2805 -> 1862[label="",style="solid", color="blue", weight=3]; 25.19/10.94 1649[label="vyw4611 <= vyw4811",fontsize=16,color="blue",shape="box"];2806[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2806[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2806 -> 1863[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2807[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2807[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2807 -> 1864[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2808[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2808[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2808 -> 1865[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2809[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2809[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2809 -> 1866[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2810[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2810[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2810 -> 1867[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2811[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2811[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2811 -> 1868[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2812[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2812[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2812 -> 1869[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2813[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2813[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2813 -> 1870[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2814[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2814[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2814 -> 1871[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2815[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2815[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2815 -> 1872[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2816[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2816[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2816 -> 1873[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2817[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2817[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2817 -> 1874[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2818[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2818[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2818 -> 1875[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2819[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2819[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2819 -> 1876[label="",style="solid", color="blue", weight=3]; 25.19/10.94 1650[label="vyw4810",fontsize=16,color="green",shape="box"];1651[label="vyw4610",fontsize=16,color="green",shape="box"];1652[label="vyw4810",fontsize=16,color="green",shape="box"];1653[label="vyw4610",fontsize=16,color="green",shape="box"];1654[label="vyw4810",fontsize=16,color="green",shape="box"];1655[label="vyw4610",fontsize=16,color="green",shape="box"];1656[label="vyw4810",fontsize=16,color="green",shape="box"];1657[label="vyw4610",fontsize=16,color="green",shape="box"];1658[label="vyw4810",fontsize=16,color="green",shape="box"];1659[label="vyw4610",fontsize=16,color="green",shape="box"];1660[label="vyw4810",fontsize=16,color="green",shape="box"];1661[label="vyw4610",fontsize=16,color="green",shape="box"];1662[label="vyw4810",fontsize=16,color="green",shape="box"];1663[label="vyw4610",fontsize=16,color="green",shape="box"];1664[label="vyw4810",fontsize=16,color="green",shape="box"];1665[label="vyw4610",fontsize=16,color="green",shape="box"];1666[label="vyw4810",fontsize=16,color="green",shape="box"];1667[label="vyw4610",fontsize=16,color="green",shape="box"];1668[label="vyw4810",fontsize=16,color="green",shape="box"];1669[label="vyw4610",fontsize=16,color="green",shape="box"];1670[label="vyw4810",fontsize=16,color="green",shape="box"];1671[label="vyw4610",fontsize=16,color="green",shape="box"];1672[label="vyw4810",fontsize=16,color="green",shape="box"];1673[label="vyw4610",fontsize=16,color="green",shape="box"];1674[label="vyw4810",fontsize=16,color="green",shape="box"];1675[label="vyw4610",fontsize=16,color="green",shape="box"];1676[label="vyw4810",fontsize=16,color="green",shape="box"];1677[label="vyw4610",fontsize=16,color="green",shape="box"];1678[label="vyw4810",fontsize=16,color="green",shape="box"];1679[label="vyw4610",fontsize=16,color="green",shape="box"];1680[label="vyw4810",fontsize=16,color="green",shape="box"];1681[label="vyw4610",fontsize=16,color="green",shape="box"];1682[label="vyw4810",fontsize=16,color="green",shape="box"];1683[label="vyw4610",fontsize=16,color="green",shape="box"];1684[label="vyw4810",fontsize=16,color="green",shape="box"];1685[label="vyw4610",fontsize=16,color="green",shape="box"];1686[label="vyw4810",fontsize=16,color="green",shape="box"];1687[label="vyw4610",fontsize=16,color="green",shape="box"];1688[label="vyw4810",fontsize=16,color="green",shape="box"];1689[label="vyw4610",fontsize=16,color="green",shape="box"];1690[label="vyw4810",fontsize=16,color="green",shape="box"];1691[label="vyw4610",fontsize=16,color="green",shape="box"];1692[label="vyw4810",fontsize=16,color="green",shape="box"];1693[label="vyw4610",fontsize=16,color="green",shape="box"];1694[label="vyw4810",fontsize=16,color="green",shape="box"];1695[label="vyw4610",fontsize=16,color="green",shape="box"];1696[label="vyw4810",fontsize=16,color="green",shape="box"];1697[label="vyw4610",fontsize=16,color="green",shape="box"];1698[label="vyw4810",fontsize=16,color="green",shape="box"];1699[label="vyw4610",fontsize=16,color="green",shape="box"];1700[label="vyw4810",fontsize=16,color="green",shape="box"];1701[label="vyw4610",fontsize=16,color="green",shape="box"];1702[label="vyw4810",fontsize=16,color="green",shape="box"];1703[label="vyw4610",fontsize=16,color="green",shape="box"];1704[label="vyw4810",fontsize=16,color="green",shape="box"];1705[label="vyw4610",fontsize=16,color="green",shape="box"];1706[label="vyw4810",fontsize=16,color="green",shape="box"];1707[label="vyw4610",fontsize=16,color="green",shape="box"];1708[label="vyw4810",fontsize=16,color="green",shape="box"];1709[label="vyw4610",fontsize=16,color="green",shape="box"];1710[label="vyw4810",fontsize=16,color="green",shape="box"];1711[label="vyw4610",fontsize=16,color="green",shape="box"];1712[label="vyw4810",fontsize=16,color="green",shape="box"];1713[label="vyw4610",fontsize=16,color="green",shape="box"];1714[label="vyw4810",fontsize=16,color="green",shape="box"];1715[label="vyw4610",fontsize=16,color="green",shape="box"];1716[label="vyw4810",fontsize=16,color="green",shape="box"];1717[label="vyw4610",fontsize=16,color="green",shape="box"];1718[label="vyw4810",fontsize=16,color="green",shape="box"];1719[label="vyw4610",fontsize=16,color="green",shape="box"];1720[label="vyw4810",fontsize=16,color="green",shape="box"];1721[label="vyw4610",fontsize=16,color="green",shape="box"];1722[label="vyw4810",fontsize=16,color="green",shape="box"];1723[label="vyw4610",fontsize=16,color="green",shape="box"];1724[label="vyw4810",fontsize=16,color="green",shape="box"];1725[label="vyw4610",fontsize=16,color="green",shape="box"];1726[label="vyw4810",fontsize=16,color="green",shape="box"];1727[label="vyw4610",fontsize=16,color="green",shape="box"];1728[label="vyw4810",fontsize=16,color="green",shape="box"];1729[label="vyw4610",fontsize=16,color="green",shape="box"];1730[label="vyw4810",fontsize=16,color="green",shape="box"];1731[label="vyw4610",fontsize=16,color="green",shape="box"];1732[label="vyw4810",fontsize=16,color="green",shape="box"];1733[label="vyw4610",fontsize=16,color="green",shape="box"];1201[label="primPlusNat vyw750 vyw300000",fontsize=16,color="burlywood",shape="triangle"];2820[label="vyw750/Succ vyw7500",fontsize=10,color="white",style="solid",shape="box"];1201 -> 2820[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2820 -> 1203[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2821[label="vyw750/Zero",fontsize=10,color="white",style="solid",shape="box"];1201 -> 2821[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2821 -> 1204[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1734 -> 1877[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1734[label="compare1 vyw460 vyw480 (vyw460 <= vyw480)",fontsize=16,color="magenta"];1734 -> 1878[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1735[label="EQ",fontsize=16,color="green",shape="box"];1736[label="primCmpNat (Succ vyw46000) vyw4800",fontsize=16,color="burlywood",shape="box"];2822[label="vyw4800/Succ vyw48000",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2822[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2822 -> 1879[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2823[label="vyw4800/Zero",fontsize=10,color="white",style="solid",shape="box"];1736 -> 2823[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2823 -> 1880[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1737[label="primCmpNat Zero vyw4800",fontsize=16,color="burlywood",shape="box"];2824[label="vyw4800/Succ vyw48000",fontsize=10,color="white",style="solid",shape="box"];1737 -> 2824[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2824 -> 1881[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2825[label="vyw4800/Zero",fontsize=10,color="white",style="solid",shape="box"];1737 -> 2825[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2825 -> 1882[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1738[label="vyw4601",fontsize=16,color="green",shape="box"];1739[label="vyw4801",fontsize=16,color="green",shape="box"];1740 -> 1883[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1740[label="primCompAux0 vyw99 (compare vyw4600 vyw4800)",fontsize=16,color="magenta"];1740 -> 1884[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1740 -> 1885[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1741 -> 1564[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1741[label="primCmpNat (Succ vyw46000) vyw4800",fontsize=16,color="magenta"];1741 -> 1886[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1741 -> 1887[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1742[label="GT",fontsize=16,color="green",shape="box"];1743[label="primCmpInt (Pos Zero) (Pos (Succ vyw48000))",fontsize=16,color="black",shape="box"];1743 -> 1888[label="",style="solid", color="black", weight=3]; 25.19/10.94 1744[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1744 -> 1889[label="",style="solid", color="black", weight=3]; 25.19/10.94 1745[label="primCmpInt (Pos Zero) (Neg (Succ vyw48000))",fontsize=16,color="black",shape="box"];1745 -> 1890[label="",style="solid", color="black", weight=3]; 25.19/10.94 1746[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1746 -> 1891[label="",style="solid", color="black", weight=3]; 25.19/10.94 1747[label="LT",fontsize=16,color="green",shape="box"];1748 -> 1564[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1748[label="primCmpNat vyw4800 (Succ vyw46000)",fontsize=16,color="magenta"];1748 -> 1892[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1748 -> 1893[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1749[label="primCmpInt (Neg Zero) (Pos (Succ vyw48000))",fontsize=16,color="black",shape="box"];1749 -> 1894[label="",style="solid", color="black", weight=3]; 25.19/10.94 1750[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1750 -> 1895[label="",style="solid", color="black", weight=3]; 25.19/10.94 1751[label="primCmpInt (Neg Zero) (Neg (Succ vyw48000))",fontsize=16,color="black",shape="box"];1751 -> 1896[label="",style="solid", color="black", weight=3]; 25.19/10.94 1752[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1752 -> 1897[label="",style="solid", color="black", weight=3]; 25.19/10.94 1753[label="primCmpDouble (Double vyw4600 (Pos vyw46010)) (Double vyw4800 (Pos vyw48010))",fontsize=16,color="black",shape="box"];1753 -> 1898[label="",style="solid", color="black", weight=3]; 25.19/10.94 1754[label="primCmpDouble (Double vyw4600 (Pos vyw46010)) (Double vyw4800 (Neg vyw48010))",fontsize=16,color="black",shape="box"];1754 -> 1899[label="",style="solid", color="black", weight=3]; 25.19/10.94 1755[label="primCmpDouble (Double vyw4600 (Neg vyw46010)) (Double vyw4800 (Pos vyw48010))",fontsize=16,color="black",shape="box"];1755 -> 1900[label="",style="solid", color="black", weight=3]; 25.19/10.94 1756[label="primCmpDouble (Double vyw4600 (Neg vyw46010)) (Double vyw4800 (Neg vyw48010))",fontsize=16,color="black",shape="box"];1756 -> 1901[label="",style="solid", color="black", weight=3]; 25.19/10.94 1757 -> 1902[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1757[label="compare1 vyw460 vyw480 (vyw460 <= vyw480)",fontsize=16,color="magenta"];1757 -> 1903[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1758[label="EQ",fontsize=16,color="green",shape="box"];1759 -> 1904[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1759[label="compare1 vyw460 vyw480 (vyw460 <= vyw480)",fontsize=16,color="magenta"];1759 -> 1905[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1760[label="EQ",fontsize=16,color="green",shape="box"];1761 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1761[label="vyw4600 * vyw4801",fontsize=16,color="magenta"];1761 -> 1906[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1761 -> 1907[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1762 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1762[label="vyw4800 * vyw4601",fontsize=16,color="magenta"];1762 -> 1908[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1762 -> 1909[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1763[label="vyw4600 * vyw4801",fontsize=16,color="burlywood",shape="triangle"];2826[label="vyw4600/Integer vyw46000",fontsize=10,color="white",style="solid",shape="box"];1763 -> 2826[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2826 -> 1910[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1764 -> 1763[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1764[label="vyw4800 * vyw4601",fontsize=16,color="magenta"];1764 -> 1911[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1764 -> 1912[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1765 -> 1913[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1765[label="compare1 vyw460 vyw480 (vyw460 <= vyw480)",fontsize=16,color="magenta"];1765 -> 1914[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1766[label="EQ",fontsize=16,color="green",shape="box"];1767 -> 1915[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1767[label="compare1 vyw460 vyw480 (vyw460 <= vyw480)",fontsize=16,color="magenta"];1767 -> 1916[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1768[label="EQ",fontsize=16,color="green",shape="box"];1769[label="primCmpFloat (Float vyw4600 (Pos vyw46010)) (Float vyw4800 (Pos vyw48010))",fontsize=16,color="black",shape="box"];1769 -> 1917[label="",style="solid", color="black", weight=3]; 25.19/10.94 1770[label="primCmpFloat (Float vyw4600 (Pos vyw46010)) (Float vyw4800 (Neg vyw48010))",fontsize=16,color="black",shape="box"];1770 -> 1918[label="",style="solid", color="black", weight=3]; 25.19/10.94 1771[label="primCmpFloat (Float vyw4600 (Neg vyw46010)) (Float vyw4800 (Pos vyw48010))",fontsize=16,color="black",shape="box"];1771 -> 1919[label="",style="solid", color="black", weight=3]; 25.19/10.94 1772[label="primCmpFloat (Float vyw4600 (Neg vyw46010)) (Float vyw4800 (Neg vyw48010))",fontsize=16,color="black",shape="box"];1772 -> 1920[label="",style="solid", color="black", weight=3]; 25.19/10.94 1773[label="vyw4610",fontsize=16,color="green",shape="box"];1774[label="vyw4810",fontsize=16,color="green",shape="box"];1775[label="vyw4610",fontsize=16,color="green",shape="box"];1776[label="vyw4810",fontsize=16,color="green",shape="box"];1777[label="vyw4610",fontsize=16,color="green",shape="box"];1778[label="vyw4810",fontsize=16,color="green",shape="box"];1779[label="vyw4610",fontsize=16,color="green",shape="box"];1780[label="vyw4810",fontsize=16,color="green",shape="box"];1781[label="vyw4610",fontsize=16,color="green",shape="box"];1782[label="vyw4810",fontsize=16,color="green",shape="box"];1783[label="vyw4610",fontsize=16,color="green",shape="box"];1784[label="vyw4810",fontsize=16,color="green",shape="box"];1785[label="vyw4610",fontsize=16,color="green",shape="box"];1786[label="vyw4810",fontsize=16,color="green",shape="box"];1787[label="vyw4610",fontsize=16,color="green",shape="box"];1788[label="vyw4810",fontsize=16,color="green",shape="box"];1789[label="vyw4610",fontsize=16,color="green",shape="box"];1790[label="vyw4810",fontsize=16,color="green",shape="box"];1791[label="vyw4610",fontsize=16,color="green",shape="box"];1792[label="vyw4810",fontsize=16,color="green",shape="box"];1793[label="vyw4610",fontsize=16,color="green",shape="box"];1794[label="vyw4810",fontsize=16,color="green",shape="box"];1795[label="vyw4610",fontsize=16,color="green",shape="box"];1796[label="vyw4810",fontsize=16,color="green",shape="box"];1797[label="vyw4610",fontsize=16,color="green",shape="box"];1798[label="vyw4810",fontsize=16,color="green",shape="box"];1799[label="vyw4610",fontsize=16,color="green",shape="box"];1800[label="vyw4810",fontsize=16,color="green",shape="box"];1801 -> 136[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1801[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1801 -> 1921[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1801 -> 1922[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1802 -> 130[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1802[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1802 -> 1923[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1802 -> 1924[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1803 -> 129[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1803[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1803 -> 1925[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1803 -> 1926[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1804 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1804[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1804 -> 1927[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1804 -> 1928[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1805 -> 132[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1805[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1805 -> 1929[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1805 -> 1930[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1806 -> 139[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1806[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1806 -> 1931[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1806 -> 1932[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1807 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1807[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1807 -> 1933[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1807 -> 1934[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1808 -> 133[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1808[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1808 -> 1935[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1808 -> 1936[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1809 -> 127[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1809[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1809 -> 1937[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1809 -> 1938[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1810 -> 135[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1810[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1810 -> 1939[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1810 -> 1940[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1811 -> 137[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1811[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1811 -> 1941[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1811 -> 1942[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1812 -> 131[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1812[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1812 -> 1943[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1812 -> 1944[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1813 -> 126[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1813[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1813 -> 1945[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1813 -> 1946[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1814 -> 138[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1814[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1814 -> 1947[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1814 -> 1948[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1815[label="vyw4611 < vyw4811",fontsize=16,color="blue",shape="box"];2827[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2827[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2827 -> 1949[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2828[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2828[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2828 -> 1950[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2829[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2829[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2829 -> 1951[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2830[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2830[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2830 -> 1952[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2831[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2831[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2831 -> 1953[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2832[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2832[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2832 -> 1954[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2833[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2833[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2833 -> 1955[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2834[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2834[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2834 -> 1956[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2835[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2835[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2835 -> 1957[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2836[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2836[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2836 -> 1958[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2837[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2837[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2837 -> 1959[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2838[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2838[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2838 -> 1960[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2839[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2839[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2839 -> 1961[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2840[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2840[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2840 -> 1962[label="",style="solid", color="blue", weight=3]; 25.19/10.94 1816 -> 385[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1816[label="vyw4611 == vyw4811 && vyw4612 <= vyw4812",fontsize=16,color="magenta"];1816 -> 1963[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1816 -> 1964[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1817[label="vyw104",fontsize=16,color="green",shape="box"];1818[label="True",fontsize=16,color="green",shape="box"];1819[label="True",fontsize=16,color="green",shape="box"];1820[label="False",fontsize=16,color="green",shape="box"];1821[label="vyw4610",fontsize=16,color="green",shape="box"];1822[label="vyw4810",fontsize=16,color="green",shape="box"];1823[label="vyw4610",fontsize=16,color="green",shape="box"];1824[label="vyw4810",fontsize=16,color="green",shape="box"];1825[label="vyw4610",fontsize=16,color="green",shape="box"];1826[label="vyw4810",fontsize=16,color="green",shape="box"];1827[label="vyw4610",fontsize=16,color="green",shape="box"];1828[label="vyw4810",fontsize=16,color="green",shape="box"];1829[label="vyw4610",fontsize=16,color="green",shape="box"];1830[label="vyw4810",fontsize=16,color="green",shape="box"];1831[label="vyw4610",fontsize=16,color="green",shape="box"];1832[label="vyw4810",fontsize=16,color="green",shape="box"];1833[label="vyw4610",fontsize=16,color="green",shape="box"];1834[label="vyw4810",fontsize=16,color="green",shape="box"];1835[label="vyw4610",fontsize=16,color="green",shape="box"];1836[label="vyw4810",fontsize=16,color="green",shape="box"];1837[label="vyw4610",fontsize=16,color="green",shape="box"];1838[label="vyw4810",fontsize=16,color="green",shape="box"];1839[label="vyw4610",fontsize=16,color="green",shape="box"];1840[label="vyw4810",fontsize=16,color="green",shape="box"];1841[label="vyw4610",fontsize=16,color="green",shape="box"];1842[label="vyw4810",fontsize=16,color="green",shape="box"];1843[label="vyw4610",fontsize=16,color="green",shape="box"];1844[label="vyw4810",fontsize=16,color="green",shape="box"];1845[label="vyw4610",fontsize=16,color="green",shape="box"];1846[label="vyw4810",fontsize=16,color="green",shape="box"];1847[label="vyw4610",fontsize=16,color="green",shape="box"];1848[label="vyw4810",fontsize=16,color="green",shape="box"];1849 -> 136[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1849[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1849 -> 1965[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1849 -> 1966[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1850 -> 130[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1850[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1850 -> 1967[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1850 -> 1968[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1851 -> 129[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1851[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1851 -> 1969[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1851 -> 1970[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1852 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1852[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1852 -> 1971[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1852 -> 1972[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1853 -> 132[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1853[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1853 -> 1973[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1853 -> 1974[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1854 -> 139[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1854[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1854 -> 1975[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1854 -> 1976[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1855 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1855[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1855 -> 1977[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1855 -> 1978[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1856 -> 133[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1856[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1856 -> 1979[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1856 -> 1980[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1857 -> 127[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1857[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1857 -> 1981[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1857 -> 1982[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1858 -> 135[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1858[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1858 -> 1983[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1858 -> 1984[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1859 -> 137[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1859[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1859 -> 1985[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1859 -> 1986[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1860 -> 131[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1860[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1860 -> 1987[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1860 -> 1988[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1861 -> 126[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1861[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1861 -> 1989[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1861 -> 1990[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1862 -> 138[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1862[label="vyw4610 == vyw4810",fontsize=16,color="magenta"];1862 -> 1991[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1862 -> 1992[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1863 -> 1272[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1863[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1863 -> 1993[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1863 -> 1994[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1864 -> 1273[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1864[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1864 -> 1995[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1864 -> 1996[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1865 -> 1274[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1865[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1865 -> 1997[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1865 -> 1998[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1866 -> 1275[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1866[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1866 -> 1999[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1866 -> 2000[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1867 -> 1276[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1867[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1867 -> 2001[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1867 -> 2002[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1868 -> 1277[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1868[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1868 -> 2003[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1868 -> 2004[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1869 -> 1278[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1869[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1869 -> 2005[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1869 -> 2006[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1870 -> 1279[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1870[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1870 -> 2007[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1870 -> 2008[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1871 -> 1280[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1871[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1871 -> 2009[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1871 -> 2010[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1872 -> 1281[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1872[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1872 -> 2011[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1872 -> 2012[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1873 -> 1282[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1873[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1873 -> 2013[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1873 -> 2014[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1874 -> 1283[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1874[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1874 -> 2015[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1874 -> 2016[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1875 -> 1284[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1875[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1875 -> 2017[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1875 -> 2018[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1876 -> 1285[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1876[label="vyw4611 <= vyw4811",fontsize=16,color="magenta"];1876 -> 2019[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1876 -> 2020[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1203[label="primPlusNat (Succ vyw7500) vyw300000",fontsize=16,color="burlywood",shape="box"];2841[label="vyw300000/Succ vyw3000000",fontsize=10,color="white",style="solid",shape="box"];1203 -> 2841[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2841 -> 1240[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2842[label="vyw300000/Zero",fontsize=10,color="white",style="solid",shape="box"];1203 -> 2842[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2842 -> 1241[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1204[label="primPlusNat Zero vyw300000",fontsize=16,color="burlywood",shape="box"];2843[label="vyw300000/Succ vyw3000000",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2843[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2843 -> 1242[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2844[label="vyw300000/Zero",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2844[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2844 -> 1243[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1878 -> 1272[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1878[label="vyw460 <= vyw480",fontsize=16,color="magenta"];1878 -> 2021[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1878 -> 2022[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1877[label="compare1 vyw460 vyw480 vyw105",fontsize=16,color="burlywood",shape="triangle"];2845[label="vyw105/False",fontsize=10,color="white",style="solid",shape="box"];1877 -> 2845[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2845 -> 2023[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2846[label="vyw105/True",fontsize=10,color="white",style="solid",shape="box"];1877 -> 2846[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2846 -> 2024[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1879[label="primCmpNat (Succ vyw46000) (Succ vyw48000)",fontsize=16,color="black",shape="box"];1879 -> 2025[label="",style="solid", color="black", weight=3]; 25.19/10.94 1880[label="primCmpNat (Succ vyw46000) Zero",fontsize=16,color="black",shape="box"];1880 -> 2026[label="",style="solid", color="black", weight=3]; 25.19/10.94 1881[label="primCmpNat Zero (Succ vyw48000)",fontsize=16,color="black",shape="box"];1881 -> 2027[label="",style="solid", color="black", weight=3]; 25.19/10.94 1882[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];1882 -> 2028[label="",style="solid", color="black", weight=3]; 25.19/10.94 1884[label="vyw99",fontsize=16,color="green",shape="box"];1885[label="compare vyw4600 vyw4800",fontsize=16,color="blue",shape="box"];2847[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1885 -> 2847[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2847 -> 2029[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2848[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1885 -> 2848[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2848 -> 2030[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2849[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1885 -> 2849[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2849 -> 2031[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2850[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1885 -> 2850[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2850 -> 2032[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2851[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1885 -> 2851[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2851 -> 2033[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2852[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1885 -> 2852[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2852 -> 2034[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2853[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1885 -> 2853[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2853 -> 2035[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2854[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1885 -> 2854[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2854 -> 2036[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2855[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1885 -> 2855[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2855 -> 2037[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2856[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1885 -> 2856[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2856 -> 2038[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2857[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1885 -> 2857[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2857 -> 2039[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2858[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1885 -> 2858[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2858 -> 2040[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2859[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1885 -> 2859[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2859 -> 2041[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2860[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1885 -> 2860[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2860 -> 2042[label="",style="solid", color="blue", weight=3]; 25.19/10.94 1883[label="primCompAux0 vyw109 vyw110",fontsize=16,color="burlywood",shape="triangle"];2861[label="vyw110/LT",fontsize=10,color="white",style="solid",shape="box"];1883 -> 2861[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2861 -> 2043[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2862[label="vyw110/EQ",fontsize=10,color="white",style="solid",shape="box"];1883 -> 2862[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2862 -> 2044[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2863[label="vyw110/GT",fontsize=10,color="white",style="solid",shape="box"];1883 -> 2863[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2863 -> 2045[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1886[label="vyw4800",fontsize=16,color="green",shape="box"];1887[label="Succ vyw46000",fontsize=16,color="green",shape="box"];1888 -> 1564[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1888[label="primCmpNat Zero (Succ vyw48000)",fontsize=16,color="magenta"];1888 -> 2046[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1888 -> 2047[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1889[label="EQ",fontsize=16,color="green",shape="box"];1890[label="GT",fontsize=16,color="green",shape="box"];1891[label="EQ",fontsize=16,color="green",shape="box"];1892[label="Succ vyw46000",fontsize=16,color="green",shape="box"];1893[label="vyw4800",fontsize=16,color="green",shape="box"];1894[label="LT",fontsize=16,color="green",shape="box"];1895[label="EQ",fontsize=16,color="green",shape="box"];1896 -> 1564[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1896[label="primCmpNat (Succ vyw48000) Zero",fontsize=16,color="magenta"];1896 -> 2048[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1896 -> 2049[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1897[label="EQ",fontsize=16,color="green",shape="box"];1898 -> 1299[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1898[label="compare (vyw4600 * Pos vyw48010) (Pos vyw46010 * vyw4800)",fontsize=16,color="magenta"];1898 -> 2050[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1898 -> 2051[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1899 -> 1299[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1899[label="compare (vyw4600 * Pos vyw48010) (Neg vyw46010 * vyw4800)",fontsize=16,color="magenta"];1899 -> 2052[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1899 -> 2053[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1900 -> 1299[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1900[label="compare (vyw4600 * Neg vyw48010) (Pos vyw46010 * vyw4800)",fontsize=16,color="magenta"];1900 -> 2054[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1900 -> 2055[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1901 -> 1299[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1901[label="compare (vyw4600 * Neg vyw48010) (Neg vyw46010 * vyw4800)",fontsize=16,color="magenta"];1901 -> 2056[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1901 -> 2057[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1903 -> 1278[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1903[label="vyw460 <= vyw480",fontsize=16,color="magenta"];1903 -> 2058[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1903 -> 2059[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1902[label="compare1 vyw460 vyw480 vyw111",fontsize=16,color="burlywood",shape="triangle"];2864[label="vyw111/False",fontsize=10,color="white",style="solid",shape="box"];1902 -> 2864[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2864 -> 2060[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2865[label="vyw111/True",fontsize=10,color="white",style="solid",shape="box"];1902 -> 2865[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2865 -> 2061[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1905 -> 1280[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1905[label="vyw460 <= vyw480",fontsize=16,color="magenta"];1905 -> 2062[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1905 -> 2063[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1904[label="compare1 vyw460 vyw480 vyw112",fontsize=16,color="burlywood",shape="triangle"];2866[label="vyw112/False",fontsize=10,color="white",style="solid",shape="box"];1904 -> 2866[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2866 -> 2064[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2867[label="vyw112/True",fontsize=10,color="white",style="solid",shape="box"];1904 -> 2867[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2867 -> 2065[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1906[label="vyw4801",fontsize=16,color="green",shape="box"];1907[label="vyw4600",fontsize=16,color="green",shape="box"];1908[label="vyw4601",fontsize=16,color="green",shape="box"];1909[label="vyw4800",fontsize=16,color="green",shape="box"];1910[label="Integer vyw46000 * vyw4801",fontsize=16,color="burlywood",shape="box"];2868[label="vyw4801/Integer vyw48010",fontsize=10,color="white",style="solid",shape="box"];1910 -> 2868[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2868 -> 2066[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1911[label="vyw4601",fontsize=16,color="green",shape="box"];1912[label="vyw4800",fontsize=16,color="green",shape="box"];1914 -> 1283[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1914[label="vyw460 <= vyw480",fontsize=16,color="magenta"];1914 -> 2067[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1914 -> 2068[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1913[label="compare1 vyw460 vyw480 vyw113",fontsize=16,color="burlywood",shape="triangle"];2869[label="vyw113/False",fontsize=10,color="white",style="solid",shape="box"];1913 -> 2869[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2869 -> 2069[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2870[label="vyw113/True",fontsize=10,color="white",style="solid",shape="box"];1913 -> 2870[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2870 -> 2070[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1916 -> 1284[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1916[label="vyw460 <= vyw480",fontsize=16,color="magenta"];1916 -> 2071[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1916 -> 2072[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1915[label="compare1 vyw460 vyw480 vyw114",fontsize=16,color="burlywood",shape="triangle"];2871[label="vyw114/False",fontsize=10,color="white",style="solid",shape="box"];1915 -> 2871[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2871 -> 2073[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 2872[label="vyw114/True",fontsize=10,color="white",style="solid",shape="box"];1915 -> 2872[label="",style="solid", color="burlywood", weight=9]; 25.19/10.94 2872 -> 2074[label="",style="solid", color="burlywood", weight=3]; 25.19/10.94 1917 -> 1299[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1917[label="compare (vyw4600 * Pos vyw48010) (Pos vyw46010 * vyw4800)",fontsize=16,color="magenta"];1917 -> 2075[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1917 -> 2076[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1918 -> 1299[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1918[label="compare (vyw4600 * Pos vyw48010) (Neg vyw46010 * vyw4800)",fontsize=16,color="magenta"];1918 -> 2077[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1918 -> 2078[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1919 -> 1299[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1919[label="compare (vyw4600 * Neg vyw48010) (Pos vyw46010 * vyw4800)",fontsize=16,color="magenta"];1919 -> 2079[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1919 -> 2080[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1920 -> 1299[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1920[label="compare (vyw4600 * Neg vyw48010) (Neg vyw46010 * vyw4800)",fontsize=16,color="magenta"];1920 -> 2081[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1920 -> 2082[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1921[label="vyw4810",fontsize=16,color="green",shape="box"];1922[label="vyw4610",fontsize=16,color="green",shape="box"];1923[label="vyw4810",fontsize=16,color="green",shape="box"];1924[label="vyw4610",fontsize=16,color="green",shape="box"];1925[label="vyw4810",fontsize=16,color="green",shape="box"];1926[label="vyw4610",fontsize=16,color="green",shape="box"];1927[label="vyw4810",fontsize=16,color="green",shape="box"];1928[label="vyw4610",fontsize=16,color="green",shape="box"];1929[label="vyw4810",fontsize=16,color="green",shape="box"];1930[label="vyw4610",fontsize=16,color="green",shape="box"];1931[label="vyw4810",fontsize=16,color="green",shape="box"];1932[label="vyw4610",fontsize=16,color="green",shape="box"];1933[label="vyw4810",fontsize=16,color="green",shape="box"];1934[label="vyw4610",fontsize=16,color="green",shape="box"];1935[label="vyw4810",fontsize=16,color="green",shape="box"];1936[label="vyw4610",fontsize=16,color="green",shape="box"];1937[label="vyw4810",fontsize=16,color="green",shape="box"];1938[label="vyw4610",fontsize=16,color="green",shape="box"];1939[label="vyw4810",fontsize=16,color="green",shape="box"];1940[label="vyw4610",fontsize=16,color="green",shape="box"];1941[label="vyw4810",fontsize=16,color="green",shape="box"];1942[label="vyw4610",fontsize=16,color="green",shape="box"];1943[label="vyw4810",fontsize=16,color="green",shape="box"];1944[label="vyw4610",fontsize=16,color="green",shape="box"];1945[label="vyw4810",fontsize=16,color="green",shape="box"];1946[label="vyw4610",fontsize=16,color="green",shape="box"];1947[label="vyw4810",fontsize=16,color="green",shape="box"];1948[label="vyw4610",fontsize=16,color="green",shape="box"];1949 -> 1222[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1949[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];1949 -> 2083[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1949 -> 2084[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1950 -> 1223[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1950[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];1950 -> 2085[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1950 -> 2086[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1951 -> 1224[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1951[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];1951 -> 2087[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1951 -> 2088[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1952 -> 1225[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1952[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];1952 -> 2089[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1952 -> 2090[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1953 -> 1226[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1953[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];1953 -> 2091[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1953 -> 2092[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1954 -> 1227[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1954[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];1954 -> 2093[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1954 -> 2094[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1955 -> 1228[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1955[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];1955 -> 2095[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1955 -> 2096[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1956 -> 1229[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1956[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];1956 -> 2097[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1956 -> 2098[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1957 -> 1230[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1957[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];1957 -> 2099[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1957 -> 2100[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1958 -> 1231[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1958[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];1958 -> 2101[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1958 -> 2102[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1959 -> 1232[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1959[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];1959 -> 2103[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1959 -> 2104[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1960 -> 1233[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1960[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];1960 -> 2105[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1960 -> 2106[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1961 -> 1234[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1961[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];1961 -> 2107[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1961 -> 2108[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1962 -> 1235[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1962[label="vyw4611 < vyw4811",fontsize=16,color="magenta"];1962 -> 2109[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1962 -> 2110[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1963[label="vyw4611 == vyw4811",fontsize=16,color="blue",shape="box"];2873[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 2873[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2873 -> 2111[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2874[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 2874[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2874 -> 2112[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2875[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 2875[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2875 -> 2113[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2876[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 2876[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2876 -> 2114[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2877[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 2877[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2877 -> 2115[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2878[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 2878[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2878 -> 2116[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2879[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 2879[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2879 -> 2117[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2880[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 2880[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2880 -> 2118[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2881[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 2881[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2881 -> 2119[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2882[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 2882[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2882 -> 2120[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2883[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 2883[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2883 -> 2121[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2884[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 2884[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2884 -> 2122[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2885[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 2885[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2885 -> 2123[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2886[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 2886[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2886 -> 2124[label="",style="solid", color="blue", weight=3]; 25.19/10.94 1964[label="vyw4612 <= vyw4812",fontsize=16,color="blue",shape="box"];2887[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1964 -> 2887[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2887 -> 2125[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2888[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1964 -> 2888[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2888 -> 2126[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2889[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1964 -> 2889[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2889 -> 2127[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2890[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1964 -> 2890[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2890 -> 2128[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2891[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1964 -> 2891[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2891 -> 2129[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2892[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1964 -> 2892[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2892 -> 2130[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2893[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1964 -> 2893[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2893 -> 2131[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2894[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1964 -> 2894[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2894 -> 2132[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2895[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1964 -> 2895[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2895 -> 2133[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2896[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1964 -> 2896[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2896 -> 2134[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2897[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1964 -> 2897[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2897 -> 2135[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2898[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1964 -> 2898[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2898 -> 2136[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2899[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1964 -> 2899[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2899 -> 2137[label="",style="solid", color="blue", weight=3]; 25.19/10.94 2900[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1964 -> 2900[label="",style="solid", color="blue", weight=9]; 25.19/10.94 2900 -> 2138[label="",style="solid", color="blue", weight=3]; 25.19/10.94 1965[label="vyw4810",fontsize=16,color="green",shape="box"];1966[label="vyw4610",fontsize=16,color="green",shape="box"];1967[label="vyw4810",fontsize=16,color="green",shape="box"];1968[label="vyw4610",fontsize=16,color="green",shape="box"];1969[label="vyw4810",fontsize=16,color="green",shape="box"];1970[label="vyw4610",fontsize=16,color="green",shape="box"];1971[label="vyw4810",fontsize=16,color="green",shape="box"];1972[label="vyw4610",fontsize=16,color="green",shape="box"];1973[label="vyw4810",fontsize=16,color="green",shape="box"];1974[label="vyw4610",fontsize=16,color="green",shape="box"];1975[label="vyw4810",fontsize=16,color="green",shape="box"];1976[label="vyw4610",fontsize=16,color="green",shape="box"];1977[label="vyw4810",fontsize=16,color="green",shape="box"];1978[label="vyw4610",fontsize=16,color="green",shape="box"];1979[label="vyw4810",fontsize=16,color="green",shape="box"];1980[label="vyw4610",fontsize=16,color="green",shape="box"];1981[label="vyw4810",fontsize=16,color="green",shape="box"];1982[label="vyw4610",fontsize=16,color="green",shape="box"];1983[label="vyw4810",fontsize=16,color="green",shape="box"];1984[label="vyw4610",fontsize=16,color="green",shape="box"];1985[label="vyw4810",fontsize=16,color="green",shape="box"];1986[label="vyw4610",fontsize=16,color="green",shape="box"];1987[label="vyw4810",fontsize=16,color="green",shape="box"];1988[label="vyw4610",fontsize=16,color="green",shape="box"];1989[label="vyw4810",fontsize=16,color="green",shape="box"];1990[label="vyw4610",fontsize=16,color="green",shape="box"];1991[label="vyw4810",fontsize=16,color="green",shape="box"];1992[label="vyw4610",fontsize=16,color="green",shape="box"];1993[label="vyw4811",fontsize=16,color="green",shape="box"];1994[label="vyw4611",fontsize=16,color="green",shape="box"];1995[label="vyw4811",fontsize=16,color="green",shape="box"];1996[label="vyw4611",fontsize=16,color="green",shape="box"];1997[label="vyw4811",fontsize=16,color="green",shape="box"];1998[label="vyw4611",fontsize=16,color="green",shape="box"];1999[label="vyw4811",fontsize=16,color="green",shape="box"];2000[label="vyw4611",fontsize=16,color="green",shape="box"];2001[label="vyw4811",fontsize=16,color="green",shape="box"];2002[label="vyw4611",fontsize=16,color="green",shape="box"];2003[label="vyw4811",fontsize=16,color="green",shape="box"];2004[label="vyw4611",fontsize=16,color="green",shape="box"];2005[label="vyw4811",fontsize=16,color="green",shape="box"];2006[label="vyw4611",fontsize=16,color="green",shape="box"];2007[label="vyw4811",fontsize=16,color="green",shape="box"];2008[label="vyw4611",fontsize=16,color="green",shape="box"];2009[label="vyw4811",fontsize=16,color="green",shape="box"];2010[label="vyw4611",fontsize=16,color="green",shape="box"];2011[label="vyw4811",fontsize=16,color="green",shape="box"];2012[label="vyw4611",fontsize=16,color="green",shape="box"];2013[label="vyw4811",fontsize=16,color="green",shape="box"];2014[label="vyw4611",fontsize=16,color="green",shape="box"];2015[label="vyw4811",fontsize=16,color="green",shape="box"];2016[label="vyw4611",fontsize=16,color="green",shape="box"];2017[label="vyw4811",fontsize=16,color="green",shape="box"];2018[label="vyw4611",fontsize=16,color="green",shape="box"];2019[label="vyw4811",fontsize=16,color="green",shape="box"];2020[label="vyw4611",fontsize=16,color="green",shape="box"];1240[label="primPlusNat (Succ vyw7500) (Succ vyw3000000)",fontsize=16,color="black",shape="box"];1240 -> 1288[label="",style="solid", color="black", weight=3]; 25.19/10.94 1241[label="primPlusNat (Succ vyw7500) Zero",fontsize=16,color="black",shape="box"];1241 -> 1289[label="",style="solid", color="black", weight=3]; 25.19/10.94 1242[label="primPlusNat Zero (Succ vyw3000000)",fontsize=16,color="black",shape="box"];1242 -> 1290[label="",style="solid", color="black", weight=3]; 25.19/10.94 1243[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1243 -> 1291[label="",style="solid", color="black", weight=3]; 25.19/10.94 2021[label="vyw480",fontsize=16,color="green",shape="box"];2022[label="vyw460",fontsize=16,color="green",shape="box"];2023[label="compare1 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];2023 -> 2139[label="",style="solid", color="black", weight=3]; 25.19/10.94 2024[label="compare1 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2024 -> 2140[label="",style="solid", color="black", weight=3]; 25.19/10.94 2025 -> 1564[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2025[label="primCmpNat vyw46000 vyw48000",fontsize=16,color="magenta"];2025 -> 2141[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2025 -> 2142[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2026[label="GT",fontsize=16,color="green",shape="box"];2027[label="LT",fontsize=16,color="green",shape="box"];2028[label="EQ",fontsize=16,color="green",shape="box"];2029 -> 1293[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2029[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2029 -> 2143[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2029 -> 2144[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2030 -> 1295[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2030[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2030 -> 2145[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2030 -> 2146[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2031 -> 1297[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2031[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2031 -> 2147[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2031 -> 2148[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2032 -> 1299[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2032[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2032 -> 2149[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2032 -> 2150[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2033 -> 1301[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2033[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2033 -> 2151[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2033 -> 2152[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2034 -> 1303[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2034[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2034 -> 2153[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2034 -> 2154[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2035 -> 1305[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2035[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2035 -> 2155[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2035 -> 2156[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2036 -> 1307[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2036[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2036 -> 2157[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2036 -> 2158[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2037 -> 1309[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2037[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2037 -> 2159[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2037 -> 2160[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2038 -> 1311[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2038[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2038 -> 2161[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2038 -> 2162[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2039 -> 1313[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2039[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2039 -> 2163[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2039 -> 2164[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2040 -> 1315[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2040[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2040 -> 2165[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2040 -> 2166[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2041 -> 1317[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2041[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2041 -> 2167[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2041 -> 2168[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2042 -> 1319[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2042[label="compare vyw4600 vyw4800",fontsize=16,color="magenta"];2042 -> 2169[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2042 -> 2170[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2043[label="primCompAux0 vyw109 LT",fontsize=16,color="black",shape="box"];2043 -> 2171[label="",style="solid", color="black", weight=3]; 25.19/10.94 2044[label="primCompAux0 vyw109 EQ",fontsize=16,color="black",shape="box"];2044 -> 2172[label="",style="solid", color="black", weight=3]; 25.19/10.94 2045[label="primCompAux0 vyw109 GT",fontsize=16,color="black",shape="box"];2045 -> 2173[label="",style="solid", color="black", weight=3]; 25.19/10.94 2046[label="Succ vyw48000",fontsize=16,color="green",shape="box"];2047[label="Zero",fontsize=16,color="green",shape="box"];2048[label="Zero",fontsize=16,color="green",shape="box"];2049[label="Succ vyw48000",fontsize=16,color="green",shape="box"];2050 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2050[label="vyw4600 * Pos vyw48010",fontsize=16,color="magenta"];2050 -> 2174[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2050 -> 2175[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2051 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2051[label="Pos vyw46010 * vyw4800",fontsize=16,color="magenta"];2051 -> 2176[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2051 -> 2177[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2052 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2052[label="vyw4600 * Pos vyw48010",fontsize=16,color="magenta"];2052 -> 2178[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2052 -> 2179[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2053 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2053[label="Neg vyw46010 * vyw4800",fontsize=16,color="magenta"];2053 -> 2180[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2053 -> 2181[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2054 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2054[label="vyw4600 * Neg vyw48010",fontsize=16,color="magenta"];2054 -> 2182[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2054 -> 2183[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2055 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2055[label="Pos vyw46010 * vyw4800",fontsize=16,color="magenta"];2055 -> 2184[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2055 -> 2185[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2056 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2056[label="vyw4600 * Neg vyw48010",fontsize=16,color="magenta"];2056 -> 2186[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2056 -> 2187[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2057 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2057[label="Neg vyw46010 * vyw4800",fontsize=16,color="magenta"];2057 -> 2188[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2057 -> 2189[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2058[label="vyw480",fontsize=16,color="green",shape="box"];2059[label="vyw460",fontsize=16,color="green",shape="box"];2060[label="compare1 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];2060 -> 2190[label="",style="solid", color="black", weight=3]; 25.19/10.94 2061[label="compare1 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2061 -> 2191[label="",style="solid", color="black", weight=3]; 25.19/10.94 2062[label="vyw480",fontsize=16,color="green",shape="box"];2063[label="vyw460",fontsize=16,color="green",shape="box"];2064[label="compare1 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];2064 -> 2192[label="",style="solid", color="black", weight=3]; 25.19/10.94 2065[label="compare1 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2065 -> 2193[label="",style="solid", color="black", weight=3]; 25.19/10.94 2066[label="Integer vyw46000 * Integer vyw48010",fontsize=16,color="black",shape="box"];2066 -> 2194[label="",style="solid", color="black", weight=3]; 25.19/10.94 2067[label="vyw480",fontsize=16,color="green",shape="box"];2068[label="vyw460",fontsize=16,color="green",shape="box"];2069[label="compare1 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];2069 -> 2195[label="",style="solid", color="black", weight=3]; 25.19/10.94 2070[label="compare1 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2070 -> 2196[label="",style="solid", color="black", weight=3]; 25.19/10.94 2071[label="vyw480",fontsize=16,color="green",shape="box"];2072[label="vyw460",fontsize=16,color="green",shape="box"];2073[label="compare1 vyw460 vyw480 False",fontsize=16,color="black",shape="box"];2073 -> 2197[label="",style="solid", color="black", weight=3]; 25.19/10.94 2074[label="compare1 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2074 -> 2198[label="",style="solid", color="black", weight=3]; 25.19/10.94 2075 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2075[label="vyw4600 * Pos vyw48010",fontsize=16,color="magenta"];2075 -> 2199[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2075 -> 2200[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2076 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2076[label="Pos vyw46010 * vyw4800",fontsize=16,color="magenta"];2076 -> 2201[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2076 -> 2202[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2077 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2077[label="vyw4600 * Pos vyw48010",fontsize=16,color="magenta"];2077 -> 2203[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2077 -> 2204[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2078 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2078[label="Neg vyw46010 * vyw4800",fontsize=16,color="magenta"];2078 -> 2205[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2078 -> 2206[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2079 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2079[label="vyw4600 * Neg vyw48010",fontsize=16,color="magenta"];2079 -> 2207[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2079 -> 2208[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2080 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2080[label="Pos vyw46010 * vyw4800",fontsize=16,color="magenta"];2080 -> 2209[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2080 -> 2210[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2081 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2081[label="vyw4600 * Neg vyw48010",fontsize=16,color="magenta"];2081 -> 2211[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2081 -> 2212[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2082 -> 474[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2082[label="Neg vyw46010 * vyw4800",fontsize=16,color="magenta"];2082 -> 2213[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2082 -> 2214[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2083[label="vyw4611",fontsize=16,color="green",shape="box"];2084[label="vyw4811",fontsize=16,color="green",shape="box"];2085[label="vyw4611",fontsize=16,color="green",shape="box"];2086[label="vyw4811",fontsize=16,color="green",shape="box"];2087[label="vyw4611",fontsize=16,color="green",shape="box"];2088[label="vyw4811",fontsize=16,color="green",shape="box"];2089[label="vyw4611",fontsize=16,color="green",shape="box"];2090[label="vyw4811",fontsize=16,color="green",shape="box"];2091[label="vyw4611",fontsize=16,color="green",shape="box"];2092[label="vyw4811",fontsize=16,color="green",shape="box"];2093[label="vyw4611",fontsize=16,color="green",shape="box"];2094[label="vyw4811",fontsize=16,color="green",shape="box"];2095[label="vyw4611",fontsize=16,color="green",shape="box"];2096[label="vyw4811",fontsize=16,color="green",shape="box"];2097[label="vyw4611",fontsize=16,color="green",shape="box"];2098[label="vyw4811",fontsize=16,color="green",shape="box"];2099[label="vyw4611",fontsize=16,color="green",shape="box"];2100[label="vyw4811",fontsize=16,color="green",shape="box"];2101[label="vyw4611",fontsize=16,color="green",shape="box"];2102[label="vyw4811",fontsize=16,color="green",shape="box"];2103[label="vyw4611",fontsize=16,color="green",shape="box"];2104[label="vyw4811",fontsize=16,color="green",shape="box"];2105[label="vyw4611",fontsize=16,color="green",shape="box"];2106[label="vyw4811",fontsize=16,color="green",shape="box"];2107[label="vyw4611",fontsize=16,color="green",shape="box"];2108[label="vyw4811",fontsize=16,color="green",shape="box"];2109[label="vyw4611",fontsize=16,color="green",shape="box"];2110[label="vyw4811",fontsize=16,color="green",shape="box"];2111 -> 136[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2111[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2111 -> 2215[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2111 -> 2216[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2112 -> 130[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2112[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2112 -> 2217[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2112 -> 2218[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2113 -> 129[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2113[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2113 -> 2219[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2113 -> 2220[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2114 -> 134[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2114[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2114 -> 2221[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2114 -> 2222[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2115 -> 132[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2115[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2115 -> 2223[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2115 -> 2224[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2116 -> 139[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2116[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2116 -> 2225[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2116 -> 2226[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2117 -> 128[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2117[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2117 -> 2227[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2117 -> 2228[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2118 -> 133[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2118[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2118 -> 2229[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2118 -> 2230[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2119 -> 127[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2119[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2119 -> 2231[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2119 -> 2232[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2120 -> 135[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2120[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2120 -> 2233[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2120 -> 2234[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2121 -> 137[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2121[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2121 -> 2235[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2121 -> 2236[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2122 -> 131[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2122[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2122 -> 2237[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2122 -> 2238[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2123 -> 126[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2123[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2123 -> 2239[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2123 -> 2240[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2124 -> 138[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2124[label="vyw4611 == vyw4811",fontsize=16,color="magenta"];2124 -> 2241[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2124 -> 2242[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2125 -> 1272[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2125[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2125 -> 2243[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2125 -> 2244[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2126 -> 1273[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2126[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2126 -> 2245[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2126 -> 2246[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2127 -> 1274[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2127[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2127 -> 2247[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2127 -> 2248[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2128 -> 1275[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2128[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2128 -> 2249[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2128 -> 2250[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2129 -> 1276[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2129[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2129 -> 2251[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2129 -> 2252[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2130 -> 1277[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2130[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2130 -> 2253[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2130 -> 2254[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2131 -> 1278[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2131[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2131 -> 2255[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2131 -> 2256[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2132 -> 1279[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2132[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2132 -> 2257[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2132 -> 2258[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2133 -> 1280[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2133[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2133 -> 2259[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2133 -> 2260[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2134 -> 1281[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2134[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2134 -> 2261[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2134 -> 2262[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2135 -> 1282[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2135[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2135 -> 2263[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2135 -> 2264[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2136 -> 1283[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2136[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2136 -> 2265[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2136 -> 2266[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2137 -> 1284[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2137[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2137 -> 2267[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2137 -> 2268[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2138 -> 1285[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2138[label="vyw4612 <= vyw4812",fontsize=16,color="magenta"];2138 -> 2269[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2138 -> 2270[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1288[label="Succ (Succ (primPlusNat vyw7500 vyw3000000))",fontsize=16,color="green",shape="box"];1288 -> 1370[label="",style="dashed", color="green", weight=3]; 25.19/10.94 1289[label="Succ vyw7500",fontsize=16,color="green",shape="box"];1290[label="Succ vyw3000000",fontsize=16,color="green",shape="box"];1291[label="Zero",fontsize=16,color="green",shape="box"];2139[label="compare0 vyw460 vyw480 otherwise",fontsize=16,color="black",shape="box"];2139 -> 2271[label="",style="solid", color="black", weight=3]; 25.19/10.94 2140[label="LT",fontsize=16,color="green",shape="box"];2141[label="vyw48000",fontsize=16,color="green",shape="box"];2142[label="vyw46000",fontsize=16,color="green",shape="box"];2143[label="vyw4600",fontsize=16,color="green",shape="box"];2144[label="vyw4800",fontsize=16,color="green",shape="box"];2145[label="vyw4600",fontsize=16,color="green",shape="box"];2146[label="vyw4800",fontsize=16,color="green",shape="box"];2147[label="vyw4600",fontsize=16,color="green",shape="box"];2148[label="vyw4800",fontsize=16,color="green",shape="box"];2149[label="vyw4600",fontsize=16,color="green",shape="box"];2150[label="vyw4800",fontsize=16,color="green",shape="box"];2151[label="vyw4600",fontsize=16,color="green",shape="box"];2152[label="vyw4800",fontsize=16,color="green",shape="box"];2153[label="vyw4600",fontsize=16,color="green",shape="box"];2154[label="vyw4800",fontsize=16,color="green",shape="box"];2155[label="vyw4600",fontsize=16,color="green",shape="box"];2156[label="vyw4800",fontsize=16,color="green",shape="box"];2157[label="vyw4600",fontsize=16,color="green",shape="box"];2158[label="vyw4800",fontsize=16,color="green",shape="box"];2159[label="vyw4600",fontsize=16,color="green",shape="box"];2160[label="vyw4800",fontsize=16,color="green",shape="box"];2161[label="vyw4600",fontsize=16,color="green",shape="box"];2162[label="vyw4800",fontsize=16,color="green",shape="box"];2163[label="vyw4600",fontsize=16,color="green",shape="box"];2164[label="vyw4800",fontsize=16,color="green",shape="box"];2165[label="vyw4600",fontsize=16,color="green",shape="box"];2166[label="vyw4800",fontsize=16,color="green",shape="box"];2167[label="vyw4600",fontsize=16,color="green",shape="box"];2168[label="vyw4800",fontsize=16,color="green",shape="box"];2169[label="vyw4600",fontsize=16,color="green",shape="box"];2170[label="vyw4800",fontsize=16,color="green",shape="box"];2171[label="LT",fontsize=16,color="green",shape="box"];2172[label="vyw109",fontsize=16,color="green",shape="box"];2173[label="GT",fontsize=16,color="green",shape="box"];2174[label="Pos vyw48010",fontsize=16,color="green",shape="box"];2175[label="vyw4600",fontsize=16,color="green",shape="box"];2176[label="vyw4800",fontsize=16,color="green",shape="box"];2177[label="Pos vyw46010",fontsize=16,color="green",shape="box"];2178[label="Pos vyw48010",fontsize=16,color="green",shape="box"];2179[label="vyw4600",fontsize=16,color="green",shape="box"];2180[label="vyw4800",fontsize=16,color="green",shape="box"];2181[label="Neg vyw46010",fontsize=16,color="green",shape="box"];2182[label="Neg vyw48010",fontsize=16,color="green",shape="box"];2183[label="vyw4600",fontsize=16,color="green",shape="box"];2184[label="vyw4800",fontsize=16,color="green",shape="box"];2185[label="Pos vyw46010",fontsize=16,color="green",shape="box"];2186[label="Neg vyw48010",fontsize=16,color="green",shape="box"];2187[label="vyw4600",fontsize=16,color="green",shape="box"];2188[label="vyw4800",fontsize=16,color="green",shape="box"];2189[label="Neg vyw46010",fontsize=16,color="green",shape="box"];2190[label="compare0 vyw460 vyw480 otherwise",fontsize=16,color="black",shape="box"];2190 -> 2272[label="",style="solid", color="black", weight=3]; 25.19/10.94 2191[label="LT",fontsize=16,color="green",shape="box"];2192[label="compare0 vyw460 vyw480 otherwise",fontsize=16,color="black",shape="box"];2192 -> 2273[label="",style="solid", color="black", weight=3]; 25.19/10.94 2193[label="LT",fontsize=16,color="green",shape="box"];2194[label="Integer (primMulInt vyw46000 vyw48010)",fontsize=16,color="green",shape="box"];2194 -> 2274[label="",style="dashed", color="green", weight=3]; 25.19/10.94 2195[label="compare0 vyw460 vyw480 otherwise",fontsize=16,color="black",shape="box"];2195 -> 2275[label="",style="solid", color="black", weight=3]; 25.19/10.94 2196[label="LT",fontsize=16,color="green",shape="box"];2197[label="compare0 vyw460 vyw480 otherwise",fontsize=16,color="black",shape="box"];2197 -> 2276[label="",style="solid", color="black", weight=3]; 25.19/10.94 2198[label="LT",fontsize=16,color="green",shape="box"];2199[label="Pos vyw48010",fontsize=16,color="green",shape="box"];2200[label="vyw4600",fontsize=16,color="green",shape="box"];2201[label="vyw4800",fontsize=16,color="green",shape="box"];2202[label="Pos vyw46010",fontsize=16,color="green",shape="box"];2203[label="Pos vyw48010",fontsize=16,color="green",shape="box"];2204[label="vyw4600",fontsize=16,color="green",shape="box"];2205[label="vyw4800",fontsize=16,color="green",shape="box"];2206[label="Neg vyw46010",fontsize=16,color="green",shape="box"];2207[label="Neg vyw48010",fontsize=16,color="green",shape="box"];2208[label="vyw4600",fontsize=16,color="green",shape="box"];2209[label="vyw4800",fontsize=16,color="green",shape="box"];2210[label="Pos vyw46010",fontsize=16,color="green",shape="box"];2211[label="Neg vyw48010",fontsize=16,color="green",shape="box"];2212[label="vyw4600",fontsize=16,color="green",shape="box"];2213[label="vyw4800",fontsize=16,color="green",shape="box"];2214[label="Neg vyw46010",fontsize=16,color="green",shape="box"];2215[label="vyw4811",fontsize=16,color="green",shape="box"];2216[label="vyw4611",fontsize=16,color="green",shape="box"];2217[label="vyw4811",fontsize=16,color="green",shape="box"];2218[label="vyw4611",fontsize=16,color="green",shape="box"];2219[label="vyw4811",fontsize=16,color="green",shape="box"];2220[label="vyw4611",fontsize=16,color="green",shape="box"];2221[label="vyw4811",fontsize=16,color="green",shape="box"];2222[label="vyw4611",fontsize=16,color="green",shape="box"];2223[label="vyw4811",fontsize=16,color="green",shape="box"];2224[label="vyw4611",fontsize=16,color="green",shape="box"];2225[label="vyw4811",fontsize=16,color="green",shape="box"];2226[label="vyw4611",fontsize=16,color="green",shape="box"];2227[label="vyw4811",fontsize=16,color="green",shape="box"];2228[label="vyw4611",fontsize=16,color="green",shape="box"];2229[label="vyw4811",fontsize=16,color="green",shape="box"];2230[label="vyw4611",fontsize=16,color="green",shape="box"];2231[label="vyw4811",fontsize=16,color="green",shape="box"];2232[label="vyw4611",fontsize=16,color="green",shape="box"];2233[label="vyw4811",fontsize=16,color="green",shape="box"];2234[label="vyw4611",fontsize=16,color="green",shape="box"];2235[label="vyw4811",fontsize=16,color="green",shape="box"];2236[label="vyw4611",fontsize=16,color="green",shape="box"];2237[label="vyw4811",fontsize=16,color="green",shape="box"];2238[label="vyw4611",fontsize=16,color="green",shape="box"];2239[label="vyw4811",fontsize=16,color="green",shape="box"];2240[label="vyw4611",fontsize=16,color="green",shape="box"];2241[label="vyw4811",fontsize=16,color="green",shape="box"];2242[label="vyw4611",fontsize=16,color="green",shape="box"];2243[label="vyw4812",fontsize=16,color="green",shape="box"];2244[label="vyw4612",fontsize=16,color="green",shape="box"];2245[label="vyw4812",fontsize=16,color="green",shape="box"];2246[label="vyw4612",fontsize=16,color="green",shape="box"];2247[label="vyw4812",fontsize=16,color="green",shape="box"];2248[label="vyw4612",fontsize=16,color="green",shape="box"];2249[label="vyw4812",fontsize=16,color="green",shape="box"];2250[label="vyw4612",fontsize=16,color="green",shape="box"];2251[label="vyw4812",fontsize=16,color="green",shape="box"];2252[label="vyw4612",fontsize=16,color="green",shape="box"];2253[label="vyw4812",fontsize=16,color="green",shape="box"];2254[label="vyw4612",fontsize=16,color="green",shape="box"];2255[label="vyw4812",fontsize=16,color="green",shape="box"];2256[label="vyw4612",fontsize=16,color="green",shape="box"];2257[label="vyw4812",fontsize=16,color="green",shape="box"];2258[label="vyw4612",fontsize=16,color="green",shape="box"];2259[label="vyw4812",fontsize=16,color="green",shape="box"];2260[label="vyw4612",fontsize=16,color="green",shape="box"];2261[label="vyw4812",fontsize=16,color="green",shape="box"];2262[label="vyw4612",fontsize=16,color="green",shape="box"];2263[label="vyw4812",fontsize=16,color="green",shape="box"];2264[label="vyw4612",fontsize=16,color="green",shape="box"];2265[label="vyw4812",fontsize=16,color="green",shape="box"];2266[label="vyw4612",fontsize=16,color="green",shape="box"];2267[label="vyw4812",fontsize=16,color="green",shape="box"];2268[label="vyw4612",fontsize=16,color="green",shape="box"];2269[label="vyw4812",fontsize=16,color="green",shape="box"];2270[label="vyw4612",fontsize=16,color="green",shape="box"];1370 -> 1201[label="",style="dashed", color="red", weight=0]; 25.19/10.94 1370[label="primPlusNat vyw7500 vyw3000000",fontsize=16,color="magenta"];1370 -> 1456[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 1370 -> 1457[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2271[label="compare0 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2271 -> 2277[label="",style="solid", color="black", weight=3]; 25.19/10.94 2272[label="compare0 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2272 -> 2278[label="",style="solid", color="black", weight=3]; 25.19/10.94 2273[label="compare0 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2273 -> 2279[label="",style="solid", color="black", weight=3]; 25.19/10.94 2274 -> 606[label="",style="dashed", color="red", weight=0]; 25.19/10.94 2274[label="primMulInt vyw46000 vyw48010",fontsize=16,color="magenta"];2274 -> 2280[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2274 -> 2281[label="",style="dashed", color="magenta", weight=3]; 25.19/10.94 2275[label="compare0 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2275 -> 2282[label="",style="solid", color="black", weight=3]; 25.19/10.94 2276[label="compare0 vyw460 vyw480 True",fontsize=16,color="black",shape="box"];2276 -> 2283[label="",style="solid", color="black", weight=3]; 25.19/10.94 1456[label="vyw7500",fontsize=16,color="green",shape="box"];1457[label="vyw3000000",fontsize=16,color="green",shape="box"];2277[label="GT",fontsize=16,color="green",shape="box"];2278[label="GT",fontsize=16,color="green",shape="box"];2279[label="GT",fontsize=16,color="green",shape="box"];2280[label="vyw48010",fontsize=16,color="green",shape="box"];2281[label="vyw46000",fontsize=16,color="green",shape="box"];2282[label="GT",fontsize=16,color="green",shape="box"];2283[label="GT",fontsize=16,color="green",shape="box"];} 25.19/10.94 25.19/10.94 ---------------------------------------- 25.19/10.94 25.19/10.94 (16) 25.19/10.94 Complex Obligation (AND) 25.19/10.94 25.19/10.94 ---------------------------------------- 25.19/10.94 25.19/10.94 (17) 25.19/10.94 Obligation: 25.19/10.94 Q DP problem: 25.19/10.94 The TRS P consists of the following rules: 25.19/10.94 25.19/10.94 new_primCmpNat(Succ(vyw46000), Succ(vyw48000)) -> new_primCmpNat(vyw46000, vyw48000) 25.19/10.94 25.19/10.94 R is empty. 25.19/10.94 Q is empty. 25.19/10.94 We have to consider all minimal (P,Q,R)-chains. 25.19/10.94 ---------------------------------------- 25.19/10.94 25.19/10.94 (18) QDPSizeChangeProof (EQUIVALENT) 25.19/10.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. 25.19/10.94 25.19/10.94 From the DPs we obtained the following set of size-change graphs: 25.19/10.94 *new_primCmpNat(Succ(vyw46000), Succ(vyw48000)) -> new_primCmpNat(vyw46000, vyw48000) 25.19/10.94 The graph contains the following edges 1 > 1, 2 > 2 25.19/10.94 25.19/10.94 25.19/10.94 ---------------------------------------- 25.19/10.94 25.19/10.94 (19) 25.19/10.94 YES 25.19/10.94 25.19/10.94 ---------------------------------------- 25.19/10.94 25.19/10.94 (20) 25.19/10.94 Obligation: 25.19/10.94 Q DP problem: 25.19/10.94 The TRS P consists of the following rules: 25.19/10.94 25.19/10.94 new_lt0(:(vyw4600, vyw4601), :(vyw4800, vyw4801), fb) -> new_primCompAux(vyw4600, vyw4800, new_compare0(vyw4601, vyw4801, fb), fb) 25.19/10.94 new_primCompAux(vyw4600, vyw4800, vyw99, app(ty_Maybe, gb)) -> new_compare4(vyw4600, vyw4800, gb) 25.19/10.94 new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(app(ty_Either, bae), baf), hh) -> new_lt3(vyw4610, vyw4810, bae, baf) 25.19/10.94 new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), bf), app(ty_[], ed))) -> new_ltEs0(vyw4612, vyw4812, ed) 25.19/10.94 new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, app(app(ty_@2, ca), cb)), bf), bg)) -> new_lt1(vyw4610, vyw4810, ca, cb) 25.19/10.94 new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, app(app(ty_Either, dg), dh), bg) -> new_lt3(vyw4611, vyw4811, dg, dh) 25.19/10.94 new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, app(ty_[], dc), bg) -> new_lt0(vyw4611, vyw4811, dc) 25.19/10.94 new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, app(ty_Maybe, cc)), bf), bg)) -> new_lt2(vyw4610, vyw4810, cc) 25.19/10.94 new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, app(app(app(ty_@3, he), hf), hg)), hh)) -> new_lt(vyw4610, vyw4810, he, hf, hg) 25.19/10.94 new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hc, app(app(ty_Either, bed), app(app(ty_Either, bfd), bfe))) -> new_ltEs3(vyw4610, vyw4810, bfd, bfe) 25.19/10.94 new_lt0(:(vyw4600, vyw4601), :(vyw4800, vyw4801), fb) -> new_compare1(vyw4601, vyw4801, fb) 25.19/10.94 new_lt3(vyw460, vyw480, ha, hb) -> new_compare22(vyw460, vyw480, new_esEs7(vyw460, vyw480, ha, hb), ha, hb) 25.19/10.94 new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, app(ty_[], baa)), hh)) -> new_lt0(vyw4610, vyw4810, baa) 25.19/10.94 new_ltEs3(Right(vyw4610), Right(vyw4810), bed, app(app(ty_@2, bfa), bfb)) -> new_ltEs1(vyw4610, vyw4810, bfa, bfb) 25.19/10.94 new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, app(app(app(ty_@3, h), ba), bb), gg) -> new_compare2(vyw460, vyw480, new_esEs4(vyw460, vyw480, h, ba, bb), h, ba, bb) 25.19/10.94 new_ltEs0(vyw461, vyw481, hd) -> new_compare1(vyw461, vyw481, hd) 25.19/10.94 new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, app(ty_Maybe, gh), gg) -> new_compare21(vyw460, vyw480, new_esEs6(vyw460, vyw480, gh), gh) 25.19/10.94 new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hc, app(app(ty_Either, bed), app(app(app(ty_@3, bee), bef), beg))) -> new_ltEs(vyw4610, vyw4810, bee, bef, beg) 25.19/10.94 new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, app(app(ty_Either, ha), hb), gg) -> new_compare22(vyw460, vyw480, new_esEs7(vyw460, vyw480, ha, hb), ha, hb) 25.19/10.94 new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), bag, app(app(ty_Either, bbg), bbh)) -> new_ltEs3(vyw4611, vyw4811, bbg, bbh) 25.19/10.94 new_compare(vyw460, vyw480, h, ba, bb) -> new_compare2(vyw460, vyw480, new_esEs4(vyw460, vyw480, h, ba, bb), h, ba, bb) 25.19/10.94 new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, app(app(ty_@2, bab), bac)), hh)) -> new_lt1(vyw4610, vyw4810, bab, bac) 25.19/10.94 new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), app(app(ty_@2, dd), de)), bg)) -> new_lt1(vyw4611, vyw4811, dd, de) 25.19/10.94 new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), bag, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs(vyw4611, vyw4811, bah, bba, bbb) 25.19/10.94 new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(app(ty_Either, cd), ce), bf, bg) -> new_lt3(vyw4610, vyw4810, cd, ce) 25.19/10.94 new_compare4(vyw460, vyw480, gh) -> new_compare21(vyw460, vyw480, new_esEs6(vyw460, vyw480, gh), gh) 25.19/10.94 new_primCompAux(vyw4600, vyw4800, vyw99, app(app(ty_@2, fh), ga)) -> new_compare3(vyw4600, vyw4800, fh, ga) 25.19/10.94 new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hc, app(app(ty_Either, app(ty_[], bdf)), bde)) -> new_ltEs0(vyw4610, vyw4810, bdf) 25.19/10.94 new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), bf), app(ty_Maybe, eg))) -> new_ltEs2(vyw4612, vyw4812, eg) 25.19/10.94 new_compare1(:(vyw4600, vyw4601), :(vyw4800, vyw4801), fb) -> new_compare1(vyw4601, vyw4801, fb) 25.19/10.94 new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hc, app(app(ty_Either, bed), app(ty_[], beh))) -> new_ltEs0(vyw4610, vyw4810, beh) 25.19/10.94 new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(app(ty_@2, bab), bac), hh) -> new_lt1(vyw4610, vyw4810, bab, bac) 25.19/10.94 new_ltEs3(Left(vyw4610), Left(vyw4810), app(ty_Maybe, bea), bde) -> new_ltEs2(vyw4610, vyw4810, bea) 25.19/10.94 new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, bf, app(app(ty_Either, eh), fa)) -> new_ltEs3(vyw4612, vyw4812, eh, fa) 25.19/10.94 new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, bag), app(ty_[], bbc))) -> new_ltEs0(vyw4611, vyw4811, bbc) 25.19/10.94 new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, bag), app(ty_Maybe, bbf))) -> new_ltEs2(vyw4611, vyw4811, bbf) 25.19/10.94 new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, bf, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs(vyw4612, vyw4812, ea, eb, ec) 25.19/10.94 new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), bf), app(app(ty_@2, ee), ef))) -> new_ltEs1(vyw4612, vyw4812, ee, ef) 25.19/10.94 new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), bag, app(ty_[], bbc)) -> new_ltEs0(vyw4611, vyw4811, bbc) 25.19/10.94 new_ltEs3(Left(vyw4610), Left(vyw4810), app(ty_[], bdf), bde) -> new_ltEs0(vyw4610, vyw4810, bdf) 25.19/10.94 new_primCompAux(vyw4600, vyw4800, vyw99, app(app(ty_Either, gc), gd)) -> new_compare5(vyw4600, vyw4800, gc, gd) 25.19/10.94 new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, bf, app(ty_Maybe, eg)) -> new_ltEs2(vyw4612, vyw4812, eg) 25.19/10.94 new_ltEs3(Right(vyw4610), Right(vyw4810), bed, app(ty_Maybe, bfc)) -> new_ltEs2(vyw4610, vyw4810, bfc) 25.19/10.94 new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hc, app(ty_Maybe, app(app(app(ty_@3, bca), bcb), bcc))) -> new_ltEs(vyw4610, vyw4810, bca, bcb, bcc) 25.19/10.94 new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hc, app(app(ty_Either, bed), app(app(ty_@2, bfa), bfb))) -> new_ltEs1(vyw4610, vyw4810, bfa, bfb) 25.19/10.94 new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), app(ty_[], dc)), bg)) -> new_lt0(vyw4611, vyw4811, dc) 25.19/10.94 new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hc, app(ty_Maybe, app(ty_Maybe, bcg))) -> new_ltEs2(vyw4610, vyw4810, bcg) 25.19/10.94 new_ltEs2(Just(vyw4610), Just(vyw4810), app(ty_Maybe, bcg)) -> new_ltEs2(vyw4610, vyw4810, bcg) 25.19/10.94 new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), bag, app(ty_Maybe, bbf)) -> new_ltEs2(vyw4611, vyw4811, bbf) 25.19/10.95 new_ltEs2(Just(vyw4610), Just(vyw4810), app(ty_[], bcd)) -> new_ltEs0(vyw4610, vyw4810, bcd) 25.19/10.95 new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hc, app(app(ty_Either, app(ty_Maybe, bea)), bde)) -> new_ltEs2(vyw4610, vyw4810, bea) 25.19/10.95 new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, app(ty_Maybe, df), bg) -> new_lt2(vyw4611, vyw4811, df) 25.19/10.95 new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, bf, app(ty_[], ed)) -> new_ltEs0(vyw4612, vyw4812, ed) 25.19/10.95 new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hc, app(app(ty_Either, app(app(ty_@2, bdg), bdh)), bde)) -> new_ltEs1(vyw4610, vyw4810, bdg, bdh) 25.19/10.95 new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(ty_Maybe, bad), hh) -> new_lt2(vyw4610, vyw4810, bad) 25.19/10.95 new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(app(app(ty_@3, he), hf), hg), hh) -> new_lt(vyw4610, vyw4810, he, hf, hg) 25.19/10.95 new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), app(ty_Maybe, df)), bg)) -> new_lt2(vyw4611, vyw4811, df) 25.19/10.95 new_ltEs3(Left(vyw4610), Left(vyw4810), app(app(ty_Either, beb), bec), bde) -> new_ltEs3(vyw4610, vyw4810, beb, bec) 25.19/10.95 new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), app(app(app(ty_@3, cg), da), db)), bg)) -> new_lt(vyw4611, vyw4811, cg, da, db) 25.19/10.95 new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), bf), app(app(ty_Either, eh), fa))) -> new_ltEs3(vyw4612, vyw4812, eh, fa) 25.19/10.95 new_ltEs2(Just(vyw4610), Just(vyw4810), app(app(ty_@2, bce), bcf)) -> new_ltEs1(vyw4610, vyw4810, bce, bcf) 25.19/10.95 new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(app(ty_@2, ca), cb), bf, bg) -> new_lt1(vyw4610, vyw4810, ca, cb) 25.19/10.95 new_lt1(vyw460, vyw480, ge, gf) -> new_compare20(vyw460, vyw480, new_esEs5(vyw460, vyw480, ge, gf), ge, gf) 25.19/10.95 new_lt2(vyw460, vyw480, gh) -> new_compare21(vyw460, vyw480, new_esEs6(vyw460, vyw480, gh), gh) 25.19/10.95 new_ltEs3(Right(vyw4610), Right(vyw4810), bed, app(app(app(ty_@3, bee), bef), beg)) -> new_ltEs(vyw4610, vyw4810, bee, bef, beg) 25.19/10.95 new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, bag), app(app(ty_@2, bbd), bbe))) -> new_ltEs1(vyw4611, vyw4811, bbd, bbe) 25.19/10.95 new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(ty_[], baa), hh) -> new_lt0(vyw4610, vyw4810, baa) 25.19/10.95 new_ltEs3(Right(vyw4610), Right(vyw4810), bed, app(ty_[], beh)) -> new_ltEs0(vyw4610, vyw4810, beh) 25.19/10.95 new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(app(app(ty_@3, bc), bd), be), bf, bg) -> new_lt(vyw4610, vyw4810, bc, bd, be) 25.19/10.95 new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, app(app(app(ty_@3, bc), bd), be)), bf), bg)) -> new_lt(vyw4610, vyw4810, bc, bd, be) 25.19/10.95 new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hc, app(ty_Maybe, app(app(ty_Either, bch), bda))) -> new_ltEs3(vyw4610, vyw4810, bch, bda) 25.19/10.95 new_compare22(vyw460, vyw480, False, ha, hb) -> new_ltEs3(vyw460, vyw480, ha, hb) 25.19/10.95 new_primCompAux(vyw4600, vyw4800, vyw99, app(app(app(ty_@3, fc), fd), ff)) -> new_compare(vyw4600, vyw4800, fc, fd, ff) 25.19/10.95 new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hc, app(ty_Maybe, app(ty_[], bcd))) -> new_ltEs0(vyw4610, vyw4810, bcd) 25.19/10.95 new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hc, app(app(ty_Either, app(app(app(ty_@3, bdb), bdc), bdd)), bde)) -> new_ltEs(vyw4610, vyw4810, bdb, bdc, bdd) 25.19/10.95 new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, bf, app(app(ty_@2, ee), ef)) -> new_ltEs1(vyw4612, vyw4812, ee, ef) 25.19/10.95 new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, app(ty_Maybe, bad)), hh)) -> new_lt2(vyw4610, vyw4810, bad) 25.19/10.95 new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, app(app(ty_Either, bae), baf)), hh)) -> new_lt3(vyw4610, vyw4810, bae, baf) 25.19/10.95 new_ltEs3(Right(vyw4610), Right(vyw4810), bed, app(app(ty_Either, bfd), bfe)) -> new_ltEs3(vyw4610, vyw4810, bfd, bfe) 25.19/10.95 new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hc, app(app(ty_Either, bed), app(ty_Maybe, bfc))) -> new_ltEs2(vyw4610, vyw4810, bfc) 25.19/10.95 new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), bag, app(app(ty_@2, bbd), bbe)) -> new_ltEs1(vyw4611, vyw4811, bbd, bbe) 25.19/10.95 new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(ty_[], bh), bf, bg) -> new_lt0(vyw4610, vyw4810, bh) 25.19/10.95 new_compare20(@2(:(vyw4600, vyw4601), vyw461), @2(:(vyw4800, vyw4801), vyw481), False, app(ty_[], fb), gg) -> new_primCompAux(vyw4600, vyw4800, new_compare0(vyw4601, vyw4801, fb), fb) 25.19/10.95 new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, app(ty_[], bh)), bf), bg)) -> new_lt0(vyw4610, vyw4810, bh) 25.19/10.95 new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), bf), app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs(vyw4612, vyw4812, ea, eb, ec) 25.19/10.95 new_compare20(@2(:(vyw4600, vyw4601), vyw461), @2(:(vyw4800, vyw4801), vyw481), False, app(ty_[], fb), gg) -> new_compare1(vyw4601, vyw4801, fb) 25.19/10.95 new_compare1(:(vyw4600, vyw4601), :(vyw4800, vyw4801), fb) -> new_primCompAux(vyw4600, vyw4800, new_compare0(vyw4601, vyw4801, fb), fb) 25.19/10.95 new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hc, app(app(ty_Either, app(app(ty_Either, beb), bec)), bde)) -> new_ltEs3(vyw4610, vyw4810, beb, bec) 25.19/10.95 new_compare2(vyw460, vyw480, False, h, ba, bb) -> new_ltEs(vyw460, vyw480, h, ba, bb) 25.19/10.95 new_primCompAux(vyw4600, vyw4800, vyw99, app(ty_[], fg)) -> new_compare1(vyw4600, vyw4800, fg) 25.19/10.95 new_compare3(vyw460, vyw480, ge, gf) -> new_compare20(vyw460, vyw480, new_esEs5(vyw460, vyw480, ge, gf), ge, gf) 25.19/10.95 new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(ty_Maybe, cc), bf, bg) -> new_lt2(vyw4610, vyw4810, cc) 25.19/10.95 new_lt(vyw460, vyw480, h, ba, bb) -> new_compare2(vyw460, vyw480, new_esEs4(vyw460, vyw480, h, ba, bb), h, ba, bb) 25.19/10.95 new_compare5(vyw460, vyw480, ha, hb) -> new_compare22(vyw460, vyw480, new_esEs7(vyw460, vyw480, ha, hb), ha, hb) 25.19/10.95 new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, hc, app(ty_[], hd)) -> new_compare1(vyw461, vyw481, hd) 25.19/10.95 new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, app(app(app(ty_@3, cg), da), db), bg) -> new_lt(vyw4611, vyw4811, cg, da, db) 25.19/10.95 new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), app(app(ty_Either, dg), dh)), bg)) -> new_lt3(vyw4611, vyw4811, dg, dh) 25.19/10.95 new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, app(app(ty_@2, dd), de), bg) -> new_lt1(vyw4611, vyw4811, dd, de) 25.19/10.95 new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, app(app(ty_Either, cd), ce)), bf), bg)) -> new_lt3(vyw4610, vyw4810, cd, ce) 25.19/10.95 new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, app(app(ty_@2, ge), gf), gg) -> new_compare20(vyw460, vyw480, new_esEs5(vyw460, vyw480, ge, gf), ge, gf) 25.19/10.95 new_ltEs2(Just(vyw4610), Just(vyw4810), app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs(vyw4610, vyw4810, bca, bcb, bcc) 25.19/10.95 new_ltEs2(Just(vyw4610), Just(vyw4810), app(app(ty_Either, bch), bda)) -> new_ltEs3(vyw4610, vyw4810, bch, bda) 25.19/10.95 new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, bag), app(app(app(ty_@3, bah), bba), bbb))) -> new_ltEs(vyw4611, vyw4811, bah, bba, bbb) 25.19/10.95 new_ltEs3(Left(vyw4610), Left(vyw4810), app(app(ty_@2, bdg), bdh), bde) -> new_ltEs1(vyw4610, vyw4810, bdg, bdh) 25.19/10.95 new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, bag), app(app(ty_Either, bbg), bbh))) -> new_ltEs3(vyw4611, vyw4811, bbg, bbh) 25.19/10.95 new_ltEs3(Left(vyw4610), Left(vyw4810), app(app(app(ty_@3, bdb), bdc), bdd), bde) -> new_ltEs(vyw4610, vyw4810, bdb, bdc, bdd) 25.19/10.95 new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hc, app(ty_Maybe, app(app(ty_@2, bce), bcf))) -> new_ltEs1(vyw4610, vyw4810, bce, bcf) 25.19/10.95 new_compare21(vyw460, vyw480, False, gh) -> new_ltEs2(vyw460, vyw480, gh) 25.19/10.95 25.19/10.95 The TRS R consists of the following rules: 25.19/10.95 25.19/10.95 new_lt20(vyw460, vyw480, ty_Double) -> new_lt12(vyw460, vyw480) 25.19/10.95 new_esEs7(Left(vyw500), Left(vyw3000), ty_Ordering, cga) -> new_esEs11(vyw500, vyw3000) 25.19/10.95 new_ltEs20(vyw4611, vyw4811, app(ty_[], bbc)) -> new_ltEs11(vyw4611, vyw4811, bbc) 25.19/10.95 new_esEs6(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.95 new_primCmpInt(Neg(Succ(vyw46000)), Pos(vyw4800)) -> LT 25.19/10.95 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.19/10.95 new_esEs29(vyw4610, vyw4810, app(ty_[], baa)) -> new_esEs12(vyw4610, vyw4810, baa) 25.19/10.95 new_lt9(vyw4611, vyw4811, app(app(app(ty_@3, cg), da), db)) -> new_lt6(vyw4611, vyw4811, cg, da, db) 25.19/10.95 new_primPlusNat0(Zero, Zero) -> Zero 25.19/10.95 new_ltEs9(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, bf, bg) -> new_pePe(new_lt8(vyw4610, vyw4810, cf), new_asAs(new_esEs20(vyw4610, vyw4810, cf), new_pePe(new_lt9(vyw4611, vyw4811, bf), new_asAs(new_esEs21(vyw4611, vyw4811, bf), new_ltEs10(vyw4612, vyw4812, bg))))) 25.19/10.95 new_esEs8(vyw500, vyw3000, app(app(ty_@2, bgd), bge)) -> new_esEs5(vyw500, vyw3000, bgd, bge) 25.19/10.95 new_pePe(True, vyw104) -> True 25.19/10.95 new_esEs7(Left(vyw500), Left(vyw3000), app(ty_[], cgc), cga) -> new_esEs12(vyw500, vyw3000, cgc) 25.19/10.95 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Double, bde) -> new_ltEs13(vyw4610, vyw4810) 25.19/10.95 new_compare111(vyw460, vyw480, True, h, ba, bb) -> LT 25.19/10.95 new_esEs27(vyw502, vyw3002, ty_Float) -> new_esEs18(vyw502, vyw3002) 25.19/10.95 new_esEs20(vyw4610, vyw4810, app(ty_[], bh)) -> new_esEs12(vyw4610, vyw4810, bh) 25.19/10.95 new_esEs11(LT, EQ) -> False 25.19/10.95 new_esEs11(EQ, LT) -> False 25.19/10.95 new_lt8(vyw4610, vyw4810, app(app(ty_@2, ca), cb)) -> new_lt14(vyw4610, vyw4810, ca, cb) 25.19/10.95 new_compare210(vyw460, vyw480, False, h, ba, bb) -> new_compare111(vyw460, vyw480, new_ltEs9(vyw460, vyw480, h, ba, bb), h, ba, bb) 25.19/10.95 new_esEs26(vyw501, vyw3001, ty_Ordering) -> new_esEs11(vyw501, vyw3001) 25.19/10.95 new_esEs8(vyw500, vyw3000, app(ty_[], bga)) -> new_esEs12(vyw500, vyw3000, bga) 25.19/10.95 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.19/10.95 new_esEs12(:(vyw500, vyw501), [], dag) -> False 25.19/10.95 new_esEs12([], :(vyw3000, vyw3001), dag) -> False 25.19/10.95 new_primCmpInt(Pos(Zero), Neg(Succ(vyw48000))) -> GT 25.19/10.95 new_ltEs18(Right(vyw4610), Right(vyw4810), bed, app(ty_[], beh)) -> new_ltEs11(vyw4610, vyw4810, beh) 25.19/10.95 new_esEs20(vyw4610, vyw4810, ty_@0) -> new_esEs19(vyw4610, vyw4810) 25.19/10.95 new_ltEs18(Right(vyw4610), Right(vyw4810), bed, ty_Bool) -> new_ltEs5(vyw4610, vyw4810) 25.19/10.95 new_esEs29(vyw4610, vyw4810, ty_@0) -> new_esEs19(vyw4610, vyw4810) 25.19/10.95 new_esEs7(Left(vyw500), Left(vyw3000), ty_Int, cga) -> new_esEs15(vyw500, vyw3000) 25.19/10.95 new_compare31(vyw4600, vyw4800, ty_Int) -> new_compare12(vyw4600, vyw4800) 25.19/10.95 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Char) -> new_ltEs7(vyw4610, vyw4810) 25.19/10.95 new_lt20(vyw460, vyw480, ty_Ordering) -> new_lt7(vyw460, vyw480) 25.19/10.95 new_primCmpInt(Neg(Succ(vyw46000)), Neg(vyw4800)) -> new_primCmpNat0(vyw4800, Succ(vyw46000)) 25.19/10.95 new_compare0(:(vyw4600, vyw4601), :(vyw4800, vyw4801), fb) -> new_primCompAux1(vyw4600, vyw4800, new_compare0(vyw4601, vyw4801, fb), fb) 25.19/10.95 new_compare210(vyw460, vyw480, True, h, ba, bb) -> EQ 25.19/10.95 new_lt20(vyw460, vyw480, ty_@0) -> new_lt13(vyw460, vyw480) 25.19/10.95 new_esEs11(LT, GT) -> False 25.19/10.95 new_esEs11(GT, LT) -> False 25.19/10.95 new_ltEs18(Right(vyw4610), Right(vyw4810), bed, ty_Ordering) -> new_ltEs14(vyw4610, vyw4810) 25.19/10.95 new_esEs7(Right(vyw500), Right(vyw3000), chd, app(ty_[], chf)) -> new_esEs12(vyw500, vyw3000, chf) 25.19/10.95 new_lt21(vyw4610, vyw4810, ty_Char) -> new_lt4(vyw4610, vyw4810) 25.19/10.95 new_esEs27(vyw502, vyw3002, ty_Integer) -> new_esEs16(vyw502, vyw3002) 25.19/10.95 new_ltEs4(Nothing, Nothing, cba) -> True 25.19/10.95 new_esEs23(vyw501, vyw3001, ty_Integer) -> new_esEs16(vyw501, vyw3001) 25.19/10.95 new_ltEs4(Just(vyw4610), Nothing, cba) -> False 25.19/10.95 new_esEs10(False, True) -> False 25.19/10.95 new_esEs10(True, False) -> False 25.19/10.95 new_ltEs18(Right(vyw4610), Right(vyw4810), bed, app(app(ty_@2, bfa), bfb)) -> new_ltEs15(vyw4610, vyw4810, bfa, bfb) 25.19/10.95 new_primMulNat0(Succ(vyw50100), Succ(vyw300000)) -> new_primPlusNat1(new_primMulNat0(vyw50100, Succ(vyw300000)), vyw300000) 25.19/10.95 new_lt8(vyw4610, vyw4810, app(app(ty_Either, cd), ce)) -> new_lt18(vyw4610, vyw4810, cd, ce) 25.19/10.95 new_esEs7(Left(vyw500), Left(vyw3000), app(ty_Ratio, chc), cga) -> new_esEs17(vyw500, vyw3000, chc) 25.19/10.95 new_esEs25(vyw500, vyw3000, app(app(ty_@2, ccg), cch)) -> new_esEs5(vyw500, vyw3000, ccg, cch) 25.19/10.95 new_esEs22(vyw500, vyw3000, ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.95 new_esEs28(vyw500, vyw3000, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs4(vyw500, vyw3000, dbf, dbg, dbh) 25.19/10.95 new_esEs8(vyw500, vyw3000, ty_@0) -> new_esEs19(vyw500, vyw3000) 25.19/10.95 new_esEs28(vyw500, vyw3000, app(app(ty_Either, dbb), dbc)) -> new_esEs7(vyw500, vyw3000, dbb, dbc) 25.19/10.95 new_primCompAux0(vyw109, GT) -> GT 25.19/10.95 new_ltEs4(Just(vyw4610), Just(vyw4810), app(ty_Maybe, bcg)) -> new_ltEs4(vyw4610, vyw4810, bcg) 25.19/10.95 new_esEs25(vyw500, vyw3000, ty_Char) -> new_esEs13(vyw500, vyw3000) 25.19/10.95 new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False 25.19/10.95 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 25.19/10.95 new_ltEs19(vyw461, vyw481, app(ty_[], hd)) -> new_ltEs11(vyw461, vyw481, hd) 25.19/10.95 new_ltEs18(Left(vyw4610), Left(vyw4810), app(ty_[], bdf), bde) -> new_ltEs11(vyw4610, vyw4810, bdf) 25.19/10.95 new_lt8(vyw4610, vyw4810, ty_Char) -> new_lt4(vyw4610, vyw4810) 25.19/10.95 new_esEs20(vyw4610, vyw4810, app(app(ty_@2, ca), cb)) -> new_esEs5(vyw4610, vyw4810, ca, cb) 25.19/10.95 new_esEs25(vyw500, vyw3000, app(ty_Ratio, cdd)) -> new_esEs17(vyw500, vyw3000, cdd) 25.19/10.95 new_ltEs19(vyw461, vyw481, ty_Int) -> new_ltEs12(vyw461, vyw481) 25.19/10.95 new_esEs15(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) 25.19/10.95 new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) 25.19/10.95 new_esEs27(vyw502, vyw3002, ty_Bool) -> new_esEs10(vyw502, vyw3002) 25.19/10.95 new_esEs20(vyw4610, vyw4810, app(ty_Ratio, caf)) -> new_esEs17(vyw4610, vyw4810, caf) 25.19/10.95 new_primCompAux0(vyw109, LT) -> LT 25.19/10.95 new_esEs9(vyw501, vyw3001, ty_Char) -> new_esEs13(vyw501, vyw3001) 25.19/10.95 new_esEs7(Right(vyw500), Right(vyw3000), chd, app(ty_Ratio, daf)) -> new_esEs17(vyw500, vyw3000, daf) 25.19/10.95 new_not(True) -> False 25.19/10.95 new_lt8(vyw4610, vyw4810, ty_Bool) -> new_lt5(vyw4610, vyw4810) 25.19/10.95 new_ltEs19(vyw461, vyw481, app(ty_Ratio, cbg)) -> new_ltEs17(vyw461, vyw481, cbg) 25.19/10.95 new_lt21(vyw4610, vyw4810, app(app(ty_@2, bab), bac)) -> new_lt14(vyw4610, vyw4810, bab, bac) 25.19/10.95 new_ltEs20(vyw4611, vyw4811, ty_Ordering) -> new_ltEs14(vyw4611, vyw4811) 25.19/10.95 new_esEs27(vyw502, vyw3002, ty_Double) -> new_esEs14(vyw502, vyw3002) 25.19/10.95 new_primCmpNat0(Zero, Zero) -> EQ 25.19/10.95 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_@0) -> new_ltEs8(vyw4610, vyw4810) 25.19/10.95 new_ltEs4(Just(vyw4610), Just(vyw4810), app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs9(vyw4610, vyw4810, bca, bcb, bcc) 25.19/10.95 new_esEs9(vyw501, vyw3001, ty_Int) -> new_esEs15(vyw501, vyw3001) 25.19/10.95 new_lt21(vyw4610, vyw4810, ty_Bool) -> new_lt5(vyw4610, vyw4810) 25.19/10.95 new_esEs21(vyw4611, vyw4811, app(ty_Ratio, cag)) -> new_esEs17(vyw4611, vyw4811, cag) 25.19/10.95 new_esEs20(vyw4610, vyw4810, app(app(ty_Either, cd), ce)) -> new_esEs7(vyw4610, vyw4810, cd, ce) 25.19/10.95 new_ltEs20(vyw4611, vyw4811, ty_Int) -> new_ltEs12(vyw4611, vyw4811) 25.19/10.95 new_esEs9(vyw501, vyw3001, ty_Ordering) -> new_esEs11(vyw501, vyw3001) 25.19/10.95 new_esEs11(EQ, GT) -> False 25.19/10.95 new_esEs11(GT, EQ) -> False 25.19/10.95 new_primEqNat0(Succ(vyw5000), Zero) -> False 25.19/10.95 new_primEqNat0(Zero, Succ(vyw30000)) -> False 25.19/10.95 new_lt18(vyw460, vyw480, ha, hb) -> new_esEs11(new_compare26(vyw460, vyw480, ha, hb), LT) 25.19/10.95 new_compare112(vyw460, vyw480, False) -> GT 25.19/10.95 new_compare30(vyw460, vyw480, gh) -> new_compare24(vyw460, vyw480, new_esEs6(vyw460, vyw480, gh), gh) 25.19/10.95 new_esEs25(vyw500, vyw3000, ty_@0) -> new_esEs19(vyw500, vyw3000) 25.19/10.95 new_ltEs18(Left(vyw4610), Left(vyw4810), app(ty_Ratio, cbc), bde) -> new_ltEs17(vyw4610, vyw4810, cbc) 25.19/10.95 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Char, bde) -> new_ltEs7(vyw4610, vyw4810) 25.19/10.95 new_ltEs14(EQ, EQ) -> True 25.19/10.95 new_esEs7(Left(vyw500), Left(vyw3000), ty_Float, cga) -> new_esEs18(vyw500, vyw3000) 25.19/10.95 new_compare17(Integer(vyw4600), Integer(vyw4800)) -> new_primCmpInt(vyw4600, vyw4800) 25.19/10.95 new_ltEs18(Left(vyw4610), Left(vyw4810), app(app(ty_@2, bdg), bdh), bde) -> new_ltEs15(vyw4610, vyw4810, bdg, bdh) 25.19/10.95 new_esEs7(Left(vyw500), Left(vyw3000), ty_Bool, cga) -> new_esEs10(vyw500, vyw3000) 25.19/10.95 new_compare29(:%(vyw4600, vyw4601), :%(vyw4800, vyw4801), ty_Int) -> new_compare12(new_sr(vyw4600, vyw4801), new_sr(vyw4800, vyw4601)) 25.19/10.95 new_esEs8(vyw500, vyw3000, app(app(ty_Either, bgb), bgc)) -> new_esEs7(vyw500, vyw3000, bgb, bgc) 25.19/10.95 new_esEs27(vyw502, vyw3002, ty_Int) -> new_esEs15(vyw502, vyw3002) 25.19/10.95 new_ltEs11(vyw461, vyw481, hd) -> new_fsEs(new_compare0(vyw461, vyw481, hd)) 25.19/10.95 new_esEs24(vyw460, vyw480, app(app(app(ty_@3, h), ba), bb)) -> new_esEs4(vyw460, vyw480, h, ba, bb) 25.19/10.95 new_esEs26(vyw501, vyw3001, ty_Bool) -> new_esEs10(vyw501, vyw3001) 25.19/10.95 new_compare14(vyw460, vyw480, True) -> LT 25.19/10.95 new_primCmpInt(Pos(Succ(vyw46000)), Neg(vyw4800)) -> GT 25.19/10.95 new_esEs24(vyw460, vyw480, ty_@0) -> new_esEs19(vyw460, vyw480) 25.19/10.95 new_esEs26(vyw501, vyw3001, ty_Int) -> new_esEs15(vyw501, vyw3001) 25.19/10.95 new_ltEs14(EQ, LT) -> False 25.19/10.95 new_ltEs10(vyw4612, vyw4812, ty_Int) -> new_ltEs12(vyw4612, vyw4812) 25.19/10.95 new_ltEs5(False, True) -> True 25.19/10.95 new_ltEs18(Right(vyw4610), Right(vyw4810), bed, app(ty_Ratio, cbd)) -> new_ltEs17(vyw4610, vyw4810, cbd) 25.19/10.95 new_compare110(vyw460, vyw480, True, ha, hb) -> LT 25.19/10.95 new_esEs8(vyw500, vyw3000, app(ty_Ratio, bha)) -> new_esEs17(vyw500, vyw3000, bha) 25.19/10.95 new_compare11(vyw84, vyw85, vyw86, vyw87, True, cad, cae) -> LT 25.19/10.95 new_lt9(vyw4611, vyw4811, app(app(ty_Either, dg), dh)) -> new_lt18(vyw4611, vyw4811, dg, dh) 25.19/10.95 new_esEs26(vyw501, vyw3001, ty_Double) -> new_esEs14(vyw501, vyw3001) 25.19/10.95 new_esEs29(vyw4610, vyw4810, ty_Char) -> new_esEs13(vyw4610, vyw4810) 25.19/10.95 new_lt8(vyw4610, vyw4810, app(app(app(ty_@3, bc), bd), be)) -> new_lt6(vyw4610, vyw4810, bc, bd, be) 25.19/10.95 new_lt21(vyw4610, vyw4810, ty_@0) -> new_lt13(vyw4610, vyw4810) 25.19/10.95 new_esEs26(vyw501, vyw3001, ty_Float) -> new_esEs18(vyw501, vyw3001) 25.19/10.95 new_ltEs18(Right(vyw4610), Right(vyw4810), bed, app(app(ty_Either, bfd), bfe)) -> new_ltEs18(vyw4610, vyw4810, bfd, bfe) 25.19/10.95 new_primCmpNat0(Zero, Succ(vyw48000)) -> LT 25.19/10.95 new_lt10(vyw460, vyw480, fb) -> new_esEs11(new_compare0(vyw460, vyw480, fb), LT) 25.19/10.95 new_esEs21(vyw4611, vyw4811, ty_Ordering) -> new_esEs11(vyw4611, vyw4811) 25.19/10.95 new_esEs21(vyw4611, vyw4811, app(app(ty_@2, dd), de)) -> new_esEs5(vyw4611, vyw4811, dd, de) 25.19/10.95 new_compare8(vyw460, vyw480) -> new_compare28(vyw460, vyw480, new_esEs10(vyw460, vyw480)) 25.19/10.95 new_compare9(Float(vyw4600, Pos(vyw46010)), Float(vyw4800, Neg(vyw48010))) -> new_compare12(new_sr(vyw4600, Pos(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) 25.19/10.95 new_compare9(Float(vyw4600, Neg(vyw46010)), Float(vyw4800, Pos(vyw48010))) -> new_compare12(new_sr(vyw4600, Neg(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) 25.19/10.95 new_esEs7(Right(vyw500), Right(vyw3000), chd, ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.95 new_esEs29(vyw4610, vyw4810, app(app(app(ty_@3, he), hf), hg)) -> new_esEs4(vyw4610, vyw4810, he, hf, hg) 25.19/10.95 new_esEs21(vyw4611, vyw4811, ty_Int) -> new_esEs15(vyw4611, vyw4811) 25.19/10.95 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Double) -> new_ltEs13(vyw4610, vyw4810) 25.19/10.95 new_lt8(vyw4610, vyw4810, ty_Ordering) -> new_lt7(vyw4610, vyw4810) 25.19/10.95 new_esEs7(Left(vyw500), Left(vyw3000), ty_Double, cga) -> new_esEs14(vyw500, vyw3000) 25.19/10.95 new_primCompAux1(vyw4600, vyw4800, vyw99, fb) -> new_primCompAux0(vyw99, new_compare31(vyw4600, vyw4800, fb)) 25.19/10.95 new_esEs25(vyw500, vyw3000, ty_Ordering) -> new_esEs11(vyw500, vyw3000) 25.19/10.95 new_esEs6(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs11(vyw500, vyw3000) 25.19/10.95 new_lt9(vyw4611, vyw4811, app(app(ty_@2, dd), de)) -> new_lt14(vyw4611, vyw4811, dd, de) 25.19/10.95 new_compare9(Float(vyw4600, Neg(vyw46010)), Float(vyw4800, Neg(vyw48010))) -> new_compare12(new_sr(vyw4600, Neg(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) 25.19/10.95 new_ltEs8(vyw461, vyw481) -> new_fsEs(new_compare16(vyw461, vyw481)) 25.19/10.95 new_primCmpNat0(Succ(vyw46000), Zero) -> GT 25.19/10.95 new_esEs9(vyw501, vyw3001, app(ty_[], bhc)) -> new_esEs12(vyw501, vyw3001, bhc) 25.19/10.95 new_esEs21(vyw4611, vyw4811, ty_@0) -> new_esEs19(vyw4611, vyw4811) 25.19/10.95 new_ltEs18(Left(vyw4610), Left(vyw4810), app(app(ty_Either, beb), bec), bde) -> new_ltEs18(vyw4610, vyw4810, beb, bec) 25.19/10.95 new_ltEs19(vyw461, vyw481, ty_Char) -> new_ltEs7(vyw461, vyw481) 25.19/10.95 new_pePe(False, vyw104) -> vyw104 25.19/10.95 new_compare18(vyw84, vyw85, vyw86, vyw87, False, vyw89, cad, cae) -> new_compare11(vyw84, vyw85, vyw86, vyw87, vyw89, cad, cae) 25.19/10.95 new_compare19(Double(vyw4600, Pos(vyw46010)), Double(vyw4800, Neg(vyw48010))) -> new_compare12(new_sr(vyw4600, Pos(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) 25.19/10.95 new_compare19(Double(vyw4600, Neg(vyw46010)), Double(vyw4800, Pos(vyw48010))) -> new_compare12(new_sr(vyw4600, Neg(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) 25.19/10.95 new_esEs7(Right(vyw500), Right(vyw3000), chd, ty_Float) -> new_esEs18(vyw500, vyw3000) 25.19/10.95 new_ltEs17(vyw461, vyw481, cbg) -> new_fsEs(new_compare29(vyw461, vyw481, cbg)) 25.19/10.95 new_esEs6(Just(vyw500), Just(vyw3000), app(app(ty_Either, dch), dda)) -> new_esEs7(vyw500, vyw3000, dch, dda) 25.19/10.95 new_esEs6(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.95 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Int) -> new_ltEs12(vyw4610, vyw4810) 25.19/10.95 new_lt9(vyw4611, vyw4811, ty_Bool) -> new_lt5(vyw4611, vyw4811) 25.19/10.95 new_esEs26(vyw501, vyw3001, app(app(ty_@2, cea), ceb)) -> new_esEs5(vyw501, vyw3001, cea, ceb) 25.19/10.95 new_ltEs15(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), bag, hh) -> new_pePe(new_lt21(vyw4610, vyw4810, bag), new_asAs(new_esEs29(vyw4610, vyw4810, bag), new_ltEs20(vyw4611, vyw4811, hh))) 25.19/10.95 new_esEs23(vyw501, vyw3001, ty_Int) -> new_esEs15(vyw501, vyw3001) 25.19/10.95 new_esEs9(vyw501, vyw3001, app(app(ty_@2, bhf), bhg)) -> new_esEs5(vyw501, vyw3001, bhf, bhg) 25.19/10.95 new_compare10(vyw460, vyw480, False, gh) -> GT 25.19/10.95 new_ltEs7(vyw461, vyw481) -> new_fsEs(new_compare7(vyw461, vyw481)) 25.19/10.95 new_lt21(vyw4610, vyw4810, ty_Float) -> new_lt19(vyw4610, vyw4810) 25.19/10.95 new_compare23(vyw46, vyw48, True, hc, gg) -> EQ 25.19/10.95 new_lt21(vyw4610, vyw4810, ty_Double) -> new_lt12(vyw4610, vyw4810) 25.19/10.95 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 25.19/10.95 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 25.19/10.95 new_ltEs20(vyw4611, vyw4811, ty_Integer) -> new_ltEs16(vyw4611, vyw4811) 25.19/10.95 new_esEs24(vyw460, vyw480, ty_Char) -> new_esEs13(vyw460, vyw480) 25.19/10.95 new_compare24(vyw460, vyw480, True, gh) -> EQ 25.19/10.95 new_ltEs19(vyw461, vyw481, ty_Ordering) -> new_ltEs14(vyw461, vyw481) 25.19/10.95 new_esEs26(vyw501, vyw3001, app(ty_Ratio, cef)) -> new_esEs17(vyw501, vyw3001, cef) 25.19/10.95 new_esEs7(Right(vyw500), Right(vyw3000), chd, ty_Bool) -> new_esEs10(vyw500, vyw3000) 25.19/10.95 new_esEs9(vyw501, vyw3001, app(ty_Ratio, cac)) -> new_esEs17(vyw501, vyw3001, cac) 25.19/10.95 new_lt19(vyw460, vyw480) -> new_esEs11(new_compare9(vyw460, vyw480), LT) 25.19/10.95 new_esEs6(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs4(vyw500, vyw3000, ddd, dde, ddf) 25.19/10.95 new_lt9(vyw4611, vyw4811, ty_Ordering) -> new_lt7(vyw4611, vyw4811) 25.19/10.95 new_ltEs14(EQ, GT) -> True 25.19/10.95 new_esEs10(False, False) -> True 25.19/10.95 new_ltEs14(GT, EQ) -> False 25.19/10.95 new_fsEs(vyw90) -> new_not(new_esEs11(vyw90, GT)) 25.19/10.95 new_lt21(vyw4610, vyw4810, app(ty_Ratio, dcb)) -> new_lt17(vyw4610, vyw4810, dcb) 25.19/10.95 new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.19/10.95 new_esEs19(@0, @0) -> True 25.19/10.95 new_primCmpInt(Neg(Zero), Pos(Succ(vyw48000))) -> LT 25.19/10.95 new_esEs28(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.95 new_lt17(vyw460, vyw480, cbe) -> new_esEs11(new_compare29(vyw460, vyw480, cbe), LT) 25.19/10.95 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Int, bde) -> new_ltEs12(vyw4610, vyw4810) 25.19/10.95 new_primMulInt(Pos(vyw5010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw5010, vyw30000)) 25.19/10.95 new_ltEs14(LT, GT) -> True 25.19/10.95 new_esEs7(Left(vyw500), Left(vyw3000), app(app(ty_Either, cgd), cge), cga) -> new_esEs7(vyw500, vyw3000, cgd, cge) 25.19/10.95 new_lt8(vyw4610, vyw4810, ty_Integer) -> new_lt16(vyw4610, vyw4810) 25.19/10.95 new_ltEs14(GT, GT) -> True 25.19/10.95 new_lt9(vyw4611, vyw4811, ty_Double) -> new_lt12(vyw4611, vyw4811) 25.19/10.95 new_compare10(vyw460, vyw480, True, gh) -> LT 25.19/10.95 new_esEs9(vyw501, vyw3001, ty_Float) -> new_esEs18(vyw501, vyw3001) 25.19/10.95 new_esEs24(vyw460, vyw480, app(ty_Maybe, gh)) -> new_esEs6(vyw460, vyw480, gh) 25.19/10.95 new_esEs25(vyw500, vyw3000, ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.95 new_primMulNat0(Succ(vyw50100), Zero) -> Zero 25.19/10.95 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 25.19/10.95 new_esEs9(vyw501, vyw3001, ty_Bool) -> new_esEs10(vyw501, vyw3001) 25.19/10.95 new_lt13(vyw460, vyw480) -> new_esEs11(new_compare16(vyw460, vyw480), LT) 25.19/10.95 new_esEs25(vyw500, vyw3000, app(app(ty_Either, cce), ccf)) -> new_esEs7(vyw500, vyw3000, cce, ccf) 25.19/10.95 new_esEs26(vyw501, vyw3001, app(ty_[], cdf)) -> new_esEs12(vyw501, vyw3001, cdf) 25.19/10.95 new_primPlusNat1(Succ(vyw750), vyw300000) -> Succ(Succ(new_primPlusNat0(vyw750, vyw300000))) 25.19/10.95 new_ltEs5(True, False) -> False 25.19/10.95 new_compare28(vyw460, vyw480, False) -> new_compare14(vyw460, vyw480, new_ltEs5(vyw460, vyw480)) 25.19/10.95 new_ltEs18(Right(vyw4610), Right(vyw4810), bed, ty_@0) -> new_ltEs8(vyw4610, vyw4810) 25.19/10.95 new_esEs18(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs15(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.19/10.95 new_ltEs10(vyw4612, vyw4812, app(app(ty_Either, eh), fa)) -> new_ltEs18(vyw4612, vyw4812, eh, fa) 25.19/10.95 new_ltEs18(Right(vyw4610), Right(vyw4810), bed, ty_Integer) -> new_ltEs16(vyw4610, vyw4810) 25.19/10.95 new_lt8(vyw4610, vyw4810, ty_Double) -> new_lt12(vyw4610, vyw4810) 25.19/10.95 new_primPlusNat0(Succ(vyw7500), Zero) -> Succ(vyw7500) 25.19/10.95 new_primPlusNat0(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 25.19/10.95 new_lt5(vyw460, vyw480) -> new_esEs11(new_compare8(vyw460, vyw480), LT) 25.19/10.95 new_esEs11(LT, LT) -> True 25.19/10.95 new_esEs21(vyw4611, vyw4811, app(app(app(ty_@3, cg), da), db)) -> new_esEs4(vyw4611, vyw4811, cg, da, db) 25.19/10.95 new_primPlusNat1(Zero, vyw300000) -> Succ(vyw300000) 25.19/10.95 new_esEs24(vyw460, vyw480, app(ty_[], fb)) -> new_esEs12(vyw460, vyw480, fb) 25.19/10.95 new_lt8(vyw4610, vyw4810, ty_@0) -> new_lt13(vyw4610, vyw4810) 25.19/10.95 new_ltEs19(vyw461, vyw481, ty_Integer) -> new_ltEs16(vyw461, vyw481) 25.19/10.95 new_ltEs10(vyw4612, vyw4812, ty_Float) -> new_ltEs6(vyw4612, vyw4812) 25.19/10.95 new_ltEs18(Left(vyw4610), Left(vyw4810), app(app(app(ty_@3, bdb), bdc), bdd), bde) -> new_ltEs9(vyw4610, vyw4810, bdb, bdc, bdd) 25.19/10.95 new_esEs6(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs19(vyw500, vyw3000) 25.19/10.95 new_ltEs4(Just(vyw4610), Just(vyw4810), app(app(ty_Either, bch), bda)) -> new_ltEs18(vyw4610, vyw4810, bch, bda) 25.19/10.95 new_esEs20(vyw4610, vyw4810, app(app(app(ty_@3, bc), bd), be)) -> new_esEs4(vyw4610, vyw4810, bc, bd, be) 25.19/10.95 new_ltEs10(vyw4612, vyw4812, ty_Integer) -> new_ltEs16(vyw4612, vyw4812) 25.19/10.95 new_compare29(:%(vyw4600, vyw4601), :%(vyw4800, vyw4801), ty_Integer) -> new_compare17(new_sr0(vyw4600, vyw4801), new_sr0(vyw4800, vyw4601)) 25.19/10.95 new_ltEs19(vyw461, vyw481, app(app(app(ty_@3, cf), bf), bg)) -> new_ltEs9(vyw461, vyw481, cf, bf, bg) 25.19/10.95 new_esEs27(vyw502, vyw3002, ty_Char) -> new_esEs13(vyw502, vyw3002) 25.19/10.95 new_lt8(vyw4610, vyw4810, app(ty_Maybe, cc)) -> new_lt15(vyw4610, vyw4810, cc) 25.19/10.95 new_esEs24(vyw460, vyw480, ty_Bool) -> new_esEs10(vyw460, vyw480) 25.19/10.95 new_lt7(vyw460, vyw480) -> new_esEs11(new_compare15(vyw460, vyw480), LT) 25.19/10.95 new_esEs25(vyw500, vyw3000, app(ty_[], ccd)) -> new_esEs12(vyw500, vyw3000, ccd) 25.19/10.95 new_esEs24(vyw460, vyw480, ty_Float) -> new_esEs18(vyw460, vyw480) 25.19/10.95 new_lt4(vyw460, vyw480) -> new_esEs11(new_compare7(vyw460, vyw480), LT) 25.19/10.95 new_lt9(vyw4611, vyw4811, app(ty_Maybe, df)) -> new_lt15(vyw4611, vyw4811, df) 25.19/10.95 new_ltEs19(vyw461, vyw481, ty_Float) -> new_ltEs6(vyw461, vyw481) 25.19/10.95 new_lt9(vyw4611, vyw4811, ty_@0) -> new_lt13(vyw4611, vyw4811) 25.19/10.95 new_ltEs20(vyw4611, vyw4811, ty_Double) -> new_ltEs13(vyw4611, vyw4811) 25.19/10.95 new_ltEs18(Right(vyw4610), Right(vyw4810), bed, ty_Float) -> new_ltEs6(vyw4610, vyw4810) 25.19/10.95 new_esEs9(vyw501, vyw3001, app(ty_Maybe, bhb)) -> new_esEs6(vyw501, vyw3001, bhb) 25.19/10.95 new_esEs28(vyw500, vyw3000, ty_Double) -> new_esEs14(vyw500, vyw3000) 25.19/10.95 new_lt9(vyw4611, vyw4811, ty_Integer) -> new_lt16(vyw4611, vyw4811) 25.19/10.95 new_esEs7(Right(vyw500), Right(vyw3000), chd, ty_@0) -> new_esEs19(vyw500, vyw3000) 25.19/10.95 new_lt14(vyw460, vyw480, ge, gf) -> new_esEs11(new_compare6(vyw460, vyw480, ge, gf), LT) 25.19/10.95 new_compare31(vyw4600, vyw4800, ty_Ordering) -> new_compare15(vyw4600, vyw4800) 25.19/10.95 new_esEs24(vyw460, vyw480, app(ty_Ratio, cbe)) -> new_esEs17(vyw460, vyw480, cbe) 25.19/10.95 new_esEs6(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs18(vyw500, vyw3000) 25.19/10.95 new_ltEs18(Right(vyw4610), Right(vyw4810), bed, ty_Double) -> new_ltEs13(vyw4610, vyw4810) 25.19/10.95 new_ltEs20(vyw4611, vyw4811, ty_Float) -> new_ltEs6(vyw4611, vyw4811) 25.19/10.95 new_ltEs10(vyw4612, vyw4812, app(app(ty_@2, ee), ef)) -> new_ltEs15(vyw4612, vyw4812, ee, ef) 25.19/10.95 new_esEs5(@2(vyw500, vyw501), @2(vyw3000, vyw3001), bff, bfg) -> new_asAs(new_esEs8(vyw500, vyw3000, bff), new_esEs9(vyw501, vyw3001, bfg)) 25.19/10.95 new_primMulInt(Neg(vyw5010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw5010, vyw30000)) 25.19/10.95 new_primCmpInt(Pos(Zero), Pos(Succ(vyw48000))) -> new_primCmpNat0(Zero, Succ(vyw48000)) 25.19/10.95 new_esEs29(vyw4610, vyw4810, ty_Double) -> new_esEs14(vyw4610, vyw4810) 25.19/10.95 new_ltEs4(Just(vyw4610), Just(vyw4810), app(app(ty_@2, bce), bcf)) -> new_ltEs15(vyw4610, vyw4810, bce, bcf) 25.19/10.95 new_esEs6(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs10(vyw500, vyw3000) 25.19/10.95 new_compare11(vyw84, vyw85, vyw86, vyw87, False, cad, cae) -> GT 25.19/10.95 new_esEs6(Just(vyw500), Just(vyw3000), app(ty_Maybe, dcf)) -> new_esEs6(vyw500, vyw3000, dcf) 25.19/10.95 new_esEs6(Nothing, Just(vyw3000), dce) -> False 25.19/10.95 new_esEs6(Just(vyw500), Nothing, dce) -> False 25.19/10.95 new_lt20(vyw460, vyw480, app(ty_Ratio, cbe)) -> new_lt17(vyw460, vyw480, cbe) 25.19/10.95 new_ltEs19(vyw461, vyw481, ty_@0) -> new_ltEs8(vyw461, vyw481) 25.19/10.95 new_esEs6(Nothing, Nothing, dce) -> True 25.19/10.95 new_ltEs19(vyw461, vyw481, ty_Double) -> new_ltEs13(vyw461, vyw481) 25.19/10.95 new_esEs24(vyw460, vyw480, app(app(ty_@2, ge), gf)) -> new_esEs5(vyw460, vyw480, ge, gf) 25.19/10.95 new_esEs24(vyw460, vyw480, app(app(ty_Either, ha), hb)) -> new_esEs7(vyw460, vyw480, ha, hb) 25.19/10.95 new_esEs9(vyw501, vyw3001, ty_@0) -> new_esEs19(vyw501, vyw3001) 25.19/10.95 new_esEs7(Left(vyw500), Left(vyw3000), ty_Char, cga) -> new_esEs13(vyw500, vyw3000) 25.19/10.95 new_esEs29(vyw4610, vyw4810, ty_Integer) -> new_esEs16(vyw4610, vyw4810) 25.19/10.95 new_esEs8(vyw500, vyw3000, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs4(vyw500, vyw3000, bgf, bgg, bgh) 25.19/10.95 new_lt20(vyw460, vyw480, ty_Float) -> new_lt19(vyw460, vyw480) 25.19/10.95 new_esEs26(vyw501, vyw3001, ty_Char) -> new_esEs13(vyw501, vyw3001) 25.19/10.95 new_lt9(vyw4611, vyw4811, ty_Char) -> new_lt4(vyw4611, vyw4811) 25.19/10.95 new_compare112(vyw460, vyw480, True) -> LT 25.19/10.95 new_compare31(vyw4600, vyw4800, app(app(app(ty_@3, fc), fd), ff)) -> new_compare13(vyw4600, vyw4800, fc, fd, ff) 25.19/10.95 new_ltEs14(GT, LT) -> False 25.19/10.95 new_esEs25(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.95 new_esEs24(vyw460, vyw480, ty_Int) -> new_esEs15(vyw460, vyw480) 25.19/10.95 new_lt15(vyw460, vyw480, gh) -> new_esEs11(new_compare30(vyw460, vyw480, gh), LT) 25.19/10.95 new_esEs27(vyw502, vyw3002, app(app(ty_@2, cfc), cfd)) -> new_esEs5(vyw502, vyw3002, cfc, cfd) 25.19/10.95 new_esEs26(vyw501, vyw3001, app(app(app(ty_@3, cec), ced), cee)) -> new_esEs4(vyw501, vyw3001, cec, ced, cee) 25.19/10.95 new_esEs8(vyw500, vyw3000, ty_Float) -> new_esEs18(vyw500, vyw3000) 25.19/10.95 new_primMulInt(Pos(vyw5010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw5010, vyw30000)) 25.19/10.95 new_primMulInt(Neg(vyw5010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw5010, vyw30000)) 25.19/10.95 new_ltEs20(vyw4611, vyw4811, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs9(vyw4611, vyw4811, bah, bba, bbb) 25.19/10.95 new_esEs8(vyw500, vyw3000, ty_Bool) -> new_esEs10(vyw500, vyw3000) 25.19/10.95 new_esEs26(vyw501, vyw3001, app(app(ty_Either, cdg), cdh)) -> new_esEs7(vyw501, vyw3001, cdg, cdh) 25.19/10.95 new_esEs27(vyw502, vyw3002, app(ty_Ratio, cfh)) -> new_esEs17(vyw502, vyw3002, cfh) 25.19/10.95 new_ltEs20(vyw4611, vyw4811, ty_@0) -> new_ltEs8(vyw4611, vyw4811) 25.19/10.95 new_compare28(vyw460, vyw480, True) -> EQ 25.19/10.95 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Ordering) -> new_ltEs14(vyw4610, vyw4810) 25.19/10.95 new_compare31(vyw4600, vyw4800, app(ty_[], fg)) -> new_compare0(vyw4600, vyw4800, fg) 25.19/10.95 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Bool) -> new_ltEs5(vyw4610, vyw4810) 25.19/10.95 new_esEs17(:%(vyw500, vyw501), :%(vyw3000, vyw3001), cbf) -> new_asAs(new_esEs22(vyw500, vyw3000, cbf), new_esEs23(vyw501, vyw3001, cbf)) 25.19/10.95 new_esEs7(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, cgh), cha), chb), cga) -> new_esEs4(vyw500, vyw3000, cgh, cha, chb) 25.19/10.95 new_compare14(vyw460, vyw480, False) -> GT 25.19/10.95 new_esEs24(vyw460, vyw480, ty_Ordering) -> new_esEs11(vyw460, vyw480) 25.19/10.95 new_lt21(vyw4610, vyw4810, ty_Int) -> new_lt11(vyw4610, vyw4810) 25.19/10.95 new_compare111(vyw460, vyw480, False, h, ba, bb) -> GT 25.19/10.95 new_sr0(Integer(vyw46000), Integer(vyw48010)) -> Integer(new_primMulInt(vyw46000, vyw48010)) 25.19/10.95 new_esEs24(vyw460, vyw480, ty_Double) -> new_esEs14(vyw460, vyw480) 25.19/10.95 new_ltEs5(False, False) -> True 25.19/10.95 new_lt8(vyw4610, vyw4810, app(ty_[], bh)) -> new_lt10(vyw4610, vyw4810, bh) 25.19/10.95 new_esEs6(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs13(vyw500, vyw3000) 25.19/10.95 new_esEs29(vyw4610, vyw4810, ty_Bool) -> new_esEs10(vyw4610, vyw4810) 25.19/10.95 new_ltEs6(vyw461, vyw481) -> new_fsEs(new_compare9(vyw461, vyw481)) 25.19/10.95 new_compare9(Float(vyw4600, Pos(vyw46010)), Float(vyw4800, Pos(vyw48010))) -> new_compare12(new_sr(vyw4600, Pos(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) 25.19/10.95 new_esEs25(vyw500, vyw3000, ty_Float) -> new_esEs18(vyw500, vyw3000) 25.19/10.95 new_lt9(vyw4611, vyw4811, app(ty_Ratio, cag)) -> new_lt17(vyw4611, vyw4811, cag) 25.19/10.95 new_esEs20(vyw4610, vyw4810, ty_Float) -> new_esEs18(vyw4610, vyw4810) 25.19/10.95 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Bool, bde) -> new_ltEs5(vyw4610, vyw4810) 25.19/10.95 new_ltEs19(vyw461, vyw481, app(app(ty_@2, bag), hh)) -> new_ltEs15(vyw461, vyw481, bag, hh) 25.19/10.95 new_esEs6(Just(vyw500), Just(vyw3000), app(app(ty_@2, ddb), ddc)) -> new_esEs5(vyw500, vyw3000, ddb, ddc) 25.19/10.95 new_compare0([], :(vyw4800, vyw4801), fb) -> LT 25.19/10.95 new_asAs(True, vyw56) -> vyw56 25.19/10.95 new_esEs25(vyw500, vyw3000, ty_Bool) -> new_esEs10(vyw500, vyw3000) 25.19/10.95 new_esEs21(vyw4611, vyw4811, app(ty_Maybe, df)) -> new_esEs6(vyw4611, vyw4811, df) 25.19/10.95 new_lt8(vyw4610, vyw4810, ty_Int) -> new_lt11(vyw4610, vyw4810) 25.19/10.95 new_esEs4(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cbh, cca, ccb) -> new_asAs(new_esEs25(vyw500, vyw3000, cbh), new_asAs(new_esEs26(vyw501, vyw3001, cca), new_esEs27(vyw502, vyw3002, ccb))) 25.19/10.95 new_esEs9(vyw501, vyw3001, app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs4(vyw501, vyw3001, bhh, caa, cab) 25.19/10.95 new_ltEs4(Nothing, Just(vyw4810), cba) -> True 25.19/10.95 new_esEs28(vyw500, vyw3000, ty_Ordering) -> new_esEs11(vyw500, vyw3000) 25.19/10.95 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Ordering, bde) -> new_ltEs14(vyw4610, vyw4810) 25.19/10.95 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Float) -> new_ltEs6(vyw4610, vyw4810) 25.19/10.95 new_esEs28(vyw500, vyw3000, ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.95 new_lt12(vyw460, vyw480) -> new_esEs11(new_compare19(vyw460, vyw480), LT) 25.19/10.95 new_esEs6(Just(vyw500), Just(vyw3000), app(ty_Ratio, ddg)) -> new_esEs17(vyw500, vyw3000, ddg) 25.19/10.95 new_ltEs20(vyw4611, vyw4811, app(app(ty_@2, bbd), bbe)) -> new_ltEs15(vyw4611, vyw4811, bbd, bbe) 25.19/10.95 new_esEs7(Left(vyw500), Left(vyw3000), ty_@0, cga) -> new_esEs19(vyw500, vyw3000) 25.19/10.95 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Float, bde) -> new_ltEs6(vyw4610, vyw4810) 25.19/10.95 new_compare31(vyw4600, vyw4800, ty_@0) -> new_compare16(vyw4600, vyw4800) 25.19/10.95 new_primCmpInt(Pos(Succ(vyw46000)), Pos(vyw4800)) -> new_primCmpNat0(Succ(vyw46000), vyw4800) 25.19/10.95 new_lt20(vyw460, vyw480, app(ty_[], fb)) -> new_lt10(vyw460, vyw480, fb) 25.19/10.95 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Integer) -> new_ltEs16(vyw4610, vyw4810) 25.19/10.95 new_compare0([], [], fb) -> EQ 25.19/10.95 new_sr(vyw501, vyw3000) -> new_primMulInt(vyw501, vyw3000) 25.19/10.95 new_esEs28(vyw500, vyw3000, ty_Char) -> new_esEs13(vyw500, vyw3000) 25.19/10.95 new_esEs8(vyw500, vyw3000, app(ty_Maybe, bfh)) -> new_esEs6(vyw500, vyw3000, bfh) 25.19/10.95 new_esEs21(vyw4611, vyw4811, app(app(ty_Either, dg), dh)) -> new_esEs7(vyw4611, vyw4811, dg, dh) 25.19/10.95 new_esEs20(vyw4610, vyw4810, ty_Ordering) -> new_esEs11(vyw4610, vyw4810) 25.19/10.95 new_primMulNat0(Zero, Zero) -> Zero 25.19/10.95 new_ltEs18(Right(vyw4610), Right(vyw4810), bed, app(app(app(ty_@3, bee), bef), beg)) -> new_ltEs9(vyw4610, vyw4810, bee, bef, beg) 25.19/10.95 new_compare16(@0, @0) -> EQ 25.19/10.95 new_lt8(vyw4610, vyw4810, ty_Float) -> new_lt19(vyw4610, vyw4810) 25.19/10.95 new_esEs8(vyw500, vyw3000, ty_Double) -> new_esEs14(vyw500, vyw3000) 25.19/10.95 new_lt16(vyw460, vyw480) -> new_esEs11(new_compare17(vyw460, vyw480), LT) 25.19/10.95 new_esEs20(vyw4610, vyw4810, ty_Int) -> new_esEs15(vyw4610, vyw4810) 25.19/10.95 new_lt21(vyw4610, vyw4810, app(ty_[], baa)) -> new_lt10(vyw4610, vyw4810, baa) 25.19/10.95 new_ltEs18(Right(vyw4610), Right(vyw4810), bed, app(ty_Maybe, bfc)) -> new_ltEs4(vyw4610, vyw4810, bfc) 25.19/10.95 new_compare19(Double(vyw4600, Neg(vyw46010)), Double(vyw4800, Neg(vyw48010))) -> new_compare12(new_sr(vyw4600, Neg(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) 25.19/10.95 new_esEs20(vyw4610, vyw4810, ty_Integer) -> new_esEs16(vyw4610, vyw4810) 25.19/10.95 new_esEs7(Left(vyw500), Left(vyw3000), app(app(ty_@2, cgf), cgg), cga) -> new_esEs5(vyw500, vyw3000, cgf, cgg) 25.19/10.95 new_compare31(vyw4600, vyw4800, app(ty_Ratio, dcd)) -> new_compare29(vyw4600, vyw4800, dcd) 25.19/10.95 new_esEs6(Just(vyw500), Just(vyw3000), app(ty_[], dcg)) -> new_esEs12(vyw500, vyw3000, dcg) 25.19/10.95 new_esEs9(vyw501, vyw3001, ty_Integer) -> new_esEs16(vyw501, vyw3001) 25.19/10.95 new_ltEs10(vyw4612, vyw4812, ty_@0) -> new_ltEs8(vyw4612, vyw4812) 25.19/10.95 new_esEs9(vyw501, vyw3001, app(app(ty_Either, bhd), bhe)) -> new_esEs7(vyw501, vyw3001, bhd, bhe) 25.19/10.95 new_esEs7(Left(vyw500), Left(vyw3000), app(ty_Maybe, cgb), cga) -> new_esEs6(vyw500, vyw3000, cgb) 25.19/10.95 new_esEs26(vyw501, vyw3001, app(ty_Maybe, cde)) -> new_esEs6(vyw501, vyw3001, cde) 25.19/10.95 new_esEs7(Right(vyw500), Right(vyw3000), chd, ty_Double) -> new_esEs14(vyw500, vyw3000) 25.19/10.95 new_esEs21(vyw4611, vyw4811, ty_Bool) -> new_esEs10(vyw4611, vyw4811) 25.19/10.95 new_ltEs10(vyw4612, vyw4812, ty_Double) -> new_ltEs13(vyw4612, vyw4812) 25.19/10.95 new_primCompAux0(vyw109, EQ) -> vyw109 25.19/10.95 new_esEs8(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.95 new_esEs20(vyw4610, vyw4810, ty_Double) -> new_esEs14(vyw4610, vyw4810) 25.19/10.95 new_esEs7(Right(vyw500), Right(vyw3000), chd, ty_Ordering) -> new_esEs11(vyw500, vyw3000) 25.19/10.95 new_ltEs20(vyw4611, vyw4811, ty_Char) -> new_ltEs7(vyw4611, vyw4811) 25.19/10.95 new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False 25.19/10.95 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 25.19/10.95 new_ltEs16(vyw461, vyw481) -> new_fsEs(new_compare17(vyw461, vyw481)) 25.19/10.95 new_esEs25(vyw500, vyw3000, app(ty_Maybe, ccc)) -> new_esEs6(vyw500, vyw3000, ccc) 25.19/10.95 new_esEs20(vyw4610, vyw4810, ty_Bool) -> new_esEs10(vyw4610, vyw4810) 25.19/10.95 new_esEs27(vyw502, vyw3002, app(ty_[], ceh)) -> new_esEs12(vyw502, vyw3002, ceh) 25.19/10.95 new_ltEs20(vyw4611, vyw4811, app(app(ty_Either, bbg), bbh)) -> new_ltEs18(vyw4611, vyw4811, bbg, bbh) 25.19/10.95 new_esEs11(GT, GT) -> True 25.19/10.95 new_esEs21(vyw4611, vyw4811, ty_Float) -> new_esEs18(vyw4611, vyw4811) 25.19/10.95 new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.19/10.95 new_compare31(vyw4600, vyw4800, ty_Float) -> new_compare9(vyw4600, vyw4800) 25.19/10.95 new_esEs11(EQ, EQ) -> True 25.19/10.95 new_esEs8(vyw500, vyw3000, ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.95 new_compare31(vyw4600, vyw4800, ty_Bool) -> new_compare8(vyw4600, vyw4800) 25.19/10.95 new_ltEs10(vyw4612, vyw4812, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs9(vyw4612, vyw4812, ea, eb, ec) 25.19/10.95 new_esEs20(vyw4610, vyw4810, app(ty_Maybe, cc)) -> new_esEs6(vyw4610, vyw4810, cc) 25.19/10.95 new_esEs7(Right(vyw500), Right(vyw3000), chd, app(app(ty_@2, daa), dab)) -> new_esEs5(vyw500, vyw3000, daa, dab) 25.19/10.95 new_esEs7(Right(vyw500), Right(vyw3000), chd, app(app(ty_Either, chg), chh)) -> new_esEs7(vyw500, vyw3000, chg, chh) 25.19/10.95 new_lt9(vyw4611, vyw4811, ty_Int) -> new_lt11(vyw4611, vyw4811) 25.19/10.95 new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False 25.19/10.95 new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False 25.19/10.95 new_esEs7(Right(vyw500), Right(vyw3000), chd, app(ty_Maybe, che)) -> new_esEs6(vyw500, vyw3000, che) 25.19/10.95 new_lt21(vyw4610, vyw4810, app(ty_Maybe, bad)) -> new_lt15(vyw4610, vyw4810, bad) 25.19/10.95 new_primCmpInt(Neg(Zero), Neg(Succ(vyw48000))) -> new_primCmpNat0(Succ(vyw48000), Zero) 25.19/10.95 new_esEs12(:(vyw500, vyw501), :(vyw3000, vyw3001), dag) -> new_asAs(new_esEs28(vyw500, vyw3000, dag), new_esEs12(vyw501, vyw3001, dag)) 25.19/10.95 new_ltEs19(vyw461, vyw481, app(app(ty_Either, bed), bde)) -> new_ltEs18(vyw461, vyw481, bed, bde) 25.19/10.95 new_ltEs18(Right(vyw4610), Right(vyw4810), bed, ty_Char) -> new_ltEs7(vyw4610, vyw4810) 25.19/10.95 new_esEs7(Right(vyw500), Right(vyw3000), chd, ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.95 new_esEs8(vyw500, vyw3000, ty_Ordering) -> new_esEs11(vyw500, vyw3000) 25.19/10.95 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.19/10.95 new_esEs21(vyw4611, vyw4811, ty_Integer) -> new_esEs16(vyw4611, vyw4811) 25.19/10.95 new_esEs14(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs15(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.19/10.95 new_compare31(vyw4600, vyw4800, ty_Char) -> new_compare7(vyw4600, vyw4800) 25.19/10.95 new_esEs7(Left(vyw500), Left(vyw3000), ty_Integer, cga) -> new_esEs16(vyw500, vyw3000) 25.19/10.95 new_ltEs10(vyw4612, vyw4812, ty_Char) -> new_ltEs7(vyw4612, vyw4812) 25.19/10.95 new_ltEs18(Right(vyw4610), Right(vyw4810), bed, ty_Int) -> new_ltEs12(vyw4610, vyw4810) 25.19/10.95 new_ltEs19(vyw461, vyw481, ty_Bool) -> new_ltEs5(vyw461, vyw481) 25.19/10.95 new_compare13(vyw460, vyw480, h, ba, bb) -> new_compare210(vyw460, vyw480, new_esEs4(vyw460, vyw480, h, ba, bb), h, ba, bb) 25.19/10.95 new_esEs13(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) 25.19/10.95 new_esEs28(vyw500, vyw3000, ty_Bool) -> new_esEs10(vyw500, vyw3000) 25.19/10.95 new_lt6(vyw460, vyw480, h, ba, bb) -> new_esEs11(new_compare13(vyw460, vyw480, h, ba, bb), LT) 25.19/10.95 new_compare26(vyw460, vyw480, ha, hb) -> new_compare27(vyw460, vyw480, new_esEs7(vyw460, vyw480, ha, hb), ha, hb) 25.19/10.95 new_ltEs13(vyw461, vyw481) -> new_fsEs(new_compare19(vyw461, vyw481)) 25.19/10.95 new_ltEs10(vyw4612, vyw4812, ty_Bool) -> new_ltEs5(vyw4612, vyw4812) 25.19/10.95 new_compare31(vyw4600, vyw4800, ty_Integer) -> new_compare17(vyw4600, vyw4800) 25.19/10.95 new_compare23(@2(vyw460, vyw461), @2(vyw480, vyw481), False, hc, gg) -> new_compare18(vyw460, vyw461, vyw480, vyw481, new_lt20(vyw460, vyw480, hc), new_asAs(new_esEs24(vyw460, vyw480, hc), new_ltEs19(vyw461, vyw481, gg)), hc, gg) 25.19/10.95 new_esEs27(vyw502, vyw3002, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs4(vyw502, vyw3002, cfe, cff, cfg) 25.19/10.95 new_lt8(vyw4610, vyw4810, app(ty_Ratio, caf)) -> new_lt17(vyw4610, vyw4810, caf) 25.19/10.95 new_esEs7(Right(vyw500), Right(vyw3000), chd, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs4(vyw500, vyw3000, dac, dad, dae) 25.19/10.95 new_not(False) -> True 25.19/10.95 new_esEs26(vyw501, vyw3001, ty_Integer) -> new_esEs16(vyw501, vyw3001) 25.19/10.95 new_esEs21(vyw4611, vyw4811, app(ty_[], dc)) -> new_esEs12(vyw4611, vyw4811, dc) 25.19/10.95 new_esEs21(vyw4611, vyw4811, ty_Double) -> new_esEs14(vyw4611, vyw4811) 25.19/10.95 new_esEs28(vyw500, vyw3000, app(ty_[], dba)) -> new_esEs12(vyw500, vyw3000, dba) 25.19/10.95 new_esEs28(vyw500, vyw3000, ty_Float) -> new_esEs18(vyw500, vyw3000) 25.19/10.95 new_esEs27(vyw502, vyw3002, app(app(ty_Either, cfa), cfb)) -> new_esEs7(vyw502, vyw3002, cfa, cfb) 25.19/10.95 new_compare0(:(vyw4600, vyw4601), [], fb) -> GT 25.19/10.95 new_primPlusNat0(Succ(vyw7500), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat0(vyw7500, vyw3000000))) 25.19/10.95 new_esEs16(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) 25.19/10.95 new_esEs27(vyw502, vyw3002, ty_Ordering) -> new_esEs11(vyw502, vyw3002) 25.19/10.95 new_esEs25(vyw500, vyw3000, ty_Double) -> new_esEs14(vyw500, vyw3000) 25.19/10.95 new_compare27(vyw460, vyw480, True, ha, hb) -> EQ 25.19/10.95 new_compare25(vyw460, vyw480, True) -> EQ 25.19/10.95 new_ltEs10(vyw4612, vyw4812, app(ty_Maybe, eg)) -> new_ltEs4(vyw4612, vyw4812, eg) 25.19/10.95 new_esEs28(vyw500, vyw3000, ty_@0) -> new_esEs19(vyw500, vyw3000) 25.19/10.95 new_compare6(vyw460, vyw480, ge, gf) -> new_compare23(vyw460, vyw480, new_esEs5(vyw460, vyw480, ge, gf), ge, gf) 25.19/10.95 new_esEs10(True, True) -> True 25.19/10.95 new_ltEs10(vyw4612, vyw4812, ty_Ordering) -> new_ltEs14(vyw4612, vyw4812) 25.19/10.95 new_lt20(vyw460, vyw480, ty_Char) -> new_lt4(vyw460, vyw480) 25.19/10.95 new_lt20(vyw460, vyw480, ty_Int) -> new_lt11(vyw460, vyw480) 25.19/10.95 new_ltEs20(vyw4611, vyw4811, app(ty_Ratio, dcc)) -> new_ltEs17(vyw4611, vyw4811, dcc) 25.19/10.95 new_esEs22(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.95 new_compare27(vyw460, vyw480, False, ha, hb) -> new_compare110(vyw460, vyw480, new_ltEs18(vyw460, vyw480, ha, hb), ha, hb) 25.19/10.95 new_lt20(vyw460, vyw480, app(ty_Maybe, gh)) -> new_lt15(vyw460, vyw480, gh) 25.19/10.95 new_lt20(vyw460, vyw480, app(app(ty_Either, ha), hb)) -> new_lt18(vyw460, vyw480, ha, hb) 25.19/10.95 new_lt21(vyw4610, vyw4810, ty_Integer) -> new_lt16(vyw4610, vyw4810) 25.19/10.95 new_esEs29(vyw4610, vyw4810, app(ty_Maybe, bad)) -> new_esEs6(vyw4610, vyw4810, bad) 25.19/10.95 new_ltEs4(Just(vyw4610), Just(vyw4810), app(ty_Ratio, cbb)) -> new_ltEs17(vyw4610, vyw4810, cbb) 25.19/10.95 new_ltEs18(Left(vyw4610), Left(vyw4810), app(ty_Maybe, bea), bde) -> new_ltEs4(vyw4610, vyw4810, bea) 25.19/10.95 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.19/10.95 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.19/10.95 new_esEs25(vyw500, vyw3000, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs4(vyw500, vyw3000, cda, cdb, cdc) 25.19/10.95 new_ltEs5(True, True) -> True 25.19/10.95 new_esEs28(vyw500, vyw3000, app(app(ty_@2, dbd), dbe)) -> new_esEs5(vyw500, vyw3000, dbd, dbe) 25.19/10.95 new_ltEs14(LT, EQ) -> True 25.19/10.95 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Integer, bde) -> new_ltEs16(vyw4610, vyw4810) 25.19/10.95 new_compare31(vyw4600, vyw4800, app(app(ty_@2, fh), ga)) -> new_compare6(vyw4600, vyw4800, fh, ga) 25.19/10.95 new_lt9(vyw4611, vyw4811, ty_Float) -> new_lt19(vyw4611, vyw4811) 25.19/10.95 new_ltEs4(Just(vyw4610), Just(vyw4810), app(ty_[], bcd)) -> new_ltEs11(vyw4610, vyw4810, bcd) 25.19/10.95 new_esEs9(vyw501, vyw3001, ty_Double) -> new_esEs14(vyw501, vyw3001) 25.19/10.95 new_ltEs18(Left(vyw4610), Right(vyw4810), bed, bde) -> True 25.19/10.95 new_esEs28(vyw500, vyw3000, app(ty_Ratio, dca)) -> new_esEs17(vyw500, vyw3000, dca) 25.19/10.95 new_esEs28(vyw500, vyw3000, app(ty_Maybe, dah)) -> new_esEs6(vyw500, vyw3000, dah) 25.19/10.95 new_esEs8(vyw500, vyw3000, ty_Char) -> new_esEs13(vyw500, vyw3000) 25.19/10.95 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.19/10.95 new_compare31(vyw4600, vyw4800, app(app(ty_Either, gc), gd)) -> new_compare26(vyw4600, vyw4800, gc, gd) 25.19/10.95 new_ltEs10(vyw4612, vyw4812, app(ty_Ratio, cah)) -> new_ltEs17(vyw4612, vyw4812, cah) 25.19/10.95 new_esEs26(vyw501, vyw3001, ty_@0) -> new_esEs19(vyw501, vyw3001) 25.19/10.95 new_esEs29(vyw4610, vyw4810, ty_Int) -> new_esEs15(vyw4610, vyw4810) 25.19/10.95 new_ltEs18(Right(vyw4610), Left(vyw4810), bed, bde) -> False 25.19/10.95 new_compare7(Char(vyw4600), Char(vyw4800)) -> new_primCmpNat0(vyw4600, vyw4800) 25.19/10.95 new_compare31(vyw4600, vyw4800, ty_Double) -> new_compare19(vyw4600, vyw4800) 25.19/10.95 new_primCmpNat0(Succ(vyw46000), Succ(vyw48000)) -> new_primCmpNat0(vyw46000, vyw48000) 25.19/10.95 new_lt21(vyw4610, vyw4810, app(app(app(ty_@3, he), hf), hg)) -> new_lt6(vyw4610, vyw4810, he, hf, hg) 25.19/10.95 new_esEs7(Right(vyw500), Right(vyw3000), chd, ty_Char) -> new_esEs13(vyw500, vyw3000) 25.19/10.95 new_lt20(vyw460, vyw480, app(app(ty_@2, ge), gf)) -> new_lt14(vyw460, vyw480, ge, gf) 25.19/10.95 new_esEs27(vyw502, vyw3002, app(ty_Maybe, ceg)) -> new_esEs6(vyw502, vyw3002, ceg) 25.19/10.95 new_ltEs12(vyw461, vyw481) -> new_fsEs(new_compare12(vyw461, vyw481)) 25.19/10.95 new_compare12(vyw460, vyw480) -> new_primCmpInt(vyw460, vyw480) 25.19/10.95 new_compare24(vyw460, vyw480, False, gh) -> new_compare10(vyw460, vyw480, new_ltEs4(vyw460, vyw480, gh), gh) 25.19/10.95 new_esEs12([], [], dag) -> True 25.19/10.95 new_ltEs10(vyw4612, vyw4812, app(ty_[], ed)) -> new_ltEs11(vyw4612, vyw4812, ed) 25.19/10.95 new_lt20(vyw460, vyw480, ty_Bool) -> new_lt5(vyw460, vyw480) 25.19/10.95 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.19/10.95 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.19/10.95 new_lt20(vyw460, vyw480, app(app(app(ty_@3, h), ba), bb)) -> new_lt6(vyw460, vyw480, h, ba, bb) 25.19/10.95 new_esEs20(vyw4610, vyw4810, ty_Char) -> new_esEs13(vyw4610, vyw4810) 25.19/10.95 new_compare19(Double(vyw4600, Pos(vyw46010)), Double(vyw4800, Pos(vyw48010))) -> new_compare12(new_sr(vyw4600, Pos(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) 25.19/10.95 new_lt21(vyw4610, vyw4810, ty_Ordering) -> new_lt7(vyw4610, vyw4810) 25.19/10.95 new_ltEs19(vyw461, vyw481, app(ty_Maybe, cba)) -> new_ltEs4(vyw461, vyw481, cba) 25.19/10.95 new_compare110(vyw460, vyw480, False, ha, hb) -> GT 25.19/10.95 new_lt20(vyw460, vyw480, ty_Integer) -> new_lt16(vyw460, vyw480) 25.19/10.95 new_lt21(vyw4610, vyw4810, app(app(ty_Either, bae), baf)) -> new_lt18(vyw4610, vyw4810, bae, baf) 25.19/10.95 new_primEqNat0(Zero, Zero) -> True 25.19/10.95 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_@0, bde) -> new_ltEs8(vyw4610, vyw4810) 25.19/10.95 new_esEs29(vyw4610, vyw4810, app(app(ty_@2, bab), bac)) -> new_esEs5(vyw4610, vyw4810, bab, bac) 25.19/10.95 new_compare31(vyw4600, vyw4800, app(ty_Maybe, gb)) -> new_compare30(vyw4600, vyw4800, gb) 25.19/10.95 new_esEs29(vyw4610, vyw4810, app(ty_Ratio, dcb)) -> new_esEs17(vyw4610, vyw4810, dcb) 25.19/10.95 new_asAs(False, vyw56) -> False 25.19/10.95 new_esEs6(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs14(vyw500, vyw3000) 25.19/10.95 new_lt11(vyw460, vyw480) -> new_esEs11(new_compare12(vyw460, vyw480), LT) 25.19/10.95 new_ltEs20(vyw4611, vyw4811, ty_Bool) -> new_ltEs5(vyw4611, vyw4811) 25.19/10.95 new_ltEs14(LT, LT) -> True 25.19/10.95 new_esEs21(vyw4611, vyw4811, ty_Char) -> new_esEs13(vyw4611, vyw4811) 25.19/10.95 new_esEs29(vyw4610, vyw4810, app(app(ty_Either, bae), baf)) -> new_esEs7(vyw4610, vyw4810, bae, baf) 25.19/10.95 new_esEs24(vyw460, vyw480, ty_Integer) -> new_esEs16(vyw460, vyw480) 25.19/10.95 new_ltEs20(vyw4611, vyw4811, app(ty_Maybe, bbf)) -> new_ltEs4(vyw4611, vyw4811, bbf) 25.19/10.95 new_esEs27(vyw502, vyw3002, ty_@0) -> new_esEs19(vyw502, vyw3002) 25.19/10.95 new_esEs29(vyw4610, vyw4810, ty_Float) -> new_esEs18(vyw4610, vyw4810) 25.19/10.95 new_lt9(vyw4611, vyw4811, app(ty_[], dc)) -> new_lt10(vyw4611, vyw4811, dc) 25.19/10.95 new_esEs7(Left(vyw500), Right(vyw3000), chd, cga) -> False 25.19/10.95 new_esEs7(Right(vyw500), Left(vyw3000), chd, cga) -> False 25.19/10.95 new_compare15(vyw460, vyw480) -> new_compare25(vyw460, vyw480, new_esEs11(vyw460, vyw480)) 25.19/10.95 new_compare25(vyw460, vyw480, False) -> new_compare112(vyw460, vyw480, new_ltEs14(vyw460, vyw480)) 25.19/10.95 new_compare18(vyw84, vyw85, vyw86, vyw87, True, vyw89, cad, cae) -> new_compare11(vyw84, vyw85, vyw86, vyw87, True, cad, cae) 25.19/10.95 new_esEs29(vyw4610, vyw4810, ty_Ordering) -> new_esEs11(vyw4610, vyw4810) 25.19/10.95 25.19/10.95 The set Q consists of the following terms: 25.19/10.95 25.19/10.95 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.19/10.95 new_esEs20(x0, x1, ty_@0) 25.19/10.95 new_esEs24(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_ltEs20(x0, x1, ty_Integer) 25.19/10.95 new_esEs27(x0, x1, ty_Double) 25.19/10.95 new_esEs24(x0, x1, ty_Integer) 25.19/10.95 new_primPlusNat0(Zero, Succ(x0)) 25.19/10.95 new_esEs21(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.19/10.95 new_compare6(x0, x1, x2, x3) 25.19/10.95 new_esEs28(x0, x1, ty_Integer) 25.19/10.95 new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.19/10.95 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.19/10.95 new_lt9(x0, x1, app(ty_[], x2)) 25.19/10.95 new_esEs21(x0, x1, ty_Integer) 25.19/10.95 new_esEs20(x0, x1, ty_Bool) 25.19/10.95 new_lt21(x0, x1, ty_Int) 25.19/10.95 new_esEs9(x0, x1, ty_Bool) 25.19/10.95 new_lt8(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_esEs8(x0, x1, ty_Bool) 25.19/10.95 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.19/10.95 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.19/10.95 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.19/10.95 new_esEs9(x0, x1, ty_Integer) 25.19/10.95 new_esEs22(x0, x1, ty_Integer) 25.19/10.95 new_esEs21(x0, x1, ty_Bool) 25.19/10.95 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_esEs8(x0, x1, ty_@0) 25.19/10.95 new_compare112(x0, x1, False) 25.19/10.95 new_esEs8(x0, x1, app(ty_[], x2)) 25.19/10.95 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_primMulNat0(Succ(x0), Succ(x1)) 25.19/10.95 new_ltEs13(x0, x1) 25.19/10.95 new_primEqInt(Pos(Zero), Pos(Zero)) 25.19/10.95 new_ltEs10(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.19/10.95 new_esEs28(x0, x1, ty_Bool) 25.19/10.95 new_ltEs4(Just(x0), Just(x1), ty_Char) 25.19/10.95 new_ltEs20(x0, x1, ty_Bool) 25.19/10.95 new_esEs26(x0, x1, ty_Double) 25.19/10.95 new_lt8(x0, x1, ty_Float) 25.19/10.95 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_ltEs5(False, True) 25.19/10.95 new_ltEs5(True, False) 25.19/10.95 new_esEs27(x0, x1, ty_Ordering) 25.19/10.95 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_ltEs14(LT, LT) 25.19/10.95 new_lt18(x0, x1, x2, x3) 25.19/10.95 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_esEs29(x0, x1, app(ty_[], x2)) 25.19/10.95 new_lt9(x0, x1, ty_Float) 25.19/10.95 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.19/10.95 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_lt10(x0, x1, x2) 25.19/10.95 new_esEs27(x0, x1, ty_Int) 25.19/10.95 new_primEqInt(Neg(Zero), Neg(Zero)) 25.19/10.95 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_ltEs4(Just(x0), Just(x1), ty_Bool) 25.19/10.95 new_lt21(x0, x1, ty_Double) 25.19/10.95 new_ltEs11(x0, x1, x2) 25.19/10.95 new_lt20(x0, x1, app(ty_[], x2)) 25.19/10.95 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_lt21(x0, x1, ty_Char) 25.19/10.95 new_esEs8(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_esEs27(x0, x1, ty_Char) 25.19/10.95 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.19/10.95 new_esEs29(x0, x1, ty_Float) 25.19/10.95 new_ltEs4(Just(x0), Just(x1), ty_Int) 25.19/10.95 new_esEs6(Nothing, Just(x0), x1) 25.19/10.95 new_lt8(x0, x1, app(ty_[], x2)) 25.19/10.95 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 25.19/10.95 new_lt8(x0, x1, ty_Integer) 25.19/10.95 new_esEs20(x0, x1, ty_Integer) 25.19/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 25.19/10.95 new_compare210(x0, x1, False, x2, x3, x4) 25.19/10.95 new_compare31(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_esEs8(x0, x1, ty_Int) 25.19/10.95 new_esEs25(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_ltEs10(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_lt12(x0, x1) 25.19/10.95 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.19/10.95 new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) 25.19/10.95 new_ltEs18(Left(x0), Right(x1), x2, x3) 25.19/10.95 new_ltEs18(Right(x0), Left(x1), x2, x3) 25.19/10.95 new_esEs10(True, True) 25.19/10.95 new_ltEs10(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_lt21(x0, x1, ty_@0) 25.19/10.95 new_esEs11(EQ, GT) 25.19/10.95 new_esEs11(GT, EQ) 25.19/10.95 new_esEs21(x0, x1, ty_@0) 25.19/10.95 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_lt8(x0, x1, ty_Bool) 25.19/10.95 new_primEqInt(Pos(Zero), Neg(Zero)) 25.19/10.95 new_primEqInt(Neg(Zero), Pos(Zero)) 25.19/10.95 new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.19/10.95 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.19/10.95 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_esEs12(:(x0, x1), [], x2) 25.19/10.95 new_primPlusNat1(Zero, x0) 25.19/10.95 new_ltEs7(x0, x1) 25.19/10.95 new_primCmpNat0(Zero, Succ(x0)) 25.19/10.95 new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.19/10.95 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 25.19/10.95 new_ltEs4(Just(x0), Just(x1), ty_@0) 25.19/10.95 new_primMulNat0(Succ(x0), Zero) 25.19/10.95 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_compare27(x0, x1, False, x2, x3) 25.19/10.95 new_compare31(x0, x1, ty_Integer) 25.19/10.95 new_esEs8(x0, x1, ty_Char) 25.19/10.95 new_lt20(x0, x1, ty_Double) 25.19/10.95 new_esEs21(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_esEs8(x0, x1, ty_Double) 25.19/10.95 new_esEs21(x0, x1, ty_Char) 25.19/10.95 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_esEs20(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_lt20(x0, x1, ty_Float) 25.19/10.95 new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.19/10.95 new_esEs27(x0, x1, ty_@0) 25.19/10.95 new_primCompAux0(x0, EQ) 25.19/10.95 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.19/10.95 new_lt19(x0, x1) 25.19/10.95 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_esEs21(x0, x1, ty_Int) 25.19/10.95 new_esEs25(x0, x1, ty_Char) 25.19/10.95 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_esEs20(x0, x1, ty_Float) 25.19/10.95 new_compare11(x0, x1, x2, x3, True, x4, x5) 25.19/10.95 new_esEs9(x0, x1, ty_Int) 25.19/10.95 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.19/10.95 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.19/10.95 new_ltEs17(x0, x1, x2) 25.19/10.95 new_ltEs19(x0, x1, ty_Float) 25.19/10.95 new_lt21(x0, x1, ty_Integer) 25.19/10.95 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.19/10.95 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_ltEs10(x0, x1, ty_Float) 25.19/10.95 new_esEs28(x0, x1, ty_Ordering) 25.19/10.95 new_esEs9(x0, x1, ty_Ordering) 25.19/10.95 new_esEs9(x0, x1, ty_Float) 25.19/10.95 new_ltEs10(x0, x1, app(ty_[], x2)) 25.19/10.95 new_ltEs20(x0, x1, ty_Int) 25.19/10.95 new_compare14(x0, x1, False) 25.19/10.95 new_esEs8(x0, x1, ty_Ordering) 25.19/10.95 new_compare23(@2(x0, x1), @2(x2, x3), False, x4, x5) 25.19/10.95 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_compare12(x0, x1) 25.19/10.95 new_esEs20(x0, x1, ty_Ordering) 25.19/10.95 new_esEs6(Just(x0), Nothing, x1) 25.19/10.95 new_compare0(:(x0, x1), :(x2, x3), x4) 25.19/10.95 new_esEs28(x0, x1, ty_Double) 25.19/10.95 new_lt9(x0, x1, ty_Integer) 25.19/10.95 new_ltEs14(LT, GT) 25.19/10.95 new_ltEs14(GT, LT) 25.19/10.95 new_esEs26(x0, x1, ty_@0) 25.19/10.95 new_esEs18(Float(x0, x1), Float(x2, x3)) 25.19/10.95 new_esEs6(Just(x0), Just(x1), ty_Double) 25.19/10.95 new_primCmpNat0(Succ(x0), Zero) 25.19/10.95 new_lt8(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_compare31(x0, x1, app(ty_[], x2)) 25.19/10.95 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.19/10.95 new_esEs11(LT, GT) 25.19/10.95 new_esEs11(GT, LT) 25.19/10.95 new_esEs20(x0, x1, app(ty_[], x2)) 25.19/10.95 new_ltEs19(x0, x1, ty_Int) 25.19/10.95 new_compare25(x0, x1, True) 25.19/10.95 new_compare24(x0, x1, False, x2) 25.19/10.95 new_compare29(:%(x0, x1), :%(x2, x3), ty_Integer) 25.19/10.95 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_esEs25(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_ltEs4(Just(x0), Just(x1), ty_Double) 25.19/10.95 new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) 25.19/10.95 new_asAs(False, x0) 25.19/10.95 new_compare18(x0, x1, x2, x3, True, x4, x5, x6) 25.19/10.95 new_esEs21(x0, x1, ty_Float) 25.19/10.95 new_esEs12(:(x0, x1), :(x2, x3), x4) 25.19/10.95 new_primPlusNat0(Succ(x0), Zero) 25.19/10.95 new_esEs16(Integer(x0), Integer(x1)) 25.19/10.95 new_lt8(x0, x1, ty_@0) 25.19/10.95 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.19/10.95 new_esEs27(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_compare27(x0, x1, True, x2, x3) 25.19/10.95 new_esEs25(x0, x1, ty_Int) 25.19/10.95 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_ltEs20(x0, x1, ty_Char) 25.19/10.95 new_primEqNat0(Zero, Succ(x0)) 25.19/10.95 new_ltEs10(x0, x1, ty_Int) 25.19/10.95 new_lt14(x0, x1, x2, x3) 25.19/10.95 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_ltEs10(x0, x1, ty_Ordering) 25.19/10.95 new_primCmpNat0(Succ(x0), Succ(x1)) 25.19/10.95 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_lt13(x0, x1) 25.19/10.95 new_compare7(Char(x0), Char(x1)) 25.19/10.95 new_esEs10(False, False) 25.19/10.95 new_esEs26(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.19/10.95 new_ltEs19(x0, x1, ty_Char) 25.19/10.95 new_esEs29(x0, x1, ty_Double) 25.19/10.95 new_ltEs14(EQ, GT) 25.19/10.95 new_ltEs14(GT, EQ) 25.19/10.95 new_ltEs18(Left(x0), Left(x1), ty_Int, x2) 25.19/10.95 new_esEs23(x0, x1, ty_Int) 25.19/10.95 new_esEs20(x0, x1, ty_Char) 25.19/10.95 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 25.19/10.95 new_ltEs18(Right(x0), Right(x1), x2, ty_@0) 25.19/10.95 new_compare28(x0, x1, False) 25.19/10.95 new_primEqNat0(Succ(x0), Succ(x1)) 25.19/10.95 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.19/10.95 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.19/10.95 new_esEs23(x0, x1, ty_Integer) 25.19/10.95 new_esEs26(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_compare110(x0, x1, False, x2, x3) 25.19/10.95 new_esEs8(x0, x1, ty_Integer) 25.19/10.95 new_esEs24(x0, x1, ty_@0) 25.19/10.95 new_ltEs18(Right(x0), Right(x1), x2, ty_Double) 25.19/10.95 new_esEs25(x0, x1, ty_Float) 25.19/10.95 new_ltEs6(x0, x1) 25.19/10.95 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_esEs20(x0, x1, ty_Int) 25.19/10.95 new_lt21(x0, x1, ty_Bool) 25.19/10.95 new_lt9(x0, x1, ty_Char) 25.19/10.95 new_lt7(x0, x1) 25.19/10.95 new_ltEs5(True, True) 25.19/10.95 new_ltEs18(Left(x0), Left(x1), ty_Char, x2) 25.19/10.95 new_ltEs10(x0, x1, ty_Char) 25.19/10.95 new_esEs28(x0, x1, ty_@0) 25.19/10.95 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.19/10.95 new_lt21(x0, x1, ty_Ordering) 25.19/10.95 new_lt21(x0, x1, app(ty_[], x2)) 25.19/10.95 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.19/10.95 new_ltEs15(@2(x0, x1), @2(x2, x3), x4, x5) 25.19/10.95 new_esEs9(x0, x1, ty_Char) 25.19/10.95 new_ltEs18(Left(x0), Left(x1), ty_Float, x2) 25.19/10.95 new_esEs28(x0, x1, app(ty_[], x2)) 25.19/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 25.19/10.95 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) 25.19/10.95 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 25.19/10.95 new_primCompAux1(x0, x1, x2, x3) 25.19/10.95 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_compare111(x0, x1, False, x2, x3, x4) 25.19/10.95 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.19/10.95 new_compare31(x0, x1, ty_@0) 25.19/10.95 new_lt15(x0, x1, x2) 25.19/10.95 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_lt6(x0, x1, x2, x3, x4) 25.19/10.95 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.19/10.95 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.19/10.95 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 25.19/10.95 new_esEs24(x0, x1, ty_Double) 25.19/10.95 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 25.19/10.95 new_ltEs20(x0, x1, ty_Float) 25.19/10.95 new_esEs9(x0, x1, app(ty_[], x2)) 25.19/10.95 new_compare10(x0, x1, False, x2) 25.19/10.95 new_lt9(x0, x1, ty_Bool) 25.19/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 25.19/10.95 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.19/10.95 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_lt9(x0, x1, ty_Ordering) 25.19/10.95 new_esEs25(x0, x1, ty_Integer) 25.19/10.95 new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) 25.19/10.95 new_esEs27(x0, x1, ty_Float) 25.19/10.95 new_esEs15(x0, x1) 25.19/10.95 new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.19/10.95 new_esEs24(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_compare10(x0, x1, True, x2) 25.19/10.95 new_ltEs10(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_ltEs19(x0, x1, ty_Bool) 25.19/10.95 new_ltEs10(x0, x1, ty_Bool) 25.19/10.95 new_lt20(x0, x1, ty_Bool) 25.19/10.95 new_fsEs(x0) 25.19/10.95 new_ltEs16(x0, x1) 25.19/10.95 new_lt9(x0, x1, ty_Double) 25.19/10.95 new_primEqNat0(Succ(x0), Zero) 25.19/10.95 new_primMulNat0(Zero, Zero) 25.19/10.95 new_lt9(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 25.19/10.95 new_compare29(:%(x0, x1), :%(x2, x3), ty_Int) 25.19/10.95 new_esEs9(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_compare18(x0, x1, x2, x3, False, x4, x5, x6) 25.19/10.95 new_lt8(x0, x1, ty_Double) 25.19/10.95 new_primCompAux0(x0, LT) 25.19/10.95 new_ltEs14(EQ, EQ) 25.19/10.95 new_esEs29(x0, x1, ty_Char) 25.19/10.95 new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.19/10.95 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.19/10.95 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_lt20(x0, x1, ty_@0) 25.19/10.95 new_esEs12([], :(x0, x1), x2) 25.19/10.95 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_compare16(@0, @0) 25.19/10.95 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_ltEs19(x0, x1, ty_@0) 25.19/10.95 new_compare26(x0, x1, x2, x3) 25.19/10.95 new_primMulInt(Pos(x0), Pos(x1)) 25.19/10.95 new_compare23(x0, x1, True, x2, x3) 25.19/10.95 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_compare31(x0, x1, ty_Double) 25.19/10.95 new_lt8(x0, x1, ty_Ordering) 25.19/10.95 new_pePe(False, x0) 25.19/10.95 new_ltEs8(x0, x1) 25.19/10.95 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_esEs6(Just(x0), Just(x1), ty_Char) 25.19/10.95 new_esEs29(x0, x1, ty_Int) 25.19/10.95 new_lt20(x0, x1, ty_Integer) 25.19/10.95 new_lt9(x0, x1, ty_Int) 25.19/10.95 new_ltEs12(x0, x1) 25.19/10.95 new_ltEs10(x0, x1, ty_Integer) 25.19/10.95 new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.19/10.95 new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.19/10.95 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.19/10.95 new_compare31(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_compare14(x0, x1, True) 25.19/10.95 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_compare11(x0, x1, x2, x3, False, x4, x5) 25.19/10.95 new_esEs9(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_compare13(x0, x1, x2, x3, x4) 25.19/10.95 new_compare30(x0, x1, x2) 25.19/10.95 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.19/10.95 new_compare110(x0, x1, True, x2, x3) 25.19/10.95 new_esEs6(Just(x0), Just(x1), ty_Int) 25.19/10.95 new_esEs29(x0, x1, ty_@0) 25.19/10.95 new_esEs6(Nothing, Nothing, x0) 25.19/10.95 new_esEs6(Just(x0), Just(x1), ty_@0) 25.19/10.95 new_esEs20(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_compare0(:(x0, x1), [], x2) 25.19/10.95 new_esEs24(x0, x1, app(ty_[], x2)) 25.19/10.95 new_ltEs10(x0, x1, ty_@0) 25.19/10.95 new_esEs29(x0, x1, ty_Ordering) 25.19/10.95 new_primPlusNat0(Zero, Zero) 25.19/10.95 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.19/10.95 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.19/10.95 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_esEs27(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_not(True) 25.19/10.95 new_compare28(x0, x1, True) 25.19/10.95 new_primMulNat0(Zero, Succ(x0)) 25.19/10.95 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.19/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 25.19/10.95 new_compare8(x0, x1) 25.19/10.95 new_lt8(x0, x1, ty_Int) 25.19/10.95 new_lt21(x0, x1, ty_Float) 25.19/10.95 new_esEs27(x0, x1, ty_Integer) 25.19/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 25.19/10.95 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_compare15(x0, x1) 25.19/10.95 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.19/10.95 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.19/10.95 new_esEs25(x0, x1, ty_Bool) 25.19/10.95 new_primMulInt(Pos(x0), Neg(x1)) 25.19/10.95 new_primMulInt(Neg(x0), Pos(x1)) 25.19/10.95 new_esEs26(x0, x1, ty_Float) 25.19/10.95 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.19/10.95 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_lt8(x0, x1, ty_Char) 25.19/10.95 new_esEs25(x0, x1, app(ty_[], x2)) 25.19/10.95 new_compare111(x0, x1, True, x2, x3, x4) 25.19/10.95 new_ltEs4(Just(x0), Just(x1), ty_Float) 25.19/10.95 new_esEs21(x0, x1, ty_Double) 25.19/10.95 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.19/10.95 new_esEs17(:%(x0, x1), :%(x2, x3), x4) 25.19/10.95 new_ltEs5(False, False) 25.19/10.95 new_ltEs20(x0, x1, ty_Ordering) 25.19/10.95 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_lt20(x0, x1, ty_Int) 25.19/10.95 new_compare24(x0, x1, True, x2) 25.19/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 25.19/10.95 new_compare31(x0, x1, ty_Ordering) 25.19/10.95 new_ltEs20(x0, x1, app(ty_[], x2)) 25.19/10.95 new_esEs7(Left(x0), Right(x1), x2, x3) 25.19/10.95 new_esEs7(Right(x0), Left(x1), x2, x3) 25.19/10.95 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_ltEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_esEs11(EQ, EQ) 25.19/10.95 new_ltEs19(x0, x1, ty_Integer) 25.19/10.95 new_compare0([], [], x0) 25.19/10.95 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.19/10.95 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_lt20(x0, x1, ty_Char) 25.19/10.95 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_primPlusNat1(Succ(x0), x1) 25.19/10.95 new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) 25.19/10.95 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.19/10.95 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 25.19/10.95 new_esEs21(x0, x1, app(ty_[], x2)) 25.19/10.95 new_esEs24(x0, x1, ty_Int) 25.19/10.95 new_sr0(Integer(x0), Integer(x1)) 25.19/10.95 new_ltEs18(Right(x0), Right(x1), x2, ty_Char) 25.19/10.95 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_esEs27(x0, x1, ty_Bool) 25.19/10.95 new_esEs13(Char(x0), Char(x1)) 25.19/10.95 new_ltEs4(Nothing, Nothing, x0) 25.19/10.95 new_ltEs14(GT, GT) 25.19/10.95 new_esEs28(x0, x1, ty_Int) 25.19/10.95 new_esEs8(x0, x1, ty_Float) 25.19/10.95 new_esEs21(x0, x1, ty_Ordering) 25.19/10.95 new_ltEs18(Right(x0), Right(x1), x2, ty_Int) 25.19/10.95 new_esEs29(x0, x1, ty_Integer) 25.19/10.95 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_compare112(x0, x1, True) 25.19/10.95 new_lt20(x0, x1, ty_Ordering) 25.19/10.95 new_ltEs10(x0, x1, ty_Double) 25.19/10.95 new_esEs27(x0, x1, app(ty_[], x2)) 25.19/10.95 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 25.19/10.95 new_ltEs19(x0, x1, ty_Ordering) 25.19/10.95 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.19/10.95 new_primPlusNat0(Succ(x0), Succ(x1)) 25.19/10.95 new_esEs22(x0, x1, ty_Int) 25.19/10.95 new_esEs24(x0, x1, ty_Ordering) 25.19/10.95 new_esEs6(Just(x0), Just(x1), ty_Float) 25.19/10.95 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 25.19/10.95 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.19/10.95 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.19/10.95 new_esEs24(x0, x1, ty_Float) 25.19/10.95 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_compare17(Integer(x0), Integer(x1)) 25.19/10.95 new_ltEs19(x0, x1, app(ty_[], x2)) 25.19/10.95 new_lt9(x0, x1, ty_@0) 25.19/10.95 new_lt16(x0, x1) 25.19/10.95 new_lt9(x0, x1, app(ty_Maybe, x2)) 25.19/10.95 new_esEs26(x0, x1, ty_Char) 25.19/10.95 new_esEs25(x0, x1, ty_Ordering) 25.19/10.95 new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) 25.19/10.95 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.19/10.95 new_esEs8(x0, x1, app(ty_Ratio, x2)) 25.19/10.95 new_ltEs20(x0, x1, ty_Double) 25.19/10.95 new_esEs14(Double(x0, x1), Double(x2, x3)) 25.19/10.95 new_esEs26(x0, x1, ty_Int) 25.19/10.95 new_ltEs18(Right(x0), Right(x1), x2, ty_Float) 25.19/10.95 new_esEs12([], [], x0) 25.19/10.95 new_esEs6(Just(x0), Just(x1), ty_Ordering) 25.19/10.95 new_esEs25(x0, x1, ty_Double) 25.19/10.95 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.19/10.95 new_esEs11(LT, EQ) 25.19/10.95 new_esEs11(EQ, LT) 25.19/10.95 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_esEs11(GT, GT) 25.19/10.95 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_compare31(x0, x1, ty_Bool) 25.19/10.95 new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) 25.19/10.95 new_ltEs19(x0, x1, ty_Double) 25.19/10.95 new_esEs28(x0, x1, ty_Char) 25.19/10.95 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_primEqNat0(Zero, Zero) 25.19/10.95 new_compare31(x0, x1, ty_Int) 25.19/10.95 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_lt5(x0, x1) 25.19/10.95 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_not(False) 25.19/10.95 new_esEs25(x0, x1, ty_@0) 25.19/10.95 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_esEs26(x0, x1, ty_Ordering) 25.19/10.95 new_esEs29(x0, x1, ty_Bool) 25.19/10.95 new_lt4(x0, x1) 25.19/10.95 new_primCompAux0(x0, GT) 25.19/10.95 new_lt11(x0, x1) 25.19/10.95 new_esEs26(x0, x1, ty_Bool) 25.19/10.95 new_esEs6(Just(x0), Just(x1), ty_Integer) 25.19/10.95 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.19/10.95 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_primMulInt(Neg(x0), Neg(x1)) 25.19/10.95 new_ltEs4(Just(x0), Nothing, x1) 25.19/10.95 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.19/10.95 new_esEs11(LT, LT) 25.19/10.95 new_compare31(x0, x1, ty_Char) 25.19/10.95 new_ltEs20(x0, x1, ty_@0) 25.19/10.95 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 25.19/10.95 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.19/10.95 new_esEs26(x0, x1, ty_Integer) 25.19/10.95 new_compare0([], :(x0, x1), x2) 25.19/10.95 new_compare31(x0, x1, ty_Float) 25.19/10.95 new_sr(x0, x1) 25.19/10.95 new_ltEs18(Left(x0), Left(x1), ty_Double, x2) 25.19/10.95 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.19/10.95 new_esEs19(@0, @0) 25.19/10.95 new_lt17(x0, x1, x2) 25.19/10.95 new_esEs9(x0, x1, ty_Double) 25.19/10.95 new_esEs9(x0, x1, ty_@0) 25.19/10.95 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_esEs6(Just(x0), Just(x1), ty_Bool) 25.19/10.95 new_pePe(True, x0) 25.19/10.95 new_esEs28(x0, x1, ty_Float) 25.19/10.95 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.19/10.95 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 25.19/10.95 new_esEs24(x0, x1, ty_Bool) 25.19/10.95 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 25.19/10.95 new_esEs24(x0, x1, ty_Char) 25.19/10.95 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.95 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.19/10.95 new_esEs10(False, True) 25.19/10.95 new_esEs10(True, False) 25.19/10.95 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.19/10.95 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.19/10.95 new_ltEs14(EQ, LT) 25.19/10.95 new_ltEs14(LT, EQ) 25.19/10.95 new_compare210(x0, x1, True, x2, x3, x4) 25.19/10.95 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.19/10.95 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.19/10.95 new_ltEs4(Nothing, Just(x0), x1) 25.19/10.95 new_ltEs18(Left(x0), Left(x1), ty_@0, x2) 25.19/10.95 new_esEs20(x0, x1, ty_Double) 25.19/10.95 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.19/10.95 new_ltEs4(Just(x0), Just(x1), ty_Integer) 25.19/10.95 new_primCmpNat0(Zero, Zero) 25.19/10.95 new_asAs(True, x0) 25.19/10.95 new_compare25(x0, x1, False) 25.19/10.95 new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) 25.19/10.95 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 25.19/10.95 new_esEs26(x0, x1, app(ty_[], x2)) 25.19/10.95 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.95 new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.19/10.95 25.19/10.95 We have to consider all minimal (P,Q,R)-chains. 25.19/10.95 ---------------------------------------- 25.19/10.95 25.19/10.95 (21) QDPSizeChangeProof (EQUIVALENT) 25.19/10.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. 25.19/10.95 25.19/10.95 From the DPs we obtained the following set of size-change graphs: 25.19/10.95 *new_compare4(vyw460, vyw480, gh) -> new_compare21(vyw460, vyw480, new_esEs6(vyw460, vyw480, gh), gh) 25.19/10.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_lt3(vyw460, vyw480, ha, hb) -> new_compare22(vyw460, vyw480, new_esEs7(vyw460, vyw480, ha, hb), ha, hb) 25.19/10.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs0(vyw461, vyw481, hd) -> new_compare1(vyw461, vyw481, hd) 25.19/10.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_lt1(vyw460, vyw480, ge, gf) -> new_compare20(vyw460, vyw480, new_esEs5(vyw460, vyw480, ge, gf), ge, gf) 25.19/10.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_lt0(:(vyw4600, vyw4601), :(vyw4800, vyw4801), fb) -> new_primCompAux(vyw4600, vyw4800, new_compare0(vyw4601, vyw4801, fb), fb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_lt0(:(vyw4600, vyw4601), :(vyw4800, vyw4801), fb) -> new_compare1(vyw4601, vyw4801, fb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_lt2(vyw460, vyw480, gh) -> new_compare21(vyw460, vyw480, new_esEs6(vyw460, vyw480, gh), gh) 25.19/10.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_lt(vyw460, vyw480, h, ba, bb) -> new_compare2(vyw460, vyw480, new_esEs4(vyw460, vyw480, h, ba, bb), h, ba, bb) 25.19/10.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare1(:(vyw4600, vyw4601), :(vyw4800, vyw4801), fb) -> new_primCompAux(vyw4600, vyw4800, new_compare0(vyw4601, vyw4801, fb), fb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(:(vyw4600, vyw4601), vyw461), @2(:(vyw4800, vyw4801), vyw481), False, app(ty_[], fb), gg) -> new_primCompAux(vyw4600, vyw4800, new_compare0(vyw4601, vyw4801, fb), fb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare1(:(vyw4600, vyw4601), :(vyw4800, vyw4801), fb) -> new_compare1(vyw4601, vyw4801, fb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare22(vyw460, vyw480, False, ha, hb) -> new_ltEs3(vyw460, vyw480, ha, hb) 25.19/10.95 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(ty_[], baa), hh) -> new_lt0(vyw4610, vyw4810, baa) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), bag, app(app(ty_@2, bbd), bbe)) -> new_ltEs1(vyw4611, vyw4811, bbd, bbe) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), bag, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs(vyw4611, vyw4811, bah, bba, bbb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(app(ty_Either, bae), baf), hh) -> new_lt3(vyw4610, vyw4810, bae, baf) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), bag, app(app(ty_Either, bbg), bbh)) -> new_ltEs3(vyw4611, vyw4811, bbg, bbh) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare2(vyw460, vyw480, False, h, ba, bb) -> new_ltEs(vyw460, vyw480, h, ba, bb) 25.19/10.95 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), bag, app(ty_[], bbc)) -> new_ltEs0(vyw4611, vyw4811, bbc) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare21(vyw460, vyw480, False, gh) -> new_ltEs2(vyw460, vyw480, gh) 25.19/10.95 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, bf, app(app(ty_@2, ee), ef)) -> new_ltEs1(vyw4612, vyw4812, ee, ef) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, bf, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs(vyw4612, vyw4812, ea, eb, ec) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, bf, app(app(ty_Either, eh), fa)) -> new_ltEs3(vyw4612, vyw4812, eh, fa) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, bf, app(ty_[], ed)) -> new_ltEs0(vyw4612, vyw4812, ed) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_primCompAux(vyw4600, vyw4800, vyw99, app(app(app(ty_@3, fc), fd), ff)) -> new_compare(vyw4600, vyw4800, fc, fd, ff) 25.19/10.95 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_primCompAux(vyw4600, vyw4800, vyw99, app(ty_Maybe, gb)) -> new_compare4(vyw4600, vyw4800, gb) 25.19/10.95 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare3(vyw460, vyw480, ge, gf) -> new_compare20(vyw460, vyw480, new_esEs5(vyw460, vyw480, ge, gf), ge, gf) 25.19/10.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, app(app(ty_@2, ge), gf), gg) -> new_compare20(vyw460, vyw480, new_esEs5(vyw460, vyw480, ge, gf), ge, gf) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs2(Just(vyw4610), Just(vyw4810), app(app(ty_@2, bce), bcf)) -> new_ltEs1(vyw4610, vyw4810, bce, bcf) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs2(Just(vyw4610), Just(vyw4810), app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs(vyw4610, vyw4810, bca, bcb, bcc) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs2(Just(vyw4610), Just(vyw4810), app(app(ty_Either, bch), bda)) -> new_ltEs3(vyw4610, vyw4810, bch, bda) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs2(Just(vyw4610), Just(vyw4810), app(ty_[], bcd)) -> new_ltEs0(vyw4610, vyw4810, bcd) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs2(Just(vyw4610), Just(vyw4810), app(ty_Maybe, bcg)) -> new_ltEs2(vyw4610, vyw4810, bcg) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_primCompAux(vyw4600, vyw4800, vyw99, app(ty_[], fg)) -> new_compare1(vyw4600, vyw4800, fg) 25.19/10.95 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare5(vyw460, vyw480, ha, hb) -> new_compare22(vyw460, vyw480, new_esEs7(vyw460, vyw480, ha, hb), ha, hb) 25.19/10.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), bag, app(ty_Maybe, bbf)) -> new_ltEs2(vyw4611, vyw4811, bbf) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, bf, app(ty_Maybe, eg)) -> new_ltEs2(vyw4612, vyw4812, eg) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(app(ty_@2, bab), bac), hh) -> new_lt1(vyw4610, vyw4810, bab, bac) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare(vyw460, vyw480, h, ba, bb) -> new_compare2(vyw460, vyw480, new_esEs4(vyw460, vyw480, h, ba, bb), h, ba, bb) 25.19/10.95 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(ty_Maybe, bad), hh) -> new_lt2(vyw4610, vyw4810, bad) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs1(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), app(app(app(ty_@3, he), hf), hg), hh) -> new_lt(vyw4610, vyw4810, he, hf, hg) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, app(app(ty_Either, ha), hb), gg) -> new_compare22(vyw460, vyw480, new_esEs7(vyw460, vyw480, ha, hb), ha, hb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, app(app(app(ty_@3, h), ba), bb), gg) -> new_compare2(vyw460, vyw480, new_esEs4(vyw460, vyw480, h, ba, bb), h, ba, bb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 25.19/10.95 25.19/10.95 25.19/10.95 *new_primCompAux(vyw4600, vyw4800, vyw99, app(app(ty_@2, fh), ga)) -> new_compare3(vyw4600, vyw4800, fh, ga) 25.19/10.95 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_primCompAux(vyw4600, vyw4800, vyw99, app(app(ty_Either, gc), gd)) -> new_compare5(vyw4600, vyw4800, gc, gd) 25.19/10.95 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, app(ty_Maybe, gh), gg) -> new_compare21(vyw460, vyw480, new_esEs6(vyw460, vyw480, gh), gh) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, app(ty_[], dc), bg) -> new_lt0(vyw4611, vyw4811, dc) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(ty_[], bh), bf, bg) -> new_lt0(vyw4610, vyw4810, bh) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, app(ty_[], baa)), hh)) -> new_lt0(vyw4610, vyw4810, baa) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), app(ty_[], dc)), bg)) -> new_lt0(vyw4611, vyw4811, dc) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, app(ty_[], bh)), bf), bg)) -> new_lt0(vyw4610, vyw4810, bh) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs3(Right(vyw4610), Right(vyw4810), bed, app(app(ty_@2, bfa), bfb)) -> new_ltEs1(vyw4610, vyw4810, bfa, bfb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs3(Left(vyw4610), Left(vyw4810), app(app(ty_@2, bdg), bdh), bde) -> new_ltEs1(vyw4610, vyw4810, bdg, bdh) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), bf), app(app(ty_@2, ee), ef))) -> new_ltEs1(vyw4612, vyw4812, ee, ef) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hc, app(app(ty_Either, bed), app(app(ty_@2, bfa), bfb))) -> new_ltEs1(vyw4610, vyw4810, bfa, bfb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hc, app(app(ty_Either, app(app(ty_@2, bdg), bdh)), bde)) -> new_ltEs1(vyw4610, vyw4810, bdg, bdh) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, bag), app(app(ty_@2, bbd), bbe))) -> new_ltEs1(vyw4611, vyw4811, bbd, bbe) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hc, app(ty_Maybe, app(app(ty_@2, bce), bcf))) -> new_ltEs1(vyw4610, vyw4810, bce, bcf) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs3(Right(vyw4610), Right(vyw4810), bed, app(app(app(ty_@3, bee), bef), beg)) -> new_ltEs(vyw4610, vyw4810, bee, bef, beg) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs3(Left(vyw4610), Left(vyw4810), app(app(app(ty_@3, bdb), bdc), bdd), bde) -> new_ltEs(vyw4610, vyw4810, bdb, bdc, bdd) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hc, app(app(ty_Either, bed), app(app(app(ty_@3, bee), bef), beg))) -> new_ltEs(vyw4610, vyw4810, bee, bef, beg) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hc, app(ty_Maybe, app(app(app(ty_@3, bca), bcb), bcc))) -> new_ltEs(vyw4610, vyw4810, bca, bcb, bcc) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hc, app(app(ty_Either, app(app(app(ty_@3, bdb), bdc), bdd)), bde)) -> new_ltEs(vyw4610, vyw4810, bdb, bdc, bdd) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), bf), app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs(vyw4612, vyw4812, ea, eb, ec) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, bag), app(app(app(ty_@3, bah), bba), bbb))) -> new_ltEs(vyw4611, vyw4811, bah, bba, bbb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs3(Left(vyw4610), Left(vyw4810), app(app(ty_Either, beb), bec), bde) -> new_ltEs3(vyw4610, vyw4810, beb, bec) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs3(Right(vyw4610), Right(vyw4810), bed, app(app(ty_Either, bfd), bfe)) -> new_ltEs3(vyw4610, vyw4810, bfd, bfe) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs3(Left(vyw4610), Left(vyw4810), app(ty_[], bdf), bde) -> new_ltEs0(vyw4610, vyw4810, bdf) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs3(Right(vyw4610), Right(vyw4810), bed, app(ty_[], beh)) -> new_ltEs0(vyw4610, vyw4810, beh) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs3(Left(vyw4610), Left(vyw4810), app(ty_Maybe, bea), bde) -> new_ltEs2(vyw4610, vyw4810, bea) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs3(Right(vyw4610), Right(vyw4810), bed, app(ty_Maybe, bfc)) -> new_ltEs2(vyw4610, vyw4810, bfc) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, app(app(ty_Either, dg), dh), bg) -> new_lt3(vyw4611, vyw4811, dg, dh) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(app(ty_Either, cd), ce), bf, bg) -> new_lt3(vyw4610, vyw4810, cd, ce) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, app(app(ty_Either, bae), baf)), hh)) -> new_lt3(vyw4610, vyw4810, bae, baf) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), app(app(ty_Either, dg), dh)), bg)) -> new_lt3(vyw4611, vyw4811, dg, dh) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, app(app(ty_Either, cd), ce)), bf), bg)) -> new_lt3(vyw4610, vyw4810, cd, ce) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hc, app(app(ty_Either, bed), app(app(ty_Either, bfd), bfe))) -> new_ltEs3(vyw4610, vyw4810, bfd, bfe) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), bf), app(app(ty_Either, eh), fa))) -> new_ltEs3(vyw4612, vyw4812, eh, fa) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hc, app(ty_Maybe, app(app(ty_Either, bch), bda))) -> new_ltEs3(vyw4610, vyw4810, bch, bda) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hc, app(app(ty_Either, app(app(ty_Either, beb), bec)), bde)) -> new_ltEs3(vyw4610, vyw4810, beb, bec) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, bag), app(app(ty_Either, bbg), bbh))) -> new_ltEs3(vyw4611, vyw4811, bbg, bbh) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), bf), app(ty_[], ed))) -> new_ltEs0(vyw4612, vyw4812, ed) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hc, app(app(ty_Either, app(ty_[], bdf)), bde)) -> new_ltEs0(vyw4610, vyw4810, bdf) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hc, app(app(ty_Either, bed), app(ty_[], beh))) -> new_ltEs0(vyw4610, vyw4810, beh) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, bag), app(ty_[], bbc))) -> new_ltEs0(vyw4611, vyw4811, bbc) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hc, app(ty_Maybe, app(ty_[], bcd))) -> new_ltEs0(vyw4610, vyw4810, bcd) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(app(ty_@2, ca), cb), bf, bg) -> new_lt1(vyw4610, vyw4810, ca, cb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, app(app(ty_@2, dd), de), bg) -> new_lt1(vyw4611, vyw4811, dd, de) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, app(ty_Maybe, df), bg) -> new_lt2(vyw4611, vyw4811, df) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(ty_Maybe, cc), bf, bg) -> new_lt2(vyw4610, vyw4810, cc) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), app(app(app(ty_@3, bc), bd), be), bf, bg) -> new_lt(vyw4610, vyw4810, bc, bd, be) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_ltEs(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), cf, app(app(app(ty_@3, cg), da), db), bg) -> new_lt(vyw4611, vyw4811, cg, da, db) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(:(vyw4600, vyw4601), vyw461), @2(:(vyw4800, vyw4801), vyw481), False, app(ty_[], fb), gg) -> new_compare1(vyw4601, vyw4801, fb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, vyw461), @2(vyw480, vyw481), False, hc, app(ty_[], hd)) -> new_compare1(vyw461, vyw481, hd) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), bf), app(ty_Maybe, eg))) -> new_ltEs2(vyw4612, vyw4812, eg) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, bag), app(ty_Maybe, bbf))) -> new_ltEs2(vyw4611, vyw4811, bbf) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, Just(vyw4610)), @2(vyw480, Just(vyw4810)), False, hc, app(ty_Maybe, app(ty_Maybe, bcg))) -> new_ltEs2(vyw4610, vyw4810, bcg) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, Left(vyw4610)), @2(vyw480, Left(vyw4810)), False, hc, app(app(ty_Either, app(ty_Maybe, bea)), bde)) -> new_ltEs2(vyw4610, vyw4810, bea) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, Right(vyw4610)), @2(vyw480, Right(vyw4810)), False, hc, app(app(ty_Either, bed), app(ty_Maybe, bfc))) -> new_ltEs2(vyw4610, vyw4810, bfc) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, app(app(ty_@2, ca), cb)), bf), bg)) -> new_lt1(vyw4610, vyw4810, ca, cb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, app(app(ty_@2, bab), bac)), hh)) -> new_lt1(vyw4610, vyw4810, bab, bac) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), app(app(ty_@2, dd), de)), bg)) -> new_lt1(vyw4611, vyw4811, dd, de) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, app(ty_Maybe, cc)), bf), bg)) -> new_lt2(vyw4610, vyw4810, cc) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), app(ty_Maybe, df)), bg)) -> new_lt2(vyw4611, vyw4811, df) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, app(ty_Maybe, bad)), hh)) -> new_lt2(vyw4610, vyw4810, bad) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @2(vyw4610, vyw4611)), @2(vyw480, @2(vyw4810, vyw4811)), False, hc, app(app(ty_@2, app(app(app(ty_@3, he), hf), hg)), hh)) -> new_lt(vyw4610, vyw4810, he, hf, hg) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, cf), app(app(app(ty_@3, cg), da), db)), bg)) -> new_lt(vyw4611, vyw4811, cg, da, db) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_compare20(@2(vyw460, @3(vyw4610, vyw4611, vyw4612)), @2(vyw480, @3(vyw4810, vyw4811, vyw4812)), False, hc, app(app(app(ty_@3, app(app(app(ty_@3, bc), bd), be)), bf), bg)) -> new_lt(vyw4610, vyw4810, bc, bd, be) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.19/10.95 25.19/10.95 25.19/10.95 ---------------------------------------- 25.19/10.95 25.19/10.95 (22) 25.19/10.95 YES 25.19/10.95 25.19/10.95 ---------------------------------------- 25.19/10.95 25.19/10.95 (23) 25.19/10.95 Obligation: 25.19/10.95 Q DP problem: 25.19/10.95 The TRS P consists of the following rules: 25.19/10.95 25.19/10.95 new_esEs(Just(vyw500), Just(vyw3000), app(app(ty_@2, bd), be)) -> new_esEs2(vyw500, vyw3000, bd, be) 25.19/10.95 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, app(app(ty_Either, bcc), bcd), bag) -> new_esEs1(vyw501, vyw3001, bcc, bcd) 25.19/10.95 new_esEs1(Left(vyw500), Left(vyw3000), app(app(ty_Either, dg), dh), de) -> new_esEs1(vyw500, vyw3000, dg, dh) 25.19/10.95 new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hc, app(ty_[], he)) -> new_esEs0(vyw501, vyw3001, he) 25.19/10.95 new_esEs1(Right(vyw500), Right(vyw3000), ef, app(ty_[], eh)) -> new_esEs0(vyw500, vyw3000, eh) 25.19/10.95 new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(app(ty_@3, gh), ha), hb), gb) -> new_esEs3(vyw500, vyw3000, gh, ha, hb) 25.19/10.95 new_esEs1(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, ec), ed), ee), de) -> new_esEs3(vyw500, vyw3000, ec, ed, ee) 25.19/10.95 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, bba), bbb), baf, bag) -> new_esEs1(vyw500, vyw3000, bba, bbb) 25.19/10.95 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, bbe), bbf), bbg), baf, bag) -> new_esEs3(vyw500, vyw3000, bbe, bbf, bbg) 25.19/10.95 new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hc, app(app(ty_@2, hh), baa)) -> new_esEs2(vyw501, vyw3001, hh, baa) 25.19/10.95 new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_@2, ce), cf)) -> new_esEs2(vyw500, vyw3000, ce, cf) 25.19/10.95 new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_[], gc), gb) -> new_esEs0(vyw500, vyw3000, gc) 25.19/10.95 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, baf, app(ty_Maybe, bdb)) -> new_esEs(vyw502, vyw3002, bdb) 25.19/10.95 new_esEs(Just(vyw500), Just(vyw3000), app(ty_Maybe, h)) -> new_esEs(vyw500, vyw3000, h) 25.19/10.95 new_esEs1(Left(vyw500), Left(vyw3000), app(ty_[], df), de) -> new_esEs0(vyw500, vyw3000, df) 25.19/10.95 new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_Either, cc), cd)) -> new_esEs1(vyw500, vyw3000, cc, cd) 25.19/10.95 new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_[], cb)) -> new_esEs0(vyw500, vyw3000, cb) 25.19/10.95 new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hc, app(ty_Maybe, hd)) -> new_esEs(vyw501, vyw3001, hd) 25.19/10.95 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, baf, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(vyw502, vyw3002, bdh, bea, beb) 25.19/10.95 new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_@2, gf), gg), gb) -> new_esEs2(vyw500, vyw3000, gf, gg) 25.19/10.95 new_esEs1(Right(vyw500), Right(vyw3000), ef, app(app(ty_@2, fc), fd)) -> new_esEs2(vyw500, vyw3000, fc, fd) 25.19/10.95 new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_Maybe, ga), gb) -> new_esEs(vyw500, vyw3000, ga) 25.19/10.95 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, app(ty_Maybe, bca), bag) -> new_esEs(vyw501, vyw3001, bca) 25.19/10.95 new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), dc) -> new_esEs0(vyw501, vyw3001, dc) 25.19/10.95 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, baf, app(app(ty_Either, bdd), bde)) -> new_esEs1(vyw502, vyw3002, bdd, bde) 25.19/10.95 new_esEs1(Right(vyw500), Right(vyw3000), ef, app(ty_Maybe, eg)) -> new_esEs(vyw500, vyw3000, eg) 25.19/10.95 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, bae), baf, bag) -> new_esEs(vyw500, vyw3000, bae) 25.19/10.95 new_esEs(Just(vyw500), Just(vyw3000), app(app(ty_Either, bb), bc)) -> new_esEs1(vyw500, vyw3000, bb, bc) 25.19/10.95 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, app(app(ty_@2, bce), bcf), bag) -> new_esEs2(vyw501, vyw3001, bce, bcf) 25.19/10.95 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_[], bah), baf, bag) -> new_esEs0(vyw500, vyw3000, bah) 25.19/10.95 new_esEs1(Left(vyw500), Left(vyw3000), app(ty_Maybe, dd), de) -> new_esEs(vyw500, vyw3000, dd) 25.19/10.95 new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_Maybe, ca)) -> new_esEs(vyw500, vyw3000, ca) 25.19/10.95 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, baf, app(app(ty_@2, bdf), bdg)) -> new_esEs2(vyw502, vyw3002, bdf, bdg) 25.19/10.95 new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hc, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vyw501, vyw3001, bab, bac, bad) 25.19/10.95 new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(app(ty_@3, cg), da), db)) -> new_esEs3(vyw500, vyw3000, cg, da, db) 25.19/10.95 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, app(app(app(ty_@3, bcg), bch), bda), bag) -> new_esEs3(vyw501, vyw3001, bcg, bch, bda) 25.19/10.95 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, baf, app(ty_[], bdc)) -> new_esEs0(vyw502, vyw3002, bdc) 25.19/10.95 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, bbc), bbd), baf, bag) -> new_esEs2(vyw500, vyw3000, bbc, bbd) 25.19/10.95 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, app(ty_[], bcb), bag) -> new_esEs0(vyw501, vyw3001, bcb) 25.19/10.95 new_esEs1(Left(vyw500), Left(vyw3000), app(app(ty_@2, ea), eb), de) -> new_esEs2(vyw500, vyw3000, ea, eb) 25.19/10.95 new_esEs(Just(vyw500), Just(vyw3000), app(ty_[], ba)) -> new_esEs0(vyw500, vyw3000, ba) 25.19/10.95 new_esEs1(Right(vyw500), Right(vyw3000), ef, app(app(app(ty_@3, ff), fg), fh)) -> new_esEs3(vyw500, vyw3000, ff, fg, fh) 25.19/10.95 new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_Either, gd), ge), gb) -> new_esEs1(vyw500, vyw3000, gd, ge) 25.19/10.95 new_esEs1(Right(vyw500), Right(vyw3000), ef, app(app(ty_Either, fa), fb)) -> new_esEs1(vyw500, vyw3000, fa, fb) 25.19/10.95 new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hc, app(app(ty_Either, hf), hg)) -> new_esEs1(vyw501, vyw3001, hf, hg) 25.19/10.95 new_esEs(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs3(vyw500, vyw3000, bf, bg, bh) 25.19/10.95 25.19/10.95 R is empty. 25.19/10.95 Q is empty. 25.19/10.95 We have to consider all minimal (P,Q,R)-chains. 25.19/10.95 ---------------------------------------- 25.19/10.95 25.19/10.95 (24) QDPSizeChangeProof (EQUIVALENT) 25.19/10.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. 25.19/10.95 25.19/10.95 From the DPs we obtained the following set of size-change graphs: 25.19/10.95 *new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_Maybe, ca)) -> new_esEs(vyw500, vyw3000, ca) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(app(ty_@3, cg), da), db)) -> new_esEs3(vyw500, vyw3000, cg, da, db) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_Either, cc), cd)) -> new_esEs1(vyw500, vyw3000, cc, cd) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_@2, ce), cf)) -> new_esEs2(vyw500, vyw3000, ce, cf) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs(Just(vyw500), Just(vyw3000), app(ty_Maybe, h)) -> new_esEs(vyw500, vyw3000, h) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs3(vyw500, vyw3000, bf, bg, bh) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs(Just(vyw500), Just(vyw3000), app(app(ty_Either, bb), bc)) -> new_esEs1(vyw500, vyw3000, bb, bc) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs(Just(vyw500), Just(vyw3000), app(app(ty_@2, bd), be)) -> new_esEs2(vyw500, vyw3000, bd, be) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs(Just(vyw500), Just(vyw3000), app(ty_[], ba)) -> new_esEs0(vyw500, vyw3000, ba) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hc, app(ty_Maybe, hd)) -> new_esEs(vyw501, vyw3001, hd) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_Maybe, ga), gb) -> new_esEs(vyw500, vyw3000, ga) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(app(ty_@3, gh), ha), hb), gb) -> new_esEs3(vyw500, vyw3000, gh, ha, hb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hc, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vyw501, vyw3001, bab, bac, bad) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_Either, gd), ge), gb) -> new_esEs1(vyw500, vyw3000, gd, ge) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hc, app(app(ty_Either, hf), hg)) -> new_esEs1(vyw501, vyw3001, hf, hg) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hc, app(app(ty_@2, hh), baa)) -> new_esEs2(vyw501, vyw3001, hh, baa) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_@2, gf), gg), gb) -> new_esEs2(vyw500, vyw3000, gf, gg) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), hc, app(ty_[], he)) -> new_esEs0(vyw501, vyw3001, he) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs2(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_[], gc), gb) -> new_esEs0(vyw500, vyw3000, gc) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs1(Right(vyw500), Right(vyw3000), ef, app(ty_Maybe, eg)) -> new_esEs(vyw500, vyw3000, eg) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs1(Left(vyw500), Left(vyw3000), app(ty_Maybe, dd), de) -> new_esEs(vyw500, vyw3000, dd) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, baf, app(ty_Maybe, bdb)) -> new_esEs(vyw502, vyw3002, bdb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, app(ty_Maybe, bca), bag) -> new_esEs(vyw501, vyw3001, bca) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, bae), baf, bag) -> new_esEs(vyw500, vyw3000, bae) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs1(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, ec), ed), ee), de) -> new_esEs3(vyw500, vyw3000, ec, ed, ee) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs1(Right(vyw500), Right(vyw3000), ef, app(app(app(ty_@3, ff), fg), fh)) -> new_esEs3(vyw500, vyw3000, ff, fg, fh) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs1(Left(vyw500), Left(vyw3000), app(app(ty_Either, dg), dh), de) -> new_esEs1(vyw500, vyw3000, dg, dh) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs1(Right(vyw500), Right(vyw3000), ef, app(app(ty_Either, fa), fb)) -> new_esEs1(vyw500, vyw3000, fa, fb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs1(Right(vyw500), Right(vyw3000), ef, app(app(ty_@2, fc), fd)) -> new_esEs2(vyw500, vyw3000, fc, fd) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs1(Left(vyw500), Left(vyw3000), app(app(ty_@2, ea), eb), de) -> new_esEs2(vyw500, vyw3000, ea, eb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs1(Right(vyw500), Right(vyw3000), ef, app(ty_[], eh)) -> new_esEs0(vyw500, vyw3000, eh) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs1(Left(vyw500), Left(vyw3000), app(ty_[], df), de) -> new_esEs0(vyw500, vyw3000, df) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, bbe), bbf), bbg), baf, bag) -> new_esEs3(vyw500, vyw3000, bbe, bbf, bbg) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, baf, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(vyw502, vyw3002, bdh, bea, beb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, app(app(app(ty_@3, bcg), bch), bda), bag) -> new_esEs3(vyw501, vyw3001, bcg, bch, bda) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, app(app(ty_Either, bcc), bcd), bag) -> new_esEs1(vyw501, vyw3001, bcc, bcd) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, bba), bbb), baf, bag) -> new_esEs1(vyw500, vyw3000, bba, bbb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, baf, app(app(ty_Either, bdd), bde)) -> new_esEs1(vyw502, vyw3002, bdd, bde) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_[], cb)) -> new_esEs0(vyw500, vyw3000, cb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs0(:(vyw500, vyw501), :(vyw3000, vyw3001), dc) -> new_esEs0(vyw501, vyw3001, dc) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, app(app(ty_@2, bce), bcf), bag) -> new_esEs2(vyw501, vyw3001, bce, bcf) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, baf, app(app(ty_@2, bdf), bdg)) -> new_esEs2(vyw502, vyw3002, bdf, bdg) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, bbc), bbd), baf, bag) -> new_esEs2(vyw500, vyw3000, bbc, bbd) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_[], bah), baf, bag) -> new_esEs0(vyw500, vyw3000, bah) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, baf, app(ty_[], bdc)) -> new_esEs0(vyw502, vyw3002, bdc) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.19/10.95 25.19/10.95 25.19/10.95 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bbh, app(ty_[], bcb), bag) -> new_esEs0(vyw501, vyw3001, bcb) 25.19/10.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.19/10.95 25.19/10.95 25.19/10.95 ---------------------------------------- 25.19/10.95 25.19/10.95 (25) 25.19/10.95 YES 25.19/10.95 25.19/10.95 ---------------------------------------- 25.19/10.95 25.19/10.95 (26) 25.19/10.95 Obligation: 25.19/10.95 Q DP problem: 25.19/10.95 The TRS P consists of the following rules: 25.19/10.95 25.19/10.95 new_primMulNat(Succ(vyw50100), Succ(vyw300000)) -> new_primMulNat(vyw50100, Succ(vyw300000)) 25.19/10.95 25.19/10.95 R is empty. 25.19/10.95 Q is empty. 25.19/10.95 We have to consider all minimal (P,Q,R)-chains. 25.19/10.95 ---------------------------------------- 25.19/10.95 25.19/10.95 (27) QDPSizeChangeProof (EQUIVALENT) 25.19/10.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. 25.19/10.95 25.19/10.95 From the DPs we obtained the following set of size-change graphs: 25.19/10.95 *new_primMulNat(Succ(vyw50100), Succ(vyw300000)) -> new_primMulNat(vyw50100, Succ(vyw300000)) 25.19/10.95 The graph contains the following edges 1 > 1, 2 >= 2 25.19/10.95 25.19/10.95 25.19/10.95 ---------------------------------------- 25.19/10.95 25.19/10.95 (28) 25.19/10.95 YES 25.19/10.95 25.19/10.95 ---------------------------------------- 25.19/10.95 25.19/10.95 (29) 25.19/10.95 Obligation: 25.19/10.95 Q DP problem: 25.19/10.95 The TRS P consists of the following rules: 25.19/10.95 25.19/10.95 new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, True, h, ba, bb) -> new_lookupWithDefaultFM01(vyw17, vyw23, @2(vyw24, vyw25), h, ba, bb) 25.19/10.95 new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, True, h, ba, bb) -> new_lookupWithDefaultFM01(vyw17, vyw22, @2(vyw24, vyw25), h, ba, bb) 25.19/10.95 new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, False, h, ba, bb) -> new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, new_esEs11(new_compare23(@2(vyw24, vyw25), @2(vyw18, vyw19), new_esEs5(@2(vyw24, vyw25), @2(vyw18, vyw19), ba, bb), ba, bb), GT), h, ba, bb) 25.19/10.95 new_lookupWithDefaultFM01(vyw4, Branch(@2(vyw300, vyw301), vyw31, vyw32, vyw33, vyw34), @2(vyw50, vyw51), bc, bd, be) -> new_lookupWithDefaultFM0(vyw4, vyw300, vyw301, vyw31, vyw32, vyw33, vyw34, vyw50, vyw51, new_esEs30(vyw50, vyw51, vyw300, vyw301, new_esEs31(vyw50, vyw300, bd), bd, be), bc, bd, be) 25.19/10.95 25.19/10.95 The TRS R consists of the following rules: 25.19/10.95 25.19/10.95 new_lt20(vyw460, vyw480, ty_Double) -> new_lt12(vyw460, vyw480) 25.19/10.95 new_esEs7(Left(vyw500), Left(vyw3000), ty_Ordering, ceh) -> new_esEs11(vyw500, vyw3000) 25.19/10.95 new_ltEs20(vyw4611, vyw4811, app(ty_[], dcg)) -> new_ltEs11(vyw4611, vyw4811, dcg) 25.19/10.95 new_esEs6(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.95 new_primCmpInt(Neg(Succ(vyw46000)), Pos(vyw4800)) -> LT 25.19/10.95 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.19/10.95 new_esEs29(vyw4610, vyw4810, app(ty_[], dbe)) -> new_esEs12(vyw4610, vyw4810, dbe) 25.19/10.95 new_lt9(vyw4611, vyw4811, app(app(app(ty_@3, hc), hd), he)) -> new_lt6(vyw4611, vyw4811, hc, hd, he) 25.19/10.95 new_primPlusNat0(Zero, Zero) -> Zero 25.19/10.95 new_ltEs9(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), ff, fg, fh) -> new_pePe(new_lt8(vyw4610, vyw4810, ff), new_asAs(new_esEs20(vyw4610, vyw4810, ff), new_pePe(new_lt9(vyw4611, vyw4811, fg), new_asAs(new_esEs21(vyw4611, vyw4811, fg), new_ltEs10(vyw4612, vyw4812, fh))))) 25.19/10.96 new_esEs8(vyw500, vyw3000, app(app(ty_@2, cf), cg)) -> new_esEs5(vyw500, vyw3000, cf, cg) 25.19/10.96 new_pePe(True, vyw104) -> True 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), app(ty_[], cfb), ceh) -> new_esEs12(vyw500, vyw3000, cfb) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Double, bdf) -> new_ltEs13(vyw4610, vyw4810) 25.19/10.96 new_compare111(vyw460, vyw480, True, fb, fc, fd) -> LT 25.19/10.96 new_esEs27(vyw502, vyw3002, ty_Float) -> new_esEs18(vyw502, vyw3002) 25.19/10.96 new_esEs31(vyw50, vyw300, ty_Char) -> new_esEs13(vyw50, vyw300) 25.19/10.96 new_esEs20(vyw4610, vyw4810, app(ty_[], gd)) -> new_esEs12(vyw4610, vyw4810, gd) 25.19/10.96 new_esEs11(LT, EQ) -> False 25.19/10.96 new_esEs11(EQ, LT) -> False 25.19/10.96 new_lt8(vyw4610, vyw4810, app(app(ty_@2, ge), gf)) -> new_lt14(vyw4610, vyw4810, ge, gf) 25.19/10.96 new_compare210(vyw460, vyw480, False, fb, fc, fd) -> new_compare111(vyw460, vyw480, new_ltEs9(vyw460, vyw480, fb, fc, fd), fb, fc, fd) 25.19/10.96 new_esEs26(vyw501, vyw3001, ty_Ordering) -> new_esEs11(vyw501, vyw3001) 25.19/10.96 new_esEs32(vyw35, vyw37, ty_Ordering) -> new_esEs11(vyw35, vyw37) 25.19/10.96 new_esEs8(vyw500, vyw3000, app(ty_[], cc)) -> new_esEs12(vyw500, vyw3000, cc) 25.19/10.96 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.19/10.96 new_esEs12(:(vyw500, vyw501), [], chg) -> False 25.19/10.96 new_esEs12([], :(vyw3000, vyw3001), chg) -> False 25.19/10.96 new_primCmpInt(Pos(Zero), Neg(Succ(vyw48000))) -> GT 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, app(ty_[], bfb)) -> new_ltEs11(vyw4610, vyw4810, bfb) 25.19/10.96 new_esEs20(vyw4610, vyw4810, ty_@0) -> new_esEs19(vyw4610, vyw4810) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, ty_Bool) -> new_ltEs5(vyw4610, vyw4810) 25.19/10.96 new_esEs29(vyw4610, vyw4810, ty_@0) -> new_esEs19(vyw4610, vyw4810) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), ty_Int, ceh) -> new_esEs15(vyw500, vyw3000) 25.19/10.96 new_compare31(vyw4600, vyw4800, ty_Int) -> new_compare12(vyw4600, vyw4800) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Char) -> new_ltEs7(vyw4610, vyw4810) 25.19/10.96 new_lt20(vyw460, vyw480, ty_Ordering) -> new_lt7(vyw460, vyw480) 25.19/10.96 new_esEs32(vyw35, vyw37, ty_Int) -> new_esEs15(vyw35, vyw37) 25.19/10.96 new_primCmpInt(Neg(Succ(vyw46000)), Neg(vyw4800)) -> new_primCmpNat0(vyw4800, Succ(vyw46000)) 25.19/10.96 new_compare0(:(vyw4600, vyw4601), :(vyw4800, vyw4801), bgd) -> new_primCompAux1(vyw4600, vyw4800, new_compare0(vyw4601, vyw4801, bgd), bgd) 25.19/10.96 new_compare210(vyw460, vyw480, True, fb, fc, fd) -> EQ 25.19/10.96 new_lt20(vyw460, vyw480, ty_@0) -> new_lt13(vyw460, vyw480) 25.19/10.96 new_esEs11(LT, GT) -> False 25.19/10.96 new_esEs11(GT, LT) -> False 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, ty_Ordering) -> new_ltEs14(vyw4610, vyw4810) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, app(ty_[], cge)) -> new_esEs12(vyw500, vyw3000, cge) 25.19/10.96 new_lt21(vyw4610, vyw4810, ty_Char) -> new_lt4(vyw4610, vyw4810) 25.19/10.96 new_esEs27(vyw502, vyw3002, ty_Integer) -> new_esEs16(vyw502, vyw3002) 25.19/10.96 new_ltEs4(Nothing, Nothing, bbg) -> True 25.19/10.96 new_esEs23(vyw501, vyw3001, ty_Integer) -> new_esEs16(vyw501, vyw3001) 25.19/10.96 new_ltEs4(Just(vyw4610), Nothing, bbg) -> False 25.19/10.96 new_esEs10(False, True) -> False 25.19/10.96 new_esEs10(True, False) -> False 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, app(app(ty_@2, bfc), bfd)) -> new_ltEs15(vyw4610, vyw4810, bfc, bfd) 25.19/10.96 new_primMulNat0(Succ(vyw50100), Succ(vyw300000)) -> new_primPlusNat1(new_primMulNat0(vyw50100, Succ(vyw300000)), vyw300000) 25.19/10.96 new_lt8(vyw4610, vyw4810, app(app(ty_Either, ha), hb)) -> new_lt18(vyw4610, vyw4810, ha, hb) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), app(ty_Ratio, cgb), ceh) -> new_esEs17(vyw500, vyw3000, cgb) 25.19/10.96 new_esEs25(vyw500, vyw3000, app(app(ty_@2, cbf), cbg)) -> new_esEs5(vyw500, vyw3000, cbf, cbg) 25.19/10.96 new_esEs22(vyw500, vyw3000, ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.96 new_esEs28(vyw500, vyw3000, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs4(vyw500, vyw3000, daf, dag, dah) 25.19/10.96 new_esEs8(vyw500, vyw3000, ty_@0) -> new_esEs19(vyw500, vyw3000) 25.19/10.96 new_esEs28(vyw500, vyw3000, app(app(ty_Either, dab), dac)) -> new_esEs7(vyw500, vyw3000, dab, dac) 25.19/10.96 new_primCompAux0(vyw109, GT) -> GT 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), app(ty_Maybe, bcf)) -> new_ltEs4(vyw4610, vyw4810, bcf) 25.19/10.96 new_esEs25(vyw500, vyw3000, ty_Char) -> new_esEs13(vyw500, vyw3000) 25.19/10.96 new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False 25.19/10.96 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 25.19/10.96 new_ltEs19(vyw461, vyw481, app(ty_[], bdb)) -> new_ltEs11(vyw461, vyw481, bdb) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), app(ty_[], bdg), bdf) -> new_ltEs11(vyw4610, vyw4810, bdg) 25.19/10.96 new_lt8(vyw4610, vyw4810, ty_Char) -> new_lt4(vyw4610, vyw4810) 25.19/10.96 new_esEs20(vyw4610, vyw4810, app(app(ty_@2, ge), gf)) -> new_esEs5(vyw4610, vyw4810, ge, gf) 25.19/10.96 new_esEs25(vyw500, vyw3000, app(ty_Ratio, ccc)) -> new_esEs17(vyw500, vyw3000, ccc) 25.19/10.96 new_esEs31(vyw50, vyw300, app(ty_Ratio, bge)) -> new_esEs17(vyw50, vyw300, bge) 25.19/10.96 new_ltEs19(vyw461, vyw481, ty_Int) -> new_ltEs12(vyw461, vyw481) 25.19/10.96 new_esEs15(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) 25.19/10.96 new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) 25.19/10.96 new_esEs27(vyw502, vyw3002, ty_Bool) -> new_esEs10(vyw502, vyw3002) 25.19/10.96 new_esEs31(vyw50, vyw300, app(app(ty_@2, bh), ca)) -> new_esEs5(vyw50, vyw300, bh, ca) 25.19/10.96 new_esEs20(vyw4610, vyw4810, app(ty_Ratio, gh)) -> new_esEs17(vyw4610, vyw4810, gh) 25.19/10.96 new_primCompAux0(vyw109, LT) -> LT 25.19/10.96 new_esEs9(vyw501, vyw3001, ty_Char) -> new_esEs13(vyw501, vyw3001) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, app(ty_Ratio, che)) -> new_esEs17(vyw500, vyw3000, che) 25.19/10.96 new_not(True) -> False 25.19/10.96 new_lt8(vyw4610, vyw4810, ty_Bool) -> new_lt5(vyw4610, vyw4810) 25.19/10.96 new_ltEs19(vyw461, vyw481, app(ty_Ratio, caf)) -> new_ltEs17(vyw461, vyw481, caf) 25.19/10.96 new_lt21(vyw4610, vyw4810, app(app(ty_@2, dbf), dbg)) -> new_lt14(vyw4610, vyw4810, dbf, dbg) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, ty_Ordering) -> new_ltEs14(vyw4611, vyw4811) 25.19/10.96 new_esEs27(vyw502, vyw3002, ty_Double) -> new_esEs14(vyw502, vyw3002) 25.19/10.96 new_primCmpNat0(Zero, Zero) -> EQ 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_@0) -> new_ltEs8(vyw4610, vyw4810) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs9(vyw4610, vyw4810, bbh, bca, bcb) 25.19/10.96 new_esEs9(vyw501, vyw3001, ty_Int) -> new_esEs15(vyw501, vyw3001) 25.19/10.96 new_lt21(vyw4610, vyw4810, ty_Bool) -> new_lt5(vyw4610, vyw4810) 25.19/10.96 new_esEs21(vyw4611, vyw4811, app(ty_Ratio, bab)) -> new_esEs17(vyw4611, vyw4811, bab) 25.19/10.96 new_esEs20(vyw4610, vyw4810, app(app(ty_Either, ha), hb)) -> new_esEs7(vyw4610, vyw4810, ha, hb) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, ty_Int) -> new_ltEs12(vyw4611, vyw4811) 25.19/10.96 new_esEs9(vyw501, vyw3001, ty_Ordering) -> new_esEs11(vyw501, vyw3001) 25.19/10.96 new_esEs11(EQ, GT) -> False 25.19/10.96 new_esEs11(GT, EQ) -> False 25.19/10.96 new_primEqNat0(Succ(vyw5000), Zero) -> False 25.19/10.96 new_primEqNat0(Zero, Succ(vyw30000)) -> False 25.19/10.96 new_lt18(vyw460, vyw480, bga, bgb) -> new_esEs11(new_compare26(vyw460, vyw480, bga, bgb), LT) 25.19/10.96 new_compare112(vyw460, vyw480, False) -> GT 25.19/10.96 new_compare30(vyw460, vyw480, eg) -> new_compare24(vyw460, vyw480, new_esEs6(vyw460, vyw480, eg), eg) 25.19/10.96 new_esEs25(vyw500, vyw3000, ty_@0) -> new_esEs19(vyw500, vyw3000) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), app(ty_Ratio, bec), bdf) -> new_ltEs17(vyw4610, vyw4810, bec) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Char, bdf) -> new_ltEs7(vyw4610, vyw4810) 25.19/10.96 new_esEs30(vyw34, vyw35, vyw36, vyw37, False, bgf, bgg) -> new_esEs11(new_compare23(@2(vyw34, vyw35), @2(vyw36, vyw37), False, bgf, bgg), LT) 25.19/10.96 new_esEs32(vyw35, vyw37, ty_Float) -> new_esEs18(vyw35, vyw37) 25.19/10.96 new_ltEs14(EQ, EQ) -> True 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), ty_Float, ceh) -> new_esEs18(vyw500, vyw3000) 25.19/10.96 new_esEs32(vyw35, vyw37, ty_Double) -> new_esEs14(vyw35, vyw37) 25.19/10.96 new_compare17(Integer(vyw4600), Integer(vyw4800)) -> new_primCmpInt(vyw4600, vyw4800) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), app(app(ty_@2, bdh), bea), bdf) -> new_ltEs15(vyw4610, vyw4810, bdh, bea) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), ty_Bool, ceh) -> new_esEs10(vyw500, vyw3000) 25.19/10.96 new_compare29(:%(vyw4600, vyw4601), :%(vyw4800, vyw4801), ty_Int) -> new_compare12(new_sr(vyw4600, vyw4801), new_sr(vyw4800, vyw4601)) 25.19/10.96 new_esEs8(vyw500, vyw3000, app(app(ty_Either, cd), ce)) -> new_esEs7(vyw500, vyw3000, cd, ce) 25.19/10.96 new_esEs27(vyw502, vyw3002, ty_Int) -> new_esEs15(vyw502, vyw3002) 25.19/10.96 new_esEs31(vyw50, vyw300, ty_@0) -> new_esEs19(vyw50, vyw300) 25.19/10.96 new_ltEs11(vyw461, vyw481, bdb) -> new_fsEs(new_compare0(vyw461, vyw481, bdb)) 25.19/10.96 new_esEs32(vyw35, vyw37, ty_Bool) -> new_esEs10(vyw35, vyw37) 25.19/10.96 new_esEs24(vyw460, vyw480, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs4(vyw460, vyw480, fb, fc, fd) 25.19/10.96 new_esEs26(vyw501, vyw3001, ty_Bool) -> new_esEs10(vyw501, vyw3001) 25.19/10.96 new_compare14(vyw460, vyw480, True) -> LT 25.19/10.96 new_primCmpInt(Pos(Succ(vyw46000)), Neg(vyw4800)) -> GT 25.19/10.96 new_esEs24(vyw460, vyw480, ty_@0) -> new_esEs19(vyw460, vyw480) 25.19/10.96 new_esEs26(vyw501, vyw3001, ty_Int) -> new_esEs15(vyw501, vyw3001) 25.19/10.96 new_ltEs14(EQ, LT) -> False 25.19/10.96 new_ltEs10(vyw4612, vyw4812, ty_Int) -> new_ltEs12(vyw4612, vyw4812) 25.19/10.96 new_ltEs5(False, True) -> True 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, app(ty_Ratio, bff)) -> new_ltEs17(vyw4610, vyw4810, bff) 25.19/10.96 new_compare110(vyw460, vyw480, True, bga, bgb) -> LT 25.19/10.96 new_esEs8(vyw500, vyw3000, app(ty_Ratio, dd)) -> new_esEs17(vyw500, vyw3000, dd) 25.19/10.96 new_compare11(vyw84, vyw85, vyw86, vyw87, True, eh, fa) -> LT 25.19/10.96 new_lt9(vyw4611, vyw4811, app(app(ty_Either, bac), bad)) -> new_lt18(vyw4611, vyw4811, bac, bad) 25.19/10.96 new_esEs26(vyw501, vyw3001, ty_Double) -> new_esEs14(vyw501, vyw3001) 25.19/10.96 new_esEs29(vyw4610, vyw4810, ty_Char) -> new_esEs13(vyw4610, vyw4810) 25.19/10.96 new_lt8(vyw4610, vyw4810, app(app(app(ty_@3, ga), gb), gc)) -> new_lt6(vyw4610, vyw4810, ga, gb, gc) 25.19/10.96 new_lt21(vyw4610, vyw4810, ty_@0) -> new_lt13(vyw4610, vyw4810) 25.19/10.96 new_esEs26(vyw501, vyw3001, ty_Float) -> new_esEs18(vyw501, vyw3001) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, app(app(ty_Either, bfg), bfh)) -> new_ltEs18(vyw4610, vyw4810, bfg, bfh) 25.19/10.96 new_primCmpNat0(Zero, Succ(vyw48000)) -> LT 25.19/10.96 new_lt10(vyw460, vyw480, bgd) -> new_esEs11(new_compare0(vyw460, vyw480, bgd), LT) 25.19/10.96 new_esEs21(vyw4611, vyw4811, ty_Ordering) -> new_esEs11(vyw4611, vyw4811) 25.19/10.96 new_esEs21(vyw4611, vyw4811, app(app(ty_@2, hg), hh)) -> new_esEs5(vyw4611, vyw4811, hg, hh) 25.19/10.96 new_compare8(vyw460, vyw480) -> new_compare28(vyw460, vyw480, new_esEs10(vyw460, vyw480)) 25.19/10.96 new_compare9(Float(vyw4600, Pos(vyw46010)), Float(vyw4800, Neg(vyw48010))) -> new_compare12(new_sr(vyw4600, Pos(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) 25.19/10.96 new_compare9(Float(vyw4600, Neg(vyw46010)), Float(vyw4800, Pos(vyw48010))) -> new_compare12(new_sr(vyw4600, Neg(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.96 new_esEs29(vyw4610, vyw4810, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs4(vyw4610, vyw4810, dbb, dbc, dbd) 25.19/10.96 new_esEs21(vyw4611, vyw4811, ty_Int) -> new_esEs15(vyw4611, vyw4811) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Double) -> new_ltEs13(vyw4610, vyw4810) 25.19/10.96 new_lt8(vyw4610, vyw4810, ty_Ordering) -> new_lt7(vyw4610, vyw4810) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), ty_Double, ceh) -> new_esEs14(vyw500, vyw3000) 25.19/10.96 new_primCompAux1(vyw4600, vyw4800, vyw99, bgd) -> new_primCompAux0(vyw99, new_compare31(vyw4600, vyw4800, bgd)) 25.19/10.96 new_esEs25(vyw500, vyw3000, ty_Ordering) -> new_esEs11(vyw500, vyw3000) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs11(vyw500, vyw3000) 25.19/10.96 new_lt9(vyw4611, vyw4811, app(app(ty_@2, hg), hh)) -> new_lt14(vyw4611, vyw4811, hg, hh) 25.19/10.96 new_compare9(Float(vyw4600, Neg(vyw46010)), Float(vyw4800, Neg(vyw48010))) -> new_compare12(new_sr(vyw4600, Neg(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) 25.19/10.96 new_ltEs8(vyw461, vyw481) -> new_fsEs(new_compare16(vyw461, vyw481)) 25.19/10.96 new_esEs32(vyw35, vyw37, ty_Integer) -> new_esEs16(vyw35, vyw37) 25.19/10.96 new_primCmpNat0(Succ(vyw46000), Zero) -> GT 25.19/10.96 new_esEs9(vyw501, vyw3001, app(ty_[], df)) -> new_esEs12(vyw501, vyw3001, df) 25.19/10.96 new_esEs21(vyw4611, vyw4811, ty_@0) -> new_esEs19(vyw4611, vyw4811) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), app(app(ty_Either, bed), bee), bdf) -> new_ltEs18(vyw4610, vyw4810, bed, bee) 25.19/10.96 new_ltEs19(vyw461, vyw481, ty_Char) -> new_ltEs7(vyw461, vyw481) 25.19/10.96 new_pePe(False, vyw104) -> vyw104 25.19/10.96 new_compare18(vyw84, vyw85, vyw86, vyw87, False, vyw89, eh, fa) -> new_compare11(vyw84, vyw85, vyw86, vyw87, vyw89, eh, fa) 25.19/10.96 new_compare19(Double(vyw4600, Pos(vyw46010)), Double(vyw4800, Neg(vyw48010))) -> new_compare12(new_sr(vyw4600, Pos(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) 25.19/10.96 new_compare19(Double(vyw4600, Neg(vyw46010)), Double(vyw4800, Pos(vyw48010))) -> new_compare12(new_sr(vyw4600, Neg(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, ty_Float) -> new_esEs18(vyw500, vyw3000) 25.19/10.96 new_ltEs17(vyw461, vyw481, caf) -> new_fsEs(new_compare29(vyw461, vyw481, caf)) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), app(app(ty_Either, dfb), dfc)) -> new_esEs7(vyw500, vyw3000, dfb, dfc) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Int) -> new_ltEs12(vyw4610, vyw4810) 25.19/10.96 new_lt9(vyw4611, vyw4811, ty_Bool) -> new_lt5(vyw4611, vyw4811) 25.19/10.96 new_esEs26(vyw501, vyw3001, app(app(ty_@2, cch), cda)) -> new_esEs5(vyw501, vyw3001, cch, cda) 25.19/10.96 new_ltEs15(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), cad, cae) -> new_pePe(new_lt21(vyw4610, vyw4810, cad), new_asAs(new_esEs29(vyw4610, vyw4810, cad), new_ltEs20(vyw4611, vyw4811, cae))) 25.19/10.96 new_esEs23(vyw501, vyw3001, ty_Int) -> new_esEs15(vyw501, vyw3001) 25.19/10.96 new_esEs9(vyw501, vyw3001, app(app(ty_@2, ea), eb)) -> new_esEs5(vyw501, vyw3001, ea, eb) 25.19/10.96 new_compare10(vyw460, vyw480, False, eg) -> GT 25.19/10.96 new_ltEs7(vyw461, vyw481) -> new_fsEs(new_compare7(vyw461, vyw481)) 25.19/10.96 new_lt21(vyw4610, vyw4810, ty_Float) -> new_lt19(vyw4610, vyw4810) 25.19/10.96 new_compare23(vyw46, vyw48, True, cab, cac) -> EQ 25.19/10.96 new_lt21(vyw4610, vyw4810, ty_Double) -> new_lt12(vyw4610, vyw4810) 25.19/10.96 new_esEs32(vyw35, vyw37, app(ty_Maybe, bgh)) -> new_esEs6(vyw35, vyw37, bgh) 25.19/10.96 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 25.19/10.96 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 25.19/10.96 new_ltEs20(vyw4611, vyw4811, ty_Integer) -> new_ltEs16(vyw4611, vyw4811) 25.19/10.96 new_esEs24(vyw460, vyw480, ty_Char) -> new_esEs13(vyw460, vyw480) 25.19/10.96 new_compare24(vyw460, vyw480, True, eg) -> EQ 25.19/10.96 new_ltEs19(vyw461, vyw481, ty_Ordering) -> new_ltEs14(vyw461, vyw481) 25.19/10.96 new_esEs26(vyw501, vyw3001, app(ty_Ratio, cde)) -> new_esEs17(vyw501, vyw3001, cde) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, ty_Bool) -> new_esEs10(vyw500, vyw3000) 25.19/10.96 new_esEs9(vyw501, vyw3001, app(ty_Ratio, ef)) -> new_esEs17(vyw501, vyw3001, ef) 25.19/10.96 new_lt19(vyw460, vyw480) -> new_esEs11(new_compare9(vyw460, vyw480), LT) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs4(vyw500, vyw3000, dff, dfg, dfh) 25.19/10.96 new_lt9(vyw4611, vyw4811, ty_Ordering) -> new_lt7(vyw4611, vyw4811) 25.19/10.96 new_ltEs14(EQ, GT) -> True 25.19/10.96 new_esEs10(False, False) -> True 25.19/10.96 new_ltEs14(GT, EQ) -> False 25.19/10.96 new_fsEs(vyw90) -> new_not(new_esEs11(vyw90, GT)) 25.19/10.96 new_lt21(vyw4610, vyw4810, app(ty_Ratio, dca)) -> new_lt17(vyw4610, vyw4810, dca) 25.19/10.96 new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.19/10.96 new_esEs19(@0, @0) -> True 25.19/10.96 new_primCmpInt(Neg(Zero), Pos(Succ(vyw48000))) -> LT 25.19/10.96 new_esEs28(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.96 new_lt17(vyw460, vyw480, bgc) -> new_esEs11(new_compare29(vyw460, vyw480, bgc), LT) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Int, bdf) -> new_ltEs12(vyw4610, vyw4810) 25.19/10.96 new_primMulInt(Pos(vyw5010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw5010, vyw30000)) 25.19/10.96 new_esEs31(vyw50, vyw300, ty_Double) -> new_esEs14(vyw50, vyw300) 25.19/10.96 new_ltEs14(LT, GT) -> True 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), app(app(ty_Either, cfc), cfd), ceh) -> new_esEs7(vyw500, vyw3000, cfc, cfd) 25.19/10.96 new_lt8(vyw4610, vyw4810, ty_Integer) -> new_lt16(vyw4610, vyw4810) 25.19/10.96 new_ltEs14(GT, GT) -> True 25.19/10.96 new_lt9(vyw4611, vyw4811, ty_Double) -> new_lt12(vyw4611, vyw4811) 25.19/10.96 new_compare10(vyw460, vyw480, True, eg) -> LT 25.19/10.96 new_esEs9(vyw501, vyw3001, ty_Float) -> new_esEs18(vyw501, vyw3001) 25.19/10.96 new_esEs24(vyw460, vyw480, app(ty_Maybe, eg)) -> new_esEs6(vyw460, vyw480, eg) 25.19/10.96 new_esEs25(vyw500, vyw3000, ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.96 new_primMulNat0(Succ(vyw50100), Zero) -> Zero 25.19/10.96 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 25.19/10.96 new_esEs9(vyw501, vyw3001, ty_Bool) -> new_esEs10(vyw501, vyw3001) 25.19/10.96 new_lt13(vyw460, vyw480) -> new_esEs11(new_compare16(vyw460, vyw480), LT) 25.19/10.96 new_esEs25(vyw500, vyw3000, app(app(ty_Either, cbd), cbe)) -> new_esEs7(vyw500, vyw3000, cbd, cbe) 25.19/10.96 new_esEs26(vyw501, vyw3001, app(ty_[], cce)) -> new_esEs12(vyw501, vyw3001, cce) 25.19/10.96 new_esEs31(vyw50, vyw300, app(app(app(ty_@3, cag), cah), cba)) -> new_esEs4(vyw50, vyw300, cag, cah, cba) 25.19/10.96 new_primPlusNat1(Succ(vyw750), vyw300000) -> Succ(Succ(new_primPlusNat0(vyw750, vyw300000))) 25.19/10.96 new_ltEs5(True, False) -> False 25.19/10.96 new_compare28(vyw460, vyw480, False) -> new_compare14(vyw460, vyw480, new_ltEs5(vyw460, vyw480)) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, ty_@0) -> new_ltEs8(vyw4610, vyw4810) 25.19/10.96 new_esEs18(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs15(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, app(app(ty_Either, bbe), bbf)) -> new_ltEs18(vyw4612, vyw4812, bbe, bbf) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, ty_Integer) -> new_ltEs16(vyw4610, vyw4810) 25.19/10.96 new_lt8(vyw4610, vyw4810, ty_Double) -> new_lt12(vyw4610, vyw4810) 25.19/10.96 new_primPlusNat0(Succ(vyw7500), Zero) -> Succ(vyw7500) 25.19/10.96 new_primPlusNat0(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 25.19/10.96 new_lt5(vyw460, vyw480) -> new_esEs11(new_compare8(vyw460, vyw480), LT) 25.19/10.96 new_esEs11(LT, LT) -> True 25.19/10.96 new_esEs21(vyw4611, vyw4811, app(app(app(ty_@3, hc), hd), he)) -> new_esEs4(vyw4611, vyw4811, hc, hd, he) 25.19/10.96 new_primPlusNat1(Zero, vyw300000) -> Succ(vyw300000) 25.19/10.96 new_esEs24(vyw460, vyw480, app(ty_[], bgd)) -> new_esEs12(vyw460, vyw480, bgd) 25.19/10.96 new_lt8(vyw4610, vyw4810, ty_@0) -> new_lt13(vyw4610, vyw4810) 25.19/10.96 new_ltEs19(vyw461, vyw481, ty_Integer) -> new_ltEs16(vyw461, vyw481) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, ty_Float) -> new_ltEs6(vyw4612, vyw4812) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), app(app(app(ty_@3, bdc), bdd), bde), bdf) -> new_ltEs9(vyw4610, vyw4810, bdc, bdd, bde) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs19(vyw500, vyw3000) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), app(app(ty_Either, bch), bda)) -> new_ltEs18(vyw4610, vyw4810, bch, bda) 25.19/10.96 new_esEs20(vyw4610, vyw4810, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs4(vyw4610, vyw4810, ga, gb, gc) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, ty_Integer) -> new_ltEs16(vyw4612, vyw4812) 25.19/10.96 new_compare29(:%(vyw4600, vyw4601), :%(vyw4800, vyw4801), ty_Integer) -> new_compare17(new_sr0(vyw4600, vyw4801), new_sr0(vyw4800, vyw4601)) 25.19/10.96 new_ltEs19(vyw461, vyw481, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs9(vyw461, vyw481, ff, fg, fh) 25.19/10.96 new_esEs27(vyw502, vyw3002, ty_Char) -> new_esEs13(vyw502, vyw3002) 25.19/10.96 new_lt8(vyw4610, vyw4810, app(ty_Maybe, gg)) -> new_lt15(vyw4610, vyw4810, gg) 25.19/10.96 new_esEs24(vyw460, vyw480, ty_Bool) -> new_esEs10(vyw460, vyw480) 25.19/10.96 new_lt7(vyw460, vyw480) -> new_esEs11(new_compare15(vyw460, vyw480), LT) 25.19/10.96 new_esEs25(vyw500, vyw3000, app(ty_[], cbc)) -> new_esEs12(vyw500, vyw3000, cbc) 25.19/10.96 new_esEs24(vyw460, vyw480, ty_Float) -> new_esEs18(vyw460, vyw480) 25.19/10.96 new_lt4(vyw460, vyw480) -> new_esEs11(new_compare7(vyw460, vyw480), LT) 25.19/10.96 new_lt9(vyw4611, vyw4811, app(ty_Maybe, baa)) -> new_lt15(vyw4611, vyw4811, baa) 25.19/10.96 new_ltEs19(vyw461, vyw481, ty_Float) -> new_ltEs6(vyw461, vyw481) 25.19/10.96 new_lt9(vyw4611, vyw4811, ty_@0) -> new_lt13(vyw4611, vyw4811) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, ty_Double) -> new_ltEs13(vyw4611, vyw4811) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, ty_Float) -> new_ltEs6(vyw4610, vyw4810) 25.19/10.96 new_esEs9(vyw501, vyw3001, app(ty_Maybe, de)) -> new_esEs6(vyw501, vyw3001, de) 25.19/10.96 new_esEs28(vyw500, vyw3000, ty_Double) -> new_esEs14(vyw500, vyw3000) 25.19/10.96 new_lt9(vyw4611, vyw4811, ty_Integer) -> new_lt16(vyw4611, vyw4811) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, ty_@0) -> new_esEs19(vyw500, vyw3000) 25.19/10.96 new_lt14(vyw460, vyw480, bf, bg) -> new_esEs11(new_compare6(vyw460, vyw480, bf, bg), LT) 25.19/10.96 new_compare31(vyw4600, vyw4800, ty_Ordering) -> new_compare15(vyw4600, vyw4800) 25.19/10.96 new_esEs24(vyw460, vyw480, app(ty_Ratio, bgc)) -> new_esEs17(vyw460, vyw480, bgc) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs18(vyw500, vyw3000) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, ty_Double) -> new_ltEs13(vyw4610, vyw4810) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, ty_Float) -> new_ltEs6(vyw4611, vyw4811) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, app(app(ty_@2, bba), bbb)) -> new_ltEs15(vyw4612, vyw4812, bba, bbb) 25.19/10.96 new_esEs5(@2(vyw500, vyw501), @2(vyw3000, vyw3001), bh, ca) -> new_asAs(new_esEs8(vyw500, vyw3000, bh), new_esEs9(vyw501, vyw3001, ca)) 25.19/10.96 new_primMulInt(Neg(vyw5010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw5010, vyw30000)) 25.19/10.96 new_primCmpInt(Pos(Zero), Pos(Succ(vyw48000))) -> new_primCmpNat0(Zero, Succ(vyw48000)) 25.19/10.96 new_esEs29(vyw4610, vyw4810, ty_Double) -> new_esEs14(vyw4610, vyw4810) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), app(app(ty_@2, bcd), bce)) -> new_ltEs15(vyw4610, vyw4810, bcd, bce) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs10(vyw500, vyw3000) 25.19/10.96 new_compare11(vyw84, vyw85, vyw86, vyw87, False, eh, fa) -> GT 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), app(ty_Maybe, deh)) -> new_esEs6(vyw500, vyw3000, deh) 25.19/10.96 new_esEs6(Nothing, Just(vyw3000), chf) -> False 25.19/10.96 new_esEs6(Just(vyw500), Nothing, chf) -> False 25.19/10.96 new_lt20(vyw460, vyw480, app(ty_Ratio, bgc)) -> new_lt17(vyw460, vyw480, bgc) 25.19/10.96 new_ltEs19(vyw461, vyw481, ty_@0) -> new_ltEs8(vyw461, vyw481) 25.19/10.96 new_esEs32(vyw35, vyw37, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs4(vyw35, vyw37, bhf, bhg, bhh) 25.19/10.96 new_esEs6(Nothing, Nothing, chf) -> True 25.19/10.96 new_ltEs19(vyw461, vyw481, ty_Double) -> new_ltEs13(vyw461, vyw481) 25.19/10.96 new_esEs24(vyw460, vyw480, app(app(ty_@2, bf), bg)) -> new_esEs5(vyw460, vyw480, bf, bg) 25.19/10.96 new_esEs24(vyw460, vyw480, app(app(ty_Either, bga), bgb)) -> new_esEs7(vyw460, vyw480, bga, bgb) 25.19/10.96 new_esEs9(vyw501, vyw3001, ty_@0) -> new_esEs19(vyw501, vyw3001) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), ty_Char, ceh) -> new_esEs13(vyw500, vyw3000) 25.19/10.96 new_esEs29(vyw4610, vyw4810, ty_Integer) -> new_esEs16(vyw4610, vyw4810) 25.19/10.96 new_esEs8(vyw500, vyw3000, app(app(app(ty_@3, da), db), dc)) -> new_esEs4(vyw500, vyw3000, da, db, dc) 25.19/10.96 new_lt20(vyw460, vyw480, ty_Float) -> new_lt19(vyw460, vyw480) 25.19/10.96 new_esEs26(vyw501, vyw3001, ty_Char) -> new_esEs13(vyw501, vyw3001) 25.19/10.96 new_lt9(vyw4611, vyw4811, ty_Char) -> new_lt4(vyw4611, vyw4811) 25.19/10.96 new_compare112(vyw460, vyw480, True) -> LT 25.19/10.96 new_compare31(vyw4600, vyw4800, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_compare13(vyw4600, vyw4800, ddf, ddg, ddh) 25.19/10.96 new_ltEs14(GT, LT) -> False 25.19/10.96 new_esEs25(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.96 new_esEs24(vyw460, vyw480, ty_Int) -> new_esEs15(vyw460, vyw480) 25.19/10.96 new_lt15(vyw460, vyw480, eg) -> new_esEs11(new_compare30(vyw460, vyw480, eg), LT) 25.19/10.96 new_esEs27(vyw502, vyw3002, app(app(ty_@2, ceb), cec)) -> new_esEs5(vyw502, vyw3002, ceb, cec) 25.19/10.96 new_esEs26(vyw501, vyw3001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs4(vyw501, vyw3001, cdb, cdc, cdd) 25.19/10.96 new_esEs8(vyw500, vyw3000, ty_Float) -> new_esEs18(vyw500, vyw3000) 25.19/10.96 new_primMulInt(Pos(vyw5010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw5010, vyw30000)) 25.19/10.96 new_primMulInt(Neg(vyw5010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw5010, vyw30000)) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, app(app(app(ty_@3, dcd), dce), dcf)) -> new_ltEs9(vyw4611, vyw4811, dcd, dce, dcf) 25.19/10.96 new_esEs8(vyw500, vyw3000, ty_Bool) -> new_esEs10(vyw500, vyw3000) 25.19/10.96 new_esEs26(vyw501, vyw3001, app(app(ty_Either, ccf), ccg)) -> new_esEs7(vyw501, vyw3001, ccf, ccg) 25.19/10.96 new_esEs27(vyw502, vyw3002, app(ty_Ratio, ceg)) -> new_esEs17(vyw502, vyw3002, ceg) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, ty_@0) -> new_ltEs8(vyw4611, vyw4811) 25.19/10.96 new_compare28(vyw460, vyw480, True) -> EQ 25.19/10.96 new_esEs31(vyw50, vyw300, app(ty_Maybe, chf)) -> new_esEs6(vyw50, vyw300, chf) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Ordering) -> new_ltEs14(vyw4610, vyw4810) 25.19/10.96 new_compare31(vyw4600, vyw4800, app(ty_[], dea)) -> new_compare0(vyw4600, vyw4800, dea) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Bool) -> new_ltEs5(vyw4610, vyw4810) 25.19/10.96 new_esEs17(:%(vyw500, vyw501), :%(vyw3000, vyw3001), bge) -> new_asAs(new_esEs22(vyw500, vyw3000, bge), new_esEs23(vyw501, vyw3001, bge)) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, cfg), cfh), cga), ceh) -> new_esEs4(vyw500, vyw3000, cfg, cfh, cga) 25.19/10.96 new_compare14(vyw460, vyw480, False) -> GT 25.19/10.96 new_esEs24(vyw460, vyw480, ty_Ordering) -> new_esEs11(vyw460, vyw480) 25.19/10.96 new_lt21(vyw4610, vyw4810, ty_Int) -> new_lt11(vyw4610, vyw4810) 25.19/10.96 new_compare111(vyw460, vyw480, False, fb, fc, fd) -> GT 25.19/10.96 new_sr0(Integer(vyw46000), Integer(vyw48010)) -> Integer(new_primMulInt(vyw46000, vyw48010)) 25.19/10.96 new_esEs24(vyw460, vyw480, ty_Double) -> new_esEs14(vyw460, vyw480) 25.19/10.96 new_ltEs5(False, False) -> True 25.19/10.96 new_lt8(vyw4610, vyw4810, app(ty_[], gd)) -> new_lt10(vyw4610, vyw4810, gd) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs13(vyw500, vyw3000) 25.19/10.96 new_esEs29(vyw4610, vyw4810, ty_Bool) -> new_esEs10(vyw4610, vyw4810) 25.19/10.96 new_esEs32(vyw35, vyw37, app(app(ty_Either, bhb), bhc)) -> new_esEs7(vyw35, vyw37, bhb, bhc) 25.19/10.96 new_ltEs6(vyw461, vyw481) -> new_fsEs(new_compare9(vyw461, vyw481)) 25.19/10.96 new_compare9(Float(vyw4600, Pos(vyw46010)), Float(vyw4800, Pos(vyw48010))) -> new_compare12(new_sr(vyw4600, Pos(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) 25.19/10.96 new_esEs25(vyw500, vyw3000, ty_Float) -> new_esEs18(vyw500, vyw3000) 25.19/10.96 new_lt9(vyw4611, vyw4811, app(ty_Ratio, bab)) -> new_lt17(vyw4611, vyw4811, bab) 25.19/10.96 new_esEs20(vyw4610, vyw4810, ty_Float) -> new_esEs18(vyw4610, vyw4810) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Bool, bdf) -> new_ltEs5(vyw4610, vyw4810) 25.19/10.96 new_ltEs19(vyw461, vyw481, app(app(ty_@2, cad), cae)) -> new_ltEs15(vyw461, vyw481, cad, cae) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), app(app(ty_@2, dfd), dfe)) -> new_esEs5(vyw500, vyw3000, dfd, dfe) 25.19/10.96 new_compare0([], :(vyw4800, vyw4801), bgd) -> LT 25.19/10.96 new_asAs(True, vyw56) -> vyw56 25.19/10.96 new_esEs25(vyw500, vyw3000, ty_Bool) -> new_esEs10(vyw500, vyw3000) 25.19/10.96 new_esEs21(vyw4611, vyw4811, app(ty_Maybe, baa)) -> new_esEs6(vyw4611, vyw4811, baa) 25.19/10.96 new_lt8(vyw4610, vyw4810, ty_Int) -> new_lt11(vyw4610, vyw4810) 25.19/10.96 new_esEs4(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cag, cah, cba) -> new_asAs(new_esEs25(vyw500, vyw3000, cag), new_asAs(new_esEs26(vyw501, vyw3001, cah), new_esEs27(vyw502, vyw3002, cba))) 25.19/10.96 new_esEs9(vyw501, vyw3001, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs4(vyw501, vyw3001, ec, ed, ee) 25.19/10.96 new_ltEs4(Nothing, Just(vyw4810), bbg) -> True 25.19/10.96 new_esEs28(vyw500, vyw3000, ty_Ordering) -> new_esEs11(vyw500, vyw3000) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Ordering, bdf) -> new_ltEs14(vyw4610, vyw4810) 25.19/10.96 new_esEs31(vyw50, vyw300, ty_Integer) -> new_esEs16(vyw50, vyw300) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Float) -> new_ltEs6(vyw4610, vyw4810) 25.19/10.96 new_esEs32(vyw35, vyw37, ty_@0) -> new_esEs19(vyw35, vyw37) 25.19/10.96 new_esEs28(vyw500, vyw3000, ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.96 new_lt12(vyw460, vyw480) -> new_esEs11(new_compare19(vyw460, vyw480), LT) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), app(ty_Ratio, dga)) -> new_esEs17(vyw500, vyw3000, dga) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, app(app(ty_@2, dch), dda)) -> new_ltEs15(vyw4611, vyw4811, dch, dda) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), ty_@0, ceh) -> new_esEs19(vyw500, vyw3000) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Float, bdf) -> new_ltEs6(vyw4610, vyw4810) 25.19/10.96 new_esEs31(vyw50, vyw300, ty_Float) -> new_esEs18(vyw50, vyw300) 25.19/10.96 new_compare31(vyw4600, vyw4800, ty_@0) -> new_compare16(vyw4600, vyw4800) 25.19/10.96 new_primCmpInt(Pos(Succ(vyw46000)), Pos(vyw4800)) -> new_primCmpNat0(Succ(vyw46000), vyw4800) 25.19/10.96 new_lt20(vyw460, vyw480, app(ty_[], bgd)) -> new_lt10(vyw460, vyw480, bgd) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Integer) -> new_ltEs16(vyw4610, vyw4810) 25.19/10.96 new_compare0([], [], bgd) -> EQ 25.19/10.96 new_sr(vyw501, vyw3000) -> new_primMulInt(vyw501, vyw3000) 25.19/10.96 new_esEs28(vyw500, vyw3000, ty_Char) -> new_esEs13(vyw500, vyw3000) 25.19/10.96 new_esEs8(vyw500, vyw3000, app(ty_Maybe, cb)) -> new_esEs6(vyw500, vyw3000, cb) 25.19/10.96 new_esEs21(vyw4611, vyw4811, app(app(ty_Either, bac), bad)) -> new_esEs7(vyw4611, vyw4811, bac, bad) 25.19/10.96 new_esEs20(vyw4610, vyw4810, ty_Ordering) -> new_esEs11(vyw4610, vyw4810) 25.19/10.96 new_primMulNat0(Zero, Zero) -> Zero 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs9(vyw4610, vyw4810, beg, beh, bfa) 25.19/10.96 new_compare16(@0, @0) -> EQ 25.19/10.96 new_lt8(vyw4610, vyw4810, ty_Float) -> new_lt19(vyw4610, vyw4810) 25.19/10.96 new_esEs8(vyw500, vyw3000, ty_Double) -> new_esEs14(vyw500, vyw3000) 25.19/10.96 new_lt16(vyw460, vyw480) -> new_esEs11(new_compare17(vyw460, vyw480), LT) 25.19/10.96 new_esEs20(vyw4610, vyw4810, ty_Int) -> new_esEs15(vyw4610, vyw4810) 25.19/10.96 new_lt21(vyw4610, vyw4810, app(ty_[], dbe)) -> new_lt10(vyw4610, vyw4810, dbe) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, app(ty_Maybe, bfe)) -> new_ltEs4(vyw4610, vyw4810, bfe) 25.19/10.96 new_compare19(Double(vyw4600, Neg(vyw46010)), Double(vyw4800, Neg(vyw48010))) -> new_compare12(new_sr(vyw4600, Neg(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) 25.19/10.96 new_esEs20(vyw4610, vyw4810, ty_Integer) -> new_esEs16(vyw4610, vyw4810) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), app(app(ty_@2, cfe), cff), ceh) -> new_esEs5(vyw500, vyw3000, cfe, cff) 25.19/10.96 new_compare31(vyw4600, vyw4800, app(ty_Ratio, dee)) -> new_compare29(vyw4600, vyw4800, dee) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), app(ty_[], dfa)) -> new_esEs12(vyw500, vyw3000, dfa) 25.19/10.96 new_esEs9(vyw501, vyw3001, ty_Integer) -> new_esEs16(vyw501, vyw3001) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, ty_@0) -> new_ltEs8(vyw4612, vyw4812) 25.19/10.96 new_esEs9(vyw501, vyw3001, app(app(ty_Either, dg), dh)) -> new_esEs7(vyw501, vyw3001, dg, dh) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), app(ty_Maybe, cfa), ceh) -> new_esEs6(vyw500, vyw3000, cfa) 25.19/10.96 new_esEs31(vyw50, vyw300, ty_Bool) -> new_esEs10(vyw50, vyw300) 25.19/10.96 new_esEs26(vyw501, vyw3001, app(ty_Maybe, ccd)) -> new_esEs6(vyw501, vyw3001, ccd) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, ty_Double) -> new_esEs14(vyw500, vyw3000) 25.19/10.96 new_esEs21(vyw4611, vyw4811, ty_Bool) -> new_esEs10(vyw4611, vyw4811) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, ty_Double) -> new_ltEs13(vyw4612, vyw4812) 25.19/10.96 new_esEs32(vyw35, vyw37, app(app(ty_@2, bhd), bhe)) -> new_esEs5(vyw35, vyw37, bhd, bhe) 25.19/10.96 new_primCompAux0(vyw109, EQ) -> vyw109 25.19/10.96 new_esEs8(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.96 new_esEs20(vyw4610, vyw4810, ty_Double) -> new_esEs14(vyw4610, vyw4810) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, ty_Ordering) -> new_esEs11(vyw500, vyw3000) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, ty_Char) -> new_ltEs7(vyw4611, vyw4811) 25.19/10.96 new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False 25.19/10.96 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 25.19/10.96 new_ltEs16(vyw461, vyw481) -> new_fsEs(new_compare17(vyw461, vyw481)) 25.19/10.96 new_esEs25(vyw500, vyw3000, app(ty_Maybe, cbb)) -> new_esEs6(vyw500, vyw3000, cbb) 25.19/10.96 new_esEs20(vyw4610, vyw4810, ty_Bool) -> new_esEs10(vyw4610, vyw4810) 25.19/10.96 new_esEs27(vyw502, vyw3002, app(ty_[], cdg)) -> new_esEs12(vyw502, vyw3002, cdg) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, app(app(ty_Either, ddd), dde)) -> new_ltEs18(vyw4611, vyw4811, ddd, dde) 25.19/10.96 new_esEs11(GT, GT) -> True 25.19/10.96 new_esEs21(vyw4611, vyw4811, ty_Float) -> new_esEs18(vyw4611, vyw4811) 25.19/10.96 new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.19/10.96 new_compare31(vyw4600, vyw4800, ty_Float) -> new_compare9(vyw4600, vyw4800) 25.19/10.96 new_esEs11(EQ, EQ) -> True 25.19/10.96 new_esEs8(vyw500, vyw3000, ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.96 new_compare31(vyw4600, vyw4800, ty_Bool) -> new_compare8(vyw4600, vyw4800) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, app(app(app(ty_@3, bae), baf), bag)) -> new_ltEs9(vyw4612, vyw4812, bae, baf, bag) 25.19/10.96 new_esEs20(vyw4610, vyw4810, app(ty_Maybe, gg)) -> new_esEs6(vyw4610, vyw4810, gg) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, app(app(ty_@2, cgh), cha)) -> new_esEs5(vyw500, vyw3000, cgh, cha) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, app(app(ty_Either, cgf), cgg)) -> new_esEs7(vyw500, vyw3000, cgf, cgg) 25.19/10.96 new_lt9(vyw4611, vyw4811, ty_Int) -> new_lt11(vyw4611, vyw4811) 25.19/10.96 new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False 25.19/10.96 new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, app(ty_Maybe, cgd)) -> new_esEs6(vyw500, vyw3000, cgd) 25.19/10.96 new_lt21(vyw4610, vyw4810, app(ty_Maybe, dbh)) -> new_lt15(vyw4610, vyw4810, dbh) 25.19/10.96 new_primCmpInt(Neg(Zero), Neg(Succ(vyw48000))) -> new_primCmpNat0(Succ(vyw48000), Zero) 25.19/10.96 new_esEs12(:(vyw500, vyw501), :(vyw3000, vyw3001), chg) -> new_asAs(new_esEs28(vyw500, vyw3000, chg), new_esEs12(vyw501, vyw3001, chg)) 25.19/10.96 new_ltEs19(vyw461, vyw481, app(app(ty_Either, bef), bdf)) -> new_ltEs18(vyw461, vyw481, bef, bdf) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, ty_Char) -> new_ltEs7(vyw4610, vyw4810) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.96 new_esEs8(vyw500, vyw3000, ty_Ordering) -> new_esEs11(vyw500, vyw3000) 25.19/10.96 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.19/10.96 new_esEs21(vyw4611, vyw4811, ty_Integer) -> new_esEs16(vyw4611, vyw4811) 25.19/10.96 new_esEs14(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs15(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.19/10.96 new_compare31(vyw4600, vyw4800, ty_Char) -> new_compare7(vyw4600, vyw4800) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), ty_Integer, ceh) -> new_esEs16(vyw500, vyw3000) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, ty_Char) -> new_ltEs7(vyw4612, vyw4812) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, ty_Int) -> new_ltEs12(vyw4610, vyw4810) 25.19/10.96 new_ltEs19(vyw461, vyw481, ty_Bool) -> new_ltEs5(vyw461, vyw481) 25.19/10.96 new_compare13(vyw460, vyw480, fb, fc, fd) -> new_compare210(vyw460, vyw480, new_esEs4(vyw460, vyw480, fb, fc, fd), fb, fc, fd) 25.19/10.96 new_esEs31(vyw50, vyw300, ty_Int) -> new_esEs15(vyw50, vyw300) 25.19/10.96 new_esEs13(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) 25.19/10.96 new_esEs28(vyw500, vyw3000, ty_Bool) -> new_esEs10(vyw500, vyw3000) 25.19/10.96 new_lt6(vyw460, vyw480, fb, fc, fd) -> new_esEs11(new_compare13(vyw460, vyw480, fb, fc, fd), LT) 25.19/10.96 new_compare26(vyw460, vyw480, bga, bgb) -> new_compare27(vyw460, vyw480, new_esEs7(vyw460, vyw480, bga, bgb), bga, bgb) 25.19/10.96 new_ltEs13(vyw461, vyw481) -> new_fsEs(new_compare19(vyw461, vyw481)) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, ty_Bool) -> new_ltEs5(vyw4612, vyw4812) 25.19/10.96 new_compare31(vyw4600, vyw4800, ty_Integer) -> new_compare17(vyw4600, vyw4800) 25.19/10.96 new_compare23(@2(vyw460, vyw461), @2(vyw480, vyw481), False, cab, cac) -> new_compare18(vyw460, vyw461, vyw480, vyw481, new_lt20(vyw460, vyw480, cab), new_asAs(new_esEs24(vyw460, vyw480, cab), new_ltEs19(vyw461, vyw481, cac)), cab, cac) 25.19/10.96 new_esEs27(vyw502, vyw3002, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs4(vyw502, vyw3002, ced, cee, cef) 25.19/10.96 new_lt8(vyw4610, vyw4810, app(ty_Ratio, gh)) -> new_lt17(vyw4610, vyw4810, gh) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, app(app(app(ty_@3, chb), chc), chd)) -> new_esEs4(vyw500, vyw3000, chb, chc, chd) 25.19/10.96 new_not(False) -> True 25.19/10.96 new_esEs26(vyw501, vyw3001, ty_Integer) -> new_esEs16(vyw501, vyw3001) 25.19/10.96 new_esEs21(vyw4611, vyw4811, app(ty_[], hf)) -> new_esEs12(vyw4611, vyw4811, hf) 25.19/10.96 new_esEs21(vyw4611, vyw4811, ty_Double) -> new_esEs14(vyw4611, vyw4811) 25.19/10.96 new_esEs28(vyw500, vyw3000, app(ty_[], daa)) -> new_esEs12(vyw500, vyw3000, daa) 25.19/10.96 new_esEs28(vyw500, vyw3000, ty_Float) -> new_esEs18(vyw500, vyw3000) 25.19/10.96 new_esEs27(vyw502, vyw3002, app(app(ty_Either, cdh), cea)) -> new_esEs7(vyw502, vyw3002, cdh, cea) 25.19/10.96 new_compare0(:(vyw4600, vyw4601), [], bgd) -> GT 25.19/10.96 new_primPlusNat0(Succ(vyw7500), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat0(vyw7500, vyw3000000))) 25.19/10.96 new_esEs32(vyw35, vyw37, app(ty_Ratio, caa)) -> new_esEs17(vyw35, vyw37, caa) 25.19/10.96 new_esEs16(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) 25.19/10.96 new_esEs27(vyw502, vyw3002, ty_Ordering) -> new_esEs11(vyw502, vyw3002) 25.19/10.96 new_esEs25(vyw500, vyw3000, ty_Double) -> new_esEs14(vyw500, vyw3000) 25.19/10.96 new_compare27(vyw460, vyw480, True, bga, bgb) -> EQ 25.19/10.96 new_compare25(vyw460, vyw480, True) -> EQ 25.19/10.96 new_ltEs10(vyw4612, vyw4812, app(ty_Maybe, bbc)) -> new_ltEs4(vyw4612, vyw4812, bbc) 25.19/10.96 new_esEs28(vyw500, vyw3000, ty_@0) -> new_esEs19(vyw500, vyw3000) 25.19/10.96 new_compare6(vyw460, vyw480, bf, bg) -> new_compare23(vyw460, vyw480, new_esEs5(vyw460, vyw480, bf, bg), bf, bg) 25.19/10.96 new_esEs10(True, True) -> True 25.19/10.96 new_ltEs10(vyw4612, vyw4812, ty_Ordering) -> new_ltEs14(vyw4612, vyw4812) 25.19/10.96 new_lt20(vyw460, vyw480, ty_Char) -> new_lt4(vyw460, vyw480) 25.19/10.96 new_lt20(vyw460, vyw480, ty_Int) -> new_lt11(vyw460, vyw480) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, app(ty_Ratio, ddc)) -> new_ltEs17(vyw4611, vyw4811, ddc) 25.19/10.96 new_esEs22(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.96 new_compare27(vyw460, vyw480, False, bga, bgb) -> new_compare110(vyw460, vyw480, new_ltEs18(vyw460, vyw480, bga, bgb), bga, bgb) 25.19/10.96 new_lt20(vyw460, vyw480, app(ty_Maybe, eg)) -> new_lt15(vyw460, vyw480, eg) 25.19/10.96 new_lt20(vyw460, vyw480, app(app(ty_Either, bga), bgb)) -> new_lt18(vyw460, vyw480, bga, bgb) 25.19/10.96 new_lt21(vyw4610, vyw4810, ty_Integer) -> new_lt16(vyw4610, vyw4810) 25.19/10.96 new_esEs29(vyw4610, vyw4810, app(ty_Maybe, dbh)) -> new_esEs6(vyw4610, vyw4810, dbh) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), app(ty_Ratio, bcg)) -> new_ltEs17(vyw4610, vyw4810, bcg) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), app(ty_Maybe, beb), bdf) -> new_ltEs4(vyw4610, vyw4810, beb) 25.19/10.96 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.19/10.96 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.19/10.96 new_esEs25(vyw500, vyw3000, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs4(vyw500, vyw3000, cbh, cca, ccb) 25.19/10.96 new_esEs31(vyw50, vyw300, app(app(ty_Either, cgc), ceh)) -> new_esEs7(vyw50, vyw300, cgc, ceh) 25.19/10.96 new_ltEs5(True, True) -> True 25.19/10.96 new_esEs28(vyw500, vyw3000, app(app(ty_@2, dad), dae)) -> new_esEs5(vyw500, vyw3000, dad, dae) 25.19/10.96 new_ltEs14(LT, EQ) -> True 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Integer, bdf) -> new_ltEs16(vyw4610, vyw4810) 25.19/10.96 new_compare31(vyw4600, vyw4800, app(app(ty_@2, deb), dec)) -> new_compare6(vyw4600, vyw4800, deb, dec) 25.19/10.96 new_lt9(vyw4611, vyw4811, ty_Float) -> new_lt19(vyw4611, vyw4811) 25.19/10.96 new_esEs32(vyw35, vyw37, app(ty_[], bha)) -> new_esEs12(vyw35, vyw37, bha) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), app(ty_[], bcc)) -> new_ltEs11(vyw4610, vyw4810, bcc) 25.19/10.96 new_esEs30(vyw34, vyw35, vyw36, vyw37, True, bgf, bgg) -> new_esEs11(new_compare23(@2(vyw34, vyw35), @2(vyw36, vyw37), new_esEs32(vyw35, vyw37, bgg), bgf, bgg), LT) 25.19/10.96 new_esEs9(vyw501, vyw3001, ty_Double) -> new_esEs14(vyw501, vyw3001) 25.19/10.96 new_ltEs18(Left(vyw4610), Right(vyw4810), bef, bdf) -> True 25.19/10.96 new_esEs31(vyw50, vyw300, ty_Ordering) -> new_esEs11(vyw50, vyw300) 25.19/10.96 new_esEs28(vyw500, vyw3000, app(ty_Ratio, dba)) -> new_esEs17(vyw500, vyw3000, dba) 25.19/10.96 new_esEs28(vyw500, vyw3000, app(ty_Maybe, chh)) -> new_esEs6(vyw500, vyw3000, chh) 25.19/10.96 new_esEs8(vyw500, vyw3000, ty_Char) -> new_esEs13(vyw500, vyw3000) 25.19/10.96 new_esEs31(vyw50, vyw300, app(ty_[], chg)) -> new_esEs12(vyw50, vyw300, chg) 25.19/10.96 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.19/10.96 new_compare31(vyw4600, vyw4800, app(app(ty_Either, def), deg)) -> new_compare26(vyw4600, vyw4800, def, deg) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, app(ty_Ratio, bbd)) -> new_ltEs17(vyw4612, vyw4812, bbd) 25.19/10.96 new_esEs26(vyw501, vyw3001, ty_@0) -> new_esEs19(vyw501, vyw3001) 25.19/10.96 new_esEs29(vyw4610, vyw4810, ty_Int) -> new_esEs15(vyw4610, vyw4810) 25.19/10.96 new_ltEs18(Right(vyw4610), Left(vyw4810), bef, bdf) -> False 25.19/10.96 new_compare7(Char(vyw4600), Char(vyw4800)) -> new_primCmpNat0(vyw4600, vyw4800) 25.19/10.96 new_compare31(vyw4600, vyw4800, ty_Double) -> new_compare19(vyw4600, vyw4800) 25.19/10.96 new_primCmpNat0(Succ(vyw46000), Succ(vyw48000)) -> new_primCmpNat0(vyw46000, vyw48000) 25.19/10.96 new_lt21(vyw4610, vyw4810, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_lt6(vyw4610, vyw4810, dbb, dbc, dbd) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, ty_Char) -> new_esEs13(vyw500, vyw3000) 25.19/10.96 new_lt20(vyw460, vyw480, app(app(ty_@2, bf), bg)) -> new_lt14(vyw460, vyw480, bf, bg) 25.19/10.96 new_esEs27(vyw502, vyw3002, app(ty_Maybe, cdf)) -> new_esEs6(vyw502, vyw3002, cdf) 25.19/10.96 new_ltEs12(vyw461, vyw481) -> new_fsEs(new_compare12(vyw461, vyw481)) 25.19/10.96 new_compare12(vyw460, vyw480) -> new_primCmpInt(vyw460, vyw480) 25.19/10.96 new_compare24(vyw460, vyw480, False, eg) -> new_compare10(vyw460, vyw480, new_ltEs4(vyw460, vyw480, eg), eg) 25.19/10.96 new_esEs12([], [], chg) -> True 25.19/10.96 new_ltEs10(vyw4612, vyw4812, app(ty_[], bah)) -> new_ltEs11(vyw4612, vyw4812, bah) 25.19/10.96 new_lt20(vyw460, vyw480, ty_Bool) -> new_lt5(vyw460, vyw480) 25.19/10.96 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.19/10.96 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.19/10.96 new_lt20(vyw460, vyw480, app(app(app(ty_@3, fb), fc), fd)) -> new_lt6(vyw460, vyw480, fb, fc, fd) 25.19/10.96 new_esEs20(vyw4610, vyw4810, ty_Char) -> new_esEs13(vyw4610, vyw4810) 25.19/10.96 new_compare19(Double(vyw4600, Pos(vyw46010)), Double(vyw4800, Pos(vyw48010))) -> new_compare12(new_sr(vyw4600, Pos(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) 25.19/10.96 new_lt21(vyw4610, vyw4810, ty_Ordering) -> new_lt7(vyw4610, vyw4810) 25.19/10.96 new_ltEs19(vyw461, vyw481, app(ty_Maybe, bbg)) -> new_ltEs4(vyw461, vyw481, bbg) 25.19/10.96 new_compare110(vyw460, vyw480, False, bga, bgb) -> GT 25.19/10.96 new_lt20(vyw460, vyw480, ty_Integer) -> new_lt16(vyw460, vyw480) 25.19/10.96 new_lt21(vyw4610, vyw4810, app(app(ty_Either, dcb), dcc)) -> new_lt18(vyw4610, vyw4810, dcb, dcc) 25.19/10.96 new_primEqNat0(Zero, Zero) -> True 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_@0, bdf) -> new_ltEs8(vyw4610, vyw4810) 25.19/10.96 new_esEs29(vyw4610, vyw4810, app(app(ty_@2, dbf), dbg)) -> new_esEs5(vyw4610, vyw4810, dbf, dbg) 25.19/10.96 new_compare31(vyw4600, vyw4800, app(ty_Maybe, ded)) -> new_compare30(vyw4600, vyw4800, ded) 25.19/10.96 new_esEs29(vyw4610, vyw4810, app(ty_Ratio, dca)) -> new_esEs17(vyw4610, vyw4810, dca) 25.19/10.96 new_asAs(False, vyw56) -> False 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs14(vyw500, vyw3000) 25.19/10.96 new_lt11(vyw460, vyw480) -> new_esEs11(new_compare12(vyw460, vyw480), LT) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, ty_Bool) -> new_ltEs5(vyw4611, vyw4811) 25.19/10.96 new_ltEs14(LT, LT) -> True 25.19/10.96 new_esEs21(vyw4611, vyw4811, ty_Char) -> new_esEs13(vyw4611, vyw4811) 25.19/10.96 new_esEs29(vyw4610, vyw4810, app(app(ty_Either, dcb), dcc)) -> new_esEs7(vyw4610, vyw4810, dcb, dcc) 25.19/10.96 new_esEs24(vyw460, vyw480, ty_Integer) -> new_esEs16(vyw460, vyw480) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, app(ty_Maybe, ddb)) -> new_ltEs4(vyw4611, vyw4811, ddb) 25.19/10.96 new_esEs27(vyw502, vyw3002, ty_@0) -> new_esEs19(vyw502, vyw3002) 25.19/10.96 new_esEs29(vyw4610, vyw4810, ty_Float) -> new_esEs18(vyw4610, vyw4810) 25.19/10.96 new_lt9(vyw4611, vyw4811, app(ty_[], hf)) -> new_lt10(vyw4611, vyw4811, hf) 25.19/10.96 new_esEs7(Left(vyw500), Right(vyw3000), cgc, ceh) -> False 25.19/10.96 new_esEs7(Right(vyw500), Left(vyw3000), cgc, ceh) -> False 25.19/10.96 new_esEs32(vyw35, vyw37, ty_Char) -> new_esEs13(vyw35, vyw37) 25.19/10.96 new_compare15(vyw460, vyw480) -> new_compare25(vyw460, vyw480, new_esEs11(vyw460, vyw480)) 25.19/10.96 new_compare25(vyw460, vyw480, False) -> new_compare112(vyw460, vyw480, new_ltEs14(vyw460, vyw480)) 25.19/10.96 new_compare18(vyw84, vyw85, vyw86, vyw87, True, vyw89, eh, fa) -> new_compare11(vyw84, vyw85, vyw86, vyw87, True, eh, fa) 25.19/10.96 new_esEs29(vyw4610, vyw4810, ty_Ordering) -> new_esEs11(vyw4610, vyw4810) 25.19/10.96 25.19/10.96 The set Q consists of the following terms: 25.19/10.96 25.19/10.96 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.19/10.96 new_esEs20(x0, x1, ty_@0) 25.19/10.96 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_compare23(x0, x1, True, x2, x3) 25.19/10.96 new_ltEs20(x0, x1, ty_Integer) 25.19/10.96 new_esEs27(x0, x1, ty_Double) 25.19/10.96 new_esEs9(x0, x1, app(ty_[], x2)) 25.19/10.96 new_esEs24(x0, x1, ty_Integer) 25.19/10.96 new_primPlusNat0(Zero, Succ(x0)) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.19/10.96 new_esEs28(x0, x1, ty_Integer) 25.19/10.96 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.19/10.96 new_compare10(x0, x1, True, x2) 25.19/10.96 new_esEs21(x0, x1, ty_Integer) 25.19/10.96 new_esEs20(x0, x1, ty_Bool) 25.19/10.96 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_lt21(x0, x1, ty_Int) 25.19/10.96 new_esEs9(x0, x1, ty_Bool) 25.19/10.96 new_lt9(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_esEs8(x0, x1, ty_Bool) 25.19/10.96 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.19/10.96 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.19/10.96 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.19/10.96 new_esEs9(x0, x1, ty_Integer) 25.19/10.96 new_esEs22(x0, x1, ty_Integer) 25.19/10.96 new_esEs21(x0, x1, ty_Bool) 25.19/10.96 new_ltEs18(Left(x0), Right(x1), x2, x3) 25.19/10.96 new_ltEs18(Right(x0), Left(x1), x2, x3) 25.19/10.96 new_esEs8(x0, x1, ty_@0) 25.19/10.96 new_compare112(x0, x1, False) 25.19/10.96 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 25.19/10.96 new_primMulNat0(Succ(x0), Succ(x1)) 25.19/10.96 new_ltEs13(x0, x1) 25.19/10.96 new_primEqInt(Pos(Zero), Pos(Zero)) 25.19/10.96 new_esEs6(Nothing, Just(x0), x1) 25.19/10.96 new_lt14(x0, x1, x2, x3) 25.19/10.96 new_esEs28(x0, x1, ty_Bool) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), ty_Char) 25.19/10.96 new_ltEs20(x0, x1, ty_Bool) 25.19/10.96 new_esEs26(x0, x1, ty_Double) 25.19/10.96 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.19/10.96 new_lt8(x0, x1, ty_Float) 25.19/10.96 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_ltEs5(False, True) 25.19/10.96 new_ltEs5(True, False) 25.19/10.96 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 25.19/10.96 new_esEs27(x0, x1, ty_Ordering) 25.19/10.96 new_ltEs11(x0, x1, x2) 25.19/10.96 new_ltEs14(LT, LT) 25.19/10.96 new_lt9(x0, x1, ty_Float) 25.19/10.96 new_esEs7(Left(x0), Right(x1), x2, x3) 25.19/10.96 new_esEs7(Right(x0), Left(x1), x2, x3) 25.19/10.96 new_esEs27(x0, x1, ty_Int) 25.19/10.96 new_primEqInt(Neg(Zero), Neg(Zero)) 25.19/10.96 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), ty_Bool) 25.19/10.96 new_lt21(x0, x1, ty_Double) 25.19/10.96 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.19/10.96 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_lt21(x0, x1, ty_Char) 25.19/10.96 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_ltEs10(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_esEs27(x0, x1, ty_Char) 25.19/10.96 new_ltEs10(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_esEs29(x0, x1, ty_Float) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), ty_Int) 25.19/10.96 new_compare24(x0, x1, False, x2) 25.19/10.96 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_esEs32(x0, x1, ty_Double) 25.19/10.96 new_esEs25(x0, x1, app(ty_[], x2)) 25.19/10.96 new_lt8(x0, x1, ty_Integer) 25.19/10.96 new_esEs20(x0, x1, ty_Integer) 25.19/10.96 new_esEs32(x0, x1, ty_Ordering) 25.19/10.96 new_esEs8(x0, x1, ty_Int) 25.19/10.96 new_esEs28(x0, x1, app(ty_[], x2)) 25.19/10.96 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_lt12(x0, x1) 25.19/10.96 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.19/10.96 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_esEs10(True, True) 25.19/10.96 new_lt21(x0, x1, ty_@0) 25.19/10.96 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_esEs11(EQ, GT) 25.19/10.96 new_esEs11(GT, EQ) 25.19/10.96 new_esEs21(x0, x1, ty_@0) 25.19/10.96 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.19/10.96 new_esEs31(x0, x1, ty_Float) 25.19/10.96 new_compare0([], [], x0) 25.19/10.96 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 25.19/10.96 new_lt8(x0, x1, ty_Bool) 25.19/10.96 new_primEqInt(Pos(Zero), Neg(Zero)) 25.19/10.96 new_primEqInt(Neg(Zero), Pos(Zero)) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, ty_Float) 25.19/10.96 new_primPlusNat1(Zero, x0) 25.19/10.96 new_ltEs7(x0, x1) 25.19/10.96 new_primCmpNat0(Zero, Succ(x0)) 25.19/10.96 new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), ty_@0) 25.19/10.96 new_primMulNat0(Succ(x0), Zero) 25.19/10.96 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.19/10.96 new_esEs31(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_compare31(x0, x1, ty_Integer) 25.19/10.96 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_compare110(x0, x1, False, x2, x3) 25.19/10.96 new_esEs8(x0, x1, ty_Char) 25.19/10.96 new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) 25.19/10.96 new_lt20(x0, x1, ty_Double) 25.19/10.96 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_esEs8(x0, x1, ty_Double) 25.19/10.96 new_esEs27(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_esEs21(x0, x1, ty_Char) 25.19/10.96 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_lt20(x0, x1, ty_Float) 25.19/10.96 new_lt15(x0, x1, x2) 25.19/10.96 new_esEs21(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_esEs27(x0, x1, ty_@0) 25.19/10.96 new_primCompAux0(x0, EQ) 25.19/10.96 new_compare13(x0, x1, x2, x3, x4) 25.19/10.96 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_lt19(x0, x1) 25.19/10.96 new_esEs24(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_esEs21(x0, x1, ty_Int) 25.19/10.96 new_esEs25(x0, x1, ty_Char) 25.19/10.96 new_esEs20(x0, x1, ty_Float) 25.19/10.96 new_esEs9(x0, x1, ty_Int) 25.19/10.96 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.19/10.96 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 25.19/10.96 new_ltEs19(x0, x1, ty_Float) 25.19/10.96 new_compare6(x0, x1, x2, x3) 25.19/10.96 new_lt21(x0, x1, ty_Integer) 25.19/10.96 new_compare111(x0, x1, True, x2, x3, x4) 25.19/10.96 new_ltEs10(x0, x1, ty_Float) 25.19/10.96 new_esEs28(x0, x1, ty_Ordering) 25.19/10.96 new_esEs9(x0, x1, ty_Ordering) 25.19/10.96 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_esEs9(x0, x1, ty_Float) 25.19/10.96 new_esEs31(x0, x1, ty_Integer) 25.19/10.96 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_ltEs20(x0, x1, ty_Int) 25.19/10.96 new_compare14(x0, x1, False) 25.19/10.96 new_esEs8(x0, x1, ty_Ordering) 25.19/10.96 new_compare12(x0, x1) 25.19/10.96 new_esEs20(x0, x1, ty_Ordering) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 25.19/10.96 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 25.19/10.96 new_esEs28(x0, x1, ty_Double) 25.19/10.96 new_lt9(x0, x1, ty_Integer) 25.19/10.96 new_esEs31(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_ltEs14(LT, GT) 25.19/10.96 new_ltEs14(GT, LT) 25.19/10.96 new_esEs26(x0, x1, ty_@0) 25.19/10.96 new_esEs18(Float(x0, x1), Float(x2, x3)) 25.19/10.96 new_esEs6(Just(x0), Just(x1), ty_Double) 25.19/10.96 new_primCmpNat0(Succ(x0), Zero) 25.19/10.96 new_esEs32(x0, x1, ty_Int) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, ty_Char) 25.19/10.96 new_esEs11(LT, GT) 25.19/10.96 new_esEs11(GT, LT) 25.19/10.96 new_ltEs19(x0, x1, ty_Int) 25.19/10.96 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 25.19/10.96 new_esEs27(x0, x1, app(ty_[], x2)) 25.19/10.96 new_compare25(x0, x1, True) 25.19/10.96 new_ltEs10(x0, x1, app(ty_[], x2)) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.19/10.96 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_compare29(:%(x0, x1), :%(x2, x3), ty_Integer) 25.19/10.96 new_esEs31(x0, x1, ty_Bool) 25.19/10.96 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), ty_Double) 25.19/10.96 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_compare10(x0, x1, False, x2) 25.19/10.96 new_asAs(False, x0) 25.19/10.96 new_esEs21(x0, x1, ty_Float) 25.19/10.96 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.19/10.96 new_primPlusNat0(Succ(x0), Zero) 25.19/10.96 new_esEs16(Integer(x0), Integer(x1)) 25.19/10.96 new_lt8(x0, x1, ty_@0) 25.19/10.96 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_ltEs10(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_lt18(x0, x1, x2, x3) 25.19/10.96 new_esEs25(x0, x1, ty_Int) 25.19/10.96 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 25.19/10.96 new_esEs32(x0, x1, ty_Char) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.19/10.96 new_ltEs20(x0, x1, ty_Char) 25.19/10.96 new_primEqNat0(Zero, Succ(x0)) 25.19/10.96 new_ltEs10(x0, x1, ty_Int) 25.19/10.96 new_ltEs19(x0, x1, app(ty_[], x2)) 25.19/10.96 new_ltEs10(x0, x1, ty_Ordering) 25.19/10.96 new_primCmpNat0(Succ(x0), Succ(x1)) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 25.19/10.96 new_ltEs15(@2(x0, x1), @2(x2, x3), x4, x5) 25.19/10.96 new_lt13(x0, x1) 25.19/10.96 new_compare7(Char(x0), Char(x1)) 25.19/10.96 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_esEs10(False, False) 25.19/10.96 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.19/10.96 new_ltEs17(x0, x1, x2) 25.19/10.96 new_ltEs19(x0, x1, ty_Char) 25.19/10.96 new_compare24(x0, x1, True, x2) 25.19/10.96 new_esEs29(x0, x1, ty_Double) 25.19/10.96 new_ltEs14(EQ, GT) 25.19/10.96 new_ltEs14(GT, EQ) 25.19/10.96 new_esEs32(x0, x1, ty_Float) 25.19/10.96 new_esEs23(x0, x1, ty_Int) 25.19/10.96 new_esEs20(x0, x1, ty_Char) 25.19/10.96 new_esEs26(x0, x1, app(ty_[], x2)) 25.19/10.96 new_compare28(x0, x1, False) 25.19/10.96 new_primEqNat0(Succ(x0), Succ(x1)) 25.19/10.96 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.19/10.96 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.19/10.96 new_compare18(x0, x1, x2, x3, True, x4, x5, x6) 25.19/10.96 new_esEs23(x0, x1, ty_Integer) 25.19/10.96 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_esEs8(x0, x1, app(ty_[], x2)) 25.19/10.96 new_esEs8(x0, x1, ty_Integer) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) 25.19/10.96 new_esEs24(x0, x1, ty_@0) 25.19/10.96 new_esEs25(x0, x1, ty_Float) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) 25.19/10.96 new_ltEs6(x0, x1) 25.19/10.96 new_esEs8(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 25.19/10.96 new_esEs20(x0, x1, ty_Int) 25.19/10.96 new_lt21(x0, x1, ty_Bool) 25.19/10.96 new_lt9(x0, x1, ty_Char) 25.19/10.96 new_lt7(x0, x1) 25.19/10.96 new_ltEs5(True, True) 25.19/10.96 new_compare0(:(x0, x1), :(x2, x3), x4) 25.19/10.96 new_ltEs10(x0, x1, ty_Char) 25.19/10.96 new_esEs28(x0, x1, ty_@0) 25.19/10.96 new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) 25.19/10.96 new_lt21(x0, x1, ty_Ordering) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.19/10.96 new_esEs9(x0, x1, ty_Char) 25.19/10.96 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_lt9(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_ltEs4(Just(x0), Nothing, x1) 25.19/10.96 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) 25.19/10.96 new_compare31(x0, x1, ty_@0) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 25.19/10.96 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.19/10.96 new_ltEs20(x0, x1, app(ty_[], x2)) 25.19/10.96 new_lt8(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 25.19/10.96 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_esEs24(x0, x1, ty_Double) 25.19/10.96 new_lt8(x0, x1, app(ty_[], x2)) 25.19/10.96 new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) 25.19/10.96 new_ltEs4(Nothing, Just(x0), x1) 25.19/10.96 new_lt8(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_ltEs20(x0, x1, ty_Float) 25.19/10.96 new_esEs31(x0, x1, ty_Ordering) 25.19/10.96 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_esEs30(x0, x1, x2, x3, False, x4, x5) 25.19/10.96 new_primCompAux1(x0, x1, x2, x3) 25.19/10.96 new_compare27(x0, x1, False, x2, x3) 25.19/10.96 new_compare23(@2(x0, x1), @2(x2, x3), False, x4, x5) 25.19/10.96 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_lt9(x0, x1, ty_Bool) 25.19/10.96 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_ltEs18(Left(x0), Left(x1), ty_@0, x2) 25.19/10.96 new_lt9(x0, x1, ty_Ordering) 25.19/10.96 new_esEs25(x0, x1, ty_Integer) 25.19/10.96 new_esEs31(x0, x1, ty_Int) 25.19/10.96 new_esEs27(x0, x1, ty_Float) 25.19/10.96 new_esEs15(x0, x1) 25.19/10.96 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.19/10.96 new_ltEs19(x0, x1, ty_Bool) 25.19/10.96 new_ltEs10(x0, x1, ty_Bool) 25.19/10.96 new_lt20(x0, x1, ty_Bool) 25.19/10.96 new_fsEs(x0) 25.19/10.96 new_ltEs16(x0, x1) 25.19/10.96 new_esEs20(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) 25.19/10.96 new_lt9(x0, x1, ty_Double) 25.19/10.96 new_primEqNat0(Succ(x0), Zero) 25.19/10.96 new_primMulNat0(Zero, Zero) 25.19/10.96 new_compare111(x0, x1, False, x2, x3, x4) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.19/10.96 new_compare29(:%(x0, x1), :%(x2, x3), ty_Int) 25.19/10.96 new_esEs9(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_lt8(x0, x1, ty_Double) 25.19/10.96 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_primCompAux0(x0, LT) 25.19/10.96 new_ltEs14(EQ, EQ) 25.19/10.96 new_esEs29(x0, x1, ty_Char) 25.19/10.96 new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.19/10.96 new_esEs32(x0, x1, ty_Integer) 25.19/10.96 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_esEs12([], :(x0, x1), x2) 25.19/10.96 new_lt20(x0, x1, ty_@0) 25.19/10.96 new_compare16(@0, @0) 25.19/10.96 new_ltEs19(x0, x1, ty_@0) 25.19/10.96 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_primMulInt(Pos(x0), Pos(x1)) 25.19/10.96 new_esEs6(Just(x0), Nothing, x1) 25.19/10.96 new_compare31(x0, x1, ty_Double) 25.19/10.96 new_lt8(x0, x1, ty_Ordering) 25.19/10.96 new_pePe(False, x0) 25.19/10.96 new_ltEs8(x0, x1) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, ty_Double) 25.19/10.96 new_esEs6(Just(x0), Just(x1), ty_Char) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.19/10.96 new_esEs29(x0, x1, ty_Int) 25.19/10.96 new_lt20(x0, x1, ty_Integer) 25.19/10.96 new_lt9(x0, x1, ty_Int) 25.19/10.96 new_compare31(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_ltEs12(x0, x1) 25.19/10.96 new_ltEs10(x0, x1, ty_Integer) 25.19/10.96 new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.19/10.96 new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.19/10.96 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_esEs12(:(x0, x1), :(x2, x3), x4) 25.19/10.96 new_compare14(x0, x1, True) 25.19/10.96 new_compare210(x0, x1, True, x2, x3, x4) 25.19/10.96 new_esEs6(Just(x0), Just(x1), ty_Int) 25.19/10.96 new_esEs29(x0, x1, ty_@0) 25.19/10.96 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_ltEs4(Nothing, Nothing, x0) 25.19/10.96 new_esEs6(Just(x0), Just(x1), ty_@0) 25.19/10.96 new_esEs31(x0, x1, app(ty_[], x2)) 25.19/10.96 new_compare31(x0, x1, app(ty_[], x2)) 25.19/10.96 new_ltEs10(x0, x1, ty_@0) 25.19/10.96 new_esEs26(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_esEs29(x0, x1, ty_Ordering) 25.19/10.96 new_primPlusNat0(Zero, Zero) 25.19/10.96 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.19/10.96 new_esEs32(x0, x1, ty_Bool) 25.19/10.96 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 25.19/10.96 new_not(True) 25.19/10.96 new_ltEs18(Left(x0), Left(x1), ty_Char, x2) 25.19/10.96 new_lt10(x0, x1, x2) 25.19/10.96 new_compare28(x0, x1, True) 25.19/10.96 new_primMulNat0(Zero, Succ(x0)) 25.19/10.96 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, ty_Int) 25.19/10.96 new_esEs24(x0, x1, app(ty_[], x2)) 25.19/10.96 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_compare8(x0, x1) 25.19/10.96 new_lt8(x0, x1, ty_Int) 25.19/10.96 new_esEs30(x0, x1, x2, x3, True, x4, x5) 25.19/10.96 new_compare210(x0, x1, False, x2, x3, x4) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.19/10.96 new_lt21(x0, x1, ty_Float) 25.19/10.96 new_lt21(x0, x1, app(ty_[], x2)) 25.19/10.96 new_esEs27(x0, x1, ty_Integer) 25.19/10.96 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.19/10.96 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_compare15(x0, x1) 25.19/10.96 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.19/10.96 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.19/10.96 new_esEs25(x0, x1, ty_Bool) 25.19/10.96 new_primMulInt(Pos(x0), Neg(x1)) 25.19/10.96 new_primMulInt(Neg(x0), Pos(x1)) 25.19/10.96 new_esEs26(x0, x1, ty_Float) 25.19/10.96 new_esEs25(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_lt8(x0, x1, ty_Char) 25.19/10.96 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), ty_Float) 25.19/10.96 new_esEs17(:%(x0, x1), :%(x2, x3), x4) 25.19/10.96 new_esEs21(x0, x1, ty_Double) 25.19/10.96 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.19/10.96 new_compare11(x0, x1, x2, x3, True, x4, x5) 25.19/10.96 new_ltEs5(False, False) 25.19/10.96 new_esEs9(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_ltEs20(x0, x1, ty_Ordering) 25.19/10.96 new_esEs31(x0, x1, ty_Double) 25.19/10.96 new_lt9(x0, x1, app(ty_[], x2)) 25.19/10.96 new_lt20(x0, x1, ty_Int) 25.19/10.96 new_esEs32(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_esEs31(x0, x1, ty_Char) 25.19/10.96 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_compare31(x0, x1, ty_Ordering) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.19/10.96 new_ltEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_esEs11(EQ, EQ) 25.19/10.96 new_esEs32(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_ltEs19(x0, x1, ty_Integer) 25.19/10.96 new_esEs21(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.19/10.96 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_ltEs18(Left(x0), Left(x1), ty_Int, x2) 25.19/10.96 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_lt20(x0, x1, ty_Char) 25.19/10.96 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_esEs31(x0, x1, ty_@0) 25.19/10.96 new_primPlusNat1(Succ(x0), x1) 25.19/10.96 new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.19/10.96 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.19/10.96 new_esEs24(x0, x1, ty_Int) 25.19/10.96 new_lt17(x0, x1, x2) 25.19/10.96 new_esEs12(:(x0, x1), [], x2) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.19/10.96 new_sr0(Integer(x0), Integer(x1)) 25.19/10.96 new_ltEs18(Left(x0), Left(x1), ty_Double, x2) 25.19/10.96 new_esEs27(x0, x1, ty_Bool) 25.19/10.96 new_esEs13(Char(x0), Char(x1)) 25.19/10.96 new_ltEs14(GT, GT) 25.19/10.96 new_esEs28(x0, x1, ty_Int) 25.19/10.96 new_esEs32(x0, x1, app(ty_[], x2)) 25.19/10.96 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_esEs8(x0, x1, ty_Float) 25.19/10.96 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_esEs21(x0, x1, ty_Ordering) 25.19/10.96 new_ltEs18(Left(x0), Left(x1), ty_Float, x2) 25.19/10.96 new_esEs29(x0, x1, ty_Integer) 25.19/10.96 new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.19/10.96 new_esEs20(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_compare112(x0, x1, True) 25.19/10.96 new_lt20(x0, x1, ty_Ordering) 25.19/10.96 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 25.19/10.96 new_ltEs10(x0, x1, ty_Double) 25.19/10.96 new_esEs20(x0, x1, app(ty_[], x2)) 25.19/10.96 new_ltEs19(x0, x1, ty_Ordering) 25.19/10.96 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.19/10.96 new_primPlusNat0(Succ(x0), Succ(x1)) 25.19/10.96 new_esEs22(x0, x1, ty_Int) 25.19/10.96 new_esEs24(x0, x1, ty_Ordering) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, ty_@0) 25.19/10.96 new_esEs6(Just(x0), Just(x1), ty_Float) 25.19/10.96 new_compare11(x0, x1, x2, x3, False, x4, x5) 25.19/10.96 new_esEs29(x0, x1, app(ty_[], x2)) 25.19/10.96 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.19/10.96 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.19/10.96 new_esEs24(x0, x1, ty_Float) 25.19/10.96 new_compare17(Integer(x0), Integer(x1)) 25.19/10.96 new_compare0(:(x0, x1), [], x2) 25.19/10.96 new_lt9(x0, x1, ty_@0) 25.19/10.96 new_lt16(x0, x1) 25.19/10.96 new_compare31(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_esEs26(x0, x1, ty_Char) 25.19/10.96 new_esEs25(x0, x1, ty_Ordering) 25.19/10.96 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.19/10.96 new_ltEs20(x0, x1, ty_Double) 25.19/10.96 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_esEs14(Double(x0, x1), Double(x2, x3)) 25.19/10.96 new_esEs26(x0, x1, ty_Int) 25.19/10.96 new_compare27(x0, x1, True, x2, x3) 25.19/10.96 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_esEs6(Just(x0), Just(x1), ty_Ordering) 25.19/10.96 new_esEs6(Nothing, Nothing, x0) 25.19/10.96 new_esEs25(x0, x1, ty_Double) 25.19/10.96 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.19/10.96 new_esEs11(LT, EQ) 25.19/10.96 new_esEs11(EQ, LT) 25.19/10.96 new_esEs25(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_compare110(x0, x1, True, x2, x3) 25.19/10.96 new_esEs11(GT, GT) 25.19/10.96 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 25.19/10.96 new_compare31(x0, x1, ty_Bool) 25.19/10.96 new_ltEs19(x0, x1, ty_Double) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 25.19/10.96 new_esEs28(x0, x1, ty_Char) 25.19/10.96 new_primEqNat0(Zero, Zero) 25.19/10.96 new_compare31(x0, x1, ty_Int) 25.19/10.96 new_compare26(x0, x1, x2, x3) 25.19/10.96 new_lt5(x0, x1) 25.19/10.96 new_compare18(x0, x1, x2, x3, False, x4, x5, x6) 25.19/10.96 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_not(False) 25.19/10.96 new_esEs25(x0, x1, ty_@0) 25.19/10.96 new_esEs12([], [], x0) 25.19/10.96 new_esEs26(x0, x1, ty_Ordering) 25.19/10.96 new_esEs29(x0, x1, ty_Bool) 25.19/10.96 new_lt4(x0, x1) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 25.19/10.96 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.19/10.96 new_primCompAux0(x0, GT) 25.19/10.96 new_lt11(x0, x1) 25.19/10.96 new_esEs26(x0, x1, ty_Bool) 25.19/10.96 new_esEs6(Just(x0), Just(x1), ty_Integer) 25.19/10.96 new_esEs32(x0, x1, ty_@0) 25.19/10.96 new_lt6(x0, x1, x2, x3, x4) 25.19/10.96 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.19/10.96 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_primMulInt(Neg(x0), Neg(x1)) 25.19/10.96 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.19/10.96 new_esEs11(LT, LT) 25.19/10.96 new_compare31(x0, x1, ty_Char) 25.19/10.96 new_ltEs20(x0, x1, ty_@0) 25.19/10.96 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_compare0([], :(x0, x1), x2) 25.19/10.96 new_esEs27(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_esEs26(x0, x1, ty_Integer) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.19/10.96 new_esEs26(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_compare31(x0, x1, ty_Float) 25.19/10.96 new_sr(x0, x1) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.19/10.96 new_esEs19(@0, @0) 25.19/10.96 new_esEs9(x0, x1, ty_Double) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.19/10.96 new_esEs9(x0, x1, ty_@0) 25.19/10.96 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_esEs6(Just(x0), Just(x1), ty_Bool) 25.19/10.96 new_pePe(True, x0) 25.19/10.96 new_esEs28(x0, x1, ty_Float) 25.19/10.96 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 25.19/10.96 new_esEs24(x0, x1, ty_Bool) 25.19/10.96 new_lt20(x0, x1, app(ty_[], x2)) 25.19/10.96 new_esEs24(x0, x1, ty_Char) 25.19/10.96 new_esEs8(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_esEs10(False, True) 25.19/10.96 new_esEs10(True, False) 25.19/10.96 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.19/10.96 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.19/10.96 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_ltEs14(EQ, LT) 25.19/10.96 new_ltEs14(LT, EQ) 25.19/10.96 new_esEs24(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.19/10.96 new_esEs20(x0, x1, ty_Double) 25.19/10.96 new_ltEs10(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_compare30(x0, x1, x2) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), ty_Integer) 25.19/10.96 new_primCmpNat0(Zero, Zero) 25.19/10.96 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.19/10.96 new_asAs(True, x0) 25.19/10.96 new_esEs21(x0, x1, app(ty_[], x2)) 25.19/10.96 new_compare25(x0, x1, False) 25.19/10.96 new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.19/10.96 25.19/10.96 We have to consider all minimal (P,Q,R)-chains. 25.19/10.96 ---------------------------------------- 25.19/10.96 25.19/10.96 (30) TransformationProof (EQUIVALENT) 25.19/10.96 By rewriting [LPAR04] the rule new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, False, h, ba, bb) -> new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, new_esEs11(new_compare23(@2(vyw24, vyw25), @2(vyw18, vyw19), new_esEs5(@2(vyw24, vyw25), @2(vyw18, vyw19), ba, bb), ba, bb), GT), h, ba, bb) at position [9,0,2] we obtained the following new rules [LPAR04]: 25.19/10.96 25.19/10.96 (new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, False, h, ba, bb) -> new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, new_esEs11(new_compare23(@2(vyw24, vyw25), @2(vyw18, vyw19), new_asAs(new_esEs8(vyw24, vyw18, ba), new_esEs9(vyw25, vyw19, bb)), ba, bb), GT), h, ba, bb),new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, False, h, ba, bb) -> new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, new_esEs11(new_compare23(@2(vyw24, vyw25), @2(vyw18, vyw19), new_asAs(new_esEs8(vyw24, vyw18, ba), new_esEs9(vyw25, vyw19, bb)), ba, bb), GT), h, ba, bb)) 25.19/10.96 25.19/10.96 25.19/10.96 ---------------------------------------- 25.19/10.96 25.19/10.96 (31) 25.19/10.96 Obligation: 25.19/10.96 Q DP problem: 25.19/10.96 The TRS P consists of the following rules: 25.19/10.96 25.19/10.96 new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, True, h, ba, bb) -> new_lookupWithDefaultFM01(vyw17, vyw23, @2(vyw24, vyw25), h, ba, bb) 25.19/10.96 new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, True, h, ba, bb) -> new_lookupWithDefaultFM01(vyw17, vyw22, @2(vyw24, vyw25), h, ba, bb) 25.19/10.96 new_lookupWithDefaultFM01(vyw4, Branch(@2(vyw300, vyw301), vyw31, vyw32, vyw33, vyw34), @2(vyw50, vyw51), bc, bd, be) -> new_lookupWithDefaultFM0(vyw4, vyw300, vyw301, vyw31, vyw32, vyw33, vyw34, vyw50, vyw51, new_esEs30(vyw50, vyw51, vyw300, vyw301, new_esEs31(vyw50, vyw300, bd), bd, be), bc, bd, be) 25.19/10.96 new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, False, h, ba, bb) -> new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, new_esEs11(new_compare23(@2(vyw24, vyw25), @2(vyw18, vyw19), new_asAs(new_esEs8(vyw24, vyw18, ba), new_esEs9(vyw25, vyw19, bb)), ba, bb), GT), h, ba, bb) 25.19/10.96 25.19/10.96 The TRS R consists of the following rules: 25.19/10.96 25.19/10.96 new_lt20(vyw460, vyw480, ty_Double) -> new_lt12(vyw460, vyw480) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), ty_Ordering, ceh) -> new_esEs11(vyw500, vyw3000) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, app(ty_[], dcg)) -> new_ltEs11(vyw4611, vyw4811, dcg) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.96 new_primCmpInt(Neg(Succ(vyw46000)), Pos(vyw4800)) -> LT 25.19/10.96 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.19/10.96 new_esEs29(vyw4610, vyw4810, app(ty_[], dbe)) -> new_esEs12(vyw4610, vyw4810, dbe) 25.19/10.96 new_lt9(vyw4611, vyw4811, app(app(app(ty_@3, hc), hd), he)) -> new_lt6(vyw4611, vyw4811, hc, hd, he) 25.19/10.96 new_primPlusNat0(Zero, Zero) -> Zero 25.19/10.96 new_ltEs9(@3(vyw4610, vyw4611, vyw4612), @3(vyw4810, vyw4811, vyw4812), ff, fg, fh) -> new_pePe(new_lt8(vyw4610, vyw4810, ff), new_asAs(new_esEs20(vyw4610, vyw4810, ff), new_pePe(new_lt9(vyw4611, vyw4811, fg), new_asAs(new_esEs21(vyw4611, vyw4811, fg), new_ltEs10(vyw4612, vyw4812, fh))))) 25.19/10.96 new_esEs8(vyw500, vyw3000, app(app(ty_@2, cf), cg)) -> new_esEs5(vyw500, vyw3000, cf, cg) 25.19/10.96 new_pePe(True, vyw104) -> True 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), app(ty_[], cfb), ceh) -> new_esEs12(vyw500, vyw3000, cfb) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Double, bdf) -> new_ltEs13(vyw4610, vyw4810) 25.19/10.96 new_compare111(vyw460, vyw480, True, fb, fc, fd) -> LT 25.19/10.96 new_esEs27(vyw502, vyw3002, ty_Float) -> new_esEs18(vyw502, vyw3002) 25.19/10.96 new_esEs31(vyw50, vyw300, ty_Char) -> new_esEs13(vyw50, vyw300) 25.19/10.96 new_esEs20(vyw4610, vyw4810, app(ty_[], gd)) -> new_esEs12(vyw4610, vyw4810, gd) 25.19/10.96 new_esEs11(LT, EQ) -> False 25.19/10.96 new_esEs11(EQ, LT) -> False 25.19/10.96 new_lt8(vyw4610, vyw4810, app(app(ty_@2, ge), gf)) -> new_lt14(vyw4610, vyw4810, ge, gf) 25.19/10.96 new_compare210(vyw460, vyw480, False, fb, fc, fd) -> new_compare111(vyw460, vyw480, new_ltEs9(vyw460, vyw480, fb, fc, fd), fb, fc, fd) 25.19/10.96 new_esEs26(vyw501, vyw3001, ty_Ordering) -> new_esEs11(vyw501, vyw3001) 25.19/10.96 new_esEs32(vyw35, vyw37, ty_Ordering) -> new_esEs11(vyw35, vyw37) 25.19/10.96 new_esEs8(vyw500, vyw3000, app(ty_[], cc)) -> new_esEs12(vyw500, vyw3000, cc) 25.19/10.96 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.19/10.96 new_esEs12(:(vyw500, vyw501), [], chg) -> False 25.19/10.96 new_esEs12([], :(vyw3000, vyw3001), chg) -> False 25.19/10.96 new_primCmpInt(Pos(Zero), Neg(Succ(vyw48000))) -> GT 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, app(ty_[], bfb)) -> new_ltEs11(vyw4610, vyw4810, bfb) 25.19/10.96 new_esEs20(vyw4610, vyw4810, ty_@0) -> new_esEs19(vyw4610, vyw4810) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, ty_Bool) -> new_ltEs5(vyw4610, vyw4810) 25.19/10.96 new_esEs29(vyw4610, vyw4810, ty_@0) -> new_esEs19(vyw4610, vyw4810) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), ty_Int, ceh) -> new_esEs15(vyw500, vyw3000) 25.19/10.96 new_compare31(vyw4600, vyw4800, ty_Int) -> new_compare12(vyw4600, vyw4800) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Char) -> new_ltEs7(vyw4610, vyw4810) 25.19/10.96 new_lt20(vyw460, vyw480, ty_Ordering) -> new_lt7(vyw460, vyw480) 25.19/10.96 new_esEs32(vyw35, vyw37, ty_Int) -> new_esEs15(vyw35, vyw37) 25.19/10.96 new_primCmpInt(Neg(Succ(vyw46000)), Neg(vyw4800)) -> new_primCmpNat0(vyw4800, Succ(vyw46000)) 25.19/10.96 new_compare0(:(vyw4600, vyw4601), :(vyw4800, vyw4801), bgd) -> new_primCompAux1(vyw4600, vyw4800, new_compare0(vyw4601, vyw4801, bgd), bgd) 25.19/10.96 new_compare210(vyw460, vyw480, True, fb, fc, fd) -> EQ 25.19/10.96 new_lt20(vyw460, vyw480, ty_@0) -> new_lt13(vyw460, vyw480) 25.19/10.96 new_esEs11(LT, GT) -> False 25.19/10.96 new_esEs11(GT, LT) -> False 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, ty_Ordering) -> new_ltEs14(vyw4610, vyw4810) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, app(ty_[], cge)) -> new_esEs12(vyw500, vyw3000, cge) 25.19/10.96 new_lt21(vyw4610, vyw4810, ty_Char) -> new_lt4(vyw4610, vyw4810) 25.19/10.96 new_esEs27(vyw502, vyw3002, ty_Integer) -> new_esEs16(vyw502, vyw3002) 25.19/10.96 new_ltEs4(Nothing, Nothing, bbg) -> True 25.19/10.96 new_esEs23(vyw501, vyw3001, ty_Integer) -> new_esEs16(vyw501, vyw3001) 25.19/10.96 new_ltEs4(Just(vyw4610), Nothing, bbg) -> False 25.19/10.96 new_esEs10(False, True) -> False 25.19/10.96 new_esEs10(True, False) -> False 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, app(app(ty_@2, bfc), bfd)) -> new_ltEs15(vyw4610, vyw4810, bfc, bfd) 25.19/10.96 new_primMulNat0(Succ(vyw50100), Succ(vyw300000)) -> new_primPlusNat1(new_primMulNat0(vyw50100, Succ(vyw300000)), vyw300000) 25.19/10.96 new_lt8(vyw4610, vyw4810, app(app(ty_Either, ha), hb)) -> new_lt18(vyw4610, vyw4810, ha, hb) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), app(ty_Ratio, cgb), ceh) -> new_esEs17(vyw500, vyw3000, cgb) 25.19/10.96 new_esEs25(vyw500, vyw3000, app(app(ty_@2, cbf), cbg)) -> new_esEs5(vyw500, vyw3000, cbf, cbg) 25.19/10.96 new_esEs22(vyw500, vyw3000, ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.96 new_esEs28(vyw500, vyw3000, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs4(vyw500, vyw3000, daf, dag, dah) 25.19/10.96 new_esEs8(vyw500, vyw3000, ty_@0) -> new_esEs19(vyw500, vyw3000) 25.19/10.96 new_esEs28(vyw500, vyw3000, app(app(ty_Either, dab), dac)) -> new_esEs7(vyw500, vyw3000, dab, dac) 25.19/10.96 new_primCompAux0(vyw109, GT) -> GT 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), app(ty_Maybe, bcf)) -> new_ltEs4(vyw4610, vyw4810, bcf) 25.19/10.96 new_esEs25(vyw500, vyw3000, ty_Char) -> new_esEs13(vyw500, vyw3000) 25.19/10.96 new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False 25.19/10.96 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 25.19/10.96 new_ltEs19(vyw461, vyw481, app(ty_[], bdb)) -> new_ltEs11(vyw461, vyw481, bdb) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), app(ty_[], bdg), bdf) -> new_ltEs11(vyw4610, vyw4810, bdg) 25.19/10.96 new_lt8(vyw4610, vyw4810, ty_Char) -> new_lt4(vyw4610, vyw4810) 25.19/10.96 new_esEs20(vyw4610, vyw4810, app(app(ty_@2, ge), gf)) -> new_esEs5(vyw4610, vyw4810, ge, gf) 25.19/10.96 new_esEs25(vyw500, vyw3000, app(ty_Ratio, ccc)) -> new_esEs17(vyw500, vyw3000, ccc) 25.19/10.96 new_esEs31(vyw50, vyw300, app(ty_Ratio, bge)) -> new_esEs17(vyw50, vyw300, bge) 25.19/10.96 new_ltEs19(vyw461, vyw481, ty_Int) -> new_ltEs12(vyw461, vyw481) 25.19/10.96 new_esEs15(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) 25.19/10.96 new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) 25.19/10.96 new_esEs27(vyw502, vyw3002, ty_Bool) -> new_esEs10(vyw502, vyw3002) 25.19/10.96 new_esEs31(vyw50, vyw300, app(app(ty_@2, bh), ca)) -> new_esEs5(vyw50, vyw300, bh, ca) 25.19/10.96 new_esEs20(vyw4610, vyw4810, app(ty_Ratio, gh)) -> new_esEs17(vyw4610, vyw4810, gh) 25.19/10.96 new_primCompAux0(vyw109, LT) -> LT 25.19/10.96 new_esEs9(vyw501, vyw3001, ty_Char) -> new_esEs13(vyw501, vyw3001) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, app(ty_Ratio, che)) -> new_esEs17(vyw500, vyw3000, che) 25.19/10.96 new_not(True) -> False 25.19/10.96 new_lt8(vyw4610, vyw4810, ty_Bool) -> new_lt5(vyw4610, vyw4810) 25.19/10.96 new_ltEs19(vyw461, vyw481, app(ty_Ratio, caf)) -> new_ltEs17(vyw461, vyw481, caf) 25.19/10.96 new_lt21(vyw4610, vyw4810, app(app(ty_@2, dbf), dbg)) -> new_lt14(vyw4610, vyw4810, dbf, dbg) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, ty_Ordering) -> new_ltEs14(vyw4611, vyw4811) 25.19/10.96 new_esEs27(vyw502, vyw3002, ty_Double) -> new_esEs14(vyw502, vyw3002) 25.19/10.96 new_primCmpNat0(Zero, Zero) -> EQ 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_@0) -> new_ltEs8(vyw4610, vyw4810) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs9(vyw4610, vyw4810, bbh, bca, bcb) 25.19/10.96 new_esEs9(vyw501, vyw3001, ty_Int) -> new_esEs15(vyw501, vyw3001) 25.19/10.96 new_lt21(vyw4610, vyw4810, ty_Bool) -> new_lt5(vyw4610, vyw4810) 25.19/10.96 new_esEs21(vyw4611, vyw4811, app(ty_Ratio, bab)) -> new_esEs17(vyw4611, vyw4811, bab) 25.19/10.96 new_esEs20(vyw4610, vyw4810, app(app(ty_Either, ha), hb)) -> new_esEs7(vyw4610, vyw4810, ha, hb) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, ty_Int) -> new_ltEs12(vyw4611, vyw4811) 25.19/10.96 new_esEs9(vyw501, vyw3001, ty_Ordering) -> new_esEs11(vyw501, vyw3001) 25.19/10.96 new_esEs11(EQ, GT) -> False 25.19/10.96 new_esEs11(GT, EQ) -> False 25.19/10.96 new_primEqNat0(Succ(vyw5000), Zero) -> False 25.19/10.96 new_primEqNat0(Zero, Succ(vyw30000)) -> False 25.19/10.96 new_lt18(vyw460, vyw480, bga, bgb) -> new_esEs11(new_compare26(vyw460, vyw480, bga, bgb), LT) 25.19/10.96 new_compare112(vyw460, vyw480, False) -> GT 25.19/10.96 new_compare30(vyw460, vyw480, eg) -> new_compare24(vyw460, vyw480, new_esEs6(vyw460, vyw480, eg), eg) 25.19/10.96 new_esEs25(vyw500, vyw3000, ty_@0) -> new_esEs19(vyw500, vyw3000) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), app(ty_Ratio, bec), bdf) -> new_ltEs17(vyw4610, vyw4810, bec) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Char, bdf) -> new_ltEs7(vyw4610, vyw4810) 25.19/10.96 new_esEs30(vyw34, vyw35, vyw36, vyw37, False, bgf, bgg) -> new_esEs11(new_compare23(@2(vyw34, vyw35), @2(vyw36, vyw37), False, bgf, bgg), LT) 25.19/10.96 new_esEs32(vyw35, vyw37, ty_Float) -> new_esEs18(vyw35, vyw37) 25.19/10.96 new_ltEs14(EQ, EQ) -> True 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), ty_Float, ceh) -> new_esEs18(vyw500, vyw3000) 25.19/10.96 new_esEs32(vyw35, vyw37, ty_Double) -> new_esEs14(vyw35, vyw37) 25.19/10.96 new_compare17(Integer(vyw4600), Integer(vyw4800)) -> new_primCmpInt(vyw4600, vyw4800) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), app(app(ty_@2, bdh), bea), bdf) -> new_ltEs15(vyw4610, vyw4810, bdh, bea) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), ty_Bool, ceh) -> new_esEs10(vyw500, vyw3000) 25.19/10.96 new_compare29(:%(vyw4600, vyw4601), :%(vyw4800, vyw4801), ty_Int) -> new_compare12(new_sr(vyw4600, vyw4801), new_sr(vyw4800, vyw4601)) 25.19/10.96 new_esEs8(vyw500, vyw3000, app(app(ty_Either, cd), ce)) -> new_esEs7(vyw500, vyw3000, cd, ce) 25.19/10.96 new_esEs27(vyw502, vyw3002, ty_Int) -> new_esEs15(vyw502, vyw3002) 25.19/10.96 new_esEs31(vyw50, vyw300, ty_@0) -> new_esEs19(vyw50, vyw300) 25.19/10.96 new_ltEs11(vyw461, vyw481, bdb) -> new_fsEs(new_compare0(vyw461, vyw481, bdb)) 25.19/10.96 new_esEs32(vyw35, vyw37, ty_Bool) -> new_esEs10(vyw35, vyw37) 25.19/10.96 new_esEs24(vyw460, vyw480, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs4(vyw460, vyw480, fb, fc, fd) 25.19/10.96 new_esEs26(vyw501, vyw3001, ty_Bool) -> new_esEs10(vyw501, vyw3001) 25.19/10.96 new_compare14(vyw460, vyw480, True) -> LT 25.19/10.96 new_primCmpInt(Pos(Succ(vyw46000)), Neg(vyw4800)) -> GT 25.19/10.96 new_esEs24(vyw460, vyw480, ty_@0) -> new_esEs19(vyw460, vyw480) 25.19/10.96 new_esEs26(vyw501, vyw3001, ty_Int) -> new_esEs15(vyw501, vyw3001) 25.19/10.96 new_ltEs14(EQ, LT) -> False 25.19/10.96 new_ltEs10(vyw4612, vyw4812, ty_Int) -> new_ltEs12(vyw4612, vyw4812) 25.19/10.96 new_ltEs5(False, True) -> True 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, app(ty_Ratio, bff)) -> new_ltEs17(vyw4610, vyw4810, bff) 25.19/10.96 new_compare110(vyw460, vyw480, True, bga, bgb) -> LT 25.19/10.96 new_esEs8(vyw500, vyw3000, app(ty_Ratio, dd)) -> new_esEs17(vyw500, vyw3000, dd) 25.19/10.96 new_compare11(vyw84, vyw85, vyw86, vyw87, True, eh, fa) -> LT 25.19/10.96 new_lt9(vyw4611, vyw4811, app(app(ty_Either, bac), bad)) -> new_lt18(vyw4611, vyw4811, bac, bad) 25.19/10.96 new_esEs26(vyw501, vyw3001, ty_Double) -> new_esEs14(vyw501, vyw3001) 25.19/10.96 new_esEs29(vyw4610, vyw4810, ty_Char) -> new_esEs13(vyw4610, vyw4810) 25.19/10.96 new_lt8(vyw4610, vyw4810, app(app(app(ty_@3, ga), gb), gc)) -> new_lt6(vyw4610, vyw4810, ga, gb, gc) 25.19/10.96 new_lt21(vyw4610, vyw4810, ty_@0) -> new_lt13(vyw4610, vyw4810) 25.19/10.96 new_esEs26(vyw501, vyw3001, ty_Float) -> new_esEs18(vyw501, vyw3001) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, app(app(ty_Either, bfg), bfh)) -> new_ltEs18(vyw4610, vyw4810, bfg, bfh) 25.19/10.96 new_primCmpNat0(Zero, Succ(vyw48000)) -> LT 25.19/10.96 new_lt10(vyw460, vyw480, bgd) -> new_esEs11(new_compare0(vyw460, vyw480, bgd), LT) 25.19/10.96 new_esEs21(vyw4611, vyw4811, ty_Ordering) -> new_esEs11(vyw4611, vyw4811) 25.19/10.96 new_esEs21(vyw4611, vyw4811, app(app(ty_@2, hg), hh)) -> new_esEs5(vyw4611, vyw4811, hg, hh) 25.19/10.96 new_compare8(vyw460, vyw480) -> new_compare28(vyw460, vyw480, new_esEs10(vyw460, vyw480)) 25.19/10.96 new_compare9(Float(vyw4600, Pos(vyw46010)), Float(vyw4800, Neg(vyw48010))) -> new_compare12(new_sr(vyw4600, Pos(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) 25.19/10.96 new_compare9(Float(vyw4600, Neg(vyw46010)), Float(vyw4800, Pos(vyw48010))) -> new_compare12(new_sr(vyw4600, Neg(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.96 new_esEs29(vyw4610, vyw4810, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs4(vyw4610, vyw4810, dbb, dbc, dbd) 25.19/10.96 new_esEs21(vyw4611, vyw4811, ty_Int) -> new_esEs15(vyw4611, vyw4811) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Double) -> new_ltEs13(vyw4610, vyw4810) 25.19/10.96 new_lt8(vyw4610, vyw4810, ty_Ordering) -> new_lt7(vyw4610, vyw4810) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), ty_Double, ceh) -> new_esEs14(vyw500, vyw3000) 25.19/10.96 new_primCompAux1(vyw4600, vyw4800, vyw99, bgd) -> new_primCompAux0(vyw99, new_compare31(vyw4600, vyw4800, bgd)) 25.19/10.96 new_esEs25(vyw500, vyw3000, ty_Ordering) -> new_esEs11(vyw500, vyw3000) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs11(vyw500, vyw3000) 25.19/10.96 new_lt9(vyw4611, vyw4811, app(app(ty_@2, hg), hh)) -> new_lt14(vyw4611, vyw4811, hg, hh) 25.19/10.96 new_compare9(Float(vyw4600, Neg(vyw46010)), Float(vyw4800, Neg(vyw48010))) -> new_compare12(new_sr(vyw4600, Neg(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) 25.19/10.96 new_ltEs8(vyw461, vyw481) -> new_fsEs(new_compare16(vyw461, vyw481)) 25.19/10.96 new_esEs32(vyw35, vyw37, ty_Integer) -> new_esEs16(vyw35, vyw37) 25.19/10.96 new_primCmpNat0(Succ(vyw46000), Zero) -> GT 25.19/10.96 new_esEs9(vyw501, vyw3001, app(ty_[], df)) -> new_esEs12(vyw501, vyw3001, df) 25.19/10.96 new_esEs21(vyw4611, vyw4811, ty_@0) -> new_esEs19(vyw4611, vyw4811) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), app(app(ty_Either, bed), bee), bdf) -> new_ltEs18(vyw4610, vyw4810, bed, bee) 25.19/10.96 new_ltEs19(vyw461, vyw481, ty_Char) -> new_ltEs7(vyw461, vyw481) 25.19/10.96 new_pePe(False, vyw104) -> vyw104 25.19/10.96 new_compare18(vyw84, vyw85, vyw86, vyw87, False, vyw89, eh, fa) -> new_compare11(vyw84, vyw85, vyw86, vyw87, vyw89, eh, fa) 25.19/10.96 new_compare19(Double(vyw4600, Pos(vyw46010)), Double(vyw4800, Neg(vyw48010))) -> new_compare12(new_sr(vyw4600, Pos(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) 25.19/10.96 new_compare19(Double(vyw4600, Neg(vyw46010)), Double(vyw4800, Pos(vyw48010))) -> new_compare12(new_sr(vyw4600, Neg(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, ty_Float) -> new_esEs18(vyw500, vyw3000) 25.19/10.96 new_ltEs17(vyw461, vyw481, caf) -> new_fsEs(new_compare29(vyw461, vyw481, caf)) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), app(app(ty_Either, dfb), dfc)) -> new_esEs7(vyw500, vyw3000, dfb, dfc) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Int) -> new_ltEs12(vyw4610, vyw4810) 25.19/10.96 new_lt9(vyw4611, vyw4811, ty_Bool) -> new_lt5(vyw4611, vyw4811) 25.19/10.96 new_esEs26(vyw501, vyw3001, app(app(ty_@2, cch), cda)) -> new_esEs5(vyw501, vyw3001, cch, cda) 25.19/10.96 new_ltEs15(@2(vyw4610, vyw4611), @2(vyw4810, vyw4811), cad, cae) -> new_pePe(new_lt21(vyw4610, vyw4810, cad), new_asAs(new_esEs29(vyw4610, vyw4810, cad), new_ltEs20(vyw4611, vyw4811, cae))) 25.19/10.96 new_esEs23(vyw501, vyw3001, ty_Int) -> new_esEs15(vyw501, vyw3001) 25.19/10.96 new_esEs9(vyw501, vyw3001, app(app(ty_@2, ea), eb)) -> new_esEs5(vyw501, vyw3001, ea, eb) 25.19/10.96 new_compare10(vyw460, vyw480, False, eg) -> GT 25.19/10.96 new_ltEs7(vyw461, vyw481) -> new_fsEs(new_compare7(vyw461, vyw481)) 25.19/10.96 new_lt21(vyw4610, vyw4810, ty_Float) -> new_lt19(vyw4610, vyw4810) 25.19/10.96 new_compare23(vyw46, vyw48, True, cab, cac) -> EQ 25.19/10.96 new_lt21(vyw4610, vyw4810, ty_Double) -> new_lt12(vyw4610, vyw4810) 25.19/10.96 new_esEs32(vyw35, vyw37, app(ty_Maybe, bgh)) -> new_esEs6(vyw35, vyw37, bgh) 25.19/10.96 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 25.19/10.96 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 25.19/10.96 new_ltEs20(vyw4611, vyw4811, ty_Integer) -> new_ltEs16(vyw4611, vyw4811) 25.19/10.96 new_esEs24(vyw460, vyw480, ty_Char) -> new_esEs13(vyw460, vyw480) 25.19/10.96 new_compare24(vyw460, vyw480, True, eg) -> EQ 25.19/10.96 new_ltEs19(vyw461, vyw481, ty_Ordering) -> new_ltEs14(vyw461, vyw481) 25.19/10.96 new_esEs26(vyw501, vyw3001, app(ty_Ratio, cde)) -> new_esEs17(vyw501, vyw3001, cde) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, ty_Bool) -> new_esEs10(vyw500, vyw3000) 25.19/10.96 new_esEs9(vyw501, vyw3001, app(ty_Ratio, ef)) -> new_esEs17(vyw501, vyw3001, ef) 25.19/10.96 new_lt19(vyw460, vyw480) -> new_esEs11(new_compare9(vyw460, vyw480), LT) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs4(vyw500, vyw3000, dff, dfg, dfh) 25.19/10.96 new_lt9(vyw4611, vyw4811, ty_Ordering) -> new_lt7(vyw4611, vyw4811) 25.19/10.96 new_ltEs14(EQ, GT) -> True 25.19/10.96 new_esEs10(False, False) -> True 25.19/10.96 new_ltEs14(GT, EQ) -> False 25.19/10.96 new_fsEs(vyw90) -> new_not(new_esEs11(vyw90, GT)) 25.19/10.96 new_lt21(vyw4610, vyw4810, app(ty_Ratio, dca)) -> new_lt17(vyw4610, vyw4810, dca) 25.19/10.96 new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.19/10.96 new_esEs19(@0, @0) -> True 25.19/10.96 new_primCmpInt(Neg(Zero), Pos(Succ(vyw48000))) -> LT 25.19/10.96 new_esEs28(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.96 new_lt17(vyw460, vyw480, bgc) -> new_esEs11(new_compare29(vyw460, vyw480, bgc), LT) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Int, bdf) -> new_ltEs12(vyw4610, vyw4810) 25.19/10.96 new_primMulInt(Pos(vyw5010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw5010, vyw30000)) 25.19/10.96 new_esEs31(vyw50, vyw300, ty_Double) -> new_esEs14(vyw50, vyw300) 25.19/10.96 new_ltEs14(LT, GT) -> True 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), app(app(ty_Either, cfc), cfd), ceh) -> new_esEs7(vyw500, vyw3000, cfc, cfd) 25.19/10.96 new_lt8(vyw4610, vyw4810, ty_Integer) -> new_lt16(vyw4610, vyw4810) 25.19/10.96 new_ltEs14(GT, GT) -> True 25.19/10.96 new_lt9(vyw4611, vyw4811, ty_Double) -> new_lt12(vyw4611, vyw4811) 25.19/10.96 new_compare10(vyw460, vyw480, True, eg) -> LT 25.19/10.96 new_esEs9(vyw501, vyw3001, ty_Float) -> new_esEs18(vyw501, vyw3001) 25.19/10.96 new_esEs24(vyw460, vyw480, app(ty_Maybe, eg)) -> new_esEs6(vyw460, vyw480, eg) 25.19/10.96 new_esEs25(vyw500, vyw3000, ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.96 new_primMulNat0(Succ(vyw50100), Zero) -> Zero 25.19/10.96 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 25.19/10.96 new_esEs9(vyw501, vyw3001, ty_Bool) -> new_esEs10(vyw501, vyw3001) 25.19/10.96 new_lt13(vyw460, vyw480) -> new_esEs11(new_compare16(vyw460, vyw480), LT) 25.19/10.96 new_esEs25(vyw500, vyw3000, app(app(ty_Either, cbd), cbe)) -> new_esEs7(vyw500, vyw3000, cbd, cbe) 25.19/10.96 new_esEs26(vyw501, vyw3001, app(ty_[], cce)) -> new_esEs12(vyw501, vyw3001, cce) 25.19/10.96 new_esEs31(vyw50, vyw300, app(app(app(ty_@3, cag), cah), cba)) -> new_esEs4(vyw50, vyw300, cag, cah, cba) 25.19/10.96 new_primPlusNat1(Succ(vyw750), vyw300000) -> Succ(Succ(new_primPlusNat0(vyw750, vyw300000))) 25.19/10.96 new_ltEs5(True, False) -> False 25.19/10.96 new_compare28(vyw460, vyw480, False) -> new_compare14(vyw460, vyw480, new_ltEs5(vyw460, vyw480)) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, ty_@0) -> new_ltEs8(vyw4610, vyw4810) 25.19/10.96 new_esEs18(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs15(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, app(app(ty_Either, bbe), bbf)) -> new_ltEs18(vyw4612, vyw4812, bbe, bbf) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, ty_Integer) -> new_ltEs16(vyw4610, vyw4810) 25.19/10.96 new_lt8(vyw4610, vyw4810, ty_Double) -> new_lt12(vyw4610, vyw4810) 25.19/10.96 new_primPlusNat0(Succ(vyw7500), Zero) -> Succ(vyw7500) 25.19/10.96 new_primPlusNat0(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 25.19/10.96 new_lt5(vyw460, vyw480) -> new_esEs11(new_compare8(vyw460, vyw480), LT) 25.19/10.96 new_esEs11(LT, LT) -> True 25.19/10.96 new_esEs21(vyw4611, vyw4811, app(app(app(ty_@3, hc), hd), he)) -> new_esEs4(vyw4611, vyw4811, hc, hd, he) 25.19/10.96 new_primPlusNat1(Zero, vyw300000) -> Succ(vyw300000) 25.19/10.96 new_esEs24(vyw460, vyw480, app(ty_[], bgd)) -> new_esEs12(vyw460, vyw480, bgd) 25.19/10.96 new_lt8(vyw4610, vyw4810, ty_@0) -> new_lt13(vyw4610, vyw4810) 25.19/10.96 new_ltEs19(vyw461, vyw481, ty_Integer) -> new_ltEs16(vyw461, vyw481) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, ty_Float) -> new_ltEs6(vyw4612, vyw4812) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), app(app(app(ty_@3, bdc), bdd), bde), bdf) -> new_ltEs9(vyw4610, vyw4810, bdc, bdd, bde) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs19(vyw500, vyw3000) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), app(app(ty_Either, bch), bda)) -> new_ltEs18(vyw4610, vyw4810, bch, bda) 25.19/10.96 new_esEs20(vyw4610, vyw4810, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs4(vyw4610, vyw4810, ga, gb, gc) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, ty_Integer) -> new_ltEs16(vyw4612, vyw4812) 25.19/10.96 new_compare29(:%(vyw4600, vyw4601), :%(vyw4800, vyw4801), ty_Integer) -> new_compare17(new_sr0(vyw4600, vyw4801), new_sr0(vyw4800, vyw4601)) 25.19/10.96 new_ltEs19(vyw461, vyw481, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs9(vyw461, vyw481, ff, fg, fh) 25.19/10.96 new_esEs27(vyw502, vyw3002, ty_Char) -> new_esEs13(vyw502, vyw3002) 25.19/10.96 new_lt8(vyw4610, vyw4810, app(ty_Maybe, gg)) -> new_lt15(vyw4610, vyw4810, gg) 25.19/10.96 new_esEs24(vyw460, vyw480, ty_Bool) -> new_esEs10(vyw460, vyw480) 25.19/10.96 new_lt7(vyw460, vyw480) -> new_esEs11(new_compare15(vyw460, vyw480), LT) 25.19/10.96 new_esEs25(vyw500, vyw3000, app(ty_[], cbc)) -> new_esEs12(vyw500, vyw3000, cbc) 25.19/10.96 new_esEs24(vyw460, vyw480, ty_Float) -> new_esEs18(vyw460, vyw480) 25.19/10.96 new_lt4(vyw460, vyw480) -> new_esEs11(new_compare7(vyw460, vyw480), LT) 25.19/10.96 new_lt9(vyw4611, vyw4811, app(ty_Maybe, baa)) -> new_lt15(vyw4611, vyw4811, baa) 25.19/10.96 new_ltEs19(vyw461, vyw481, ty_Float) -> new_ltEs6(vyw461, vyw481) 25.19/10.96 new_lt9(vyw4611, vyw4811, ty_@0) -> new_lt13(vyw4611, vyw4811) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, ty_Double) -> new_ltEs13(vyw4611, vyw4811) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, ty_Float) -> new_ltEs6(vyw4610, vyw4810) 25.19/10.96 new_esEs9(vyw501, vyw3001, app(ty_Maybe, de)) -> new_esEs6(vyw501, vyw3001, de) 25.19/10.96 new_esEs28(vyw500, vyw3000, ty_Double) -> new_esEs14(vyw500, vyw3000) 25.19/10.96 new_lt9(vyw4611, vyw4811, ty_Integer) -> new_lt16(vyw4611, vyw4811) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, ty_@0) -> new_esEs19(vyw500, vyw3000) 25.19/10.96 new_lt14(vyw460, vyw480, bf, bg) -> new_esEs11(new_compare6(vyw460, vyw480, bf, bg), LT) 25.19/10.96 new_compare31(vyw4600, vyw4800, ty_Ordering) -> new_compare15(vyw4600, vyw4800) 25.19/10.96 new_esEs24(vyw460, vyw480, app(ty_Ratio, bgc)) -> new_esEs17(vyw460, vyw480, bgc) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs18(vyw500, vyw3000) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, ty_Double) -> new_ltEs13(vyw4610, vyw4810) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, ty_Float) -> new_ltEs6(vyw4611, vyw4811) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, app(app(ty_@2, bba), bbb)) -> new_ltEs15(vyw4612, vyw4812, bba, bbb) 25.19/10.96 new_esEs5(@2(vyw500, vyw501), @2(vyw3000, vyw3001), bh, ca) -> new_asAs(new_esEs8(vyw500, vyw3000, bh), new_esEs9(vyw501, vyw3001, ca)) 25.19/10.96 new_primMulInt(Neg(vyw5010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw5010, vyw30000)) 25.19/10.96 new_primCmpInt(Pos(Zero), Pos(Succ(vyw48000))) -> new_primCmpNat0(Zero, Succ(vyw48000)) 25.19/10.96 new_esEs29(vyw4610, vyw4810, ty_Double) -> new_esEs14(vyw4610, vyw4810) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), app(app(ty_@2, bcd), bce)) -> new_ltEs15(vyw4610, vyw4810, bcd, bce) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs10(vyw500, vyw3000) 25.19/10.96 new_compare11(vyw84, vyw85, vyw86, vyw87, False, eh, fa) -> GT 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), app(ty_Maybe, deh)) -> new_esEs6(vyw500, vyw3000, deh) 25.19/10.96 new_esEs6(Nothing, Just(vyw3000), chf) -> False 25.19/10.96 new_esEs6(Just(vyw500), Nothing, chf) -> False 25.19/10.96 new_lt20(vyw460, vyw480, app(ty_Ratio, bgc)) -> new_lt17(vyw460, vyw480, bgc) 25.19/10.96 new_ltEs19(vyw461, vyw481, ty_@0) -> new_ltEs8(vyw461, vyw481) 25.19/10.96 new_esEs32(vyw35, vyw37, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs4(vyw35, vyw37, bhf, bhg, bhh) 25.19/10.96 new_esEs6(Nothing, Nothing, chf) -> True 25.19/10.96 new_ltEs19(vyw461, vyw481, ty_Double) -> new_ltEs13(vyw461, vyw481) 25.19/10.96 new_esEs24(vyw460, vyw480, app(app(ty_@2, bf), bg)) -> new_esEs5(vyw460, vyw480, bf, bg) 25.19/10.96 new_esEs24(vyw460, vyw480, app(app(ty_Either, bga), bgb)) -> new_esEs7(vyw460, vyw480, bga, bgb) 25.19/10.96 new_esEs9(vyw501, vyw3001, ty_@0) -> new_esEs19(vyw501, vyw3001) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), ty_Char, ceh) -> new_esEs13(vyw500, vyw3000) 25.19/10.96 new_esEs29(vyw4610, vyw4810, ty_Integer) -> new_esEs16(vyw4610, vyw4810) 25.19/10.96 new_esEs8(vyw500, vyw3000, app(app(app(ty_@3, da), db), dc)) -> new_esEs4(vyw500, vyw3000, da, db, dc) 25.19/10.96 new_lt20(vyw460, vyw480, ty_Float) -> new_lt19(vyw460, vyw480) 25.19/10.96 new_esEs26(vyw501, vyw3001, ty_Char) -> new_esEs13(vyw501, vyw3001) 25.19/10.96 new_lt9(vyw4611, vyw4811, ty_Char) -> new_lt4(vyw4611, vyw4811) 25.19/10.96 new_compare112(vyw460, vyw480, True) -> LT 25.19/10.96 new_compare31(vyw4600, vyw4800, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_compare13(vyw4600, vyw4800, ddf, ddg, ddh) 25.19/10.96 new_ltEs14(GT, LT) -> False 25.19/10.96 new_esEs25(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.96 new_esEs24(vyw460, vyw480, ty_Int) -> new_esEs15(vyw460, vyw480) 25.19/10.96 new_lt15(vyw460, vyw480, eg) -> new_esEs11(new_compare30(vyw460, vyw480, eg), LT) 25.19/10.96 new_esEs27(vyw502, vyw3002, app(app(ty_@2, ceb), cec)) -> new_esEs5(vyw502, vyw3002, ceb, cec) 25.19/10.96 new_esEs26(vyw501, vyw3001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs4(vyw501, vyw3001, cdb, cdc, cdd) 25.19/10.96 new_esEs8(vyw500, vyw3000, ty_Float) -> new_esEs18(vyw500, vyw3000) 25.19/10.96 new_primMulInt(Pos(vyw5010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw5010, vyw30000)) 25.19/10.96 new_primMulInt(Neg(vyw5010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw5010, vyw30000)) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, app(app(app(ty_@3, dcd), dce), dcf)) -> new_ltEs9(vyw4611, vyw4811, dcd, dce, dcf) 25.19/10.96 new_esEs8(vyw500, vyw3000, ty_Bool) -> new_esEs10(vyw500, vyw3000) 25.19/10.96 new_esEs26(vyw501, vyw3001, app(app(ty_Either, ccf), ccg)) -> new_esEs7(vyw501, vyw3001, ccf, ccg) 25.19/10.96 new_esEs27(vyw502, vyw3002, app(ty_Ratio, ceg)) -> new_esEs17(vyw502, vyw3002, ceg) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, ty_@0) -> new_ltEs8(vyw4611, vyw4811) 25.19/10.96 new_compare28(vyw460, vyw480, True) -> EQ 25.19/10.96 new_esEs31(vyw50, vyw300, app(ty_Maybe, chf)) -> new_esEs6(vyw50, vyw300, chf) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Ordering) -> new_ltEs14(vyw4610, vyw4810) 25.19/10.96 new_compare31(vyw4600, vyw4800, app(ty_[], dea)) -> new_compare0(vyw4600, vyw4800, dea) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Bool) -> new_ltEs5(vyw4610, vyw4810) 25.19/10.96 new_esEs17(:%(vyw500, vyw501), :%(vyw3000, vyw3001), bge) -> new_asAs(new_esEs22(vyw500, vyw3000, bge), new_esEs23(vyw501, vyw3001, bge)) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, cfg), cfh), cga), ceh) -> new_esEs4(vyw500, vyw3000, cfg, cfh, cga) 25.19/10.96 new_compare14(vyw460, vyw480, False) -> GT 25.19/10.96 new_esEs24(vyw460, vyw480, ty_Ordering) -> new_esEs11(vyw460, vyw480) 25.19/10.96 new_lt21(vyw4610, vyw4810, ty_Int) -> new_lt11(vyw4610, vyw4810) 25.19/10.96 new_compare111(vyw460, vyw480, False, fb, fc, fd) -> GT 25.19/10.96 new_sr0(Integer(vyw46000), Integer(vyw48010)) -> Integer(new_primMulInt(vyw46000, vyw48010)) 25.19/10.96 new_esEs24(vyw460, vyw480, ty_Double) -> new_esEs14(vyw460, vyw480) 25.19/10.96 new_ltEs5(False, False) -> True 25.19/10.96 new_lt8(vyw4610, vyw4810, app(ty_[], gd)) -> new_lt10(vyw4610, vyw4810, gd) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs13(vyw500, vyw3000) 25.19/10.96 new_esEs29(vyw4610, vyw4810, ty_Bool) -> new_esEs10(vyw4610, vyw4810) 25.19/10.96 new_esEs32(vyw35, vyw37, app(app(ty_Either, bhb), bhc)) -> new_esEs7(vyw35, vyw37, bhb, bhc) 25.19/10.96 new_ltEs6(vyw461, vyw481) -> new_fsEs(new_compare9(vyw461, vyw481)) 25.19/10.96 new_compare9(Float(vyw4600, Pos(vyw46010)), Float(vyw4800, Pos(vyw48010))) -> new_compare12(new_sr(vyw4600, Pos(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) 25.19/10.96 new_esEs25(vyw500, vyw3000, ty_Float) -> new_esEs18(vyw500, vyw3000) 25.19/10.96 new_lt9(vyw4611, vyw4811, app(ty_Ratio, bab)) -> new_lt17(vyw4611, vyw4811, bab) 25.19/10.96 new_esEs20(vyw4610, vyw4810, ty_Float) -> new_esEs18(vyw4610, vyw4810) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Bool, bdf) -> new_ltEs5(vyw4610, vyw4810) 25.19/10.96 new_ltEs19(vyw461, vyw481, app(app(ty_@2, cad), cae)) -> new_ltEs15(vyw461, vyw481, cad, cae) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), app(app(ty_@2, dfd), dfe)) -> new_esEs5(vyw500, vyw3000, dfd, dfe) 25.19/10.96 new_compare0([], :(vyw4800, vyw4801), bgd) -> LT 25.19/10.96 new_asAs(True, vyw56) -> vyw56 25.19/10.96 new_esEs25(vyw500, vyw3000, ty_Bool) -> new_esEs10(vyw500, vyw3000) 25.19/10.96 new_esEs21(vyw4611, vyw4811, app(ty_Maybe, baa)) -> new_esEs6(vyw4611, vyw4811, baa) 25.19/10.96 new_lt8(vyw4610, vyw4810, ty_Int) -> new_lt11(vyw4610, vyw4810) 25.19/10.96 new_esEs4(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), cag, cah, cba) -> new_asAs(new_esEs25(vyw500, vyw3000, cag), new_asAs(new_esEs26(vyw501, vyw3001, cah), new_esEs27(vyw502, vyw3002, cba))) 25.19/10.96 new_esEs9(vyw501, vyw3001, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs4(vyw501, vyw3001, ec, ed, ee) 25.19/10.96 new_ltEs4(Nothing, Just(vyw4810), bbg) -> True 25.19/10.96 new_esEs28(vyw500, vyw3000, ty_Ordering) -> new_esEs11(vyw500, vyw3000) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Ordering, bdf) -> new_ltEs14(vyw4610, vyw4810) 25.19/10.96 new_esEs31(vyw50, vyw300, ty_Integer) -> new_esEs16(vyw50, vyw300) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Float) -> new_ltEs6(vyw4610, vyw4810) 25.19/10.96 new_esEs32(vyw35, vyw37, ty_@0) -> new_esEs19(vyw35, vyw37) 25.19/10.96 new_esEs28(vyw500, vyw3000, ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.96 new_lt12(vyw460, vyw480) -> new_esEs11(new_compare19(vyw460, vyw480), LT) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), app(ty_Ratio, dga)) -> new_esEs17(vyw500, vyw3000, dga) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, app(app(ty_@2, dch), dda)) -> new_ltEs15(vyw4611, vyw4811, dch, dda) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), ty_@0, ceh) -> new_esEs19(vyw500, vyw3000) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Float, bdf) -> new_ltEs6(vyw4610, vyw4810) 25.19/10.96 new_esEs31(vyw50, vyw300, ty_Float) -> new_esEs18(vyw50, vyw300) 25.19/10.96 new_compare31(vyw4600, vyw4800, ty_@0) -> new_compare16(vyw4600, vyw4800) 25.19/10.96 new_primCmpInt(Pos(Succ(vyw46000)), Pos(vyw4800)) -> new_primCmpNat0(Succ(vyw46000), vyw4800) 25.19/10.96 new_lt20(vyw460, vyw480, app(ty_[], bgd)) -> new_lt10(vyw460, vyw480, bgd) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), ty_Integer) -> new_ltEs16(vyw4610, vyw4810) 25.19/10.96 new_compare0([], [], bgd) -> EQ 25.19/10.96 new_sr(vyw501, vyw3000) -> new_primMulInt(vyw501, vyw3000) 25.19/10.96 new_esEs28(vyw500, vyw3000, ty_Char) -> new_esEs13(vyw500, vyw3000) 25.19/10.96 new_esEs8(vyw500, vyw3000, app(ty_Maybe, cb)) -> new_esEs6(vyw500, vyw3000, cb) 25.19/10.96 new_esEs21(vyw4611, vyw4811, app(app(ty_Either, bac), bad)) -> new_esEs7(vyw4611, vyw4811, bac, bad) 25.19/10.96 new_esEs20(vyw4610, vyw4810, ty_Ordering) -> new_esEs11(vyw4610, vyw4810) 25.19/10.96 new_primMulNat0(Zero, Zero) -> Zero 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs9(vyw4610, vyw4810, beg, beh, bfa) 25.19/10.96 new_compare16(@0, @0) -> EQ 25.19/10.96 new_lt8(vyw4610, vyw4810, ty_Float) -> new_lt19(vyw4610, vyw4810) 25.19/10.96 new_esEs8(vyw500, vyw3000, ty_Double) -> new_esEs14(vyw500, vyw3000) 25.19/10.96 new_lt16(vyw460, vyw480) -> new_esEs11(new_compare17(vyw460, vyw480), LT) 25.19/10.96 new_esEs20(vyw4610, vyw4810, ty_Int) -> new_esEs15(vyw4610, vyw4810) 25.19/10.96 new_lt21(vyw4610, vyw4810, app(ty_[], dbe)) -> new_lt10(vyw4610, vyw4810, dbe) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, app(ty_Maybe, bfe)) -> new_ltEs4(vyw4610, vyw4810, bfe) 25.19/10.96 new_compare19(Double(vyw4600, Neg(vyw46010)), Double(vyw4800, Neg(vyw48010))) -> new_compare12(new_sr(vyw4600, Neg(vyw48010)), new_sr(Neg(vyw46010), vyw4800)) 25.19/10.96 new_esEs20(vyw4610, vyw4810, ty_Integer) -> new_esEs16(vyw4610, vyw4810) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), app(app(ty_@2, cfe), cff), ceh) -> new_esEs5(vyw500, vyw3000, cfe, cff) 25.19/10.96 new_compare31(vyw4600, vyw4800, app(ty_Ratio, dee)) -> new_compare29(vyw4600, vyw4800, dee) 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), app(ty_[], dfa)) -> new_esEs12(vyw500, vyw3000, dfa) 25.19/10.96 new_esEs9(vyw501, vyw3001, ty_Integer) -> new_esEs16(vyw501, vyw3001) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, ty_@0) -> new_ltEs8(vyw4612, vyw4812) 25.19/10.96 new_esEs9(vyw501, vyw3001, app(app(ty_Either, dg), dh)) -> new_esEs7(vyw501, vyw3001, dg, dh) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), app(ty_Maybe, cfa), ceh) -> new_esEs6(vyw500, vyw3000, cfa) 25.19/10.96 new_esEs31(vyw50, vyw300, ty_Bool) -> new_esEs10(vyw50, vyw300) 25.19/10.96 new_esEs26(vyw501, vyw3001, app(ty_Maybe, ccd)) -> new_esEs6(vyw501, vyw3001, ccd) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, ty_Double) -> new_esEs14(vyw500, vyw3000) 25.19/10.96 new_esEs21(vyw4611, vyw4811, ty_Bool) -> new_esEs10(vyw4611, vyw4811) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, ty_Double) -> new_ltEs13(vyw4612, vyw4812) 25.19/10.96 new_esEs32(vyw35, vyw37, app(app(ty_@2, bhd), bhe)) -> new_esEs5(vyw35, vyw37, bhd, bhe) 25.19/10.96 new_primCompAux0(vyw109, EQ) -> vyw109 25.19/10.96 new_esEs8(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.96 new_esEs20(vyw4610, vyw4810, ty_Double) -> new_esEs14(vyw4610, vyw4810) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, ty_Ordering) -> new_esEs11(vyw500, vyw3000) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, ty_Char) -> new_ltEs7(vyw4611, vyw4811) 25.19/10.96 new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False 25.19/10.96 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 25.19/10.96 new_ltEs16(vyw461, vyw481) -> new_fsEs(new_compare17(vyw461, vyw481)) 25.19/10.96 new_esEs25(vyw500, vyw3000, app(ty_Maybe, cbb)) -> new_esEs6(vyw500, vyw3000, cbb) 25.19/10.96 new_esEs20(vyw4610, vyw4810, ty_Bool) -> new_esEs10(vyw4610, vyw4810) 25.19/10.96 new_esEs27(vyw502, vyw3002, app(ty_[], cdg)) -> new_esEs12(vyw502, vyw3002, cdg) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, app(app(ty_Either, ddd), dde)) -> new_ltEs18(vyw4611, vyw4811, ddd, dde) 25.19/10.96 new_esEs11(GT, GT) -> True 25.19/10.96 new_esEs21(vyw4611, vyw4811, ty_Float) -> new_esEs18(vyw4611, vyw4811) 25.19/10.96 new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 25.19/10.96 new_compare31(vyw4600, vyw4800, ty_Float) -> new_compare9(vyw4600, vyw4800) 25.19/10.96 new_esEs11(EQ, EQ) -> True 25.19/10.96 new_esEs8(vyw500, vyw3000, ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.96 new_compare31(vyw4600, vyw4800, ty_Bool) -> new_compare8(vyw4600, vyw4800) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, app(app(app(ty_@3, bae), baf), bag)) -> new_ltEs9(vyw4612, vyw4812, bae, baf, bag) 25.19/10.96 new_esEs20(vyw4610, vyw4810, app(ty_Maybe, gg)) -> new_esEs6(vyw4610, vyw4810, gg) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, app(app(ty_@2, cgh), cha)) -> new_esEs5(vyw500, vyw3000, cgh, cha) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, app(app(ty_Either, cgf), cgg)) -> new_esEs7(vyw500, vyw3000, cgf, cgg) 25.19/10.96 new_lt9(vyw4611, vyw4811, ty_Int) -> new_lt11(vyw4611, vyw4811) 25.19/10.96 new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False 25.19/10.96 new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, app(ty_Maybe, cgd)) -> new_esEs6(vyw500, vyw3000, cgd) 25.19/10.96 new_lt21(vyw4610, vyw4810, app(ty_Maybe, dbh)) -> new_lt15(vyw4610, vyw4810, dbh) 25.19/10.96 new_primCmpInt(Neg(Zero), Neg(Succ(vyw48000))) -> new_primCmpNat0(Succ(vyw48000), Zero) 25.19/10.96 new_esEs12(:(vyw500, vyw501), :(vyw3000, vyw3001), chg) -> new_asAs(new_esEs28(vyw500, vyw3000, chg), new_esEs12(vyw501, vyw3001, chg)) 25.19/10.96 new_ltEs19(vyw461, vyw481, app(app(ty_Either, bef), bdf)) -> new_ltEs18(vyw461, vyw481, bef, bdf) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, ty_Char) -> new_ltEs7(vyw4610, vyw4810) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, ty_Int) -> new_esEs15(vyw500, vyw3000) 25.19/10.96 new_esEs8(vyw500, vyw3000, ty_Ordering) -> new_esEs11(vyw500, vyw3000) 25.19/10.96 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.19/10.96 new_esEs21(vyw4611, vyw4811, ty_Integer) -> new_esEs16(vyw4611, vyw4811) 25.19/10.96 new_esEs14(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs15(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 25.19/10.96 new_compare31(vyw4600, vyw4800, ty_Char) -> new_compare7(vyw4600, vyw4800) 25.19/10.96 new_esEs7(Left(vyw500), Left(vyw3000), ty_Integer, ceh) -> new_esEs16(vyw500, vyw3000) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, ty_Char) -> new_ltEs7(vyw4612, vyw4812) 25.19/10.96 new_ltEs18(Right(vyw4610), Right(vyw4810), bef, ty_Int) -> new_ltEs12(vyw4610, vyw4810) 25.19/10.96 new_ltEs19(vyw461, vyw481, ty_Bool) -> new_ltEs5(vyw461, vyw481) 25.19/10.96 new_compare13(vyw460, vyw480, fb, fc, fd) -> new_compare210(vyw460, vyw480, new_esEs4(vyw460, vyw480, fb, fc, fd), fb, fc, fd) 25.19/10.96 new_esEs31(vyw50, vyw300, ty_Int) -> new_esEs15(vyw50, vyw300) 25.19/10.96 new_esEs13(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) 25.19/10.96 new_esEs28(vyw500, vyw3000, ty_Bool) -> new_esEs10(vyw500, vyw3000) 25.19/10.96 new_lt6(vyw460, vyw480, fb, fc, fd) -> new_esEs11(new_compare13(vyw460, vyw480, fb, fc, fd), LT) 25.19/10.96 new_compare26(vyw460, vyw480, bga, bgb) -> new_compare27(vyw460, vyw480, new_esEs7(vyw460, vyw480, bga, bgb), bga, bgb) 25.19/10.96 new_ltEs13(vyw461, vyw481) -> new_fsEs(new_compare19(vyw461, vyw481)) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, ty_Bool) -> new_ltEs5(vyw4612, vyw4812) 25.19/10.96 new_compare31(vyw4600, vyw4800, ty_Integer) -> new_compare17(vyw4600, vyw4800) 25.19/10.96 new_compare23(@2(vyw460, vyw461), @2(vyw480, vyw481), False, cab, cac) -> new_compare18(vyw460, vyw461, vyw480, vyw481, new_lt20(vyw460, vyw480, cab), new_asAs(new_esEs24(vyw460, vyw480, cab), new_ltEs19(vyw461, vyw481, cac)), cab, cac) 25.19/10.96 new_esEs27(vyw502, vyw3002, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs4(vyw502, vyw3002, ced, cee, cef) 25.19/10.96 new_lt8(vyw4610, vyw4810, app(ty_Ratio, gh)) -> new_lt17(vyw4610, vyw4810, gh) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, app(app(app(ty_@3, chb), chc), chd)) -> new_esEs4(vyw500, vyw3000, chb, chc, chd) 25.19/10.96 new_not(False) -> True 25.19/10.96 new_esEs26(vyw501, vyw3001, ty_Integer) -> new_esEs16(vyw501, vyw3001) 25.19/10.96 new_esEs21(vyw4611, vyw4811, app(ty_[], hf)) -> new_esEs12(vyw4611, vyw4811, hf) 25.19/10.96 new_esEs21(vyw4611, vyw4811, ty_Double) -> new_esEs14(vyw4611, vyw4811) 25.19/10.96 new_esEs28(vyw500, vyw3000, app(ty_[], daa)) -> new_esEs12(vyw500, vyw3000, daa) 25.19/10.96 new_esEs28(vyw500, vyw3000, ty_Float) -> new_esEs18(vyw500, vyw3000) 25.19/10.96 new_esEs27(vyw502, vyw3002, app(app(ty_Either, cdh), cea)) -> new_esEs7(vyw502, vyw3002, cdh, cea) 25.19/10.96 new_compare0(:(vyw4600, vyw4601), [], bgd) -> GT 25.19/10.96 new_primPlusNat0(Succ(vyw7500), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat0(vyw7500, vyw3000000))) 25.19/10.96 new_esEs32(vyw35, vyw37, app(ty_Ratio, caa)) -> new_esEs17(vyw35, vyw37, caa) 25.19/10.96 new_esEs16(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) 25.19/10.96 new_esEs27(vyw502, vyw3002, ty_Ordering) -> new_esEs11(vyw502, vyw3002) 25.19/10.96 new_esEs25(vyw500, vyw3000, ty_Double) -> new_esEs14(vyw500, vyw3000) 25.19/10.96 new_compare27(vyw460, vyw480, True, bga, bgb) -> EQ 25.19/10.96 new_compare25(vyw460, vyw480, True) -> EQ 25.19/10.96 new_ltEs10(vyw4612, vyw4812, app(ty_Maybe, bbc)) -> new_ltEs4(vyw4612, vyw4812, bbc) 25.19/10.96 new_esEs28(vyw500, vyw3000, ty_@0) -> new_esEs19(vyw500, vyw3000) 25.19/10.96 new_compare6(vyw460, vyw480, bf, bg) -> new_compare23(vyw460, vyw480, new_esEs5(vyw460, vyw480, bf, bg), bf, bg) 25.19/10.96 new_esEs10(True, True) -> True 25.19/10.96 new_ltEs10(vyw4612, vyw4812, ty_Ordering) -> new_ltEs14(vyw4612, vyw4812) 25.19/10.96 new_lt20(vyw460, vyw480, ty_Char) -> new_lt4(vyw460, vyw480) 25.19/10.96 new_lt20(vyw460, vyw480, ty_Int) -> new_lt11(vyw460, vyw480) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, app(ty_Ratio, ddc)) -> new_ltEs17(vyw4611, vyw4811, ddc) 25.19/10.96 new_esEs22(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 25.19/10.96 new_compare27(vyw460, vyw480, False, bga, bgb) -> new_compare110(vyw460, vyw480, new_ltEs18(vyw460, vyw480, bga, bgb), bga, bgb) 25.19/10.96 new_lt20(vyw460, vyw480, app(ty_Maybe, eg)) -> new_lt15(vyw460, vyw480, eg) 25.19/10.96 new_lt20(vyw460, vyw480, app(app(ty_Either, bga), bgb)) -> new_lt18(vyw460, vyw480, bga, bgb) 25.19/10.96 new_lt21(vyw4610, vyw4810, ty_Integer) -> new_lt16(vyw4610, vyw4810) 25.19/10.96 new_esEs29(vyw4610, vyw4810, app(ty_Maybe, dbh)) -> new_esEs6(vyw4610, vyw4810, dbh) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), app(ty_Ratio, bcg)) -> new_ltEs17(vyw4610, vyw4810, bcg) 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), app(ty_Maybe, beb), bdf) -> new_ltEs4(vyw4610, vyw4810, beb) 25.19/10.96 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.19/10.96 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.19/10.96 new_esEs25(vyw500, vyw3000, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs4(vyw500, vyw3000, cbh, cca, ccb) 25.19/10.96 new_esEs31(vyw50, vyw300, app(app(ty_Either, cgc), ceh)) -> new_esEs7(vyw50, vyw300, cgc, ceh) 25.19/10.96 new_ltEs5(True, True) -> True 25.19/10.96 new_esEs28(vyw500, vyw3000, app(app(ty_@2, dad), dae)) -> new_esEs5(vyw500, vyw3000, dad, dae) 25.19/10.96 new_ltEs14(LT, EQ) -> True 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_Integer, bdf) -> new_ltEs16(vyw4610, vyw4810) 25.19/10.96 new_compare31(vyw4600, vyw4800, app(app(ty_@2, deb), dec)) -> new_compare6(vyw4600, vyw4800, deb, dec) 25.19/10.96 new_lt9(vyw4611, vyw4811, ty_Float) -> new_lt19(vyw4611, vyw4811) 25.19/10.96 new_esEs32(vyw35, vyw37, app(ty_[], bha)) -> new_esEs12(vyw35, vyw37, bha) 25.19/10.96 new_ltEs4(Just(vyw4610), Just(vyw4810), app(ty_[], bcc)) -> new_ltEs11(vyw4610, vyw4810, bcc) 25.19/10.96 new_esEs30(vyw34, vyw35, vyw36, vyw37, True, bgf, bgg) -> new_esEs11(new_compare23(@2(vyw34, vyw35), @2(vyw36, vyw37), new_esEs32(vyw35, vyw37, bgg), bgf, bgg), LT) 25.19/10.96 new_esEs9(vyw501, vyw3001, ty_Double) -> new_esEs14(vyw501, vyw3001) 25.19/10.96 new_ltEs18(Left(vyw4610), Right(vyw4810), bef, bdf) -> True 25.19/10.96 new_esEs31(vyw50, vyw300, ty_Ordering) -> new_esEs11(vyw50, vyw300) 25.19/10.96 new_esEs28(vyw500, vyw3000, app(ty_Ratio, dba)) -> new_esEs17(vyw500, vyw3000, dba) 25.19/10.96 new_esEs28(vyw500, vyw3000, app(ty_Maybe, chh)) -> new_esEs6(vyw500, vyw3000, chh) 25.19/10.96 new_esEs8(vyw500, vyw3000, ty_Char) -> new_esEs13(vyw500, vyw3000) 25.19/10.96 new_esEs31(vyw50, vyw300, app(ty_[], chg)) -> new_esEs12(vyw50, vyw300, chg) 25.19/10.96 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.19/10.96 new_compare31(vyw4600, vyw4800, app(app(ty_Either, def), deg)) -> new_compare26(vyw4600, vyw4800, def, deg) 25.19/10.96 new_ltEs10(vyw4612, vyw4812, app(ty_Ratio, bbd)) -> new_ltEs17(vyw4612, vyw4812, bbd) 25.19/10.96 new_esEs26(vyw501, vyw3001, ty_@0) -> new_esEs19(vyw501, vyw3001) 25.19/10.96 new_esEs29(vyw4610, vyw4810, ty_Int) -> new_esEs15(vyw4610, vyw4810) 25.19/10.96 new_ltEs18(Right(vyw4610), Left(vyw4810), bef, bdf) -> False 25.19/10.96 new_compare7(Char(vyw4600), Char(vyw4800)) -> new_primCmpNat0(vyw4600, vyw4800) 25.19/10.96 new_compare31(vyw4600, vyw4800, ty_Double) -> new_compare19(vyw4600, vyw4800) 25.19/10.96 new_primCmpNat0(Succ(vyw46000), Succ(vyw48000)) -> new_primCmpNat0(vyw46000, vyw48000) 25.19/10.96 new_lt21(vyw4610, vyw4810, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_lt6(vyw4610, vyw4810, dbb, dbc, dbd) 25.19/10.96 new_esEs7(Right(vyw500), Right(vyw3000), cgc, ty_Char) -> new_esEs13(vyw500, vyw3000) 25.19/10.96 new_lt20(vyw460, vyw480, app(app(ty_@2, bf), bg)) -> new_lt14(vyw460, vyw480, bf, bg) 25.19/10.96 new_esEs27(vyw502, vyw3002, app(ty_Maybe, cdf)) -> new_esEs6(vyw502, vyw3002, cdf) 25.19/10.96 new_ltEs12(vyw461, vyw481) -> new_fsEs(new_compare12(vyw461, vyw481)) 25.19/10.96 new_compare12(vyw460, vyw480) -> new_primCmpInt(vyw460, vyw480) 25.19/10.96 new_compare24(vyw460, vyw480, False, eg) -> new_compare10(vyw460, vyw480, new_ltEs4(vyw460, vyw480, eg), eg) 25.19/10.96 new_esEs12([], [], chg) -> True 25.19/10.96 new_ltEs10(vyw4612, vyw4812, app(ty_[], bah)) -> new_ltEs11(vyw4612, vyw4812, bah) 25.19/10.96 new_lt20(vyw460, vyw480, ty_Bool) -> new_lt5(vyw460, vyw480) 25.19/10.96 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.19/10.96 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.19/10.96 new_lt20(vyw460, vyw480, app(app(app(ty_@3, fb), fc), fd)) -> new_lt6(vyw460, vyw480, fb, fc, fd) 25.19/10.96 new_esEs20(vyw4610, vyw4810, ty_Char) -> new_esEs13(vyw4610, vyw4810) 25.19/10.96 new_compare19(Double(vyw4600, Pos(vyw46010)), Double(vyw4800, Pos(vyw48010))) -> new_compare12(new_sr(vyw4600, Pos(vyw48010)), new_sr(Pos(vyw46010), vyw4800)) 25.19/10.96 new_lt21(vyw4610, vyw4810, ty_Ordering) -> new_lt7(vyw4610, vyw4810) 25.19/10.96 new_ltEs19(vyw461, vyw481, app(ty_Maybe, bbg)) -> new_ltEs4(vyw461, vyw481, bbg) 25.19/10.96 new_compare110(vyw460, vyw480, False, bga, bgb) -> GT 25.19/10.96 new_lt20(vyw460, vyw480, ty_Integer) -> new_lt16(vyw460, vyw480) 25.19/10.96 new_lt21(vyw4610, vyw4810, app(app(ty_Either, dcb), dcc)) -> new_lt18(vyw4610, vyw4810, dcb, dcc) 25.19/10.96 new_primEqNat0(Zero, Zero) -> True 25.19/10.96 new_ltEs18(Left(vyw4610), Left(vyw4810), ty_@0, bdf) -> new_ltEs8(vyw4610, vyw4810) 25.19/10.96 new_esEs29(vyw4610, vyw4810, app(app(ty_@2, dbf), dbg)) -> new_esEs5(vyw4610, vyw4810, dbf, dbg) 25.19/10.96 new_compare31(vyw4600, vyw4800, app(ty_Maybe, ded)) -> new_compare30(vyw4600, vyw4800, ded) 25.19/10.96 new_esEs29(vyw4610, vyw4810, app(ty_Ratio, dca)) -> new_esEs17(vyw4610, vyw4810, dca) 25.19/10.96 new_asAs(False, vyw56) -> False 25.19/10.96 new_esEs6(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs14(vyw500, vyw3000) 25.19/10.96 new_lt11(vyw460, vyw480) -> new_esEs11(new_compare12(vyw460, vyw480), LT) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, ty_Bool) -> new_ltEs5(vyw4611, vyw4811) 25.19/10.96 new_ltEs14(LT, LT) -> True 25.19/10.96 new_esEs21(vyw4611, vyw4811, ty_Char) -> new_esEs13(vyw4611, vyw4811) 25.19/10.96 new_esEs29(vyw4610, vyw4810, app(app(ty_Either, dcb), dcc)) -> new_esEs7(vyw4610, vyw4810, dcb, dcc) 25.19/10.96 new_esEs24(vyw460, vyw480, ty_Integer) -> new_esEs16(vyw460, vyw480) 25.19/10.96 new_ltEs20(vyw4611, vyw4811, app(ty_Maybe, ddb)) -> new_ltEs4(vyw4611, vyw4811, ddb) 25.19/10.96 new_esEs27(vyw502, vyw3002, ty_@0) -> new_esEs19(vyw502, vyw3002) 25.19/10.96 new_esEs29(vyw4610, vyw4810, ty_Float) -> new_esEs18(vyw4610, vyw4810) 25.19/10.96 new_lt9(vyw4611, vyw4811, app(ty_[], hf)) -> new_lt10(vyw4611, vyw4811, hf) 25.19/10.96 new_esEs7(Left(vyw500), Right(vyw3000), cgc, ceh) -> False 25.19/10.96 new_esEs7(Right(vyw500), Left(vyw3000), cgc, ceh) -> False 25.19/10.96 new_esEs32(vyw35, vyw37, ty_Char) -> new_esEs13(vyw35, vyw37) 25.19/10.96 new_compare15(vyw460, vyw480) -> new_compare25(vyw460, vyw480, new_esEs11(vyw460, vyw480)) 25.19/10.96 new_compare25(vyw460, vyw480, False) -> new_compare112(vyw460, vyw480, new_ltEs14(vyw460, vyw480)) 25.19/10.96 new_compare18(vyw84, vyw85, vyw86, vyw87, True, vyw89, eh, fa) -> new_compare11(vyw84, vyw85, vyw86, vyw87, True, eh, fa) 25.19/10.96 new_esEs29(vyw4610, vyw4810, ty_Ordering) -> new_esEs11(vyw4610, vyw4810) 25.19/10.96 25.19/10.96 The set Q consists of the following terms: 25.19/10.96 25.19/10.96 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.19/10.96 new_esEs20(x0, x1, ty_@0) 25.19/10.96 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_compare23(x0, x1, True, x2, x3) 25.19/10.96 new_ltEs20(x0, x1, ty_Integer) 25.19/10.96 new_esEs27(x0, x1, ty_Double) 25.19/10.96 new_esEs9(x0, x1, app(ty_[], x2)) 25.19/10.96 new_esEs24(x0, x1, ty_Integer) 25.19/10.96 new_primPlusNat0(Zero, Succ(x0)) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.19/10.96 new_esEs28(x0, x1, ty_Integer) 25.19/10.96 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.19/10.96 new_compare10(x0, x1, True, x2) 25.19/10.96 new_esEs21(x0, x1, ty_Integer) 25.19/10.96 new_esEs20(x0, x1, ty_Bool) 25.19/10.96 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_lt21(x0, x1, ty_Int) 25.19/10.96 new_esEs9(x0, x1, ty_Bool) 25.19/10.96 new_lt9(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_esEs8(x0, x1, ty_Bool) 25.19/10.96 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.19/10.96 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.19/10.96 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.19/10.96 new_esEs9(x0, x1, ty_Integer) 25.19/10.96 new_esEs22(x0, x1, ty_Integer) 25.19/10.96 new_esEs21(x0, x1, ty_Bool) 25.19/10.96 new_ltEs18(Left(x0), Right(x1), x2, x3) 25.19/10.96 new_ltEs18(Right(x0), Left(x1), x2, x3) 25.19/10.96 new_esEs8(x0, x1, ty_@0) 25.19/10.96 new_compare112(x0, x1, False) 25.19/10.96 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 25.19/10.96 new_primMulNat0(Succ(x0), Succ(x1)) 25.19/10.96 new_ltEs13(x0, x1) 25.19/10.96 new_primEqInt(Pos(Zero), Pos(Zero)) 25.19/10.96 new_esEs6(Nothing, Just(x0), x1) 25.19/10.96 new_lt14(x0, x1, x2, x3) 25.19/10.96 new_esEs28(x0, x1, ty_Bool) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), ty_Char) 25.19/10.96 new_ltEs20(x0, x1, ty_Bool) 25.19/10.96 new_esEs26(x0, x1, ty_Double) 25.19/10.96 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.19/10.96 new_lt8(x0, x1, ty_Float) 25.19/10.96 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_ltEs5(False, True) 25.19/10.96 new_ltEs5(True, False) 25.19/10.96 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 25.19/10.96 new_esEs27(x0, x1, ty_Ordering) 25.19/10.96 new_ltEs11(x0, x1, x2) 25.19/10.96 new_ltEs14(LT, LT) 25.19/10.96 new_lt9(x0, x1, ty_Float) 25.19/10.96 new_esEs7(Left(x0), Right(x1), x2, x3) 25.19/10.96 new_esEs7(Right(x0), Left(x1), x2, x3) 25.19/10.96 new_esEs27(x0, x1, ty_Int) 25.19/10.96 new_primEqInt(Neg(Zero), Neg(Zero)) 25.19/10.96 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), ty_Bool) 25.19/10.96 new_lt21(x0, x1, ty_Double) 25.19/10.96 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.19/10.96 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_lt21(x0, x1, ty_Char) 25.19/10.96 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_ltEs10(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_esEs27(x0, x1, ty_Char) 25.19/10.96 new_ltEs10(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_esEs29(x0, x1, ty_Float) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), ty_Int) 25.19/10.96 new_compare24(x0, x1, False, x2) 25.19/10.96 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_esEs32(x0, x1, ty_Double) 25.19/10.96 new_esEs25(x0, x1, app(ty_[], x2)) 25.19/10.96 new_lt8(x0, x1, ty_Integer) 25.19/10.96 new_esEs20(x0, x1, ty_Integer) 25.19/10.96 new_esEs32(x0, x1, ty_Ordering) 25.19/10.96 new_esEs8(x0, x1, ty_Int) 25.19/10.96 new_esEs28(x0, x1, app(ty_[], x2)) 25.19/10.96 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_lt12(x0, x1) 25.19/10.96 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.19/10.96 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_esEs10(True, True) 25.19/10.96 new_lt21(x0, x1, ty_@0) 25.19/10.96 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_esEs11(EQ, GT) 25.19/10.96 new_esEs11(GT, EQ) 25.19/10.96 new_esEs21(x0, x1, ty_@0) 25.19/10.96 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.19/10.96 new_esEs31(x0, x1, ty_Float) 25.19/10.96 new_compare0([], [], x0) 25.19/10.96 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 25.19/10.96 new_lt8(x0, x1, ty_Bool) 25.19/10.96 new_primEqInt(Pos(Zero), Neg(Zero)) 25.19/10.96 new_primEqInt(Neg(Zero), Pos(Zero)) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, ty_Float) 25.19/10.96 new_primPlusNat1(Zero, x0) 25.19/10.96 new_ltEs7(x0, x1) 25.19/10.96 new_primCmpNat0(Zero, Succ(x0)) 25.19/10.96 new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), ty_@0) 25.19/10.96 new_primMulNat0(Succ(x0), Zero) 25.19/10.96 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.19/10.96 new_esEs31(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_compare31(x0, x1, ty_Integer) 25.19/10.96 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_compare110(x0, x1, False, x2, x3) 25.19/10.96 new_esEs8(x0, x1, ty_Char) 25.19/10.96 new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) 25.19/10.96 new_lt20(x0, x1, ty_Double) 25.19/10.96 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_esEs8(x0, x1, ty_Double) 25.19/10.96 new_esEs27(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_esEs21(x0, x1, ty_Char) 25.19/10.96 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_lt20(x0, x1, ty_Float) 25.19/10.96 new_lt15(x0, x1, x2) 25.19/10.96 new_esEs21(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_esEs27(x0, x1, ty_@0) 25.19/10.96 new_primCompAux0(x0, EQ) 25.19/10.96 new_compare13(x0, x1, x2, x3, x4) 25.19/10.96 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.96 new_lt19(x0, x1) 25.19/10.96 new_esEs24(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_esEs21(x0, x1, ty_Int) 25.19/10.96 new_esEs25(x0, x1, ty_Char) 25.19/10.96 new_esEs20(x0, x1, ty_Float) 25.19/10.96 new_esEs9(x0, x1, ty_Int) 25.19/10.96 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.19/10.96 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 25.19/10.96 new_ltEs19(x0, x1, ty_Float) 25.19/10.96 new_compare6(x0, x1, x2, x3) 25.19/10.96 new_lt21(x0, x1, ty_Integer) 25.19/10.96 new_compare111(x0, x1, True, x2, x3, x4) 25.19/10.96 new_ltEs10(x0, x1, ty_Float) 25.19/10.96 new_esEs28(x0, x1, ty_Ordering) 25.19/10.96 new_esEs9(x0, x1, ty_Ordering) 25.19/10.96 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_esEs9(x0, x1, ty_Float) 25.19/10.96 new_esEs31(x0, x1, ty_Integer) 25.19/10.96 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.19/10.96 new_ltEs20(x0, x1, ty_Int) 25.19/10.96 new_compare14(x0, x1, False) 25.19/10.96 new_esEs8(x0, x1, ty_Ordering) 25.19/10.96 new_compare12(x0, x1) 25.19/10.96 new_esEs20(x0, x1, ty_Ordering) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 25.19/10.96 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 25.19/10.96 new_esEs28(x0, x1, ty_Double) 25.19/10.96 new_lt9(x0, x1, ty_Integer) 25.19/10.96 new_esEs31(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_ltEs14(LT, GT) 25.19/10.96 new_ltEs14(GT, LT) 25.19/10.96 new_esEs26(x0, x1, ty_@0) 25.19/10.96 new_esEs18(Float(x0, x1), Float(x2, x3)) 25.19/10.96 new_esEs6(Just(x0), Just(x1), ty_Double) 25.19/10.96 new_primCmpNat0(Succ(x0), Zero) 25.19/10.96 new_esEs32(x0, x1, ty_Int) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, ty_Char) 25.19/10.96 new_esEs11(LT, GT) 25.19/10.96 new_esEs11(GT, LT) 25.19/10.96 new_ltEs19(x0, x1, ty_Int) 25.19/10.96 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 25.19/10.96 new_esEs27(x0, x1, app(ty_[], x2)) 25.19/10.96 new_compare25(x0, x1, True) 25.19/10.96 new_ltEs10(x0, x1, app(ty_[], x2)) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.19/10.96 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_compare29(:%(x0, x1), :%(x2, x3), ty_Integer) 25.19/10.96 new_esEs31(x0, x1, ty_Bool) 25.19/10.96 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_ltEs4(Just(x0), Just(x1), ty_Double) 25.19/10.96 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_compare10(x0, x1, False, x2) 25.19/10.96 new_asAs(False, x0) 25.19/10.96 new_esEs21(x0, x1, ty_Float) 25.19/10.96 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.19/10.96 new_primPlusNat0(Succ(x0), Zero) 25.19/10.96 new_esEs16(Integer(x0), Integer(x1)) 25.19/10.96 new_lt8(x0, x1, ty_@0) 25.19/10.96 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.96 new_ltEs10(x0, x1, app(ty_Ratio, x2)) 25.19/10.96 new_lt18(x0, x1, x2, x3) 25.19/10.96 new_esEs25(x0, x1, ty_Int) 25.19/10.96 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 25.19/10.96 new_esEs32(x0, x1, ty_Char) 25.19/10.96 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.19/10.96 new_ltEs20(x0, x1, ty_Char) 25.19/10.96 new_primEqNat0(Zero, Succ(x0)) 25.19/10.96 new_ltEs10(x0, x1, ty_Int) 25.19/10.96 new_ltEs19(x0, x1, app(ty_[], x2)) 25.19/10.96 new_ltEs10(x0, x1, ty_Ordering) 25.19/10.96 new_primCmpNat0(Succ(x0), Succ(x1)) 25.19/10.96 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 25.19/10.96 new_ltEs15(@2(x0, x1), @2(x2, x3), x4, x5) 25.19/10.96 new_lt13(x0, x1) 25.19/10.96 new_compare7(Char(x0), Char(x1)) 25.19/10.96 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.96 new_esEs10(False, False) 25.19/10.96 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.19/10.96 new_ltEs17(x0, x1, x2) 25.19/10.96 new_ltEs19(x0, x1, ty_Char) 25.19/10.97 new_compare24(x0, x1, True, x2) 25.19/10.97 new_esEs29(x0, x1, ty_Double) 25.19/10.97 new_ltEs14(EQ, GT) 25.19/10.97 new_ltEs14(GT, EQ) 25.19/10.97 new_esEs32(x0, x1, ty_Float) 25.19/10.97 new_esEs23(x0, x1, ty_Int) 25.19/10.97 new_esEs20(x0, x1, ty_Char) 25.19/10.97 new_esEs26(x0, x1, app(ty_[], x2)) 25.19/10.97 new_compare28(x0, x1, False) 25.19/10.97 new_primEqNat0(Succ(x0), Succ(x1)) 25.19/10.97 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.19/10.97 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.19/10.97 new_compare18(x0, x1, x2, x3, True, x4, x5, x6) 25.19/10.97 new_esEs23(x0, x1, ty_Integer) 25.19/10.97 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.97 new_esEs8(x0, x1, app(ty_[], x2)) 25.19/10.97 new_esEs8(x0, x1, ty_Integer) 25.19/10.97 new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) 25.19/10.97 new_esEs24(x0, x1, ty_@0) 25.19/10.97 new_esEs25(x0, x1, ty_Float) 25.19/10.97 new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) 25.19/10.97 new_ltEs6(x0, x1) 25.19/10.97 new_esEs8(x0, x1, app(ty_Ratio, x2)) 25.19/10.97 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 25.19/10.97 new_esEs20(x0, x1, ty_Int) 25.19/10.97 new_lt21(x0, x1, ty_Bool) 25.19/10.97 new_lt9(x0, x1, ty_Char) 25.19/10.97 new_lt7(x0, x1) 25.19/10.97 new_ltEs5(True, True) 25.19/10.97 new_compare0(:(x0, x1), :(x2, x3), x4) 25.19/10.97 new_ltEs10(x0, x1, ty_Char) 25.19/10.97 new_esEs28(x0, x1, ty_@0) 25.19/10.97 new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) 25.19/10.97 new_lt21(x0, x1, ty_Ordering) 25.19/10.97 new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) 25.19/10.97 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.19/10.97 new_esEs9(x0, x1, ty_Char) 25.19/10.97 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.97 new_lt9(x0, x1, app(ty_Ratio, x2)) 25.19/10.97 new_ltEs4(Just(x0), Nothing, x1) 25.19/10.97 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.97 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.97 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.97 new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) 25.19/10.97 new_compare31(x0, x1, ty_@0) 25.19/10.97 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 25.19/10.97 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.19/10.97 new_ltEs20(x0, x1, app(ty_[], x2)) 25.19/10.97 new_lt8(x0, x1, app(ty_Ratio, x2)) 25.19/10.97 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 25.19/10.97 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.97 new_esEs24(x0, x1, ty_Double) 25.19/10.97 new_lt8(x0, x1, app(ty_[], x2)) 25.19/10.97 new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) 25.19/10.97 new_ltEs4(Nothing, Just(x0), x1) 25.19/10.97 new_lt8(x0, x1, app(ty_Maybe, x2)) 25.19/10.97 new_ltEs20(x0, x1, ty_Float) 25.19/10.97 new_esEs31(x0, x1, ty_Ordering) 25.19/10.97 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.97 new_esEs30(x0, x1, x2, x3, False, x4, x5) 25.19/10.97 new_primCompAux1(x0, x1, x2, x3) 25.19/10.97 new_compare27(x0, x1, False, x2, x3) 25.19/10.97 new_compare23(@2(x0, x1), @2(x2, x3), False, x4, x5) 25.19/10.97 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.19/10.97 new_lt9(x0, x1, ty_Bool) 25.19/10.97 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.97 new_ltEs18(Left(x0), Left(x1), ty_@0, x2) 25.19/10.97 new_lt9(x0, x1, ty_Ordering) 25.19/10.97 new_esEs25(x0, x1, ty_Integer) 25.19/10.97 new_esEs31(x0, x1, ty_Int) 25.19/10.97 new_esEs27(x0, x1, ty_Float) 25.19/10.97 new_esEs15(x0, x1) 25.19/10.97 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.97 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.19/10.97 new_ltEs19(x0, x1, ty_Bool) 25.19/10.97 new_ltEs10(x0, x1, ty_Bool) 25.19/10.97 new_lt20(x0, x1, ty_Bool) 25.19/10.97 new_fsEs(x0) 25.19/10.97 new_ltEs16(x0, x1) 25.19/10.97 new_esEs20(x0, x1, app(ty_Maybe, x2)) 25.19/10.97 new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) 25.19/10.97 new_lt9(x0, x1, ty_Double) 25.19/10.97 new_primEqNat0(Succ(x0), Zero) 25.19/10.97 new_primMulNat0(Zero, Zero) 25.19/10.97 new_compare111(x0, x1, False, x2, x3, x4) 25.19/10.97 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.19/10.97 new_compare29(:%(x0, x1), :%(x2, x3), ty_Int) 25.19/10.97 new_esEs9(x0, x1, app(ty_Maybe, x2)) 25.19/10.97 new_lt8(x0, x1, ty_Double) 25.19/10.97 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.97 new_primCompAux0(x0, LT) 25.19/10.97 new_ltEs14(EQ, EQ) 25.19/10.97 new_esEs29(x0, x1, ty_Char) 25.19/10.97 new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.19/10.97 new_esEs32(x0, x1, ty_Integer) 25.19/10.97 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.19/10.97 new_esEs12([], :(x0, x1), x2) 25.19/10.97 new_lt20(x0, x1, ty_@0) 25.19/10.97 new_compare16(@0, @0) 25.19/10.97 new_ltEs19(x0, x1, ty_@0) 25.19/10.97 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.97 new_primMulInt(Pos(x0), Pos(x1)) 25.19/10.97 new_esEs6(Just(x0), Nothing, x1) 25.19/10.97 new_compare31(x0, x1, ty_Double) 25.19/10.97 new_lt8(x0, x1, ty_Ordering) 25.19/10.97 new_pePe(False, x0) 25.19/10.97 new_ltEs8(x0, x1) 25.19/10.97 new_ltEs18(Right(x0), Right(x1), x2, ty_Double) 25.19/10.97 new_esEs6(Just(x0), Just(x1), ty_Char) 25.19/10.97 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.19/10.97 new_esEs29(x0, x1, ty_Int) 25.19/10.97 new_lt20(x0, x1, ty_Integer) 25.19/10.97 new_lt9(x0, x1, ty_Int) 25.19/10.97 new_compare31(x0, x1, app(ty_Ratio, x2)) 25.19/10.97 new_ltEs12(x0, x1) 25.19/10.97 new_ltEs10(x0, x1, ty_Integer) 25.19/10.97 new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.19/10.97 new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.19/10.97 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.97 new_esEs12(:(x0, x1), :(x2, x3), x4) 25.19/10.97 new_compare14(x0, x1, True) 25.19/10.97 new_compare210(x0, x1, True, x2, x3, x4) 25.19/10.97 new_esEs6(Just(x0), Just(x1), ty_Int) 25.19/10.97 new_esEs29(x0, x1, ty_@0) 25.19/10.97 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.97 new_ltEs4(Nothing, Nothing, x0) 25.19/10.97 new_esEs6(Just(x0), Just(x1), ty_@0) 25.19/10.97 new_esEs31(x0, x1, app(ty_[], x2)) 25.19/10.97 new_compare31(x0, x1, app(ty_[], x2)) 25.19/10.97 new_ltEs10(x0, x1, ty_@0) 25.19/10.97 new_esEs26(x0, x1, app(ty_Maybe, x2)) 25.19/10.97 new_esEs29(x0, x1, ty_Ordering) 25.19/10.97 new_primPlusNat0(Zero, Zero) 25.19/10.97 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.97 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.19/10.97 new_esEs32(x0, x1, ty_Bool) 25.19/10.97 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 25.19/10.97 new_not(True) 25.19/10.97 new_ltEs18(Left(x0), Left(x1), ty_Char, x2) 25.19/10.97 new_lt10(x0, x1, x2) 25.19/10.97 new_compare28(x0, x1, True) 25.19/10.97 new_primMulNat0(Zero, Succ(x0)) 25.19/10.97 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.19/10.97 new_ltEs18(Right(x0), Right(x1), x2, ty_Int) 25.19/10.97 new_esEs24(x0, x1, app(ty_[], x2)) 25.19/10.97 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.97 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.19/10.97 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.19/10.97 new_compare8(x0, x1) 25.19/10.97 new_lt8(x0, x1, ty_Int) 25.19/10.97 new_esEs30(x0, x1, x2, x3, True, x4, x5) 25.19/10.97 new_compare210(x0, x1, False, x2, x3, x4) 25.19/10.97 new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.19/10.97 new_lt21(x0, x1, ty_Float) 25.19/10.97 new_lt21(x0, x1, app(ty_[], x2)) 25.19/10.97 new_esEs27(x0, x1, ty_Integer) 25.19/10.97 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.19/10.97 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.19/10.97 new_compare15(x0, x1) 25.19/10.97 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.19/10.97 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.19/10.97 new_esEs25(x0, x1, ty_Bool) 25.19/10.97 new_primMulInt(Pos(x0), Neg(x1)) 25.19/10.97 new_primMulInt(Neg(x0), Pos(x1)) 25.19/10.97 new_esEs26(x0, x1, ty_Float) 25.19/10.97 new_esEs25(x0, x1, app(ty_Maybe, x2)) 25.19/10.97 new_lt8(x0, x1, ty_Char) 25.19/10.97 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.97 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.97 new_ltEs4(Just(x0), Just(x1), ty_Float) 25.19/10.97 new_esEs17(:%(x0, x1), :%(x2, x3), x4) 25.19/10.97 new_esEs21(x0, x1, ty_Double) 25.19/10.97 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.19/10.97 new_compare11(x0, x1, x2, x3, True, x4, x5) 25.19/10.97 new_ltEs5(False, False) 25.19/10.97 new_esEs9(x0, x1, app(ty_Ratio, x2)) 25.19/10.97 new_ltEs20(x0, x1, ty_Ordering) 25.19/10.97 new_esEs31(x0, x1, ty_Double) 25.19/10.97 new_lt9(x0, x1, app(ty_[], x2)) 25.19/10.97 new_lt20(x0, x1, ty_Int) 25.19/10.97 new_esEs32(x0, x1, app(ty_Ratio, x2)) 25.19/10.97 new_esEs31(x0, x1, ty_Char) 25.19/10.97 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.97 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.97 new_compare31(x0, x1, ty_Ordering) 25.19/10.97 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.19/10.97 new_ltEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.97 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.97 new_esEs11(EQ, EQ) 25.19/10.97 new_esEs32(x0, x1, app(ty_Maybe, x2)) 25.19/10.97 new_ltEs19(x0, x1, ty_Integer) 25.19/10.97 new_esEs21(x0, x1, app(ty_Ratio, x2)) 25.19/10.97 new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.19/10.97 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.97 new_ltEs18(Left(x0), Left(x1), ty_Int, x2) 25.19/10.97 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.97 new_lt20(x0, x1, ty_Char) 25.19/10.97 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.97 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.97 new_esEs31(x0, x1, ty_@0) 25.19/10.97 new_primPlusNat1(Succ(x0), x1) 25.19/10.97 new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.19/10.97 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.19/10.97 new_esEs24(x0, x1, ty_Int) 25.19/10.97 new_lt17(x0, x1, x2) 25.19/10.97 new_esEs12(:(x0, x1), [], x2) 25.19/10.97 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.19/10.97 new_sr0(Integer(x0), Integer(x1)) 25.19/10.97 new_ltEs18(Left(x0), Left(x1), ty_Double, x2) 25.19/10.97 new_esEs27(x0, x1, ty_Bool) 25.19/10.97 new_esEs13(Char(x0), Char(x1)) 25.19/10.97 new_ltEs14(GT, GT) 25.19/10.97 new_esEs28(x0, x1, ty_Int) 25.19/10.97 new_esEs32(x0, x1, app(ty_[], x2)) 25.19/10.97 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.19/10.97 new_esEs8(x0, x1, ty_Float) 25.19/10.97 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.97 new_esEs21(x0, x1, ty_Ordering) 25.19/10.97 new_ltEs18(Left(x0), Left(x1), ty_Float, x2) 25.19/10.97 new_esEs29(x0, x1, ty_Integer) 25.19/10.97 new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.19/10.97 new_esEs20(x0, x1, app(ty_Ratio, x2)) 25.19/10.97 new_compare112(x0, x1, True) 25.19/10.97 new_lt20(x0, x1, ty_Ordering) 25.19/10.97 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 25.19/10.97 new_ltEs10(x0, x1, ty_Double) 25.19/10.97 new_esEs20(x0, x1, app(ty_[], x2)) 25.19/10.97 new_ltEs19(x0, x1, ty_Ordering) 25.19/10.97 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.19/10.97 new_primPlusNat0(Succ(x0), Succ(x1)) 25.19/10.97 new_esEs22(x0, x1, ty_Int) 25.19/10.97 new_esEs24(x0, x1, ty_Ordering) 25.19/10.97 new_ltEs18(Right(x0), Right(x1), x2, ty_@0) 25.19/10.97 new_esEs6(Just(x0), Just(x1), ty_Float) 25.19/10.97 new_compare11(x0, x1, x2, x3, False, x4, x5) 25.19/10.97 new_esEs29(x0, x1, app(ty_[], x2)) 25.19/10.97 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.19/10.97 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.19/10.97 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.19/10.97 new_esEs24(x0, x1, ty_Float) 25.19/10.97 new_compare17(Integer(x0), Integer(x1)) 25.19/10.97 new_compare0(:(x0, x1), [], x2) 25.19/10.97 new_lt9(x0, x1, ty_@0) 25.19/10.97 new_lt16(x0, x1) 25.19/10.97 new_compare31(x0, x1, app(ty_Maybe, x2)) 25.19/10.97 new_esEs26(x0, x1, ty_Char) 25.19/10.97 new_esEs25(x0, x1, ty_Ordering) 25.19/10.97 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.19/10.97 new_ltEs20(x0, x1, ty_Double) 25.19/10.97 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.97 new_esEs14(Double(x0, x1), Double(x2, x3)) 25.19/10.97 new_esEs26(x0, x1, ty_Int) 25.19/10.97 new_compare27(x0, x1, True, x2, x3) 25.19/10.97 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.97 new_esEs6(Just(x0), Just(x1), ty_Ordering) 25.19/10.97 new_esEs6(Nothing, Nothing, x0) 25.19/10.97 new_esEs25(x0, x1, ty_Double) 25.19/10.97 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.19/10.97 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.19/10.97 new_esEs11(LT, EQ) 25.19/10.97 new_esEs11(EQ, LT) 25.19/10.97 new_esEs25(x0, x1, app(ty_Ratio, x2)) 25.19/10.97 new_compare110(x0, x1, True, x2, x3) 25.19/10.97 new_esEs11(GT, GT) 25.19/10.97 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 25.19/10.97 new_compare31(x0, x1, ty_Bool) 25.19/10.97 new_ltEs19(x0, x1, ty_Double) 25.19/10.97 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 25.19/10.97 new_esEs28(x0, x1, ty_Char) 25.19/10.97 new_primEqNat0(Zero, Zero) 25.19/10.97 new_compare31(x0, x1, ty_Int) 25.19/10.97 new_compare26(x0, x1, x2, x3) 25.19/10.97 new_lt5(x0, x1) 25.19/10.97 new_compare18(x0, x1, x2, x3, False, x4, x5, x6) 25.19/10.97 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.97 new_not(False) 25.19/10.97 new_esEs25(x0, x1, ty_@0) 25.19/10.97 new_esEs12([], [], x0) 25.19/10.97 new_esEs26(x0, x1, ty_Ordering) 25.19/10.97 new_esEs29(x0, x1, ty_Bool) 25.19/10.97 new_lt4(x0, x1) 25.19/10.97 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 25.19/10.97 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.19/10.97 new_primCompAux0(x0, GT) 25.19/10.97 new_lt11(x0, x1) 25.19/10.97 new_esEs26(x0, x1, ty_Bool) 25.19/10.97 new_esEs6(Just(x0), Just(x1), ty_Integer) 25.19/10.97 new_esEs32(x0, x1, ty_@0) 25.19/10.97 new_lt6(x0, x1, x2, x3, x4) 25.19/10.97 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.19/10.97 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.19/10.97 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.97 new_primMulInt(Neg(x0), Neg(x1)) 25.19/10.97 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.19/10.97 new_esEs11(LT, LT) 25.19/10.97 new_compare31(x0, x1, ty_Char) 25.19/10.97 new_ltEs20(x0, x1, ty_@0) 25.19/10.97 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.97 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.97 new_compare0([], :(x0, x1), x2) 25.19/10.97 new_esEs27(x0, x1, app(ty_Maybe, x2)) 25.19/10.97 new_esEs26(x0, x1, ty_Integer) 25.19/10.97 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.19/10.97 new_esEs26(x0, x1, app(ty_Ratio, x2)) 25.19/10.97 new_compare31(x0, x1, ty_Float) 25.19/10.97 new_sr(x0, x1) 25.19/10.97 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.19/10.97 new_esEs19(@0, @0) 25.19/10.97 new_esEs9(x0, x1, ty_Double) 25.19/10.97 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.19/10.97 new_esEs9(x0, x1, ty_@0) 25.19/10.97 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.97 new_esEs6(Just(x0), Just(x1), ty_Bool) 25.19/10.97 new_pePe(True, x0) 25.19/10.97 new_esEs28(x0, x1, ty_Float) 25.19/10.97 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.19/10.97 new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.19/10.97 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 25.19/10.97 new_esEs24(x0, x1, ty_Bool) 25.19/10.97 new_lt20(x0, x1, app(ty_[], x2)) 25.19/10.97 new_esEs24(x0, x1, ty_Char) 25.19/10.97 new_esEs8(x0, x1, app(ty_Maybe, x2)) 25.19/10.97 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.19/10.97 new_esEs10(False, True) 25.19/10.97 new_esEs10(True, False) 25.19/10.97 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.19/10.97 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.19/10.97 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 25.19/10.97 new_ltEs14(EQ, LT) 25.19/10.97 new_ltEs14(LT, EQ) 25.19/10.97 new_esEs24(x0, x1, app(ty_Maybe, x2)) 25.19/10.97 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.19/10.97 new_esEs20(x0, x1, ty_Double) 25.19/10.97 new_ltEs10(x0, x1, app(app(ty_@2, x2), x3)) 25.19/10.97 new_compare30(x0, x1, x2) 25.19/10.97 new_ltEs4(Just(x0), Just(x1), ty_Integer) 25.19/10.97 new_primCmpNat0(Zero, Zero) 25.19/10.97 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.19/10.97 new_asAs(True, x0) 25.19/10.97 new_esEs21(x0, x1, app(ty_[], x2)) 25.19/10.97 new_compare25(x0, x1, False) 25.19/10.97 new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.19/10.97 25.19/10.97 We have to consider all minimal (P,Q,R)-chains. 25.19/10.97 ---------------------------------------- 25.19/10.97 25.19/10.97 (32) QDPSizeChangeProof (EQUIVALENT) 25.19/10.97 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. 25.19/10.97 25.19/10.97 From the DPs we obtained the following set of size-change graphs: 25.19/10.97 *new_lookupWithDefaultFM01(vyw4, Branch(@2(vyw300, vyw301), vyw31, vyw32, vyw33, vyw34), @2(vyw50, vyw51), bc, bd, be) -> new_lookupWithDefaultFM0(vyw4, vyw300, vyw301, vyw31, vyw32, vyw33, vyw34, vyw50, vyw51, new_esEs30(vyw50, vyw51, vyw300, vyw301, new_esEs31(vyw50, vyw300, bd), bd, be), bc, bd, be) 25.19/10.97 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 2 > 6, 2 > 7, 3 > 8, 3 > 9, 4 >= 11, 5 >= 12, 6 >= 13 25.19/10.97 25.19/10.97 25.19/10.97 *new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, False, h, ba, bb) -> new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, new_esEs11(new_compare23(@2(vyw24, vyw25), @2(vyw18, vyw19), new_asAs(new_esEs8(vyw24, vyw18, ba), new_esEs9(vyw25, vyw19, bb)), ba, bb), GT), h, ba, bb) 25.19/10.97 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 11 >= 11, 12 >= 12, 13 >= 13 25.19/10.97 25.19/10.97 25.19/10.97 *new_lookupWithDefaultFM0(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, True, h, ba, bb) -> new_lookupWithDefaultFM01(vyw17, vyw22, @2(vyw24, vyw25), h, ba, bb) 25.19/10.97 The graph contains the following edges 1 >= 1, 6 >= 2, 11 >= 4, 12 >= 5, 13 >= 6 25.19/10.97 25.19/10.97 25.19/10.97 *new_lookupWithDefaultFM00(vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, vyw23, vyw24, vyw25, True, h, ba, bb) -> new_lookupWithDefaultFM01(vyw17, vyw23, @2(vyw24, vyw25), h, ba, bb) 25.19/10.97 The graph contains the following edges 1 >= 1, 7 >= 2, 11 >= 4, 12 >= 5, 13 >= 6 25.19/10.97 25.19/10.97 25.19/10.97 ---------------------------------------- 25.19/10.97 25.19/10.97 (33) 25.19/10.97 YES 25.19/10.97 25.19/10.97 ---------------------------------------- 25.19/10.97 25.19/10.97 (34) 25.19/10.97 Obligation: 25.19/10.97 Q DP problem: 25.19/10.97 The TRS P consists of the following rules: 25.19/10.97 25.19/10.97 new_primEqNat(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat(vyw5000, vyw30000) 25.19/10.97 25.19/10.97 R is empty. 25.19/10.97 Q is empty. 25.19/10.97 We have to consider all minimal (P,Q,R)-chains. 25.19/10.97 ---------------------------------------- 25.19/10.97 25.19/10.97 (35) QDPSizeChangeProof (EQUIVALENT) 25.19/10.97 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. 25.19/10.97 25.19/10.97 From the DPs we obtained the following set of size-change graphs: 25.19/10.97 *new_primEqNat(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat(vyw5000, vyw30000) 25.19/10.97 The graph contains the following edges 1 > 1, 2 > 2 25.19/10.97 25.19/10.97 25.19/10.97 ---------------------------------------- 25.19/10.97 25.19/10.97 (36) 25.19/10.97 YES 25.19/10.97 25.19/10.97 ---------------------------------------- 25.19/10.97 25.19/10.97 (37) 25.19/10.97 Obligation: 25.19/10.97 Q DP problem: 25.19/10.97 The TRS P consists of the following rules: 25.19/10.97 25.19/10.97 new_primPlusNat(Succ(vyw7500), Succ(vyw3000000)) -> new_primPlusNat(vyw7500, vyw3000000) 25.19/10.97 25.19/10.97 R is empty. 25.19/10.97 Q is empty. 25.19/10.97 We have to consider all minimal (P,Q,R)-chains. 25.19/10.97 ---------------------------------------- 25.19/10.97 25.19/10.97 (38) QDPSizeChangeProof (EQUIVALENT) 25.19/10.97 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. 25.48/10.97 25.48/10.97 From the DPs we obtained the following set of size-change graphs: 25.48/10.97 *new_primPlusNat(Succ(vyw7500), Succ(vyw3000000)) -> new_primPlusNat(vyw7500, vyw3000000) 25.48/10.97 The graph contains the following edges 1 > 1, 2 > 2 25.48/10.97 25.48/10.97 25.48/10.97 ---------------------------------------- 25.48/10.97 25.48/10.97 (39) 25.48/10.97 YES 25.53/11.03 EOF